/* ============================================================
   INCH Hair Design — Design System
   Concept: "Measured & warm" — a warm village salon with a
   precision (measure-line) signature nodding to the name INCH.
   Palette: warm oat · chestnut ink · mulberry/wine · brass · blush
   Type: Newsreader (serif display) · Hanken Grotesk (body) · IBM Plex Mono (measure)
   ============================================================ */

/* ---- Tokens ---- */
:root {
  /* colour */
  --oat:        #F2EBE1;   /* base background (warm, not cream-cliché) */
  --oat-deep:   #E9DECF;   /* alternating section band */
  --cream-card: #FBF7F1;   /* raised cards */
  --ink:        #33261F;   /* primary text — chestnut espresso */
  --ink-soft:   #6B5A4E;   /* secondary text */
  --wine:       #7A3B52;   /* brand accent — mulberry */
  --wine-deep:  #5E2C40;   /* hover / pressed */
  --blush:      #E7C9BD;   /* soft accent */
  --blush-soft: #F1DAD0;
  --brass:      #B08D57;   /* metallic hairline / measure ticks */
  --line:       #D8C9B6;   /* soft divider */

  /* type */
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --mono:  "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* scale (measured rhythm) */
  --step--1: clamp(0.83rem, 0.79rem + 0.18vw, 0.94rem);
  --step-0:  clamp(1rem, 0.95rem + 0.25vw, 1.15rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
  --step-2:  clamp(1.5rem, 1.3rem + 0.9vw, 2.1rem);
  --step-3:  clamp(1.95rem, 1.6rem + 1.7vw, 3rem);
  --step-4:  clamp(2.5rem, 1.9rem + 3vw, 4.4rem);
  --step-5:  clamp(3.1rem, 2.1rem + 5vw, 6rem);

  --measure: 68ch;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 14px;
  --radius-lg: 26px;
  --shadow: 0 18px 40px -24px rgba(51, 38, 31, 0.45);
  --ease: cubic-bezier(0.4, 0.15, 0.15, 1);
}

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }
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 {
  margin: 0;
  background: var(--oat);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; display: block; height: auto; }
a { color: var(--wine); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--wine-deep); }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; margin: 0 0 0.4em; letter-spacing: -0.01em; }
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
p { margin: 0 0 1rem; max-width: var(--measure); }
em, .i { font-style: italic; }
strong { font-weight: 600; }
:focus-visible { outline: 2.5px solid var(--wine); outline-offset: 3px; border-radius: 3px; }

/* ---- Layout ---- */
.wrap { width: min(100% - 2 * var(--gutter), 1160px); margin-inline: auto; }
.wrap--narrow { width: min(100% - 2 * var(--gutter), 760px); margin-inline: auto; }
.section { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.section--band { background: var(--oat-deep); }
.section--wine { background: var(--wine); color: var(--blush-soft); }
.section--wine h2, .section--wine h3 { color: #fff; }
.stack > * + * { margin-top: 1rem; }
.grid { display: grid; gap: clamp(1.25rem, 3vw, 2.25rem); grid-template-columns: minmax(0, 1fr); }
@media (min-width: 720px) { .grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 900px) { .grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.center { text-align: center; margin-inline: auto; }
.center p { margin-inline: auto; }

/* ---- Signature: the measure-line ---- */
.measure {
  height: 13px;
  background:
    linear-gradient(var(--brass), var(--brass)) left bottom / 100% 1.5px no-repeat,
    repeating-linear-gradient(90deg, var(--brass) 0 1px, transparent 1px 26px) left bottom / 100% 7px no-repeat;
  opacity: 0.85;
}
.measure--short { width: 92px; }

/* eyebrow label (mono, with a leading tick) */
.eyebrow {
  font-family: var(--mono);
  font-size: var(--step--1);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  margin: 0 0 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--brass); display: inline-block; }
.section--wine .eyebrow { color: var(--blush); }
.section--wine .eyebrow::before { background: var(--blush); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-family: var(--sans); font-weight: 600; font-size: var(--step-0);
  padding: 0.85em 1.5em; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none; line-height: 1;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--wine); color: #fff; }
.btn--primary:hover { background: var(--wine-deep); color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--oat); }
.btn--light { background: #fff; color: var(--wine); }
.btn--light:hover { background: var(--blush-soft); color: var(--wine-deep); }
.btn .ico { width: 1.05em; height: 1.05em; }

/* ---- Header / nav ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--oat) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.85rem; }
.brand { display: inline-flex; align-items: baseline; gap: 0.55rem; text-decoration: none; color: var(--ink); }
.brand__mark { font-family: var(--serif); font-weight: 500; font-size: 1.6rem; letter-spacing: 0.02em; line-height: 1; }
.brand__mark b { color: var(--wine); font-weight: 600; }
.brand__tag { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-soft); }
.nav__links { display: flex; align-items: center; gap: clamp(0.9rem, 2vw, 1.8rem); list-style: none; margin: 0; padding: 0; }
.nav__links a { color: var(--ink); text-decoration: none; font-size: var(--step--1); letter-spacing: 0.02em; font-weight: 500; padding: 0.4rem 0; position: relative; }
.nav__links a[aria-current="page"] { color: var(--wine); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0; background: var(--brass); transition: width 0.25s var(--ease); }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { width: 100%; }
.nav__cta { display: inline-flex; }
.nav__toggle { display: none; background: none; border: 1.5px solid var(--ink); border-radius: 10px; padding: 0.5rem; cursor: pointer; color: var(--ink); }

/* Nav switches to the drawer at 920px: with nine links the desktop row
   starts wrapping just under ~885px, so hand over before it gets untidy. */
@media (max-width: 920px) {
  /* No backdrop-filter on mobile: it makes the header a containing block for
     the fixed drawer, trapping it at header height so the links spill over the
     page. Solid background keeps the sticky bar readable. */
  .site-header { background: var(--oat); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav__toggle { display: inline-flex; position: relative; z-index: 60; }
  .nav__menu {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); z-index: 55;
    background: var(--cream-card); border-left: 1px solid var(--line);
    display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start;
    gap: 0.4rem; padding: 5rem 2rem 2rem; overflow-y: auto; overscroll-behavior: contain;
    /* Fade in place (drawer stays at the right edge). A horizontal slide would
       park it off-screen and create a sideways-scroll on mobile. */
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0s linear 0.25s;
    box-shadow: var(--shadow);
  }
  .nav__menu[data-open="true"] {
    opacity: 1; visibility: visible; transform: translateY(0);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0s;
    box-shadow: -10px 0 60px rgba(20, 12, 16, 0.16), 0 0 0 100vmax rgba(20, 12, 16, 0.34);
  }
  .nav__links { flex-direction: column; align-items: flex-start; gap: 0.2rem; width: 100%; }
  .nav__links a { font-size: var(--step-1); padding: 0.6rem 0; width: 100%; }
  .nav__cta { margin-top: 1rem; align-self: stretch; justify-content: center; }
}

/* ---- Hero ---- */
.hero { position: relative; overflow: hidden; }
.hero__grid { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; padding-block: clamp(2.5rem, 6vw, 5rem); }
@media (min-width: 900px) { .hero__grid { grid-template-columns: 1.05fr 0.95fr; } }
.hero__title { font-size: var(--step-5); margin-bottom: 0.5rem; }
.hero__title em { color: var(--wine); }
.hero__lead { font-size: var(--step-1); color: var(--ink-soft); max-width: 42ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; align-items: center; }
.hero__meta { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: 1.5rem 2.2rem; font-family: var(--mono); font-size: var(--step--1); color: var(--ink-soft); }
.hero__meta b { color: var(--ink); font-weight: 600; }

/* ---- Figure / image placeholders (clearly labelled, swappable) ---- */
.ph {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background:
    radial-gradient(120% 90% at 15% 10%, var(--blush-soft), transparent 55%),
    linear-gradient(150deg, var(--blush) 0%, var(--oat-deep) 55%, #d9c3a6 100%);
  border: 1px solid var(--line);
  display: grid; place-items: center; text-align: center;
  color: var(--ink); min-height: 220px; aspect-ratio: 4 / 5; max-width: 100%;
}
.ph--wide { aspect-ratio: 16 / 10; }
.ph--square { aspect-ratio: 1 / 1; }
.ph--tall { aspect-ratio: 3 / 4; }
.ph__label { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); padding: 0.4em 0.9em; background: rgba(251, 247, 241, 0.75); border-radius: 999px; border: 1px solid var(--line); }
.ph__icon { font-size: 1.7rem; margin-bottom: 0.5rem; opacity: 0.55; }

/* ---- Cards ---- */
.card {
  background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.3rem, 3vw, 1.9rem); box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card--hover:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -26px rgba(51,38,31,0.5); }
.card h3 { margin-top: 0.3rem; }

/* service list (measured, mono prices) */
.svc { list-style: none; margin: 0; padding: 0; }
.svc li { display: flex; align-items: baseline; gap: 0.75rem; padding: 0.9rem 0; border-bottom: 1px dashed var(--line); }
.svc li:last-child { border-bottom: 0; }
.svc__name { font-family: var(--serif); font-size: var(--step-1); font-weight: 500; }
.svc__desc { color: var(--ink-soft); font-size: var(--step--1); }
.svc__dots { flex: 1; border-bottom: 1.5px dotted var(--line); transform: translateY(-4px); min-width: 20px; }
.svc__price { font-family: var(--mono); color: var(--wine); font-weight: 500; white-space: nowrap; }
.svc__dur { font-family: var(--mono); font-size: var(--step--1); color: var(--ink-soft); }

/* team */
.member { text-align: center; min-width: 0; }
.member .ph { aspect-ratio: 1 / 1; border-radius: 50%; max-width: min(220px, 42vw); margin: 0 auto 1.1rem; }
.member__role { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--wine); }
.member h3 { font-size: var(--step-1); margin: 0.3rem 0 0.4rem; }

/* gallery */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
@media (min-width: 720px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
.gallery .ph { aspect-ratio: 1 / 1; min-height: 0; border-radius: var(--radius); }
.beforeafter { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; border-radius: var(--radius); overflow: hidden; }
.beforeafter .ph { border-radius: 0; margin: 0; }
.tag { position: absolute; top: 0.7rem; left: 0.7rem; z-index: 2; font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; background: var(--ink); color: var(--oat); padding: 0.25em 0.7em; border-radius: 999px; }

/* ---- FAQ (accordion) ---- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.3rem 2.5rem 1.3rem 0; position: relative;
  font-family: var(--serif); font-size: var(--step-1); color: var(--ink); font-weight: 500;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0.2rem; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-size: 1.6rem; color: var(--wine); transition: transform 0.25s var(--ease);
}
.faq details[open] summary::after { content: "\2013"; }
.faq details > *:not(summary) { padding-bottom: 1.3rem; }
.faq p { color: var(--ink-soft); margin-bottom: 0.6rem; }

/* ---- Forms ---- */
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.field label { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: var(--step-0); color: var(--ink);
  background: var(--cream-card); border: 1.5px solid var(--line); border-radius: 10px; padding: 0.75em 0.9em; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--wine); outline: none; }
.field textarea { min-height: 130px; resize: vertical; }

/* ---- Info / contact strip ---- */
.info { display: grid; gap: 1.5rem; }
@media (min-width: 720px) { .info { grid-template-columns: repeat(3, 1fr); } }
.info__item h4 { font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--wine); margin-bottom: 0.4rem; }
.info__item p { color: var(--ink-soft); margin: 0; }
.info__item a { color: var(--ink); font-weight: 500; }

/* ---- Callout band ---- */
.callout { text-align: center; }
.callout h2 { font-size: var(--step-4); }
.callout .btn { margin-top: 0.5rem; }

/* ---- Footer ---- */
.site-footer { background: var(--ink); color: var(--oat); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.site-footer a { color: var(--blush); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer__grid { display: grid; gap: 2rem; }
@media (min-width: 720px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer__brand .brand__mark { color: var(--oat); font-size: 1.9rem; }
.footer__brand .brand__mark b { color: var(--blush); }
.footer h4 { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blush); margin-bottom: 0.9rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.footer__bottom { border-top: 1px solid rgba(231,201,189,0.2); margin-top: 2.5rem; padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; justify-content: space-between; font-size: var(--step--1); color: #cbb9ab; }
.footer__bottom .mono { font-family: var(--mono); letter-spacing: 0.04em; }

/* ---- Demo banner (labels the whole preview honestly) ---- */
.demo-note {
  background: var(--wine); color: var(--blush-soft); text-align: center;
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.06em; padding: 0.5rem 1rem;
}
.demo-note b { color: #fff; }

/* ---- Page hero (interior pages) ---- */
.page-hero { padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 2.5rem); }
.page-hero h1 { font-size: var(--step-4); max-width: 16ch; }
.page-hero p { font-size: var(--step-1); color: var(--ink-soft); max-width: 52ch; }

/* ---- Reveal on scroll ---- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---- Utilities ---- */
.lead { font-size: var(--step-1); color: var(--ink-soft); }
.muted { color: var(--ink-soft); }
.mono { font-family: var(--mono); }
.pill { display: inline-block; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--wine); background: var(--blush-soft); border: 1px solid var(--blush); padding: 0.3em 0.8em; border-radius: 999px; }
.note { font-size: var(--step--1); color: var(--ink-soft); font-style: italic; }
.skip { position: absolute; left: -999px; top: 0; background: var(--wine); color: #fff; padding: 0.7rem 1.2rem; border-radius: 0 0 10px 0; z-index: 100; }
.skip:focus { left: 0; }
.divider { height: 1px; background: var(--line); border: 0; margin-block: clamp(2rem, 5vw, 3.5rem); }

/* ---- Real photos dropped into the labelled placeholders ---- */
.ph > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ph.is-photo { background: var(--ink); }
figcaption.shot-cap { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin-top: 0.5rem; }

/* ---- Meet the Staff: stylist cards double as tabs + work galleries ---- */
.people-grid { display: grid; gap: clamp(1.1rem, 3vw, 2rem); grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 820px) { .people-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.stylists { display: grid; gap: clamp(0.9rem, 2.2vw, 1.5rem); grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: clamp(1.5rem, 4vw, 2.5rem); }
@media (min-width: 800px) { .stylists { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.stylist-cell { min-width: 0; }
.stylist {
  appearance: none; font: inherit; color: inherit; text-align: center; cursor: pointer;
  background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.1rem, 3vw, 1.6rem) 1rem 1.25rem; display: flex; flex-direction: column; align-items: center;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}
.stylist:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
/* Non-interactive team card (front of house) — same look, no tab behaviour. */
.stylist--static { cursor: default; }
.stylist--static:hover { transform: none; box-shadow: none; }
.stylist[aria-selected="true"] { border-color: var(--wine); box-shadow: 0 0 0 1.5px var(--wine), var(--shadow); }
.stylist .avatar { width: clamp(86px, 22vw, 116px); aspect-ratio: 1 / 1; border-radius: 50%; min-height: 0; margin: 0 0 0.85rem; }
.stylist__role { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--wine); }
/* Tighten the role label on the narrowest screens so two-word roles
   ("Stylist Assistant") stay on one line and all cards match height. */
@media (max-width: 460px) { .stylist__role { font-size: 0.6rem; letter-spacing: 0.08em; } }
.stylist__name { font-family: var(--serif); font-size: var(--step-1); font-weight: 500; margin: 0.12rem 0 0.2rem; line-height: 1.1; }
.stylist__spec { color: var(--ink-soft); font-size: var(--step--1); line-height: 1.4; }
.stylist__cue { margin-top: 0.75rem; font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.stylist[aria-selected="true"] .stylist__cue { color: var(--wine); }
/* Each card = tab button (fills the cell) + a direct Instagram link below it */
.stylist-cell { display: flex; flex-direction: column; }
.stylist-cell > .stylist { flex: 1 1 auto; }
/* Every cell reserves the same two-line slot under the card — whether the handle
   wraps, fits on one line, or the card has no handle at all (support team). Without
   it the cards in a row end at different heights. */
.stylist__ig { min-height: 2.082rem; }
.stylist-cell:not(:has(.stylist__ig))::after {
  content: ""; display: block; margin-top: 0.6rem; min-height: 2.082rem;
}
.stylist__ig, .member__ig {
  display: inline-block; align-self: center; margin-top: 0.6rem; padding: 0.15rem 0.3rem;
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.05em;
  color: var(--wine); text-decoration: none; border-radius: 6px;
  max-width: 100%; overflow-wrap: anywhere; line-height: 1.35;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.stylist__ig:hover, .member__ig:hover, .stylist__ig:focus-visible, .member__ig:focus-visible { text-decoration: underline; }
.member__ig { margin-top: 0.5rem; }

.stylist-panel { margin-top: clamp(1.8rem, 4vw, 2.8rem); scroll-margin-top: 90px; }
.stylist-panel:focus-visible { outline: none; }
.stylist-panel__head { margin-bottom: 1.3rem; }
.stylist-panel__head h3 { margin: 0 0 0.2rem; }
.stylist-panel__head .handle { font-family: var(--mono); font-size: var(--step--1); letter-spacing: 0.04em; color: var(--ink-soft); }
.cta-tile { aspect-ratio: 1 / 1; min-height: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 0.5rem; padding: 1rem; background: var(--cream-card); border: 1px dashed var(--brass); border-radius: var(--radius); text-decoration: none; color: var(--ink-soft); transition: border-color 0.25s var(--ease), color 0.25s var(--ease); }
.cta-tile:hover { border-style: solid; border-color: var(--wine); color: var(--wine); }
.cta-tile__k { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--wine); }
.cta-tile span:last-child { font-size: var(--step--1); line-height: 1.4; }

/* ============================================================
   Blog (V2 only)
   ============================================================ */
.post-grid { display: grid; gap: clamp(1.25rem, 3vw, 2rem); }
@media (min-width: 700px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .post-grid { grid-template-columns: repeat(3, 1fr); } }
.post-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.post-card .ph { border-radius: 0; aspect-ratio: 16 / 10; min-height: 0; }
.post-card__body { padding: clamp(1.1rem, 3vw, 1.5rem); display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.post-card h3 { font-size: var(--step-1); margin: 0.1rem 0; }
.post-card p { color: var(--ink-soft); font-size: var(--step--1); margin: 0; }
.post-card__more { margin-top: auto; font-weight: 600; color: var(--wine); text-decoration: none; display: inline-flex; align-items: center; gap: 0.4em; padding-top: 0.6rem; }
.post-card__more:hover { gap: 0.7em; }
.post-meta { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: center; }
.post-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--brass); display: inline-block; }

/* Featured post (blog index) */
.post-feature { display: grid; gap: clamp(1.25rem, 4vw, 2.5rem); align-items: center; }
@media (min-width: 860px) { .post-feature { grid-template-columns: 1.1fr 0.9fr; } }
.post-feature .ph { aspect-ratio: 16 / 11; }

/* Article body */
.prose { max-width: 68ch; margin-inline: auto; }
.prose > * { max-width: none; }
.prose p { font-size: var(--step-0); color: var(--ink); line-height: 1.75; margin-bottom: 1.15rem; }
.prose h2 { font-size: var(--step-2); margin: 2.4rem 0 0.8rem; }
.prose h3 { font-size: var(--step-1); margin: 1.8rem 0 0.6rem; }
.prose ul, .prose ol { padding-left: 1.3rem; margin: 0 0 1.2rem; color: var(--ink); }
.prose li { margin-bottom: 0.55rem; line-height: 1.7; }
.prose blockquote { border-left: 3px solid var(--brass); padding: 0.2rem 0 0.2rem 1.3rem; margin: 1.8rem 0; font-family: var(--serif); font-style: italic; font-size: var(--step-1); color: var(--wine-deep); }
.prose a { color: var(--wine); font-weight: 500; }
.prose strong { color: var(--ink); }
.article__hero .ph { aspect-ratio: 16 / 8; margin-top: 1.5rem; }
.article__foot { border-top: 1px solid var(--line); margin-top: 2.5rem; padding-top: 1.5rem; }
