/* ==========================================================================
   Luxe Tanning Company — shared styles
   Design tokens are lifted verbatim from the design handoff. The landing
   hero (.stage/.card/...) is unchanged from the original index.html; the
   rest of the file adds the site chrome (header, footer) and content pages.
   ========================================================================== */

:root {
  /* Brand palette (from handoff) */
  --bg-base: #f4ddd9;
  --grad-top: #fbeeec;
  --grad-mid: #f4ddd9;
  --grad-bot: #eccfca;
  --wordmark: #b07e63;
  --label: #a87e6a;
  --tagline: #9a7461;
  --rule: #c79a87;
  --sun: #c08a6f;
  --cta-1: #c79176;
  --cta-2: #b07e63;
  --cta-text: #fff7f4;
  --domain: #b69384;

  /* Extended tokens for content pages (chosen to sit within the palette) */
  --ink: #5c4438;        /* body copy — strong contrast on cream */
  --ink-soft: #7a5d4e;   /* secondary copy */
  --surface: #fff9f7;    /* cards */
  --border: #e7cfc8;     /* hairlines */

  --shadow-rest: 0 14px 34px -14px rgba(176, 126, 99, 0.65);
  --shadow-hover: 0 20px 44px -14px rgba(176, 126, 99, 0.75);
  --shadow-card: 0 18px 40px -26px rgba(176, 126, 99, 0.55);

  --radius-pill: 999px;
  --radius-card: 18px;
  --maxw-prose: 720px;
  --maxw-wide: 1040px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { height: 100%; }
body {
  background: var(--bg-base);
  font-family: 'Jost', sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--wordmark); }

/* Accessible skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--cta-2);
  color: var(--cta-text);
  padding: 10px 16px;
  border-radius: 0 0 10px 0;
  z-index: 100;
}
.skip-link:focus { left: 0; }
.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;
}

/* --------------------------------------------------------------------------
   Landing hero (unchanged from handoff)
   -------------------------------------------------------------------------- */
.stage {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background: radial-gradient(120% 90% at 50% 0%, #fbeeec 0%, #f4ddd9 42%, #eccfca 100%);
}
.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 640px;
  animation: luxeFade 1.1s ease-out both;
}
.sun {
  width: 132px;
  height: 64px;
  margin-bottom: 6px;
  overflow: visible;
  animation: luxeGlow 5s ease-in-out infinite;
}
.wordmark {
  font-family: 'Pinyon Script', cursive;
  font-weight: 400;
  font-size: clamp(72px, 16vw, 132px);
  line-height: 0.9;
  color: var(--wordmark);
  margin-bottom: 10px;
}
.lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}
.lockup .rule { height: 1px; width: 40px; background: var(--rule); }
.lockup .label {
  font-weight: 400;
  font-size: clamp(13px, 2.4vw, 17px);
  letter-spacing: 0.42em;
  color: var(--label);
  text-transform: uppercase;
  padding-left: 0.42em;
}
.tagline {
  font-weight: 300;
  font-size: clamp(15px, 2.6vw, 19px);
  line-height: 1.7;
  color: var(--tagline);
  max-width: 420px;
  margin-bottom: 44px;
}
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cta-text);
  background: linear-gradient(135deg, var(--cta-1) 0%, var(--cta-2) 100%);
  padding: 19px 46px 19px calc(46px + 0.32em);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-rest);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
/* Discreet navigation on the landing (keeps the hero the focus, no scroll) */
.landing-footer {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
}
.landing-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 22px;
  opacity: 0.72;
}
.landing-nav a {
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--domain);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.landing-nav a:hover {
  color: var(--wordmark);
  opacity: 1;
}
.landing-legal {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.5;
  color: var(--domain);
  text-align: center;
  max-width: 460px;
}

@keyframes luxeFade {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes luxeGlow {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

/* --------------------------------------------------------------------------
   Content-page shell (Offerings, Visit, legal pages)
   -------------------------------------------------------------------------- */
body.page-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: radial-gradient(120% 60% at 50% 0%, #fbeeec 0%, #f6e2dd 55%, #f1d8d2 100%) no-repeat;
  background-attachment: fixed;
}
main { flex: 1 0 auto; width: 100%; }

.container {
  width: 100%;
  max-width: var(--maxw-prose);
  margin: 0 auto;
  padding: 0 24px;
}
.container.wide { max-width: var(--maxw-wide); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px 18px;
  padding: 16px clamp(20px, 5vw, 56px);
  background: rgba(251, 238, 236, 0.82);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark { width: 46px; height: 24px; overflow: visible; }
.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-name .script {
  font-family: 'Pinyon Script', cursive;
  font-size: 30px;
  color: var(--wordmark);
}
.brand-name .sub {
  font-size: 9.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--label);
  margin-top: 3px;
  padding-left: 2px;
}
.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px clamp(10px, 1.8vw, 22px);
}
.site-nav a {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-nav a:hover { color: var(--wordmark); }
.site-nav a[aria-current="page"] { color: var(--wordmark); }
.nav-cta {
  color: var(--cta-text) !important;
  background: linear-gradient(135deg, var(--cta-1) 0%, var(--cta-2) 100%);
  padding: 11px 22px 11px calc(22px + 0.16em);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-rest);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: rgba(255, 249, 247, 0.72);
  color: var(--wordmark);
  cursor: pointer;
  box-shadow: 0 10px 24px -18px rgba(176, 126, 99, 0.8);
}
.menu-toggle:focus-visible {
  outline: 2px solid var(--cta-2);
  outline-offset: 3px;
}
.menu-toggle-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 18px;
}
.menu-toggle-lines span {
  display: block;
  height: 1px;
  width: 100%;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
body.nav-open .menu-toggle-lines span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .menu-toggle-lines span:nth-child(2) { opacity: 0; }
body.nav-open .menu-toggle-lines span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.landing-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border-bottom-color: rgba(231, 207, 200, 0.65);
}

/* Page hero */
.page-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(44px, 8vw, 92px) 24px clamp(20px, 4vw, 36px);
}
.page-hero .lockup { margin-bottom: 20px; }
.page-hero h1 {
  font-weight: 400;
  font-size: clamp(30px, 6vw, 50px);
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: var(--wordmark);
}
.page-hero .subtitle {
  font-weight: 300;
  font-size: clamp(15px, 2.4vw, 18px);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 16px auto 0;
}

/* Prose */
.prose { padding-bottom: 24px; }
.prose > * + * { margin-top: 0; }
.prose h2 {
  font-weight: 500;
  font-size: clamp(20px, 3.4vw, 26px);
  letter-spacing: 0.01em;
  color: var(--wordmark);
  margin: 44px 0 12px;
}
.prose h3 {
  font-weight: 500;
  font-size: 17px;
  color: var(--ink);
  margin: 26px 0 8px;
}
.prose p, .prose li {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.78;
  color: var(--ink);
}
.prose p { margin: 12px 0; }
.prose strong { font-weight: 500; color: var(--ink); }
.prose a { color: var(--wordmark); text-underline-offset: 3px; }
.prose ul, .prose ol { margin: 12px 0; padding-left: 1.3em; }
.prose li { margin: 7px 0; }
.prose li::marker { color: var(--rule); }

/* Reusable bits */
.doc-meta {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 300;
}
.callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--cta-2);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 22px 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-soft);
}
.section { padding: clamp(16px, 3vw, 28px) 0; }
.divider {
  height: 1px;
  background: var(--border);
  border: 0;
  margin: 40px 0;
}
.text-center { text-align: center; }
.cta-row {
  display: flex;
  justify-content: center;
  padding: clamp(28px, 5vw, 48px) 0 8px;
}

/* Offerings grid */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
  margin-top: 8px;
}
.offer-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px 26px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.offer-card h3 {
  font-weight: 500;
  font-size: 19px;
  color: var(--wordmark);
  margin: 0 0 6px;
}
.offer-card .price {
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.offer-card p {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0;
}
.offer-card .tag {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 14px;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--label);
  background: rgba(199, 154, 135, 0.16);
  padding: 5px 11px;
  border-radius: var(--radius-pill);
}

/* Visit / location */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px 40px;
  margin-top: 8px;
}
.info-block h3 {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--label);
  margin-bottom: 10px;
}
.info-block p, .info-block li {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
}
.info-block a { color: var(--wordmark); text-underline-offset: 3px; }
.hours { list-style: none; padding: 0; }
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 0;
  border-bottom: 1px dashed var(--border);
}
.hours li span:last-child { color: var(--ink-soft); }
.map-embed {
  margin-top: 28px;
  aspect-ratio: 16 / 9;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  background:
    repeating-linear-gradient(45deg, rgba(199,154,135,0.10) 0 12px, transparent 12px 24px),
    var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-placeholder {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: center;
  line-height: 1.9;
  padding: 20px;
}
/* Map box rendered as a link-out (no cookie-setting embed) */
.map-link { text-decoration: none; cursor: pointer; transition: border-color 0.2s ease; }
.map-link:hover { border-color: var(--wordmark); }
.map-link:focus-visible { outline: 2px solid var(--cta-2); outline-offset: 2px; }
.map-link .map-placeholder { color: var(--wordmark); }

/* --------------------------------------------------------------------------
   Pricing (Offerings) & How It Works
   -------------------------------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 22px;
  margin-top: 8px;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 26px 26px 14px;
  box-shadow: var(--shadow-card);
}
.price-card > h3 {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--label);
  margin: 0 0 4px;
}
.price-card .caption {
  font-weight: 300;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.price-table { width: 100%; border-collapse: collapse; }
.price-table thead th {
  text-align: left;
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.price-table th + th,
.price-table td + td { text-align: right; }
.price-table td {
  font-weight: 300;
  font-size: 16px;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
}
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table .amt { color: var(--wordmark); font-weight: 500; }
.price-table .rate { color: var(--ink-soft); font-size: 14px; }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  margin-top: 8px;
}
.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 26px;
  box-shadow: var(--shadow-card);
  text-align: center;
  display: flex;
  flex-direction: column;
}
.plan-name {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--label);
  margin-bottom: 12px;
}
.plan-price {
  font-weight: 500;
  font-size: 46px;
  line-height: 1;
  color: var(--wordmark);
}
.plan-price .per {
  display: block;
  margin-top: 8px;
  font-size: 12.5px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.plan-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.plan-features li {
  font-weight: 300;
  font-size: 15px;
  color: var(--ink);
  padding: 10px 0;
  border-top: 1px solid var(--border);
}

.features-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  text-align: center;
  margin-top: 8px;
}
.feature { padding: 18px 16px; }
.feature-icon { color: var(--sun); display: inline-flex; margin-bottom: 12px; }
.feature h3 {
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wordmark);
  margin-bottom: 6px;
}
.feature p {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* How It Works — steps */
.steps { list-style: none; padding: 0; margin: 8px 0 0; }
.step { position: relative; padding: 0 0 28px 66px; }
.step:last-child { padding-bottom: 0; }
.step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 46px;
  bottom: 6px;
  width: 2px;
  background: var(--border);
}
.step-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cta-1) 0%, var(--cta-2) 100%);
  color: var(--cta-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 17px;
  box-shadow: var(--shadow-rest);
}
.step h3 {
  font-weight: 500;
  font-size: 17px;
  color: var(--wordmark);
  margin: 10px 0 5px;
}
.step p {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
}

/* How It Works — good-to-know checklist */
.checklist {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px 32px;
}
.checklist li {
  position: relative;
  padding: 9px 0 9px 30px;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--cta-2);
  font-size: 15px;
  font-weight: 600;
}

/* "Need help" contact block */
.help-box {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 30px;
  margin-top: 8px;
}
.help-box .eyebrow-sm {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--label);
}
.help-box .phone {
  display: inline-block;
  margin-top: 8px;
  font-size: 24px;
  color: var(--wordmark);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.help-box .phone:hover { text-decoration: underline; }

/* Footer */
.site-footer {
  flex-shrink: 0;
  border-top: 1px solid var(--border);
  margin-top: clamp(48px, 8vw, 96px);
  padding: clamp(34px, 5vw, 56px) 24px;
  text-align: center;
}
.footer-brand {
  font-family: 'Pinyon Script', cursive;
  font-size: 34px;
  color: var(--wordmark);
  line-height: 1;
  margin-bottom: 18px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  margin-bottom: 18px;
}
.footer-nav a {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-nav a:nth-last-child(-n + 3) {
  font-size: 12px;
  color: var(--domain);
  opacity: 0.76;
}
.footer-nav a:hover { color: var(--wordmark); }
.footer-legal {
  font-weight: 300;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--domain);
  line-height: 1.7;
}

/* "Website By Deplova" credit — subtle, muted to match the footer legal line */
.deplova-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--domain);
  text-decoration: none;
  opacity: 0.82;
  transition: opacity 0.2s ease;
}
.deplova-credit:hover { opacity: 1; }
.deplova-credit img { display: block; height: 17px; width: auto; }

/* --------------------------------------------------------------------------
   Booking modal (see booking.js)
   -------------------------------------------------------------------------- */
body.booking-open { overflow: hidden; }

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.booking-modal[hidden] { display: none; }

.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(58, 40, 32, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.booking-dialog {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: 0 30px 70px -20px rgba(58, 40, 32, 0.6);
  animation: bookingIn 0.28s ease-out both;
}

.booking-close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px -6px rgba(58, 40, 32, 0.5);
  transition: background 0.2s ease, transform 0.2s ease;
}
.booking-close:hover { background: #fff; transform: scale(1.06); }
.booking-close:focus-visible { outline: 2px solid var(--cta-2); outline-offset: 2px; }

.booking-frame {
  display: block;
  width: 100%;
  height: 700px;
  max-height: 82vh;
  border: 0;
  background: #fff;
  border-radius: var(--radius-card);
}
/* .booking-frame sets display:block, which would override the UA [hidden] rule. */
.booking-frame[hidden] { display: none; }

.booking-foot {
  text-align: center;
  padding: 14px 16px 18px;
  font-size: 14px;
}
.booking-foot a { color: var(--wordmark); text-underline-offset: 3px; }

.booking-empty {
  padding: clamp(40px, 7vw, 64px) 32px;
  text-align: center;
}
.booking-empty-title {
  font-family: 'Pinyon Script', cursive;
  font-size: 42px;
  line-height: 1;
  color: var(--wordmark);
  margin-bottom: 12px;
}
.booking-empty p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
}
.booking-empty a { color: var(--wordmark); text-underline-offset: 3px; }

/* Cookie-consent gate shown before the Google Calendar iframe loads */
.booking-consent {
  padding: clamp(36px, 6vw, 60px) 32px;
  text-align: center;
}
.booking-consent > p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  max-width: 44ch;
  margin: 0 auto;
}
.booking-consent-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 20px;
  margin-top: 24px;
}
.booking-accept {
  font-family: inherit;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cta-text);
  background: linear-gradient(135deg, var(--cta-1) 0%, var(--cta-2) 100%);
  border: 0;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  box-shadow: var(--shadow-rest);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.booking-accept:hover { transform: translateY(-1px); box-shadow: var(--shadow-hover); }
.booking-accept:focus-visible { outline: 2px solid var(--cta-2); outline-offset: 3px; }
.booking-consent-alt {
  font-size: 14px;
  color: var(--wordmark);
  text-underline-offset: 3px;
}
.booking-consent-note {
  margin-top: 18px;
  font-size: 12.5px;
  color: var(--ink-soft);
}
.booking-consent-note a { color: var(--wordmark); }

@keyframes bookingIn {
  from { opacity: 0; transform: translateY(10px) scale(0.985); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* --------------------------------------------------------------------------
   Responsive navigation
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .site-header {
    padding: 12px clamp(16px, 5vw, 28px);
  }
  .brand-mark { width: 40px; height: 20px; }
  .brand-name .script { font-size: 27px; }
  .brand-name .sub {
    font-size: 8.5px;
    letter-spacing: 0.22em;
  }
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: calc(100% - 1px);
    left: clamp(16px, 5vw, 28px);
    right: clamp(16px, 5vw, 28px);
    z-index: 25;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 0 0 16px 16px;
    box-shadow: 0 24px 44px -28px rgba(92, 68, 56, 0.72);
  }
  body.nav-ready .site-nav { display: none; }
  body.nav-ready.nav-open .site-nav { display: flex; }
  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 11px 13px;
    border-radius: 10px;
    font-size: 13px;
    letter-spacing: 0.12em;
  }
  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    background: rgba(244, 221, 217, 0.56);
  }
  .nav-cta {
    justify-content: center;
    margin-top: 8px;
    padding: 13px 18px 13px calc(18px + 0.12em);
    border-radius: var(--radius-pill);
  }
}

/* --------------------------------------------------------------------------
   Motion / reduced-motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card { animation: none; }
  .sun { animation: none; opacity: 1; }
  .cta, .nav-cta { transition: none; }
  .menu-toggle-lines span { transition: none; }
  .booking-dialog { animation: none; }
}
