
:root {
  --bg: #090806;
  --bg-2: #0f0d09;
  --surface: #14110d;
  --surface-2: #1b1711;
  --surface-3: #221c13;
  --gold: #d6b25e;
  --gold-soft: #f1d993;
  --gold-deep: #9f7834;
  --text: #f5efe4;
  --muted: #bdb09c;
  --muted-2: #8e806c;
  --line: rgba(214, 178, 94, 0.22);
  --line-strong: rgba(214, 178, 94, 0.42);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius: 24px;
  --radius-sm: 14px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold-soft); }
button, input, select, textarea { font: inherit; }
::selection { background: rgba(214, 178, 94, .36); color: #fff; }

.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.container-wide { width: min(1320px, calc(100% - 32px)); margin-inline: auto; }
.narrow { width: min(820px, calc(100% - 40px)); }
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--gold);
  color: #090806;
  border-radius: 10px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(9, 8, 6, 0.74);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(214, 178, 94, .13);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: .08em;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.brand-text {
  display: grid;
  font-family: var(--serif);
  font-size: 1.03rem;
  line-height: 1;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-left: auto;
}
.primary-nav a {
  color: var(--muted);
  font-size: .91rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: color .2s ease;
}
.primary-nav a:hover,
.primary-nav a.is-active { color: var(--gold-soft); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  margin-left: auto;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 4px auto;
}
.header-cta { margin-left: 4px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #12100b;
  font-weight: 800;
  letter-spacing: .01em;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 14px 40px rgba(214,178,94,.16);
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease;
}
.btn:hover { color: #090806; transform: translateY(-2px); box-shadow: 0 18px 52px rgba(214,178,94,.23); }
.btn-small { min-height: 42px; padding: 10px 17px; font-size: .9rem; }
.btn-ghost {
  background: rgba(255,255,255,.03);
  color: var(--gold-soft);
  border: 1px solid var(--line-strong);
  box-shadow: none;
}
.btn-ghost:hover { color: var(--text); background: rgba(214,178,94,.1); }
.text-link {
  color: var(--gold-soft);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.text-link::after { content: '→'; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }

.hero, .page-hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.hero-slider, .hero-slide, .hero-overlay { position: absolute; inset: 0; }
.hero-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s ease, transform 5s ease;
}
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-overlay {
  background:
    radial-gradient(circle at 20% 30%, rgba(214,178,94,.18), transparent 34%),
    linear-gradient(90deg, rgba(9,8,6,.94) 0%, rgba(9,8,6,.72) 44%, rgba(9,8,6,.25) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(9,8,6,0) 36%);
  z-index: 1;
}
.hero-content, .page-hero-content { position: relative; z-index: 2; padding-top: 86px; }
.hero-content { max-width: 860px; }
.eyebrow {
  margin: 0 0 13px;
  color: var(--gold-soft);
  font-weight: 800;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .19em;
}
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--text);
  line-height: 1.04;
  margin: 0;
  font-weight: 700;
}
h1 { font-size: clamp(3rem, 7vw, 6.8rem); letter-spacing: -.04em; }
h2 { font-size: clamp(2.25rem, 4vw, 4rem); letter-spacing: -.035em; }
h3 { font-size: clamp(1.45rem, 2.2vw, 2rem); letter-spacing: -.02em; }
h4 { font-size: 1.18rem; }
.hero-subtitle {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--muted);
  max-width: 620px;
  margin: 24px 0 0;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
  color: var(--muted);
}
.hero-meta span {
  border: 1px solid rgba(214,178,94,.24);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255,255,255,.04);
}
.page-hero.compact { min-height: 520px; }
.page-hero.legal-hero { min-height: 420px; background: radial-gradient(circle at 20% 20%, rgba(214,178,94,.18), transparent 34%), #090806; }
.page-hero-content { max-width: 850px; }
.page-hero-content p:not(.eyebrow) { max-width: 720px; color: var(--muted); font-size: 1.15rem; }

.section { padding: clamp(72px, 9vw, 124px) 0; background: var(--bg); }
.section-dark { background: linear-gradient(180deg, var(--bg-2), #0a0907); border-block: 1px solid rgba(214,178,94,.08); }
.section-heading { margin-bottom: 42px; }
.section-heading.center { text-align: center; max-width: 780px; margin-inline: auto; }
.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .75fr);
  gap: 48px;
  align-items: end;
}
.section-heading p:not(.eyebrow), .section-heading.split > p, .lead, .narrow p, .split-content p { color: var(--muted); }
.lead { font-size: 1.28rem; color: var(--text); }

.feature-grid { display: grid; gap: 18px; }
.feature-grid.four { grid-template-columns: repeat(4, 1fr); }
.feature-card, .price-card, .testimonial-card, .team-card, .destination-card, .package-card, .contact-panel, .request-form, .policy-callout, .faq-list details {
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.feature-card { padding: 28px; }
.feature-card p, .price-card p, .team-card p, .testimonial-card blockquote, .destination-card p, .package-card p { color: var(--muted); }
.icon-line {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  color: var(--gold-soft);
  margin-bottom: 22px;
}
.icon-line svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

.destination-feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.destination-feature {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  align-items: end;
}
.destination-feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.destination-feature::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(9,8,6,.96), rgba(9,8,6,.34)); }
.destination-feature > div { position: relative; z-index: 1; padding: 34px; }
.destination-feature p { color: var(--muted); }

.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.price-card { padding: 28px; position: relative; overflow: hidden; }
.price-card.featured { border-color: rgba(214,178,94,.58); background: linear-gradient(180deg, rgba(214,178,94,.14), rgba(255,255,255,.025)); }
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(214,178,94,.1);
  border: 1px solid rgba(214,178,94,.28);
  color: var(--gold-soft);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
}
.price {
  color: var(--gold-soft) !important;
  font-family: var(--serif);
  font-size: 2.15rem;
  line-height: 1;
  margin: 20px 0 16px;
}
.price span { display: block; font-family: var(--sans); font-size: .9rem; color: var(--muted); margin-top: 8px; }

.testimonial-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.testimonial-card { padding: 24px; }
.testimonial-card img { width: 72px; height: 72px; object-fit: cover; border-radius: 50%; border: 1px solid var(--line-strong); margin-bottom: 18px; }
.testimonial-card blockquote { margin: 0 0 18px; font-size: .98rem; }
.client-name { font-weight: 800; color: var(--text); margin: 0; }
.client-detail { color: var(--muted-2); margin: 0; font-size: .9rem; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.team-card { overflow: hidden; }
.team-card img { width: 100%; aspect-ratio: 4/4.6; object-fit: cover; }
.team-card h3, .team-card p { margin-inline: 26px; }
.team-card h3 { margin-top: 24px; }
.team-card p:last-child { margin-bottom: 28px; }
.role { color: var(--gold-soft) !important; font-weight: 800; margin-top: 6px; }
.split-content { display: grid; grid-template-columns: .75fr 1.25fr; gap: 54px; align-items: start; }

.destination-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.destination-card { overflow: hidden; }
.destination-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.destination-card-body { padding: 26px; }
.destination-card dl, .package-meta {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}
.destination-card dt, .package-meta dt {
  color: var(--gold-soft);
  font-size: .77rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 800;
}
.destination-card dd, .package-meta dd { margin: 0; color: var(--muted); }

.package-list { display: grid; gap: 28px; }
.package-card { display: grid; grid-template-columns: .86fr 1.14fr; overflow: hidden; scroll-margin-top: 110px; }
.package-card img { height: 100%; min-height: 520px; width: 100%; object-fit: cover; }
.package-card-body { padding: clamp(28px, 4vw, 44px); }
.package-topline { display: flex; justify-content: space-between; gap: 16px; align-items: center; color: var(--muted); margin-bottom: 18px; }
.package-meta { grid-template-columns: repeat(2, 1fr); }
.include-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 24px 0; }
.include-grid h4 { color: var(--gold-soft); font-family: var(--sans); font-size: .9rem; text-transform: uppercase; letter-spacing: .13em; }
ul { padding-left: 1.1rem; }
.include-grid li { color: var(--muted); margin: 6px 0; }
.timeline { display: grid; gap: 16px; }
.timeline-item { display: grid; grid-template-columns: 56px 1fr; gap: 18px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,255,255,.025); }
.timeline-item span { color: var(--gold-soft); font-weight: 900; letter-spacing: .13em; }
.timeline-item p { margin: 0; }
.policy-callout { padding: 34px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.policy-callout p { color: var(--muted); }

.gallery-toolbar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 32px; }
.gallery-toolbar button {
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255,255,255,.03);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 800;
}
.gallery-toolbar button.is-active, .gallery-toolbar button:hover { color: #090806; background: var(--gold); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-card {
  position: relative;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface);
  padding: 0;
  cursor: pointer;
  text-align: left;
}
.gallery-card[hidden] { display: none; }
.gallery-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-card:hover img { transform: scale(1.05); }
.gallery-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(9,8,6,.86), rgba(9,8,6,.03)); }
.gallery-card span { position: absolute; z-index: 1; left: 18px; right: 18px; bottom: 16px; color: var(--text); font-family: var(--serif); font-size: 1.35rem; line-height: 1.1; }
.gallery-card em { display: block; font-family: var(--sans); color: var(--gold-soft); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; font-style: normal; margin-bottom: 5px; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.9);
  display: none;
  place-items: center;
  padding: 72px 20px 34px;
}
.lightbox.is-open { display: grid; }
.lightbox img { max-height: 78vh; width: min(1120px, 100%); object-fit: contain; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); box-shadow: var(--shadow); }
.lightbox p { color: var(--text); text-align: center; margin: 16px 0 0; }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.05);
  color: var(--text);
  font-size: 2rem;
  cursor: pointer;
}

.contact-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 28px; align-items: start; }
.contact-panel, .request-form { padding: 32px; }
.contact-panel address, .site-footer address { font-style: normal; color: var(--muted); }
.contact-panel a, .site-footer a { color: var(--gold-soft); }
.contact-expectations { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.request-form label { display: grid; gap: 8px; color: var(--gold-soft); font-weight: 800; font-size: .92rem; }
.request-form label span { color: var(--muted-2); font-weight: 600; }
.request-form label.full { grid-column: 1 / -1; }
.request-form input, .request-form select, .request-form textarea {
  width: 100%;
  color: var(--text);
  background: rgba(255,255,255,.045);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  outline: none;
}
.request-form textarea { resize: vertical; }
.request-form input:focus, .request-form select:focus, .request-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(214,178,94,.14); }
.request-form select option { background: #15110d; color: var(--text); }
.form-note { color: var(--muted); font-size: .9rem; }
.form-note a { color: var(--gold-soft); text-decoration: underline; text-decoration-color: rgba(214,178,94,.45); }
.honeypot { display: none !important; }

.legal-section h2 { margin-top: 34px; margin-bottom: 8px; }
.legal-section h2:first-child { margin-top: 0; }
.legal-section a { color: var(--gold-soft); text-decoration: underline; text-decoration-color: rgba(214,178,94,.45); }
.faq-list { display: grid; gap: 14px; }
.faq-list details { padding: 22px 24px; }
.faq-list summary { cursor: pointer; font-weight: 900; color: var(--text); }
.faq-list p { color: var(--muted); margin-bottom: 0; }

.closing-cta { padding: 72px 0; background: radial-gradient(circle at 15% 15%, rgba(214,178,94,.16), transparent 36%), var(--surface); border-top: 1px solid rgba(214,178,94,.12); }
.closing-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 42px; }
.closing-cta p { color: var(--muted); max-width: 640px; }
.site-footer { background: #060504; border-top: 1px solid rgba(214,178,94,.12); padding: 62px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr .7fr .85fr; gap: 38px; }
.footer-brand { margin-bottom: 18px; }
.footer-note, .microcopy { color: var(--muted); }
.site-footer h3 { font-family: var(--sans); font-size: .83rem; color: var(--gold-soft); text-transform: uppercase; letter-spacing: .15em; margin-bottom: 14px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--gold-soft); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; color: var(--muted-2); border-top: 1px solid rgba(214,178,94,.12); margin-top: 44px; padding-top: 22px; font-size: .9rem; }

@media (max-width: 1120px) {
  .feature-grid.four, .pricing-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .primary-nav { gap: 14px; }
  .header-cta { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .header-inner { min-height: 70px; }
  .nav-toggle { display: block; }
  .primary-nav {
    position: fixed;
    top: 70px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 10px;
    background: rgba(12,10,7,.97);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .primary-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .primary-nav a { padding: 12px 14px; border-radius: 12px; }
  .primary-nav a:hover { background: rgba(214,178,94,.08); }
  .hero, .page-hero.compact { min-height: 680px; }
  h1 { font-size: clamp(2.65rem, 13vw, 4.4rem); }
  .section-heading.split, .split-content, .package-card, .contact-layout, .closing-cta-inner, .footer-bottom, .policy-callout { grid-template-columns: 1fr; display: grid; }
  .destination-feature-grid, .destination-grid, .team-grid, .footer-grid { grid-template-columns: 1fr; }
  .package-card img { min-height: 300px; aspect-ratio: 16/10; }
  .contact-panel, .request-form { padding: 24px; }
}
@media (max-width: 620px) {
  .container, .container-wide, .narrow { width: min(100% - 28px, 1160px); }
  body { font-size: 15px; }
  .brand-text { font-size: .9rem; }
  .brand-mark { width: 40px; height: 40px; }
  .hero { min-height: 760px; }
  .hero-actions { display: grid; }
  .hero-meta span { width: 100%; }
  .feature-grid.four, .pricing-grid, .testimonial-grid, .gallery-grid, .form-grid, .include-grid, .package-meta { grid-template-columns: 1fr; }
  .gallery-card { min-height: 230px; }
  .request-form label.full { grid-column: auto; }
  .destination-feature { min-height: 480px; }
  .destination-feature > div { padding: 24px; }
  .footer-bottom { gap: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
