/* ============================================================
   LOUISE CARR — PERMANENT MAKE UP ARTIST, PENYGRAIG
   Cosmetics template · white canvas · copper accent · pastel washes
   Cormorant Garamond (display) + Outfit (body)
   Brand knobs live in <style data-brand="brand-colors"> in index.html
   ============================================================ */

:root {
  /* ── Brand — per-client theme knobs (overridden in <head>) ── */
  --brand-primary:   #CF7D39;   /* accent — copper orange */
  --brand-secondary: #FFFFFF;   /* base canvas */
  --brand-text:      #2B211A;   /* warm ink */
  --wash-1:          #FBF1E9;   /* pastel peach */
  --wash-2:          #F7E7DC;   /* pastel apricot */
  --wash-3:          #F3EDE4;   /* pastel sand */

  /* ── Palette (aliased to brand) ── */
  --paper:   var(--brand-secondary);
  --ink:     var(--brand-text);
  --copper:  var(--brand-primary);
  /* guarantees >= 4.5:1 for white text on accent, whatever the brand hue */
  --copper-deep: var(--brand-primary);
  --muted:   color-mix(in srgb, var(--ink) 62%, #FFF);
  --line:    color-mix(in srgb, var(--ink) 14%, #FFF);
  --line-soft: color-mix(in srgb, var(--ink) 8%, #FFF);
  --foot-bg: color-mix(in srgb, var(--ink) 94%, var(--copper));
  --foot-fg: #F7EFE7;
  --shadow-tint: 0 24px 48px -24px color-mix(in srgb, var(--copper) 22%, transparent),
                 0 8px 20px -12px color-mix(in srgb, var(--ink) 14%, transparent);

  --font-display: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --font-body:    "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --gutter: clamp(1.25rem, 5vw, 4rem);
  --sec-pad: clamp(4.5rem, 12vh, 8.5rem);
  --radius: 22px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============ RESET / BASE ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scrollbar-color: var(--wash-2) var(--paper); }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.65;
  min-width: 320px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--copper); color: #FFF; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid var(--copper); outline-offset: 3px; border-radius: 2px; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; }
h1 em, h2 em { font-style: italic; font-weight: 400; color: var(--copper-deep); }

.micro {
  font-family: var(--font-body); font-size: 0.6875rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); line-height: 1.7;
}

.eyebrow {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--copper-deep);
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 2rem; height: 1px; background: var(--copper); flex-shrink: 0; }

.section-inner { max-width: 1400px; margin: 0 auto; padding: 0 var(--gutter); }
.section-head { margin-bottom: clamp(2.5rem, 6vh, 4.5rem); max-width: 46rem; text-align: center; }
.section-title { font-size: clamp(2.2rem, 5.5vw, 4rem); text-wrap: balance; }

section { padding: var(--sec-pad) 0; position: relative; }

/* reveal choreography — hidden only when JS is live; GSAP takes over */
.js [data-reveal], .js [data-reveal-hero], .js .ht-line { opacity: 0; }
.no-motion [data-reveal], .no-motion [data-reveal-hero], .no-motion .ht-line { opacity: 1 !important; transform: none !important; }

/* ============ SKIP LINK ============ */
.skip-link {
  position: fixed; top: 0; left: 0; z-index: 300;
  padding: 0.8rem 1.4rem; background: var(--copper-deep); color: #FFF;
  font-size: 0.8rem; letter-spacing: 0.08em; text-decoration: none;
  transform: translateY(-110%); transition: transform 0.25s var(--ease-out);
}
.skip-link:focus-visible { transform: translateY(0); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.06em; text-decoration: none; white-space: nowrap;
  border-radius: 999px; padding: 0.8rem 1.7rem; border: 1px solid transparent;
  cursor: pointer; min-height: 44px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease,
              transform 0.2s var(--ease-out), box-shadow 0.25s ease;
}
.btn:active { transform: scale(0.98); }
.btn-solid { background: var(--copper-deep); color: #FFF; box-shadow: 0 10px 24px -12px color-mix(in srgb, var(--copper) 55%, transparent); }
.btn-solid:hover, .btn-solid:focus-visible { background: color-mix(in srgb, var(--copper-deep) 84%, #000); box-shadow: 0 14px 28px -12px color-mix(in srgb, var(--copper) 65%, transparent); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover, .btn-ghost:focus-visible { border-color: var(--copper); color: var(--copper-deep); }
.btn-lg { padding: 1rem 2.1rem; font-size: 0.9375rem; }

/* ============ NAV ============ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.7rem var(--gutter);
  background: transparent; border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}
.site-nav.scrolled {
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
.nav-brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; min-width: 0; }
.nav-logo { width: 44px; height: 44px; object-fit: contain; border-radius: 50%; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.brand-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; letter-spacing: 0.01em; white-space: nowrap; }
.brand-tag { font-size: 0.625rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }

.nav-links { display: none; }
.nav-cta { display: none; }

.nav-toggle {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--wash-1); border: 1px solid var(--line-soft); cursor: pointer;
  transition: background 0.25s ease;
}
.nav-toggle span { display: block; width: 18px; height: 1.6px; background: var(--ink); transition: transform 0.3s var(--ease-out); }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(3.8px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { transform: translateY(-3.8px) rotate(-45deg); }

/* mobile menu panel */
body.nav-open .nav-links {
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.25rem;
  position: fixed; top: 0; right: 0; bottom: 0; z-index: -1;
  width: min(22rem, 88vw); padding: 6.5rem var(--gutter) 3rem;
  background: var(--paper); border-left: 1px solid var(--line-soft);
  box-shadow: -24px 0 60px -30px color-mix(in srgb, var(--ink) 25%, transparent);
}
body.nav-open .nav-links a:not(.btn) {
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 500;
  text-decoration: none; padding: 0.45rem 0; color: var(--ink);
}
body.nav-open .nav-links a:not(.btn):hover { color: var(--copper-deep); font-style: italic; }
body.nav-open .nav-links-cta { margin-top: 1.5rem; }
body.nav-open { overflow: hidden; }
body.nav-open .site-nav { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; border-bottom-color: transparent; }

main { display: flex; flex-direction: column; }

/* ============ HERO ============ */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 6.5rem 0 1.5rem; overflow: hidden;
  background:
    radial-gradient(120% 90% at 85% 0%, var(--wash-1) 0%, transparent 55%),
    var(--paper);
}
.hero-inner {
  max-width: 1400px; margin: 0 auto; width: 100%;
  padding: 0 var(--gutter);
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
/* All hero elements are direct flex children of .hero-inner so the editor
   can re-order any of them per view with scoped CSS `order` values. */
.hero-inner > * { max-width: 40rem; }
.eyebrow { justify-content: center; }
.eyebrow::before { display: none; }
.hero-title {
  font-size: clamp(2.7rem, 10.5vw, 6.1rem);
  line-height: 1.02; letter-spacing: -0.01em; margin: 0.5rem 0 1.4rem;
}
.ht-line { display: block; }
.ht-loc { color: var(--copper-deep); }

.hero-visual {
  position: relative; align-self: center;
  width: min(30rem, 92%); margin-top: 2rem;
}
.hero-arch {
  position: absolute; left: 4%; right: 4%; top: 14%; bottom: 0;
  background: linear-gradient(175deg, var(--wash-2) 0%, var(--wash-1) 70%, color-mix(in srgb, var(--wash-1) 55%, var(--paper)) 100%);
  border-radius: 999px 999px 0 0;
}
.hero-ring {
  position: absolute; top: 6%; right: -2%; width: 34%; aspect-ratio: 1;
  border: 1px solid color-mix(in srgb, var(--copper) 45%, transparent);
  border-radius: 50%;
}
.hero-portrait { position: relative; width: 88%; margin: 0 auto; filter: drop-shadow(0 30px 40px color-mix(in srgb, var(--copper) 18%, transparent)); }
.hero-quote {
  position: absolute; left: 10%; bottom: -5%; z-index: 2;
  width: min(12rem, 70%);
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: 12px;
  padding: 0.75rem 0.95rem; box-shadow: var(--shadow-tint);
  transition: transform 0.6s ease; animation: float 3.5s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-quote blockquote p { font-family: var(--font-display); font-style: italic; font-size: 0.88rem; line-height: 1.3; margin: 0.25rem 0 0.4rem; }
.stars { color: var(--copper); font-size: 0.72rem; letter-spacing: 0.22em; }

.hero-sub { color: var(--muted); font-size: clamp(1rem, 1.3vw, 1.15rem); max-width: 32rem; margin-bottom: 1.8rem; text-align: center; }
.hero-cta-row { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; justify-content: center; }
.hero-hours { margin-top: 1.4rem; text-align: center; }

.scroll-hint {
  position: relative; display: none; text-align: center; padding: 1.25rem 0;
  color: var(--copper-deep);
}

/* ============ MARQUEE ============ */
.marquee {
  overflow: hidden; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  background: var(--paper); padding: 1.1rem 0; white-space: nowrap;
}
.marquee-track { display: inline-flex; align-items: center; gap: 2.5rem; will-change: transform; }
.marquee-track span {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem); color: color-mix(in srgb, var(--ink) 74%, #FFF);
}
.marquee-track i { width: 5px; height: 5px; border-radius: 50%; background: var(--copper); flex-shrink: 0; }
@media (prefers-reduced-motion: no-preference) {
  .marquee-track { animation: marquee 36s linear infinite; }
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ ABOUT ============ */
.about-grid { display: flex; flex-direction: column; gap: 3rem; }
.about-visual { max-width: 26rem; }
.about-img-frame {
  background: linear-gradient(170deg, var(--wash-1), var(--wash-2));
  border-radius: var(--radius) var(--radius) 999px 999px;
  overflow: hidden; padding-top: 1.5rem;
}
.about-img-frame img { object-fit: cover; }
.about-caption { margin-top: 0.9rem; }
.about-copy p:not(.eyebrow) { color: var(--muted); max-width: 36rem; }
.about-copy .section-title { margin-bottom: 1.3rem; }
.about-copy > p + p { margin-top: 1rem; }
.about-points { margin: 1.8rem 0 2.1rem; display: grid; gap: 0; border-top: 1px solid var(--line-soft); }
.about-points li { display: flex; flex-direction: column; gap: 0.15rem; padding: 1rem 0; border-bottom: 1px solid var(--line-soft); }
.about-points strong { font-weight: 500; font-size: 0.98rem; }
.about-points span { color: var(--muted); font-size: 0.9rem; }

/* ============ TREATMENTS ============ */
.treatments { background: linear-gradient(180deg, var(--paper) 0%, var(--wash-1) 18%, var(--wash-1) 82%, var(--paper) 100%); }
.treatment-list { counter-reset: t; border-top: 1px solid var(--line); }
.treatment-row {
  position: relative; display: grid; gap: 0.4rem 1.5rem;
  grid-template-columns: auto 1fr; grid-template-areas: "idx name" "idx desc" "idx link";
  padding: 1.6rem 0.5rem; border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, padding 0.3s var(--ease-out);
  text-align: center;
}
.treatment-row:hover { background: color-mix(in srgb, var(--paper) 55%, transparent); }
.tr-idx { grid-area: idx; font-family: var(--font-display); font-style: italic; font-size: 1rem; color: var(--copper-deep); padding-top: 0.35rem; min-width: 2rem; }
.tr-name { grid-area: name; font-size: clamp(1.5rem, 3vw, 2.1rem); transition: color 0.25s ease; }
.treatment-row:hover .tr-name { color: var(--copper-deep); }
.tr-desc { grid-area: desc; color: var(--muted); font-size: 0.95rem; max-width: 34rem; }
.tr-link {
  grid-area: link; justify-self: start; margin-top: 0.4rem;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--copper-deep); text-decoration: none; padding: 0.35rem 0;
  border-bottom: 1px solid transparent; transition: border-color 0.25s ease, letter-spacing 0.25s ease;
}
.tr-link:hover, .tr-link:focus-visible { border-bottom-color: var(--copper); letter-spacing: 0.2em; }

@media (max-width: 719px) {
  .tr-idx { display: none; }
  .treatment-row { grid-template-columns: 1fr; grid-template-areas: "name" "desc" "link"; }
  .tr-link { justify-self: center; }
}

/* ============ GALLERY ============ */
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 0.9rem; }
.g-item {
  position: relative; overflow: hidden; border-radius: 16px; aspect-ratio: 1 / 1;
  background: var(--wash-3);
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.g-item:hover img { transform: scale(1.045); }
.g-item figcaption {
  position: absolute; left: 0.75rem; bottom: 0.75rem; z-index: 2;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  color: var(--ink); padding: 0.35rem 0.75rem; border-radius: 999px;
}
.gallery-note { margin-top: 2rem; color: var(--muted); }
.gallery-note a { color: var(--copper-deep); text-decoration: none; border-bottom: 1px solid var(--copper); font-weight: 400; }
.gallery-note a:hover { border-bottom-width: 2px; }

/* ============ REVIEWS ============ */
.reviews { background: linear-gradient(180deg, var(--paper) 0%, var(--wash-2) 22%, var(--wash-2) 78%, var(--paper) 100%); }
.review-grid { display: grid; gap: 1.1rem; align-items: stretch; }
.review-card {
  display: flex; flex-direction: column; height: 100%;
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 1.7rem 1.6rem 1.5rem; box-shadow: var(--shadow-tint);
}
.review-card blockquote { flex: 1; }
.review-card blockquote p {
  font-family: var(--font-display); font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  line-height: 1.4; margin: 0.9rem 0 1.1rem;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 5; overflow: hidden;
}
.review-card figcaption { display: flex; flex-direction: column; gap: 0.1rem; margin-top: auto; }
.review-card figcaption strong { font-weight: 500; font-size: 0.98rem; }

/* ============ WATCH / VIDEO ============ */
.watch-grid { display: flex; flex-direction: column; gap: 2.5rem; }
.watch-copy p:not(.eyebrow) { color: var(--muted); max-width: 30rem; }
.watch-copy .section-title { margin-bottom: 1.2rem; }
.watch-links { display: flex; gap: 0.7rem; margin-top: 1.7rem; }
.watch-media { width: 100%; max-width: 31.25rem; }
.watch-media iframe { width: 100%; max-width: 500px; border: none; border-radius: var(--radius); background: var(--paper); }

/* ============ FAQ ============ */
.faq { background: linear-gradient(180deg, var(--paper) 0%, var(--wash-3) 20%, var(--wash-3) 80%, var(--paper) 100%); }
.faq-grid { display: flex; flex-direction: column; gap: 2rem; }
.faq-head { margin-bottom: 0; }
.faq-intro { color: var(--muted); max-width: 26rem; text-align: center; }
.faq-intro a { color: var(--copper-deep); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex; align-items: center; justify-content: center; gap: 1.25rem;
  font-family: var(--font-display); font-size: clamp(1.2rem, 2.2vw, 1.5rem); font-weight: 500;
  padding: 1.3rem 0.25rem; cursor: pointer; list-style: none;
  transition: color 0.25s ease;
  text-align: center;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--copper-deep); }
.faq-icon { position: relative; flex-shrink: 0; width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%; transition: background 0.3s ease, border-color 0.3s ease; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: currentColor;
  transition: transform 0.35s var(--ease-out);
}
.faq-icon::before { width: 11px; height: 1.4px; transform: translate(-50%, -50%); }
.faq-icon::after { width: 1.4px; height: 11px; transform: translate(-50%, -50%); }
.faq-item[open] .faq-icon { background: var(--copper-deep); border-color: var(--copper-deep); color: #FFF; }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-a { padding: 0 0.25rem 1.4rem; color: var(--muted); max-width: 44rem; }
.faq-a a { color: var(--copper-deep); }

/* ============ VISIT / CONTACT ============ */
.visit-grid { display: flex; flex-direction: column; gap: 3rem; }
.visit-info { display: grid; gap: 1.9rem; align-content: start; text-align: center; }
.visit-block h3 { margin-bottom: 0.6rem; color: var(--copper-deep); }
.visit-block address { font-style: normal; line-height: 1.7; }
.hours { display: grid; gap: 0; max-width: 22rem; }
.hours > div { display: flex; justify-content: space-between; gap: 1rem; padding: 0.45rem 0; border-bottom: 1px solid var(--line-soft); font-size: 0.95rem; }
.hours dt { color: var(--muted); }
.hours dd { font-weight: 400; font-variant-numeric: tabular-nums; }
.visit-contact a { color: var(--ink); text-decoration: none; font-size: 1.05rem; line-height: 2; }
.visit-contact a:hover { color: var(--copper-deep); }
.visit-social { display: flex; gap: 1.25rem; margin-top: 0.5rem; }
.visit-social a { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--copper-deep); text-decoration: none; border-bottom: 1px solid var(--copper); padding-bottom: 0.15rem; }

.visit-right { display: grid; gap: 1.5rem; }
.map-wrap { border-radius: var(--radius); overflow: hidden; }
.map-facade {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%; min-height: 15rem; cursor: pointer;
  background: linear-gradient(160deg, var(--wash-3) 0%, var(--wash-1) 100%);
  border: 1px solid var(--line-soft); border-radius: var(--radius); color: var(--ink);
  transition: box-shadow 0.3s ease;
}
.map-facade:hover { box-shadow: var(--shadow-tint); }
.map-pin { color: var(--copper-deep); }
.map-label { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; }
.map-wrap iframe { width: 100%; height: 20rem; border: none; display: block; border-radius: var(--radius); }

.enquiry-form {
  background: var(--wash-1); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.form-title { font-size: 1.6rem; margin-bottom: 1.4rem; }
.form-row { display: grid; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-field label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-body); font-size: 1rem; font-weight: 300; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px;
  padding: 0.8rem 1rem; min-height: 44px; width: 100%;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-field textarea { resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--copper);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--copper) 18%, transparent);
}
.form-field.has-error input, .form-field.has-error textarea { border-color: #B3261E; }
.field-error { font-size: 0.8rem; color: #B3261E; min-height: 0; }
.form-note { margin-top: 1rem; }
.form-note a { color: var(--copper-deep); }

/* ============ FOOTER ============ */
.site-foot { background: var(--foot-bg); color: var(--foot-fg); padding: clamp(3rem, 8vh, 5rem) 0 2.5rem; }
.site-foot .micro { color: color-mix(in srgb, var(--foot-fg) 62%, transparent); }
.foot-grid { display: flex; flex-direction: column; gap: 2.25rem; }
.foot-brand img { border-radius: 50%; margin-bottom: 0.9rem; background: var(--foot-fg); }
.foot-brand .brand-name { font-size: 1.35rem; margin-bottom: 0.4rem; }
.foot-links { display: flex; flex-wrap: wrap; gap: 0.4rem 1.75rem; }
.foot-links a { color: var(--foot-fg); text-decoration: none; font-size: 0.9rem; letter-spacing: 0.06em; padding: 0.3rem 0; opacity: 0.85; transition: opacity 0.2s ease; }
.foot-links a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }
.foot-meta { display: grid; gap: 0.25rem; padding-top: 1.75rem; border-top: 1px solid color-mix(in srgb, var(--foot-fg) 16%, transparent); }
.foot-meta a { color: inherit; }

/* ============================================================
   TABLET — 720px+
   ============================================================ */
@media (min-width: 720px) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: 1fr 1fr; gap: 1.4rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .about-grid { flex-direction: row; align-items: flex-start; gap: clamp(2.5rem, 6vw, 5.5rem); }
  .about-visual { flex: 0 0 38%; position: sticky; top: 6.5rem; }
  .about-copy { flex: 1; }
  .watch-grid { flex-direction: row; align-items: center; gap: clamp(2.5rem, 6vw, 6rem); }
  .watch-copy { flex: 1; }
  .watch-media { flex: 0 0 min(26rem, 44%); }
  .visit-grid { flex-direction: row; gap: clamp(2.5rem, 6vw, 5.5rem); }
  .visit-info { flex: 0 0 34%; text-align: left; }
  .visit-right { flex: 1; }
  .faq-grid { flex-direction: row; gap: clamp(2.5rem, 6vw, 6rem); }
  .faq-head { flex: 0 0 34%; position: sticky; top: 6.5rem; align-self: flex-start; text-align: left; }
  .faq-list { flex: 1; }
  .treatment-row { text-align: left; }
  .faq-q { justify-content: space-between; text-align: left; }
}

/* ============================================================
   DESKTOP — 1080px+  (the show-off tier)
   ============================================================ */
@media (min-width: 1080px) {
  .nav-links { display: flex; align-items: center; gap: clamp(1.25rem, 2.2vw, 2.4rem); }
  .nav-links a:not(.btn) {
    font-size: 0.8rem; font-weight: 400; letter-spacing: 0.1em; text-decoration: none;
    color: var(--ink); position: relative; padding: 0.4rem 0;
  }
  .nav-links a:not(.btn)::after {
    content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
    background: var(--copper); transform: scaleX(0); transform-origin: right;
    transition: transform 0.35s var(--ease-out);
  }
  .nav-links a:not(.btn):hover::after, .nav-links a:not(.btn):focus-visible::after { transform: scaleX(1); transform-origin: left; }
  .nav-links-cta { display: none; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }

  /* hero becomes a split composition: text stays a flex column (so scoped
     re-ordering keeps working), the visual is lifted out of the flow and
     pinned to the bottom-right of the section */
  .hero { padding-top: 0; padding-bottom: 0; justify-content: flex-end; }
  .hero-inner {
    position: relative; flex: 1;
    justify-content: center; align-items: flex-start; text-align: left;
    padding: 8rem calc(var(--gutter) + min(34rem, 40%) + clamp(2rem, 5vw, 5rem)) 4rem var(--gutter);
  }
  .hero-inner > * { max-width: 44rem; }
  .eyebrow { justify-content: flex-start; }
  .eyebrow::before { display: block; }
  .hero-title, .hero-sub { text-align: left; }
  .section-head { text-align: left; }
  .hero-cta-row { justify-content: flex-start; }
  .hero-hours { text-align: left; }
  .hero-visual {
    position: absolute; right: var(--gutter); bottom: 0;
    width: min(34rem, 40%); max-width: none; margin-top: 0;
    display: flex; flex-direction: column; justify-content: flex-end;
  }
  .hero-portrait { width: 100%; }
  .hero-quote { left: -14%; bottom: 12%; width: min(15.5rem, 78%); animation: none; padding: 1rem 1.15rem; }
  .hero-quote blockquote p { font-size: 1.02rem; margin: 0.35rem 0 0.5rem; }
  .stars { font-size: 0.8rem; }
  .scroll-hint { display: block; }

  .treatment-row {
    grid-template-columns: 4rem minmax(16rem, 22rem) 1fr auto;
    grid-template-areas: "idx name desc link"; align-items: center;
    padding: 2rem 1rem;
  }
  .treatment-row:hover { padding-left: 1.75rem; }
  .tr-link { margin-top: 0; }

  .gallery-grid { gap: 1.25rem; }
  .g-item { border-radius: 18px; }

  .review-grid { gap: 1.75rem; }
  .rc-offset { margin-top: 2.75rem; }
  .review-card { padding: 2.2rem 2.1rem 1.9rem; }
  .faq-intro { text-align: left; }

  .site-nav { padding: 0.85rem var(--gutter); }
}

/* ============================================================
   WIDE — 1440px+
   ============================================================ */
@media (min-width: 1440px) {
  .hero-title { font-size: clamp(5.4rem, 5.2vw, 6.6rem); }
  .hero-visual { width: min(36rem, 40%); }
  .section-title { font-size: clamp(3.2rem, 3.4vw, 4.4rem); }
}

/* ============ PRINT ============ */
@media print {
  .site-nav, .skip-link, .marquee, .watch-media, .map-facade, .enquiry-form, .scroll-hint { display: none !important; }
  section { padding: 1.5rem 0; min-height: 0; }
  body { font-size: 11pt; }
}
