/* ── cs-tokens: v1 ── Design System Foundation ─────────────────────────── */
:root {
  /* Palette — Tina Beauty */
  --bg:           #FBEFEC;
  --bg-alt:       #F5E6E1;
  --primary:      #9A8B7E;
  --secondary:    #B8924E;
  --accent:       #B24A43;
  --accent-rgb:   178,74,67;
  --accent-light: color-mix(in srgb, var(--accent) 15%, var(--bg));
  --text:         #241E1B;
  --muted:        #9A8B7E;

  /* Fluid type scale */
  --fs-xs:   clamp(0.75rem,  0.71rem + 0.19vw, 0.875rem);
  --fs-sm:   clamp(0.875rem, 0.83rem + 0.22vw, 1rem);
  --fs-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --fs-md:   clamp(1.125rem, 1.06rem + 0.34vw, 1.313rem);
  --fs-lg:   clamp(1.375rem, 1.27rem + 0.53vw, 1.688rem);
  --fs-xl:   clamp(1.75rem,  1.59rem + 0.78vw, 2.188rem);
  --fs-2xl:  clamp(2.25rem,  2rem + 1.25vw,    2.875rem);
  --fs-3xl:  clamp(3rem,     2.6rem + 2vw,     4rem);
  --fs-4xl:  clamp(3.75rem,  3.2rem + 2.75vw,  5.25rem);

  /* Fluid spacing */
  --sp-1: clamp(0.25rem,  0.2rem + 0.25vw,  0.375rem);
  --sp-2: clamp(0.5rem,   0.4rem + 0.5vw,   0.75rem);
  --sp-3: clamp(0.75rem,  0.6rem + 0.75vw,  1.125rem);
  --sp-4: clamp(1rem,     0.8rem + 1vw,     1.5rem);
  --sp-5: clamp(1.5rem,   1.2rem + 1.5vw,   2.25rem);
  --sp-6: clamp(2rem,     1.6rem + 2vw,     3rem);
  --sp-7: clamp(3rem,     2.4rem + 3vw,     4.5rem);
  --sp-8: clamp(4rem,     3.2rem + 4vw,     6rem);

  --nav-h:  72px;
  --max-w:  1200px;
  --ease:   cubic-bezier(0.4,0,0.2,1);

  /* Canonical alias set (required by cs-tokens v1) */
  --sp-2xs: clamp(0.25rem,  0.2rem + 0.25vw,  0.375rem);
  --sp-xs:  clamp(0.5rem,   0.4rem + 0.5vw,   0.75rem);
  --sp-sm:  clamp(0.75rem,  0.6rem + 0.75vw,  1.125rem);
  --sp-md:  clamp(1rem,     0.8rem + 1vw,     1.5rem);
  --sp-lg:  clamp(1.5rem,   1.2rem + 1.5vw,   2.25rem);
  --sp-xl:  clamp(2rem,     1.6rem + 2vw,     3rem);
  --sp-2xl: clamp(3rem,     2.4rem + 3vw,     4.5rem);
  --dur-fast:   150ms;
  --dur-normal: 300ms;
  --dur-slow:   600ms;
  --ease-out: cubic-bezier(0,0,0.2,1);
  --ease-in:  cubic-bezier(0.4,0,1,1);
}

/* ── Reset ───────────────────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: clip; scroll-behavior: auto; }
body {
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-size: var(--fs-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }
:focus-visible { outline: 2px solid var(--secondary); outline-offset: 3px; border-radius: 2px; }

/* ── Typography ──────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Baumans', sans-serif;
  color: var(--secondary);
  line-height: 1.15;
}
p { color: var(--text); line-height: 1.7; }

.section-eyebrow {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: var(--sp-2);
}
.section-title {
  font-family: 'Baumans', sans-serif;
  font-size: var(--fs-3xl);
  color: var(--text);
  margin-bottom: var(--sp-3);
  line-height: 1.1;
}
.section-body {
  font-size: var(--fs-base);
  color: var(--muted);
  line-height: 1.75;
  max-width: 60ch;
}

/* ── Layout ──────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-5);
}
.section-pad {
  padding: var(--sp-8) 0;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 32px;
  background: var(--accent);
  color: #FBEFEC;
  font-family: 'Montserrat', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--accent);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s;
  white-space: nowrap;
}
.btn-primary:hover { background: #9e3c36; border-color: #9e3c36; color: #FBEFEC; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 32px;
  background: transparent;
  color: var(--secondary);
  font-family: 'Montserrat', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--secondary);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s;
  white-space: nowrap;
}
.btn-outline:hover { background: var(--secondary); color: #FBEFEC; }

/* ── Navigation ──────────────────────────────────────────────────────────── */
#site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(251,239,236,0.30);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
#site-nav.scrolled {
  background: rgba(251,239,236,0.97);
  box-shadow: 0 1px 24px rgba(36,30,27,0.09);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  padding: 0 var(--sp-5);
  height: var(--nav-h);
}

/* Logo glass-pill (frosted glass — transparent PNG needs opaque ancestor) */
.nav-logo-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 6px 14px 6px 8px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 24px;
  border: 1px solid rgba(184,146,78,0.18);
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s;
}
.nav-logo-pill:hover { background: rgba(255,255,255,0.97); }
.nav-logo { height: 40px; width: auto; display: block; }
.nav-wordmark {
  font-family: 'Baumans', sans-serif;
  font-size: var(--fs-md);
  color: var(--text);
  white-space: nowrap;
  line-height: 1;
}

/* Desktop nav links */
.nav-links-desktop {
  display: flex;
  gap: var(--sp-5);
  flex: 1;
  justify-content: center;
  align-items: center;
}
.nav-link-item {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text);
  text-shadow: 0 1px 4px rgba(251,239,236,0.6);
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-link-item:hover, .nav-link-item.active { color: var(--secondary); }
#site-nav:not(.scrolled) .nav-link-item {
  color: rgba(251,239,236,0.92);
  text-shadow: 0 2px 8px rgba(36,30,27,0.5);
}
#site-nav:not(.scrolled) .nav-link-item:hover,
#site-nav:not(.scrolled) .nav-link-item.active { color: #FBEFEC; }

/* Nav book + burger */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}
.nav-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 22px;
  background: var(--accent);
  color: #FBEFEC;
  font-family: 'Montserrat', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.2s;
}
.nav-book-btn:hover { background: #9e3c36; color: #FBEFEC; }

.burger-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
  flex-shrink: 0;
}
#site-nav:not(.scrolled) .burger-btn { color: rgba(251,239,236,0.92); }
.burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}
.burger-icon { display: flex; flex-direction: column; gap: 5px; }

/* ── Mobile Drawer ───────────────────────────────────────────────────────── */
#mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
}
#mobile-drawer[aria-hidden="false"] { pointer-events: auto; }

.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(36,30,27,0.45);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
#mobile-drawer[aria-hidden="false"] .drawer-backdrop { opacity: 1; }

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(300px, 88vw);
  height: 100%;
  background: #FBEFEC; /* solid — alpha 1.0, well above 0.92 */
  display: flex;
  flex-direction: column;
  padding-bottom: var(--sp-7);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  border-left: 1px solid rgba(184,146,78,0.15);
}
#mobile-drawer[aria-hidden="false"] .drawer-panel { transform: translateX(0); }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: var(--sp-3) var(--sp-3) var(--sp-2);
  border-bottom: 1px solid rgba(154,139,126,0.15);
}

.drawer-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  font-size: var(--fs-xl);
  line-height: 1;
  padding: 8px;
  border-radius: 2px;
  transition: color 0.2s;
}
.drawer-close-btn:hover { color: var(--secondary); }

.drawer-nav {
  display: flex;
  flex-direction: column;
  margin-top: var(--sp-3);
  flex: 1;
}

/* ── CRITICAL: drawer-link — explicit color on <a>, 44px, opaque panel ── */
a.drawer-link {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 12px 28px;
  color: #241E1B; /* explicit color on <a> itself — not on a child */
  font-family: 'Montserrat', sans-serif;
  font-size: var(--fs-base);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px solid rgba(154,139,126,0.12);
  transition: color 0.2s, background 0.2s;
  box-sizing: border-box;
}
a.drawer-link:hover { color: #B8924E; background: rgba(184,146,78,0.06); }
a.drawer-link.active { color: #B8924E; }

.drawer-cta-wrap {
  padding: var(--sp-5) var(--sp-5) 0;
}
.drawer-book-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  background: var(--accent);
  color: #FBEFEC; /* explicit color on <a> itself */
  font-family: 'Montserrat', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
  text-align: center;
  width: 100%;
}
.drawer-book-cta:hover { background: #9e3c36; color: #FBEFEC; }

/* ── Hero (homepage scroll-scrub) ────────────────────────────────────────── */
.hero-wrap {
  height: 200vh;
  position: relative;
}
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(36,30,27,0.55) 0%,
    rgba(36,30,27,0.12) 25%,
    rgba(36,30,27,0)    45%,
    rgba(36,30,27,0.38) 65%,
    rgba(36,30,27,0.82) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  position: absolute;
  bottom: clamp(60px, 10vh, 120px);
  left: 0;
  right: 0;
  padding: 0 var(--sp-6);
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}
.hero-eyebrow {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(251,239,236,0.90);
  text-shadow: 0 4px 30px rgba(0,0,0,.9), 0 2px 10px rgba(0,0,0,.7);
}
.hero-headline {
  font-family: 'Baumans', sans-serif;
  font-size: var(--fs-3xl);
  color: #FBEFEC;
  line-height: 1.05;
  text-shadow: 0 4px 30px rgba(0,0,0,.9), 0 2px 10px rgba(0,0,0,.7);
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 42px;
  background: var(--accent);
  color: #FBEFEC;
  font-family: 'Montserrat', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s;
  text-decoration: none;
}
.hero-cta:hover { background: #9e3c36; color: #FBEFEC; }

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(251,239,236,0.75);
  font-family: 'Montserrat', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 4px 30px rgba(0,0,0,.9), 0 2px 10px rgba(0,0,0,.7);
  animation: hint-bob 2.2s ease-in-out infinite;
}
.hero-scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 32px;
  background: rgba(251,239,236,0.5);
}
@keyframes hint-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.8; }
  50%       { transform: translateX(-50%) translateY(6px); opacity: 0.5; }
}

/* ── Page Banner (inner pages) ───────────────────────────────────────────── */
.page-banner {
  padding: calc(var(--nav-h) + var(--sp-8)) 0 var(--sp-7);
  background: var(--bg-alt);
  border-bottom: 1px solid rgba(184,146,78,0.18);
  text-align: center;
}
.page-banner-eyebrow {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: var(--sp-2);
}
.page-banner-title {
  font-family: 'Baumans', sans-serif;
  font-size: var(--fs-3xl);
  color: var(--text);
  line-height: 1.1;
}

/* ── Work Frame (mat + inner-rule — from TB diamond crest geometry) ───────── */
.work-frame {
  position: relative;
  background: var(--bg-alt);
  padding: 10px;
  box-shadow: inset 0 0 0 1px rgba(184,146,78,0.30);
  min-width: 0;
}
.work-frame::after {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(184,146,78,0.30);
  pointer-events: none;
  z-index: 1;
}
.work-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── Signature Work Strip (homepage grid, 4-col) ──────────────────────────── */
.work-strip-wrap {
  overflow: visible;
  padding: 0 var(--sp-5);
}
.work-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--sp-3);
}
.work-strip .work-frame {
  aspect-ratio: 3/4;
}

/* ── Gallery Grid (gallery.html) ────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}
.gallery-grid .work-frame {
  aspect-ratio: 3/4;
}

/* ── Services ────────────────────────────────────────────────────────────── */
.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-4);
}
.service-card {
  background: var(--bg-alt);
  padding: var(--sp-5) var(--sp-5);
  border-top: 2px solid var(--secondary);
  border-radius: 1px;
}
.service-card-name {
  font-family: 'Baumans', sans-serif;
  font-size: var(--fs-lg);
  color: var(--text);
  margin-bottom: var(--sp-2);
}
.service-card-desc {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: var(--sp-4);
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 10px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.service-card-link:hover { color: var(--accent); }
.service-card-link::after { content: '→'; }

/* Price list page */
.price-section { margin-bottom: var(--sp-7); }
.price-section-title {
  font-family: 'Baumans', sans-serif;
  font-size: var(--fs-2xl);
  color: var(--text);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid rgba(184,146,78,0.25);
}
.price-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--sp-2);
}
.price-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--sp-3);
  padding: var(--sp-2) var(--sp-3);
  background: var(--bg-alt);
  border-radius: 1px;
}
.price-item-name {
  font-size: var(--fs-sm);
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
}
.price-item-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  gap: 2px;
}
.price-item-cost {
  font-family: 'Baumans', sans-serif;
  font-size: var(--fs-md);
  color: var(--secondary);
  white-space: nowrap;
}
.price-item-duration {
  font-size: var(--fs-xs);
  color: var(--muted);
  white-space: nowrap;
}

/* ── Offer Card ──────────────────────────────────────────────────────────── */
.offer-band {
  background: var(--text);
  padding: var(--sp-8) 0;
}
.offer-card {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--sp-5);
}
.offer-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-3);
  padding: 4px 12px;
  border: 1px solid rgba(178,74,67,0.4);
  border-radius: 2px;
}
.offer-title {
  font-family: 'Baumans', sans-serif;
  font-size: var(--fs-2xl);
  color: var(--bg);
  margin-bottom: var(--sp-3);
  line-height: 1.2;
}
.offer-desc {
  font-size: var(--fs-sm);
  color: rgba(251,239,236,0.7);
  line-height: 1.7;
  margin-bottom: var(--sp-5);
}
.offer-tiers {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-5);
}
.offer-tier {
  background: rgba(251,239,236,0.06);
  border: 1px solid rgba(184,146,78,0.25);
  border-radius: 2px;
  padding: var(--sp-4) var(--sp-5);
  min-width: 180px;
}
.offer-tier-name {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(251,239,236,0.6);
  margin-bottom: var(--sp-2);
}
.offer-was {
  display: block;
  font-size: var(--fs-sm);
  color: rgba(251,239,236,0.4);
  text-decoration: line-through;
  margin-bottom: 2px;
}
.offer-now {
  display: block;
  font-family: 'Baumans', sans-serif;
  font-size: var(--fs-2xl);
  color: var(--secondary);
}

/* ── Testimonial ─────────────────────────────────────────────────────────── */
.testimonial-band {
  background: var(--bg-alt);
  padding: var(--sp-8) 0;
  border-top: 1px solid rgba(184,146,78,0.15);
  border-bottom: 1px solid rgba(184,146,78,0.15);
}
.testimonial-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--sp-5);
  text-align: center;
}
.testimonial-stars {
  font-size: var(--fs-lg);
  color: var(--secondary);
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-4);
}
.testimonial-quote {
  font-family: 'Baumans', sans-serif;
  font-size: var(--fs-xl);
  color: var(--text);
  line-height: 1.45;
  margin-bottom: var(--sp-4);
  quotes: '\201C' '\201D';
}
.testimonial-quote::before { content: open-quote; }
.testimonial-quote::after  { content: close-quote; }
.testimonial-attr {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* ── Visit + Book / Hours ────────────────────────────────────────────────── */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  align-items: start;
}
.hours-list {
  display: grid;
  gap: var(--sp-1);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-2) 0;
  border-bottom: 1px solid rgba(154,139,126,0.12);
  font-size: var(--fs-sm);
  color: var(--text);
}
.hours-day { font-weight: 600; color: var(--text); }
.hours-time { color: var(--muted); }

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}
.contact-row-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  min-width: 60px;
  padding-top: 2px;
}
.contact-row-value {
  font-size: var(--fs-sm);
  color: var(--text);
  line-height: 1.5;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 0;
  color: #241E1B;
  font-size: var(--fs-sm);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-all;
}
.contact-link:hover { color: var(--secondary); }

.map-embed {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 2px;
  margin-top: var(--sp-5);
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--text);
  padding: var(--sp-8) 0 var(--sp-6);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-5);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--sp-6);
}
.footer-brand {}
.footer-logo-img {
  height: 56px;
  width: auto;
  margin-bottom: var(--sp-3);
  display: block;
  opacity: 0.9;
}
.footer-tagline {
  font-size: var(--fs-sm);
  color: rgba(251,239,236,0.55);
  line-height: 1.6;
  max-width: 28ch;
}
.footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: var(--sp-3);
}
.footer-nav {
  display: flex;
  flex-direction: column;
}
.footer-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 0;
  color: rgba(251,239,236,0.72);
  font-size: var(--fs-sm);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-link:hover { color: var(--secondary); }
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.footer-contact-item {
  font-size: var(--fs-sm);
  color: rgba(251,239,236,0.6);
  line-height: 1.5;
}
.footer-contact-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 0;
  color: rgba(251,239,236,0.72);
  font-size: var(--fs-sm);
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-all;
}
.footer-contact-link:hover { color: var(--secondary); }
.footer-bottom {
  max-width: var(--max-w);
  margin: var(--sp-6) auto 0;
  padding: var(--sp-4) var(--sp-5) 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}
.footer-copy {
  font-size: var(--fs-xs);
  color: rgba(251,239,236,0.35);
}
.footer-social {
  display: flex;
  gap: var(--sp-3);
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 8px;
  color: rgba(251,239,236,0.5);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.footer-social-link:hover { color: var(--secondary); border-color: var(--secondary); }

/* ── Scroll Reveal ───────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

/* hide mobile drawer entirely at desktop — prevents nav-dup at ≥769px */
@media (min-width: 769px) {
  #mobile-drawer { display: none; }
}

@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
  .visit-grid { grid-template-columns: 1fr; gap: var(--sp-5); }
}

@media (max-width: 768px) {
  .nav-links-desktop { display: none; }
  .nav-book-btn { display: none; }
  .burger-btn { display: flex; }

  .work-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .services-overview-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: var(--sp-5); }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
  .price-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .work-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ── Reduced motion ──────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-scroll-hint { animation: none; }
}
