/* =====================================================================
   DeLana's A Cut Above — Design System
   "Boutique noir": charcoal + black-&-white damask + hot pink + sign navy.
   Palette sourced from the salon business card (black/damask/magenta) and
   the storefront sign (navy plaque, white script). Logo recreated in SVG.
   Mobile-first. WCAG 2.2 AA targets.
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Color */
  --pine:        #1c1720;   /* near-black — headings, dark bands, brand ink */
  --pine-deep:   #100c14;   /* deepest black — footer, announce */
  --pine-soft:   #3a3040;   /* muted charcoal-plum */
  --ink:         #241f29;   /* body text */
  --ink-soft:    #5c5563;   /* muted body */
  --sand:        #f7f2ec;   /* warm cream page bg */
  --shell:       #fdfaf6;   /* lighter cream */
  --white:       #ffffff;
  --honey:       #d81e6a;   /* HOT PINK — primary accent (business card) */
  --honey-deep:  #b0155a;   /* AA-safe pink for text on light */
  --clay:        #2e3a54;   /* SIGN NAVY — secondary accent / logo plaque */
  --navy:        #2e3a54;
  --navy-deep:   #232c42;
  --line:        rgba(28, 23, 32, 0.14);
  --line-strong: rgba(28, 23, 32, 0.26);
  --shadow:      0 18px 44px -28px rgba(16, 12, 20, 0.6);
  --shadow-sm:   0 8px 22px -18px rgba(16, 12, 20, 0.5);

  /* Type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --script: "Yellowtail", "Segoe Script", cursive;
  --serif-accent: "Cormorant Garamond", Georgia, serif;
  --body: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Space + shape */
  --container: 1140px;
  --container-narrow: 780px;
  --radius: 14px;
  --radius-lg: 26px;
  --radius-pill: 999px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --section-y: clamp(3.5rem, 8vw, 6.5rem);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--pine); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--honey-deep); }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 500; line-height: 1.08; color: var(--pine); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.35rem, 1.6rem + 3.4vw, 4rem); }
h2 { font-size: clamp(1.9rem, 1.4rem + 1.9vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 1.1rem + 0.8vw, 1.65rem); }
h4 { font-size: 1.12rem; }

p { max-width: 68ch; }

/* ---------- Skip link + focus ---------- */
.skip-link {
  position: absolute; left: 1rem; top: -3.5rem; z-index: 1000;
  background: var(--pine); color: var(--white); padding: 0.7rem 1.1rem;
  border-radius: 0 0 var(--radius) var(--radius); font-weight: 600; transition: top 0.18s ease;
}
.skip-link:focus { top: 0; color: var(--white); }

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

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container.narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--section-y); }
.section.tight { padding-block: clamp(2.25rem, 5vw, 3.5rem); }
.bg-shell { background: var(--shell); }
.bg-pine { background: var(--pine); color: #e7efe9; }

.stack > * + * { margin-top: 1.1rem; }
.center { text-align: center; }
.measure { max-width: 60ch; }
.center .measure, .center p { margin-inline: auto; }

/* ---------- Eyebrow + signature stroke ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--body); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--honey-deep);
}
.eyebrow::before {
  content: ""; width: 30px; height: 3px; border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--honey), var(--pine-soft));
}
.eyebrow.center-mark { justify-content: center; }

/* Signature balayage stroke — a painted underline under a keyword */
.stroke-word { position: relative; white-space: nowrap; }
.stroke-word::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: -0.14em; height: 0.36em;
  background: linear-gradient(90deg, rgba(216,30,106,0.95), rgba(46,58,84,0.9));
  border-radius: var(--radius-pill);
  transform: rotate(-0.6deg);
  -webkit-mask: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  z-index: -1;
}

/* Painted divider */
.stroke-divider { width: 88px; height: 4px; border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--honey), var(--pine-soft)); border: 0; }
.center .stroke-divider { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--body); font-weight: 700; font-size: 0.98rem; line-height: 1;
  padding: 0.95rem 1.55rem; border-radius: var(--radius-pill); border: 2px solid transparent;
  cursor: pointer; text-decoration: none; transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  min-height: 48px;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--honey); color: var(--pine-deep); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: #e83b81; color: var(--pine-deep); }
.btn-pine { background: var(--pine); color: var(--white); }
.btn-pine:hover { background: var(--pine-deep); color: var(--white); }
.btn-outline { background: transparent; color: var(--pine); border-color: var(--line-strong); }
.btn-outline:hover { background: var(--pine); color: var(--white); border-color: var(--pine); }
.btn-ghost-light { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-ghost-light:hover { background: var(--white); color: var(--pine); }
.btn-lg { padding: 1.1rem 1.9rem; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.center .btn-row { justify-content: center; }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--pine-deep); color: #f2ede2; font-size: 0.9rem;
  padding: 0.6rem var(--gutter); display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  text-align: center; position: relative;
}
.announce a { color: var(--honey); font-weight: 700; }
.announce[hidden] { display: none; }
.announce__close {
  position: absolute; right: 0.65rem; top: 50%; transform: translateY(-50%);
  background: transparent; border: 0; color: #f2ede2; font-size: 1.35rem; line-height: 1;
  width: 34px; height: 34px; border-radius: 50%; cursor: pointer;
}
.announce__close:hover { background: rgba(255,255,255,0.14); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 90; background: rgba(246,241,232,0.92);
  backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; gap: 1rem; min-height: 74px; }
.brand { display: inline-flex; align-items: baseline; gap: 0.15rem; font-family: var(--display);
  font-weight: 600; font-size: 1.28rem; color: var(--pine); text-decoration: none; line-height: 1; }
.brand span { color: var(--honey-deep); }
.brand small { display: block; font-family: var(--body); font-weight: 600; font-size: 0.62rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft); }
.brand__lock { display: flex; flex-direction: column; gap: 0.2rem; }

.primary-nav { margin-left: auto; }
.primary-nav ul { list-style: none; display: flex; align-items: center; gap: clamp(0.9rem, 1.6vw, 1.6rem); padding: 0; }
.primary-nav a { font-family: var(--body); font-weight: 600; font-size: 0.96rem; color: var(--ink); text-decoration: none; padding: 0.4rem 0; position: relative; }
.primary-nav a[aria-current="page"] { color: var(--pine); }
.primary-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px; background: var(--honey); border-radius: 2px; transition: right 0.22s ease; }
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 0.7rem; margin-left: 1rem; }
.header-call { display: none; font-weight: 700; color: var(--pine); text-decoration: none; font-size: 0.95rem; }
.header-call:hover { color: var(--honey-deep); }

.nav-toggle { display: inline-flex; margin-left: auto; align-items: center; justify-content: center;
  width: 46px; height: 46px; border: 1px solid var(--line-strong); border-radius: 12px; background: var(--white); cursor: pointer; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--pine); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; position: relative; }
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .primary-nav {
    position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px); background: var(--shell);
    transform: translateX(100%); transition: transform 0.28s ease; padding: 5.5rem 1.6rem 2rem;
    box-shadow: -20px 0 60px -30px rgba(0,0,0,0.5); overflow-y: auto; z-index: 95;
  }
  .primary-nav.open { transform: translateX(0); }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: 0.25rem; }
  .primary-nav a { display: block; padding: 0.85rem 0.4rem; border-bottom: 1px solid var(--line); font-size: 1.08rem; }
  .primary-nav a::after { display: none; }
  .primary-nav .nav-social { margin-top: 1.2rem; display: flex; gap: 1rem; }
  /* z-index must stay BELOW the header (90). The header is a stacking context,
     so the nav panel's z-index (95) is local to it; a backdrop above 90 would
     paint over the whole header — panel included — and swallow every tap. */
  .nav-backdrop { position: fixed; inset: 0; background: rgba(16,12,20,0.45); opacity: 0; visibility: hidden; transition: opacity 0.25s ease; z-index: 85; }
  .nav-backdrop.show { opacity: 1; visibility: visible; }
}
@media (min-width: 901px) {
  .nav-toggle { display: none; }
  .header-call { display: inline-flex; }
  .nav-backdrop { display: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background:
  radial-gradient(120% 90% at 12% 0%, rgba(216,30,106,0.16), transparent 55%),
  radial-gradient(120% 120% at 100% 20%, rgba(46,58,84,0.14), transparent 50%),
  var(--sand); }
.hero__inner { display: grid; gap: clamp(2rem, 5vw, 3.5rem); padding-block: clamp(3rem, 7vw, 5.5rem);
  grid-template-columns: 1fr; align-items: center; }
.hero__eyebrow { margin-bottom: 1.1rem; }
.hero h1 { max-width: 15ch; }
.hero__lede { font-size: clamp(1.1rem, 1rem + 0.5vw, 1.3rem); color: var(--ink-soft); max-width: 46ch; margin-top: 1.3rem; }
.hero__cta { margin-top: 2rem; }
.hero__loc { margin-top: 1.6rem; display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; color: var(--pine); font-size: 0.95rem; }
.hero__loc svg { width: 18px; height: 18px; }

/* Painterly panel used in place of (missing) real photography */
.hero__art {
  position: relative; border-radius: var(--radius-lg); min-height: 340px; overflow: hidden;
  background: linear-gradient(160deg, var(--pine) 0%, var(--pine-soft) 42%, var(--honey) 130%);
  box-shadow: var(--shadow); display: grid; place-items: center; padding: 2rem;
}
.hero__art::before { content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 45% at 30% 25%, rgba(255,255,255,0.22), transparent 60%),
              radial-gradient(50% 40% at 80% 90%, rgba(216,30,106,0.5), transparent 55%); }
.hero__art-quote { position: relative; color: #f7f2e8; font-family: var(--display); font-size: clamp(1.4rem, 1.1rem + 1.4vw, 2rem);
  line-height: 1.25; text-align: center; max-width: 22ch; }
.hero__art-quote cite { display: block; font-family: var(--body); font-style: normal; font-weight: 600;
  font-size: 0.85rem; letter-spacing: 0.06em; margin-top: 1.1rem; color: rgba(247,242,232,0.85); }
.hero__art-badge { position: absolute; top: 1.1rem; right: 1.1rem; background: rgba(251,248,242,0.95);
  color: var(--pine); border-radius: var(--radius-pill); padding: 0.4rem 0.85rem; font-weight: 700; font-size: 0.82rem;
  display: inline-flex; align-items: center; gap: 0.35rem; }
.hero__art-badge b { color: var(--honey-deep); }

@media (min-width: 901px) {
  .hero__inner { grid-template-columns: 1.05fr 0.95fr; }
  .hero__art { min-height: 440px; }
}

/* ---------- Trust strip ---------- */
.trust { border-block: 1px solid var(--line); background: var(--shell); }
.trust ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.4rem 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.trust li { display: flex; align-items: center; gap: 0.6rem; font-weight: 600; color: var(--pine);
  padding-block: 0.9rem; font-size: 0.98rem; }
.trust li svg { width: 20px; height: 20px; color: var(--honey-deep); flex: none; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: clamp(1rem, 2.5vw, 1.6rem); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-sm); position: relative;
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card.link-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--ink-soft); font-size: 0.98rem; }

/* Service card */
.service-card { display: flex; flex-direction: column; }
.service-card .card__icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(216,30,106,0.22), rgba(46,58,84,0.16)); color: var(--pine); margin-bottom: 1rem; }
.service-card .card__icon svg { width: 24px; height: 24px; }
.service-card .card__link { margin-top: auto; padding-top: 1rem; font-weight: 700; color: var(--pine); text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.4rem; }
.service-card .card__link svg { width: 16px; height: 16px; transition: transform 0.18s ease; }
.service-card:hover .card__link svg { transform: translateX(4px); }
.service-card a.stretched::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }
.price-from { font-weight: 700; color: var(--honey-deep); font-size: 0.9rem; }

/* Stylist card */
.stylist-card { text-align: center; }
.stylist-card .avatar { width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 1rem;
  background: linear-gradient(150deg, var(--pine-soft), var(--honey)); color: var(--white);
  display: grid; place-items: center; font-family: var(--display); font-size: 1.9rem; }
.stylist-card .role { color: var(--honey-deep); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }
.tag { display: inline-block; font-size: 0.78rem; font-weight: 600; padding: 0.3rem 0.7rem; border-radius: var(--radius-pill);
  background: rgba(28,23,32,0.08); color: var(--pine); margin: 0.25rem 0.15rem 0; }
.tag.verify { background: rgba(46,58,84,0.14); color: var(--clay); }

/* Review card */
.review-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.review-card .stars { color: var(--honey); letter-spacing: 0.1em; font-size: 1rem; }
.review-card blockquote { font-family: var(--display); font-size: 1.12rem; line-height: 1.45; color: var(--ink); margin: 0.7rem 0 1rem; }
.review-card .review-meta { font-weight: 700; color: var(--pine); font-size: 0.92rem; }
.review-card .review-src { color: var(--ink-soft); font-weight: 500; font-size: 0.82rem; }

/* ---------- Steps ---------- */
.steps { list-style: none; padding: 0; counter-reset: step; display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.steps li { counter-increment: step; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem 1.4rem 1.4rem; position: relative; }
.steps li::before { content: counter(step); font-family: var(--display); font-size: 1.05rem; font-weight: 600; color: var(--pine);
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 0.8rem;
  background: linear-gradient(150deg, rgba(216,30,106,0.3), rgba(46,58,84,0.16)); border: 1px solid var(--line); }
.steps li h3 { font-size: 1.12rem; margin-bottom: 0.35rem; }
.steps li p { font-size: 0.94rem; color: var(--ink-soft); }

/* ---------- Pricing table ---------- */
.price-note { background: rgba(216,30,106,0.12); border: 1px solid rgba(216,30,106,0.4); border-radius: var(--radius);
  padding: 1.1rem 1.3rem; font-size: 0.96rem; color: var(--ink); }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
table.price { width: 100%; border-collapse: collapse; min-width: 560px; }
table.price caption { text-align: left; padding: 1rem 1.2rem 0; font-family: var(--display); font-size: 1.25rem; color: var(--pine); }
table.price th, table.price td { text-align: left; padding: 0.85rem 1.2rem; border-bottom: 1px solid var(--line); font-size: 0.96rem; }
table.price thead th { font-family: var(--body); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); background: var(--shell); }
table.price td.num { text-align: right; white-space: nowrap; font-weight: 600; }
table.price tbody tr:last-child td { border-bottom: 0; }

/* ---------- FAQ (details/summary) ---------- */
.faq-list { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: var(--shadow-sm); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 0; }
.faq-item summary { list-style: none; cursor: pointer; padding: 1.2rem 1.3rem; font-weight: 700; color: var(--pine);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-size: 1.02rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--display); font-size: 1.6rem; line-height: 1; color: var(--honey-deep); transition: transform 0.2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 1.3rem 1.3rem; color: var(--ink-soft); }
.faq-item .faq-body p { font-size: 0.98rem; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.1rem; }
.form .field { display: grid; gap: 0.35rem; }
.form .row { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form .row.two { grid-template-columns: 1fr 1fr; } }
.form label { font-weight: 600; font-size: 0.92rem; color: var(--pine); }
.form label .req { color: var(--clay); }
.form input, .form select, .form textarea {
  font-family: var(--body); font-size: 1rem; color: var(--ink); background: var(--white);
  border: 1px solid var(--line-strong); border-radius: 12px; padding: 0.8rem 0.9rem; width: 100%;
}
.form textarea { min-height: 130px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--pine); outline: none; box-shadow: 0 0 0 3px rgba(216,30,106,0.3); }
.form .hint { font-size: 0.82rem; color: var(--ink-soft); }
.form .check { display: flex; gap: 0.6rem; align-items: flex-start; }
.form .check input { width: auto; margin-top: 0.25rem; }
.form .check label { font-weight: 500; font-size: 0.92rem; color: var(--ink); }
.form-status { border-radius: 12px; padding: 0.9rem 1.1rem; font-weight: 600; font-size: 0.95rem; }
.form-status[hidden] { display: none; }
.form-status.ok { background: rgba(46,58,84,0.12); color: var(--pine); border: 1px solid rgba(46,58,84,0.3); }
.form-status.err { background: rgba(46,58,84,0.14); color: #9a1c3f; border: 1px solid rgba(46,58,84,0.4); }

/* ---------- Location block ---------- */
.location { display: grid; gap: clamp(1.5rem, 4vw, 2.5rem); grid-template-columns: 1fr; }
@media (min-width: 820px) { .location { grid-template-columns: 1fr 1fr; align-items: stretch; } }
.location .map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 320px; box-shadow: var(--shadow-sm); }
.location .map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }
.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.1rem; }
.info-list li { display: flex; gap: 0.85rem; }
.info-list svg { width: 22px; height: 22px; color: var(--honey-deep); flex: none; margin-top: 0.15rem; }
.info-list a { font-weight: 600; }
.info-list .label { display: block; font-weight: 700; color: var(--pine); font-size: 0.9rem; }

/* ---------- CTA band ---------- */
.cta-band { background:
  radial-gradient(90% 120% at 10% 0%, rgba(216,30,106,0.32), transparent 55%), var(--pine); color: #eef4f0; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(238,244,240,0.86); }

/* ---------- Gallery grid ---------- */
.gallery-grid { display: grid; gap: 0.9rem; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.gallery-item { position: relative; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  background: linear-gradient(150deg, var(--pine-soft), var(--honey)); color: var(--white); display: grid; place-items: end start; padding: 0.9rem; }
.gallery-item span { position: relative; font-weight: 600; font-size: 0.82rem; }
.placeholder-note { border: 1px dashed var(--line-strong); border-radius: var(--radius); padding: 1.1rem 1.3rem;
  background: rgba(255,255,255,0.6); color: var(--ink-soft); font-size: 0.92rem; }

/* ---------- Breadcrumbs ---------- */
.crumbs { padding-top: 1.3rem; font-size: 0.85rem; color: var(--ink-soft); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; padding: 0; margin: 0; }
.crumbs li::after { content: "/"; margin-left: 0.4rem; color: var(--line-strong); }
.crumbs li:last-child::after { content: ""; }
.crumbs a { color: var(--ink-soft); text-decoration: none; }
.crumbs a:hover { color: var(--pine); text-decoration: underline; }

/* ---------- Page header ---------- */
.page-head { background:
  radial-gradient(90% 120% at 90% 0%, rgba(216,30,106,0.16), transparent 55%), var(--shell);
  border-bottom: 1px solid var(--line); }
.page-head .container { padding-block: clamp(2.2rem, 5vw, 3.6rem); }
.page-head h1 { max-width: 20ch; }
.page-head p { color: var(--ink-soft); font-size: 1.1rem; margin-top: 1rem; }

/* ---------- Owner-verify callout ---------- */
.verify-note { background: rgba(46,58,84,0.1); border: 1px solid rgba(46,58,84,0.35); border-left-width: 4px;
  border-radius: 10px; padding: 0.85rem 1.1rem; font-size: 0.9rem; color: #243049; }
.verify-note strong { color: #1c2740; }

/* ---------- Footer ---------- */
.site-footer { background: var(--pine-deep); color: #cdd8d1; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.site-footer a { color: #cdd8d1; text-decoration: none; }
.site-footer a:hover { color: var(--honey); }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; } }
.footer-brand .brand { color: var(--white); }
.footer-brand .brand span { color: var(--honey); }
.footer-brand p { color: #a9b8af; font-size: 0.92rem; margin-top: 0.9rem; max-width: 34ch; }
.footer-col h4 { color: var(--white); font-family: var(--body); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.9rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; font-size: 0.94rem; }
.footer-contact li { display: flex; gap: 0.55rem; margin-bottom: 0.6rem; font-size: 0.94rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--honey); flex: none; margin-top: 0.15rem; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1rem; }
.footer-social a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: grid; place-items: center; }
.footer-social a:hover { background: rgba(255,255,255,0.1); border-color: var(--honey); }
.footer-social svg { width: 20px; height: 20px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 2.4rem; padding-top: 1.6rem;
  display: flex; flex-wrap: wrap; gap: 0.8rem 1.4rem; align-items: center; justify-content: space-between; font-size: 0.82rem; color: #93a49a; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 0.6rem 1.1rem; }

/* FluxGrid credit */
.fg-credit { display: flex; justify-content: center; margin-top: 1.5rem; }
.fg-credit a { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: #7f9188; text-decoration: none; transition: color 0.2s; }
.fg-credit a:hover { color: #fff; }
.fg-credit img { height: 20px; width: auto; }

/* ---------- Mobile sticky action bar ---------- */
.mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--pine); box-shadow: 0 -8px 24px -14px rgba(0,0,0,0.5); }
.mobile-bar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.2rem;
  color: #eef4f0; text-decoration: none; padding: 0.6rem 0.4rem; font-size: 0.74rem; font-weight: 600; min-height: 58px; }
.mobile-bar a + a { border-left: 1px solid rgba(255,255,255,0.12); }
.mobile-bar a.primary { background: var(--honey); color: var(--pine-deep); }
.mobile-bar svg { width: 20px; height: 20px; }
body { padding-bottom: 0; }
@media (max-width: 760px) { body { padding-bottom: 62px; } }
@media (min-width: 761px) { .mobile-bar { display: none; } }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 0.6rem; } .mt-2 { margin-top: 1.2rem; } .mt-3 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1.2rem; } .mb-3 { margin-bottom: 2rem; }
.lead { font-size: 1.15rem; color: var(--ink-soft); }
.small { font-size: 0.88rem; color: var(--ink-soft); }
.pill-list { list-style: none; padding: 0; margin: 0.5rem 0 0; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pill-list li { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 0.4rem 0.9rem; font-size: 0.88rem; font-weight: 600; color: var(--pine); }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.7rem; }
.check-list li { display: flex; gap: 0.65rem; align-items: flex-start; }
.check-list li::before { content: ""; width: 22px; height: 22px; flex: none; border-radius: 50%; margin-top: 0.1rem;
  background: rgba(46,58,84,0.14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232e3a54' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 14px no-repeat; }
.prose h2 { margin-top: 2.4rem; }
.prose h3 { margin-top: 1.8rem; }
.prose p, .prose ul, .prose ol { margin-top: 1rem; }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li { margin-top: 0.4rem; }
.two-col { display: grid; gap: clamp(1.5rem, 4vw, 3rem); grid-template-columns: 1fr; }
@media (min-width: 860px) { .two-col { grid-template-columns: 1fr 1fr; align-items: start; } }
.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; }

/* =====================================================================
   Boutique-noir enhancements — brand lockup, damask, photo panels
   (business-card design language: black damask + hot pink + navy sign)
   ===================================================================== */
:root { --damask-img: url("/assets/images/damask.svg"); }

/* ---------- Brand lockup (recreated "A Cut Above" wordmark) ---------- */
.brand { text-decoration: none; }
.brand__tag {
  display: inline-flex; flex-direction: column; align-items: center; line-height: 1;
  background: var(--white); color: var(--navy);
  padding: 0.42rem 1.1rem 0.5rem; border-radius: 12px;
  border: 1px solid rgba(46,58,84,0.18); box-shadow: 0 8px 20px -14px rgba(16,12,20,0.55);
}
.brand__kicker { font-family: var(--serif-accent); font-weight: 700; font-size: 0.6rem;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--honey-deep); }
.brand__script { font-family: var(--script); font-size: 1.7rem; color: var(--navy);
  line-height: 0.85; margin: 0.08rem 0 0.02rem; }
.brand__sub { font-family: var(--serif-accent); font-weight: 700; font-size: 0.56rem;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-soft); }
@media (max-width: 380px) { .brand__script { font-size: 1.45rem; } }

/* Footer brand tag sits on dark — keep white tag, it pops */
.footer-brand .brand__tag { box-shadow: 0 10px 30px -16px rgba(0,0,0,0.8); }

/* ---------- Damask dark bands ---------- */
.dark-damask { background-color: var(--pine); color: #efeaf0; position: relative; overflow: hidden; }
.cta-band, .bg-pine { position: relative; }
.cta-band::before, .bg-pine.damasked::before, .dark-damask::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: var(--damask-img) repeat; background-size: 190px auto; opacity: 0.06;
}
.cta-band > .container, .bg-pine.damasked > .container, .dark-damask > .container { position: relative; z-index: 1; }
.site-footer { position: relative; overflow: hidden; }
.site-footer::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: var(--damask-img) repeat; background-size: 190px auto; opacity: 0.05;
}
.site-footer .container { position: relative; z-index: 1; }

/* ---------- Photo panels (hero + about) ---------- */
.photo-panel { position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); background: var(--navy); min-height: 340px; }
.photo-panel img { width: 100%; height: 100%; object-fit: cover; min-height: 340px; }
.photo-panel .panel-badge { position: absolute; top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.95); color: var(--navy); border-radius: var(--radius-pill);
  padding: 0.42rem 0.9rem; font-weight: 700; font-size: 0.82rem; box-shadow: var(--shadow-sm);
  display: inline-flex; align-items: center; gap: 0.35rem; }
.photo-panel .panel-badge b { color: var(--honey-deep); }
.photo-panel .panel-cap { position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1.2rem 1rem; color: #fff; font-family: var(--script); font-size: 1.5rem;
  background: linear-gradient(to top, rgba(16,12,20,0.72), transparent); }
@media (min-width: 901px) { .photo-panel, .photo-panel img { min-height: 440px; } }

/* ---------- Gallery photos ---------- */
.gallery-item.has-photo { background: var(--navy); }
.gallery-item.has-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gallery-item.has-photo span { z-index: 1; background: rgba(16,12,20,0.6);
  padding: 0.32rem 0.6rem; border-radius: 8px; color: #fff; }

/* ---------- Section eyebrow gets a hot-pink underline accent ---------- */
.review-card .stars { color: var(--honey); }
.hero__art-badge b { color: var(--honey-deep); }

/* ---------- Header: subtle warmth so the white brand tag reads ---------- */
.site-header { background: rgba(253,250,246,0.9); }

/* nav-social belongs only in the mobile drawer, not the desktop bar */
@media (min-width: 901px) { .primary-nav .nav-social { display: none; } }

/* ---------- Team: photo stylist cards + group banner ---------- */
.stylist-card.has-portrait { padding-top: 0; overflow: hidden; text-align: center; }
.stylist-card .portrait { margin: 0 -1.6rem 1rem; aspect-ratio: 4/5; background: var(--navy); overflow: hidden; }
.stylist-card .portrait img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.stylist-card.has-portrait { padding: 0 1.6rem 1.6rem; }
.stylist-card.has-portrait .portrait { margin: 0 -1.6rem 1.1rem; }
.team-banner { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  background: var(--navy); margin-bottom: clamp(2rem,5vw,3rem); }
.team-banner img { width: 100%; height: auto; display: block; }

/* ---------- Mobile menu fix ----------
   .site-header uses backdrop-filter, which makes the header a containing block
   for position:fixed descendants — that trapped the slide-in nav panel inside
   the (short) header, so it rendered clipped with a transparent body. Drop the
   blur on mobile so the fixed panel positions against the viewport and fills it. */
@media (max-width: 900px) {
  .site-header { -webkit-backdrop-filter: none; backdrop-filter: none; }
}
