:root {
  --ink: #173a35;
  --ink-deep: #0e2925;
  --cream: #f7f3ec;
  --warm: #ede5d8;
  --clay: #d96f50;
  --gold: #e9b64a;
  --line: rgba(23, 58, 53, .2);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --mono: "DM Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: var(--sans); font-size: 16px; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }

.page-loader { position: fixed; inset: 0; z-index: 99; display: grid; place-items: center; background: var(--ink); transition: opacity .55s ease, visibility .55s ease; }
.page-loader span { display: block; width: 34px; height: 34px; border: 2px solid rgba(255,255,255,.25); border-top-color: #fff; border-radius: 50%; animation: spin .8s linear infinite; }
.page-loader.done { opacity: 0; visibility: hidden; }
@keyframes spin { to { transform: rotate(360deg); } }

.site-header { position: absolute; top: 0; z-index: 5; display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 25px clamp(24px, 5vw, 80px); color: #fff; }
.brand { display: inline-flex; align-items: center; gap: 10px; letter-spacing: .07em; }
.brand-logo { display: block; width: 47px; height: 47px; border-radius: 50%; object-fit: cover; background: #fff; }
.brand-mark { position: relative; display: inline-flex; width: 29px; height: 31px; align-items: end; gap: 2px; }
.brand-mark i { display: block; width: 8px; background: currentColor; border-radius: 8px 8px 1px 1px; transform: skewX(-8deg); }
.brand-mark i:nth-child(1) { height: 18px; }.brand-mark i:nth-child(2) { height: 30px; }.brand-mark i:nth-child(3) { height: 23px; }
.brand-name { font-size: 13px; font-weight: 700; line-height: .9; letter-spacing: .08em; }.brand-name em { display: block; font-family: var(--serif); font-size: 10px; font-style: italic; font-weight: 600; letter-spacing: .17em; text-align: right; }
.main-nav { display: flex; gap: clamp(18px, 3.4vw, 47px); margin-left: auto; margin-right: clamp(25px, 4vw, 65px); }.main-nav a, .header-cta { font-size: 13px; font-weight: 600; }.main-nav a { opacity: .88; transition: opacity .2s; }.main-nav a:hover { opacity: 1; }
.header-cta { display: inline-flex; align-items: center; gap: 17px; padding: 12px 17px; border: 1px solid rgba(255,255,255,.7); transition: background .2s, color .2s; }.header-cta span { font-size: 18px; }.header-cta:hover { background: #fff; color: var(--ink); }
.menu-toggle { display: none; padding: 8px; border: 0; background: transparent; color: inherit; }.menu-toggle span { display: block; width: 24px; height: 1px; margin: 5px; background: currentColor; }

.hero { position: relative; min-height: 745px; height: max(100vh, 745px); overflow: hidden; color: #fff; }.hero-image { position: absolute; inset: 0; background: center/cover no-repeat url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=2200&q=90'); animation: scaleIn 1.5s ease-out both; }.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,26,24,.72) 0%, rgba(7,28,25,.4) 48%, rgba(5,19,18,.17) 100%), linear-gradient(0deg, rgba(5,24,22,.44), transparent 36%); }.hero-copy { position: absolute; top: 50%; left: clamp(24px, 12vw, 190px); max-width: 760px; transform: translateY(-38%); }.eyebrow, .feature-index { margin: 0 0 19px; font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: .16em; }.eyebrow.light, .light { color: #fff; }.hero h1, h2 { margin: 0; font-family: var(--serif); font-size: clamp(50px, 6.3vw, 95px); font-weight: 600; letter-spacing: -.055em; line-height: .98; }.hero h1 em, h2 em { font-style: italic; font-weight: 600; }.hero-intro { max-width: 490px; margin: 30px 0; font-size: 17px; line-height: 1.6; }.hero-actions { display: flex; align-items: center; gap: 31px; }.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 32px; min-width: 185px; padding: 15px 19px; border: 1px solid transparent; font-weight: 700; font-size: 13px; transition: transform .2s, background .2s, color .2s; }.button:hover { transform: translateY(-3px); }.button span { font-size: 20px; font-weight: 400; }.button-primary { background: var(--gold); color: var(--ink-deep); }.button-primary:hover { background: #f4c55d; }.button-light { background: #fff; color: var(--ink); }.text-link { display: inline-flex; align-items: center; gap: 14px; width: max-content; padding-bottom: 7px; border-bottom: 1px solid currentColor; font-weight: 700; font-size: 13px; }.text-link span { font-size: 19px; line-height: .5; }.text-link.dark { color: var(--ink); }
.hero-bottom { position: absolute; bottom: 31px; left: clamp(24px, 5vw, 80px); right: clamp(24px, 5vw, 80px); display: flex; align-items: center; justify-content: space-between; font-family: var(--mono); font-size: 9px; letter-spacing: .12em; }.hero-credential { display: flex; align-items: center; gap: 8px; }.hero-credential span { color: var(--gold); font-size: 15px; }.scroll-prompt { display: flex; align-items: center; gap: 10px; }.scroll-prompt span { display: block; width: 56px; height: 1px; background: rgba(255,255,255,.75); }

.section-pad { padding: 135px clamp(24px, 8.3vw, 135px); }.intro { display: grid; grid-template-columns: 26% 1fr; }.intro-label { padding-top: 12px; color: var(--clay); }.intro-content { max-width: 930px; }.section-kicker { margin: 0 0 24px; font-size: 16px; }.intro h2, .split-head h2, .services h2, .planning h2 { font-size: clamp(42px, 5.2vw, 74px); }.intro-detail { display: flex; align-items: end; justify-content: space-between; gap: 35px; max-width: 780px; margin: 45px 0 0 auto; }.intro-detail p { max-width: 500px; margin: 0; font-size: 18px; line-height: 1.6; }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--warm); }.principles article { position: relative; min-height: 311px; padding: 43px clamp(25px, 4vw, 65px); border-right: 1px solid rgba(23,58,53,.18); }.principles article:last-child { border-right: 0; }.number { font-family: var(--mono); font-size: 10px; }.principle-icon { margin: 38px 0 17px; color: var(--clay); font-family: var(--serif); font-size: 43px; line-height: 1; }.principles h3 { margin: 0 0 10px; font-family: var(--serif); font-size: 25px; }.principles p { max-width: 290px; margin: 0; font-size: 14px; line-height: 1.55; }

.destinations { background: #fffdf9; }.split-head { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 60px; }.split-head .eyebrow, .services .eyebrow, .planning .eyebrow { color: var(--clay); }.section-sidecopy { max-width: 330px; margin: 0 2.5vw 9px 0; font-size: 15px; line-height: 1.6; }.destination-grid { display: grid; grid-template-columns: 1.12fr 1fr 1fr; grid-template-rows: 267px 267px; gap: 17px; }.destination-card { position: relative; display: block; overflow: hidden; color: #fff; }.destination-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }.destination-card:hover img { transform: scale(1.06); }.destination-card::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.61), transparent 54%); content: ""; }.card-tall { grid-row: 1 / span 2; }.card-wide { grid-column: 2 / span 2; }.destination-info { position: absolute; z-index: 1; bottom: 23px; left: 24px; right: 22px; }.destination-info p { margin: 0 0 7px; font-family: var(--mono); font-size: 9px; letter-spacing: .13em; }.destination-info h3 { margin: 0; font-family: var(--serif); font-size: 27px; line-height: .92; letter-spacing: -.04em; }.destination-info h3 em { font-style: italic; }.circle-arrow { position: absolute; right: 0; bottom: 0; display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(255,255,255,.8); border-radius: 50%; font-size: 17px; transition: background .2s, color .2s; }.destination-card:hover .circle-arrow { background: #fff; color: var(--ink); }.center-link { display: flex; justify-content: center; margin-top: 49px; }

.feature-story { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 690px; background: var(--ink-deep); color: #fff; }.feature-image { min-height: 510px; }.feature-image img { width: 100%; height: 100%; object-fit: cover; }.feature-content { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; max-width: 570px; padding: 80px clamp(35px, 7vw, 112px); }.feature-index { margin-top: 25px; color: var(--gold); }.feature-content h2 { font-size: clamp(43px, 5vw, 72px); }.feature-content > p:not(.eyebrow):not(.feature-index) { max-width: 420px; margin: 29px 0 34px; font-size: 15px; line-height: 1.65; }

.services { padding-bottom: 110px; }.services-top { display: flex; align-items: end; justify-content: space-between; gap: 65px; margin-bottom: 60px; }.services-top > p { max-width: 385px; margin: 0 3vw 9px 0; font-size: 15px; line-height: 1.7; }.services-list { border-top: 1px solid var(--line); }.service-item { display: grid; grid-template-columns: 12% 1fr auto; width: 100%; padding: 23px 6px 22px 0; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--ink); text-align: left; transition: padding .3s, color .3s; }.service-item:hover, .service-item.active { padding-left: 20px; background: rgba(233,182,74,.14); }.service-item span { align-self: center; font-family: var(--mono); font-size: 10px; }.service-item strong { font-family: var(--serif); font-size: clamp(26px, 3vw, 42px); font-weight: 600; letter-spacing: -.035em; }.service-item i { align-self: center; font-style: normal; font-size: 22px; }.service-detail { display: grid; grid-template-columns: 26% 1fr 180px; align-items: center; gap: 25px; min-height: 145px; padding: 31px 0 0 13%; }.service-detail-tag { align-self: start; padding-top: 7px; font-family: var(--mono); font-size: 10px; letter-spacing: .11em; }.service-detail-copy { max-width: 475px; margin: 0; font-size: 15px; line-height: 1.6; }

.quote-section { padding: 125px 24px 103px; background: var(--clay); color: #fff8ef; text-align: center; }.quote-mark { height: 34px; margin: 0 0 16px; font-family: var(--serif); font-size: 85px; line-height: 1; }.quote-section blockquote { max-width: 1040px; margin: 0 auto 45px; font-family: var(--serif); font-size: clamp(30px, 4.1vw, 59px); font-weight: 600; letter-spacing: -.05em; line-height: 1.1; }.quote-section blockquote em { font-style: italic; }.quote-person { display: flex; align-items: center; justify-content: center; gap: 12px; }.avatar { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; font-family: var(--mono); font-size: 10px; }.quote-person p { margin: 0; color: rgba(255,255,255,.85); font-family: var(--mono); font-size: 9px; letter-spacing: .08em; line-height: 1.7; text-align: left; }.quote-person strong { color: #fff; font-weight: 500; }.quote-pagination { display: flex; justify-content: center; gap: 7px; margin-top: 41px; }.quote-pagination span { display: block; width: 24px; height: 2px; background: rgba(255,255,255,.35); }.quote-pagination .active { background: #fff; }

.planning { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; min-height: 695px; overflow: hidden; background: var(--warm); }.planning-art { position: relative; min-height: 420px; overflow: hidden; background: #d2ae68; }.planning-art .sun { position: absolute; top: 25%; left: 37%; width: 145px; height: 145px; border-radius: 50%; background: #ebcf7c; }.hill { position: absolute; bottom: -40px; border-radius: 50% 50% 0 0; }.hill-one { left: -18%; width: 122%; height: 47%; background: #7e9c77; transform: rotate(-7deg); }.hill-two { right: -25%; width: 110%; height: 39%; background: #315d54; transform: rotate(9deg); }.traveller { position: absolute; z-index: 1; right: 21%; bottom: 20%; color: #f7e5ae; font-family: var(--serif); font-size: 115px; transform: rotate(10deg); }.planning-content { max-width: 670px; padding: 4px 0 40px clamp(40px, 8vw, 128px); }.planning-content > p:not(.eyebrow) { max-width: 470px; margin: 27px 0 31px; font-size: 15px; line-height: 1.65; }.trip-form { display: grid; max-width: 460px; gap: 17px; }.trip-form label { display: grid; gap: 7px; }.trip-form label span { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; }.trip-form input, .trip-form select { width: 100%; padding: 12px 0 10px; border: 0; border-bottom: 1px solid rgba(23,58,53,.45); border-radius: 0; outline: none; background: transparent; color: var(--ink); font-size: 14px; }.trip-form input:focus, .trip-form select:focus { border-color: var(--clay); }.trip-form select { cursor: pointer; }.trip-form .button { justify-content: space-between; width: max-content; margin-top: 7px; }.form-status { min-height: 18px; margin: 0; color: var(--ink); font-size: 12px; font-weight: 600; }
.planning-logo { display: grid; place-items: center; padding: clamp(24px, 5vw, 72px); background: linear-gradient(145deg, #e9e5db, #c9d5d2); }.planning-logo img { display: block; width: min(88%, 500px); max-height: 82%; border-radius: 50%; object-fit: contain; box-shadow: 0 22px 42px rgba(14,41,37,.22); }

.site-footer { background: var(--ink-deep); color: #f8f3ea; }.footer-main { display: grid; grid-template-columns: 1.1fr 1.2fr 1fr .5fr; gap: 30px; padding: 74px clamp(24px, 8.3vw, 135px) 70px; }.footer-brand { align-self: start; }.footer-brand .brand-logo { width: 72px; height: 72px; }.footer-main > p { margin: 0; color: rgba(255,255,255,.72); font-family: var(--serif); font-size: 21px; line-height: 1.25; }.footer-links, .footer-social { display: flex; flex-direction: column; gap: 10px; }.footer-links a, .footer-social a { width: max-content; font-size: 13px; font-weight: 500; }.footer-links a:hover, .footer-social a:hover { color: var(--gold); }.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding: 18px clamp(24px, 8.3vw, 135px); border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.65); font-family: var(--mono); font-size: 9px; letter-spacing: .09em; }.footer-bottom p { margin: 0; }.footer-bottom a { color: #fff; }

.reveal { opacity: 0; transform: translateY(22px); animation: reveal .8s cubic-bezier(.2,.7,.2,1) forwards; }.hero-copy .reveal:nth-child(1) { animation-delay: .35s; }.hero-copy .reveal:nth-child(2) { animation-delay: .47s; }.hero-copy .reveal:nth-child(3) { animation-delay: .59s; }.hero-copy .reveal:nth-child(4) { animation-delay: .7s; }@keyframes reveal { to { opacity: 1; transform: translateY(0); } } @keyframes scaleIn { from { transform: scale(1.07); } to { transform: scale(1); } }

@media (max-width: 800px) {
  .site-header { padding: 20px 24px; }.main-nav, .header-cta { display: none; }.menu-toggle { display: block; }.site-header.open { position: fixed; background: var(--ink); }.site-header.open .main-nav { position: absolute; top: 71px; left: 0; right: 0; display: flex; flex-direction: column; gap: 0; padding: 0 24px 22px; background: var(--ink); }.site-header.open .main-nav a { padding: 14px 0; border-top: 1px solid rgba(255,255,255,.22); }.site-header.open .header-cta { display: none; }
  .hero { min-height: 690px; height: 100svh; }.hero-copy { top: 48%; left: 24px; right: 24px; transform: translateY(-36%); }.hero h1 { font-size: clamp(47px, 14vw, 74px); }.hero-intro { max-width: 410px; font-size: 15px; }.hero-bottom { bottom: 20px; left: 24px; right: 24px; }.hero-credential, .scroll-prompt { display: none; }.section-pad { padding: 80px 24px; }
  .intro { display: block; }.intro-label { margin-bottom: 34px; }.intro-detail { display: block; margin: 29px 0 0; }.intro-detail .text-link { margin-top: 24px; }.principles { grid-template-columns: 1fr; }.principles article { min-height: auto; padding: 31px 24px; border-right: 0; border-bottom: 1px solid rgba(23,58,53,.18); }.principle-icon { margin: 18px 0 11px; }
  .split-head, .services-top { display: block; margin-bottom: 37px; }.section-sidecopy, .services-top > p { margin: 25px 0 0; }.destination-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 270px 220px 220px; gap: 10px; }.card-tall { grid-row: 1 / span 2; }.card-top { grid-column: 2; }.card-bottom { grid-column: 2; }.card-wide { grid-column: 1 / span 2; grid-row: 3; }.destination-info { bottom: 16px; left: 16px; }.destination-info h3 { font-size: 23px; }.feature-story { grid-template-columns: 1fr; }.feature-image { min-height: 370px; }.feature-content { min-height: 475px; padding: 72px 24px; }.service-item { grid-template-columns: 44px 1fr 22px; }.service-item:hover, .service-item.active { padding-left: 10px; }.service-detail { display: block; min-height: auto; padding: 25px 0 0; }.service-detail-copy { margin: 12px 0 19px; }
  .quote-section { padding: 85px 24px 70px; }.planning { grid-template-columns: 1fr; padding: 0; }.planning-art { min-height: 265px; }.planning-art .sun { top: 15%; width: 100px; height: 100px; }.planning-content { padding: 70px 24px 75px; }.footer-main { grid-template-columns: 1fr 1fr; padding: 54px 24px 45px; }.footer-main > p { grid-column: 1 / span 2; }.footer-social { align-items: end; }.footer-bottom { flex-wrap: wrap; padding: 18px 24px; }.footer-bottom p:nth-child(2) { display: none; }
}
@media (max-width: 420px) { .hero-actions { gap: 18px; }.button { min-width: 165px; padding: 14px 15px; }.text-link { font-size: 12px; }.destination-grid { grid-template-rows: 250px 200px 200px; }.footer-main { gap: 25px 10px; }.brand-name { font-size: 12px; } }

.opportunities { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 8vw, 130px); align-items: center; background: #fffdf9; }
.opportunities .eyebrow { color: var(--clay); }
.opportunities h2 { font-size: clamp(42px, 5.2vw, 74px); }
.opportunities-copy > p:not(.eyebrow) { max-width: 460px; margin: 25px 0 31px; font-size: 16px; line-height: 1.65; }
.opportunity-panel { padding: clamp(27px, 4.3vw, 57px); background: var(--ink); color: #fff; }
.panel-label { margin: 0 0 25px; color: var(--gold); font-family: var(--mono); font-size: 10px; letter-spacing: .13em; }
.country-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.27); }
.country-grid span { padding: 17px 5px; border-bottom: 1px solid rgba(255,255,255,.27); font-family: var(--serif); font-size: 23px; }
.country-grid span:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.27); }
.opportunity-note { margin: 26px 0 0; color: rgba(255,255,255,.68); font-size: 12px; line-height: 1.58; }
.whatsapp-form-link { width: max-content; color: var(--ink); border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 700; }
.whatsapp-float { position: fixed; z-index: 8; right: 24px; bottom: 24px; display: inline-flex; align-items: center; gap: 9px; padding: 13px 16px; border-radius: 50px; background: #25d366; box-shadow: 0 10px 28px rgba(0,0,0,.23); color: #083b27; font-size: 13px; font-weight: 700; transition: transform .2s, box-shadow .2s; }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(0,0,0,.3); }
.whatsapp-icon { display: grid; width: 22px; height: 22px; place-items: center; border: 2px solid currentColor; border-radius: 50%; font-size: 16px; line-height: 1; }
@media (max-width: 800px) { .opportunities { grid-template-columns: 1fr; gap: 40px; }.whatsapp-float { right: 16px; bottom: 16px; } }

.footer-main { grid-template-columns: 1.1fr 1.2fr 1fr .8fr .65fr; }
.footer-social-label { color: var(--gold); font-family: var(--mono); font-size: 9px; font-weight: 500; letter-spacing: .1em; }
.footer-qr { display: flex; flex-direction: column; align-items: center; gap: 8px; color: #fff; font-family: var(--mono); font-size: 9px; font-weight: 500; letter-spacing: .08em; text-align: center; }
.footer-qr img { display: block; width: 82px; height: 82px; padding: 4px; background: #fff; }
.footer-qr:hover { color: var(--gold); }
@media (max-width: 800px) { .footer-main { grid-template-columns: 1fr 1fr; }.footer-qr { align-items: end; }.footer-qr img { width: 74px; height: 74px; } }
