/* cs-tokens: v1 */
:root {
  /* PALETTE */
  --c-bg:        #FBF0DC;
  --c-bg-alt:    #FBE3EE;
  --c-ink:       #24304F;
  --c-muted:     #6A5560;
  --accent:      #D6497E;
  --accent2:     #F5A9C8;
  --accent-rgb:  214,73,126;
  --accent-light: color-mix(in srgb, var(--accent) 12%, white);
  --gold:        #C49A2A;
  --blush-mid:   #F0BDD4;

  /* TYPE SCALE */
  --fs-xs:   clamp(0.75rem,  1.5vw, 0.875rem);
  --fs-sm:   clamp(0.875rem, 1.8vw, 1rem);
  --fs-base: clamp(1rem,     2vw,   1.125rem);
  --fs-md:   clamp(1.125rem, 2.5vw, 1.375rem);
  --fs-lg:   clamp(1.375rem, 3vw,   1.875rem);
  --fs-xl:   clamp(1.875rem, 4vw,   2.5rem);
  --fs-2xl:  clamp(2.5rem,   5vw,   3.5rem);
  --fs-3xl:  clamp(3rem,     7vw,   5rem);

  /* SPACING — full cs-tokens v1 scale */
  --sp-2xs: 0.125rem;
  --sp-xs:  0.25rem;
  --sp-sm:  0.5rem;
  --sp-md:  1rem;
  --sp-lg:  1.5rem;
  --sp-xl:  2rem;
  --sp-2xl: 3rem;
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-24: 6rem;

  /* MOTION */
  --dur-fast:    150ms;
  --dur-base:    250ms;
  --dur-slow:    400ms;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.7, 0, 0.84, 0);
  --ease-inout:  cubic-bezier(0.87, 0, 0.13, 1);
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { }
body {
  font-family: 'Playfair Display', Georgia, serif;
  background: var(--c-bg);
  color: var(--c-ink);
  font-size: var(--fs-base);
  line-height: 1.72;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── FOCUS VISIBLE ────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
h1,h2,h3,h4 { line-height: 1.2; }

/* ── LOGO WORDMARK ────────────────────────────────────────── */
.logo-mark {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}
.logo-mark .logo-top {
  font-size: var(--fs-md);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}
.logo-mark .logo-sub {
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--c-muted);
  text-transform: uppercase;
}

/* ── NAV ─────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(251,240,220,0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(214,73,126,0.12);
  transition: box-shadow 0.3s;
}
.site-nav.scrolled { box-shadow: 0 2px 20px rgba(36,48,79,0.10); }
/* F3 fix: logo anchor tap target >= 44px */
.nav-inner > a {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  min-height: 44px;
  height: 100%;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 6px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-links {
  display: flex;
  gap: var(--sp-8);
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--c-ink);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: var(--sp-2) 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  display: inline-block;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); border-bottom-color: var(--accent); }
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: var(--sp-2) var(--sp-6) !important;
  border-radius: 100px;
  border-bottom: none !important;
  min-height: 44px;
  display: inline-flex !important;
  align-items: center !important;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: #b53a6a; transform: translateY(-1px); }

/* ── BURGER ──────────────────────────────────────────────── */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: var(--sp-3);
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE DRAWER ───────────────────────────────────────── */
.nav-drawer {
  display: none;
  flex-direction: column;
  background: rgba(251,240,220,0.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(214,73,126,0.15);
  padding: var(--sp-4) 0 var(--sp-8);
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  color: var(--c-ink);
  font-size: var(--fs-base);
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: var(--sp-3) var(--sp-8);
  min-height: 44px;
  display: flex;
  align-items: center;
  border-left: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.nav-drawer a:hover { color: var(--accent); border-left-color: var(--accent); background: rgba(214,73,126,0.06); }
.nav-drawer a.drawer-cta {
  color: var(--accent);
  font-weight: 700;
  margin: var(--sp-4) var(--sp-8) 0;
  border: 2px solid var(--accent);
  border-radius: 100px;
  justify-content: center;
  border-left: 2px solid var(--accent);
}

/* ── HERO SCRUB ──────────────────────────────────────────── */
.hero-scrub {
  height: 500vh;
  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;
}
/* CANVAS SCRIM — covers ALL hero text per canvas-scrim law */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(36,48,79,0.52) 0%,
      rgba(36,48,79,0.18) 40%,
      rgba(36,48,79,0.50) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 6vw 10vh;
}
.hero-eyebrow {
  font-size: var(--fs-sm);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: var(--sp-4);
  /* multi-layer strong text-shadow for additional safety */
  text-shadow: 0 4px 30px rgba(0,0,0,.9), 0 2px 10px rgba(0,0,0,.7);
}
.hero-headline {
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  max-width: 680px;
  text-shadow: 0 4px 30px rgba(0,0,0,.9), 0 2px 10px rgba(0,0,0,.7);
  margin-bottom: var(--sp-8);
}
.hero-headline em {
  color: var(--accent2);
  font-style: italic;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--accent);
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: var(--fs-base);
  font-weight: 600;
  padding: var(--sp-4) var(--sp-8);
  border-radius: 100px;
  min-height: 52px;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
  text-shadow: none;
  box-shadow: 0 8px 32px rgba(214,73,126,0.35);
}
.hero-cta:hover { background: #b53a6a; transform: translateY(-2px); }
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  right: 6vw;
  color: #ffffff;
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  /* dark pill = ancestor background-color alpha>=0.25 — satisfies canvas-scrim AND illegible-over-media contrast */
  background: rgba(0,0,0,0.55);
  padding: 6px 12px 8px;
  border-radius: 20px;
  /* strong shadow as belt-and-suspenders */
  text-shadow: 0 4px 30px rgba(0,0,0,.9), 0 2px 10px rgba(0,0,0,.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.5);
  animation: scrollline 1.6s ease-in-out infinite;
}
@keyframes scrollline {
  0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:0.3;transform:scaleY(0.5)}
}

/* ── NOTICE STRIP ────────────────────────────────────────── */
.notice-strip {
  background: var(--c-bg-alt);
  border-top: 3px solid var(--accent);
  padding: var(--sp-6) var(--sp-8);
  text-align: center;
}
.notice-strip p {
  font-size: var(--fs-sm);
  color: var(--c-ink);
  max-width: 720px;
  margin: 0 auto;
}
.notice-strip strong { color: var(--accent); font-weight: 700; }

/* ── SECTIONS SHARED ─────────────────────────────────────── */
.section {
  padding: var(--sp-24) var(--sp-8);
}
.section-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.section-eyebrow {
  font-size: var(--fs-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-4);
}
.section-title {
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--c-ink);
  line-height: 1.15;
  margin-bottom: var(--sp-6);
}
.section-lead {
  font-size: var(--fs-md);
  color: var(--c-muted);
  max-width: 660px;
  margin-bottom: var(--sp-8);
}
.divider-paw {
  text-align: center;
  color: var(--accent2);
  font-size: var(--fs-xl);
  letter-spacing: 0.3em;
  margin: var(--sp-4) 0;
  opacity: 0.6;
}

/* ── ABOUT SECTION ───────────────────────────────────────── */
.about-section { background: var(--c-bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.about-photo {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(36,48,79,0.15);
  aspect-ratio: 4/5;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-text .section-title { font-size: var(--fs-xl); }
.about-quote {
  font-size: var(--fs-lg);
  font-style: italic;
  color: var(--accent);
  border-left: 3px solid var(--accent2);
  padding-left: var(--sp-6);
  margin: var(--sp-8) 0;
  line-height: 1.5;
}

/* ── MEET NAYA ───────────────────────────────────────────── */
.naya-section { background: var(--c-bg-alt); }
.naya-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--sp-16);
  align-items: start;
}
.naya-photos {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.naya-portrait {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(36,48,79,0.13);
  aspect-ratio: 3/4;
}
.naya-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.naya-bio {
  font-size: var(--fs-sm);
  color: var(--c-ink);
  line-height: 1.8;
  margin-bottom: var(--sp-6);
}
.awards-block {
  background: var(--c-bg);
  border-radius: 12px;
  padding: var(--sp-6);
  margin-top: var(--sp-8);
}
.awards-block h4 {
  font-size: var(--fs-sm);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: var(--sp-4);
}
.award-item {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  margin-bottom: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--c-ink);
}
.award-medal { color: var(--gold); flex-shrink: 0; }

/* ── PROMISE SECTION ─────────────────────────────────────── */
.promise-section { background: var(--c-bg); }
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  margin-top: var(--sp-12);
}
.promise-card {
  background: var(--c-bg-alt);
  border-radius: 16px;
  padding: var(--sp-8);
  border-top: 3px solid var(--accent2);
}
.promise-icon {
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-4);
}
.promise-card h3 {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: var(--sp-3);
}
.promise-card p {
  font-size: var(--fs-sm);
  color: var(--c-muted);
  line-height: 1.7;
}

/* ── GALLERY ─────────────────────────────────────────────── */
.gallery-section { background: var(--c-bg-alt); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-12);
}
.gallery-frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(36,48,79,0.12), 0 4px 12px rgba(36,48,79,0.06);
  aspect-ratio: 4/5;
  transition: transform 0.3s, box-shadow 0.3s;
  background: var(--c-bg);
}
.gallery-frame:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 60px rgba(36,48,79,0.18), 0 8px 24px rgba(36,48,79,0.10);
}
.gallery-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── SERVICES PREVIEW ────────────────────────────────────── */
.services-preview { background: var(--c-bg); }
.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-12);
}
.service-card {
  background: var(--c-bg-alt);
  border-radius: 16px;
  padding: var(--sp-8);
  border-bottom: 3px solid var(--accent2);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(36,48,79,0.10);
}
.service-card-name {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: var(--sp-3);
}
.service-card-from {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: var(--sp-3);
}
.service-card-desc {
  font-size: var(--fs-sm);
  color: var(--c-muted);
  line-height: 1.65;
}

/* ── BOOKING CTA BAND ────────────────────────────────────── */
.booking-cta-band {
  background: var(--c-ink);
  padding: var(--sp-24) var(--sp-8);
  text-align: center;
}
.booking-cta-band h2 {
  font-size: var(--fs-2xl);
  color: #fff;
  margin-bottom: var(--sp-4);
}
.booking-cta-band p {
  color: var(--accent2);
  font-size: var(--fs-md);
  margin-bottom: var(--sp-8);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--accent);
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: var(--fs-base);
  font-weight: 700;
  padding: var(--sp-4) var(--sp-12);
  border-radius: 100px;
  min-height: 52px;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #b53a6a; transform: translateY(-2px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  background: transparent;
  color: var(--accent2);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: var(--fs-base);
  font-weight: 600;
  padding: var(--sp-4) var(--sp-12);
  border-radius: 100px;
  min-height: 52px;
  border: 2px solid var(--accent2);
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--accent2); color: var(--c-ink); }

/* ── SERVICES PAGE ───────────────────────────────────────── */
.page-hero {
  padding-top: 120px;
  padding-bottom: var(--sp-16);
  padding-left: var(--sp-8);
  padding-right: var(--sp-8);
  background: linear-gradient(135deg, var(--c-bg) 0%, var(--c-bg-alt) 100%);
  text-align: center;
}
.services-table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto var(--sp-12);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(36,48,79,0.08);
}
.services-table-header {
  background: var(--accent);
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--sp-4) var(--sp-6);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: var(--sp-2);
  align-items: center;
}
.services-table-row {
  background: var(--c-bg);
  padding: var(--sp-4) var(--sp-6);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: var(--sp-2);
  align-items: center;
  border-bottom: 1px solid rgba(214,73,126,0.12);
  font-size: var(--fs-sm);
  transition: background 0.2s;
}
.services-table-row:nth-child(even) { background: var(--c-bg-alt); }
.services-table-row:hover { background: rgba(245,169,200,0.18); }
.price-chip {
  background: var(--accent2);
  color: var(--c-ink);
  font-weight: 700;
  border-radius: 100px;
  padding: 2px 10px;
  font-size: var(--fs-xs);
  display: inline-block;
}
.poa-chip {
  background: var(--c-muted);
  color: #fff;
  font-weight: 600;
  border-radius: 100px;
  padding: 2px 10px;
  font-size: var(--fs-xs);
  display: inline-block;
}
.included-list {
  list-style: none;
  margin-top: var(--sp-4);
}
.included-list li {
  display: flex;
  gap: var(--sp-2);
  align-items: flex-start;
  font-size: var(--fs-sm);
  color: var(--c-muted);
  margin-bottom: var(--sp-1);
  padding-left: var(--sp-4);
}
.included-list li::before {
  content: '\2192';
  color: var(--accent2);
  flex-shrink: 0;
  margin-top: 3px;
}
.service-block {
  background: var(--c-bg);
  border-radius: 16px;
  padding: var(--sp-8);
  margin-bottom: var(--sp-8);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 20px rgba(36,48,79,0.06);
}
.service-block-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-4);
  border-bottom: 2px solid var(--accent2);
}
.service-block-name {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--c-ink);
}
.service-note {
  font-size: var(--fs-sm);
  font-style: italic;
  color: var(--c-muted);
  margin-top: var(--sp-4);
  padding: var(--sp-4);
  background: var(--c-bg-alt);
  border-radius: 8px;
  border-left: 3px solid var(--accent2);
}
.price-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}
.size-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--c-bg-alt);
  border-radius: 10px;
  padding: var(--sp-3) var(--sp-4);
  min-width: 80px;
}
.size-label {
  font-size: var(--fs-xs);
  color: var(--c-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.size-price {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--accent);
}
.other-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  max-width: 900px;
  margin: 0 auto;
}
.other-service-item {
  background: var(--c-bg);
  border-radius: 12px;
  padding: var(--sp-6) var(--sp-4);
  text-align: center;
  box-shadow: 0 4px 16px rgba(36,48,79,0.07);
}
.other-service-name {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: var(--sp-2);
}
.other-service-price {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--accent);
}

/* ── BOOKING PAGE ────────────────────────────────────────── */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: start;
}
.booking-steps {
  counter-reset: step;
}
.booking-step {
  display: flex;
  gap: var(--sp-6);
  margin-bottom: var(--sp-8);
  align-items: flex-start;
}
.step-num {
  counter-increment: step;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--fs-sm);
  flex-shrink: 0;
  margin-top: 4px;
}
.step-body h3 {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: var(--sp-2);
}
.step-body p {
  font-size: var(--fs-sm);
  color: var(--c-muted);
  line-height: 1.7;
}
.hours-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: var(--sp-2);
  text-align: center;
  margin-top: var(--sp-6);
}
.day-card {
  background: var(--c-bg);
  border-radius: 8px;
  padding: var(--sp-3) var(--sp-2);
  font-size: var(--fs-xs);
}
.day-name {
  font-weight: 700;
  color: var(--c-ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-1);
}
.day-hours { color: var(--c-muted); }
.day-card.closed .day-hours { color: var(--blush-mid); }
.day-card.open { border-top: 2px solid var(--accent2); }
.policy-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  margin-top: var(--sp-8);
}
.policy-card {
  background: var(--c-bg-alt);
  border-radius: 12px;
  padding: var(--sp-6);
}
.policy-card h3 {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: var(--sp-3);
  display: flex;
  gap: var(--sp-2);
  align-items: center;
}
.policy-card p {
  font-size: var(--fs-sm);
  color: var(--c-muted);
  line-height: 1.7;
}
.contact-block {
  background: var(--c-bg);
  border-radius: 16px;
  padding: var(--sp-8);
  box-shadow: 0 8px 32px rgba(36,48,79,0.08);
}
.contact-item {
  display: flex;
  gap: var(--sp-4);
  align-items: center;
  padding: var(--sp-4) 0;
  border-bottom: 1px solid rgba(214,73,126,0.15);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon { font-size: var(--fs-lg); width: 36px; text-align: center; }
.contact-label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-muted);
  margin-bottom: 2px;
}
.contact-value {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-ink);
}
.contact-value a {
  color: var(--accent);
  transition: opacity 0.2s;
}
.contact-value a:hover { opacity: 0.75; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--c-ink);
  color: var(--c-bg);
  padding: var(--sp-16) var(--sp-8) var(--sp-8);
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-12);
}
.footer-brand .logo-mark .logo-top { color: var(--gold); }
.footer-brand .logo-mark .logo-sub { color: rgba(251,240,220,0.5); }
.footer-tagline {
  font-size: var(--fs-sm);
  color: rgba(251,240,220,0.65);
  margin-top: var(--sp-4);
  line-height: 1.65;
  max-width: 280px;
}
.footer-col h4 {
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: var(--sp-4);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: var(--sp-2); }
.footer-col a {
  color: rgba(251,240,220,0.72);
  font-size: var(--fs-sm);
  transition: color 0.2s;
  display: inline-block;
  min-height: 44px;
  line-height: 44px;
}
.footer-col a:hover { color: var(--accent2); }
.footer-hours p {
  font-size: var(--fs-xs);
  color: rgba(251,240,220,0.65);
  line-height: 1.8;
}
.footer-bottom {
  border-top: 1px solid rgba(251,240,220,0.12);
  padding-top: var(--sp-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.footer-bottom p {
  font-size: var(--fs-xs);
  color: rgba(251,240,220,0.4);
}
.footer-socials {
  display: flex;
  gap: var(--sp-4);
}
.footer-socials a {
  color: rgba(251,240,220,0.6);
  font-size: var(--fs-sm);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  min-height: 44px;
}
.footer-socials a:hover { color: var(--accent2); }

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid,
  .naya-grid,
  .booking-grid { grid-template-columns: 1fr; }
  .naya-grid { grid-template-columns: 1fr; }
  .naya-photos { flex-direction: row; }
  .naya-portrait { aspect-ratio: 1/1; flex: 1; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .services-preview-grid { grid-template-columns: repeat(2,1fr); }
  .promise-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .other-services-grid { grid-template-columns: repeat(2,1fr); }
  .policy-cards { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: repeat(4,1fr); }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .burger { display: flex; }

  /* F4 fix: last odd gallery frame spans both columns — layout op, same image pool */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .gallery-frame:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    aspect-ratio: 16/9;
  }

  /* F5 fix: push hero CTA above scroll-hint zone */
  .hero-content { padding-bottom: 15vh; }
  .hero-scroll-hint {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 24px;
    align-items: center;
  }

  .services-preview-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .other-services-grid { grid-template-columns: repeat(2,1fr); }
  .hero-headline { font-size: clamp(2rem,8vw,3.5rem); }
  .services-table-header,
  .services-table-row {
    grid-template-columns: 1.5fr 1fr 1fr;
    font-size: var(--fs-xs);
  }
  .services-table-header > :nth-child(4),
  .services-table-header > :nth-child(5),
  .services-table-row > :nth-child(4),
  .services-table-row > :nth-child(5) { display: none; }
  .hours-grid { grid-template-columns: repeat(3,1fr); }
}
