:root {
  --black: #0f1115;
  --black-soft: #171a20;
  --ink: #22201d;
  --gold: #d7b46a;
  --gold-light: #f1d28a;
  --beige: #f4ead8;
  --cream: #fff9ed;
  --taupe: #8b7a61;
  --muted: #766f66;
  --line: rgba(215, 180, 106, .32);
  --shadow: 0 24px 80px rgba(15, 17, 21, .18);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, var(--cream), #f7efe2 52%, #fffaf0);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 999;
  background: var(--gold);
  color: var(--black);
  padding: 10px 16px;
  border-radius: 12px;
}
.skip-link:focus { left: 10px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
}
.site-header.scrolled {
  background: rgba(15, 17, 21, .82);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 50px rgba(0,0,0,.25);
  padding: 10px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-weight: 800;
  letter-spacing: .02em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(241, 210, 138, .75);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: var(--gold-light);
  box-shadow: inset 0 0 18px rgba(215,180,106,.18);
}
.brand-text em { color: var(--gold-light); font-style: normal; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255,255,255,.88);
  font-size: .95rem;
  font-weight: 600;
}
.site-nav a {
  position: relative;
  transition: color .25s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--gold-light);
  transition: width .25s ease;
}
.site-nav a:hover,
.site-nav a.active { color: var(--gold-light); }
.site-nav a:hover::after,
.site-nav a.active::after { width: 100%; }
.social-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-top a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(241,210,138,.45);
  background: rgba(255,255,255,.08);
  color: white;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.social-top a:hover { transform: translateY(-3px); background: var(--gold-light); color: var(--black); }
.social-top svg { width: 21px; height: 21px; fill: currentColor; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(241,210,138,.45);
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  padding: 11px;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: white;
  margin: 5px 0;
  border-radius: 999px;
  transition: transform .25s ease, opacity .25s ease;
}
.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  animation: heroZoom 14s ease-out forwards;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 35%, rgba(241, 210, 138, .14), transparent 28%),
    linear-gradient(90deg, rgba(15,17,21,.86) 0%, rgba(15,17,21,.55) 42%, rgba(15,17,21,.22) 100%),
    linear-gradient(0deg, rgba(15,17,21,.94) 0%, rgba(15,17,21,.08) 45%, rgba(15,17,21,.18) 100%);
}
.hero-content {
  position: relative;
  color: white;
  padding: 168px 0 76px;
  max-width: 920px;
  margin-inline: 0 auto;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .78rem;
}
.eyebrow.dark { color: #a67822; }
h1, h2, h3 { line-height: 1.06; margin: 0; letter-spacing: -.04em; }
h1 {
  max-width: 900px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  text-shadow: 0 18px 60px rgba(0,0,0,.45);
}
h2 { font-size: clamp(2.15rem, 4vw, 4.45rem); color: var(--black); }
h3 { font-size: clamp(1.35rem, 2vw, 2rem); }
.lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.88);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}
.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-3px); }
.btn-gold {
  color: #14120e;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 18px 40px rgba(215,180,106,.28);
}
.btn-gold:hover { box-shadow: 0 24px 58px rgba(215,180,106,.38); }
.btn-glass {
  color: white;
  border-color: rgba(255,255,255,.32);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}
.btn-glass:hover { background: rgba(255,255,255,.18); }
.btn-dark { background: var(--black); color: white; border-color: var(--black); }
.btn-outline { color: var(--black); border-color: rgba(15,17,21,.22); background: white; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}
.hero-stats span {
  padding: 14px 18px;
  border: 1px solid rgba(241,210,138,.28);
  background: rgba(255,255,255,.09);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  color: rgba(255,255,255,.82);
}
.hero-stats strong { color: var(--gold-light); margin-right: 6px; }

.section { padding: 106px 0; }
.soft { background: linear-gradient(180deg, #f9f0df, #fffaf0); }
.grid-two {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
  gap: 56px;
  align-items: center;
}
.grid-two.reverse { grid-template-columns: minmax(320px, .8fr) minmax(0, 1fr); }
.grid-two.reverse > :first-child { order: 2; }
.grid-two.reverse > :last-child { order: 1; }
.section p { color: var(--muted); font-size: 1.04rem; }
.story-card,
.gold-panel,
.free-card,
.contact-card {
  position: relative;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.story-card {
  padding: 44px;
  background: linear-gradient(145deg, #191b1f, #2a251b);
  color: white;
  overflow: hidden;
}
.story-card::before,
.gold-panel::before,
.free-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(241,210,138,.28);
  pointer-events: none;
}
.story-card p { color: rgba(255,255,255,.85); font-size: 1.2rem; }
.quote-mark {
  position: absolute;
  top: -18px;
  right: 34px;
  color: rgba(241,210,138,.16);
  font-size: 11rem;
  line-height: 1;
  font-family: Georgia, serif;
}
.signature { color: var(--gold-light); font-weight: 900; margin-top: 24px; }
.section-heading {
  max-width: 860px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-heading p { margin-inline: auto; max-width: 760px; }
.section-heading.light h2 { color: white; }
.section-heading.light p { color: rgba(255,255,255,.74); }
.points-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.point-card {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(215,180,106,.28);
  box-shadow: 0 16px 50px rgba(15,17,21,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.point-card:hover,
.travel-item:hover,
.pricing-card:hover { transform: translateY(-8px); box-shadow: 0 30px 80px rgba(15,17,21,.16); }
.icon-pill {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  font-weight: 900;
  margin-bottom: 20px;
}
.travel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.travel-item {
  min-height: 120px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(215,180,106,.22);
  box-shadow: 0 14px 40px rgba(15,17,21,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.travel-item span { font-size: 2rem; }
.travel-item strong { font-size: 1.08rem; }

.dark-section {
  background:
    radial-gradient(circle at 15% 0%, rgba(215,180,106,.18), transparent 32%),
    radial-gradient(circle at 85% 30%, rgba(215,180,106,.12), transparent 34%),
    var(--black);
  color: white;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 530px;
  padding: 34px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  box-shadow: 0 20px 80px rgba(0,0,0,.18);
  transition: transform .3s ease, box-shadow .3s ease;
  overflow: hidden;
}
.pricing-card.featured { border-color: rgba(38, 178, 226, .65); box-shadow: 0 0 0 1px rgba(38,178,226,.22), 0 20px 80px rgba(0,0,0,.18); }
.pricing-card.premium { border-color: rgba(241,210,138,.72); box-shadow: 0 0 0 1px rgba(241,210,138,.28), 0 20px 80px rgba(0,0,0,.18); }
.pricing-card::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(241,210,138,.08);
}
.plan-kicker {
  margin: 0 0 12px;
  color: var(--gold-light) !important;
  font-size: .78rem !important;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 900;
}
.pricing-card h3 { color: white; margin-bottom: 22px; }
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 13px;
  color: rgba(255,255,255,.86);
}
.pricing-card li { display: flex; gap: 10px; }
.pricing-card li::before { content: "✓"; color: var(--gold-light); }
.pricing-card li.muted { color: rgba(255,255,255,.34); }
.pricing-card li.muted::before { content: "–"; color: rgba(255,255,255,.22); }
.pricing-card strong { color: var(--gold-light); }
.badge {
  position: absolute;
  top: 0;
  right: 28px;
  padding: 9px 18px;
  border-radius: 0 0 14px 14px;
  background: #1686aa;
  color: white;
  text-transform: uppercase;
  font-weight: 900;
  font-size: .7rem;
  letter-spacing: .04em;
}
.badge.gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--black); }
.price-line {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.price-line strong {
  display: block;
  color: white;
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: -.05em;
  text-shadow: 2px 2px 0 rgba(22, 134, 170, .7);
}
.price-line span { color: rgba(255,255,255,.58); }
.monthly {
  color: rgba(255,255,255,.78) !important;
  margin-bottom: 0;
}

.opportunity { background: #fff8eb; }
.gold-panel {
  padding: 38px;
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  color: var(--black);
}
.gold-panel h3 { margin-bottom: 20px; }
.gold-panel ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  font-weight: 700;
}
.gold-panel li { display: flex; gap: 10px; }
.gold-panel li::before { content: "✓"; }
.small-note {
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  background: rgba(215,180,106,.12);
  border-radius: 0 14px 14px 0;
}
.free-trip {
  background:
    linear-gradient(rgba(15,17,21,.7), rgba(15,17,21,.78)),
    url("../images/hero-lothaire-pro.jpg") center/cover fixed;
}
.free-card {
  max-width: 850px;
  margin: auto;
  padding: clamp(34px, 6vw, 70px);
  background: rgba(15,17,21,.78);
  color: white;
  text-align: center;
  backdrop-filter: blur(16px);
}
.free-card h2 { color: white; }
.free-card p { color: rgba(255,255,255,.78); max-width: 720px; margin-inline: auto; }
.faq { background: #fbf3e6; }
.faq-list {
  max-width: 900px;
  margin: auto;
  display: grid;
  gap: 14px;
}
details {
  border: 1px solid rgba(215,180,106,.28);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.72);
  padding: 0 24px;
  box-shadow: 0 12px 30px rgba(15,17,21,.05);
}
summary {
  cursor: pointer;
  padding: 22px 0;
  font-weight: 900;
  color: var(--black);
}
details p { margin-top: 0; }
.contact { background: var(--black); padding-top: 84px; }
.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: center;
  padding: clamp(32px, 5vw, 58px);
  background: linear-gradient(145deg, #fff8eb, #efe0c5);
}
.contact-card h2 { max-width: 760px; }
.contact-actions { justify-content: flex-end; max-width: 430px; }
.profile-link {
  color: var(--taupe);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.site-footer {
  background: var(--black);
  color: white;
  padding: 36px 0 46px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 28px;
}
.footer-inner p { margin: 8px 0 0; color: rgba(255,255,255,.64); }
.footer-note { max-width: 620px; font-size: .92rem; }
.back-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-size: 1.35rem;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(0,0,0,.24);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity .25s ease, transform .25s ease;
}
.back-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

@keyframes heroZoom { to { transform: scale(1); } }

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    inset: 76px 20px auto 20px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(241,210,138,.28);
    border-radius: 22px;
    background: rgba(15,17,21,.94);
    box-shadow: 0 30px 90px rgba(0,0,0,.36);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }
  .menu-open .site-nav { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav a { padding: 14px 14px; }
  .site-nav a::after { display: none; }
  .menu-toggle { display: block; }
  .social-top { margin-left: auto; }
  .grid-two,
  .grid-two.reverse,
  .contact-card { grid-template-columns: 1fr; }
  .grid-two.reverse > :first-child,
  .grid-two.reverse > :last-child { order: initial; }
  .points-grid,
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-actions { justify-content: flex-start; max-width: none; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--container)); }
  .brand-text { display: none; }
  .social-top a { width: 40px; height: 40px; }
  .hero { min-height: 92svh; }
  .hero-bg { object-position: 58% center; }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(15,17,21,.85) 0%, rgba(15,17,21,.54) 100%),
      linear-gradient(0deg, rgba(15,17,21,.95) 0%, rgba(15,17,21,.12) 60%);
  }
  .hero-content { padding: 138px 0 48px; }
  .hero-stats span { border-radius: 18px; width: 100%; }
  .section { padding: 74px 0; }
  .travel-grid { grid-template-columns: 1fr; }
  .story-card,
  .gold-panel { padding: 30px; }
  .pricing-card { min-height: auto; padding: 30px; }
  .price-line strong { font-size: 2.2rem; }
  .footer-inner { flex-direction: column; }
  .free-trip { background-attachment: scroll; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
