/* ============================================================
   Judith L. Ansteth Jewelers — redesign concept
   Mithryl Labs, 2026. Static prototype.
   Two families: EB Garamond (display) + Public Sans (body).
   ============================================================ */

:root {
  --ink:         oklch(24% 0.012 60);
  --ink-soft:    oklch(32% 0.012 60);
  --bone:        oklch(97% 0.008 85);
  --paper:       oklch(99% 0.004 85);
  --night:       oklch(17.5% 0.014 55);
  --night-soft:  oklch(22% 0.014 55);
  --copper:      #cd865c;
  --copper-deep: #a8663f;
  --gold-pale:   #dfd89e;
  --taupe:       #948372;
  --rule:        #e5e0d8;
  --rule-dark:   oklch(30% 0.014 55);
  --bone-on-dark: oklch(93% 0.01 85);
  --taupe-on-dark: oklch(70% 0.02 70);

  --font-display: "EB Garamond", Georgia, serif;
  --font-body: "Public Sans", sans-serif;

  --step-hero: clamp(3.2rem, 8.4vw, 8.2rem);
  --step-h2: clamp(2.3rem, 5.2vw, 4.8rem);
  --step-h3: clamp(1.35rem, 2.2vw, 1.9rem);
  --step-body: clamp(1rem, 1.05vw, 1.125rem);
  --step-label: 0.72rem;

  --space-section: clamp(6rem, 12vw, 11rem);
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

html, body { overflow-x: clip; }

body {
  font-family: var(--font-body);
  font-size: var(--step-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; }

a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible, label:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--bone);
  padding: 0.75rem 1.25rem; font-size: 0.85rem;
}
.skip-link:focus { left: 0; }

/* ---------- typography helpers ---------- */

.label {
  font-family: var(--font-body);
  font-size: var(--step-label);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-optical-sizing: auto;
  line-height: 1.02;
  letter-spacing: -0.01em;
}

.display em {
  font-style: italic;
  font-weight: 400;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1.1rem 2.1rem;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.45s var(--ease-out), color 0.45s var(--ease-out),
              border-color 0.45s var(--ease-out);
}

.btn-solid { background: var(--copper); color: var(--paper); }
.btn-solid:hover { background: var(--copper-deep); }

.btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: var(--bone); }

.btn-ghost-dark { border-color: var(--bone-on-dark); color: var(--bone-on-dark); background: transparent; }
.btn-ghost-dark:hover { background: var(--bone-on-dark); color: var(--night); }

.btn .arrow { transition: transform 0.45s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

/* text link with rule */
.tlink {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--taupe);
  transition: border-color 0.4s var(--ease-out), color 0.4s var(--ease-out);
}
.tlink:hover { color: var(--copper-deep); border-color: var(--copper-deep); }

/* ---------- header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 1.1rem var(--gutter);
  transition: background-color 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out),
              padding 0.5s var(--ease-out);
}

.site-header.scrolled {
  background: color-mix(in oklab, var(--bone) 92%, transparent);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--rule);
  padding-block: 0.8rem;
}

.wordmark {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.wordmark .amp { font-style: italic; color: var(--copper-deep); }
.wordmark small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 0.1rem;
}

.site-nav { display: flex; gap: 2.2rem; justify-content: center; }
.site-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s var(--ease-out), color 0.35s var(--ease-out);
}
.site-nav a:hover { border-color: var(--copper); color: var(--copper-deep); }

.header-actions { display: flex; align-items: center; gap: 1.6rem; justify-content: flex-end; }
.header-phone {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  white-space: nowrap;
  color: var(--ink-soft);
  transition: color 0.35s var(--ease-out);
}
.header-phone:hover { color: var(--copper-deep); }
.header-book { padding: 0.85rem 1.6rem; }

/* mobile bottom bar */
.mobile-bar {
  display: none;
  position: fixed;
  inset: auto 0 0 0;
  z-index: 100;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--rule);
}
.mobile-bar a {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 1.05rem 0.5rem;
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.mobile-bar .m-book { background: var(--copper); color: var(--paper); }
.mobile-bar .m-call { background: var(--ink); color: var(--bone); }

/* ---------- reveal motion ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 90ms);
}
[data-reveal].in { opacity: 1; transform: none; }

[data-reveal="mask"] {
  transform: none;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1.1s var(--ease-out), opacity 0.2s linear;
  transition-delay: calc(var(--i, 0) * 90ms);
}
[data-reveal="mask"].in { clip-path: inset(0 0 0 0); opacity: 1; }

[data-reveal="wipe"] {
  transform: none;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.2s var(--ease-out), opacity 0.2s linear;
  transition-delay: calc(var(--i, 0) * 110ms);
}
[data-reveal="wipe"].in { clip-path: inset(0); opacity: 1; }

/* hero line masks — extra bottom room so descenders (J, g, y) aren't cropped */
.h-line { display: block; overflow: hidden; padding-bottom: 0.18em; margin-bottom: -0.18em; }
.h-line > span {
  display: block;
  transform: translateY(110%);
  transition: transform 1.15s var(--ease-out);
}
.hero.loaded .h-line > span { transform: none; }
.hero.loaded .h-line:nth-child(1) > span { transition-delay: 0.10s; }
.hero.loaded .h-line:nth-child(2) > span { transition-delay: 0.22s; }
.hero.loaded .h-line:nth-child(3) > span { transition-delay: 0.34s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal], [data-reveal="mask"], [data-reveal="wipe"] {
    opacity: 1; transform: none; clip-path: none; transition: none;
  }
  .h-line > span { transform: none; transition: none; }
  .btn, .tlink, .door-media img, .g-item img, .p-media img { transition: none; }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: clamp(1rem, 2.5vw, 2.5rem);
  align-content: center;
  padding: clamp(7rem, 14vh, 10rem) var(--gutter) clamp(4rem, 8vh, 6rem);
  overflow: hidden;
}

.hero-copy { grid-column: 1 / 9; grid-row: 1; align-self: center; position: relative; z-index: 2; }

.hero-eyebrow { margin-bottom: clamp(1.5rem, 3vh, 2.5rem); display: flex; align-items: center; gap: 1.2rem; }
.hero-eyebrow::before { content: ""; width: 3.5rem; height: 1px; background: var(--copper); }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--step-hero);
  line-height: 1.0;
  letter-spacing: -0.005em;
}
.hero h1 .h-line > span { white-space: nowrap; }
.hero h1 em { font-style: italic; color: var(--copper-deep); }

.hero-sub {
  max-width: 44ch;
  margin-top: clamp(1.75rem, 3.5vh, 2.75rem);
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.15vw, 1.2rem);
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: clamp(2rem, 4vh, 3rem); }

.hero-media {
  grid-column: 9 / 13;
  grid-row: 1;
  position: relative;
  align-self: stretch;
  min-height: clamp(24rem, 62vh, 44rem);
  z-index: 1;
}
.hero-img-main {
  position: absolute;
  inset: 0 0 14% 8%;
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-inset {
  position: absolute;
  left: -18%;
  bottom: 0;
  width: 52%;
  aspect-ratio: 1;
  border: 1px solid var(--rule);
  padding: 0.5rem;
  background: var(--paper);
}
.hero-img-inset img { width: 100%; height: 100%; object-fit: cover; }

.hero-side {
  position: absolute;
  right: calc(var(--gutter) * 0.35);
  bottom: clamp(4rem, 9vh, 6.5rem);
  writing-mode: vertical-rl;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--taupe);
  z-index: 3;
}

.hero-scroll {
  position: absolute;
  left: var(--gutter);
  bottom: clamp(1.5rem, 4vh, 2.75rem);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--taupe);
}
.hero-scroll::after {
  content: "";
  width: 4.5rem; height: 1px;
  background: var(--taupe);
  transform-origin: left;
  animation: scrollpulse 2.6s var(--ease-out) infinite;
}
@keyframes scrollpulse {
  0% { transform: scaleX(0); opacity: 0; }
  35% { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(1) translateX(1.2rem); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .hero-scroll::after { animation: none; } }

/* ---------- trust bar ---------- */

.trust {
  border-block: 1px solid var(--rule);
  padding: 1.4rem var(--gutter);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem 0;
}
.trust span {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  display: flex;
  align-items: center;
}
.trust span + span::before {
  content: "·";
  color: var(--copper);
  margin: 0 1.6rem;
  font-size: 1rem;
}

/* ---------- section scaffolding ---------- */

.section { padding: var(--space-section) var(--gutter); }

.section-head { margin-bottom: clamp(3rem, 7vw, 5.5rem); }
.section-head .label { display: block; margin-bottom: 1.1rem; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--step-h2);
  line-height: 1.04;
  letter-spacing: -0.01em;
  max-width: 18ch;
}
.section-head h2 em { font-style: italic; color: var(--copper-deep); }

.dark { background: var(--night); color: var(--bone-on-dark); }
.dark .label { color: var(--taupe-on-dark); }
.dark .section-head h2 em { color: var(--copper); }
.dark p { line-height: 1.72; }

/* ---------- two doors ---------- */

.doors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-block: 1px solid var(--rule);
}

.door {
  position: relative;
  min-height: clamp(30rem, 88vh, 50rem);
  display: flex;
  overflow: hidden;
  color: var(--bone);
}
.door + .door { border-left: 1px solid var(--rule); }

.door-media { position: absolute; inset: 0; }
.door-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.001);
  transition: transform 1.4s var(--ease-out);
}
.door-media::after {
  content: "";
  position: absolute; inset: 0;
  background: oklch(17% 0.014 55 / 0.58);
  transition: background-color 0.9s var(--ease-out);
}
.door:hover .door-media img, .door:focus-visible .door-media img { transform: scale(1.045); }
.door:hover .door-media::after, .door:focus-visible .door-media::after {
  background: oklch(17% 0.014 55 / 0.38);
}

.door-body {
  position: relative;
  z-index: 1;
  align-self: flex-end;
  padding: clamp(2rem, 4.5vw, 4rem);
  width: 100%;
}
.door-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  color: var(--gold-pale);
  display: block;
  margin-bottom: 1.1rem;
}
.door h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.4vw, 3.3rem);
  line-height: 1.05;
  max-width: 13ch;
}
.door p {
  margin-top: 1rem;
  max-width: 34ch;
  color: oklch(88% 0.012 85);
  font-size: 0.98rem;
}
.door-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.8rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  border-bottom: 1px solid var(--copper);
  padding-bottom: 0.45rem;
}
.door-cta .arrow { transition: transform 0.45s var(--ease-out); color: var(--copper); }
.door:hover .door-cta .arrow { transform: translateX(5px); }

/* ---------- Andrea ---------- */

.andrea {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: clamp(1rem, 2.5vw, 2.5rem);
  align-items: center;
  background: var(--paper);
}
.andrea-media { grid-column: 1 / 6; position: relative; }
.andrea-media img { width: 100%; height: auto; }
.andrea-frame {
  position: relative;
  padding: 0;
}
.andrea-frame::after {
  content: "";
  position: absolute;
  inset: 1.4rem -1.4rem -1.4rem 1.4rem;
  border: 1px solid var(--copper);
  z-index: -1;
}
.andrea-media figcaption {
  margin-top: 1.6rem;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
}

.andrea-copy { grid-column: 7 / 13; }
.andrea-copy .label { display: block; margin-bottom: 1.1rem; }
.andrea-copy h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1.08;
  max-width: 16ch;
}
.andrea-copy h2 em { font-style: italic; color: var(--copper-deep); }
.andrea-copy .lede {
  margin-top: 1.8rem;
  max-width: 58ch;
  color: var(--ink-soft);
}
.andrea-copy .lede + .lede { margin-top: 1.1rem; }
.andrea-sig {
  margin-top: 1.9rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--ink);
}

.credentials {
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 0;
  list-style: none;
}
.credentials li {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
  display: flex; align-items: center;
}
.credentials li + li::before { content: "·"; color: var(--copper); margin: 0 1.1rem; }

.andrea-copy .tlink { margin-top: 2.4rem; }

/* ---------- process (dark) ---------- */

.process-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: clamp(1rem, 2.5vw, 2.5rem);
}
.process-rail {
  grid-column: 1 / 5;
  align-self: start;
  position: sticky;
  top: 8rem;
}
.process-rail .label { display: block; margin-bottom: 1.1rem; }
.process-rail h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 1.05;
  max-width: 12ch;
}
.process-rail h2 em { font-style: italic; color: var(--copper); }
.process-rail p { margin-top: 1.6rem; max-width: 36ch; color: var(--taupe-on-dark); }
.process-rail .btn { margin-top: 2.4rem; }

.process-steps { grid-column: 6 / 13; display: grid; gap: clamp(3rem, 6vw, 5rem); }

.step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1.4rem, 3vw, 2.6rem);
  align-items: start;
  padding-top: clamp(1.6rem, 3vw, 2.4rem);
  border-top: 1px solid var(--rule-dark);
}
.step-num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 400;
  line-height: 0.9;
  color: var(--copper);
  min-width: 2ch;
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--step-h3);
  margin-bottom: 0.7rem;
}
.step p { color: var(--taupe-on-dark); max-width: 40ch; }
.step-media {
  width: clamp(6.5rem, 11vw, 10rem);
  aspect-ratio: 1;
  overflow: hidden;
}
.step-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.step:hover .step-media img { transform: scale(1.05); }

/* ---------- gallery ---------- */

.gallery-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(3rem, 7vw, 5.5rem);
}
.gallery-head .section-head { margin-bottom: 0; }

.g-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2.4rem);
}
.g-item { position: relative; }
.g-item a { display: block; }
.g-media { overflow: hidden; background: var(--paper); }
.g-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.g-item:hover .g-media img { transform: scale(1.04); }
.g-cap { margin-top: 1.1rem; display: flex; flex-direction: column; gap: 0.25rem; }
.g-cap strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}
.g-cap span { font-size: 0.85rem; color: var(--taupe); max-width: 38ch; }

/* asymmetric spans */
.g-item:nth-child(1) { grid-column: 1 / 6;  }
.g-item:nth-child(1) .g-media { aspect-ratio: 4 / 5; }
.g-item:nth-child(2) { grid-column: 7 / 11; margin-top: clamp(3rem, 7vw, 6rem); }
.g-item:nth-child(2) .g-media { aspect-ratio: 1; }
.g-item:nth-child(3) { grid-column: 2 / 5; margin-top: clamp(-2rem, -1vw, -1rem); }
.g-item:nth-child(3) .g-media { aspect-ratio: 3 / 4; }
.g-item:nth-child(4) { grid-column: 6 / 12; margin-top: clamp(2rem, 5vw, 4rem); }
.g-item:nth-child(4) .g-media { aspect-ratio: 5 / 4; }
.g-item:nth-child(5) { grid-column: 1 / 5; margin-top: clamp(2rem, 5vw, 4rem); }
.g-item:nth-child(5) .g-media { aspect-ratio: 1; }
.g-item:nth-child(6) { grid-column: 6 / 9; margin-top: clamp(4rem, 8vw, 7rem); }
.g-item:nth-child(6) .g-media { aspect-ratio: 3 / 4; }
.g-item:nth-child(7) { grid-column: 10 / 13; margin-top: clamp(1rem, 3vw, 2rem); }
.g-item:nth-child(7) .g-media { aspect-ratio: 3 / 4; }
.g-item:nth-child(8) { grid-column: 3 / 8; margin-top: clamp(3rem, 6vw, 5rem); }
.g-item:nth-child(8) .g-media { aspect-ratio: 4 / 3; }

/* ---------- stories ---------- */

.stories { background: var(--paper); }
.story-feature {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: clamp(1rem, 2.5vw, 2.5rem);
  align-items: center;
  margin-bottom: clamp(4rem, 8vw, 6rem);
}
.story-feature figure { grid-column: 1 / 6; position: relative; }
.story-feature figure img { width: 100%; }
.story-feature figcaption {
  margin-top: 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
}
.story-feature blockquote { grid-column: 7 / 13; }
.story-feature blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.9vw, 2.7rem);
  line-height: 1.22;
  letter-spacing: 0;
}
.story-feature blockquote p::before { content: "\201C"; color: var(--copper); }
.story-feature blockquote p::after { content: "\201D"; color: var(--copper); }
.story-feature cite {
  display: block;
  margin-top: 1.8rem;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
}

.story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--rule);
}
.story-row blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  line-height: 1.4;
}
.story-row cite {
  display: block;
  margin-top: 1.3rem;
  font-style: normal;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* ---------- fine jewelry / price bands ---------- */

.bands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
}
.band {
  padding: clamp(2rem, 4vw, 3.2rem) clamp(1.2rem, 2.5vw, 2.4rem);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: background-color 0.5s var(--ease-out);
}
.band + .band { border-left: 1px solid var(--rule); }
.band:hover { background: var(--paper); }
.band .band-price {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 400;
}
.band .band-note { font-size: 0.85rem; color: var(--taupe); }
.band .arrow { color: var(--copper); margin-top: 0.6rem; transition: transform 0.45s var(--ease-out); }
.band:hover .arrow { transform: translateX(5px); }

/* ---------- journal ---------- */

.journal-list { border-top: 1px solid var(--rule); }
.journal-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(1.8rem, 3.5vw, 2.8rem) 0;
  border-bottom: 1px solid var(--rule);
  transition: padding-left 0s;
}
.journal-item .j-num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--taupe);
  font-size: 1rem;
  min-width: 2.5ch;
}
.journal-item h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  transition: color 0.4s var(--ease-out);
}
.journal-item:hover h3 { color: var(--copper-deep); }
.journal-item .j-tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* ---------- visit (dark) ---------- */

.visit {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: clamp(1rem, 2.5vw, 2.5rem);
  row-gap: 3rem;
}
.visit-main { grid-column: 1 / 8; }
.visit-main .label { display: block; margin-bottom: 1.4rem; }
.visit-main h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 4.2rem);
  line-height: 1.1;
}
.visit-main h2 a { border-bottom: 1px solid var(--rule-dark); transition: border-color 0.4s var(--ease-out); }
.visit-main h2 a:hover { border-color: var(--copper); }
.visit-main .visit-city {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--copper);
}
.visit-main p { margin-top: 1.6rem; max-width: 50ch; color: var(--taupe-on-dark); }
.visit-phone {
  display: inline-block;
  margin-top: 2rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  border-bottom: 1px solid var(--copper);
  padding-bottom: 0.3rem;
  transition: color 0.4s var(--ease-out);
}
.visit-phone:hover { color: var(--copper); }

.visit-aside {
  grid-column: 9 / 13;
  align-self: end;
  display: grid;
  gap: 1.8rem;
}
.visit-fact { border-top: 1px solid var(--rule-dark); padding-top: 1.1rem; }
.visit-fact .label { display: block; margin-bottom: 0.4rem; }
.visit-fact p { color: var(--bone-on-dark); font-size: 0.95rem; }

/* ---------- footer ---------- */

.site-footer { background: var(--night); color: var(--bone-on-dark); padding: 0 var(--gutter); }
.footer-inner { border-top: 1px solid var(--rule-dark); padding: clamp(3rem, 6vw, 5rem) 0 clamp(6rem, 8vw, 5rem); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.footer-brand .wordmark { font-size: 1.4rem; color: var(--bone-on-dark); }
.footer-brand p { margin-top: 1.2rem; max-width: 30ch; color: var(--taupe-on-dark); font-size: 0.9rem; }
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe-on-dark);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: grid; gap: 0.65rem; }
.footer-col a {
  font-size: 0.92rem;
  color: var(--bone-on-dark);
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s var(--ease-out), color 0.35s var(--ease-out);
}
.footer-col a:hover { color: var(--copper); }

.footer-fine {
  border-top: 1px solid var(--rule-dark);
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem 2rem;
  font-size: 0.76rem;
  color: var(--taupe-on-dark);
}

/* ============================================================
   book.html — guided consultation flow
   ============================================================ */

.book-page { min-height: 100svh; background: var(--bone); }

.book-shell {
  display: grid;
  grid-template-columns: minmax(20rem, 2fr) 3fr;
  min-height: 100svh;
}

.book-rail {
  background: var(--night);
  color: var(--bone-on-dark);
  padding: clamp(2rem, 5vh, 4rem) clamp(1.5rem, 3.5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
  position: sticky;
  top: 0;
  height: 100svh;
}
.book-rail .wordmark { color: var(--bone-on-dark); }
.book-rail-mid h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.12;
  max-width: 14ch;
}
.book-rail-mid h1 em { font-style: italic; color: var(--copper); }
.book-rail-mid p { margin-top: 1.4rem; max-width: 34ch; color: var(--taupe-on-dark); font-size: 0.95rem; }
.book-rail-foot { display: grid; gap: 0.5rem; font-size: 0.85rem; color: var(--taupe-on-dark); }
.book-rail-foot a { color: var(--bone-on-dark); border-bottom: 1px solid var(--rule-dark); width: fit-content; }
.book-rail-foot a:hover { color: var(--copper); }

.book-main {
  padding: clamp(2.5rem, 6vh, 5rem) clamp(1.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
}

.book-progress { margin-bottom: clamp(2.5rem, 5vh, 4rem); }
.book-progress .bp-meta {
  display: flex; justify-content: space-between;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.8rem;
}
.bp-track { height: 1px; background: var(--rule); position: relative; }
.bp-fill {
  position: absolute; inset: 0 auto 0 0; height: 100%;
  background: var(--copper);
  width: 0%;
  transition: width 0.7s var(--ease-out);
}

.book-step { display: none; }
.book-step.active { display: block; animation: stepin 0.7s var(--ease-out); }
@keyframes stepin {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) { .book-step.active { animation: none; } }

.book-step h2:focus { outline: none; }
.book-step h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.4vw, 3.1rem);
  line-height: 1.08;
  margin-bottom: 0.9rem;
}
.book-step .step-hint { color: var(--taupe); margin-bottom: 2.2rem; max-width: 50ch; }

.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.choice {
  text-align: left;
  font-family: var(--font-body);
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 1.6rem 1.5rem;
  cursor: pointer;
  display: grid;
  gap: 0.35rem;
  transition: border-color 0.4s var(--ease-out), background-color 0.4s var(--ease-out);
}
.choice:hover { border-color: var(--copper); }
.choice.selected { border-color: var(--copper); background: color-mix(in oklab, var(--copper) 7%, var(--paper)); }
.choice .c-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
}
.choice .c-sub { font-size: 0.86rem; color: var(--taupe); }

.book-nav {
  margin-top: 2.6rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.book-back {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--taupe);
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
}
.book-back:hover { color: var(--ink); border-color: var(--taupe); }

/* final form */
.book-form { display: grid; gap: 1.6rem; max-width: 44rem; }
.bf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.bf-field { display: grid; gap: 0.5rem; }
.bf-field label {
  font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft);
}
.bf-field input, .bf-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 0.95rem 1.1rem;
  border-radius: 0;
  transition: border-color 0.35s var(--ease-out);
}
.bf-field input:hover, .bf-field textarea:hover { border-color: var(--taupe); }
.bf-field input:focus, .bf-field textarea:focus { border-color: var(--copper); outline: none; }
.bf-field textarea { min-height: 8rem; resize: vertical; }

.bf-upload {
  border: 1px dashed var(--taupe);
  padding: 1.6rem;
  text-align: center;
  color: var(--taupe);
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.35s var(--ease-out), color 0.35s var(--ease-out);
}
.bf-upload:hover { border-color: var(--copper); color: var(--ink); }
.bf-upload input { display: none; }

.summary-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 0.4rem; }
.summary-chips button {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  background: var(--paper);
  color: var(--ink-soft);
  border: 1px solid var(--rule);
  padding: 0.5rem 0.9rem;
  cursor: pointer;
  transition: border-color 0.3s var(--ease-out);
}
.summary-chips button:hover { border-color: var(--copper); }
.summary-chips button span { color: var(--copper-deep); margin-left: 0.4rem; }

.book-confirm { text-align: left; max-width: 46ch; }
.book-confirm .confirm-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--copper);
  line-height: 1;
  margin-bottom: 1.4rem;
}
.book-confirm h2 { margin-bottom: 1rem; }
.book-confirm p { color: var(--ink-soft); }
.book-confirm p + p { margin-top: 0.9rem; }

/* ---------- responsive ---------- */

@media (max-width: 1330px) {
  .site-nav { gap: 1.5rem; }
  .header-phone { display: none; }
  .header-book { padding: 0.85rem 1.2rem; }
}

@media (max-width: 1024px) {
  .site-nav { display: none; }
  .header-phone { display: block; }
  .site-header { grid-template-columns: 1fr auto; }
  .andrea-media { grid-column: 1 / 13; margin-bottom: 3rem; }
  .andrea-copy { grid-column: 1 / 13; }
  .process-rail { position: static; grid-column: 1 / 13; margin-bottom: 3rem; }
  .process-steps { grid-column: 1 / 13; }
  .story-feature figure { grid-column: 1 / 13; margin-bottom: 2.5rem; }
  .story-feature blockquote { grid-column: 1 / 13; }
  .visit-main { grid-column: 1 / 13; }
  .visit-aside { grid-column: 1 / 13; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .book-shell { grid-template-columns: 1fr; }
  .book-rail { position: static; height: auto; min-height: 0; gap: 1.6rem; }
  .book-rail-mid p { display: none; }
}

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; padding-top: 7rem; }
  .hero-copy { grid-column: 1; }
  .hero-media {
    grid-column: 1; grid-row: auto;
    margin-top: 3rem;
    min-height: 24rem;
  }
  .hero-img-main { inset: 0 0 12% 18%; }
  .hero-img-inset { left: 0; width: 46%; }
  .hero-side { display: none; }
  .doors { grid-template-columns: 1fr; }
  .door + .door { border-left: none; border-top: 1px solid var(--rule); }
  .door { min-height: 72vh; }
  .g-grid > .g-item { grid-column: 1 / 13 !important; margin-top: 0 !important; }
  .g-grid { row-gap: 3rem; }
  .story-row { grid-template-columns: 1fr; }
  .bands { grid-template-columns: 1fr; }
  .band + .band { border-left: none; }
  .journal-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .journal-item .j-num { display: none; }
  .mobile-bar { display: grid; }
  body { padding-bottom: 3.6rem; }
  .header-phone, .header-book { display: none; }
  .choice-grid { grid-template-columns: 1fr; }
  .bf-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Interior pages (multi-page build)
   ============================================================ */

/* ---------- mobile menu ---------- */

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--rule);
  padding: 0.7rem 1rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}
@media (max-width: 1024px) {
  .menu-toggle { display: inline-flex; align-items: center; gap: 0.5rem; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--bone);
  display: none;
  flex-direction: column;
  padding: 1.2rem var(--gutter) 3rem;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mm-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2.5rem; }
.mm-close {
  background: none; border: 1px solid var(--rule); cursor: pointer;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink);
  padding: 0.7rem 1rem;
}
.mobile-menu nav { display: grid; gap: 0; border-top: 1px solid var(--rule); }
.mobile-menu nav a {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-menu nav a .arrow { color: var(--copper); font-size: 1.2rem; }
.mm-foot { margin-top: 2rem; display: grid; gap: 1rem; }
.mm-foot .btn { justify-content: center; }
.mm-foot .header-phone { display: block; text-align: center; font-size: 1rem; }

/* ---------- interior page hero ---------- */

.page-hero {
  padding: clamp(8rem, 16vh, 11rem) var(--gutter) clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: clamp(1rem, 2.5vw, 2.5rem);
  row-gap: 2.5rem;
  align-items: end;
}
.page-hero .ph-copy { grid-column: 1 / 9; }
.page-hero .label { display: block; margin-bottom: 1.2rem; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6.5vw, 6rem);
  line-height: 1.0;
  letter-spacing: -0.01em;
  max-width: 14ch;
}
.page-hero h1 em { font-style: italic; color: var(--copper-deep); }
.page-hero .ph-lede {
  margin-top: 1.6rem;
  max-width: 54ch;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.15vw, 1.15rem);
}
.page-hero .ph-aside {
  grid-column: 10 / 13;
  border-top: 1px solid var(--copper);
  padding-top: 1.1rem;
  font-size: 0.9rem;
  color: var(--taupe);
}
.page-hero.dark-hero { background: var(--night); color: var(--bone-on-dark); }
.page-hero.dark-hero h1 em { color: var(--copper); }
.page-hero.dark-hero .ph-lede { color: var(--taupe-on-dark); }
@media (max-width: 860px) {
  .page-hero .ph-copy { grid-column: 1 / 13; }
  .page-hero .ph-aside { grid-column: 1 / 13; }
}

/* ---------- breadcrumb ---------- */

.crumb {
  display: flex; gap: 0.7rem; align-items: center;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 1.4rem;
}
.crumb a:hover { color: var(--copper-deep); }
.crumb span { color: var(--copper); }

/* ---------- prose / article ---------- */

.prose { max-width: 68ch; }
.prose p { margin-bottom: 1.3rem; color: var(--ink-soft); }
.prose p:last-child { margin-bottom: 0; }
.prose h2, .prose h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  margin: 2.4rem 0 1rem;
  color: var(--ink);
}
.prose strong { font-weight: 500; color: var(--ink); }

.article-hero-img { margin: 0 0 2.5rem; }
.article-hero-img img { width: 100%; max-height: 30rem; object-fit: cover; }
.article-meta {
  display: flex; gap: 1.4rem;
  font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 2rem;
}

/* ---------- split editorial block ---------- */

.split {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: clamp(1rem, 2.5vw, 2.5rem);
  row-gap: 2.5rem;
  align-items: center;
}
.split .split-media { grid-column: 1 / 6; }
.split .split-copy { grid-column: 7 / 13; }
.split.rev .split-media { grid-column: 8 / 13; grid-row: 1; }
.split.rev .split-copy { grid-column: 1 / 7; grid-row: 1; }
.split .split-copy h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.08;
  margin-bottom: 1.2rem;
  max-width: 18ch;
}
.split .split-copy h2 em { font-style: italic; color: var(--copper-deep); }
.split .split-media img { width: 100%; }
@media (max-width: 860px) {
  .split .split-media, .split .split-copy,
  .split.rev .split-media, .split.rev .split-copy { grid-column: 1 / 13; grid-row: auto; }
}

/* ---------- catalog ---------- */

.catalog { padding: 0 var(--gutter) var(--space-section); }

.filter-bar {
  position: sticky;
  top: 4.2rem;
  z-index: 40;
  background: color-mix(in oklab, var(--bone) 94%, transparent);
  backdrop-filter: blur(10px);
  border-block: 1px solid var(--rule);
  margin: 0 calc(-1 * var(--gutter)) clamp(2rem, 4vw, 3.5rem);
  padding: 0.9rem var(--gutter);
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.6rem;
  align-items: center;
}
.filter-bar .f-count {
  margin-left: auto;
  font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--taupe);
  white-space: nowrap;
}
.f-group { display: flex; align-items: center; gap: 0.6rem; }
.f-group > label {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--taupe);
}
.f-group select {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--taupe);
  padding: 0.35rem 1.4rem 0.35rem 0.2rem;
  border-radius: 0;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='6'%3E%3Cpath d='M1 1l3.5 3.5L8 1' fill='none' stroke='%23948372'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.2rem center;
}
.f-group select:focus { outline: none; border-color: var(--copper); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  gap: clamp(1.4rem, 2.5vw, 2.4rem) clamp(1rem, 2vw, 1.8rem);
}
.p-card { cursor: pointer; background: none; border: none; padding: 0; text-align: left; font-family: var(--font-body); }
.p-media {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
}
.p-media img {
  width: 100%; height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.9s var(--ease-out);
}
.p-card:hover .p-media img { transform: scale(1.045); }
.p-info { padding-top: 0.9rem; display: grid; gap: 0.25rem; }
.p-title {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-price { font-size: 0.9rem; color: var(--ink-soft); }
.p-fin { font-size: 0.76rem; color: var(--taupe); }
.p-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--taupe);
  padding: 4rem 1rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
}

/* product detail overlay */
.p-overlay {
  position: fixed; inset: 0; z-index: 160;
  background: oklch(20% 0.01 60 / 0.5);
  display: none;
  align-items: center; justify-content: center;
  padding: 1.2rem;
}
.p-overlay.open { display: flex; }
.p-sheet {
  background: var(--bone);
  max-width: 56rem;
  width: 100%;
  max-height: 92svh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.p-sheet .ps-media { background: var(--paper); display: flex; align-items: center; justify-content: center; padding: 1.5rem; }
.p-sheet .ps-media img { width: 100%; height: auto; mix-blend-mode: multiply; }
.p-sheet .ps-body { padding: clamp(1.5rem, 3vw, 2.5rem); display: flex; flex-direction: column; gap: 1rem; }
.p-sheet .ps-body h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; line-height: 1.2; }
.p-sheet .ps-price { font-size: 1.15rem; }
.p-sheet .ps-fin { font-size: 0.85rem; color: var(--taupe); }
.p-sheet .ps-desc { font-size: 0.92rem; color: var(--ink-soft); }
.p-sheet .ps-meta { display: grid; gap: 0.4rem; font-size: 0.82rem; color: var(--taupe); border-top: 1px solid var(--rule); padding-top: 1rem; }
.p-sheet .ps-close {
  align-self: flex-end;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe);
  padding: 0.4rem 0;
}
.p-sheet .ps-close:hover { color: var(--ink); }
.p-sheet .btn { margin-top: auto; justify-content: center; }
@media (max-width: 700px) { .p-sheet { grid-template-columns: 1fr; } }

/* catalog page CTA band */
.catalog-cta {
  border-top: 1px solid var(--rule);
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 3rem;
  align-items: center;
  justify-content: space-between;
}
.catalog-cta p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  max-width: 26ch;
}
.catalog-cta p em { font-style: italic; color: var(--copper-deep); }

/* ---------- before / after ---------- */

.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(19rem, 1fr));
  gap: clamp(1.4rem, 2.5vw, 2.4rem);
}
.ba-item figure { overflow: hidden; background: var(--paper); border: 1px solid var(--rule); }
.ba-item img { width: 100%; transition: transform 0.9s var(--ease-out); }
.ba-item:hover img { transform: scale(1.03); }
.ba-item figcaption {
  padding: 0.9rem 0 0;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* ---------- reviews wall ---------- */

.review-wall { columns: 2; column-gap: clamp(2rem, 4vw, 3.5rem); }
.review-wall blockquote {
  break-inside: avoid;
  border-top: 1px solid var(--rule);
  padding: 1.8rem 0 2.2rem;
}
.review-wall blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.45;
}
.review-wall blockquote p::before { content: "\201C"; color: var(--copper); }
.review-wall blockquote p::after { content: "\201D"; color: var(--copper); }
.review-wall cite {
  display: block; margin-top: 1rem; font-style: normal;
  font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--taupe);
}
@media (max-width: 860px) { .review-wall { columns: 1; } }

/* ---------- journal list page ---------- */

.post-list { border-top: 1px solid var(--rule); }
.post-item {
  display: grid;
  grid-template-columns: minmax(8rem, 14rem) 1fr auto;
  gap: clamp(1.4rem, 3.5vw, 3rem);
  align-items: center;
  padding: clamp(1.6rem, 3vw, 2.4rem) 0;
  border-bottom: 1px solid var(--rule);
}
.post-item .pi-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper); }
.post-item .pi-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-out); }
.post-item:hover .pi-media img { transform: scale(1.04); }
.post-item h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  transition: color 0.4s var(--ease-out);
}
.post-item:hover h2 { color: var(--copper-deep); }
.post-item .pi-ex { margin-top: 0.6rem; color: var(--taupe); font-size: 0.92rem; max-width: 56ch; }
.post-item .arrow { color: var(--copper); }
@media (max-width: 700px) {
  .post-item { grid-template-columns: 1fr; }
  .post-item .arrow { display: none; }
}

/* ---------- contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: clamp(1rem, 2.5vw, 2.5rem);
  row-gap: 3rem;
}
.contact-grid .cg-form { grid-column: 1 / 8; }
.contact-grid .cg-info { grid-column: 9 / 13; display: grid; gap: 1.8rem; align-content: start; }
@media (max-width: 860px) {
  .contact-grid .cg-form, .contact-grid .cg-info { grid-column: 1 / 13; }
}

/* ---------- steps (numbered, light) ---------- */

.steps-light { display: grid; gap: clamp(2rem, 4vw, 3rem); }
.step-l {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.4rem, 3vw, 2.6rem);
  padding-top: clamp(1.4rem, 2.5vw, 2rem);
  border-top: 1px solid var(--rule);
}
.step-l .step-num { color: var(--copper); font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.6rem); line-height: 0.9; min-width: 2ch; }
.step-l h3 { font-family: var(--font-display); font-weight: 400; font-size: var(--step-h3); margin-bottom: 0.6rem; }
.step-l p { color: var(--ink-soft); max-width: 56ch; }

/* ---------- refinement pass ---------- */

.site-nav a[aria-current="page"] {
  border-bottom-color: var(--copper);
  color: var(--copper-deep);
}

.page-hero .ph-media {
  grid-column: 9 / 13;
  display: grid;
  gap: 1.4rem;
  align-self: start;
}
.page-hero .ph-media figure {
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--paper);
}
.page-hero .ph-media img { width: 100%; height: auto; }
.page-hero .ph-media .ph-aside {
  grid-column: auto;
  border-top: 1px solid var(--copper);
  padding-top: 1rem;
}
@media (max-width: 860px) {
  .page-hero .ph-media { grid-column: 1 / 13; max-width: 24rem; }
}

.ph-lede .lede-link {
  border-bottom: 1px solid var(--copper);
  transition: color 0.35s var(--ease-out);
}
.ph-lede .lede-link:hover { color: var(--copper-deep); }

.prose ul { margin: 0 0 1.3rem 1.2rem; color: var(--ink-soft); }
.prose ul li { margin-bottom: 0.5rem; padding-left: 0.3rem; }
.prose ul li::marker { color: var(--copper); }

.article-hero-img { max-width: 44rem; }
.article-hero-img img { max-height: 24rem; width: 100%; object-fit: cover; }

/* ---------- type legibility pass (EB Garamond) ----------
   Garamond needs a touch more weight than Bodoni did at small
   and mid display sizes; large headings stay 400. */

.wordmark { font-weight: 500; }
.step h3, .step-l h3,
.door h3,
.g-cap strong,
.p-title,
.choice .c-title,
.p-sheet .ps-body h3,
.band .band-price,
.journal-item h3,
.post-item h2,
.visit-phone { font-weight: 500; }
.g-cap strong { font-size: 1.2rem; }
.p-title { font-size: 1.08rem; }
.display, .section-head h2, .page-hero h1 { letter-spacing: 0; }
