/* Mariah Elise Esthetics — ShopMora build 2026-08-06
   Palette sampled from her own logo mark: near-black #0C0B09, champagne gold. */

@font-face {
  font-family: 'Playfair Display';
  src: url('/assets/fonts/playfair-display-latin-wght-normal.woff2') format('woff2-variations');
  font-weight: 400 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-latin-wght-normal.woff2') format('woff2-variations');
  font-weight: 300 700;
  font-display: swap;
  font-style: normal;
}

:root {
  --ink:        #0C0B09;
  --ink-2:      #14110D;
  --ink-3:      #1B1712;
  --line:       #2C251C;
  --line-soft:  #221D16;
  --bone:       #F3EEE6;
  --bone-dim:   #B5AC9E;
  --gold:       #C9AE85;
  --gold-lift:  #DCC5A0;
  --gold-deep:  #A2865C;

  --display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --wrap: 1160px;
  --pad: clamp(20px, 5vw, 40px);
  --sect: clamp(64px, 9vw, 116px);
  --r: 2px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--body);
  font-size: 17px;
  font-weight: 350;
  line-height: 1.65;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-wrap: balance;
  margin: 0 0 18px;
}
h1 { font-size: clamp(2.6rem, 6.4vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }

p { margin: 0 0 1.1em; max-width: 68ch; }
a { color: var(--gold); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--gold-lift); }

:focus-visible {
  outline: 2px solid var(--gold-lift);
  outline-offset: 3px;
  border-radius: 2px;
}

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: var(--sect); }
.center { text-align: center; }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
}
.lede { font-size: clamp(1.05rem, 1.7vw, 1.2rem); color: var(--bone-dim); }
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- skip link ---------- */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--gold); color: var(--ink);
  padding: 12px 20px; font-weight: 600; text-decoration: none;
}
.skip:focus { left: 12px; top: 12px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 14px 30px;
  font-family: var(--body);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gold);
  border-radius: var(--r);
  cursor: pointer;
  touch-action: manipulation;
  transition: background-color .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
}
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: var(--gold-lift); border-color: var(--gold-lift); color: var(--ink); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--gold); }
.btn-ghost:hover { background: rgba(201,174,133,.1); color: var(--gold-lift); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(12,11,9,.94);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.header-in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  min-height: 74px;
  width: 100%; max-width: var(--wrap); margin-inline: auto;
  padding-inline: var(--pad);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--bone); flex-shrink: 0; }
.brand img { width: 40px; height: 40px; border-radius: 50%; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--display); font-size: 1.06rem; letter-spacing: .04em; }
.brand-sub { font-size: .58rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  color: var(--bone); text-decoration: none;
  font-size: .82rem; font-weight: 450; letter-spacing: .09em; text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--gold); border-bottom-color: var(--gold); }
.nav .btn { margin-left: 6px; }
.nav .btn:hover { border-bottom-color: transparent; }

.nav-toggle { display: none; }

/* mobile nav — a real replacement, never a disappearing menu */
@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 46px; height: 46px;
    background: transparent; border: 1px solid var(--line);
    border-radius: var(--r); color: var(--bone);
    cursor: pointer; touch-action: manipulation;
  }
  .nav {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink-2);
    border-bottom: 1px solid var(--line);
    padding: 8px var(--pad) 24px;
    transform: translateY(-8px);
    opacity: 0; visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .nav[data-open="true"] { opacity: 1; visibility: visible; transform: none; }
  .nav a { padding: 16px 0; border-bottom: 1px solid var(--line-soft); font-size: .95rem; }
  .nav a:hover, .nav a[aria-current="page"] { border-bottom-color: var(--line-soft); }
  .nav .btn { margin: 20px 0 0; }
}

/* ---------- hero ---------- */
.hero { padding-block: clamp(56px, 8vw, 104px) clamp(56px, 8vw, 96px); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}
.hero h1 { margin-bottom: 24px; }
.hero .lede { margin-bottom: 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-media { position: relative; }
.hero-media img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--r);
  border: 1px solid var(--line);
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero-media img { aspect-ratio: 4/3; }
}

/* ---------- trust strip ---------- */
.strip { border-block: 1px solid var(--line-soft); background: var(--ink-2); }
.strip-in {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line-soft);
}
.strip-item { background: var(--ink-2); padding: 26px var(--pad); text-align: center; }
.strip-item strong { display: block; font-family: var(--display); font-size: 1.12rem; margin-bottom: 4px; }
.strip-item span { font-size: .82rem; color: var(--bone-dim); }
@media (max-width: 760px) { .strip-in { grid-template-columns: 1fr; } }

/* ---------- section head ---------- */
.sect-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 56px); }
.sect-head.center { margin-inline: auto; }

/* ---------- service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: border-color .25s ease, transform .25s ease, background-color .25s ease;
}
a.card { text-decoration: none; color: inherit; }
a.card:hover { border-color: var(--gold); transform: translateY(-3px); background: var(--ink-3); }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--bone-dim); font-size: .95rem; margin-bottom: 18px; }
.card .from { margin-top: auto; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }

/* ---------- price list ---------- */
.menu { display: grid; gap: clamp(40px, 6vw, 64px); }
.menu-group h3 {
  padding-bottom: 14px; margin-bottom: 6px;
  border-bottom: 1px solid var(--line);
}
.menu-row {
  display: grid; grid-template-columns: 1fr auto;
  gap: 8px 24px; align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-soft);
}
.menu-row:last-child { border-bottom: 0; }
.menu-name { font-family: var(--display); font-size: 1.22rem; }
.menu-desc { grid-column: 1 / -1; color: var(--bone-dim); font-size: .93rem; margin: 6px 0 0; max-width: 62ch; }
.menu-price { font-variant-numeric: tabular-nums; color: var(--gold); font-size: 1.06rem; font-weight: 500; white-space: nowrap; }
.menu-time { display: block; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--bone-dim); font-weight: 400; margin-top: 2px; }

/* ---------- results ---------- */
.results { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.result-fig { margin: 0; }
.result-fig img {
  width: 100%; aspect-ratio: 2/1; object-fit: cover;
  border: 1px solid var(--line); border-radius: var(--r);
}
.result-fig figcaption {
  font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-top: 12px;
}
.result-wide { grid-column: 1 / -1; }
.result-wide img { aspect-ratio: 2/1; }
@media (max-width: 700px) { .results { grid-template-columns: 1fr; } }

/* ---------- split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.split img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border: 1px solid var(--line); border-radius: var(--r); }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } .split img { aspect-ratio: 4/3; } }

/* ---------- info / hours ---------- */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 64px); }
@media (max-width: 820px) { .info-grid { grid-template-columns: 1fr; } }
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { text-align: left; padding: 13px 0; border-bottom: 1px solid var(--line-soft); font-weight: 400; }
.hours th { color: var(--bone-dim); font-size: .84rem; letter-spacing: .1em; text-transform: uppercase; }
.hours td { text-align: right; font-variant-numeric: tabular-nums; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
address { font-style: normal; color: var(--bone-dim); }
address strong { color: var(--bone); font-weight: 500; }

/* ---------- form ---------- */
.form-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(28px, 4vw, 44px);
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: .78rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--bone-dim); margin-bottom: 9px;
}
.field input, .field textarea, .field select {
  width: 100%;
  font-family: var(--body);
  font-size: 16px;
  color: var(--bone);
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 14px 16px;
  transition: border-color .2s ease;
}
.field input:hover, .field textarea:hover, .field select:hover { border-color: var(--gold-deep); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); outline: none; box-shadow: 0 0 0 3px rgba(201,174,133,.16); }
.field textarea { resize: vertical; min-height: 130px; }
.field ::placeholder { color: #6E675C; }
.form-note { font-size: .84rem; color: var(--bone-dim); margin: 18px 0 0; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--ink-2); padding-block: clamp(48px, 6vw, 72px) 32px; }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr; gap: 32px; } }
.foot-grid h4 { font-family: var(--body); font-size: .74rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin: 0 0 16px; }
.foot-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.foot-links a { color: var(--bone-dim); text-decoration: none; font-size: .93rem; }
.foot-links a:hover { color: var(--gold); }
.foot-bottom {
  margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between;
  font-size: .82rem; color: var(--bone-dim);
}
.foot-bottom a { color: var(--bone-dim); }
.foot-bottom a:hover { color: var(--gold); }

/* ---------- misc ---------- */
.note {
  border-left: 2px solid var(--gold);
  padding: 4px 0 4px 20px;
  color: var(--bone-dim);
  font-size: .95rem;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0; }
.tag-row li {
  font-size: .76rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--bone-dim);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 15px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .btn:hover, a.card:hover { transform: none; }
}

/* ---------- brand emblem panel (stands in for photography we don't have yet) ---------- */
.emblem {
  aspect-ratio: 4/5;
  display: grid; place-items: center;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(201,174,133,.09), transparent 62%),
    var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 40px;
}
.emblem img { width: min(64%, 260px); height: auto; aspect-ratio: 1; object-fit: contain; border-radius: 50%; }
@media (max-width: 820px) { .emblem { aspect-ratio: 3/2; } }

/* ---------- hero focal point ---------- */

/* ---------- wide result: shorter band ---------- */
.result-wide img { aspect-ratio: 5/2; object-position: 50% 42%; }
@media (max-width: 700px) { .result-wide img { aspect-ratio: 3/2; } }

/* ---------- standalone links get a real tap target ---------- */
.link-lg {
  display: inline-block;
  padding: 12px 0;
  min-height: 44px;
  line-height: 20px;
}

/* Specificity fix: `.nav a` (0,1,1) was beating `.btn-primary` (0,1,0) and
   painting the header Book button bone-on-gold at 1.84:1 — invisible.
   Same class of bug as the cream-logo-on-cream that shipped at 1.06:1. */
.nav a.btn-primary { color: var(--ink); }
.nav a.btn-primary:hover { color: var(--ink); }
.nav a.btn-ghost { color: var(--gold); }

/* ---------- tagline band (replaces the gallery — one real photo, no repeated crops) ---------- */
.band {
  background:
    radial-gradient(90% 120% at 50% 0%, rgba(201,174,133,.075), transparent 64%),
    var(--ink-2);
  border-block: 1px solid var(--line-soft);
}
.band-h {
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin-bottom: 32px;
}
.band-tags { justify-content: center; }
.band-tags li { border-color: var(--gold-deep); color: var(--gold); }

/* hero focal point for the lash/brow crop */
.hero-media img { object-position: 50% 50%; }

/* ---------- tap targets: every control and standalone link reaches 44px ----------
   Measured at 320/360/390/430/768/1280/1920 — the brand lockup, the desktop nav
   links and the footer nav were all landing between 16px and 40px tall. */
.brand { min-height: 48px; }
.nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.foot-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  min-width: 44px;
  padding: 11px 0;
}
.foot-bottom a {
  display: inline-block;
  padding: 13px 0;
  min-height: 44px;
}
.foot-bottom { align-items: center; }

/* ---------- reviews (real, from her Google Business Profile) ---------- */
.card.review { margin: 0; }
.review blockquote {
  margin: 0 0 20px;
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.42;
  color: var(--bone);
}
.review figcaption {
  margin-top: auto;
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
