 :root {
     --ink: #14213d;
     --charcoal: #101820;
     --sand: #f6efe4;
     --ivory: #fffaf2;
     --gold: #c8943f;
     --terracotta: #a64f35;
     --sage: #64745f;
     --muted: #756b61;
     --line: rgba(20, 33, 61, .12);
     --radius: 28px;
     --shadow: 0 24px 80px rgba(16, 24, 32, .18);
 }

 * {
     box-sizing: border-box
 }

 body {
     margin: 0;
     font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
     background: var(--ivory);
     color: var(--charcoal);
 }

 a {
     text-decoration: none;
     color: inherit
 }

 .nav {
     position: fixed;
     z-index: 20;
     top: 18px;
     left: 50%;
     transform: translateX(-50%);
     width: min(1180px, calc(100% - 32px));
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 14px 18px;
     border: 1px solid rgba(255, 255, 255, .25);
     border-radius: 999px;
     background: rgba(16, 24, 32, .52);
     backdrop-filter: blur(18px);
     color: white;
     box-shadow: 0 8px 30px rgba(0, 0, 0, .18)
 }

 .brand {
     display: flex;
     gap: 11px;
     align-items: center;
     font-weight: 800;
     letter-spacing: .12em;
     text-transform: uppercase;
     font-size: 14px
 }

 .brand img {
     width: 130px;
     height: auto;
     object-fit: contain;
 }

 .brand-mark {
     width: 34px;
     height: 34px;
     border-radius: 50%;
     background: linear-gradient(135deg, var(--gold), #f4d29b);
     display: grid;
     place-items: center;
     color: var(--ink);
     font-weight: 900
 }

 .navlinks {
     display: flex;
     gap: 26px;
     align-items: center;
     font-size: 14px;
     color: rgba(255, 255, 255, .86)
 }

 .book {
     padding: 12px 19px;
     border-radius: 999px;
     background: var(--gold);
     color: #17120a;
     font-weight: 800;
     box-shadow: 0 10px 24px rgba(200, 148, 63, .35)
 }

 .hero {
     min-height: 100vh;
     position: relative;
     display: grid;
     align-items: end;
     padding: 120px 24px 42px;
     overflow: hidden;
     background: linear-gradient(180deg, rgba(16, 24, 32, .35), rgba(16, 24, 32, .88)), radial-gradient(circle at 75% 28%, rgba(200, 148, 63, .24), transparent 30%), linear-gradient(120deg, #101820 0%, #243424 48%, #8a4b32 100%)
 }

 .hero-image {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center;
     opacity: .48;
 }

 .hero:before {
     content: "";
     position: absolute;
     inset: auto -10vw 0 -10vw;
     height: 42vh;
     background: linear-gradient(160deg, transparent 44%, rgba(246, 239, 228, .13) 45%, rgba(246, 239, 228, .13) 46%, transparent 47%), linear-gradient(150deg, transparent 54%, rgba(255, 255, 255, .09) 55%, transparent 56%);
     clip-path: polygon(0 70%, 22% 38%, 36% 63%, 51% 25%, 64% 57%, 77% 35%, 100% 71%, 100% 100%, 0 100%);
 }

 .hero-inner {
     position: relative;
     z-index: 2;
     width: min(1180px, 100%);
     margin: 0 auto;
     color: white;
     align-self: center;
 }

 .eyebrow {
     display: inline-flex;
     gap: 10px;
     align-items: center;
     padding: 8px 13px;
     border: 1px solid rgba(255, 255, 255, .32);
     border-radius: 999px;
     background: rgba(255, 255, 255, .10);
     font-size: 13px;
     letter-spacing: .12em;
     text-transform: uppercase;
     color: rgba(255, 255, 255, .82)
 }

 .hero h1 {
     max-width: 850px;
     margin: 24px 0 20px;
     font-family: Georgia, 'Times New Roman', serif;
     font-size: clamp(52px, 8vw, 112px);
     line-height: .89;
     font-weight: 500;
     letter-spacing: -.055em
 }

 .hero p {
     max-width: 690px;
     font-size: clamp(18px, 2vw, 23px);
     line-height: 1.55;
     color: rgba(255, 255, 255, .84);
     margin: 0 0 32px
 }

 .hero-actions {
     display: flex;
     gap: 14px;
     flex-wrap: wrap
 }

 .btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     padding: 16px 24px;
     border-radius: 999px;
     font-weight: 850
 }

 .btn.primary {
     background: var(--gold);
     color: #1a1307
 }

 .btn.secondary {
     border: 1px solid rgba(255, 255, 255, .34);
     color: white;
     background: rgba(255, 255, 255, .08)
 }

 .booking {
     position: relative;
     z-index: 5;
     width: min(1120px, calc(100% - 32px));
     margin: -36px auto 70px;
     background: white;
     border-radius: 24px;
     box-shadow: var(--shadow);
     display: grid;
     grid-template-columns: 1.35fr 1fr 1fr .9fr auto;
     gap: 1px;
     overflow: hidden;
     border: 1px solid var(--line)
 }

 .field {
     padding: 20px 22px;
     border-right: 1px solid var(--line)
 }

 .field label {
     display: block;
     font-size: 11px;
     text-transform: uppercase;
     letter-spacing: .16em;
     color: var(--muted);
     font-weight: 800;
     margin-bottom: 8px
 }

 .field strong {
     font-size: 17px
 }

 .booking button {
     border: 0;
     background: var(--ink);
     color: white;
     font-weight: 900;
     padding: 0 30px;
     font-size: 15px
 }

 section {
     width: min(1180px, calc(100% - 32px));
     margin: 0 auto 92px
 }

 .section-head {
     display: flex;
     align-items: end;
     justify-content: space-between;
     gap: 24px;
     margin-bottom: 30px
 }

 .kicker {
     font-size: 13px;
     text-transform: uppercase;
     letter-spacing: .18em;
     color: var(--terracotta);
     font-weight: 900
 }

 .section-head h2 {
     font-family: Georgia, 'Times New Roman', serif;
     font-size: clamp(36px, 5vw, 68px);
     line-height: 1;
     margin: 8px 0 0;
     font-weight: 500;
     letter-spacing: -.04em
 }

 .section-head p {
     max-width: 470px;
     color: var(--muted);
     font-size: 17px;
     line-height: 1.6
 }

 .cards {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 18px
 }

 .card {
     min-height: 430px;
     border-radius: var(--radius);
     overflow: hidden;
     position: relative;
     /* background: var(--ink); */
     box-shadow: 0 16px 50px rgba(16, 24, 32, .12)
 }

 .card-image {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center;
     transition: transform .3s ease;
     position: absolute;
     z-index: -1;
 }

 .card:before {
     content: "";
     position: absolute;
     inset: 0;
     /* background: linear-gradient(180deg, transparent 10%, rgba(0, 0, 0, .82) 100%), var(--bg); */
        background: linear-gradient(0deg, rgba(20, 33, 61, .10), rgba(20, 33, 61, .02)), var(--bg);
        transition: background .3s ease;
     z-index: 0;
     opacity: .7;
 }

 .card .content {
     position: absolute;
     inset: auto 0 0;
     padding: 26px;
     color: white
 }

 .tag {
     display: inline-block;
     padding: 7px 10px;
     border-radius: 999px;
     background: rgba(255, 255, 255, .16);
     font-size: 12px;
     text-transform: uppercase;
     letter-spacing: .12em
 }

 .card h3 {
     font-family: Georgia, serif;
     font-weight: 500;
     font-size: 31px;
     line-height: 1.05;
     margin: 15px 0 10px
 }

 .card p {
     color: rgba(255, 255, 255, .78);
     line-height: 1.45
 }

 .card a {
     display: inline-block;
     margin-top: 12px;
     color: #f1c56f;
     font-weight: 850
 }

 .moshi {
     --bg: radial-gradient(circle at 70% 25%, #d5a758 0 8%, transparent 28%), linear-gradient(140deg, #324733, #141b27)
 }

 .arusha {
     --bg: radial-gradient(circle at 25% 15%, #b76342 0 9%, transparent 30%), linear-gradient(135deg, #222a44, #11161d)
 }

 .apartments {
     --bg: radial-gradient(circle at 60% 30%, #bca16e 0 10%, transparent 29%), linear-gradient(135deg, #5b5146, #1d2428)
 }

 .homes {
     --bg: radial-gradient(circle at 35% 20%, #7e996e 0 10%, transparent 30%), linear-gradient(135deg, #253628, #111820)
 }

 .story {
     display: grid;
     grid-template-columns: .9fr 1.1fr;
     gap: 26px;
     align-items: stretch
 }

 .story-visual {
     min-height: 520px;
     border-radius: 36px;
     background: linear-gradient(180deg, rgba(20, 33, 61, .10), rgba(20, 33, 61, .02)), linear-gradient(140deg, #e9dac7, #c59458 42%, #65785e);
     position: relative;
     overflow: hidden
 }

 .story-visual:before {
     content: "KIBO";
     position: absolute;
     bottom: 24px;
     left: 30px;
     font-size: 112px;
     letter-spacing: -.08em;
     color: rgba(255, 255, 255, .30);
     font-family: Georgia, serif
 }

 .story-visual img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center;
     opacity: .48;
 }

 .story-copy {
     border-radius: 36px;
     background: var(--sand);
     padding: 54px
 }

 .story-copy h2 {
     font-family: Georgia, serif;
     font-size: 54px;
     line-height: 1.02;
     font-weight: 500;
     margin: 0 0 20px
 }

 .story-copy p {
     font-size: 18px;
     color: var(--muted);
     line-height: 1.7
 }

 .features {
     display: grid;
     grid-template-rows: repeat(3, 1fr);
     gap: 18px;
     margin-top: 28px;
 }

 .feature {
     background: white;
     padding: 24px;
     border-radius: 22px;
     border: 1px solid var(--line);
     border: 6px solid rgba(200, 147, 63, 0.3);

 }

 .feature b {
     display: block;
     margin-bottom: 10px;
     color: var(--ink);
     font-weight: 900;
 }

 .feature span {
     color: var(--muted);
     line-height: 1.5;
 }

 .offers {
     margin-bottom: 92px;
 }

 .offers-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 18px
 }

 .offer {
     background: white;
     border-radius: 28px;
     overflow: hidden;
     border: 1px solid var(--line);
     box-shadow: 0 8px 30px rgba(16, 24, 32, .06);
     display: flex;
     flex-direction: column
 }

 .offer-image {
     height: 210px;
     overflow: hidden;
     background: var(--sand);
     position: relative
 }

 .offer-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center;
     transition: transform .3s ease
 }

 .offer:hover .offer-image img {
     transform: scale(1.06)
 }

 .offer-body {
     padding: 26px;
     flex: 1;
     display: flex;
     flex-direction: column
 }

 .offer-tag {
     display: inline-block;
     padding: 6px 10px;
     border-radius: 999px;
     background: var(--sand);
     color: var(--terracotta);
     font-size: 11px;
     text-transform: uppercase;
     letter-spacing: .12em;
     font-weight: 800;
     align-self: start;
     margin-bottom: 12px
 }

 .offer-body h3 {
     font-family: Georgia, serif;
     font-weight: 500;
     font-size: 24px;
     line-height: 1.1;
     margin: 0 0 10px;
     color: var(--ink)
 }

 .offer-desc {
     color: var(--muted);
     font-size: 15px;
     line-height: 1.5;
     margin: 0 0 16px
 }

 .offer-bullets {
     list-style: none;
     padding: 0;
     margin: 0 0 auto;
     display: flex;
     flex-direction: column;
     gap: 8px
 }

 .offer-bullets li {
     font-size: 14px;
     color: var(--charcoal);
     line-height: 1.4;
     padding-left: 20px;
     position: relative
 }

 .offer-bullets li::before {
     content: "✦";
     position: absolute;
     left: 0;
     color: var(--gold);
     font-size: 10px;
     top: 2px
 }

 .offer-cta {
     display: inline-flex;
     align-items: center;
     margin-top: 18px;
     font-weight: 800;
     color: var(--gold);
     font-size: 14px;
     transition: gap .2s ease
 }

 .offer-cta:hover {
     gap: 4px
 }

 .experiences {
     display: grid;
     grid-template-columns: 1fr 1fr 1fr;
     gap: 18px
 }

 .experience {
     background: white;
     border: 1px solid var(--line);
     border-radius: 28px;
     overflow: hidden;
     display: flex;
     flex-direction: column;
     box-shadow: 0 8px 30px rgba(16, 24, 32, .06)
 }

 .exp-image {
     height: 200px;
     overflow: hidden;
     background: var(--sand);
     position: relative
 }

 .exp-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center;
     transition: transform .3s ease
 }

 .experience:hover .exp-image img {
     transform: scale(1.06)
 }

 .exp-body {
     padding: 26px;
     flex: 1;
     display: flex;
     flex-direction: column
 }

 .exp-body .offer-tag {
     align-self: start;
     margin-bottom: 12px
 }

 .experience h3 {
     font-family: Georgia, serif;
     font-weight: 500;
     font-size: 24px;
     line-height: 1.1;
     margin: 0 0 12px;
     color: var(--ink)
 }

 .experience p {
     color: var(--muted);
     line-height: 1.55;
     margin: 0
 }

 .cta {
     border-radius: 40px;
     background: linear-gradient(120deg, var(--ink), #273916);
     padding: 70px;
     color: white;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 30px;
     overflow: hidden;
     position: relative
 }

 .cta h2 {
     font-family: Georgia, serif;
     font-size: clamp(40px, 5vw, 72px);
     line-height: 1;
     margin: 0
 }

 .cta p {
     max-width: 430px;
     color: rgba(255, 255, 255, .78);
     line-height: 1.6
 }

 .footer-note {
     width: min(1180px, calc(100% - 32px));
     margin: 0 auto 40px;
     color: var(--muted);
     font-size: 13px;
     text-align: center
 }

 @media(max-width:900px) {
     .navlinks {
         display: none
     }

     .booking {
         grid-template-columns: 1fr
     }

     .field {
         border-right: 0;
         border-bottom: 1px solid var(--line)
     }

     .booking button {
         padding: 18px
     }

     .cards,
     .experiences,
     .features,
     .offers-grid {
         grid-template-columns: 1fr
     }

     .offer-image,
     .exp-image {
         height: 180px
     }

     .story {
         grid-template-columns: 1fr
     }

     .section-head {
         display: block
     }

     .cta {
         display: block
     }

     .hero {
         padding-top: 100px
     }

     .card {
         min-height: 350px
     }
 }