:root {
  --ink: #090909;
  --ink-soft: #151515;
  --paper: #f7f3ea;
  --paper-soft: #eee7da;
  --white: #ffffff;
  --gold: #c79b42;
  --gold-deep: #8f671e;
  --gold-light: #e6c977;
  --text: #171717;
  --text-soft: #625c53;
  --line: rgba(199,155,66,.28);
  --max: 1200px;
  --radius: 26px;
  --radius-lg: 42px;
  --shadow: 0 28px 80px rgba(24,18,10,.16);
  --soft-shadow: 0 16px 46px rgba(52,39,18,.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container { width: min(var(--max), calc(100% - 44px)); margin: 0 auto; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.section-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4.5vw, 4.55rem);
  line-height: 1.01;
  font-weight: 500;
  letter-spacing: -.04em;
}
.lead { font-size: 1.12rem; color: var(--text-soft); max-width: 740px; }

.topbar {
  background: #050505;
  color: #d8d0c2;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.topbar .container {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8,8,8,.91);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(199,155,66,.14);
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
}
.nav-wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}
.brand-mark {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 5px 12px rgba(199,155,66,.16));
}
.brand-text {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  letter-spacing: .01em;
}
.brand-text small {
  display: block;
  margin-top: 1px;
  color: var(--gold-light);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: .56rem;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 23px;
  color: #ebe6dc;
  font-size: .9rem;
}
.site-nav a:not(.btn) { position: relative; }
.site-nav a:not(.btn):after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--gold-light);
  transition: right .22s ease;
}
.site-nav a:not(.btn):hover { color: var(--gold-light); }
.site-nav a:not(.btn):hover:after { right: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 820;
  letter-spacing: .02em;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, #e5c676, #bd8d34);
  color: #090909;
  box-shadow: 0 10px 26px rgba(199,155,66,.18);
}
.btn-gold:hover { box-shadow: 0 15px 32px rgba(199,155,66,.28); }
.btn-outline { border-color: rgba(255,255,255,.32); color: white; background: rgba(255,255,255,.035); backdrop-filter: blur(8px); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(0,0,0,.18); }
.btn-dark { background: var(--ink); color: white; }
.nav-toggle { display: none; margin-left: auto; background: none; border: 0; color: white; font-size: 1.55rem; }

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background-color: #080808;
  isolation: isolate;
}
.hero:before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 780px;
  height: 780px;
  right: -330px;
  top: -320px;
  border: 1px solid rgba(230,201,119,.22);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(199,155,66,.025), 0 0 0 150px rgba(199,155,66,.018);
  pointer-events: none;
}
.hero:after {
  content: "";
  position: absolute;
  z-index: 0;
  left: -8%;
  bottom: -190px;
  width: 72%;
  height: 260px;
  border: 1px solid rgba(199,155,66,.13);
  border-radius: 50%;
  transform: rotate(-8deg);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 710px;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 42px;
  padding: 76px 0 105px;
}
.hero-grid > div:first-child {
  position: relative;
  max-width: 720px;
}
.hero-grid > div:first-child:before {
  content: "";
  position: absolute;
  width: 76px;
  height: 3px;
  top: -27px;
  left: 0;
  border-radius: 999px;
  background: linear-gradient(90deg,var(--gold-light),transparent);
}
.hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(3.1rem, 6.35vw, 6.35rem);
  line-height: .93;
  letter-spacing: -.057em;
  text-wrap: balance;
}
.hero h1 span {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 400;
}
.hero-copy {
  margin: 28px 0 0;
  max-width: 680px;
  color: #d6d0c4;
  font-size: clamp(1.04rem, 1.55vw, 1.23rem);
  text-shadow: 0 2px 14px rgba(0,0,0,.25);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 35px; }
.hero-note {
  display: inline-flex;
  margin-top: 25px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(8px);
  color: #c5beb2;
  font-size: .82rem;
}
.hero-logo-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  transform: translateY(8px);
}
.hero-logo-wrap:before {
  content: "";
  position: absolute;
  width: min(500px, 92%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.22), rgba(230,201,119,.08) 40%, transparent 70%);
  filter: blur(12px);
}
.hero-logo-wrap:after {
  content: "";
  position: absolute;
  width: min(445px, 84%);
  aspect-ratio: 1;
  border: 1px solid rgba(230,201,119,.18);
  border-radius: 48% 52% 58% 42% / 51% 44% 56% 49%;
  transform: rotate(-9deg);
}
.hero-logo {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  filter: drop-shadow(0 24px 38px rgba(0,0,0,.42));
}

/* TRUST BAR */
.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -34px;
  background: transparent;
  color: #ddd6ca;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  padding: 9px;
  border: 1px solid rgba(199,155,66,.2);
  border-radius: 24px;
  background: rgba(13,13,13,.96);
  box-shadow: 0 22px 52px rgba(0,0,0,.2);
  backdrop-filter: blur(12px);
}
.trust-item {
  position: relative;
  padding: 17px 13px;
  text-align: center;
  font-size: .79rem;
  font-weight: 730;
  letter-spacing: .035em;
}
.trust-item + .trust-item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 23%;
  height: 54%;
  width: 1px;
  background: rgba(255,255,255,.08);
}
.trust-item strong { color: var(--gold-light); display: block; margin-bottom: 2px; font-size: .67rem; text-transform: uppercase; letter-spacing: .16em; }

section { padding: 108px 0; position: relative; }

/* INTRO */
.intro-grid {
  position: relative;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 88px;
  align-items: start;
}
.intro-grid:before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  left: -180px;
  top: -130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199,155,66,.12), transparent 68%);
  pointer-events: none;
}
.intro-copy { position: relative; }
.intro-copy p { margin-top: 0; color: var(--text-soft); font-size: 1.08rem; }
.quote-card {
  position: relative;
  margin: 40px 0 0 7%;
  padding: 30px 36px 30px 42px;
  overflow: hidden;
  border: 1px solid rgba(199,155,66,.28);
  background: rgba(255,255,255,.68);
  border-radius: 10px 48px 48px 48px;
  box-shadow: var(--soft-shadow);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-style: italic;
}
.quote-card:before {
  content: "“";
  position: absolute;
  left: 12px;
  top: -14px;
  color: rgba(199,155,66,.25);
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
}

/* SERVICES */
.services {
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(199,155,66,.11), transparent 28%),
    linear-gradient(180deg, var(--paper-soft), #f5efe5);
}
.services:before {
  content: "";
  position: absolute;
  width: 540px;
  height: 190px;
  right: -160px;
  top: 70px;
  border: 1px solid rgba(199,155,66,.17);
  border-radius: 50%;
  transform: rotate(-18deg);
}
.section-head { display: flex; justify-content: space-between; gap: 38px; align-items: end; margin-bottom: 48px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.service-card {
  position: relative;
  min-height: 286px;
  padding: 31px;
  overflow: hidden;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(0,0,0,.055);
  border-radius: 24px 54px 24px 24px;
  box-shadow: var(--soft-shadow);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:nth-child(2), .service-card:nth-child(5) { transform: translateY(18px); border-radius: 54px 24px 54px 24px; }
.service-card:nth-child(3), .service-card:nth-child(6) { border-radius: 24px 24px 54px 24px; }
.service-card:after {
  content: "";
  position: absolute;
  width: 115px;
  height: 115px;
  right: -54px;
  top: -52px;
  border-radius: 50%;
  border: 1px solid rgba(199,155,66,.18);
  box-shadow: 0 0 0 22px rgba(199,155,66,.035);
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(199,155,66,.24);
  box-shadow: 0 22px 58px rgba(44,34,19,.12);
}
.service-card:nth-child(2):hover, .service-card:nth-child(5):hover { transform: translateY(10px); }
.service-num {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(199,155,66,.11);
  color: var(--gold-deep);
  font-weight: 900;
  font-size: .72rem;
  letter-spacing: .1em;
}
.service-card h3 { margin: 22px 0 11px; font-family: Georgia, "Times New Roman", serif; font-size: 1.65rem; line-height: 1.12; font-weight: 500; }
.service-card p { margin: 0; color: var(--text-soft); }
.service-card a { display: inline-block; margin-top: 24px; color: var(--gold-deep); font-weight: 820; }

/* DARK FEATURE SECTIONS */
.dark-section {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 15% 20%, rgba(199,155,66,.08), transparent 28%),
    linear-gradient(135deg, #080808, #181818 62%, #0b0b0b);
}
.dark-section:before {
  content: "";
  position: absolute;
  width: 680px;
  height: 260px;
  right: -250px;
  bottom: -130px;
  border: 1px solid rgba(199,155,66,.13);
  border-radius: 50%;
  transform: rotate(-14deg);
}
.dark-section .lead { color: #c4bcaf; }
.split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
  align-items: center;
}
.feature-panel {
  position: relative;
  padding: 38px;
  border-radius: 58px 18px 58px 18px;
  border: 1px solid rgba(199,155,66,.26);
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.feature-panel:after {
  content: "";
  position: absolute;
  right: 28px;
  top: 28px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 16px 0 0 rgba(230,201,119,.48), 32px 0 0 rgba(230,201,119,.2);
}
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin-top: 24px; }
.feature-list div { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); color: #ddd5c9; }
.feature-list span { color: var(--gold-light); margin-right: 9px; }

/* AIRPORT */
.airport-grid {
  display: grid;
  grid-template-columns: .93fr 1.07fr;
  gap: 78px;
  align-items: center;
}
.airport-card {
  position: relative;
  overflow: hidden;
  padding: 40px;
  border-radius: 24px 72px 24px 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(199,155,66,.17), transparent 34%),
    #111;
  color: white;
  box-shadow: var(--shadow);
}
.airport-card:before {
  content: "✦";
  position: absolute;
  right: 28px;
  top: 19px;
  color: var(--gold-light);
  font-size: 1.45rem;
}
.airport-card h3 { margin: 0 0 14px; font-family: Georgia, "Times New Roman", serif; font-size: 2.15rem; line-height: 1.08; font-weight: 500; }
.airport-card p { color: #c8c0b4; }
.airport-points { display: grid; gap: 9px; margin-top: 24px; }
.airport-points div { padding: 13px 0; border-top: 1px solid rgba(255,255,255,.09); }
.airport-points strong { color: var(--gold-light); }

/* ITINERARY RIBBON */
.itinerary {
  padding: 0;
  background: var(--paper);
  color: #0b0b0b;
}
.itinerary .container {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 52px;
  align-items: center;
  padding: 52px 58px;
  border-radius: 30px 90px 30px 90px;
  background: linear-gradient(120deg, #e5c776, #bd8d34);
  box-shadow: 0 18px 55px rgba(126,87,23,.18);
}
.itinerary .container:after {
  content: "";
  position: absolute;
  width: 430px;
  height: 170px;
  right: -130px;
  top: -65px;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 50%;
  transform: rotate(-12deg);
}
.itinerary h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.05rem, 4vw, 3.9rem); line-height: .98; font-weight: 500; }
.itinerary-flow { position: relative; z-index: 1; font-weight: 850; font-size: clamp(1.05rem, 2vw, 1.33rem); }

/* SECONDARY */
.secondary {
  background:
    radial-gradient(circle at 0 100%, rgba(199,155,66,.09), transparent 28%),
    #fff;
}
.secondary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.secondary-card {
  position: relative;
  padding: 38px;
  background: var(--paper);
  border: 1px solid rgba(0,0,0,.055);
  box-shadow: var(--soft-shadow);
}
.secondary-card:first-child { border-radius: 22px 64px 22px 22px; }
.secondary-card:last-child { border-radius: 64px 22px 22px 22px; transform: translateY(18px); }
.secondary-card h3 { margin: 0 0 10px; font-family: Georgia, "Times New Roman", serif; font-size: 1.9rem; line-height: 1.12; font-weight: 500; }
.secondary-card p { color: var(--text-soft); }

/* FINAL CTA */
.final-cta {
  overflow: hidden;
  text-align: center;
  color: white;
  background:
    radial-gradient(circle at 50% 120%, rgba(199,155,66,.17), transparent 36%),
    #080808;
}
.final-cta:before,
.final-cta:after {
  content: "";
  position: absolute;
  border: 1px solid rgba(199,155,66,.12);
  border-radius: 50%;
}
.final-cta:before { width: 480px; height: 180px; left: -170px; top: 20px; transform: rotate(17deg); }
.final-cta:after { width: 540px; height: 210px; right: -220px; bottom: 5px; transform: rotate(-14deg); }
.final-cta .container { position: relative; z-index: 1; }
.final-cta .section-title { max-width: 900px; margin: 0 auto; }
.final-cta .lead { margin: 22px auto 0; color: #c3bbaf; }
.final-cta .hero-actions { justify-content: center; }

.site-footer { background: #040404; color: #9f988e; padding: 36px 0; border-top: 1px solid rgba(199,155,66,.18); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-brand { color: white; font-family: Georgia, "Times New Roman", serif; }
.footer-small { font-size: .78rem; }

@media (max-width: 980px) {
  .site-nav { display: none; position: absolute; top: 80px; left: 0; right: 0; margin: 0; padding: 22px; background: rgba(8,8,8,.98); flex-direction: column; align-items: stretch; border-top: 1px solid rgba(255,255,255,.08); }
  .site-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .hero-grid, .intro-grid, .split, .airport-grid, .itinerary .container { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 62px; gap: 4px; }
  .hero-logo-wrap { min-height: 390px; }
  .hero-logo { width: min(450px, 88vw); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item + .trust-item:before { display: none; }
  .trust-item { border-bottom: 1px solid rgba(255,255,255,.07); }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:nth-child(2), .service-card:nth-child(5) { transform: none; }
  .service-card:nth-child(2):hover, .service-card:nth-child(5):hover { transform: translateY(-5px); }
  .section-head { align-items: start; flex-direction: column; }
  .itinerary .container { gap: 24px; }
  .secondary-card:last-child { transform: none; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  .topbar { font-size: .65rem; }
  .brand-text { font-size: .98rem; }
  .brand-mark { width: 46px; height: 46px; }
  .nav-wrap { min-height: 70px; }
  .site-nav { top: 70px; }
  .hero-grid { min-height: auto; padding: 58px 0 82px; }
  .hero h1 { font-size: clamp(2.75rem, 13vw, 4.45rem); }
  .hero-logo-wrap { min-height: 315px; }
  .hero-note { border-radius: 20px; }
  .hero-actions .btn { width: 100%; }
  .trust-strip { margin-top: -22px; }
  .trust-grid, .service-grid, .feature-list, .secondary-grid { grid-template-columns: 1fr; }
  .trust-grid { border-radius: 20px; }
  .trust-item { border-right: 0; }
  section { padding: 78px 0; }
  .intro-grid, .split, .airport-grid { gap: 46px; }
  .quote-card { margin-left: 0; border-radius: 10px 34px 34px 34px; padding: 28px 28px 28px 35px; }
  .service-card, .service-card:nth-child(2), .service-card:nth-child(3), .service-card:nth-child(5), .service-card:nth-child(6) { border-radius: 22px 42px 22px 22px; }
  .feature-panel { border-radius: 38px 16px 38px 16px; padding: 29px; }
  .airport-card { border-radius: 22px 48px 22px 22px; padding: 31px; }
  .itinerary .container { width: calc(100% - 28px); padding: 40px 28px; border-radius: 24px 54px 24px 54px; }
  .secondary-card:first-child, .secondary-card:last-child { border-radius: 22px 42px 22px 22px; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
}
