/* ── cs-tokens v1 — fluid design-token foundation. Paste verbatim; fill only the palette. ── */
:root {
  /* PALETTE — base + counterpoint. 2–4 hues total (tonal steps of one hue count as one). */
  --bg:      #FBF2ED;   /* porcelain-blush cream ground */
  --card:    #FEF7F3;   /* surface — warm near-white */
  --text:    #2A1E19;   /* espresso ink — body text */
  --muted:   #9B8078;   /* captions/metadata ONLY, never body copy */
  --accent:  #B97452;   /* rose-copper — brand's real primary */
  --accent2: #B87890;   /* dusty rose-mauve — counterpoint (h338, 42° from accent h20) */
  --accent-rgb: 185,116,82;                    /* #B97452 decimal channels */
  --accent-light: rgba(var(--accent-rgb),.08); /* DERIVED — do NOT fill */
  --border:  rgba(0,0,0,.08);

  /* FLUID TYPE SCALE — 7 steps, clamp(min, preferred, max). Do NOT hard-code px on text. */
  --fs-xs:   clamp(0.75rem, 0.70rem + 0.25vw, 0.875rem);
  --fs-sm:   clamp(0.875rem, 0.80rem + 0.38vw, 1.00rem);
  --fs-base: clamp(1.00rem, 0.90rem + 0.50vw, 1.25rem);
  --fs-lg:   clamp(1.25rem, 1.10rem + 0.75vw, 1.75rem);
  --fs-xl:   clamp(1.75rem, 1.50rem + 1.25vw, 2.50rem);
  --fs-2xl:  clamp(2.50rem, 2.00rem + 2.50vw, 4.00rem);
  --fs-3xl:  clamp(3.50rem, 2.50rem + 5.00vw, 6.00rem);

  /* FLUID SPACE SCALE — 7 steps. Use for padding/margin/gap; do NOT hard-code section px. */
  --sp-2xs:  clamp(0.25rem, 0.20rem + 0.25vw, 0.375rem);
  --sp-xs:   clamp(0.50rem, 0.40rem + 0.50vw, 0.75rem);
  --sp-sm:   clamp(0.75rem, 0.60rem + 0.75vw, 1.125rem);
  --sp-md:   clamp(1.00rem, 0.80rem + 1.00vw, 1.50rem);
  --sp-lg:   clamp(1.50rem, 1.20rem + 1.50vw, 2.25rem);
  --sp-xl:   clamp(2.00rem, 1.60rem + 2.00vw, 3.00rem);
  --sp-2xl:  clamp(3.00rem, 2.40rem + 3.00vw, 4.50rem);

  /* MOTION — duration + easing tokens. Use these, not literal ms/cubic-beziers. */
  --dur-fast: 150ms;
  --dur-base: 250ms;
  --dur-slow: 400ms;
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-emphasis: cubic-bezier(0.22, 1, 0.36, 1);
}
body { background: var(--bg); color: var(--text); font-size: var(--fs-base); }

/* FOCUS-VISIBLE — required a11y floor, paste verbatim */
:focus-visible { outline: 3px solid var(--accent2); outline-offset: 2px; border-radius: 4px; }
:focus:not(:focus-visible) { outline: none; }

/* ── BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Manrope', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  line-height: 1.75;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Georgia', serif;
  font-weight: 400;
  line-height: 1.15;
}
h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }
p  { font-size: var(--fs-base); }

/* Wordmark lockup — copper serif JET + ink sans NAIL BAR */
.wm-jet {
  font-family: 'Fraunces', serif;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.06em;
}
.wm-nail {
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  letter-spacing: 0.22em;
  font-size: 0.72em;
  font-weight: 700;
  text-transform: uppercase;
}

/* ── CONTAINER ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

/* ── SECTION BASE ── */
.section { padding: var(--sp-2xl) 0; }
.section-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-sm);
}
.section-title { margin-bottom: var(--sp-md); }
.section-body { max-width: 56ch; font-size: var(--fs-base); color: var(--text); }

/* ── HAIRLINE DIVIDER ── */
hr.hairline {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), var(--accent2), var(--accent), transparent);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease-emphasis), transform 0.85s var(--ease-emphasis);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.10s; }
.reveal-d2 { transition-delay: 0.20s; }
.reveal-d3 { transition-delay: 0.30s; }
.reveal-d4 { transition-delay: 0.40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-md) var(--sp-xl);
  transition: background var(--dur-slow) var(--ease-standard),
              box-shadow var(--dur-slow) var(--ease-standard);
}
.site-nav.scrolled {
  background: var(--bg);
  box-shadow: 0 1px 0 var(--border);
}
.nav-wordmark {
  font-size: var(--fs-sm);
  line-height: 1;
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  list-style: none;
}
.nav-links a {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  transition: color var(--dur-fast) var(--ease-standard);
}
.nav-links a:hover { color: var(--accent); }
.nav-links .nav-book a {
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  transition: background var(--dur-fast) var(--ease-standard);
}
.nav-links .nav-book a:hover { background: #9a5e3d; color: #fff; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.25rem;
  aria-label: Open menu;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform var(--dur-base) var(--ease-standard), opacity var(--dur-base);
}

/* ── HERO SCRUB (index.html) ── */
.hero-scrub { position: relative; height: 300vh; }
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
#heroCanvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(251,242,237,0.04) 0%,
    rgba(251,242,237,0.25) 55%,
    rgba(251,242,237,0.92) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 8vh;
  text-align: center;
  padding-left: var(--sp-lg);
  padding-right: var(--sp-lg);
}
.hero-wordmark {
  font-family: 'Fraunces', serif;
  font-size: var(--fs-2xl);
  font-weight: 500;
  letter-spacing: 0.12em;
  margin-bottom: var(--sp-xs);
  line-height: 1.1;
}
.hero-tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: var(--fs-xl);
  color: var(--text);
  opacity: 0.85;
  margin-bottom: var(--sp-lg);
}
.hero-cta-group {
  display: flex;
  gap: var(--sp-md);
  flex-wrap: wrap;
  justify-content: center;
}
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  transition: background var(--dur-fast) var(--ease-standard);
}
.btn-primary:hover { background: #9a5e3d; }
.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--text);
  color: var(--text);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  transition: border-color var(--dur-fast), color var(--dur-fast);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.scroll-cue {
  position: absolute;
  bottom: var(--sp-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2xs);
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.5;
}
.scroll-cue-line {
  width: 1px;
  height: 36px;
  background: var(--accent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(0.5); opacity: 1; }
}

/* ── STATIC PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--card);
  padding-top: 80px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0.35;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 20%, var(--bg) 100%);
}
.page-hero-content {
  position: relative;
  width: 100%;
  padding: var(--sp-2xl) var(--sp-xl);
}
.page-hero-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-sm);
}

/* ── PHILOSOPHY BAND ── */
.philosophy-band {
  background: var(--accent);
  padding: var(--sp-2xl) var(--sp-xl);
  text-align: center;
}
.philosophy-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: var(--fs-xl);
  color: #fff;
  max-width: 52ch;
  margin: 0 auto var(--sp-md);
  line-height: 1.45;
}
.philosophy-attr {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* ── SERVICE CARDS ── */
.services-section {
  background: var(--bg);
  padding: var(--sp-2xl) 0;
}
.services-intro {
  max-width: 52ch;
  margin: 0 auto var(--sp-xl);
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
}
.service-card {
  background: var(--card);
  border-top: 3px solid var(--accent);
  padding: var(--sp-xl) var(--sp-lg);
  border-radius: 0 0 16px 16px;
  position: relative;
}
.service-card:nth-child(2) { border-top-color: var(--accent2); }
.service-card:nth-child(3) { border-top-color: var(--accent); }
.service-card:nth-child(4) { border-top-color: var(--accent2); }
.service-card-arch {
  width: 40px;
  height: 18px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  margin: 0 auto var(--sp-md);
}
.service-card:nth-child(odd) .service-card-arch { background: var(--accent); }
.service-card:nth-child(even) .service-card-arch { background: var(--accent2); }
.service-card-name {
  font-family: 'Fraunces', serif;
  font-size: var(--fs-lg);
  font-weight: 400;
  margin-bottom: var(--sp-xs);
  text-align: center;
}
.service-card-desc {
  font-size: var(--fs-sm);
  color: var(--muted);
  text-align: center;
  margin-bottom: var(--sp-md);
  line-height: 1.6;
}
.service-card-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2xs) var(--sp-xs);
  justify-content: center;
}
.service-card-list li {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  background: var(--accent-light);
  color: var(--accent);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

/* ── GALLERY SECTION (index — 4-up arch frames) ── */
.gallery-section {
  background: var(--bg);
  padding: var(--sp-2xl) 0;
}
.gallery-section .section-intro {
  text-align: center;
  margin-bottom: var(--sp-xl);
}
.gallery-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
}
.arch-frame {
  border-radius: 50% 50% 12px 12px / 34% 34% 12px 12px;
  overflow: hidden;
  aspect-ratio: 2/3;
  background: var(--card);
}
.arch-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-emphasis);
}
.arch-frame:hover img { transform: scale(1.04); }

/* ── GALLERY PAGE (gallery.html — 3-col grid) ── */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

/* ── UNRUSHED HOUR ── */
.unrushed {
  background: #241814;
  color: #F5EAE4;
  padding: var(--sp-2xl) var(--sp-xl);
  text-align: center;
}
.unrushed-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: var(--sp-md);
}
.unrushed-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: var(--fs-xl);
  color: #F5EAE4;
  max-width: 44ch;
  margin: 0 auto var(--sp-xl);
  line-height: 1.5;
}
.offer-card {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(231,198,184,0.3);
  border-radius: 8px;
  padding: var(--sp-lg) var(--sp-xl);
  max-width: 540px;
  margin: 0 auto var(--sp-xl);
  text-align: center;
}
.offer-card-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: var(--sp-sm);
}
.offer-card-title {
  font-family: 'Fraunces', serif;
  font-size: var(--fs-lg);
  font-weight: 400;
  color: #F5EAE4;
  margin-bottom: var(--sp-xs);
}
.offer-card-body {
  font-size: var(--fs-sm);
  color: #C8B8B2;
  line-height: 1.7;
}
.unrushed-secondary {
  display: flex;
  gap: var(--sp-lg);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--sp-lg);
}
.unrushed-note {
  flex: 1;
  min-width: 220px;
  max-width: 320px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: var(--sp-lg);
  text-align: left;
}
.unrushed-note-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: var(--sp-xs);
}
.unrushed-note p { font-size: var(--fs-sm); color: rgba(245,234,228,0.75); line-height: 1.65; }

/* ── TWO DOORS ── */
.two-doors {
  background: var(--bg);
  padding: var(--sp-2xl) 0;
}
.two-doors .section-intro { text-align: center; margin-bottom: var(--sp-xl); }
.doors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
}
.door-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: var(--sp-xl) var(--sp-lg);
  text-align: center;
}
.door-arch {
  width: 56px;
  height: 26px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: var(--accent);
  margin: 0 auto var(--sp-md);
}
.door-card:nth-child(2) .door-arch { background: var(--accent2); }
.door-name {
  font-family: 'Fraunces', serif;
  font-size: var(--fs-xl);
  font-weight: 400;
  margin-bottom: var(--sp-xs);
}
.door-loc {
  font-size: var(--fs-sm);
  color: var(--muted);
  margin-bottom: var(--sp-lg);
}
.door-addr-note {
  font-size: var(--fs-xs);
  color: var(--muted);
  font-style: italic;
  margin-bottom: var(--sp-lg);
}
.door-book-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border-radius: 2px;
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease-standard);
}
.door-book-btn:hover { background: #9a5e3d; }
.door-card:nth-child(2) .door-book-btn { background: var(--text); }
.door-card:nth-child(2) .door-book-btn:hover { background: #4a3028; }

/* ── CONTACT BAND ── */
.contact-band {
  background: var(--accent);
  padding: var(--sp-xl) var(--sp-xl);
  text-align: center;
}
.contact-band-title {
  font-family: 'Fraunces', serif;
  font-size: var(--fs-2xl);
  font-weight: 400;
  color: #fff;
  margin-bottom: var(--sp-md);
}
.contact-band-links {
  display: flex;
  gap: var(--sp-lg);
  justify-content: center;
  flex-wrap: wrap;
}
.contact-band-links a {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.1em;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 2px;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.contact-band-links a:hover { color: #fff; border-color: #fff; }

/* ── OFFER LIST (blog.html) ── */
.offer-list { display: flex; flex-direction: column; gap: var(--sp-xl); }
.offer-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--sp-lg);
  align-items: start;
  padding: var(--sp-lg) 0;
  border-bottom: 1px solid var(--border);
}
.offer-item:last-child { border-bottom: none; }
.offer-item-date {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 0.2em;
  line-height: 1.4;
}
.offer-item.active-offer .offer-item-date { color: var(--text); }
.offer-item-body {}
.offer-item-tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--accent-light);
  color: var(--accent);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: var(--sp-xs);
}
.offer-item.active-offer .offer-item-tag {
  background: var(--accent);
  color: #fff;
}
.offer-item-title {
  font-family: 'Fraunces', serif;
  font-size: var(--fs-lg);
  font-weight: 400;
  margin-bottom: var(--sp-xs);
}
.offer-item-text { font-size: var(--fs-sm); color: var(--muted); line-height: 1.7; }

/* ── ABOUT STORY (about.html) ── */
.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
}
.story-img-wrap {
  border-radius: 50% 50% 12px 12px / 34% 34% 12px 12px;
  overflow: hidden;
  aspect-ratio: 2/3;
}
.story-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.story-text {}
.story-text h2 { margin-bottom: var(--sp-md); }
.story-text p { font-size: var(--fs-base); color: var(--text); margin-bottom: var(--sp-md); }
.story-text p:last-child { margin-bottom: 0; }
.story-award {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: var(--sp-md);
}
.story-award-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
}
.contact-block { margin-bottom: var(--sp-xl); }
.contact-block-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-sm);
}
.contact-block-value {
  font-family: 'Fraunces', serif;
  font-size: var(--fs-xl);
  font-weight: 400;
}
.contact-block-value a { color: var(--text); }
.contact-block-value a:hover { color: var(--accent); }

/* ── GIFT VOUCHER ── */
.voucher-hero-text { max-width: 44ch; }
.voucher-cta-wrap { margin-top: var(--sp-xl); }

/* ── FOOTER ── */
.site-footer {
  background: #241814;
  color: rgba(245,234,228,0.75);
  padding: var(--sp-2xl) var(--sp-xl);
  text-align: center;
}
.footer-wordmark {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-xs);
  line-height: 1.2;
}
.footer-wordmark .wm-jet { color: var(--accent2); }
.footer-wordmark .wm-nail { color: rgba(245,234,228,0.65); }
.footer-tagline {
  font-size: var(--fs-sm);
  color: rgba(245,234,228,0.5);
  letter-spacing: 0.12em;
  margin-bottom: var(--sp-lg);
}
.footer-links {
  display: flex;
  gap: var(--sp-lg);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-lg);
}
.footer-links a {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: rgba(245,234,228,0.75);
  letter-spacing: 0.1em;
  border-bottom: 1px solid rgba(231,198,184,0.25);
  padding-bottom: 2px;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.footer-links a:hover { color: var(--accent2); border-color: var(--accent2); }
.footer-copy {
  font-size: var(--fs-xs);
  color: rgba(245,234,228,0.3);
  letter-spacing: 0.1em;
}

/* ── NAV SHARED JS STATES ── */
.site-nav.nav-open .nav-links { display: flex; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .story-split { grid-template-columns: 1fr; }
  .story-img-wrap { max-width: 360px; }
}

@media (max-width: 900px) {
  .site-nav { padding: var(--sp-md); }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    inset: 0;
    background: var(--bg);
    padding: 5rem var(--sp-xl) var(--sp-xl);
    z-index: 100;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; border-bottom: 1px solid var(--border); }
  .nav-links a { display: block; padding: var(--sp-md) 0; font-size: var(--fs-sm); }
  .nav-links .nav-book a { background: none; color: var(--accent); }
  .gallery-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }
  .doors-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .offer-item { grid-template-columns: 1fr; gap: var(--sp-xs); }
  .offer-item-date { display: inline-block; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid-4 { grid-template-columns: 1fr 1fr; }
  .gallery-page-grid { grid-template-columns: 1fr 1fr; }
  .hero-wordmark { font-size: var(--fs-xl); }
  .hero-tagline { font-size: var(--fs-lg); }
  .philosophy-quote { font-size: var(--fs-lg); }
  .unrushed-secondary { flex-direction: column; align-items: center; }
  .unrushed-note { min-width: 0; width: 100%; max-width: 480px; }
}
