/* ---------- Tokens ---------- */
:root {
  --cream:      #faf6f1;
  --cream-deep: #f1e9df;
  --paper:      #ffffff;
  --ink:        #2c2622;
  --ink-soft:   #6b6258;
  --line:       #e7dccf;
  --clay:       #b07a5b;   /* warm, earthy accent — not gold */
  --clay-deep:  #91603f;
  --sage:       #8a9785;   /* quiet secondary */
  --shadow:     0 18px 40px -24px rgba(60, 44, 32, 0.45);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --max:   1120px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.1; margin: 0; }
p { margin: 0 0 1rem; }
a { color: var(--clay-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin: 0 0 0.9rem;
}

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: #fff; padding: 10px 16px; z-index: 100; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.6rem;
  border-radius: 2px;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--clay); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--clay-deep); }
.btn-ghost { border: 1px solid var(--line); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--clay); color: var(--clay-deep); }
.btn-ghost-light { border: 1px solid rgba(255,255,255,.5); color: #fff; background: transparent; }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(250, 246, 241, 0.85);
  backdrop-filter: saturate(120%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; }
.brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand:hover { text-decoration: none; }
.brand-name { font-family: var(--serif); font-size: 1.25rem; color: var(--ink); letter-spacing: .01em; }
.brand-sub { font-family: var(--sans); font-size: 0.64rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-soft); }

.nav { display: flex; align-items: center; gap: 1.9rem; }
.nav a { color: var(--ink); font-size: 0.92rem; font-weight: 500; }
.nav a:hover { color: var(--clay-deep); text-decoration: none; }
.nav a.current { color: var(--clay-deep); }
.nav a.current::after {
  content: ""; display: block; height: 2px; background: var(--clay);
  margin-top: 3px; border-radius: 2px;
}
.nav .nav-cta {
  border: 1px solid var(--clay); color: var(--clay-deep);
  padding: 0.45rem 1.1rem; border-radius: 2px;
}
.nav .nav-cta:hover { background: var(--clay); color: #fff; }
.nav .nav-cta.current { background: var(--clay); color: #fff; }
.nav .nav-cta.current::after { display: none; }
.mobile-nav a.current { color: var(--clay-deep); font-weight: 600; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); transition: .2s; }

.mobile-nav { display: none; flex-direction: column; padding: 8px 24px 18px; border-bottom: 1px solid var(--line); background: var(--cream); }
.mobile-nav a { padding: 12px 0; color: var(--ink); border-bottom: 1px solid var(--line); }
.mobile-nav a:last-child { border-bottom: 0; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(72px, 12vw, 140px) 0 clamp(56px, 9vw, 110px); }
.hero-inner { max-width: 760px; }
.hero h1 {
  font-size: clamp(2.7rem, 7vw, 5rem);
  letter-spacing: -0.01em;
  margin: 0 0 1.4rem;
}
.hero h1 em { font-style: italic; color: var(--clay-deep); }
.lede { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--ink-soft); max-width: 46ch; margin-bottom: 2.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero-rule { height: 1px; background: linear-gradient(90deg, transparent, var(--line) 18%, var(--line) 82%, transparent); }

/* ---------- Strip ---------- */
.strip { padding: clamp(48px, 7vw, 84px) 0; }
.strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.4rem; }
.strip-item h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.strip-item p { color: var(--ink-soft); margin: 0; }
.strip-item { position: relative; padding-left: 1.2rem; }
.strip-item::before { content: ""; position: absolute; left: 0; top: 6px; width: 3px; height: 1.8rem; background: var(--clay); border-radius: 2px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: clamp(56px, 8vw, 96px) 0 clamp(28px, 4vw, 44px);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); letter-spacing: -0.01em; margin-bottom: 0.8rem; }
.page-lede { font-size: clamp(1.02rem, 2vw, 1.2rem); color: var(--ink-soft); max-width: 52ch; margin: 0; }

/* ---------- Explore cards (home) ---------- */
.explore-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.explore-card {
  display: block; padding: 1.8rem; background: var(--paper);
  border: 1px solid var(--line); border-radius: 4px; color: var(--ink);
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.explore-card:hover { text-decoration: none; transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--clay); }
.explore-card h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.explore-card p { color: var(--ink-soft); margin-bottom: 1rem; }
.explore-link { color: var(--clay-deep); font-weight: 600; font-size: 0.92rem; }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-top-tight { padding-top: clamp(40px, 6vw, 72px); }
.section-alt { background: var(--cream-deep); }
.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head h2 { font-size: clamp(2rem, 4.2vw, 3rem); margin-bottom: 0.8rem; }
.section-note { color: var(--ink-soft); margin: 0; }

/* ---------- Services menu ---------- */
.menu { columns: 2; column-gap: 3.5rem; }
.menu-group { break-inside: avoid; margin-bottom: 2.6rem; }
.menu-group h3 {
  font-size: 1.4rem; color: var(--ink);
  padding-bottom: 0.6rem; margin-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}
.menu-group ul { list-style: none; margin: 0; padding: 0; }
.menu-group li { display: flex; align-items: baseline; gap: 0.5rem; padding: 0.45rem 0; }
.menu-group .svc { color: var(--ink); }
.menu-group .svc small { color: var(--ink-soft); font-size: 0.82em; }
.menu-group .dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-3px); }
.menu-group .price { font-variant-numeric: tabular-nums; color: var(--ink); font-weight: 600; white-space: nowrap; }
.menu-group .price small { font-weight: 500; color: var(--ink-soft); }
.menu-group .price-consult { color: var(--clay-deep); font-weight: 500; font-style: italic; }
.menu-foot { margin-top: 1.4rem; color: var(--ink-soft); font-size: 0.92rem; font-style: italic; }
.price-plus { color: var(--clay-deep); font-weight: 600; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-photo {
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at 30% 25%, rgba(176,122,91,.18), transparent 60%),
    var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  display: grid; place-items: center;
}
.photo-note { font-family: var(--serif); font-style: italic; color: var(--ink-soft); opacity: .7; }
.about-copy h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1.2rem; }
.about-copy p { color: var(--ink-soft); }
.about-sign { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--ink); margin-top: 0.5rem; }

/* ---------- Visit ---------- */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.visit-grid h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 1.4rem; }
.details { margin: 0 0 2rem; }
.details div { display: flex; gap: 1.5rem; padding: 0.6rem 0; border-bottom: 1px solid var(--line); }
.details dt { font-weight: 600; min-width: 5.5rem; color: var(--ink); margin: 0; }
.details dd { margin: 0; color: var(--ink-soft); }

.salon-note { color: var(--ink-soft); font-size: 0.95rem; margin: 0 0 1.8rem; }

.callout { background: var(--cream-deep); border-left: 3px solid var(--clay); border-radius: 0 4px 4px 0; padding: 1.4rem 1.6rem; }
.callout h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.callout p { margin: 0; color: var(--ink-soft); }
.callout p + p { margin-top: 0.9rem; }
.callout .callout-sign { font-family: var(--serif); font-style: italic; color: var(--ink); }
.callout-more { font-size: 0.9rem; font-weight: 600; }
.callout-more a { color: var(--clay-deep); }
.pricing-notice { max-width: 720px; margin-bottom: 2.6rem; }

.map-placeholder {
  border: 1px solid var(--line); border-radius: 4px; overflow: hidden;
  min-height: 340px; background: var(--cream);
}
.map-placeholder iframe { display: block; width: 100%; height: 100%; min-height: 340px; border: 0; }

/* ---------- Book ---------- */
.book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-bottom: 2.6rem; }
.book-grid-single { grid-template-columns: 1fr; }
.book-grid-single .book-card { max-width: 420px; }
.book-card {
  display: block; padding: 2rem; border-radius: 4px; color: #fff; background: var(--clay);
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease;
}
.book-card:hover { text-decoration: none; transform: translateY(-3px); box-shadow: var(--shadow); background: var(--clay-deep); }
.book-card h2 { font-size: 1.7rem; margin-bottom: 0.4rem; }
.book-line { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.8rem; }
.book-card p { margin: 0; opacity: .92; }

.book-notes { max-width: 640px; }
.book-notes h3 { font-size: 1.3rem; margin-bottom: 0.8rem; }
.book-notes ul { margin: 0; padding-left: 1.1rem; color: var(--ink-soft); }
.book-notes li { padding: 0.3rem 0; }

/* ---------- CTA ---------- */
.cta { background: var(--ink); color: var(--cream); padding: clamp(64px, 9vw, 120px) 0; text-align: center; }
.cta-inner { max-width: 620px; }
.cta h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 1rem; }
.cta p { color: rgba(250,246,241,.78); }
.cta-actions { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; margin: 1.8rem 0 0.8rem; }
.cta-note { font-size: 0.85rem; color: rgba(250,246,241,.5); margin-top: 0.6rem; }

/* ---------- Letter (note from Nancy) ---------- */
.letter { padding: clamp(88px, 13vw, 150px) 0 clamp(72px, 10vw, 120px); }
.letter-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.letter-mark {
  display: block;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 9vw, 5.5rem);
  line-height: 1;
  color: var(--clay);
  opacity: .55;
  margin-bottom: -0.6rem;
}
.letter-inner .eyebrow { text-align: center; }
.letter-inner h1 {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  margin-bottom: clamp(2.2rem, 5vw, 3.2rem);
}
.letter-rule {
  width: 56px; height: 2px; background: var(--clay);
  margin: 0 auto clamp(2.2rem, 5vw, 3.2rem); border-radius: 2px;
}
.letter-body { text-align: left; }
.letter-body p {
  font-family: var(--serif);
  font-size: clamp(1.18rem, 2.4vw, 1.4rem);
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 1.6rem;
}
.letter-sign {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--ink);
  text-align: left;
  margin: 0.6rem 0 clamp(2.6rem, 6vw, 4rem);
}
.letter-actions {
  display: flex; gap: 0.9rem; flex-wrap: wrap;
  justify-content: flex-start;
  padding-top: clamp(1.6rem, 4vw, 2.4rem);
  border-top: 1px solid var(--line);
}

@media (max-width: 640px) {
  /* Quote-mark glyphs (Fraunces "201C) only fill ~28% of their em box, sitting
     high near cap-height — so the universal clamp's mobile floor (3.6rem)
     renders as ~16px of visible ink, barely more than the eyebrow text. Give
     mobile its own larger floor + stronger opacity/weight so it still reads
     as a deliberate accent rather than a stray punctuation mark. */
  .letter { padding-top: clamp(110px, 24vw, 130px); }
  .letter-mark {
    font-size: clamp(4.4rem, 20vw, 5.2rem);
    font-weight: 500;
    opacity: .72;
    margin-bottom: -0.8rem;
  }
  .letter-body p, .letter-sign { text-align: left; }
  .letter-actions {
    justify-content: stretch;
    padding-top: clamp(2.2rem, 9vw, 2.8rem);
    border-top: none;
    background-image: linear-gradient(90deg, var(--clay) 0, var(--clay) 44px, transparent 44px);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 100% 2px;
  }
  .letter-actions .btn { flex: 1; text-align: center; }
}

/* ---------- Footer ---------- */
.site-footer { padding: 2.6rem 0; border-top: 1px solid var(--line); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.brand-footer .brand-sub { letter-spacing: 0.16em; }
.footer-nav { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer-nav a { color: var(--ink); font-size: 0.9rem; }
.footer-nav a:hover { color: var(--clay-deep); }
.copyright { margin: 0; color: var(--ink-soft); font-size: 0.85rem; }

/* ---------- Placeholder hints (remove before publish) ---------- */
.placeholder-hint { font-size: 0.78rem; color: var(--clay-deep); font-style: italic; opacity: .8; margin-top: 0.6rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .site-header.open .mobile-nav { display: flex; }
  .strip-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .menu { columns: 1; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 360px; }
  .visit-grid { grid-template-columns: 1fr; }
  .explore-grid { grid-template-columns: 1fr; }
  .book-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
