/* Shakufeh Sharif — global styles
   Brand: boho mid-century, warm, organic. Curl specialist in Long Beach.
   Register: between a sun-lit studio and a curated editorial — NOT a Wix
   template, NOT salon pink, NOT clinical white.

   Motifs: concentric arch SVG accents (low-opacity), organic blob image
   frames, subtle paper-grain on blush surfaces, sage leaf accents.
   Typography hierarchy: Cormorant Garamond (display), DM Sans (body/UI),
   Pinyon Script (pull-quotes / accents).

   CSS variable names kept parallel to the Prestige precedent so JS that
   references --verdigris-40, --ivory, --navy, etc. continues to work
   when components.css uses those. Brand-token section maps the new palette
   to those legacy names as aliases. */

/* ── Brand tokens (exact from brief) ──────────────────────────────────────
   --terracotta  #C4714A   Primary CTA / active states
   --blush       #F5EDE3   Primary light background
   --ivory       #FAF6F1   Secondary background
   --charcoal    #2D2D2D   Body text
   --sage        #8A9E8C   Botanical accent — sparing
*/
:root {
  /* Core brand palette */
  --terracotta:  #C4714A;
  --blush:       #F5EDE3;
  --ivory:       #FAF6F1;
  --charcoal:    #2D2D2D;
  --sage:        #8A9E8C;

  /* Derived / alpha values */
  --terracotta-85: rgba(196, 113, 74, 0.85);
  --terracotta-60: rgba(196, 113, 74, 0.60);
  --terracotta-20: rgba(196, 113, 74, 0.20);
  --terracotta-10: rgba(196, 113, 74, 0.10);
  --blush-90:    rgba(245, 237, 227, 0.90);
  --ivory-90:    rgba(250, 246, 241, 0.90);
  --charcoal-85: rgba(45, 45, 45, 0.85);
  --charcoal-60: rgba(45, 45, 45, 0.60);
  --charcoal-20: rgba(45, 45, 45, 0.20);
  --charcoal-10: rgba(45, 45, 45, 0.10);
  --sage-40:     rgba(138, 158, 140, 0.40);
  --sage-25:     rgba(138, 158, 140, 0.25);
  --sage-12:     rgba(138, 158, 140, 0.12);
  --white:       #FFFFFF;

  /* ── Aliases for the .ap-* admin component system (components.css) ── */
  /* These map Prestige's nav/ivory/verdigris/parchment/navy variable
     names to Shakufeh's palette so admin.js and components.css keep working. */
  --navy:           var(--charcoal);           /* was racing green */
  --navy-85:        var(--charcoal-85);
  --navy-60:        var(--charcoal-60);
  --navy-20:        var(--charcoal-20);
  --verdigris:      var(--sage);               /* rules / secondary text */
  --verdigris-40:   var(--sage-40);
  --verdigris-25:   var(--sage-25);
  --parchment:      var(--blush);              /* light accent on dark */
  --parchment-85:   var(--blush-90);
  --oxblood:        #A03030;                   /* error / danger red */
  --ink:            var(--charcoal);

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-script:  'Pinyon Script', cursive;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;
  --font-ui:      'DM Sans', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-width:       1100px;
  --gutter:          clamp(20px, 4vw, 56px);
  --section-padding: clamp(80px, 12vw, 140px);

  --rule:      1px solid var(--sage-40);
  --rule-thin: 1px solid var(--sage-25);
}

/* ── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }

::selection { background: var(--terracotta); color: var(--white); }

/* ── Typography ──────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin: 0 0 0.5em;
  color: var(--charcoal);
}
h1 { font-size: clamp(44px, 8vw, 96px); font-weight: 300; }
h2 { font-size: clamp(32px, 4.5vw, 58px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); }
h4 { font-size: clamp(18px, 1.6vw, 22px); font-weight: 500; }

em, .italic, h1 em, h2 em, h3 em { font-style: italic; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* Script accent — Pinyon Script pull-quotes and decorative lines */
.script {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  color: var(--terracotta);
  line-height: 1.15;
}
.script-lg  { font-size: clamp(36px, 5vw, 68px); }
.script-xl  { font-size: clamp(48px, 7vw, 88px); }
.script-md  { font-size: clamp(28px, 3.5vw, 48px); }

/* Eyebrow labels — DM Sans small-caps feel */
.eyebrow,
.label-small-caps {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
}
.eyebrow-blush  { color: var(--blush-90); }
.eyebrow-terra  { color: var(--terracotta); }

/* Stamp — italic Cormorant used in hero sub-lines */
.stamp {
  display: inline-block;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--sage);
  letter-spacing: 0.04em;
}
.stamp-light  { color: var(--blush-90); }
.stamp-terra  { color: var(--terracotta-85); }

.italic-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(19px, 1.7vw, 25px);
  letter-spacing: 0.005em;
  line-height: 1.45;
}

/* ── Layout primitives ────────────────────────────────────────────────────── */
.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-padding) 0; }

/* Section surface variants */
.section-blush  { background-color: var(--blush);   color: var(--charcoal); }
.section-ivory  { background-color: var(--ivory);   color: var(--charcoal); }
.section-charcoal { background-color: var(--charcoal); color: var(--ivory); }
.section-navy   { background-color: var(--charcoal); color: var(--blush); }  /* alias for prestige compat */
.section-terra  { background-color: var(--terracotta); color: var(--white); }

/* Section headings on charcoal */
.section-charcoal h1,
.section-charcoal h2,
.section-charcoal h3,
.section-navy h1,
.section-navy h2,
.section-navy h3 { color: var(--blush); }

/* Paper-grain texture — very faint on blush surfaces */
.section-blush,
.texture-blush {
  background-color: var(--blush);
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.60 0 0 0 0 0.40 0 0 0 0 0.25 0 0 0 0.07 0'/%3E%3C/filter%3E%3Crect width='320' height='320' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* Hairlines */
.rule {
  display: block; width: 100%; height: 1px;
  background: var(--sage-40); border: 0; margin: 0;
}
.rule-short {
  display: inline-block; width: 48px; height: 1px;
  background: var(--sage); vertical-align: middle; margin: 0 12px;
}

/* Sage diamond separator — used in contact strip */
.sep-diamond {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--sage);
  transform: rotate(45deg);
  opacity: 0.6;
}

/* Vertical rule — used in split layouts */
.vert-rule {
  background: var(--sage-40);
  opacity: 1;
  align-self: stretch;
}

.pipe {
  display: inline-block; width: 1px; height: 1em;
  background: currentColor; opacity: 0.35;
  vertical-align: middle; margin: 0 16px;
}

/* ── Concentric arch SVG motif ───────────────────────────────────────────── */
/* Low-opacity background accent. Inline SVG placed via ::before on hero. */
.arch-bg {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  overflow: hidden;
}
.arch-bg svg {
  position: absolute;
  bottom: -10%;
  right: -8%;
  width: 60%;
  max-width: 640px;
  opacity: 0.07;
}
@media (max-width: 768px) {
  .arch-bg svg { width: 90%; right: -20%; bottom: -5%; opacity: 0.05; }
}

/* ── Organic blob frame — image container ───────────────────────────────── */
.blob-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 5;
}
.blob-frame::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--blush);
  clip-path: ellipse(50% 50% at 50% 50%);
  border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
  z-index: 0;
}
.blob-frame .blob-inner {
  position: absolute; inset: 8%;
  overflow: hidden;
  border-radius: 58% 42% 52% 48% / 42% 58% 46% 54%;
  background: var(--sage-12);
  z-index: 1;
}
.blob-frame .blob-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.blob-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
  font-family: var(--font-heading); font-style: italic;
  font-size: 14px; color: var(--sage);
  text-align: center; padding: 20px;
  background: var(--blush);
  border-radius: 58% 42% 52% 48% / 42% 58% 46% 54%;
}
.blob-placeholder span {
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0.6; margin-top: 4px;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 32px;
  font-family: var(--font-body); font-weight: 600;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  line-height: 1; border: 1.5px solid transparent;
  border-radius: 100px;   /* pill shape — organic / boho */
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--terracotta); color: var(--white);
  border-color: var(--terracotta);
}
.btn-primary:hover {
  background: #b56040; border-color: #b56040;
}

.btn-ghost {
  background: transparent; color: var(--terracotta);
  border-color: var(--terracotta);
}
.btn-ghost:hover {
  background: var(--terracotta); color: var(--white);
}

.btn-ghost-light {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-ghost-light:hover {
  background: var(--white); color: var(--terracotta);
}

.btn-outline-navy {       /* prestige compat alias */
  background: transparent; color: var(--charcoal);
  border-color: var(--charcoal); border-radius: 100px;
}
.btn-outline-navy:hover { background: var(--charcoal); color: var(--white); }

.btn-block { width: 100%; }
.btn-sm { padding: 10px 22px; font-size: 12px; }

/* Quiet text-link */
.link-quiet {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--terracotta); font-family: var(--font-body);
  font-size: 14px; font-weight: 500; letter-spacing: 0.03em;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--terracotta-60);
  transition: color 200ms ease, border-color 200ms ease;
}
.link-quiet:hover { color: #b56040; border-bottom-color: #b56040; }
.section-charcoal .link-quiet,
.section-navy .link-quiet { color: var(--blush); border-bottom-color: var(--blush-90); }
.section-charcoal .link-quiet:hover,
.section-navy .link-quiet:hover { color: var(--white); border-bottom-color: var(--white); }

/* ── Forms ──────────────────────────────────────────────────────────────── */
.field { margin-bottom: 22px; }
.field-label {
  display: block; font-family: var(--font-body); font-weight: 600;
  font-size: 11px; letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 10px;
}
.field-input,
.field-select,
.field-textarea {
  width: 100%; padding: 13px 16px;
  background: var(--white);
  border: 1.5px solid var(--sage-40);
  border-radius: 10px;
  font-family: var(--font-body); font-size: 16px;
  color: var(--charcoal);
  transition: border-color 180ms ease, background-color 180ms ease;
  outline: none; appearance: none;
}
.field-input::placeholder,
.field-textarea::placeholder { color: rgba(45,45,45,0.35); }
.field-input:focus,
.field-select:focus,
.field-textarea:focus {
  border-color: var(--terracotta);
  background: var(--white);
}
.field-textarea { min-height: 120px; resize: vertical; }
.field-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
@media (max-width: 640px) { .field-row { grid-template-columns: 1fr; } }
.field-hint { font-size: 13px; color: var(--charcoal-60); margin-top: 6px; }

/* ── Nav ────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  background: var(--ivory-90);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sage-25);
  height: 76px;
  display: flex; align-items: center;
}
.nav-inner {
  width: 100%; max-width: var(--max-width); margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
}
/* Brand wordmark in nav */
.nav-brand {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-heading); font-size: 20px;
  font-weight: 400; letter-spacing: 0.06em;
  color: var(--charcoal);
}
.nav-brand .nav-name { font-style: italic; }
.nav-brand .nav-title {
  font-family: var(--font-body); font-size: 10px;
  font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--sage);
}

.nav-links {
  display: flex; align-items: center; gap: 24px;
}
.nav-links a {
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em; color: var(--charcoal-85);
  padding: 6px 0;
  border-bottom: 1.5px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links .nav-cta {
  background: var(--terracotta); color: var(--white);
  border: 1.5px solid var(--terracotta);
  padding: 9px 22px; border-radius: 100px;
  font-size: 12px; letter-spacing: 0.12em;
  transition: background-color 180ms ease;
}
.nav-links .nav-cta:hover { background: #b56040; border-color: #b56040; }

.nav-toggle {
  display: none; width: 32px; height: 32px;
  align-items: center; justify-content: center;
  color: var(--charcoal);
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; inset: 76px 0 0 0;
    background: var(--ivory); flex-direction: column;
    justify-content: flex-start; gap: 0;
    padding: 32px 28px 48px;
    transform: translateY(-100%);
    transition: transform 280ms ease;
    visibility: hidden;
  }
  .nav-links.open { transform: translateY(0); visibility: visible; }
  .nav-links a {
    width: 100%; padding: 16px 0;
    border-bottom: 1px solid var(--sage-25);
    font-size: 15px;
  }
  .nav-links .nav-cta {
    margin-top: 22px; padding: 14px 22px;
    text-align: center; border-radius: 100px;
    border-bottom: 0;
  }
}

/* ── Fixed nav offset ─────────────────────────────────────────────────────── */
.has-fixed-nav { padding-top: 76px; }
.letterhead-trim {
  position: fixed; top: 76px; left: 0; right: 0;
  height: 1px; background: var(--sage-25); z-index: 49;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer {
  position: relative;
  background: var(--charcoal); color: var(--blush-90);
  padding: 88px 0 40px;
  border-top: 1px solid rgba(138,158,140,0.30);
  overflow: hidden;
}
/* Subtle arch watermark in footer */
.footer::before {
  content: "";
  position: absolute; right: 0; bottom: 0;
  width: 50%; height: 80%;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cg fill='none' stroke='%23F5EDE3' stroke-width='1.5'%3E%3Cellipse cx='200' cy='400' rx='120' ry='80'/%3E%3Cellipse cx='200' cy='400' rx='160' ry='110'/%3E%3Cellipse cx='200' cy='400' rx='200' ry='140'/%3E%3Cellipse cx='200' cy='400' rx='240' ry='170'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat; background-position: right bottom;
  opacity: 0.04; pointer-events: none; z-index: 0;
}
.footer > .wrap { position: relative; z-index: 1; }
.footer-brand {
  text-align: center; margin-bottom: 52px;
}
.footer-name {
  font-family: var(--font-heading); font-style: italic;
  font-size: clamp(28px, 3.5vw, 42px); font-weight: 400;
  color: var(--blush); letter-spacing: 0.02em; margin: 0 0 6px;
}
.footer-tagline {
  font-family: var(--font-script);
  font-size: clamp(18px, 2vw, 26px);
  color: var(--terracotta); letter-spacing: 0.02em;
}
.footer-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; padding-bottom: 36px;
  border-bottom: 1px solid rgba(138,158,140,0.20);
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; } }
.footer-grid h5 {
  font-family: var(--font-body); font-weight: 600;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sage); margin: 0 0 14px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: 14px; }
.footer-grid li a { color: var(--blush-90); }
.footer-grid li a:hover { color: var(--terracotta); }
.footer-copy {
  padding-top: 28px; text-align: center;
  font-family: var(--font-body); font-size: 13px;
  letter-spacing: 0.02em; color: rgba(245,237,227,0.45);
}
.footer-copy .italic-quote {
  display: block; margin-bottom: 10px;
  font-family: var(--font-script);
  font-size: clamp(18px, 2vw, 24px);
  color: var(--terracotta);
}

/* ── Hero — full-bleed, blush background, arch motif ─────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  min-height: calc(100svh - 76px);
  background: var(--blush);
  color: var(--charcoal);
  display: flex; align-items: center;
  overflow: hidden;
}
/* Paper-grain on hero */
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.60 0 0 0 0 0.40 0 0 0 0 0.25 0 0 0 0.07 0'/%3E%3C/filter%3E%3Crect width='320' height='320' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat; pointer-events: none; z-index: 1;
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--max-width);
  margin: 0 auto; padding: 64px var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  .hero-blob { order: -1; margin: 0 auto; max-width: 320px; }
}
.hero-text { max-width: 520px; }
@media (max-width: 900px) { .hero-text { max-width: 100%; } }

.hero-eyebrow { margin-bottom: 12px; }
.hero-h1 {
  font-family: var(--font-heading); font-weight: 300;
  font-size: clamp(40px, 6.5vw, 80px);
  line-height: 1.05; letter-spacing: 0.005em;
  color: var(--charcoal); margin: 0 0 10px;
}
.hero-script {
  font-family: var(--font-script);
  font-size: clamp(32px, 4.5vw, 60px);
  color: var(--terracotta); line-height: 1.1; margin-bottom: 14px;
  display: block;
}
.hero-meta {
  font-family: var(--font-body); font-weight: 600;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 36px;
}
.hero-ctas {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
@media (max-width: 900px) { .hero-ctas { justify-content: center; } }

/* Short hero — inner pages */
.hero-short {
  min-height: 380px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; background: var(--blush); color: var(--charcoal);
  overflow: hidden; position: relative;
}
.hero-short::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.60 0 0 0 0 0.40 0 0 0 0 0.25 0 0 0 0.07 0'/%3E%3C/filter%3E%3Crect width='320' height='320' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat; pointer-events: none; z-index: 1;
}
.hero-short .hero-content {
  position: relative; z-index: 2;
  max-width: 720px; padding: 80px var(--gutter) 72px;
}
.hero-short h1 {
  font-style: italic; font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 18px; color: var(--charcoal);
}
.hero-short .eyebrow { margin-bottom: 18px; display: inline-block; }
.hero-short .italic-quote { color: var(--charcoal-85); font-size: clamp(17px,1.5vw,22px); }
.hero-short .script { display: block; margin-bottom: 4px; }

/* ── Section chrome ──────────────────────────────────────────────────────── */
.section-head { margin-bottom: 72px; text-align: center; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 { max-width: 680px; margin: 0 auto; font-style: italic; }
.section-head .section-sub {
  font-size: clamp(16px, 1.4vw, 19px); color: var(--charcoal-60);
  margin-top: 14px; max-width: 56ch;
  margin-left: auto; margin-right: auto; line-height: 1.65;
}
.section-charcoal .section-head .section-sub { color: rgba(245,237,227,0.65); }

.ornament {
  display: inline-block; margin: 14px auto 0;
  color: var(--sage); font-size: 16px; letter-spacing: 0.6em;
  user-select: none;
}

.split-two {
  display: grid; grid-template-columns: 1fr 1px 1fr;
  gap: 64px; align-items: start;
}
.split-two > .vert-rule { background: var(--sage-25); align-self: stretch; }
@media (max-width: 880px) {
  .split-two { grid-template-columns: 1fr; gap: 56px; }
  .split-two > .vert-rule { width: 100%; height: 1px; }
}

/* ── Credentials strip (3-column, ivory bg) ─────────────────────────────── */
.creds-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 48px; padding: 64px var(--gutter);
  background: var(--ivory);
  border-top: 1px solid var(--sage-25);
  border-bottom: 1px solid var(--sage-25);
  max-width: 100%; text-align: center;
}
@media (max-width: 760px) { .creds-strip { grid-template-columns: 1fr; gap: 32px; } }

.cred-item {}
.cred-arch {
  width: 44px; height: 44px; margin: 0 auto 14px;
}
.cred-title {
  font-family: var(--font-heading); font-size: 20px; font-style: italic;
  color: var(--charcoal); margin: 0 0 8px;
}
.cred-desc { font-size: 14px; color: var(--charcoal-60); line-height: 1.6; }

/* ── About preview (charcoal bg) ─────────────────────────────────────────── */
.about-preview {
  background: var(--charcoal); color: var(--blush-90);
  padding: var(--section-padding) var(--gutter);
}
.about-preview-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
@media (max-width: 900px) {
  .about-preview-inner { grid-template-columns: 1fr; gap: 48px; }
}
.about-pull-quote {
  font-family: var(--font-script);
  font-size: clamp(32px, 4.5vw, 60px);
  color: var(--terracotta); line-height: 1.2;
  margin: 0 0 24px;
}
.about-preview-text p {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.75; color: rgba(245,237,227,0.8);
  margin-bottom: 1em;
}

/* ── Services preview cards ─────────────────────────────────────────────── */
.svc-preview-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 900px) { .svc-preview-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px) { .svc-preview-grid { grid-template-columns: 1fr; } }

.svc-preview-card {
  background: var(--white);
  border: 1.5px solid var(--sage-25);
  border-radius: 16px; padding: 24px;
  display: flex; flex-direction: column; gap: 8px;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.svc-preview-card:hover {
  border-color: var(--terracotta-60);
  box-shadow: 0 4px 24px rgba(196,113,74,0.10);
}
.svc-preview-card .svc-category {
  font-size: 10px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 4px;
}
.svc-preview-card .svc-name {
  font-family: var(--font-heading); font-size: 20px; font-style: italic;
  color: var(--charcoal); margin: 0;
}
.svc-preview-card .svc-duration { font-size: 13px; color: var(--charcoal-60); }
.svc-preview-card .svc-price-label {
  font-size: 13px; color: var(--terracotta); font-weight: 500; margin-top: auto; padding-top: 10px;
}

/* ── Gallery preview grid ────────────────────────────────────────────────── */
.gallery-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 16px; align-items: start;
}
@media (min-width: 640px)  { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

.gallery-card {
  position: relative; aspect-ratio: 3 / 4;
  background: var(--blush); border-radius: 16px;
  border: 1.5px solid var(--sage-25); overflow: hidden;
}
.gallery-card:nth-child(even) { aspect-ratio: 3 / 5; }
.gallery-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms ease;
}
.gallery-card:hover img { transform: scale(1.03); }
.gallery-card .gallery-label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 12px 16px;
  background: rgba(45,45,45,0.75);
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blush);
  backdrop-filter: blur(4px);
}
.gallery-empty {
  text-align: center; padding: 40px 20px;
  color: var(--sage);
  font-family: var(--font-heading); font-style: italic; font-size: 16px;
  background: var(--blush); border-radius: 16px;
  border: 1.5px solid var(--sage-25);
}
.gallery-placeholder {
  width: 100%; aspect-ratio: 3 / 4;
  background: var(--blush); border-radius: 16px;
  border: 1.5px solid var(--sage-25);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
}
.gallery-placeholder:nth-child(even) { aspect-ratio: 3 / 5; }
.gallery-placeholder .ph-label {
  font-family: var(--font-body); font-size: 11px;
  font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sage);
}
.gallery-placeholder .ph-note {
  font-family: var(--font-heading); font-style: italic;
  font-size: 13px; color: var(--charcoal-60);
}

/* ── Hair Collective section ──────────────────────────────────────────────── */
.collective-section {
  background: #F0E8D8; /* warm cream between blush and ivory */
  padding: var(--section-padding) 0;
}
.collective-inner {
  max-width: var(--max-width); margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
@media (max-width: 880px) { .collective-inner { grid-template-columns: 1fr; gap: 40px; } }
.collective-img {
  aspect-ratio: 4 / 3; background: var(--blush); border-radius: 20px;
  border: 1.5px solid var(--sage-25); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.collective-img::after {
  content: "Salon interior photo to come.";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-style: italic;
  font-size: 14px; color: var(--sage); padding: 20px; text-align: center;
}
.collective-img img {
  width: 100%; height: 100%; object-fit: cover;
}
/* When a real image is present, hide the CSS placeholder text */
.collective-img.has-photo::after { display: none; }

.collective-address {
  font-family: var(--font-body); font-size: 14px;
  color: var(--charcoal-60); margin: 14px 0 0;
}

/* ── Big CTA band — terracotta ───────────────────────────────────────────── */
.cta-band {
  background: var(--terracotta); color: var(--white);
  text-align: center; padding: var(--section-padding) 0;
}
.cta-band h2 { color: var(--white); font-style: italic; margin-bottom: 12px; }
.cta-band .lead {
  font-family: var(--font-heading); font-style: italic;
  color: rgba(255,255,255,0.85);
  font-size: clamp(17px, 1.5vw, 22px); margin-bottom: 36px;
}
.cta-band .phone {
  display: block; margin-top: 22px;
  font-family: var(--font-heading); font-style: italic;
  color: rgba(255,255,255,0.8); font-size: 18px;
  letter-spacing: 0.06em;
}

/* ── Contact strip — sage diamonds ──────────────────────────────────────── */
.contact-strip {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 24px;
  padding: 36px var(--gutter);
  background: var(--ivory);
  border-top: 1px solid var(--sage-25);
  border-bottom: 1px solid var(--sage-25);
}
.contact-strip .item {
  display: inline-flex; align-items: baseline; gap: 10px;
  font-family: var(--font-heading); font-style: italic;
  font-size: 17px; color: var(--charcoal);
}
.contact-strip .item .label {
  font-family: var(--font-body); font-style: normal;
  font-weight: 600; font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--sage);
}
.contact-strip .sep {
  width: 6px; height: 6px;
  background: var(--sage); opacity: 0.55;
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── Filter row (gallery page) ───────────────────────────────────────────── */
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 52px; }
.filter-row button {
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 9px 22px; border-radius: 100px;
  background: transparent; color: var(--charcoal-60);
  border: 1.5px solid var(--sage-25);
  transition: all 180ms ease; cursor: pointer;
}
.filter-row button:hover { color: var(--terracotta); border-color: var(--terracotta-60); }
.filter-row button.is-active {
  background: var(--terracotta); color: var(--white);
  border-color: var(--terracotta);
}

/* ── Messages ────────────────────────────────────────────────────────────── */
.msg {
  padding: 14px 18px; border-radius: 10px;
  font-family: var(--font-body); font-size: 15px; margin-top: 16px;
}
.msg.ok  {
  border: 1.5px solid rgba(138,158,140,0.5);
  color: #2a5c2e; background: rgba(138,158,140,0.10);
}
.msg.err {
  border: 1.5px solid rgba(160,48,48,0.4);
  color: #8b2020; background: rgba(160,48,48,0.06);
}

/* ── Utility ─────────────────────────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.center-text { text-align: center; }
.muted { color: var(--charcoal-60); }
.spacer-sm { height: 24px; }
.spacer-md { height: 48px; }
.spacer-lg { height: 80px; }

/* About page — image container */
.about-img {
  aspect-ratio: 4 / 5; background: var(--blush);
  border-radius: 20px; border: 1.5px solid var(--sage-25);
  position: relative; overflow: hidden;
}
.about-img::after {
  content: "Headshot photo to come.";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--sage); font-family: var(--font-heading);
  font-style: italic; font-size: 14px;
}
/* When a real image is present, hide the CSS placeholder text */
.about-img.has-photo::after { display: none; }
.about-img.has-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.about-split {
  display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center;
}
@media (min-width: 880px) { .about-split { grid-template-columns: 1fr 1fr; gap: 80px; } }

/* About in-action band — full-width photo strip */
.about-action-band {
  width: 100%; max-height: 520px; overflow: hidden;
  background: var(--charcoal);
}
.about-action-band img {
  width: 100%; height: 100%; max-height: 520px;
  object-fit: cover; object-position: center 30%;
  display: block;
}
