:root {
  /* Breakpoints (reference only — CSS custom properties don't work in @media): 720px, 880px, 881px, 900px */

  /* Brand: Cool Taupe (#A29687) on cream */
  --accent: #A29687;
  --accent-tint: #E8E2DD;          /* 20% tint, per brand kit */
  --bg: #F6F2EC;
  --bg-elev: #FFFFFF;
  --ink: #1A1714;
  --ink-2: #4A453E;
  --ink-3: #8A8175;
  --line: #E5DED2;
  --line-2: #D9D0C0;

  /* Stray colors (used inside color-mix / overlays) */
  --white:        #ffffff;
  --scrim-strong: rgba(0, 0, 0, 0.8);

  --display: 'Cormorant', 'Cormorant Garamond', serif;
  --body: 'Manrope', system-ui, sans-serif;

  /* Type scale */
  --fs-label-xs:    0.6875rem;                              /* 11px */
  --fs-label-sm:    0.75rem;                                /* 12px */
  --fs-meta:        0.8125rem;                              /* 13px */
  --fs-body:        0.875rem;                               /* 14px */
  --fs-body-md:     0.9375rem;                              /* 15px */
  --fs-body-lg:     1rem;                                   /* 16px */
  --fs-lede:        1.0625rem;                              /* 17px */
  --fs-section-num: 1.125rem;                               /* 18px */
  --fs-card-h3:     1.375rem;                               /* 22px */
  --fs-card-h2:     1.625rem;                               /* 26px */

  /* Fluid display sizes */
  --fs-hero-h1:        clamp(2.75rem, 5.8vw, 5.25rem);      /* 44 → 84px */
  --fs-hero-sub:       clamp(0.9375rem, 1.2vw, 1.0625rem);  /* 15 → 17px */
  --fs-section-title:  clamp(2.25rem, 5.5vw, 4.5rem);       /* 36 → 72px */
  --fs-visit-display:  clamp(1.375rem, 2.4vw, 1.75rem);     /* 22 → 28px */
  --fs-footer-h2:      clamp(2.5rem, 6vw, 5rem);            /* 40 → 80px */

  /* Font weight */
  --fw-light:    300;
  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;

  /* Letter-spacing */
  --ls-tight:   -0.02em;
  --ls-tighter: -0.01em;
  --ls-normal:   0.01em;
  --ls-wide:     0.04em;
  --ls-wider:    0.12em;
  --ls-widest:   0.18em;

  /* Spacing — t-shirt scale */
  --space-3xs: 4px;
  --space-2xs: 8px;
  --space-xs:  12px;
  --space-sm:  16px;
  --space-md:  20px;
  --space-lg:  24px;
  --space-xl:  32px;
  --space-2xl: 40px;
  --space-3xl: 56px;
  --space-4xl: 80px;

  /* Off-scale spacing — kept to preserve current visual rhythm */
  --space-2xs-plus: 10px;
  --space-sm-minus: 14px;
  --space-lg-plus:  28px;
  --space-xl-plus:  36px;

  /* Border radius */
  --radius-sm:     4px;
  --radius-md:     14px;
  --radius-pill:   999px;
  --radius-circle: 50%;

  /* Shadow */
  --shadow-float:      0 12px 40px -12px rgba(0, 0, 0, 0.25);
  --shadow-btn-ink:    0 8px 24px -8px var(--ink);
  --shadow-btn-accent: 0 8px 24px -8px var(--accent);

  /* Motion */
  --dur-fast:   0.2s;
  --dur-med:    0.25s;
  --dur-slow:   0.3s;
  --dur-reveal: 0.8s;
  --dur-pulse:  2s;
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);

  /* Z-index */
  --z-overlay: 1;
  --z-header:  100;

  /* Layout — repeated clamps & misc */
  --gutter:        clamp(20px, 4vw, 56px);
  --section-y:     clamp(80px, 10vw, 140px);
  --container-max: 1280px;
  --backdrop-blur: blur(16px) saturate(140%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-weight: var(--fw-regular);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* ────────── HEADER ────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-header);
  padding: var(--space-sm) var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  flex-wrap: nowrap;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: var(--backdrop-blur);
  -webkit-backdrop-filter: var(--backdrop-blur);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-slow) ease;
  max-width: 100vw;
}
.header .brand { flex-shrink: 0; min-width: 0; }
.header .nav { flex-shrink: 0; }
.header .btn-primary {
  padding: 11px var(--space-md);
  font-size: var(--fs-body);
  flex-shrink: 0;
}
.header.scrolled { border-bottom-color: var(--line); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  line-height: 1;
  color: var(--ink);
}
.brand picture, .footer-brand picture { display: contents; }
.brand-mark {
  height: 44px;
  width: auto;
  display: block;
}
.brand-word {
  height: 16px;
  width: auto;
  display: block;
}
@media (max-width: 900px) {
  .brand-word { display: none; }
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-normal);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}
.nav a {
  position: relative;
  color: var(--ink-2);
  transition: color var(--dur-fast) ease;
}
.nav a:hover { color: var(--ink); }
.nav a.wedding {
  font-family: var(--display);
  font-style: italic;
  font-weight: var(--fw-regular);
  font-size: var(--fs-body-lg);
  color: var(--ink);
}
.nav a.wedding::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  width: 4px; height: 4px;
  border-radius: var(--radius-circle);
  background: var(--accent);
  transform: translateY(-50%);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs-plus);
  padding: var(--space-xs) 22px;
  border-radius: var(--radius-pill);
  font-family: var(--body);
  font-weight: var(--fw-medium);
  font-size: var(--fs-body);
  letter-spacing: var(--ls-normal);
  cursor: pointer;
  border: none;
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-fast) ease, color var(--dur-fast) ease, box-shadow var(--dur-fast) ease;
  white-space: nowrap;
}
.btn-primary,
a.btn-primary,
.nav a.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-accent,
a.btn-accent {
  background: var(--accent);
  color: var(--ink);
}
.btn-ghost,
a.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-2);
}
.nav a.btn-primary:hover { color: var(--bg); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-btn-ink); }
.btn-primary:active { transform: translateY(0) scale(0.98); }
.btn-accent:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-btn-accent);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.btn .arrow {
  width: 14px; height: 14px;
  transition: transform var(--dur-med) var(--ease-out);
}
.btn:hover .arrow { transform: translateX(3px); }

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm-minus);
}

/* ────────── HERO ────────── */
.hero {
  padding: 110px var(--gutter) clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  min-height: 100vh;
}

/* ── Mobile: video as full-bleed hero background, text overlaid ── */
@media (max-width: 880px) {
  .hero {
    position: relative;
    grid-template-columns: 1fr;
    align-items: end;
    padding: 130px var(--gutter) 64px;
    min-height: 100svh;
    overflow: hidden;
    isolation: isolate;
  }

  /* hero-img becomes the section background */
  .hero .hero-img {
    position: absolute;
    inset: 0;
    height: auto;
    max-height: none;
    max-width: none;
    width: auto;
    aspect-ratio: auto;
    border-radius: 0;
    justify-self: stretch;
    z-index: 0;
  }
  .hero .hero-video {
    display: block;
    z-index: 0;
  }

  /* Dark overlay above the video for text legibility — video remains visible underneath */
  .hero .hero-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--scrim-strong);
    pointer-events: none;
    z-index: var(--z-overlay);
  }

  /* Hide the floating review tag on mobile */
  .hero .hero-floating-tag { display: none; }

  /* Text overlays the darkened video directly — readability comes from the video filter */
  .hero .hero-text {
    position: relative;
    z-index: var(--z-overlay);
    color: var(--bg);
  }
  .hero .hero-eyebrow { color: color-mix(in srgb, var(--white) 75%, transparent); }
  .hero .hero-eyebrow::before { background: currentColor; }
  .hero .hero-sub { color: color-mix(in srgb, var(--bg) 88%, transparent); }
  .hero .hero-divider-row {
    color: color-mix(in srgb, var(--bg) 78%, transparent);
    gap: var(--space-2xs) var(--space-md);
  }
  .hero .hero-meta-pill strong { color: var(--bg); }

  /* Ghost button needs to read on dark bg */
  .hero .btn-ghost {
    color: var(--bg);
    border-color: color-mix(in srgb, var(--bg) 50%, transparent);
  }
  .hero .btn-ghost:hover {
    background: var(--bg);
    color: var(--ink);
    border-color: var(--bg);
  }

  .hero-sub {
    display: none;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs-plus);
  font-size: var(--fs-label-sm);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: var(--space-md);
}

.hero h1 {
  font-family: var(--display);
  font-weight: var(--fw-regular);
  font-size: var(--fs-hero-h1);
  line-height: 1.0;
  letter-spacing: var(--ls-tight);
  color: var(--white);
  margin-bottom: var(--space-lg);
  text-wrap: balance;
}
.hero h1 em {
  font-family: var(--display);
  font-style: italic;
  font-weight: var(--fw-regular);
  color: color-mix(in srgb, var(--accent) 55%, var(--white));
  letter-spacing: var(--ls-tighter);
}

@media (min-width: 881px) {
  .hero h1 { color: var(--ink); }
  .hero h1 em { color: var(--accent); }
}

.hero-sub {
  font-size: var(--fs-hero-sub);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 44ch;
  margin-bottom: var(--space-lg-plus);
  text-wrap: pretty;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-xl-plus);
}
.hero-cta .btn { padding: var(--space-sm-minus) 26px; font-size: var(--fs-body); }

.hero-divider-row {
  display: flex;
  align-items: center;
  gap: var(--space-lg-plus);
  flex-wrap: wrap;
  font-size: var(--fs-meta);
  color: var(--ink-3);
}
.hero-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
}
.hero-meta-pill svg { width: 14px; height: 14px; flex-shrink: 0; }
.hero-meta-pill strong {
  color: var(--ink);
  font-weight: var(--fw-medium);
}
.hero-meta-link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.hero-meta-link:hover { opacity: 0.7; }

/* Hero image / video */
.hero-img {
  position: relative;
  aspect-ratio: 4 / 5;
  height: clamp(380px, calc(100vh - 200px), 680px);
  width: auto;
  max-width: 100%;
  justify-self: end;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-elev) center/cover no-repeat url('media/hero-poster.jpg');
  background-image: image-set(
    url('media/hero-poster.avif') type('image/avif'),
    url('media/hero-poster.webp') type('image/webp'),
    url('media/hero-poster.jpg') type('image/jpeg')
  );
}
/* Video hidden by default — only shown on mobile (see media query below) */
.hero-video {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-floating-tag {
  position: absolute;
  bottom: var(--space-lg-plus);
  left: var(--space-lg-plus);
  background: var(--bg-elev);
  color: var(--ink);
  padding: var(--space-sm-minus) 18px var(--space-sm-minus) var(--space-sm);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-float);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  max-width: 240px;
}
.hero-floating-tag .ft-stars {
  display: flex;
  gap: 1px;
  color: var(--accent);
  font-size: var(--fs-body);
  line-height: 1;
}
.hero-floating-tag .ft-text {
  font-size: var(--fs-meta);
  line-height: 1.35;
  color: var(--ink-2);
}
.hero-floating-tag .ft-text strong {
  color: var(--ink);
  font-weight: var(--fw-semibold);
  display: block;
  font-size: var(--fs-meta);
  margin-bottom: 2px;
}

/* ────────── SECTIONS ────────── */
section { padding: var(--section-y) var(--gutter); }
.container { max-width: var(--container-max); margin: 0 auto; }

.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: end;
  margin-bottom: clamp(56px, 7vw, 88px);
}
@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; gap: var(--space-lg); }
}

.section-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: var(--fw-light);
  font-size: var(--fs-section-num);
  color: var(--accent);
  line-height: 1;
}
.section-num::after {
  content: "";
  display: inline-block;
  width: 80px; height: 1px;
  background: var(--line-2);
  margin-left: var(--space-sm-minus);
  vertical-align: middle;
}

.section-title {
  font-family: var(--display);
  font-weight: var(--fw-light);
  font-size: var(--fs-section-title);
  line-height: 1;
  letter-spacing: var(--ls-tight);
  text-wrap: balance;
}
.section-title em {
  font-family: var(--display);
  font-style: italic;
  color: var(--accent);
  font-weight: var(--fw-regular);
}

/* ────────── SERVICES ────────── */
#services { padding-bottom: clamp(32px, 4vw, 56px); }

.section-lede {
  font-size: var(--fs-lede);
  color: var(--ink-2);
  max-width: 56ch;
  margin-top: var(--space-md);
  text-wrap: pretty;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
@media (max-width: 880px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) {
  .services-grid { gap: 10px; }
  .service-card { padding: 20px; gap: 12px; }
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: clamp(24px, 3vw, 36px);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  transition: border-color var(--dur-med) ease,
              transform var(--dur-med) ease,
              box-shadow var(--dur-med) ease;
}
.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -20px color-mix(in srgb, var(--ink) 35%, transparent);
}
.service-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.service-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-sm);
}
.service-card h3 {
  font-family: var(--display);
  font-weight: var(--fw-regular);
  font-size: var(--fs-card-h3);
  letter-spacing: var(--ls-tighter);
  line-height: 1.1;
}
.service-price {
  font-family: var(--body);
  font-size: var(--fs-meta);
  font-weight: var(--fw-medium);
  color: var(--ink-3);
  letter-spacing: var(--ls-wide);
  white-space: nowrap;
}
.service-card p {
  font-size: var(--fs-body-md);
  color: var(--ink-2);
  line-height: 1.5;
  flex: 1;
}
.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  font-size: var(--fs-meta);
  font-weight: var(--fw-medium);
  color: var(--accent);
  letter-spacing: var(--ls-normal);
  margin-top: auto;
}
.service-card-cta svg {
  width: 12px; height: 12px;
  transition: transform var(--dur-med) var(--ease-out);
}
.service-card:hover .service-card-cta svg { transform: translateX(3px); }

.services-foot {
  text-align: center;
  margin-top: clamp(40px, 5vw, 56px);
  font-size: var(--fs-body-md);
  color: var(--ink-3);
}
.services-foot a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--line-2);
  text-underline-offset: 4px;
  transition: text-decoration-color var(--dur-fast) ease, color var(--dur-fast) ease;
}
.services-foot a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

/* ────────── HOURS / VISIT ────────── */
#visit { padding-block: clamp(40px, 5vw, 72px); }
#visit .section-head { margin-bottom: clamp(20px, 2.5vw, 32px); }

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  margin-top: clamp(32px, 5vw, 56px);
}
@media (max-width: 880px) { .visit-grid { grid-template-columns: 1fr; } }

.hours-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: clamp(28px, 4vw, 44px);
}
.hours-card h3 {
  font-family: var(--display);
  font-weight: var(--fw-regular);
  font-size: var(--fs-card-h3);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.hours-card h3 .open-now {
  font-family: var(--body);
  font-size: var(--fs-label-sm);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hours-card h3 .open-now::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: var(--radius-circle);
  background: var(--accent);
  animation: pulse var(--dur-pulse) ease-in-out infinite;
}
.hours-card h3 .open-now.is-closed { color: var(--ink-3); }
.hours-card h3 .open-now.is-closed::before { background: var(--ink-3); animation: none; }
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--space-sm-minus) 0;
  border-bottom: 1px dashed var(--line);
  font-size: var(--fs-body-md);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day {
  color: var(--ink-2);
  font-weight: var(--fw-medium);
}
.hours-list .time {
  font-family: var(--display);
  font-weight: var(--fw-regular);
  color: var(--ink);
  font-size: var(--fs-body-lg);
  font-variant-numeric: tabular-nums;
}
.hours-list .closed {
  color: var(--ink-3);
  font-style: italic;
}
.hours-list li.today {
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  margin: 0 calc(var(--space-sm) * -1);
  padding: var(--space-sm-minus) var(--space-sm);
  border-radius: var(--radius-sm);
  border-bottom-color: transparent;
}
.hours-list li.today .day {
  color: var(--ink);
  font-weight: var(--fw-semibold);
}

.visit-address {
  font-size: var(--fs-label-sm);
  color: var(--ink-3);
  letter-spacing: var(--ls-wide);
  margin-top: var(--space-sm);
  text-align: center;
}

.visit-block h4 {
  font-size: var(--fs-label-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: var(--space-xs);
}
.visit-block p, .visit-block address {
  font-family: var(--display);
  font-style: normal;
  font-weight: var(--fw-light);
  font-size: var(--fs-visit-display);
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: var(--ls-tighter);
}
.visit-block a:hover { color: var(--accent); }
.visit-cta { margin-top: var(--space-xs); }

.visit-map {
  display: block;
  margin-top: 0;
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-elev);
  transition: border-color var(--dur-med) ease, transform var(--dur-med) ease, box-shadow var(--dur-med) ease;
}
@media (max-width: 880px) {
  .visit-map { aspect-ratio: 4 / 3; }
}
.visit-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.25) contrast(0.98);
  transition: filter var(--dur-med) ease;
}
.visit-map:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 32px -16px color-mix(in srgb, var(--ink) 35%, transparent);
}
.visit-map:hover iframe { filter: none; }
.visit-map:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ────────── FOOTER ────────── */
.footer-cta {
  background: var(--ink);
  color: var(--bg);
  padding: var(--section-y) var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.footer-cta::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  border-radius: var(--radius-circle);
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 35%, transparent), transparent 60%);
  pointer-events: none;
  opacity: 0.7;
}
.footer-cta-inner { position: relative; z-index: var(--z-overlay); max-width: 800px; margin: 0 auto; }
.footer-cta h2 {
  font-family: var(--display);
  font-weight: var(--fw-light);
  font-size: var(--fs-footer-h2);
  line-height: 1;
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--space-lg-plus);
}
.footer-cta h2 em {
  font-family: var(--display);
  font-style: italic;
  color: var(--accent);
  font-weight: var(--fw-regular);
}
.footer-cta p {
  font-size: var(--fs-lede);
  color: color-mix(in srgb, var(--bg) 70%, var(--ink));
  margin-bottom: var(--space-2xl);
  max-width: 50ch;
  margin-inline: auto;
}
.footer-cta .btn-accent { padding: 18px var(--space-xl); font-size: var(--fs-body-lg); }

footer {
  padding: var(--space-2xl) var(--gutter);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: var(--fs-meta);
  color: var(--ink-3);
}
footer .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs-plus);
  line-height: 1;
}
footer .footer-brand .mark {
  height: 30px;
  width: auto;
  display: block;
}
footer .footer-brand .word {
  height: 12px;
  width: auto;
  display: block;
}
footer a:hover { color: var(--accent); }
footer ul {
  list-style: none;
  display: flex;
  gap: var(--space-lg);
}

/* ────────── REVEAL ────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--dur-reveal) var(--ease-out),
              transform var(--dur-reveal) var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* hide nav on small screens but keep main book button */
@media (max-width: 720px) {
  .nav-links { display: none; }
}
