:root {
  --bg:           #FDF9F6;
  --surface:      #FBF4EE;
  --accent:       #D4497B;
  --accent2:      #C89B72;
  --accent-rgb:   212,73,123;
  --accent-light: color-mix(in srgb, var(--accent) 12%, var(--bg));
  --ink:          #241E21;
  --muted:        #6E5A62;

  --fs-xs:   clamp(.75rem,   1.5vw,  .875rem);
  --fs-sm:   clamp(.875rem,  2vw,    1rem);
  --fs-base: clamp(1rem,     2.5vw,  1.125rem);
  --fs-md:   clamp(1.125rem, 3vw,    1.375rem);
  --fs-lg:   clamp(1.375rem, 4vw,    1.75rem);
  --fs-xl:   clamp(1.75rem,  5vw,    2.5rem);
  --fs-2xl:  clamp(2.25rem,  7vw,    3.5rem);
  --fs-3xl:  clamp(3rem,    10vw,    5rem);

  --sp-1:  .25rem;
  --sp-2:  .5rem;
  --sp-3:  .75rem;
  --sp-4:  1rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  --radius:      .5rem;
  --radius-lg:   1rem;
  --radius-pill: 9999px;

  --sp-2xs: .25rem;
  --sp-xs:  .5rem;
  --sp-sm:  .75rem;
  --sp-md:  1rem;
  --sp-lg:  1.5rem;
  --sp-xl:  2rem;
  --sp-2xl: 3rem;

  --dur-fast:  200ms;
  --dur-base:  350ms;
  --dur-slow:  600ms;
  --ease-out:  cubic-bezier(0.25, 0, 0, 1);
  --ease-in:   cubic-bezier(0.42, 0, 1, 1);
  --ease-io:   cubic-bezier(0.42, 0, 0.58, 1);

  --gilt: linear-gradient(90deg, #A87B52 0%, #C89B72 45%, #E4C9A8 100%);
  --wash: linear-gradient(160deg, #FDF9F6 0%, #F6DDDF 100%);
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-font-smoothing: antialiased; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Mulish', -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: var(--fs-base);
  line-height: 1.65;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.container {
  width: min(1200px, 100% - var(--sp-8));
  margin-inline: auto;
}

.section { padding-block: var(--sp-24); }
.section-sm { padding-block: var(--sp-16); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
}

.wordmark-script {
  font-family: 'Parisienne', 'Snell Roundhand', 'Brush Script MT', cursive;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  display: block;
}

.gilt-line {
  display: block;
  height: 2px;
  background: var(--gilt);
  border: none;
}

.gilt-divider {
  height: 2px;
  background: var(--gilt);
  border: none;
  width: min(320px, 80%);
  margin-inline: auto;
}


/* ── NAV ── */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(253, 249, 246, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 155, 114, 0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1200px, 100% - var(--sp-8));
  margin-inline: auto;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
  line-height: 1;
  white-space: nowrap;
  min-height: 44px;
  padding-block: var(--sp-2);
}

.nav-wordmark-script {
  font-family: 'Parisienne', 'Snell Roundhand', cursive;
  font-size: 1.6rem;
  color: var(--ink);
  line-height: 1;
}

.nav-wordmark-sub {
  font-family: 'Mulish', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: var(--sp-8);
  align-items: center;
}

.nav-links a {
  font-family: 'Mulish', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.06em;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--accent);
}

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: var(--sp-2) var(--sp-6);
  border-radius: var(--radius-pill);
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  transition: opacity 0.2s !important;
}

.nav-cta:hover { opacity: 0.88; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  padding: var(--sp-2);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}


/* ── HERO ── */

.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(253, 249, 246, 0.45) 0%,
    rgba(212, 73, 123, 0.18) 60%,
    rgba(36, 30, 33, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-inline: var(--sp-6);
  max-width: 640px;
}

.hero-script {
  font-family: 'Parisienne', 'Snell Roundhand', cursive;
  font-size: clamp(4rem, 14vw, 8rem);
  color: #fff;
  line-height: 0.9;
  display: block;
  text-shadow: 0 2px 20px rgba(36,30,33,0.3);
}

.hero-gilt {
  display: block;
  height: 2px;
  width: 160px;
  background: var(--gilt);
  margin: var(--sp-4) auto;
}

.hero-sub {
  font-family: 'Mulish', sans-serif;
  font-size: var(--fs-sm);
  letter-spacing: 0.28em;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 8px rgba(36,30,33,0.4);
  display: block;
  text-transform: uppercase;
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-lg);
  color: #fff;
  margin-top: var(--sp-6);
  font-weight: 500;
  font-style: italic;
  text-shadow: 0 2px 16px rgba(36,30,33,0.4);
}

.hero-cta {
  display: inline-block;
  margin-top: var(--sp-8);
  background: var(--accent);
  color: #fff;
  font-family: 'Mulish', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: var(--sp-4) var(--sp-8);
  border-radius: var(--radius-pill);
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 24px rgba(212,73,123,0.4);
}

.hero-cta:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,0.7);
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  font-family: 'Mulish', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.7; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}


/* ── PAGE HERO BAND (interior pages) ── */

.page-hero {
  background: var(--wash);
  padding-block: var(--sp-24) var(--sp-16);
  text-align: center;
  border-bottom: 1px solid rgba(200,155,114,0.15);
}

.page-hero-sub {
  font-family: 'Mulish', sans-serif;
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
  display: block;
}

.page-hero h1 {
  font-size: var(--fs-2xl);
  color: var(--ink);
}

.page-hero p {
  font-size: var(--fs-md);
  color: var(--muted);
  margin-top: var(--sp-4);
  max-width: 480px;
  margin-inline: auto;
  font-style: italic;
}


/* ── BRAND STATEMENT ── */

.brand-statement {
  text-align: center;
  padding-block: var(--sp-16);
}

.brand-statement-text {
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-xl);
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  max-width: 640px;
  margin-inline: auto;
  line-height: 1.4;
}

.brand-statement-detail {
  font-size: var(--fs-sm);
  color: var(--muted);
  margin-top: var(--sp-4);
  max-width: 480px;
  margin-inline: auto;
}


/* ── SECTION HEADINGS ── */

.section-label {
  font-family: 'Mulish', sans-serif;
  font-size: var(--fs-xs);
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: var(--sp-3);
}

.section-heading {
  font-size: var(--fs-2xl);
  font-weight: 600;
}

.section-intro {
  font-size: var(--fs-md);
  color: var(--muted);
  margin-top: var(--sp-4);
  max-width: 560px;
  font-style: italic;
}

.section-header { margin-bottom: var(--sp-12); }
.section-header-center {
  text-align: center;
}
.section-header-center .section-intro {
  margin-inline: auto;
}


/* ── GALLERY GRID (preview on home) ── */

.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
}

.gallery-preview-frame {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius);
  background: #F5F1ED;
}

.gallery-preview-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.gallery-preview-frame:hover img {
  transform: scale(1.04);
}

.gallery-link-row {
  text-align: center;
  margin-top: var(--sp-8);
}

.link-arrow {
  font-family: 'Mulish', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  transition: gap 0.2s;
}

.link-arrow:hover { gap: var(--sp-4); }


/* ── FULL GALLERY (gallery.html) ── */

.gallery-full {
  columns: 4;
  column-gap: var(--sp-3);
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--sp-3);
  border-radius: var(--radius);
  overflow: hidden;
  background: #F5F1ED;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}


/* ── SERVICE CARDS ── */

.services-section { background: var(--surface); }

.service-category {
  padding-block: var(--sp-16);
}

.service-category + .service-category {
  border-top: 1px solid rgba(200,155,114,0.2);
}

.service-cat-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sp-12);
  align-items: start;
}

.service-cat-label { position: sticky; top: calc(var(--nav-h) + var(--sp-6)); }

.service-cat-label h2 {
  font-size: var(--fs-xl);
  font-weight: 600;
}

.service-cat-label .section-label {
  margin-bottom: var(--sp-2);
}

.service-cat-label p {
  color: var(--muted);
  margin-top: var(--sp-4);
  font-size: var(--fs-sm);
}

.service-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}

.service-item {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  border: 1px solid rgba(200,155,114,0.15);
}

.service-item-name {
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--sp-3);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.service-item-name::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--gilt);
  flex-shrink: 0;
}

.service-item p {
  color: var(--muted);
  font-size: var(--fs-sm);
  line-height: 1.7;
}

.service-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}

.service-img-frame {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
  background: #F5F1ED;
}

.service-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lash-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-8);
  align-items: start;
}

.lash-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #F5F1ED;
}

.lash-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.no-image-note {
  font-size: var(--fs-xs);
  color: var(--muted);
  font-style: italic;
  margin-top: var(--sp-4);
}

.service-text-block {
  max-width: 560px;
}

.service-text-block p {
  color: var(--muted);
  font-size: var(--fs-base);
  line-height: 1.8;
}

.service-text-block p + p { margin-top: var(--sp-4); }


/* ── OVERVIEW CARDS (home page services) ── */

.services-overview { background: var(--surface); }

.overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.overview-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-6);
  border: 1px solid rgba(200,155,114,0.15);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.overview-card-gilt {
  width: 40px;
  height: 2px;
  background: var(--gilt);
  display: block;
}

.overview-card h3 {
  font-size: var(--fs-md);
  font-weight: 600;
}

.overview-card p {
  color: var(--muted);
  font-size: var(--fs-sm);
  line-height: 1.7;
  flex: 1;
}

.overview-card-link {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: var(--sp-2);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  transition: gap 0.2s;
}

.overview-card-link:hover { gap: var(--sp-3); }


/* ── VOUCHER BAND ── */

.voucher-band {
  background: linear-gradient(135deg, #F6DDDF 0%, #FDF9F6 60%, #F6DDDF 100%);
  border-top: 1px solid rgba(200,155,114,0.25);
  border-bottom: 1px solid rgba(200,155,114,0.25);
}

.voucher-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--sp-8);
  padding-block: var(--sp-12);
}

.voucher-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.voucher-text h3 {
  font-size: var(--fs-lg);
  font-weight: 600;
}

.voucher-text p {
  color: var(--muted);
  margin-top: var(--sp-2);
  font-size: var(--fs-sm);
}

.voucher-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Mulish', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 700;
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: opacity 0.2s;
}

.voucher-cta:hover { opacity: 0.88; }


/* ── FIND US / CONTACT ── */

.find-us { background: var(--bg); }

.find-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}

.find-us-story {
  font-size: var(--fs-base);
  color: var(--muted);
  line-height: 1.8;
}

.find-us-story p + p { margin-top: var(--sp-4); }

.contact-block { display: flex; flex-direction: column; gap: var(--sp-6); }

.contact-item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.contact-label {
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
}

.contact-value {
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-md);
  font-weight: 500;
  color: var(--ink);
}

.contact-value a {
  color: var(--ink);
  transition: color 0.2s;
}

.contact-value a:hover { color: var(--accent); }

.hours-table { margin-top: var(--sp-2); }

.hours-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: var(--sp-2);
  padding: var(--sp-2) 0;
  border-bottom: 1px solid rgba(200,155,114,0.12);
  font-size: var(--fs-sm);
}

.hours-row:last-child { border-bottom: none; }

.hours-day { color: var(--muted); font-weight: 600; }
.hours-time { color: var(--ink); }

.hours-note {
  font-size: var(--fs-xs);
  color: var(--muted);
  font-style: italic;
  margin-top: var(--sp-3);
}

.social-links {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--surface);
  border: 1px solid rgba(200,155,114,0.2);
  border-radius: var(--radius-pill);
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink);
  transition: border-color 0.2s, color 0.2s;
}

.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.booking-note {
  background: var(--accent-light);
  border: 1px solid rgba(212,73,123,0.2);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  margin-top: var(--sp-6);
}

.booking-note p {
  font-size: var(--fs-sm);
  color: var(--ink);
  line-height: 1.7;
}

.booking-note strong { color: var(--accent); }

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Mulish', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 700;
  padding: var(--sp-4) var(--sp-8);
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--accent);
  font-family: 'Mulish', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 700;
  padding: var(--sp-4) var(--sp-8);
  border-radius: var(--radius-pill);
  border: 2px solid var(--accent);
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}


/* ── CTA BAND ── */

.cta-band {
  background: var(--ink);
  text-align: center;
  padding-block: var(--sp-16);
}

.cta-band h2 {
  font-size: var(--fs-xl);
  color: #fff;
  font-weight: 600;
}

.cta-band p {
  color: rgba(255,255,255,0.65);
  margin-top: var(--sp-4);
  font-size: var(--fs-base);
}

.cta-band-btns {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--sp-8);
}

.btn-white {
  display: inline-block;
  background: #fff;
  color: var(--ink);
  font-family: 'Mulish', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 700;
  padding: var(--sp-4) var(--sp-8);
  border-radius: var(--radius-pill);
  transition: opacity 0.2s;
}

.btn-white:hover { opacity: 0.88; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-family: 'Mulish', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 700;
  padding: var(--sp-4) var(--sp-8);
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255,255,255,0.35);
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.8);
  color: #fff;
}


/* ── FOOTER ── */

.site-footer {
  background: var(--surface);
  border-top: 1px solid rgba(200,155,114,0.2);
  padding-block: var(--sp-16);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-12);
}

.footer-brand { display: flex; flex-direction: column; gap: var(--sp-4); }

.footer-wordmark-script {
  font-family: 'Parisienne', cursive;
  font-size: 1.8rem;
  color: var(--ink);
  line-height: 1;
}

.footer-wordmark-sub {
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 2px;
}

.footer-brand p {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}

.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-3); }

.footer-col a {
  font-size: var(--fs-sm);
  color: var(--muted);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  margin-top: var(--sp-12);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(200,155,114,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
  color: var(--muted);
  flex-wrap: wrap;
  gap: var(--sp-4);
}


/* ── PRICE NOTE ── */

.price-note {
  background: var(--surface);
  border: 1px solid rgba(200,155,114,0.2);
  border-radius: var(--radius-lg);
  padding: var(--sp-6) var(--sp-8);
  text-align: center;
  margin-top: var(--sp-8);
}

.price-note p {
  color: var(--muted);
  font-size: var(--fs-sm);
}

.price-note a {
  color: var(--accent);
  font-weight: 700;
}


/* ── REVEAL UTILITY ── */

.reveal { opacity: 0; transform: translateY(24px); }
.reveal-scale { opacity: 0; transform: scale(0.96); }


/* ── RESPONSIVE ── */

@media (max-width: 1024px) {
  .gallery-preview-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-full { columns: 3; }
  .overview-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .service-cat-inner { grid-template-columns: 1fr; }
  .service-cat-label { position: static; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--bg);
    padding: var(--sp-6) var(--sp-8);
    border-bottom: 1px solid rgba(200,155,114,0.2);
    gap: var(--sp-4);
  }
  .nav-toggle { display: block; }
  .gallery-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-full { columns: 2; }
  .overview-grid { grid-template-columns: 1fr; }
  .find-us-grid { grid-template-columns: 1fr; }
  .voucher-inner { grid-template-columns: 1fr; text-align: center; }
  .voucher-icon { margin-inline: auto; }
  .service-items { grid-template-columns: 1fr; }
  .service-images { grid-template-columns: repeat(2, 1fr); }
  .lash-images { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-full { columns: 2; }
  .hours-row { grid-template-columns: 100px 1fr; }
}
