/* ==========================================================================
   Beauty by Kayla Mac — main.css
   Layer 1: brand tokens (verbatim from /brand/tokens.css)
   Layer 2: base + components + pages (mobile-first)
   ========================================================================== */

/* ==========================================================================
   Beauty by Kayla Mac — Brand Tokens
   Direction: "Glossy Glaze" — warm cream base, espresso-plum ink,
   flamingo pink + berry accents, lagoon teal as the mermaid nod.
   ========================================================================== */

:root {
  /* ------------------------------------------------------------------
     COLOR — core palette
     ------------------------------------------------------------------ */
  --brand-cream:  #FFF8F3;  /* page background. Warm, flatters hair photos */
  --brand-blush:  #F9E4DC;  /* soft section background, alternating bands */
  --brand-white:  #FFFFFF;  /* cards, inputs, photo frames */
  --brand-ink:    #2D1B20;  /* headlines + body text (espresso plum, never pure black) */
  --brand-cocoa:  #5C4550;  /* secondary text, captions, meta */
  --brand-pink:   #E84A8A;  /* flamingo — display accents, hovers, graphics, gradient */
  --brand-berry:  #B4256B;  /* deep pink — links, solid buttons, small accent text */
  --brand-teal:   #0F6D77;  /* lagoon — secondary accent: tags, "vivid" menu items */
  --brand-peach:  #FFAE8C;  /* gradient partner + decorative only (never text) */
  --brand-line:   #EFD9D0;  /* hairline borders, dividers */

  /* ------------------------------------------------------------------
     COLOR — roles (use these in components, not the raw swatches)
     ------------------------------------------------------------------ */
  --color-bg:            var(--brand-cream);
  --color-bg-soft:       var(--brand-blush);
  --color-surface:       var(--brand-white);
  --color-text:          var(--brand-ink);
  --color-text-muted:    var(--brand-cocoa);
  --color-link:          var(--brand-berry);
  --color-accent:        var(--brand-pink);
  --color-accent-alt:    var(--brand-teal);
  --color-border:        var(--brand-line);

  --color-btn-bg:        var(--brand-berry);   /* white text on berry = 6.1:1 AA */
  --color-btn-text:      #FFFFFF;
  --color-btn-hover:     var(--brand-pink);    /* hover shifts brighter; keep label white + add shadow-pop */
  --color-footer-bg:     var(--brand-ink);     /* cream text on ink = 15.5:1 */
  --color-footer-text:   var(--brand-cream);

  /* ------------------------------------------------------------------
     GRADIENTS
     ------------------------------------------------------------------ */
  --brand-gradient-glaze: linear-gradient(135deg, #FFAE8C 0%, #E84A8A 100%);
  --brand-gradient-mermaid: linear-gradient(135deg, #E84A8A 0%, #8A5CC9 52%, #0F8A96 100%);
  --brand-gradient-wash: linear-gradient(180deg, #FFF8F3 0%, #F9E4DC 100%);

  /* ------------------------------------------------------------------
     TYPOGRAPHY
     ------------------------------------------------------------------ */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Outfit", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  --weight-body:      400;
  --weight-medium:    500;
  --weight-bold:      700;
  --weight-display:   600;

  --text-xs:      0.8125rem;
  --text-sm:      0.9375rem;
  --text-base:    1.0625rem;
  --text-lg:      1.25rem;
  --text-h3:      clamp(1.375rem, 3vw, 1.625rem);
  --text-h2:      clamp(1.75rem, 4vw, 2.375rem);
  --text-h1:      clamp(2.25rem, 6vw, 3.5rem);
  --text-display: clamp(2.75rem, 8vw, 4.5rem);

  --leading-tight: 1.1;
  --leading-snug:  1.25;
  --leading-body:  1.6;

  --tracking-caps: 0.14em;

  /* ------------------------------------------------------------------
     SPACING (4px base)
     ------------------------------------------------------------------ */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.5rem;
  --space-6:  2rem;
  --space-7:  3rem;
  --space-8:  4rem;
  --space-9:  6rem;

  /* ------------------------------------------------------------------
     RADIUS
     ------------------------------------------------------------------ */
  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-pill: 999px;

  /* ------------------------------------------------------------------
     SHADOWS — warm plum-tinted, never gray
     ------------------------------------------------------------------ */
  --shadow-soft: 0 2px 8px rgba(90, 37, 63, 0.08);
  --shadow-card: 0 6px 24px rgba(90, 37, 63, 0.12);
  --shadow-pop:  0 12px 32px rgba(232, 74, 138, 0.28);

  /* ------------------------------------------------------------------
     MOTION
     ------------------------------------------------------------------ */
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-quick: 160ms;
  --duration-base:  260ms;

  /* Site-layer additions (not brand tokens) */
  --container: 71.25rem;      /* 1140px */
  --gutter: clamp(1.25rem, 4.5vw, 2.5rem);
  --section-pad: clamp(3.75rem, 9vw, 6.75rem);
  --header-h: 4.5rem;
}

/* ==========================================================================
   BASE
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: var(--weight-body);
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
img { height: auto; } /* let CSS aspect-ratio win over width/height attributes */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: var(--weight-display);
  line-height: var(--leading-snug);
  margin: 0 0 var(--space-4);
  text-wrap: balance;
  letter-spacing: -0.01em;
}
h1 { font-size: var(--text-h1); line-height: var(--leading-tight); letter-spacing: -0.02em; }
h2 { font-size: var(--text-h2); }
h3 { font-size: var(--text-h3); }

p { margin: 0 0 var(--space-4); }
p:last-child { margin-bottom: 0; }

.lead { font-size: var(--text-lg); color: var(--color-text-muted); max-width: 38em; }

a { color: var(--color-link); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--color-accent); }

:focus-visible {
  outline: 3px solid var(--brand-pink);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--brand-pink); color: #fff; }

ul.plain { list-style: none; margin: 0; padding: 0; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-pad); }
.section--soft { background: var(--color-bg-soft); }
.section--wash { background: var(--brand-gradient-wash); }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4.5rem); }

.center { text-align: center; }
.center .lead { margin-inline: auto; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: var(--weight-medium);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--brand-berry);
  display: block;
  margin-bottom: var(--space-3);
}

.flourish {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-text-muted);
}

/* Gradient underline accent (mermaid = decorative only) */
.u-glaze {
  background: var(--brand-gradient-glaze);
  height: 4px; width: 72px; border-radius: 999px;
  margin: var(--space-4) 0 0;
}
.center .u-glaze { margin-inline: auto; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--brand-berry); color: #fff;
  padding: var(--space-3) var(--space-5);
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 200; font-weight: var(--weight-bold);
  text-decoration: none;
}
.skip-link:focus { left: 0; color: #fff; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: var(--weight-bold);
  font-size: var(--text-base);
  line-height: 1.2;
  text-decoration: none;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 0.875rem var(--space-6);
  min-height: 3rem; /* 48px tap target */
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background var(--duration-base), color var(--duration-base),
              box-shadow var(--duration-base), border-color var(--duration-base),
              transform var(--duration-quick) var(--ease-bounce);
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-primary {
  color: var(--color-btn-text);
  background: var(--color-btn-bg);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover {
  color: #fff;
  background: var(--color-btn-hover);
  box-shadow: var(--shadow-pop);
  transform: translateY(-1px);
}
/* glaze shimmer sweep */
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-110%);
  pointer-events: none;
}
.btn-primary:hover::after { animation: shimmer 900ms ease; }
@keyframes shimmer { to { transform: translateX(110%); } }

.btn-secondary {
  color: var(--brand-berry);
  background: transparent;
  box-shadow: inset 0 0 0 2px var(--brand-berry);
}
.btn-secondary:hover {
  color: #fff;
  background: var(--brand-berry);
  box-shadow: inset 0 0 0 2px var(--brand-berry), var(--shadow-soft);
  transform: translateY(-1px);
}

.btn-light {
  color: var(--brand-ink);
  background: var(--brand-cream);
  box-shadow: var(--shadow-soft);
}
.btn-light:hover {
  color: var(--brand-ink);
  background: #fff;
  box-shadow: var(--shadow-pop);
  transform: translateY(-1px);
}

.btn-lg { padding: 1.05rem var(--space-7); font-size: 1.125rem; }

.text-link {
  font-weight: var(--weight-bold);
  color: var(--brand-berry);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  min-height: 44px;
}
.text-link::after { content: "→"; transition: transform var(--duration-quick) var(--ease-bounce); }
.text-link:hover::after { transform: translateX(4px); }

/* ==========================================================================
   AWARD CHIP + TAGS
   ========================================================================== */

.chip-award {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--brand-berry);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: var(--space-2) var(--space-4);
  box-shadow: var(--shadow-soft);
  line-height: 1.5;
  text-align: left;
  max-width: 100%;
}
.chip-award svg { flex: none; }
.chip-award--onink {
  color: var(--brand-cream);
  background: rgba(255, 248, 243, 0.08);
  border-color: rgba(255, 248, 243, 0.25);
  box-shadow: none;
}

.tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.75rem;
}
.tag--teal { color: #fff; background: var(--brand-teal); }
.tag--blush { color: var(--brand-berry); background: var(--brand-blush); }

/* ==========================================================================
   HEADER + NAV
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color var(--duration-base), box-shadow var(--duration-base);
}
/* Blur lives on a pseudo-element: backdrop-filter on the header itself would
   turn it into the containing block for the fixed mobile-nav overlay. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 248, 243, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.site-header.is-scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; min-height: 44px; }
.brand img { height: 2.6rem; width: auto; }

.site-nav ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, 1.5vw, 1rem);
}
.site-nav a:not(.btn) {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 var(--space-3);
  font-weight: var(--weight-medium);
  font-size: var(--text-sm);
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius-pill);
  transition: color var(--duration-quick), background var(--duration-quick);
}
.site-nav a:not(.btn):hover { color: var(--brand-berry); background: var(--brand-blush); }
.site-nav a[aria-current="page"] { color: var(--brand-berry); }
.site-nav a[aria-current="page"]:not(.btn) { box-shadow: inset 0 -2px 0 var(--brand-pink); border-radius: 0; }
.nav-book { margin-left: var(--space-3); padding: 0.6rem 1.4rem; min-height: 44px; }

.nav-toggle {
  display: none;
  width: 48px; height: 48px;
  border: 0; background: transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
  z-index: 120;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2.5px;
  border-radius: 2px;
  background: var(--brand-ink);
  margin: 5px auto;
  transition: transform var(--duration-base) var(--ease-bounce), opacity var(--duration-quick);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 899px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 110;
    background: var(--brand-cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-7) var(--gutter) var(--space-8);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity var(--duration-base), transform var(--duration-base), visibility 0s linear var(--duration-base);
  }
  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: opacity var(--duration-base), transform var(--duration-base);
  }
  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
  }
  .site-nav a:not(.btn) {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    font-weight: var(--weight-display);
    color: var(--brand-ink);
    padding: var(--space-2) 0;
    border-radius: 0;
  }
  .site-nav a:not(.btn):hover { background: none; color: var(--brand-pink); }
  .site-nav a[aria-current="page"]:not(.btn) { box-shadow: none; color: var(--brand-berry); }
  .site-nav a[aria-current="page"]:not(.btn)::after {
    content: ""; display: inline-block; width: 0.5em; height: 0.5em;
    margin-left: 0.35em; border-radius: 50%;
    background: var(--brand-gradient-glaze);
  }
  .site-nav li { opacity: 0; transform: translateY(10px); transition: opacity 300ms ease, transform 300ms var(--ease-bounce); }
  .site-nav.is-open li { opacity: 1; transform: none; }
  .site-nav.is-open li:nth-child(1) { transition-delay: 60ms; }
  .site-nav.is-open li:nth-child(2) { transition-delay: 110ms; }
  .site-nav.is-open li:nth-child(3) { transition-delay: 160ms; }
  .site-nav.is-open li:nth-child(4) { transition-delay: 210ms; }
  .site-nav.is-open li:nth-child(5) { transition-delay: 260ms; }
  .site-nav.is-open li:nth-child(6) { transition-delay: 310ms; }
  .site-nav.is-open li:nth-child(7) { transition-delay: 360ms; }
  .nav-book {
    margin: var(--space-6) 0 0;
    align-self: stretch;
    padding: 1.05rem var(--space-6);
    font-size: 1.125rem;
  }
  .nav-cta-note { margin-top: var(--space-4); font-size: var(--text-sm); color: var(--color-text-muted); }
  body.nav-open { overflow: hidden; }
}
@media (min-width: 900px) {
  .site-nav { display: flex; align-items: center; }
  .nav-cta-note { display: none; }
}

/* ==========================================================================
   STICKY MOBILE BOOK BAR
   ========================================================================== */

.book-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: flex;
  gap: var(--space-3);
  align-items: center;
  padding: var(--space-3) var(--gutter);
  padding-bottom: calc(var(--space-3) + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 248, 243, 0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--color-border);
}
.book-bar .btn-primary { flex: 1; }
.book-bar-call {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  color: var(--brand-berry);
  background: var(--color-surface);
  box-shadow: inset 0 0 0 2px var(--brand-berry);
  transition: background var(--duration-quick), color var(--duration-quick);
}
.book-bar-call:hover { background: var(--brand-berry); color: #fff; }
body { padding-bottom: 5.5rem; } /* room for book bar on mobile */
@media (min-width: 900px) {
  .book-bar { display: none; }
  body { padding-bottom: 0; }
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero { position: relative; overflow: hidden; }
.hero .container {
  display: grid;
  gap: var(--space-7);
  padding-block: clamp(2.75rem, 7vw, 6rem);
  align-items: center;
}
.hero h1 { font-size: var(--text-display); margin-bottom: var(--space-5); }
.hero .lead { margin-bottom: var(--space-6); }
.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-4); }
.hero-award { margin-top: var(--space-5); }
.hero-art {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}
.hero-art img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
@media (min-width: 900px) {
  .hero .container {
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(2.5rem, 6vw, 5rem);
  }
}

/* Page hero (interior pages) */
.page-hero { padding-block: clamp(3rem, 7vw, 5.5rem) clamp(2.5rem, 5vw, 4rem); }
.page-hero .lead { margin-top: var(--space-2); }
.page-hero .hero-ctas { margin-top: var(--space-6); }

/* ==========================================================================
   CARDS
   ========================================================================== */

.card-grid {
  display: grid;
  gap: var(--space-5);
  margin-top: var(--space-7);
}
@media (min-width: 640px) { .card-grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .card-grid--3 { grid-template-columns: repeat(3, 1fr); } }

.svc-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--duration-base) var(--ease-bounce), box-shadow var(--duration-base);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.svc-card-art { position: relative; }
.svc-card-art img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.svc-card-body { padding: var(--space-5) var(--space-5) var(--space-6); display: flex; flex-direction: column; flex: 1; }
.svc-card-body p { color: var(--color-text-muted); flex: 1; }
.svc-card-body .text-link { margin-top: var(--space-3); }

/* Price cards (services page) */
.menu-section { margin-top: var(--space-8); }
.menu-section > .flourish { display: block; max-width: 44em; margin-bottom: var(--space-5); }
.price-grid { display: grid; gap: var(--space-4); }
@media (min-width: 720px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }

.price-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  box-shadow: var(--shadow-soft);
  transition: transform var(--duration-base) var(--ease-bounce), box-shadow var(--duration-base);
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.price-card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-2);
}
.price-card h3 { margin: 0; font-size: 1.25rem; }
.price {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: 1.375rem;
  color: var(--brand-berry);
  white-space: nowrap;
}
.price small { font-family: var(--font-body); font-weight: var(--weight-medium); font-size: var(--text-xs); color: var(--color-text-muted); }
.price-card p { color: var(--color-text-muted); font-size: var(--text-sm); margin: 0; }
.price-card .duration {
  display: inline-block;
  margin-top: var(--space-3);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--brand-teal);
}

/* Vivids feature card — mermaid gradient border (decorative only) */
.vivid-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 3px;
  background: var(--brand-gradient-mermaid);
  box-shadow: var(--shadow-card);
}
.vivid-card-inner {
  background: var(--color-surface);
  border-radius: calc(var(--radius-lg) - 3px);
  padding: clamp(var(--space-5), 4vw, var(--space-7));
  display: grid;
  gap: var(--space-5);
  align-items: center;
}
@media (min-width: 820px) { .vivid-card-inner { grid-template-columns: 1fr 260px; } }
.vivid-card-inner img { border-radius: var(--radius-md); aspect-ratio: 1; object-fit: cover; width: 100%; }

/* ==========================================================================
   SOCIAL PROOF BAND (dark)
   ========================================================================== */

.band {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  position: relative;
  overflow: hidden;
}
.band::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--brand-gradient-glaze);
}
.band h2 { color: var(--brand-cream); }
.band .eyebrow { color: var(--brand-peach); }
.band p { color: rgba(255, 248, 243, 0.82); }
.band a:not(.btn) { color: var(--brand-peach); }
.stat-row {
  display: grid;
  gap: var(--space-5);
  margin: var(--space-6) 0;
  text-align: center;
}
@media (min-width: 640px) { .stat-row { grid-template-columns: repeat(3, 1fr); } }
.stat b {
  display: block;
  font-family: var(--font-display);
  font-weight: var(--weight-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--brand-peach); /* large text: peach ok decoratively? no — use cream */
  color: var(--brand-cream);
  line-height: 1.15;
}
.stat span { font-size: var(--text-sm); color: rgba(255,248,243,0.75); letter-spacing: var(--tracking-caps); text-transform: uppercase; font-weight: var(--weight-medium); }

/* ==========================================================================
   GALLERY / PLACEHOLDER ART
   ========================================================================== */

.gallery-grid {
  display: grid;
  gap: var(--space-5);
  margin-top: var(--space-7);
}
@media (min-width: 560px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

.ph {
  margin: 0;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--duration-base) var(--ease-bounce), box-shadow var(--duration-base);
}
.ph:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.ph > a, .ph > button.ph-zoom {
  display: block; width: 100%;
  border: 0; padding: 0; background: none; cursor: zoom-in;
}
.ph img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.ph figcaption {
  padding: var(--space-4) var(--space-5) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.ph figcaption .cap { color: var(--color-text); font-weight: var(--weight-medium); display: block; }
.ph figcaption .tag { margin-top: var(--space-2); }

/* Lightbox */
.lightbox {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(92vw, 40rem);
  width: 100%;
}
.lightbox::backdrop { background: rgba(45, 27, 32, 0.82); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.lightbox-inner {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.lightbox-inner img { width: 100%; max-height: 70vh; object-fit: cover; }
.lightbox-caption { padding: var(--space-4) var(--space-5); font-size: var(--text-sm); color: var(--color-text-muted); }
.lightbox-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 var(--space-3) var(--space-3);
}
.lightbox-btn {
  border: 0; background: var(--brand-blush); color: var(--brand-berry);
  width: 44px; height: 44px; border-radius: 50%;
  font-size: 1.2rem; cursor: pointer; font-family: var(--font-body);
  transition: background var(--duration-quick), color var(--duration-quick);
}
.lightbox-btn:hover { background: var(--brand-berry); color: #fff; }

/* ==========================================================================
   SHOP
   ========================================================================== */

.product-grid {
  display: grid;
  gap: var(--space-5);
  margin-top: var(--space-7);
}
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }

.product-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--duration-base) var(--ease-bounce), box-shadow var(--duration-base);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.product-card-art { position: relative; background: var(--brand-gradient-wash); }
.product-card-art img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.product-card-art .tag { position: absolute; top: var(--space-4); left: var(--space-4); }
.product-card-body { padding: var(--space-5); display: flex; flex-direction: column; flex: 1; gap: var(--space-2); }
.product-hook { font-family: var(--font-display); font-style: italic; color: var(--brand-berry); margin: 0; }
.product-card-body h3 { margin: 0; font-size: 1.2rem; }
.product-card-body .desc { color: var(--color-text-muted); font-size: var(--text-sm); flex: 1; }
.product-price-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: var(--space-2);
}

.shopify-buy-slot { margin-top: var(--space-3); }
.notify-form { display: flex; gap: var(--space-2); flex-wrap: wrap; }
.notify-form input[type="email"] {
  flex: 1 1 9rem;
  min-height: 48px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text);
  background: var(--brand-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 0 var(--space-4);
}
.notify-form input[type="email"]::placeholder { color: var(--color-text-muted); }
.notify-form .btn { padding: 0.6rem 1.25rem; font-size: var(--text-sm); }
.notify-note {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--brand-teal);
  margin-bottom: var(--space-2);
}
.form-msg { font-size: var(--text-sm); color: var(--brand-teal); margin-top: var(--space-2); display: none; }
.form-msg.is-visible { display: block; }

.pro-pick {
  display: flex;
  gap: var(--space-4);
  align-items: baseline;
  justify-content: space-between;
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--color-border);
}
.pro-pick:last-child { border-bottom: 0; }
.pro-pick h3 { margin: 0 0 var(--space-1); font-size: 1.15rem; }
.pro-pick p { margin: 0; color: var(--color-text-muted); font-size: var(--text-sm); max-width: 46em; }
.pro-pick .price { font-size: 1.15rem; }
.disclosure {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  margin-top: var(--space-5);
}

/* ==========================================================================
   BOOK PAGE
   ========================================================================== */

.booking-frame-wrap {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  margin-top: var(--space-5);
}
.booking-frame-wrap iframe {
  display: block;
  width: 100%;
  height: min(78vh, 52rem);
  border: 0;
}
.booking-topbar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--color-border);
  background: var(--brand-cream);
}
.booking-topbar p { margin: 0; font-size: var(--text-sm); color: var(--color-text-muted); }

.info-cols { display: grid; gap: var(--space-6); margin-top: var(--space-7); }
@media (min-width: 900px) { .info-cols { grid-template-columns: 1fr 1fr; } }
.info-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-5), 3vw, var(--space-6));
  box-shadow: var(--shadow-soft);
}
.info-card h2, .info-card h3 { margin-top: 0; }
.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: var(--space-4);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.28em;
  width: 1.1rem; height: 1.1rem;
  border-radius: 50%;
  background: var(--brand-gradient-glaze);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M12 1c1 5 3 7 8 8-5 1-7 3-8 8-1-5-3-7-8-8 5-1 7-3 8-8z"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M12 1c1 5 3 7 8 8-5 1-7 3-8 8-1-5-3-7-8-8 5-1 7-3 8-8z"/></svg>') center / contain no-repeat;
}
.checklist b { color: var(--color-text); }
.checklist li p, .checklist li span { color: var(--color-text-muted); }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list { margin-top: var(--space-7); }
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-3);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: box-shadow var(--duration-base);
}
.faq-item[open] { box-shadow: var(--shadow-card); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  min-height: 3.5rem;
  font-family: var(--font-display);
  font-weight: var(--weight-display);
  font-size: 1.125rem;
  line-height: var(--leading-snug);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--brand-berry); }
.faq-item summary::after {
  content: "+";
  flex: none;
  display: grid;
  place-items: center;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: var(--brand-blush);
  color: var(--brand-berry);
  font-family: var(--font-body);
  font-weight: var(--weight-medium);
  font-size: 1.25rem;
  transition: transform var(--duration-base) var(--ease-bounce), background var(--duration-quick), color var(--duration-quick);
}
.faq-item[open] summary::after { content: "–"; transform: rotate(180deg); background: var(--brand-berry); color: #fff; }
.faq-answer { padding: 0 var(--space-5) var(--space-5); color: var(--color-text-muted); }
.faq-answer a { color: var(--brand-berry); }

/* ==========================================================================
   PROSE (about / policy blocks)
   ========================================================================== */

.prose { max-width: 44em; }
.prose h2 { margin-top: var(--space-7); }
.prose ul { padding-left: 1.25rem; }
.prose li { margin-bottom: var(--space-2); color: var(--color-text); }
.prose li::marker { color: var(--brand-pink); }

.split { display: grid; gap: var(--space-7); align-items: start; }
@media (min-width: 900px) {
  .split { grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.5rem, 6vw, 5rem); }
  .split > .split-media { position: sticky; top: calc(var(--header-h) + var(--space-5)); }
}
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.split-media img { width: 100%; object-fit: cover; }

/* ==========================================================================
   CTA CLOSER
   ========================================================================== */

.closer { position: relative; overflow: hidden; }
.closer .container { position: relative; }
.closer-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: clamp(var(--space-6), 6vw, var(--space-8));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closer-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--brand-gradient-glaze);
}
.closer-card .lead { margin-inline: auto; margin-bottom: var(--space-6); }
.closer-card .hero-ctas { justify-content: center; }
.closer-sub {
  margin-top: var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: var(--space-8) 0 var(--space-6);
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--brand-gradient-glaze);
}
.footer-grid {
  display: grid;
  gap: var(--space-6);
  margin-bottom: var(--space-7);
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--space-6); } }
.footer-brand { display: flex; align-items: center; gap: var(--space-3); text-decoration: none; }
.footer-brand img { width: 44px; height: 44px; }
.footer-brand span {
  font-family: var(--font-display);
  font-weight: var(--weight-display);
  font-size: 1.35rem;
  color: var(--brand-cream);
}
.footer-tag { margin-top: var(--space-4); color: rgba(255,248,243,0.75); font-size: var(--text-sm); max-width: 26em; }
.site-footer h2 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--brand-peach);
  margin-bottom: var(--space-4);
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: var(--space-1); }
.site-footer a {
  color: rgba(255,248,243,0.85);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  gap: var(--space-2);
  transition: color var(--duration-quick);
}
.site-footer a:hover { color: var(--brand-peach); }
.site-footer address { font-style: normal; color: rgba(255,248,243,0.85); line-height: 1.7; }
.footer-award { margin-top: var(--space-5); }
.footer-bottom {
  border-top: 1px solid rgba(255,248,243,0.15);
  padding-top: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: space-between;
  font-size: var(--text-sm);
  color: rgba(255,248,243,0.6);
}
.footer-bottom a { color: rgba(255,248,243,0.75); min-height: 0; }

/* ==========================================================================
   SCROLL REVEAL + MOTION PREFS
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.22, 0.9, 0.3, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 100ms; }
.reveal[data-delay="2"] { transition-delay: 200ms; }
.reveal[data-delay="3"] { transition-delay: 300ms; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .btn-primary:hover::after { animation: none; }
}

/* No-JS fallback: keep content visible */
.no-js .reveal { opacity: 1; transform: none; }
