/* =====================================================================
   HJ Luxe Aesthetics - bespoke build
   Brand: nurse-prescriber-led advanced aesthetics, Bamber Bridge, Preston.
   Register: warm noir + champagne gold + ivory. Editorial, luxe, calm.
   The real logo (unreachable) was a black landscape wordmark: this rebuild
   keeps that black-and-gold register with an interlocking HJ monogram.
   Type: Cormorant Garamond (high-contrast luxe serif) + Jost (geometric sans).
   ===================================================================== */

:root {
  --noir:     #17130F;
  --espresso: #241C15;
  --coffee:   #33281F;
  --gold:     #C9A96A;
  --gold-2:   #B8935A;
  --gold-dk:  #A97F49;
  --gold-lt:  #E7CE9B;
  --champ:    #EFE2C7;
  --ivory:    #F7F1E7;
  --ivory-2:  #F1E8D9;
  --paper:    #FCF9F3;
  --blush:    #E7D3C9;
  --ink:      #221B14;
  --ink-soft: #6E6255;
  --line:     #E4D8C5;
  --line-dk:  rgba(201, 169, 106, 0.28);
  --white:    #ffffff;

  --maxw: 1180px;
  --gap: clamp(20px, 4vw, 48px);
  --pad-y: clamp(58px, 8vw, 120px);
  --r: 4px;
  --r-lg: 6px;
  --shadow: 0 30px 70px -38px rgba(23, 19, 15, 0.55);
  --shadow-soft: 0 16px 44px -28px rgba(23, 19, 15, 0.45);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: clamp(15.5px, 1.02vw, 17px);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: var(--gold-dk); text-decoration-thickness: 1px; text-underline-offset: 3px; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: 0.002em;
  color: var(--noir);
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.9rem, 7vw, 5.6rem); font-weight: 500; letter-spacing: -0.005em; }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); }
p { margin: 0 0 1.1em; }

.wrap { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }
.narrow { width: min(100% - 40px, 760px); margin-inline: auto; }
section { padding-block: var(--pad-y); }

/* --- shared bits --- */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin: 0 0 1.3em;
  display: inline-flex;
  align-items: center;
  gap: 0.9em;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 1px;
  background: var(--gold);
}
.eyebrow.plain::before { display: none; }
.lead { font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.62rem); font-weight: 400; line-height: 1.45; color: var(--coffee); font-style: italic; }
.muted { color: var(--ink-soft); }

/* the gold serif-diamond luxe rule */
.rule { display: flex; align-items: center; justify-content: center; gap: 18px; color: var(--gold); }
.rule::before, .rule::after { content: ""; height: 1px; width: min(28vw, 220px); background: linear-gradient(90deg, transparent, var(--gold)); }
.rule::after { background: linear-gradient(90deg, var(--gold), transparent); }
.rule .dia { width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.7em;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1.05em 1.9em;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
  line-height: 1;
}
.btn-primary {
  background: var(--noir); color: var(--champ);
  border-color: var(--noir);
}
.btn-primary:hover { background: var(--espresso); color: var(--gold-lt); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold-2));
  color: var(--noir); border: 0;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -16px rgba(169, 127, 73, 0.7); }
.btn-ghost {
  background: transparent; color: var(--noir);
  border-color: var(--gold);
}
.btn-ghost:hover { border-color: var(--gold-dk); color: var(--gold-dk); transform: translateY(-2px); }
.btn-ghost-lt { background: transparent; color: var(--champ); border-color: rgba(201,169,106,0.6); }
.btn-ghost-lt:hover { border-color: var(--gold); color: var(--gold-lt); transform: translateY(-2px); }

/* =====================  HEADER  ===================== */
.demo-ribbon {
  background: var(--noir);
  color: #d9cbb0;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  text-align: center;
  padding: 9px 18px;
  line-height: 1.55;
  font-weight: 300;
}
.demo-ribbon strong { color: var(--gold-lt); font-weight: 400; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(252, 249, 243, 0.86);
  backdrop-filter: saturate(1.3) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; }
.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; }
.brand .mark { width: 46px; height: 46px; }
.brand-name { display: flex; flex-direction: column; line-height: 1.02; }
.brand-name b { font-family: var(--serif); font-weight: 600; font-size: 1.42rem; color: var(--noir); letter-spacing: 0.01em; }
.brand-name small { font-size: 0.6rem; letter-spacing: 0.36em; text-transform: uppercase; color: var(--gold-dk); font-weight: 400; margin-top: 2px; }

.site-nav ul { list-style: none; display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; }
.site-nav a { font-weight: 400; font-size: 0.76rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--ink); text-decoration: none; padding: 10px 15px; border-radius: 2px; transition: color .2s; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--gold-dk); }
.site-nav a.nav-cta { background: var(--noir); color: var(--champ); }
.site-nav a.nav-cta:hover { background: var(--espresso); color: var(--gold-lt); }

.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 22px; height: 1.5px; background: var(--noir); border-radius: 2px; transition: transform .3s, opacity .3s; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .site-nav { position: absolute; top: 100%; left: 0; right: 0; background: var(--paper); border-bottom: 1px solid var(--line); max-height: 0; overflow: hidden; transition: max-height .34s ease; }
  .site-nav.open { max-height: 480px; }
  .site-nav ul { flex-direction: column; align-items: stretch; padding: 12px 20px 20px; gap: 2px; }
  .site-nav a { padding: 14px 12px; font-size: 0.82rem; }
}

/* =====================  HERO  ===================== */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 100% at 88% 0%, rgba(201,169,106,0.14), transparent 55%),
    linear-gradient(180deg, var(--ivory) 0%, var(--paper) 100%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(30px, 5vw, 72px);
  padding-block: clamp(52px, 8vw, 116px);
}
.hero h1 { color: var(--noir); }
.hero h1 .em { font-style: italic; color: var(--gold-dk); }
.hero-lede { font-family: var(--serif); font-style: italic; font-size: clamp(1.25rem, 2vw, 1.62rem); font-weight: 400; color: var(--coffee); max-width: 42ch; margin: 0.2em 0 1.5em; line-height: 1.45; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 2em; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  font-size: 0.68rem; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 7px 15px; border-radius: 2px;
  background: rgba(255,255,255,0.6); border: 1px solid var(--line); color: var(--coffee);
  display: inline-flex; align-items: center; gap: 8px;
}
.tag::before { content: ""; width: 5px; height: 5px; transform: rotate(45deg); background: var(--gold); }

/* hero stage: gilded HJ monogram on a noir plinth */
.gild-stage { position: relative; aspect-ratio: 1 / 1.12; display: grid; place-items: center; }
.gild-plinth {
  position: absolute; inset: 5%;
  border-radius: 4px;
  background:
    radial-gradient(90% 70% at 50% 12%, rgba(201,169,106,0.22), transparent 62%),
    linear-gradient(160deg, var(--espresso), var(--noir));
  box-shadow: var(--shadow), inset 0 1px 40px rgba(201,169,106,0.12);
  border: 1px solid rgba(201,169,106,0.3);
  overflow: hidden;
}
.gild-plinth::after {
  content: ""; position: absolute; inset: 14px; border: 1px solid rgba(201,169,106,0.24); border-radius: 2px;
}
.gild-mono { position: relative; z-index: 3; width: 52%; height: auto; filter: drop-shadow(0 24px 40px rgba(0,0,0,0.5)); }
.gild-ring {
  position: absolute; z-index: 2;
  width: 66%; aspect-ratio: 1; border-radius: 50%;
  border: 1px solid rgba(201,169,106,0.4);
  animation: spin 72s linear infinite;
}
.gild-ring.r2 { width: 80%; border-style: dashed; border-color: rgba(201,169,106,0.24); animation-duration: 108s; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
/* slow gold sheen sweep across the plinth */
.gild-sheen {
  position: absolute; z-index: 2; inset: 0;
  background: linear-gradient(115deg, transparent 38%, rgba(231,206,155,0.16) 50%, transparent 62%);
  transform: translateX(-30%);
  animation: sheen 7s ease-in-out infinite;
}
@keyframes sheen { 0%,100% { transform: translateX(-30%); opacity: 0; } 45%,55% { opacity: 1; } 60% { transform: translateX(30%); opacity: 0; } }
/* drifting gold flecks */
.fleck { position: absolute; z-index: 3; width: 4px; height: 4px; background: radial-gradient(circle, var(--gold-lt), var(--gold-dk)); border-radius: 50%; opacity: 0.75; animation: drift 9s ease-in-out infinite; }
@keyframes drift { 0%,100% { transform: translateY(0); opacity: 0.3; } 50% { transform: translateY(-14px); opacity: 0.9; } }

@media (prefers-reduced-motion: reduce) {
  .gild-ring, .gild-sheen, .fleck { animation: none !important; }
  .gild-sheen { display: none; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding-block: 40px 10px; }
  .gild-stage { max-width: 340px; margin: 4px auto 0; aspect-ratio: 1 / 1.06; }
}

/* =====================  PAGE HERO (inner)  ===================== */
.page-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(80% 120% at 92% 0%, rgba(201,169,106,0.16), transparent 58%),
    linear-gradient(180deg, var(--ivory) 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(50px, 7vw, 96px) clamp(36px, 5vw, 62px);
}
.page-hero .narrow { text-align: center; }
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { font-size: clamp(2.5rem, 6vw, 4.4rem); }
.page-hero p { max-width: 58ch; margin-inline: auto; }
.breadcrumb { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 1.4em; }
.breadcrumb a { color: var(--gold-dk); text-decoration: none; }

/* =====================  SECTION HEADS  ===================== */
.section-head { max-width: 720px; margin-bottom: clamp(34px, 4vw, 58px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head p.lead { margin-bottom: 0; }

/* split intro */
.split { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.split.rev .split-media { order: -1; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 34px; } .split.rev .split-media { order: 0; } }

/* =====================  GILDED IMAGE SLOTS  ===================== */
.slot {
  position: relative; overflow: hidden;
  background:
    linear-gradient(135deg, var(--ivory-2), var(--ivory));
  border: 1px solid var(--line);
  display: grid; place-items: center;
  min-height: 260px;
  color: var(--gold-dk);
}
.slot.framed { padding: 12px; background: var(--noir); }
.slot.framed .frame-in {
  border: 1px solid rgba(201,169,106,0.45);
  width: 100%; height: 100%; min-height: 240px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--espresso), var(--noir));
  position: relative;
}
.slot.ar-portrait { aspect-ratio: 4 / 5; }
.slot.ar-wide { aspect-ratio: 16 / 10; }
.slot.ar-square { aspect-ratio: 1 / 1; }
.slot-label { font-family: var(--sans); font-size: 0.72rem; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; text-align: center; line-height: 1.7; padding: 14px; opacity: 0.7; }
.slot.framed .slot-label { color: var(--gold); }
.slot .ghost-mono { position: absolute; width: 42%; opacity: 0.1; }
.slot.framed .ghost-mono { opacity: 0.22; }
.slot img.real { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* =====================  PILLARS  ===================== */
.band-ivory { background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-2) 100%); border-block: 1px solid var(--line); }
.band-noir { background: radial-gradient(100% 140% at 50% 0%, var(--espresso), var(--noir)); color: var(--champ); border-block: 1px solid var(--line-dk); }
.band-noir h2, .band-noir h3 { color: #fff; }
.band-noir .lead { color: var(--gold-lt); }
.band-noir p { color: #cfc2ad; }
.band-noir .eyebrow { color: var(--gold); }
.band-noir .eyebrow::before { background: var(--gold); }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(0px, 0.1vw, 2px); border: 1px solid var(--line); background: var(--line); }
@media (max-width: 820px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  background: var(--paper);
  padding: clamp(28px, 3.2vw, 42px);
  position: relative;
  transition: background .3s ease;
}
.pillar:hover { background: var(--ivory); }
.pillar .num { font-family: var(--serif); font-size: 1.3rem; font-style: italic; color: var(--gold); display: block; margin-bottom: 18px; }
.pillar .ico { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 18px; }
.pillar .ico svg { width: 30px; height: 30px; stroke: var(--gold-dk); fill: none; stroke-width: 1.3; }
.pillar h3 { margin-bottom: 0.4em; }
.pillar p { margin-bottom: 0; color: var(--ink-soft); font-size: 0.96rem; }

/* =====================  TREATMENT MENU  ===================== */
.menu-cat { margin-bottom: clamp(38px, 4.5vw, 62px); }
.menu-cat:last-child { margin-bottom: 0; }
.menu-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 26px; }
.menu-head h3 { margin: 0; font-size: clamp(1.6rem, 3vw, 2.3rem); white-space: nowrap; }
.menu-head .kicker { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-dk); font-weight: 400; }
.menu-head .fill { flex: 1; height: 1px; background: var(--line); align-self: center; }
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-item {
  display: grid; grid-template-columns: 1fr auto;
  gap: 4px 12px; align-items: baseline;
  padding: 18px 0; border-bottom: 1px solid var(--line);
}
.menu-item:last-child { border-bottom: 0; }
.menu-item .mi-name { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; color: var(--noir); }
.mi-lead { position: relative; }
/* dotted gold leader between name and price */
.menu-item .mi-price { font-family: var(--sans); font-weight: 400; font-size: 0.98rem; color: var(--gold-dk); white-space: nowrap; letter-spacing: 0.03em; }
.menu-item .mi-price.consult { font-style: normal; color: var(--coffee); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; border: 1px solid var(--line); padding: 5px 11px; border-radius: 2px; }
.menu-item .mi-desc { grid-column: 1 / -1; font-size: 0.94rem; color: var(--ink-soft); margin: 4px 0 0; max-width: 64ch; }
.pom-note {
  background: var(--ivory); border: 1px solid var(--line); border-left: 2px solid var(--gold);
  padding: 20px 24px; font-size: 0.94rem; color: var(--coffee); margin-bottom: 30px;
}
.pom-note strong { color: var(--noir); font-weight: 500; }

/* =====================  PRESCRIBER SEAL (signature trust)  ===================== */
.seal-band {
  background: radial-gradient(90% 140% at 80% 0%, rgba(201,169,106,0.16), transparent 60%), linear-gradient(160deg, var(--espresso), var(--noir));
  color: var(--champ);
  border-block: 1px solid var(--line-dk);
}
.seal-wrap { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: clamp(30px, 5vw, 68px); align-items: center; }
@media (max-width: 780px) { .seal-wrap { grid-template-columns: 1fr; text-align: center; } }
.seal-band h2 { color: #fff; }
.seal-band .lead { color: var(--gold-lt); }
.seal-band p { color: #cfc2ad; }
.seal {
  aspect-ratio: 1; border-radius: 50%;
  max-width: 260px; margin-inline: auto;
  border: 1px solid rgba(201,169,106,0.5);
  display: grid; place-content: center; text-align: center;
  padding: 30px;
  background: radial-gradient(circle at 50% 32%, rgba(201,169,106,0.16), transparent 68%);
  position: relative;
}
.seal::before { content: ""; position: absolute; inset: 12px; border-radius: 50%; border: 1px dashed rgba(201,169,106,0.4); }
.seal .crown { font-size: 0.62rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold); display: block; }
.seal b { font-family: var(--serif); font-size: clamp(1.7rem, 3.4vw, 2.3rem); color: #fff; line-height: 1.05; display: block; margin: 10px 0; font-weight: 500; }
.seal small { font-size: 0.72rem; color: var(--gold-lt); letter-spacing: 0.14em; text-transform: uppercase; display: block; }
.seal-points { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 15px; }
.seal-points li { display: flex; gap: 13px; align-items: flex-start; font-size: 0.98rem; color: #ddd0bb; }
.seal-points svg { flex: none; width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.6; margin-top: 3px; }
@media (max-width: 780px) { .seal-points li { text-align: left; } }

/* =====================  STEPS  ===================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.4vw, 34px); }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 26px; border-top: 1px solid var(--line); }
.step::before {
  content: attr(data-n);
  position: absolute; top: -0.55em; right: 0;
  font-family: var(--serif); font-style: italic; font-size: 2.6rem; color: var(--gold); opacity: 0.55;
}
.step h3 { font-size: 1.3rem; margin-bottom: 0.35em; }
.step p { font-size: 0.94rem; color: var(--ink-soft); margin: 0; }

/* =====================  WHY / VALUES  ===================== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.6vw, 30px); }
@media (max-width: 820px) { .why-grid { grid-template-columns: 1fr; } }
.why { padding: clamp(26px, 3vw, 38px); border: 1px solid var(--line); background: var(--paper); position: relative; }
.why .dia { width: 9px; height: 9px; background: var(--gold); transform: rotate(45deg); display: block; margin-bottom: 20px; }
.why h3 { font-size: 1.5rem; }
.why p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; }

/* =====================  GALLERY (gilded frames)  ===================== */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 1.6vw, 20px); }
@media (max-width: 720px) { .gallery { grid-template-columns: 1fr 1fr; } }

/* =====================  ALMANAC / STATS  ===================== */
.almanac { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
@media (max-width: 720px) { .almanac { grid-template-columns: 1fr 1fr; gap: 34px; } }
.almanac .item b { font-family: var(--serif); font-size: clamp(2.2rem, 4.6vw, 3.2rem); color: var(--gold-lt); display: block; line-height: 1; font-weight: 500; }
.almanac .item span { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: #cfc2ad; margin-top: 12px; display: block; }

/* =====================  CTA BAND  ===================== */
.cta-band {
  background: radial-gradient(80% 130% at 12% 0%, rgba(201,169,106,0.16), transparent 55%), linear-gradient(180deg, var(--ivory-2), var(--ivory));
  border-block: 1px solid var(--line);
  text-align: center;
}
.cta-band .narrow { text-align: center; }
.cta-band .hero-cta { justify-content: center; }

/* =====================  VISIT  ===================== */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 54px); }
@media (max-width: 860px) { .visit-grid { grid-template-columns: 1fr; } }
.info-card { background: var(--paper); border: 1px solid var(--line); padding: clamp(28px, 3vw, 40px); }
.info-card h3 { display: flex; align-items: center; gap: 12px; }
.info-card h3 svg { width: 22px; height: 22px; stroke: var(--gold-dk); fill: none; stroke-width: 1.4; }
.info-row { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: 0; }
.info-row .k { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-dk); min-width: 92px; padding-top: 3px; }
.info-row .v { color: var(--coffee); }
.info-row .v a { color: var(--gold-dk); }
.hours { list-style: none; margin: 0; padding: 0; }
.hours li { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 0.96rem; }
.hours li:last-child { border-bottom: 0; }
.hours .d { color: var(--noir); }
.hours .t { color: var(--ink-soft); }
.book-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.book-list a { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 20px; border: 1px solid var(--line); background: var(--paper); text-decoration: none; color: var(--noir); transition: border-color .25s, background .25s; }
.book-list a:hover { border-color: var(--gold); background: var(--ivory); }
.book-list .bl-name { font-family: var(--serif); font-size: 1.2rem; }
.book-list .bl-meta { font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dk); }
.map-slot { min-height: 300px; }

/* =====================  FOOTER  ===================== */
.site-footer { background: radial-gradient(90% 160% at 50% 0%, var(--espresso), var(--noir)); color: #c3b69f; padding-block: clamp(50px, 6vw, 76px) 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 44px; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; }
.footer-brand .mark { width: 48px; height: 48px; }
.footer-brand b { font-family: var(--serif); font-size: 1.5rem; color: #fff; font-weight: 600; }
.site-footer p { color: #a99a80; font-size: 0.92rem; }
.site-footer h4 { color: var(--gold-lt); font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 400; margin: 0 0 16px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer a { color: #c3b69f; text-decoration: none; font-size: 0.92rem; }
.site-footer a:hover { color: var(--gold-lt); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(201,169,106,0.18); font-size: 0.8rem; color: #8a7c64; }
.footer-bottom a { color: #c3b69f; }

/* =====================  UTIL / REVEAL  ===================== */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--noir); color: var(--champ); padding: 10px 16px; z-index: 100; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--gold-dk); outline-offset: 3px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

.prose p { max-width: 66ch; }
.prose p.lead { max-width: 60ch; }
