/* ------------------------------------------------------------------ fonts --
   Self-hosted AND subset to the exact characters this page renders (111 of them),
   which is the only reason self-hosting is worth doing here.

   Serving Google's stock `latin` files from our own origin was measurably WORSE
   than letting Google serve them: the faces total ~275KB, and moving them onto
   the same connection as the hero image pushed LCP 3.9s -> 4.9s. Subsetting cuts
   the same 8 faces to ~206KB and drops the third-party stylesheet from the
   critical path at the same time.

   No unicode-range: with an exact glyph set the latin / latin-ext split has
   nothing left to do, so it is gone along with the ten files it needed.
   ------------------------------------------------------------------------- */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('assets/fonts/cormorant-garamond-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url('assets/fonts/cormorant-garamond-300-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/cormorant-garamond-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/cormorant-garamond-400-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/cormorant-garamond-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/cormorant-garamond-500-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('assets/fonts/jost-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/jost-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/jost-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Kaushan Script';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/kaushan-script-400.woff2') format('woff2');
}


/* ==========================================================================
   ELAN + elle hair co. — elanandelle.com

   Palette is the client's: dark green, cream, gold. Everything visual is
   driven by the token block below — nothing else in this file hard-codes a
   brand color. Still outstanding: the real logo (the wordmark is set in
   type; see .wordmark) and photography.
   ========================================================================== */
:root {
    /* ---- type ------------------------------------------------------- */
    --display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --sans: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --script: 'Kaushan Script', 'Brush Script MT', cursive;

    /* ---- brand palette: dark green + cream + gold -------------------- *
     * Client-chosen, 2026-08-06. Two rules keep this readable:
     *   1. Gold is an ORNAMENT, not a button fill. Cream text on gold is
     *      2.8:1 — it fails. Primary actions are green (10.4:1).
     *   2. Gold as TEXT uses --gold-ink, never --gold. The lighter gold is
     *      for diamonds, rules and hairlines only.
     * Every pair below clears WCAG AA (4.5:1) on every surface it lands on. */
    --green: #24422f;         /* primary actions, CTA band                  */
    --green-deep: #16291f;    /* hover, footer                              */
    --gold: #b99653;          /* ornaments — diamonds, rules, underlines    */
    --gold-ink: #836520;      /* gold as small text (4.7:1 on paper-warm)   */
    --gold-soft: #efe6d2;     /* tinted fills — tags, blooms, policy box    */

    /* ink — near-blacks carry a green cast so they sit with the brand */
    --ink: #1c2a22;
    --ink-body: #46564c;
    --ink-muted: #626f67;

    /* paper — cream */
    --paper: #fbf7ee;
    --paper-warm: #f4eddf;
    --paper-deep: #eae0cb;
    --card: #fffdf8;
    --line: #e0d5be;
    --line-soft: #efe7d6;

    /* ---- geometry --------------------------------------------------- */
    --radius: 4px;
    --radius-lg: 8px;
    --radius-pill: 50px;

    --shadow-sm: 0 2px 10px rgba(28, 42, 34, 0.06);
    --shadow-md: 0 12px 30px rgba(28, 42, 34, 0.10);
    --shadow-lg: 0 26px 60px rgba(28, 42, 34, 0.16);

    --maxw: 1140px;
    --nav-h: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-h) + 16px);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 300;
    color: var(--ink-body);
    background: var(--paper);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; }

h1, h2, h3, h4 {
    font-family: var(--display);
    color: var(--ink);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0.005em;
}

/* Cormorant ships old-style figures by default, which turns "$100" into
   something closer to "$ıoo". Anywhere a number has to be read as a number,
   force lining figures. */
.lining-nums,
.mi-price,
.about-stats strong,
.hours-table {
    font-variant-numeric: lining-nums;
    font-feature-settings: 'lnum' 1;
}

a { color: var(--green); text-decoration: none; }

::selection { background: var(--green); color: var(--paper); }

:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 760px; }

section[id] { scroll-margin-top: var(--nav-h); }

/* --------------------------------------------------------------- shared */
.eyebrow {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-ink);
    margin-bottom: 0.9rem;
}
.eyebrow.on-dark { color: var(--gold-soft); }

.section-head { text-align: center; margin-bottom: 3.2rem; }
.section-head h2 {
    font-size: clamp(2.1rem, 5vw, 3.1rem);
    margin-bottom: 0.6rem;
}
.section-head p {
    max-width: 56ch;
    margin: 0 auto;
    color: var(--ink-muted);
}

/* A hairline flanked by a diamond — the one recurring ornament. */
.rule {
    width: 78px;
    height: 1px;
    background: var(--line);
    margin: 1.6rem auto 0;
    position: relative;
}
.rule::after {
    content: '';
    position: absolute;
    left: 50%; top: 50%;
    width: 6px; height: 6px;
    background: var(--gold);
    transform: translate(-50%, -50%) rotate(45deg);
}
.rule.left { margin-left: 0; margin-right: 0; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border: 1px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background .22s, color .22s, border-color .22s, transform .22s, box-shadow .22s;
    white-space: nowrap;
}
.btn-primary { background: var(--green); color: var(--paper); }
.btn-primary:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }
.btn-light { background: var(--paper); color: var(--green-deep); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-ghost-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-sm { padding: 0.7rem 1.4rem; font-size: 0.7rem; }

/* ------------------------------------------------------------- wordmark */
/* Text-set lockup standing in for the real logo. `ELAN` is the loud half,
   `elle` the quiet one — matches how the business writes its own name. */
.wordmark {
    display: inline-flex;
    align-items: baseline;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
    gap: 0.32em;
    font-family: var(--display);
    color: var(--ink);
    line-height: 1;
}
.wordmark .mk-elan {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
}
.wordmark .mk-plus { color: var(--gold-ink); font-weight: 300; }
.wordmark .mk-elle {
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.02em;
}
.wordmark-sub {
    display: block;
    font-family: var(--sans);
    font-size: 0.66rem;
    font-weight: 400;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-top: 0.9rem;
}

/* ------------------------------------------------------------------ nav */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    z-index: 1000;
    background: rgba(251, 247, 238, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, background .3s, box-shadow .3s;
}
.navbar.scrolled {
    border-bottom-color: var(--line-soft);
    box-shadow: var(--shadow-sm);
}
.nav-inner {
    max-width: var(--maxw);
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.nav-brand .wordmark { font-size: 1.28rem; }
.nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
}
.nav-links a {
    font-size: 0.74rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-body);
    position: relative;
    padding: 0.4rem 0;
    transition: color .2s;
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width .28s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-book-mobile { display: none; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
}
.hamburger .bar {
    display: block;
    width: 24px; height: 1.5px;
    background: var(--ink);
    transition: transform .28s, opacity .28s;
}
.hamburger.open .bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open .bar:nth-child(2) { opacity: 0; }
.hamburger.open .bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------------------------------------------------------------- hero */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--nav-h) + 4rem) 24px 4rem;
    overflow: hidden;
    background: var(--paper-warm);
}
/* Real salon photo under a heavy cream scrim. The source is only 1290px wide
   (a screenshot, not the photographer's original), so it is treated as
   atmosphere rather than a crisp full-bleed image — the scrim covers the
   upscale on wide monitors. Swap in an original and the scrim can be lightened. */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg,
            rgba(251, 247, 238, 0.93) 0%,
            rgba(244, 237, 223, 0.90) 55%,
            rgba(234, 224, 203, 0.93) 100%),
        url('assets/photos/hero.jpg') center 38% / cover no-repeat;
}
/* Fine diagonal weave — keeps the empty hero from reading as unfinished. */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(28, 42, 34, 0.03) 0px,
        rgba(28, 42, 34, 0.03) 1px,
        transparent 1px,
        transparent 7px
    );
}
/* min-width:0 is load-bearing. .hero is a flex container, and a flex item will
   not shrink below its min-content width — which the wordmark sets. Without
   this the whole column stays as wide as "ELAN + elle" and the body copy runs
   off the right edge on a phone. */
.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    min-width: 0;
    max-width: 780px;
}

.hero .wordmark { font-size: clamp(1.9rem, 10.5vw, 5.2rem); }
.hero-title { margin-bottom: 0.4rem; }
/* The real logo. Capped at 520px because the artwork is 1115px wide — past
   that it is being upscaled, and the hairline ELAN capitals are the first
   thing to go soft. */
.hero-logo {
    width: min(520px, 82vw);
    height: auto;
    margin: 0 auto 0.6rem;
}

.hero-tagline {
    font-family: var(--display);
    font-style: italic;
    font-size: clamp(1.35rem, 3.4vw, 2rem);
    color: var(--gold-ink);
    margin: 2.2rem 0 1.1rem;
}
.hero-sub {
    max-width: 52ch;
    margin: 0 auto;
    color: var(--ink-body);
}
.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.4rem;
}
.hero-meta {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem 2rem;
    margin-top: 3rem;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-muted);
}
.hero-meta li { display: flex; align-items: center; gap: 0.7rem; }
.hero-meta li:not(:first-child)::before {
    content: '';
    width: 4px; height: 4px;
    background: var(--gold);
    transform: rotate(45deg);
}

.scroll-hint {
    position: absolute;
    left: 50%; bottom: 26px;
    transform: translateX(-50%);
    z-index: 2;
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}
.scroll-hint::after {
    content: '';
    width: 1px; height: 34px;
    background: linear-gradient(var(--gold), transparent);
    animation: hint 2.4s ease-in-out infinite;
}
@keyframes hint {
    0%, 100% { opacity: .3; transform: scaleY(.6); transform-origin: top; }
    50%      { opacity: 1;  transform: scaleY(1);  transform-origin: top; }
}

/* --------------------------------------------------------------- about */
.about { padding: 7rem 0; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}
.about-copy h2 { font-size: clamp(2.1rem, 4.4vw, 2.9rem); margin-bottom: 0.4rem; }
.about-copy p { margin-top: 1.6rem; }
.about-pull {
    font-family: var(--display);
    font-style: italic;
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--gold-ink);
    border-left: 2px solid var(--gold);
    padding-left: 1.6rem;
    margin-top: 2.2rem !important;
}
.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.6rem;
    flex-wrap: wrap;
}
.about-stats div strong {
    display: block;
    font-family: var(--display);
    font-size: 2.3rem;
    font-weight: 400;
    color: var(--ink);
    line-height: 1;
}
.about-stats div span {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-muted);
}

/* Photo slot — holds its shape until a real image is dropped in. */
.photo-slot {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background:
        radial-gradient(70% 60% at 30% 25%, var(--gold-soft), transparent 65%),
        linear-gradient(150deg, var(--paper-warm), var(--paper-deep));
    box-shadow: var(--shadow-md);
    display: grid;
    place-items: center;
}
.photo-slot img { width: 100%; height: 100%; object-fit: cover; }
.photo-slot .slot-note {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-muted);
    text-align: center;
    padding: 0 1.5rem;
}
.about-photo { position: relative; }
.about-photo::after {
    content: '';
    position: absolute;
    inset: 18px -18px -18px 18px;
    border: 1px solid var(--gold-soft);
    border-radius: var(--radius-lg);
    z-index: -1;
}

/* ------------------------------------------------------------- stylists */
.stylists { padding: 7rem 0; }
.stylist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.4rem;
    max-width: 900px;
    margin: 0 auto;
}
.stylist-card {
    background: var(--card);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .28s, box-shadow .28s;
    display: flex;
    flex-direction: column;
}
.stylist-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.stylist-card .photo-slot { aspect-ratio: 1 / 1; border-radius: 0; box-shadow: none; }
.stylist-body { padding: 2rem; display: flex; flex-direction: column; flex: 1; }
.stylist-body h3 { font-size: 1.85rem; }
.stylist-role {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-ink);
    margin-top: 0.35rem;
}
.stylist-body p { margin-top: 1.1rem; font-size: 0.93rem; }
.stylist-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    /* auto, not a fixed gap: the two bios differ in length, so this bottom-aligns
       the tags + Book button across both cards instead of leaving one dangling. */
    margin-top: auto;
    padding-top: 1.4rem;
}
.stylist-tags li {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    background: var(--gold-soft);
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-pill);
}
.stylist-body .btn { align-self: flex-start; margin-top: 1.8rem; }

/* ------------------------------------------------------------- services */
/* Names only — see the comment on #services in index.html for why this exists
   and why the price menu stays off. The hairline grid is gap:1px over a --line
   background, so the dividers are real 1px lines at any zoom rather than
   borders that double up between cells. */
.services { padding: 7rem 0; background: var(--paper-warm); }
.service-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
.service-list li {
    background: var(--card);
    padding: 1.9rem 1rem;
    text-align: center;
    font-family: var(--display);
    font-size: clamp(1.15rem, 2.3vw, 1.5rem);
    font-weight: 400;
    color: var(--ink);
}
.service-books {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.4rem;
}

/* -------------------------------------------------------------- gallery */
.gallery { padding: 7rem 0; background: var(--paper-warm); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px;
}
.gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(150deg, var(--paper), var(--paper-deep));
    display: grid;
    place-items: center;
    cursor: default;
}
.gallery-item.tall { grid-row: span 2; aspect-ratio: 1 / 2; }
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.gallery-item:has(img) { cursor: zoom-in; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .slot-note {
    font-size: 0.64rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-muted);
}
/* Portrait and landscape sources share one square grid, so every tile crops
   from its centre rather than letterboxing. */
.gallery-item img { object-position: center; }

/* The hair-work grid is all phone-shot portrait, so it gets taller tiles —
   a square crop lops off either the root or the ends, which is the whole
   point of the photo. */
.gallery-grid.portrait .gallery-item { aspect-ratio: 3 / 4; }
.gallery-item figcaption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 1.9rem 0.9rem 0.7rem;
    font-family: var(--sans);
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(to top, rgba(20, 17, 15, 0.62), rgba(20, 17, 15, 0));
    pointer-events: none;
}

.gallery-subhead { text-align: center; margin: 4.2rem 0 2.2rem; }
.gallery-subhead h3 {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(1.5rem, 3vw, 2rem);
    letter-spacing: 0.01em;
}
.gallery-subhead p { color: var(--ink-muted); margin-top: 0.35rem; }
.gallery-cta { text-align: center; margin-top: 2.6rem; }

/* lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(15, 26, 20, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
    position: absolute;
    top: 18px; right: 22px;
    background: none;
    border: 0;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    width: 44px; height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
}
.lightbox-nav.prev { left: 18px; }
.lightbox-nav.next { right: 18px; }

/* ------------------------------------------------------------- cta band */
.cta-band {
    padding: 6rem 0;
    background: var(--green);
    color: rgba(255,255,255,.85);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 80% at 50% 0%, rgba(255,255,255,.09), transparent 70%);
}
.cta-band > * { position: relative; }
.cta-band h2 {
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-style: italic;
}
.cta-band p { max-width: 52ch; margin: 1.2rem auto 2.2rem; }
.cta-band .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* The cancellation policy lives with the booking CTA, per the client. It sits on
   the green band, so it is a translucent white panel rather than the cream
   `--gold-soft` card it used to be beside the contact form. */
.cta-policy {
    max-width: 56ch;
    margin: 3rem auto 0;
    padding: 1.4rem 1.7rem;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: var(--radius-lg);
    font-size: 0.86rem;
    color: rgba(255,255,255,.9);
    text-align: left;
}
.cta-policy strong {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.5rem;
}

/* ------------------------------------------------------------- contact */
.contact { padding: 7rem 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
}
.info-item {
    display: flex;
    gap: 1.1rem;
    padding: 1.4rem 0;
    border-bottom: 1px solid var(--line-soft);
}
.info-item:first-child { padding-top: 0; }
.info-icon {
    flex-shrink: 0;
    width: 38px; height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--gold-ink);
}
.info-icon svg { width: 17px; height: 17px; }
.info-item h4 {
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 0.3rem;
}
.info-item p, .info-item a { color: var(--ink); font-size: 0.98rem; }
.info-item a:hover { color: var(--green); }

.hours-table { width: 100%; border-collapse: collapse; font-size: 0.93rem; }
.hours-table td { padding: 0.32rem 0; color: var(--ink); }
.hours-table td:last-child { text-align: right; color: var(--ink-muted); }
.hours-table tr.today td { color: var(--gold-ink); font-weight: 500; }

.map-wrap {
    margin-top: 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-sm);
}
.map-wrap iframe { display: block; width: 100%; height: 260px; border: 0; filter: grayscale(1) contrast(0.95); }

.contact-cta {
    background: var(--card);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    padding: 2.4rem;
    box-shadow: var(--shadow-sm);
}
.contact-cta h3 { font-size: 1.7rem; margin: 0.5rem 0 0.6rem; }
.contact-cta h4 {
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 0.5rem;
}
.contact-cta p { font-size: 0.95rem; color: var(--ink-muted); line-height: 1.65; }

/* The phone number IS the button — new clients call, so make it the one
   unmissable target in this column rather than a link buried in body copy. */
.contact-cta-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    margin-top: 1.6rem;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
}
.contact-cta-call svg { width: 18px; height: 18px; }
.contact-cta-note { font-size: 0.78rem; margin-top: 0.9rem; }
.contact-cta-divider {
    height: 1px;
    background: var(--line-soft);
    margin: 2.2rem 0 1.6rem;
}
.contact-cta-books {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.1rem;
}


/* -------------------------------------------------------------- footer */
.footer {
    background: var(--green-deep);
    color: rgba(255,255,255,.62);
    padding: 4.5rem 0 2rem;
    font-size: 0.9rem;
}
.footer .wordmark { color: #fff; font-size: 1.6rem; }
.footer .wordmark .mk-plus { color: var(--gold); }
/* The salon letters "Hey Beautiful / Come on in." on its front door in gold
   script between two hairlines. This echoes that, in their own words. */
.footer-greeting {
    font-family: var(--script);
    font-size: clamp(1.5rem, 4vw, 2.3rem);
    line-height: 1.3;
    color: var(--gold);
    text-align: center;
    padding: 0.6rem 0 3rem;
    position: relative;
}
.footer-greeting::before,
.footer-greeting::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: min(320px, 60%);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(185, 150, 83, .55), transparent);
}
.footer-greeting::before { top: -0.6rem; }
.footer-greeting::after  { bottom: 1.6rem; }

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-blurb { margin-top: 1.4rem; max-width: 38ch; }
.footer h4 {
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.2rem;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer a { color: rgba(255,255,255,.62); transition: color .2s; }
.footer a:hover { color: #fff; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.6rem; }
.footer-social a {
    width: 38px; height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    transition: background .22s, border-color .22s;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--green-deep); }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.6rem;
    padding-top: 2rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,.42);
}
.footer-built a {
    color: rgba(255,255,255,.62);
    border-bottom: 1px solid rgba(185, 150, 83, .4);
    padding-bottom: 1px;
}
.footer-built a:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* ------------------------------------------------------- floating book */
.floating-book {
    position: fixed;
    left: 16px; right: 16px; bottom: 16px;
    z-index: 900;
    display: none;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

/* --------------------------------------------------------------- reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}

/* ----------------------------------------------------------- responsive */
@media (max-width: 940px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-photo { order: -1; max-width: 420px; margin: 0 auto; }
    .about-photo::after { display: none; }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
    .hamburger { display: flex; }
    .nav-links {
        position: fixed;
        top: var(--nav-h); left: 0; right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--paper);
        border-bottom: 1px solid var(--line-soft);
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease;
    }
    .nav-links.open { max-height: 480px; }
    .nav-links li { border-top: 1px solid var(--line-soft); }
    .nav-links a { display: block; padding: 1.1rem 24px; }
    .nav-links a::after { display: none; }
    .nav-cta { display: none; }
    .nav-book-mobile { display: block; }
    .nav-book-mobile a { color: var(--green); font-weight: 500; }

    .floating-book { display: flex; }
    .footer { padding-bottom: 6rem; }

    .about { padding: 5rem 0; }
    .stylists, .services, .gallery, .contact { padding: 5rem 0; }
    .service-list { grid-template-columns: repeat(2, 1fr); }
    .service-list li { padding: 1.5rem 0.8rem; }
    .contact-cta { padding: 1.8rem; }
    .about-pull { font-size: 1.28rem; }
}

@media (max-width: 560px) {
    .footer-top { grid-template-columns: 1fr; gap: 2.2rem; }
    .hero-meta { flex-direction: column; gap: 0.5rem; }
    .hero-meta li:not(:first-child)::before { display: none; }
    .gallery-item.tall { grid-row: span 1; aspect-ratio: 1 / 1; }
}
