/* ═══════════════════════════════════════════════════════════════════════════
   HaoTheMan.com — Shared Design System
   Stack: plain HTML/CSS/JS, served by Caddy file_server
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Design Tokens ──────────────────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg:        #0a0a0a;
  --bg-2:      #111111;
  --bg-3:      #181818;
  --bg-card:   #141414;
  --bg-raise:  #1c1c1c;

  /* Brand colors */
  --gold:      #C8A24B;
  --gold-lt:   #D4AF37;
  --gold-dim:  rgba(200, 162, 75, 0.18);
  --red:       #C0182B;
  --red-dim:   rgba(192, 24, 43, 0.15);

  /* Text */
  --white:     #F5F0E8;
  --white-70:  rgba(245, 240, 232, 0.70);
  --white-45:  rgba(245, 240, 232, 0.45);
  --white-20:  rgba(245, 240, 232, 0.20);
  --white-08:  rgba(245, 240, 232, 0.08);

  /* Typography */
  --font-head:  'Anton', 'Oswald', Impact, sans-serif;
  --font-sub:   'Oswald', 'Anton', sans-serif;
  --font-body:  'Inter', system-ui, sans-serif;

  /* Spacing */
  --max-w:     1200px;
  --section-py: 96px;
  --radius:    6px;
  --radius-lg: 12px;

  /* Transitions */
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur:       0.3s;
}

/* ── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Logo mark & Seal ───────────────────────────────────────────────────── */
.hao-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.hao-seal .seal-char {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 22px;
  line-height: 1;
  color: var(--white);
  user-select: none;
}

.hao-seal-lg {
  width: 80px;
  height: 80px;
}
.hao-seal-lg .seal-char { font-size: 40px; }

.hao-seal-xl {
  width: 120px;
  height: 120px;
}
.hao-seal-xl .seal-char { font-size: 60px; }

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-text { display: flex; flex-direction: column; line-height: 1; }

.logo-hao {
  font-family: var(--font-head);
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: var(--white);
}

.logo-nq {
  font-family: var(--font-sub);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}

/* ── Watermark 豪 ───────────────────────────────────────────────────────── */
.hao-watermark {
  position: absolute;
  font-family: Georgia, serif;
  font-size: clamp(160px, 30vw, 360px);
  color: rgba(200, 162, 75, 0.04);
  user-select: none;
  pointer-events: none;
  line-height: 1;
  z-index: 0;
}

/* ── Navigation ─────────────────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: transparent;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

#site-header.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--white-08);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-70);
  transition: color var(--dur);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--gold); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-book {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 9px 20px;
  border-radius: var(--radius);
  transition: background var(--dur), transform 0.15s;
  white-space: nowrap;
}
.btn-book:hover { background: var(--gold-lt); transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(10, 10, 10, 0.98);
  border-top: 1px solid var(--white-08);
  padding: 20px 24px 32px;
  gap: 0;
}
.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-70);
  padding: 14px 0;
  border-bottom: 1px solid var(--white-08);
  transition: color var(--dur);
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile a:last-of-type { border-bottom: none; }

.btn-book-mobile {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--font-sub);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bg) !important;
  background: var(--gold);
  padding: 12px 24px;
  border-radius: var(--radius);
  text-align: center;
}

.nav-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--white-08);
}

.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  color: var(--white-45);
  transition: color var(--dur);
  border: none !important;
  padding: 0 !important;
}
.nav-social a:hover { color: var(--gold); }
.nav-social svg { width: 18px; height: 18px; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sub);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: all 0.2s var(--ease);
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg);
  border: 2px solid var(--gold);
}
.btn-primary:hover { background: var(--gold-lt); border-color: var(--gold-lt); transform: translateY(-2px); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white-20);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-ghost:hover { background: var(--gold); color: var(--bg); }

.btn-lg { padding: 18px 40px; font-size: 0.88rem; }
.btn-sm { padding: 10px 22px; font-size: 0.72rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Section typography ─────────────────────────────────────────────────── */
.section-label {
  font-family: var(--font-sub);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::after {
  content: '';
  display: block;
  height: 1px;
  width: 40px;
  background: var(--gold);
  opacity: 0.5;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 20px;
}

.section-title .accent { color: var(--gold); }
.section-title .red { color: var(--red); }

.section-sub {
  font-size: 1.05rem;
  color: var(--white-70);
  line-height: 1.72;
  max-width: 620px;
  margin-bottom: 48px;
}

/* Gold rule divider */
.gold-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 0 0 32px;
}

/* ── Hero (shared base) ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  overflow: hidden;
  background: var(--bg);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 162, 75, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 162, 75, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 70% 60%, rgba(192, 24, 43, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse 60% 80% at 20% 20%, rgba(200, 162, 75, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-sub);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-title .gold { color: var(--gold); }
.hero-title .red  { color: var(--red); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--white-70);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

/* ── Image placeholder (camera bracket frame) ───────────────────────────── */
.img-frame {
  position: relative;
  background: var(--bg-3);
  overflow: hidden;
}

.img-frame::before,
.img-frame::after,
.img-frame .corner-tl,
.img-frame .corner-br {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--gold);
  border-style: solid;
  z-index: 2;
  pointer-events: none;
}

.img-frame::before  { top: 8px;    left: 8px;    border-width: 2px 0 0 2px; }
.img-frame::after   { bottom: 8px; right: 8px;   border-width: 0 2px 2px 0; }

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--bg-3) 0%, var(--bg-raise) 100%);
  color: var(--white-20);
  font-family: var(--font-sub);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
}
.img-placeholder .ph-icon { font-size: 2rem; margin-bottom: 4px; }

/* ── Stat tiles ─────────────────────────────────────────────────────────── */
.stat-band {
  background: var(--bg-2);
  border-top: 1px solid var(--white-08);
  border-bottom: 1px solid var(--white-08);
  padding: 48px 0;
}

.stat-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  padding: 0 40px;
  border-right: 1px solid var(--white-08);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.stat-label {
  font-family: var(--font-sub);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-45);
}

.stat-note {
  font-size: 0.7rem;
  color: var(--white-20);
  text-align: center;
  margin-top: 24px;
  letter-spacing: 0.04em;
}

/* ── Cards ──────────────────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--white-08);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: border-color var(--dur), transform var(--dur), box-shadow var(--dur);
}
.card:hover {
  border-color: rgba(200, 162, 75, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.card-num {
  font-family: var(--font-head);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 16px;
}

.card-icon {
  width: 48px; height: 48px;
  color: var(--gold);
  margin-bottom: 20px;
}

.card-title {
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.card-body {
  font-size: 0.9rem;
  color: var(--white-70);
  line-height: 1.7;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--dur);
}
.card-link:hover { gap: 10px; }

/* ── Package cards (Local Business) ─────────────────────────────────────── */
.pkg-card {
  background: var(--bg-card);
  border: 1px solid var(--white-08);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color var(--dur), transform var(--dur);
}
.pkg-card:hover { border-color: rgba(200, 162, 75, 0.35); transform: translateY(-3px); }

.pkg-card.featured {
  border-color: var(--gold);
  position: relative;
}
.pkg-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px; left: 24px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-sub);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 3px 10px;
  border-radius: 20px;
}

.pkg-name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 4px;
}

.pkg-best {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.pkg-divider {
  height: 1px;
  background: var(--white-08);
  margin: 20px 0;
}

.pkg-includes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 24px;
}

.pkg-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--white-70);
  line-height: 1.5;
}
.pkg-includes li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pkg-price {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 10px 20px;
  border: 1px solid rgba(200, 162, 75, 0.35);
  border-radius: var(--radius);
  text-align: center;
}

/* ── Speaking format cards ──────────────────────────────────────────────── */
.format-card {
  background: var(--bg-card);
  border: 1px solid var(--white-08);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 28px 32px;
  transition: border-color var(--dur), transform var(--dur);
}
.format-card:hover { border-left-color: var(--red); transform: translateX(4px); }

.format-title {
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}

.format-duration {
  font-family: var(--font-sub);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.format-desc {
  font-size: 0.88rem;
  color: var(--white-70);
  line-height: 1.65;
}

/* ── Pull-quote / blockquote ────────────────────────────────────────────── */
.pull-quote {
  position: relative;
  padding: 32px 40px 32px 52px;
  border-left: 3px solid var(--gold);
  background: var(--bg-2);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 40px 0;
}

.pull-quote::before {
  content: '"';
  position: absolute;
  top: 12px; left: 16px;
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.35;
}

.pull-quote p {
  font-family: var(--font-sub);
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--white);
  font-style: italic;
  letter-spacing: 0.02em;
}

.pull-quote cite {
  display: block;
  margin-top: 12px;
  font-family: var(--font-sub);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ── Contact form ───────────────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-45);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-raise);
  border: 1px solid var(--white-08);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--dur), box-shadow var(--dur);
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--white-20); }

.form-select { cursor: pointer; }
.form-textarea { resize: vertical; min-height: 140px; line-height: 1.6; }

/* Honeypot */
.form-honey { display: none; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-error-msg {
  font-size: 0.78rem;
  color: #e57373;
  margin-top: 4px;
}

.form-status {
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
  display: none;
}
.form-status.success {
  display: block;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: #6ee7b7;
}
.form-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #fca5a5;
}

/* ── Contact cards ──────────────────────────────────────────────────────── */
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--white-08);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color var(--dur);
}
.contact-card:hover { border-color: rgba(200, 162, 75, 0.3); }

.contact-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, #8b0018 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 12px;
}

.contact-name {
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.contact-phone,
.contact-email {
  font-size: 0.9rem;
  color: var(--gold);
  transition: color var(--dur);
}
.contact-phone:hover,
.contact-email:hover { color: var(--gold-lt); }

/* ── Footer ─────────────────────────────────────────────────────────────── */
#site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--white-08);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--white-08);
}

.footer-brand { display: flex; flex-direction: column; gap: 16px; }

.footer-tagline {
  font-size: 0.88rem;
  color: var(--white-45);
  line-height: 1.6;
  max-width: 280px;
}

.footer-social-row {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--white-08);
  color: var(--white-45);
  transition: background var(--dur), color var(--dur);
}
.footer-social-row a:hover { background: var(--gold-dim); color: var(--gold); }
.footer-social-row svg { width: 16px; height: 16px; }

.footer-col-head {
  font-family: var(--font-sub);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-20);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--white-45);
  transition: color var(--dur);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-contact-item .fc-name {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-20);
}
.footer-contact-item a {
  font-size: 0.82rem;
  color: var(--white-45);
  transition: color var(--dur);
}
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
}

.footer-motif {
  font-family: var(--font-sub);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--white-20);
  letter-spacing: 0.04em;
}

.footer-nq {
  font-family: var(--font-sub);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white-20);
}

/* ── Scroll animations ──────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Utility ─────────────────────────────────────────────────────────────── */
.text-gold  { color: var(--gold); }
.text-red   { color: var(--red); }
.text-muted { color: var(--white-45); }
.text-sm    { font-size: 0.82rem; }
.text-upper {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.tag {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--white-20);
  color: var(--white-70);
}
.tag-gold { border-color: rgba(200, 162, 75, 0.4); color: var(--gold); }
.tag-red  { border-color: rgba(192, 24, 43, 0.4);  color: var(--red); }

.hr-gold {
  border: none;
  border-top: 1px solid rgba(200, 162, 75, 0.2);
  margin: 48px 0;
}

/* Page interior (non-hero) top padding for fixed nav */
.page-top { padding-top: 120px; }

/* Fine print / disclaimer */
.fine-print {
  font-size: 0.75rem;
  color: var(--white-20);
  line-height: 1.65;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--white-08);
}
.fine-print p + p { margin-top: 6px; }

/* Beacons link-in-bio button */
.beacons-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 24px;
  border: 1.5px solid rgba(200, 162, 75, 0.4);
  color: var(--gold);
  background: var(--gold-dim);
  transition: all var(--dur);
}
.beacons-btn:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand { grid-column: 1 / -1; }

  .grid-4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }

  .nav-links { display: none; }
  .btn-book  { display: none; }
  .nav-hamburger { display: flex; }

  .hero-title { font-size: clamp(2.4rem, 12vw, 4rem); }

  .stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .stat-item { border-right: none; border-bottom: 1px solid var(--white-08); padding: 0 0 24px; }
  .stat-item:nth-child(even) { border-bottom: none; }
  .stat-item:last-child, .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: auto; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav-inner  { padding: 0 16px; }
  .stat-grid  { grid-template-columns: 1fr; }
  .stat-item  { border-bottom: 1px solid var(--white-08); padding-bottom: 20px; }
  .stat-item:last-child { border-bottom: none; }
}
