:root {
  --ink: #080808;
  --ink-soft: #171717;
  --gold: #cba34d;
  --gold-light: #eed788;
  --blue: #0877b9;
  --paper: #f7f5ef;
  --white: #ffffff;
  --muted: #68645c;
  --line: rgba(203, 163, 77, 0.28);
  --shadow: 0 24px 65px rgba(0,0,0,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink-soft);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8,8,8,.96);
  border-bottom: 1px solid rgba(203,163,77,.34);
  backdrop-filter: blur(12px);
}
.nav {
  width: min(1160px, calc(100% - 40px));
  min-height: 76px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  color: var(--gold-light);
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.06rem;
  letter-spacing: .05em;
}
.brand span { color: #aaa; font-family: inherit; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: #f4f1e8;
  text-decoration: none;
  font-size: .92rem;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gold-light); }
.menu-button {
  display: none;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  font: inherit;
}

.hero {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 8%, rgba(203,163,77,.18), transparent 28rem),
    linear-gradient(135deg, #050505 0%, #111 62%, #080808 100%);
}
.hero-inner {
  width: min(1160px, calc(100% - 40px));
  margin: auto;
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 54px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
  font-weight: 500;
}
h1 { font-size: clamp(2.6rem, 5vw, 5.1rem); max-width: 790px; }
h2 { font-size: clamp(2rem, 3.7vw, 3.35rem); }
h3 { font-size: 1.38rem; }
.hero-copy > p:not(.eyebrow) { max-width: 650px; color: #d9d6ce; font-size: 1.08rem; }
.logo-stage {
  min-height: 470px;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.logo-stage img {
  width: 870px;
  max-width: none;
  margin: -145px -160px -155px;
}
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #111;
  text-decoration: none;
  font-weight: 780;
  box-shadow: 0 10px 26px rgba(203,163,77,.14);
}
.button.secondary { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.32); box-shadow: none; }
.button.blue { background: var(--blue); color: var(--white); box-shadow: 0 10px 26px rgba(8,119,185,.18); }

.section { padding: 88px 0; }
.section.alt { background: var(--white); }
.shell { width: min(1160px, calc(100% - 40px)); margin: auto; }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading p { color: var(--muted); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(25,25,25,.08);
  border-top: 3px solid var(--gold);
  border-radius: 12px;
  box-shadow: 0 15px 42px rgba(0,0,0,.055);
}
.card p { margin-bottom: 0; color: var(--muted); }
.card .number { color: var(--gold); font-family: Georgia, serif; font-size: 2.1rem; line-height: 1; margin-bottom: 18px; }
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.feature-list { padding: 0; margin: 28px 0 0; list-style: none; }
.feature-list li { position: relative; padding: 10px 0 10px 30px; border-bottom: 1px solid rgba(0,0,0,.08); }
.feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 800; }
.quote-panel {
  padding: 44px;
  color: var(--white);
  background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.quote-panel p { color: #d9d6ce; }
.quote-panel .button { margin-top: 12px; }

.page-hero { padding: 92px 0 78px; color: var(--white); background: linear-gradient(135deg,#080808,#171717); }
.page-hero h1 { max-width: 880px; font-size: clamp(2.55rem, 5vw, 4.8rem); }
.page-hero p:not(.eyebrow) { color: #d7d4cd; max-width: 720px; font-size: 1.08rem; }
.travel-intro { display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px; align-items: start; }
.brochure-card {
  background: var(--white);
  padding: 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.08);
}
.brochure-card img { border: 1px solid rgba(0,0,0,.08); }
.brochure-actions { display: grid; gap: 10px; margin-top: 16px; }
.fine-print { color: var(--muted); font-size: .81rem; line-height: 1.5; }
.notice {
  padding: 20px 22px;
  margin-top: 26px;
  background: #eef7fc;
  border-left: 4px solid var(--blue);
  border-radius: 8px;
}
.contact-card {
  max-width: 760px;
  padding: 44px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.contact-row { padding: 18px 0; border-bottom: 1px solid rgba(0,0,0,.08); }
.contact-row:last-of-type { border: 0; }
.contact-label { display: block; color: var(--muted); font-size: .84rem; text-transform: uppercase; letter-spacing: .1em; }
.contact-value { font-size: 1.14rem; font-weight: 700; text-decoration: none; }

.site-footer { padding: 48px 0; color: #c8c5bd; background: #080808; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 36px; align-items: end; }
.footer-grid p { margin: 5px 0; }
.footer-nav { display: flex; justify-content: flex-end; gap: 20px; }
.footer-nav a { color: var(--gold-light); text-decoration: none; }
.copyright { color: #888; font-size: .82rem; margin-top: 25px !important; }

@media (max-width: 820px) {
  .menu-button { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    inset: 76px 0 auto;
    padding: 18px 20px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    background: #090909;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .hero-inner, .split, .travel-intro, .footer-grid { grid-template-columns: 1fr; }
  .hero-inner { min-height: auto; padding: 74px 0 56px; gap: 0; }
  .logo-stage { min-height: 320px; order: -1; }
  .logo-stage img { width: 670px; margin: -120px -155px -130px; }
  .grid-3 { grid-template-columns: 1fr; }
  .section { padding: 66px 0; }
  .footer-nav { justify-content: flex-start; flex-wrap: wrap; }
}

@media (max-width: 520px) {
  .nav { width: min(100% - 28px, 1160px); }
  .brand { max-width: 230px; font-size: .9rem; line-height: 1.2; }
  .shell, .hero-inner { width: min(100% - 30px, 1160px); }
  h1 { font-size: 2.55rem; }
  .logo-stage { min-height: 250px; }
  .logo-stage img { width: 550px; margin: -95px -160px -105px; }
  .actions { flex-direction: column; }
  .button { width: 100%; }
  .card, .quote-panel, .contact-card { padding: 26px 22px; }
}
