/* ════════════════════════════════════════════════════════════════════
   SHARED STYLES — used by /booking, /thank-you, /thanks, /privacy
   The main index.html has its own inline styles for performance.
   ════════════════════════════════════════════════════════════════════ */
:root {
  --slate-700: #2d4152;
  --slate-800: #1d2c3a;
  --slate-900: #13202d;
  --gold-400:  #f5c84b;
  --gold-500:  #e0aa1e;
  --gold-600:  #b8922f;
  --ink:       #14110f;
  --ink-2:     #2a2521;
  --ink-3:     #5a544e;
  --ink-4:     #8a847c;
  --bg:        #ffffff;
  --bg-soft:   #faf7f0;
  --bg-warm:   #f5efe2;
  --line:      #ebe6dc;
  --line-2:    #d9d2c2;
  --shadow-sm: 0 1px 2px rgba(20,17,15,.05), 0 4px 14px -4px rgba(20,17,15,.08);
  --shadow-md: 0 2px 6px rgba(20,17,15,.06), 0 14px 32px -10px rgba(20,17,15,.14);
  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 18px;
  --serif: 'Lora', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --container: 1200px;
  --nav-h: 72px;
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--sans); font-size: 16px; line-height: 1.6;
  color: var(--ink-2); background: var(--bg);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--slate-700); text-decoration: none; }
::selection { background: var(--gold-400); color: var(--ink); }
h1, h2, h3, h4 { color: var(--ink); font-family: var(--serif); font-weight: 600; line-height: 1.08; letter-spacing: -0.018em; margin: 0; }
.em { font-style: italic; font-weight: 600; }
.em-gold { color: var(--gold-500); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (min-width: 640px) { .container { padding: 0 40px; } }
@media (min-width: 1024px) { .container { padding: 0 64px; } }
@media (min-width: 1400px) { .container { padding: 0 88px; } }

/* NAV */
.nav { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.94); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); min-height: var(--nav-h); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 14px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 38px; height: 38px; background: var(--gold-400); color: var(--ink); border-radius: 9px; display: inline-flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 700; font-size: 19px; }
.brand-name { font-family: var(--serif); font-weight: 600; color: var(--ink); font-size: 18px; letter-spacing: -0.01em; }
.nav-right { display: inline-flex; align-items: center; gap: 12px; }
.nav-phone { display: none; align-items: center; gap: 8px; color: var(--ink); font-weight: 600; font-size: 15px; }
.nav-phone svg { color: var(--gold-600); }
@media (min-width: 860px) { .nav-phone { display: inline-flex; } }
.nav-cta { display: none; }
@media (min-width: 640px) { .nav-cta { display: inline-flex; } }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 26px; border-radius: var(--radius); cursor: pointer; font-family: var(--sans); font-weight: 600; font-size: 15px; text-decoration: none; border: 1px solid transparent; white-space: nowrap; transition: transform .08s ease, background .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease; }
.btn:active { transform: translateY(1px); }
.btn-gold { background: var(--gold-400); color: var(--ink); border-color: var(--gold-400); box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 6px 14px -4px rgba(184,146,47,.45); }
.btn-gold:hover { background: var(--gold-500); border-color: var(--gold-500); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { background: var(--bg-soft); border-color: var(--ink-4); }
.btn-lg { padding: 17px 30px; font-size: 16px; }

/* FOOTER */
.footer { background: var(--ink); color: rgba(255,255,255,.65); padding: 64px 0 80px; font-size: 14px; }
.footer-grid { display: grid; gap: 36px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.6fr 1fr; gap: 64px; } }
.footer-brand .brand-name { color: #fff; }
.footer-tag { margin: 18px 0 0; color: rgba(255,255,255,.55); line-height: 1.65; max-width: 360px; }
.footer h4 { color: #fff; font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 20px; }
.footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.footer-contact li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.75); }
.footer-contact svg { color: var(--gold-400); flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,.75); }
.footer-contact a:hover { color: var(--gold-400); }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,.4); }
.footer-bottom a { color: rgba(255,255,255,.6); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover { color: var(--gold-400); }

/* SUBPAGE LAYOUT (centered content, big top padding) */
.subpage { min-height: calc(100vh - var(--nav-h) - 220px); padding: clamp(56px, 8vw, 96px) 0; }
.subpage-inner { max-width: 760px; margin: 0 auto; }
.subpage-inner.wide { max-width: 880px; }
.subpage h1 { font-size: clamp(34px, 4.6vw, 52px); margin-bottom: 18px; letter-spacing: -0.02em; }
.subpage .lede { font-size: 18px; color: var(--ink-3); line-height: 1.7; max-width: 600px; }
.subpage .body { margin-top: 32px; }
.subpage .body p { margin: 0 0 16px; line-height: 1.7; }
.subpage .body h2 { font-size: 24px; margin: 32px 0 12px; }
.subpage .body h3 { font-size: 18px; font-family: var(--sans); font-weight: 600; margin: 24px 0 8px; }
.subpage .body ul { padding-left: 22px; margin: 0 0 16px; }
.subpage .body li { margin-bottom: 8px; line-height: 1.65; }
.subpage .body a { text-decoration: underline; text-underline-offset: 3px; }
.subpage-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }

/* CONFIRMATION CARD (for thank-you / thanks) */
.confirm { text-align: center; max-width: 620px; margin: 0 auto; }
.confirm-seal { width: 80px; height: 80px; border-radius: 999px; background: var(--gold-400); color: var(--ink); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 28px; box-shadow: 0 6px 18px -4px rgba(184,146,47,.5); }
.confirm h1 { font-size: clamp(32px, 4vw, 44px); margin-bottom: 18px; }
.confirm p { font-size: 17px; color: var(--ink-3); line-height: 1.65; margin: 0 0 14px; }
.confirm-cta { margin-top: 32px; padding: 24px 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--bg-soft); }
.confirm-cta .label { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; margin-bottom: 8px; }
.confirm-cta .num { font-family: var(--serif); font-weight: 600; font-size: 28px; color: var(--ink); }
.confirm-cta .num a { color: var(--ink); }

/* CALENDAR EMBED FRAME */
.cal-frame { max-width: 920px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; min-height: 640px; }
.cal-frame iframe { width: 100%; height: 640px; border: 0; display: block; }
.cal-fallback { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 520px; color: var(--ink-3); text-align: center; padding: 32px; background: var(--bg-soft); border-radius: var(--radius); border: 2px dashed var(--line-2); }
.cal-fallback svg { color: var(--gold-500); margin-bottom: 18px; }
.cal-fallback h4 { font-family: var(--serif); font-size: 20px; color: var(--ink); margin-bottom: 10px; }
