/* =========================================================
   Art by Sandhya — Threshold of the Atelier
   v1 prototype — Agent 12 re-run
   ========================================================= */

:root {
  /* FINAL PALETTE — Coral × Sage (variant B chosen 2026-05-12) */
  --linen: #FBF7EE;       /* cream paper */
  --ink: #1A1A14;         /* charcoal */
  --kumkum: #C24E3A;      /* coral red accent */
  --brass: #B8832A;       /* gold */
  --viridian: #4A5D45;    /* deep sage chrome */
  --sienna: #A8B099;      /* sage mat */

  --max: 1440px;
  --gutter: 64px;
  --gutter-narrow: 880px;

  --f-display: "Fraunces", serif;
  --f-body: "Newsreader", "Times New Roman", serif;
}

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

html, body { margin: 0; padding: 0; max-width: 100%; overflow-x: hidden; }

body {
  background: var(--linen);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  width: 100%;
}
section, footer, header { max-width: 100%; }

/* Page-frame Pichwai border — REMOVED per user request */

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

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

/* ---------- Typography ---------- */
.kicker {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.kicker.brass { color: var(--brass); }
.kicker.ink { color: var(--ink); }

.eyebrow {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0;
}
.eyebrow-light { color: var(--linen); }

.display-1, .display-2, .hero-display {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-weight: 200;
  letter-spacing: -0.008em;
  line-height: 1.08;
  margin: 0;
}
.display-1 { font-size: clamp(40px, 5.2vw, 64px); }
.display-2 { font-size: clamp(28px, 3.4vw, 44px); }
.italic { font-style: italic; }
.roman { font-style: normal; font-weight: 400; }

.body { font-size: 17px; line-height: 1.6; color: rgba(26,18,9,0.9); margin: 0 0 16px; }

.meta {
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin: 12px 0;
}

.center-text { text-align: center; }
.center { display: flex; justify-content: center; }

/* ---------- Containers ---------- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container.narrow {
  max-width: 880px;
}

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--kumkum);
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--linen);
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0 24px;
  margin-top: 0;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--viridian);
  height: 96px;
  position: relative;
}
.hdr-inner {
  max-width: var(--max);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 48px;
}
.nav {
  display: flex;
  gap: 32px;
}
.nav-left { justify-content: flex-end; }
.nav-right { justify-content: flex-start; }
.nav a {
  color: var(--linen);
  opacity: 0.92;
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  transition: opacity 200ms ease-out;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--brass);
  transition: right 200ms ease-out;
}
.nav a:hover { opacity: 1; }
.nav a:hover::after { right: 0; }

.wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  color: var(--linen);
}
.wm-tier1 {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.12em;
  opacity: 0.85;
  margin-bottom: 2px;
}
.wm-tier2 {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 200;
  font-variation-settings: "opsz" 36, "SOFT" 35;
  font-size: 28px;
  letter-spacing: 0.005em;
}

.hamburger {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--linen);
  margin: 5px 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-body);
  font-size: 14px;
  letter-spacing: 0.10em;
  padding: 16px 32px;
  transition: all 200ms ease-out;
  cursor: pointer;
  text-align: center;
  line-height: 1.2;
}
.btn-brass {
  border: 1px solid var(--brass);
  background: transparent;
  color: var(--ink);
}
.btn-brass:hover {
  border-width: 2px;
  padding: 15px 31px;
  background: rgba(237, 229, 208, 0.4);
}
.btn-brass.btn-on-image {
  color: var(--linen);
}
.btn-brass.btn-on-image:hover {
  background: rgba(237, 229, 208, 0.06);
}
.btn-viridian {
  border: 1px solid var(--viridian);
  background: transparent;
  color: var(--viridian);
}
.btn-viridian:hover {
  border-width: 2px;
  padding: 15px 31px;
}
.btn.full { width: 100%; }
.btn-kumkum-pill {
  background: var(--kumkum);
  color: var(--linen);
  border-radius: 999px;
  padding: 18px 40px;
  font-weight: 400;
  max-width: 480px;
  width: 100%;
}
.btn-kumkum-pill:hover { background: #7a3119; }

.btn-inverse-pill {
  background: var(--linen);
  color: var(--kumkum);
  border-radius: 999px;
  height: 56px;
  padding: 0 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  position: relative;
  box-shadow: inset 0 0 0 1px var(--brass);
  margin-top: 16px;
}

.link-kumkum {
  color: var(--kumkum);
  border-bottom: 1px solid var(--kumkum);
  display: inline-block;
  padding-bottom: 2px;
  font-size: 14px;
}

/* ---------- HERO (Pichwai canopy pattern) ---------- */
.hero {
  position: relative;
  background: var(--linen);
  overflow: hidden;
  padding-top: 24px;
  border-top: 1px solid rgba(184, 131, 42, 0.18);
}
.hero-canopy {
  width: 100%;
  height: auto;
  display: block;
  background: var(--linen);
}
/* Cream fade across the lower edge of the canopy — softens into the text zone */
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: calc(24px + 28vw);
  height: 14vw;
  background: linear-gradient(to bottom,
    rgba(237, 229, 208, 0) 0%,
    rgba(237, 229, 208, 0.6) 50%,
    var(--linen) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
  /* Pull text up into the canopy's natural cream zone */
  margin-top: -14vw;
  padding: 0 var(--gutter) 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--kumkum);
}
.hero-display {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 200;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 32ch;
  margin: 0 auto;
}
.hero-sub {
  margin: 26px auto 0;
  max-width: 56ch;
  color: rgba(26, 18, 9, 0.72);
  font-size: 17px;
  line-height: 1.6;
}
.hero-cta-row {
  margin-top: 36px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
@media (max-width: 767px) {
  .hero::after { top: calc(24px + 38vw); height: 18vw; }
  .hero-content { margin-top: -16vw; padding-bottom: 48px; }
}

/* ---------- Quote section ---------- */
.quote-section {
  padding: 128px 0;
  background: var(--linen);
}
.brass-rule {
  width: 48px;
  height: 1px;
  background: var(--brass);
  margin: 0 auto 24px;
}
.quote {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 200;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.18;
  letter-spacing: -0.008em;
  color: var(--ink);
  margin: 0;
}
.attribution {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 32px;
}
.attribution.kumkum { color: var(--kumkum); }

/* ---------- Studio This Month ---------- */
.studio-month {
  padding: 96px 0;
  background: var(--linen);
}
.two-up {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 64px;
  align-items: center;
}
.sienna-mat {
  background: var(--sienna);
  padding: 16px;
  box-shadow: 0 8px 24px rgba(26, 18, 9, 0.12);
}
.easel-card {
  padding: 24px 0;
}
.easel-card .display-2 { margin-bottom: 12px; }
.price {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 28px;
  margin: 12px 0 4px;
}
.price-gst {
  display: inline-block;
  margin-left: 12px;
  font-family: var(--f-body);
  font-size: 12px;
  color: rgba(26,18,9,0.6);
}
.lead-time {
  font-style: italic;
  font-size: 15px;
  color: rgba(26,18,9,0.85);
  margin: 16px 0 32px;
}
.easel-card .btn { margin-top: 12px; }

/* ---------- Sacred Geography ---------- */
.sacred-geo {
  padding: 96px 0;
  background: var(--linen);
}
.sacred-geo .display-1 { max-width: 720px; margin-bottom: 56px; }
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 320px 320px;
  gap: 16px;
}
.tile {
  position: relative;
  overflow: hidden;
  display: block;
  transition: transform 300ms ease-out;
}
.tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tile-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,18,9,0) 60%, rgba(26,18,9,0.55) 100%);
}
.tile-label {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  color: var(--linen);
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 200;
  font-variation-settings: "opsz" 72, "SOFT" 40;
  font-size: clamp(20px, 2vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.005em;
}
.tile-feature { grid-column: span 7; grid-row: span 2; }
.tile-a { grid-column: span 5; grid-row: span 1; }
.tile-b { grid-column: span 3; grid-row: span 1; }
.tile-c { grid-column: span 2; grid-row: span 1; }
.tile-d { grid-column: span 3; grid-row: span 1; }
.tile-e { grid-column: span 2; grid-row: span 1; }
.tile:hover { transform: translateY(-4px); }

/* ---------- From the Studio (Raw Sienna) ---------- */
.from-studio {
  padding: 64px 0;
  background: var(--sienna);
}
.from-studio .display-2 { margin-bottom: 48px; }
.macro-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.macro-cell { text-align: left; }
.macro-label {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 16px 0 8px;
}
.macro-caption {
  font-style: italic;
  font-size: 14px;
  color: rgba(26,18,9,0.85);
  margin: 0;
}

/* ---------- Artist Anchor ---------- */
.artist-anchor {
  padding: 128px 0;
  background: var(--linen);
}
.artist-grid {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 64px;
  align-items: start;
}
.portrait-wrap {
  margin-top: 80px;
}
.portrait { margin-bottom: 32px; }
.artist-note .display-2 { margin-bottom: 16px; }
.artist-note .body { max-width: 38ch; }
.signature {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 14px;
  color: var(--brass);
  margin: 16px 0;
}

/* ---------- Commission ---------- */
.commission {
  padding: 96px 0;
  background: var(--linen);
}
.commission .display-2 { margin-bottom: 64px; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 80px;
  position: relative;
}
.step {
  padding: 0 16px;
  position: relative;
}
.step + .step::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: var(--brass);
  opacity: 0.6;
}
.step-num {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 200;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: 88px;
  line-height: 1;
  color: var(--brass);
  margin-bottom: 24px;
}
.step-label {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.step-body {
  font-size: 15px;
  color: rgba(26,18,9,0.85);
  margin: 0;
  max-width: 28ch;
}

/* ---------- In situ ---------- */
.in-situ {
  padding: 96px 0;
  background: var(--linen);
}
.situ-grid {
  display: grid;
  grid-template-columns: 60% 20% 20%;
  gap: 16px;
  align-items: stretch;
}
.situ-feature .placeholder,
.situ-side .placeholder { height: 100%; min-height: 360px; }
.situ-caption {
  text-align: center;
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26,18,9,0.7);
  margin: 32px 0 0;
}

/* ---------- What you receive (Raw Sienna) ---------- */
.what-receive {
  padding: 64px 0;
  background: var(--sienna);
}
.what-receive .display-2 { margin-bottom: 56px; }
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
}
.trust-cell { padding: 0 24px; }
.trust-motif {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.trust-label {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.trust-body {
  font-style: italic;
  font-size: 15px;
  color: rgba(26,18,9,0.85);
  margin: 0;
  max-width: 32ch;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Editorial essay ---------- */
.editorial {
  padding: 128px 0;
  background: var(--linen);
  position: relative;
}
.brass-vert {
  width: 1px;
  height: 48px;
  background: var(--brass);
  margin: 0 auto 24px;
}
.editorial .display-2 { margin-bottom: 24px; }
.dek {
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: rgba(26,18,9,0.85);
  max-width: 56ch;
  margin: 0 auto 32px;
}

/* ---------- Kumkum closing band — demoted to linen with accent details ---------- */
.whatsapp-close {
  padding: 96px 0;
  background: var(--linen);
  color: var(--ink);
  position: relative;
}
.whatsapp-close::before,
.whatsapp-close::after {
  content: "";
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 48px; height: 1px;
  background: var(--brass);
  opacity: 0.6;
}
.whatsapp-close::before { top: 48px; }
.whatsapp-close::after { bottom: 48px; }
.on-kumkum { color: var(--ink); }
.whatsapp-close .display-1 {
  font-style: italic;
  font-weight: 200;
  line-height: 1.1;
  max-width: 880px;
  margin: 0 auto;
  color: var(--ink);
}
.whatsapp-close .subhead {
  font-style: italic;
  font-size: 19px;
  color: rgba(26,18,9,0.7);
  margin: 24px 0 40px;
}
.secondary-line {
  font-style: italic;
  font-size: 14px;
  color: rgba(26,18,9,0.55);
  margin: 28px 0 0;
}
/* Closing-band pill — now solid accent on linen */
.whatsapp-close .btn-inverse-pill {
  background: var(--kumkum);
  color: var(--linen);
  box-shadow: inset 0 0 0 1px var(--kumkum);
}
.whatsapp-close .btn-inverse-pill:hover {
  background: var(--ink);
  color: var(--linen);
  box-shadow: inset 0 0 0 1px var(--ink);
}

/* ---------- Placeholders ---------- */
.placeholder {
  background: repeating-linear-gradient(
    45deg,
    #ff00ff 0px,
    #ff00ff 8px,
    #d600d6 8px,
    #d600d6 16px
  );
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 24px;
  line-height: 1.5;
  position: relative;
  overflow: hidden;
}
/* When a placeholder wraps an image, the image covers the magenta and the label hides */
.placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.placeholder:has(img) > span { display: none; }
.ph-1-1 { aspect-ratio: 1 / 1; }
.ph-4-5 { aspect-ratio: 4 / 5; }
.ph-3-4 { aspect-ratio: 3 / 4; }
.ph-3-2 { aspect-ratio: 3 / 2; }

/* ---------- Footer — dark chrome, the-wall-shawl pattern ---------- */
.site-footer {
  position: relative;
  margin: 0;
  width: 100%;
  color: var(--linen);
  background: var(--viridian);
  padding: 72px 0 28px;
  border-top: 1px solid rgba(184, 131, 42, 0.25);
}
.footer-inner {
  background: transparent;
  padding: 0 var(--gutter);
  border-top: 1px solid rgba(184, 131, 42, 0.4);
  border-bottom: 1px solid rgba(184, 131, 42, 0.25);
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(184, 131, 42, 0.25);
}
.fcol { display: flex; flex-direction: column; gap: 10px; }
.fcol-brand { gap: 14px; }
.brand-wordmark {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--linen);
  margin: 0;
}
.brand-blurb {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(26, 18, 9, 0.72);
  max-width: 36ch;
  margin: 0;
}
.brand-deva {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--brass);
  margin: 4px 0 0;
}
.fcol-h {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 14px;
}
.fcol a {
  color: rgba(26, 18, 9, 0.72);
  font-size: 14px;
  transition: color 200ms, border-color 200ms;
  border-bottom: 1px solid transparent;
  display: inline-block;
  padding-bottom: 1px;
  width: max-content;
}
.fcol a:hover {
  color: var(--ink);
  border-bottom-color: var(--brass);
}
.newsletter {
  display: flex;
  border: 1px solid var(--brass);
  background: rgba(237, 229, 208, 0.5);
  margin-top: 6px;
}
.newsletter input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 12px 14px;
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 14px;
  font-style: italic;
}
.newsletter input::placeholder { color: rgba(26, 18, 9, 0.45); }
.newsletter input:focus { outline: none; }
.newsletter button {
  background: var(--brass);
  border: 0;
  color: var(--linen);
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0 18px;
  cursor: pointer;
}
.news-blurb {
  font-size: 12px;
  font-style: italic;
  color: rgba(26, 18, 9, 0.6);
  margin: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(184, 131, 42, 0.35);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  font-size: 13px;
  color: rgba(26, 18, 9, 0.6);
  line-height: 1.55;
  flex-wrap: wrap;
}
.footer-disclaimer {
  max-width: 70%;
  line-height: 1.55;
}
.footer-legal-links { display: inline-flex; gap: 14px; flex-wrap: wrap; }
.footer-legal-links a {
  color: rgba(26, 18, 9, 0.6);
  transition: color 200ms;
}
.footer-legal-links a:hover { color: var(--ink); }
/* Footer signoff — inline meta row inside dark footer */
.footer-signoff {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 28px;
  margin-top: 24px;
  border-top: 1px solid rgba(184, 131, 42, 0.18);
  gap: 24px;
  flex-wrap: wrap;
}
.legal {
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(251, 247, 238, 0.6);
  margin: 0;
  text-transform: none;
}
.signature-mark {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  color: var(--brass);
  margin: 0;
  letter-spacing: 0.005em;
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--viridian);
  color: var(--linen);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(26,18,9,0.18),
              inset 0 0 0 1px var(--brass);
  z-index: 90;
  transition: all 200ms ease-out;
  opacity: 0;
  pointer-events: none;
}
.wa-float.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.wa-float:hover {
  width: 60px;
  height: 60px;
  box-shadow: 0 10px 28px rgba(26,18,9,0.22),
              inset 0 0 0 2px var(--brass);
}

/* ---------- Motion / Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.hero-content.reveal {
  transition: opacity 1200ms ease-out;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 1023px) {
  :root { --gutter: 32px; }
  .two-up,
  .artist-grid { grid-template-columns: 1fr; gap: 32px; }
  .portrait-wrap { margin-top: 0; }
  .macro-strip { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .trust-row { grid-template-columns: 1fr; gap: 32px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .situ-grid { grid-template-columns: 1fr; }
  .bento {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 280px 220px 220px;
  }
  .tile-feature { grid-column: span 6; grid-row: span 1; }
  .tile-a, .tile-b, .tile-c, .tile-d, .tile-e { grid-column: span 3; grid-row: span 1; }
}

@media (max-width: 639px) {
  :root { --gutter: 20px; }
  .nav { display: none; }
  .hamburger { display: block; justify-self: start; }
  .hdr-inner { grid-template-columns: 40px 1fr 40px; }
  .nav-right { display: none; }
  .wm-tier2 { font-size: 24px; }
  .hero-display { font-size: 36px; }
  .quote { font-size: 32px; }
  .quote-section,
  .artist-anchor,
  .editorial { padding: 64px 0; }
  .studio-month,
  .sacred-geo,
  .commission,
  .in-situ { padding: 56px 0; }
  .whatsapp-close { padding: 96px 0; }
  .from-studio,
  .what-receive { padding: 48px 0; }
  .macro-strip { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step + .step::before { display: none; }
  .site-footer { padding: 48px 16px; width: 96%; }
  .footer-inner { padding: 36px 24px; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .footer-disclaimer { max-width: 100%; }
  .announce { font-size: 10px; letter-spacing: 0.14em; }
}

/* Room-hero overrides (replaces canopy floating text) */
.hero { padding-top: 0; border-top: 0; }
.hero-room { width: 100%; height: auto; max-height: 88vh; object-fit: cover; display: block; }
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.32) 75%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
  z-index: 1;
  top: auto;
  height: auto;
}
.hero-content {
  position: absolute;
  left: 0; right: 0;
  bottom: 8%;
  margin-top: 0;
  z-index: 2;
  color: var(--linen);
  text-align: center;
}
.hero-content .hero-eyebrow { color: var(--linen); opacity: 0.92; }
.hero-content .hero-display { color: var(--linen); }
.hero-content .hero-sub { color: rgba(255,255,255,0.88); }

/* ---------- 3-tier header (wall-shawl pattern) ---------- */
.util-bar {
  background: var(--viridian);
  color: var(--linen);
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.util-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 9px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.util-left { opacity: 0.92; }
.util-right { display: flex; gap: 28px; align-items: center; }
.util-right a {
  color: var(--linen);
  opacity: 0.85;
  transition: opacity 200ms ease-out;
}
.util-right a:hover { opacity: 1; }
.util-right .sep { opacity: 0.5; margin: 0 4px; }

.site-header {
  background: var(--linen);
  height: 80px;
  position: relative;
  border-bottom: 1px solid rgba(26,18,9,0.08);
}
.hdr-inner {
  max-width: var(--max);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 48px;
}
.hdr-left { display: flex; align-items: center; gap: 36px; }
.hdr-right { display: flex; align-items: center; gap: 28px; justify-content: flex-end; }

.shop-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--viridian);
  color: var(--linen);
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 11px 28px;
  border-radius: 999px;
  transition: opacity 200ms ease-out;
}
.shop-pill:hover { opacity: 0.88; }

.site-header .nav a {
  color: var(--ink);
  opacity: 0.86;
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  transition: opacity 200ms ease-out;
}
.site-header .nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--brass);
  transition: right 200ms ease-out;
}
.site-header .nav a:hover { opacity: 1; }
.site-header .nav a:hover::after { right: 0; }

.wordmark { color: var(--ink); }
.wordmark .wm-tier1 { color: var(--ink); opacity: 0.65; }
.wordmark .wm-tier2 { color: var(--ink); }

.hdr-icons { display: flex; align-items: center; gap: 18px; margin-left: 8px; }
.hdr-icons a {
  color: var(--ink);
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: opacity 200ms ease-out;
}
.hdr-icons a:hover { opacity: 1; }
.hdr-icons .cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--ink);
  color: var(--linen);
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.subnav {
  background: var(--linen);
  border-bottom: 1px solid rgba(26,18,9,0.08);
}
.subnav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.subnav-inner a {
  color: var(--ink);
  opacity: 0.78;
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 200ms, opacity 200ms;
}
.subnav-inner a:hover { opacity: 1; border-bottom-color: var(--brass); }

.announce { display: none; }

/* Footer text on dark chrome ground */
.site-footer .brand-wordmark,
.site-footer .fcol-h,
.site-footer .fcol h4 { color: var(--linen); }
.site-footer .brand-deva { color: var(--brass); }
.site-footer .fcol .brand-blurb,
.site-footer .fcol p,
.site-footer .fcol li { color: rgba(251, 247, 238, 0.78); }
.site-footer .fcol a {
  color: rgba(251, 247, 238, 0.85);
  border-bottom: 1px solid transparent;
}
.site-footer .fcol a:hover { color: var(--linen); border-bottom-color: var(--brass); }
.site-footer .footer-bottom,
.site-footer .footer-bottom a {
  color: rgba(251, 247, 238, 0.55);
}
.site-footer .footer-bottom a:hover { color: var(--linen); }
.site-footer input[type='email'] {
  background: rgba(251, 247, 238, 0.08);
  border: 1px solid rgba(184, 131, 42, 0.5);
  color: var(--linen);
  padding: 12px 16px;
}
.site-footer input[type='email']::placeholder { color: rgba(251, 247, 238, 0.5); }
.site-footer button[type='submit'] {
  background: var(--brass);
  color: var(--viridian);
  border: 0;
  padding: 12px 24px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  cursor: pointer;
}

/* =========================================================
   PDP — product.html
   ========================================================= */

/* Subnav current state */
.subnav-inner a.is-current {
  opacity: 1;
  border-bottom-color: var(--brass);
  color: var(--ink);
}

/* Breadcrumb */
.crumb {
  background: var(--linen);
  padding: 18px 0 0;
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26,18,9,0.6);
}
.crumb a {
  color: rgba(26,18,9,0.6);
  transition: color 200ms;
}
.crumb a:hover { color: var(--ink); }
.crumb-sep { margin: 0 10px; opacity: 0.5; }
.crumb-current { color: var(--ink); }

.pdp { background: var(--linen); }

/* PDP hero grid: gallery + buy box */
.pdp-hero {
  padding: 32px 0 72px;
  background: var(--linen);
}
.pdp-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

/* Gallery */
.pdp-gallery {
  position: sticky;
  top: 24px;
}
.pdp-main { margin-bottom: 18px; }
.pdp-main .sienna-mat { padding: 18px; }
.pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.pdp-thumb {
  background: transparent;
  border: 1px solid rgba(26,18,9,0.10);
  padding: 0;
  cursor: pointer;
  transition: border-color 200ms, box-shadow 200ms, transform 200ms;
}
.pdp-thumb .placeholder {
  font-size: 10px;
  padding: 8px;
}
.pdp-thumb.is-active {
  border-color: var(--brass);
  box-shadow: inset 0 0 0 1px var(--brass);
}
.pdp-thumb:hover { transform: translateY(-1px); }

/* Buy box */
.pdp-buy {
  padding-top: 8px;
}
.pdp-title { margin: 6px 0 8px; }
.pdp-meta { color: rgba(26,18,9,0.7); margin: 0 0 0; font-style: italic; font-size: 14px; }
.pdp-rule { margin: 28px 0 28px 0; }
.pdp-price {
  display: flex;
  align-items: baseline;
  gap: 0;
  flex-wrap: wrap;
  margin: 0 0 4px;
  font-size: 36px;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.pdp-price .price-from {
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26,18,9,0.55);
  margin-right: 10px;
  font-weight: 400;
}
.pdp-price .price-gst { margin-left: 14px; }
.lead-time { margin: 8px 0 28px; }

/* Option blocks */
.opt-block { margin-bottom: 24px; }
.opt-label {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 12px;
}
.opt-hint {
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.02em;
  color: rgba(26,18,9,0.55);
  font-size: 12px;
  margin-left: 6px;
}
.opt-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.opt {
  background: transparent;
  border: 1px solid rgba(26,18,9,0.18);
  padding: 12px 18px;
  font-family: var(--f-body);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 200ms, background 200ms, padding 200ms;
  line-height: 1.3;
}
.opt:hover { border-color: var(--brass); }
.opt.is-selected {
  border: 2px solid var(--brass);
  padding: 11px 17px;
  background: rgba(184, 131, 42, 0.06);
}
.opt-sub {
  display: block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(26,18,9,0.55);
  margin-top: 2px;
  font-style: italic;
}
.opt-custom { font-style: italic; }

/* CTA stack */
.pdp-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 32px 0 28px;
}

/* Quiet credibility list */
.pdp-cred {
  list-style: none;
  padding: 18px 0 0;
  margin: 0;
  border-top: 1px solid rgba(184, 131, 42, 0.25);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pdp-cred li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-style: italic;
  color: rgba(26,18,9,0.78);
  line-height: 1.5;
}
.pdp-cred svg { color: var(--brass); flex-shrink: 0; }

/* Composition note section — bordered cream panel inside maroon strip for visual chunk */
.composition-note {
  padding: 0;
  background: var(--viridian);
  position: relative;
}
.composition-note .container.narrow {
  background: var(--linen);
  padding: 80px 64px;
  max-width: 960px;
  border-left: 1px solid rgba(184, 131, 42, 0.4);
  border-right: 1px solid rgba(184, 131, 42, 0.4);
  position: relative;
}
.composition-note .container.narrow::before,
.composition-note .container.narrow::after {
  content: "";
  position: absolute;
  left: 64px; right: 64px;
  height: 1px;
  background: var(--brass);
  opacity: 0.4;
}
.composition-note .container.narrow::before { top: 0; }
.composition-note .container.narrow::after { bottom: 0; }
.composition-note .body-stack {
  max-width: 56ch;
  margin: 40px auto 0;
  text-align: left;
}
.composition-note .dek { margin-bottom: 18px; }
.composition-note .quote { font-size: clamp(24px, 4vw, 44px); }

/* PDP in-situ — sienna mat background to break the linen run */
.pdp-insitu {
  padding: 96px 0;
  background: var(--sienna);
}
.pdp-insitu .display-2 { margin-bottom: 48px; }
.pdp-insitu .kicker.brass,
.pdp-insitu .display-2 { color: var(--ink); }
.pdp-insitu .situ-caption { color: rgba(26,18,9,0.7); }
.pdp-insitu .situ-feature,
.pdp-insitu .situ-side {
  position: relative;
  overflow: hidden;
}
.pdp-insitu .situ-feature img,
.pdp-insitu .situ-side img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

/* PDP proofs — linen ground so it alternates with sienna in-situ above */
.pdp-proofs {
  background: var(--linen);
  padding: 80px 0;
}
.pdp-proofs .macro-cell img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  box-shadow: 0 6px 18px rgba(26,18,9,0.12);
}
.pdp-proofs .macro-label,
.pdp-proofs .macro-caption,
.pdp-proofs .display-2,
.pdp-proofs .kicker.ink { color: var(--ink); }

/* Spec sheet — sienna to alternate */
.pdp-specs {
  padding: 96px 0;
  background: var(--sienna);
}
.pdp-specs .kicker.brass,
.pdp-specs .display-2,
.pdp-specs .dek { color: var(--ink); }
.pdp-specs .spec-table { border-top-color: rgba(184, 131, 42, 0.5); }
.pdp-specs .spec-row { border-bottom-color: rgba(26,18,9,0.18); }
.pdp-specs .two-up {
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.spec-left .display-2 { margin-bottom: 20px; }
.spec-left .dek { margin-bottom: 16px; font-size: 17px; }
.spec-table {
  margin: 0;
  border-top: 1px solid rgba(184, 131, 42, 0.4);
}
.spec-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(26,18,9,0.08);
}
.spec-row dt {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26,18,9,0.7);
  margin: 0;
  padding-top: 2px;
}
.spec-row dd {
  margin: 0;
  font-size: 15px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.55;
}

/* Artist anchor — image override */
.artist-anchor .parikrama img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  box-shadow: 0 8px 24px rgba(26,18,9,0.12);
}

/* PDP artist-anchor — tighter spacing */
body.page-product .artist-anchor { padding: 80px 0; }
body.page-product .artist-anchor .portrait-wrap { margin-top: 24px; }

/* Related compositions */
.pdp-related {
  padding: 96px 0;
  background: var(--linen);
  border-top: 1px solid rgba(184, 131, 42, 0.18);
  border-bottom: 1px solid rgba(184, 131, 42, 0.18);
}
.related-head {
  margin-bottom: 56px;
  text-align: center;
  position: relative;
}
.related-head::before {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: var(--brass);
  margin: 0 auto 24px;
}
.related-head .display-2 { margin-top: 8px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
.card { display: block; transition: transform 200ms; }
.card:hover { transform: translateY(-4px); }
.card .sienna-mat { padding: 12px; margin-bottom: 16px; }
.card-title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.2;
}
.card-meta {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(26,18,9,0.55);
  margin: 0 0 8px;
}
.card-price {
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--ink);
  margin: 0;
}
.card-price .price-gst {
  font-size: 11px;
  margin-left: 8px;
  color: rgba(26,18,9,0.55);
}

/* Commission CTA drawer */
.commission .dek {
  max-width: 56ch;
  margin: 0 auto 40px;
}

/* PDP commission section — sienna mat to alternate rhythm */
body.page-product .commission {
  background: var(--sienna);
  padding: 80px 0;
}
body.page-product .commission .kicker.brass,
body.page-product .commission .display-2,
body.page-product .commission .dek { color: var(--ink); }

/* =========================================================
   ATELIER — atelier.html
   ========================================================= */
.atelier { background: var(--linen); }
.atelier-hero {
  padding: 80px 0 96px;
  background: var(--linen);
}
.atelier-hero-grid {
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.atelier-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  box-shadow: 0 12px 32px rgba(26,18,9,0.18);
}
.atelier-open .display-1 { margin: 16px 0 32px; max-width: 14ch; }
.atelier-open .dek { font-size: 19px; max-width: 48ch; margin-bottom: 24px; }
.atelier-open .brand-deva {
  font-family: var(--f-display);
  font-size: 40px;
  color: var(--brass);
  margin: 0;
}

.atelier-section {
  padding: 96px 0;
  background: var(--linen);
}
.atelier-section .display-2 { margin: 12px 0 40px; }
.atelier-sienna { background: var(--sienna); }
.atelier-sienna .display-2,
.atelier-sienna .body,
.atelier-sienna .kicker { color: var(--ink); }

.prose {
  max-width: 56ch;
  margin: 0 auto;
}
.prose p {
  font-family: var(--f-body);
  font-size: 18px;
  line-height: 1.7;
  color: rgba(26,18,9,0.88);
  margin: 0 0 24px;
}
.prose p:first-of-type::first-letter {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 64px;
  float: left;
  line-height: 0.85;
  padding: 6px 12px 0 0;
  color: var(--brass);
}

.atelier-imgrow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.atelier-imgrow img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  box-shadow: 0 8px 24px rgba(26,18,9,0.15);
}

.parikrama-notes .quote { margin-top: 32px; }

.atelier-visit {
  background: var(--linen);
  border-top: 1px solid rgba(184, 131, 42, 0.18);
}
.atelier-visit .two-up {
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.atelier-visit .display-2 { margin: 12px 0 20px; }
.atelier-visit .body { margin-bottom: 28px; }

@media (max-width: 1023px) {
  .atelier-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .atelier-visit .two-up { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 639px) {
  .atelier-hero { padding: 48px 0 56px; }
  .atelier-section { padding: 56px 0; }
  .atelier-imgrow { grid-template-columns: 1fr; }
  .prose p { font-size: 16px; }
  .prose p:first-of-type::first-letter { font-size: 48px; }
}

/* =========================================================
   LOOKBOOK — lookbook.html
   ========================================================= */
.lookbook { background: var(--linen); }
.lb-cover {
  padding: 80px 0 56px;
  background: var(--linen);
}
.lb-cover .display-1 { margin: 16px 0 32px; }
.lb-cover .dek { max-width: 56ch; margin: 0 auto; font-size: 19px; }
.lb-cover-image {
  margin-top: 64px;
}
.lb-cover-image img {
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
  display: block;
  box-shadow: 0 16px 40px rgba(26,18,9,0.18);
}

.lb-chapter {
  padding: 128px 0;
  background: var(--linen);
}
.lb-sienna { background: var(--sienna); }
.lb-sienna .kicker.ink { color: var(--ink); }
.lb-chapter .display-2 { margin: 12px 0 12px; }
.lb-attribution {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-align: center;
  color: rgba(26,18,9,0.6);
  margin: 0 0 56px;
}

/* Two-image spread */
.lb-spread {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
}
.lb-fig { margin: 0; }
.lb-fig img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
  box-shadow: 0 12px 32px rgba(26,18,9,0.18);
}
.lb-fig-feature img { min-height: 600px; }
.lb-fig figcaption {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 13px;
  color: rgba(26,18,9,0.7);
  margin-top: 14px;
  letter-spacing: 0.02em;
  max-width: 44ch;
}

.lb-quote-block {
  margin-top: 80px;
}
.lb-quote-block .quote {
  max-width: 38ch;
  margin: 0 auto;
}

/* Three-image spread */
.lb-spread-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lb-spread-3 .lb-fig img { min-height: 380px; }

/* Homes — alternating split */
.lb-homes {
  display: flex;
  flex-direction: column;
  gap: 96px;
}
.lb-home {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: center;
  margin: 0;
}
.lb-home img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  box-shadow: 0 16px 36px rgba(26,18,9,0.18);
}
.lb-home figcaption { padding: 24px 0; margin: 0; }
.lb-home-kicker {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 12px;
}
.lb-home-title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 18px;
  letter-spacing: -0.008em;
}
.lb-home-body {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(26,18,9,0.85);
  font-style: italic;
  margin: 0;
  max-width: 38ch;
}
.lb-home-reverse {
  grid-template-columns: 1fr 1.5fr;
}
.lb-home-reverse img { order: 2; }

/* Studio masonry-ish grid */
.lb-studio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 320px);
  gap: 16px;
}
.lb-studio-grid .lb-fig img { min-height: 0; height: 100%; }
.lb-studio-grid .lb-fig { display: flex; flex-direction: column; }
.lb-studio-grid figcaption { margin-top: 10px; font-size: 12px; }
.lb-studio-tall {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 1023px) {
  .lb-spread { grid-template-columns: 1fr; }
  .lb-spread-3 { grid-template-columns: 1fr 1fr; }
  .lb-home, .lb-home-reverse { grid-template-columns: 1fr; gap: 24px; }
  .lb-home-reverse img { order: 0; }
  .lb-studio-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .lb-studio-tall { grid-column: span 2; grid-row: span 1; }
  .lb-studio-grid .lb-fig img { min-height: 280px; }
}
@media (max-width: 639px) {
  .lb-chapter { padding: 72px 0; }
  .lb-spread-3 { grid-template-columns: 1fr; }
  .lb-cover { padding: 48px 0 32px; }
  .lb-cover-image { margin-top: 32px; }
  .lb-home img { aspect-ratio: 4 / 3; }
  .lb-fig img, .lb-fig-feature img { min-height: 320px; }
  .lb-studio-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   CATALOGUE — catalogue.html
   ========================================================= */
.collection-intro {
  padding: 80px 0 56px;
  background: var(--linen);
}
.collection-intro .display-1 { margin-bottom: 28px; }
.collection-intro .dek {
  max-width: 60ch;
  margin: 0 auto;
}

.cat-filterbar {
  padding: 20px 0;
  background: var(--linen);
  border-top: 1px solid rgba(184, 131, 42, 0.18);
  border-bottom: 1px solid rgba(184, 131, 42, 0.18);
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(6px);
  background: rgba(251, 247, 238, 0.92);
}
.filterbar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  align-items: center;
}
.filter-group {
  display: flex;
  align-items: center;
  gap: 20px;
}
.filter-label {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26,18,9,0.65);
  margin: 0;
  white-space: nowrap;
}
.filter-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chip {
  background: transparent;
  border: 1px solid rgba(26,18,9,0.18);
  padding: 7px 14px;
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink);
  cursor: pointer;
  border-radius: 999px;
  transition: all 200ms;
  white-space: nowrap;
}
.chip:hover { border-color: var(--brass); }
.chip.is-selected {
  background: var(--ink);
  color: var(--linen);
  border-color: var(--ink);
}
.filter-meta {
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26,18,9,0.55);
  text-align: right;
  font-style: italic;
}

.cat-grid-wrap {
  padding: 56px 0 96px;
  background: var(--linen);
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 32px;
}
.cat-card .sienna-mat { padding: 12px; margin-bottom: 16px; }
.cat-card .card-region {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 4px;
}
.cat-card .card-title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.2;
}

/* Editorial pause card — sits inside grid spanning 2 cols */
.cat-pause {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 8px;
  border-top: 1px solid rgba(184, 131, 42, 0.4);
  border-bottom: 1px solid rgba(184, 131, 42, 0.18);
}
.cat-pause .display-2 { margin: 8px 0 16px; }
.cat-pause .dek { margin-bottom: 20px; max-width: 42ch; font-size: 17px; }
.cat-pause-alt {
  background: var(--sienna);
  border: 0;
  padding: 40px 32px;
}

.cat-loadmore {
  margin-top: 80px;
  text-align: center;
}
.cat-loadmore .btn { min-width: 280px; }
.cat-loadmore-meta {
  margin: 20px 0 0;
  font-style: italic;
  font-size: 13px;
  color: rgba(26,18,9,0.55);
}

@media (max-width: 1023px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .filterbar-inner { grid-template-columns: 1fr; gap: 12px; }
  .filter-meta { text-align: left; }
}
@media (max-width: 639px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .cat-pause { grid-column: span 2; padding: 24px 0; }
  .cat-card .card-title { font-size: 18px; }
  .collection-intro { padding: 56px 0 32px; }
}

/* =========================================================
   LIFENCOLORS-INSPIRED PATTERNS
   ========================================================= */

/* Numeric trust bar — between quote and studio-month */
.trust-numeric {
  padding: 56px 0;
  background: var(--linen);
  border-top: 1px solid rgba(184, 131, 42, 0.18);
  border-bottom: 1px solid rgba(184, 131, 42, 0.18);
}
.trust-numeric .kicker {
  text-align: center;
  margin-bottom: 32px;
}
.trust-numeric-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-stat { text-align: center; min-width: 200px; }
.trust-stat-num {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 200;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 12px;
}
.trust-stat-num span {
  font-size: 0.5em;
  font-style: italic;
  font-weight: 300;
  color: rgba(26,18,9,0.55);
  letter-spacing: 0;
}
.trust-stat-source {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 6px;
}
.trust-stat-count {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 13px;
  color: rgba(26,18,9,0.6);
  margin: 0;
}
.trust-stat-sep {
  width: 1px;
  height: 60px;
  background: var(--brass);
  opacity: 0.35;
}

/* Lived in — 5 customer-home portraits */
.lived-in {
  padding: 96px 0;
  background: var(--linen);
}
.lived-in .display-2 { margin: 12px 0 16px; }
.lived-in-dek {
  max-width: 56ch;
  margin: 0 auto 56px;
  font-style: italic;
  font-size: 16px;
  color: rgba(26,18,9,0.75);
}
.lived-in-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.lived-in-tile {
  display: block;
  transition: transform 200ms;
}
.lived-in-tile:hover { transform: translateY(-3px); }
.lived-in-tile .placeholder {
  font-size: 10px;
  padding: 12px;
}
.lived-in-caption {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 12px;
  color: rgba(26,18,9,0.7);
  margin: 12px 0 0;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
.lived-in-kicker {
  display: inline;
  font-weight: 700;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-right: 2px;
}
.lived-in .center { margin-top: 12px; }

/* Heritage 3-up cluster — different scales */
.heritage-cluster {
  padding: 64px 0 96px;
  background: var(--linen);
}
.heritage-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.6fr;
  grid-template-rows: auto;
  gap: 24px;
  align-items: end;
}
.heritage-fig { margin: 0; }
.heritage-fig .placeholder {
  width: 100%;
  font-size: 11px;
  padding: 16px;
}
.heritage-large .placeholder { aspect-ratio: 3 / 4; min-height: 540px; }
.heritage-small .placeholder { aspect-ratio: 3 / 4; min-height: 380px; }
.heritage-tiny .placeholder { aspect-ratio: 1 / 1; min-height: 240px; }
.heritage-fig figcaption {
  margin-top: 18px;
}
.heritage-large figcaption .display-2 {
  margin: 8px 0 0;
  font-size: clamp(22px, 2.4vw, 30px);
  max-width: 18ch;
}
.heritage-small figcaption,
.heritage-tiny figcaption {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 13px;
  color: rgba(26,18,9,0.7);
  margin-top: 12px;
  line-height: 1.5;
}

/* Press strip — "As featured in" */
.press-strip {
  padding: 80px 0 64px;
  background: var(--linen);
  border-top: 1px solid rgba(184, 131, 42, 0.18);
  border-bottom: 1px solid rgba(184, 131, 42, 0.18);
}
.press-strip .kicker {
  text-align: center;
  margin-bottom: 32px;
}
.press-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 48px;
  margin-bottom: 32px;
}
.press-logo {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: 0.01em;
  color: rgba(26, 18, 9, 0.6);
  transition: color 200ms;
}
.press-logo:hover { color: var(--ink); }
.press-caption {
  text-align: center;
  font-family: var(--f-body);
  font-style: italic;
  font-size: 15px;
  color: rgba(26,18,9,0.7);
  margin: 0 auto;
  max-width: 60ch;
  line-height: 1.55;
}


@media (max-width: 1023px) {
  .trust-numeric-row { gap: 24px; }
  .trust-stat-sep { display: none; }
  .lived-in-grid { grid-template-columns: repeat(3, 1fr); }
  .lived-in-tile:nth-child(4),
  .lived-in-tile:nth-child(5) { grid-column: span 1; }
  .heritage-grid { grid-template-columns: 1fr 1fr; }
  .heritage-tiny { grid-column: span 2; max-width: 280px; }
}
@media (max-width: 639px) {
  .trust-numeric-row { flex-direction: column; gap: 32px; }
  .lived-in-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .lived-in-tile:nth-child(5) { grid-column: span 2; max-width: 70%; margin: 0 auto; }
  .heritage-grid { grid-template-columns: 1fr; }
  .heritage-tiny { grid-column: span 1; max-width: 100%; }
  .heritage-large .placeholder { min-height: 320px; }
  .heritage-small .placeholder { min-height: 240px; }
  .heritage-tiny .placeholder { min-height: 200px; }
  .press-logos { gap: 24px; }
  .press-logo { font-size: 15px; }
}

/* =========================================================
   FORMS — bespoke-inquiry, contact, trade
   ========================================================= */
.inq-hero, .contact-hero, .besp-hero, .inq-aside-card,
.faq-hero, .cart-hero { padding-top: 0; }
.inq-hero { padding: 80px 0 48px; background: var(--linen); }
.inq-hero .display-1 { margin: 16px 0 24px; }
.inq-hero .dek { max-width: 56ch; margin: 0 auto; font-size: 18px; }

.inq-body, .contact-body { padding: 56px 0 96px; background: var(--linen); }
.inq-grid, .contact-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  align-items: start;
}

.inq-form {
  background: var(--linen);
  padding: 48px 56px;
  border: 1px solid rgba(184, 131, 42, 0.25);
}
.inq-form .display-2 { margin: 8px 0 16px; }
.inq-form > .dek { margin-bottom: 32px; }
.inq-fieldset {
  border: 0;
  border-top: 1px solid rgba(184, 131, 42, 0.3);
  padding: 32px 0 8px;
  margin: 0;
}
.inq-fieldset:first-of-type { border-top: 0; padding-top: 0; }
.inq-legend {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  padding: 0;
  margin: 0 0 24px;
}
.inq-row { margin-bottom: 24px; }
.inq-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.inq-field { display: block; }
.inq-label {
  display: block;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 10px;
}
.inq-hint {
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.02em;
  color: rgba(26,18,9,0.55);
  font-size: 12px;
}
.inq-form input[type="text"],
.inq-form input[type="email"],
.inq-form input[type="tel"],
.inq-form select,
.inq-form textarea {
  width: 100%;
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--ink);
  padding: 13px 16px;
  background: rgba(184, 131, 42, 0.05);
  border: 1px solid rgba(26, 18, 9, 0.18);
  outline: none;
  transition: border-color 200ms;
}
.inq-form input:focus,
.inq-form select:focus,
.inq-form textarea:focus { border-color: var(--brass); }
.inq-form textarea {
  resize: vertical;
  font-style: italic;
}
.inq-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--brass) 50%),
                    linear-gradient(135deg, var(--brass) 50%, transparent 50%);
  background-position: calc(100% - 18px) center, calc(100% - 12px) center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
.inq-opts .opt { font-size: 13px; padding: 11px 18px; }

.inq-upload {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px dashed rgba(184, 131, 42, 0.5);
  background: rgba(184, 131, 42, 0.04);
}
.inq-upload-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--brass);
  cursor: pointer;
  padding: 8px 14px;
  border: 1px solid var(--brass);
  background: var(--linen);
  transition: background 200ms;
}
.inq-upload-label:hover { background: rgba(184, 131, 42, 0.08); }
.inq-upload-meta {
  font-style: italic;
  font-size: 12px;
  color: rgba(26,18,9,0.6);
}

.inq-submit {
  text-align: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(184, 131, 42, 0.3);
}
.inq-submit .btn { margin-bottom: 16px; }
.inq-disclaimer {
  font-style: italic;
  font-size: 13px;
  color: rgba(26,18,9,0.6);
  margin: 0;
  max-width: 44ch;
  margin: 0 auto;
}

/* Sidebar */
.inq-aside { position: sticky; top: 24px; }
.inq-aside-card {
  background: var(--sienna);
  padding: 40px 32px;
  position: relative;
}
.inq-aside-card .display-2 { margin: 8px 0 24px; color: var(--ink); }
.inq-aside-card .body { color: var(--ink); }
.inq-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  counter-reset: step;
}
.inq-steps li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(26,18,9,0.88);
  counter-increment: step;
}
.inq-steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 200;
  font-size: 20px;
  color: var(--brass);
  line-height: 1.1;
}
.inq-steps li strong { color: var(--ink); font-weight: 700; }

.inq-aside-meta {
  border-top: 1px solid rgba(26, 18, 9, 0.2);
  padding-top: 20px;
  margin-bottom: 24px;
}
.inq-meta-row {
  font-size: 13px;
  font-style: italic;
  color: rgba(26,18,9,0.85);
  margin: 0 0 8px;
  line-height: 1.5;
}
.inq-meta-row strong { font-style: normal; color: var(--ink); }

/* =========================================================
   CART — cart.html
   ========================================================= */
.cart { background: var(--linen); }
.cart-hero { padding: 80px 0 32px; background: var(--linen); }
.cart-hero .display-2 { margin: 12px auto 16px; max-width: 18ch; }
.cart-hero .dek { max-width: 56ch; margin: 0 auto; }

.cart-body { padding: 32px 0 96px; background: var(--linen); }
.cart-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 56px;
  align-items: start;
}

.cart-items { display: flex; flex-direction: column; gap: 32px; }
.cart-item {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(184, 131, 42, 0.3);
  align-items: start;
}
.cart-item:first-child { border-top: 1px solid rgba(184, 131, 42, 0.3); }
.cart-item-img { display: block; padding: 10px; }
.cart-item-img .placeholder { font-size: 10px; padding: 8px; }
.cart-item-title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 26px;
  color: var(--ink);
  margin: 6px 0 4px;
  letter-spacing: -0.005em;
}
.cart-item-meta {
  font-style: italic;
  font-size: 13px;
  color: rgba(26,18,9,0.7);
  margin: 0 0 16px;
}
.cart-item-specs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 0 20px;
}
.cart-item-specs > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  font-size: 13px;
}
.cart-item-specs dt {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(26,18,9,0.6);
}
.cart-item-specs dd { margin: 0; font-style: italic; color: var(--ink); }

.cart-item-actions { display: flex; gap: 20px; align-items: center; }
.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(26,18,9,0.2);
}
.qty-btn {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  font-family: var(--f-body);
  font-size: 16px;
  color: var(--ink);
  cursor: pointer;
}
.qty-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  border-left: 1px solid rgba(26,18,9,0.2);
  border-right: 1px solid rgba(26,18,9,0.2);
  font-size: 13px;
}
.cart-item-edit, .cart-item-remove {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26,18,9,0.7);
  border-bottom: 1px solid transparent;
  transition: color 200ms, border-color 200ms;
}
.cart-item-edit:hover { color: var(--brass); border-bottom-color: var(--brass); }
.cart-item-remove:hover { color: var(--kumkum); border-bottom-color: var(--kumkum); }

.cart-item-price { text-align: right; }
.cart-item-price .price-line {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 24px;
  color: var(--ink);
  margin: 0;
}
.cart-item-price .price-gst {
  font-size: 11px;
  color: rgba(26,18,9,0.55);
  margin: 4px 0 0;
}

.cart-studio-note {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(184, 131, 42, 0.08);
  border-left: 2px solid var(--brass);
  font-style: italic;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.55;
}
.cart-studio-note svg { color: var(--brass); flex-shrink: 0; margin-top: 2px; }
.cart-studio-note p { margin: 0; }

.cart-extra {
  border-top: 1px solid rgba(184, 131, 42, 0.2);
  border-bottom: 1px solid rgba(184, 131, 42, 0.2);
  padding: 20px 0;
}
.cart-extra summary {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-left: 28px;
}
.cart-extra summary::-webkit-details-marker { display: none; }
.cart-extra summary::before {
  content: "+";
  position: absolute;
  left: 0;
  font-size: 18px;
  color: var(--brass);
  font-weight: 300;
}
.cart-extra[open] summary::before { content: "\2212"; }
.cart-extra-meta { font-weight: 400; font-style: italic; text-transform: none; letter-spacing: 0.02em; color: rgba(26,18,9,0.55); font-size: 12px; }
.cart-extra textarea {
  width: 100%;
  margin-top: 16px;
  padding: 12px;
  border: 1px solid rgba(26,18,9,0.18);
  background: rgba(184, 131, 42, 0.04);
  font-family: var(--f-body);
  font-style: italic;
  font-size: 14px;
  resize: vertical;
}

.cart-continue {
  display: inline-block;
  margin-top: 24px;
  font-size: 14px;
}

/* Summary card */
.cart-summary { position: sticky; top: 24px; }
.cart-summary-card {
  background: var(--sienna);
  padding: 40px 32px;
  border: 1px solid rgba(184, 131, 42, 0.3);
}
.cart-summary-card .display-2 { margin: 8px 0 24px; color: var(--ink); }
.cart-totals {
  margin: 0 0 24px;
  border-top: 1px solid rgba(26, 18, 9, 0.2);
}
.totals-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(26, 18, 9, 0.08);
  font-size: 14px;
}
.totals-row dt { margin: 0; color: rgba(26,18,9,0.85); font-style: italic; }
.totals-row dd { margin: 0; font-family: var(--f-body); color: var(--ink); }
.totals-included { font-style: italic; color: var(--brass); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
.totals-gst dd { font-style: italic; font-size: 12px; color: rgba(26,18,9,0.6); }
.totals-grand {
  border-bottom: 0;
  border-top: 1px solid rgba(26, 18, 9, 0.25);
  padding-top: 16px;
  margin-top: 8px;
  align-items: baseline;
}
.totals-grand dt {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--ink);
}
.totals-grand dd {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  color: var(--ink);
}

.cart-deposit-line {
  font-style: italic;
  font-size: 13px;
  color: rgba(26,18,9,0.75);
  margin: 0 0 20px;
  line-height: 1.5;
}

.cart-summary-card .btn { margin-bottom: 10px; }

.cart-cred {
  list-style: none;
  padding: 20px 0 0;
  margin: 20px 0 0;
  border-top: 1px solid rgba(26, 18, 9, 0.15);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cart-cred li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-style: italic;
  color: rgba(26,18,9,0.75);
}
.cart-cred svg { color: var(--brass); flex-shrink: 0; }

.cart-trust { padding: 96px 0; }

/* =========================================================
   CONTACT — contact.html
   ========================================================= */
.contact-hero { padding: 80px 0 56px; background: var(--linen); }
.contact-hero .display-1 { margin: 16px 0 20px; }
.contact-hero .dek { max-width: 56ch; margin: 0 auto; }

.contact-channels { padding: 80px 0; }
.contact-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.channel-card {
  background: var(--linen);
  padding: 40px 32px;
  border: 1px solid rgba(184, 131, 42, 0.3);
  display: block;
  transition: transform 200ms, box-shadow 200ms, border-color 200ms;
  text-align: left;
}
.channel-card:hover {
  transform: translateY(-3px);
  border-color: var(--brass);
  box-shadow: 0 12px 28px rgba(26,18,9,0.12);
}
.channel-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(184, 131, 42, 0.12);
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.channel-card .display-2 { margin: 8px 0 8px; font-size: 30px; }
.channel-handle {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--brass);
  margin: 0 0 14px;
}
.channel-body {
  font-style: italic;
  font-size: 14px;
  color: rgba(26,18,9,0.85);
  margin: 0;
  line-height: 1.55;
}

/* =========================================================
   FAQ — faq.html
   ========================================================= */
.faq-hero { padding: 80px 0 56px; background: var(--linen); }
.faq-hero .display-1 { margin: 16px 0 24px; }
.faq-hero .dek { max-width: 56ch; margin: 0 auto; font-size: 18px; }

.faq-section { padding: 96px 0; background: var(--linen); }
.faq-section-sienna { background: var(--sienna); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.faq-head { position: sticky; top: 24px; }
.faq-head .display-2 { margin: 8px 0 0; }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid rgba(184, 131, 42, 0.3);
}
.faq-item:first-child { border-top: 1px solid rgba(184, 131, 42, 0.3); }
.faq-item summary {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -0.005em;
  padding: 24px 48px 24px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  color: var(--ink);
  line-height: 1.3;
  transition: color 200ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 22px;
  font-family: var(--f-display);
  font-weight: 200;
  font-size: 28px;
  color: var(--brass);
  transition: transform 200ms;
}
.faq-item[open] summary { color: var(--brass); }
.faq-item[open] summary::after { content: "\2212"; transform: rotate(0deg); }
.faq-item summary:hover { color: var(--brass); }
.faq-body {
  padding: 0 0 32px;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(26,18,9,0.85);
}
.faq-body p { margin: 0; max-width: 60ch; }

.faq-cta { padding: 96px 0; background: var(--linen); }
.faq-cta .display-2 { margin: 12px 0 20px; }
.faq-cta .dek { max-width: 48ch; margin: 0 auto 32px; }

@media (max-width: 1023px) {
  .inq-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .inq-aside { position: static; }
  .cart-grid { grid-template-columns: 1fr; gap: 32px; }
  .cart-summary { position: static; }
  .contact-channel-grid { grid-template-columns: 1fr; gap: 16px; }
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .faq-head { position: static; }
}
@media (max-width: 639px) {
  .cart-item { grid-template-columns: 1fr; gap: 16px; }
  .cart-item-price { text-align: left; }
  .cart-item-actions { flex-wrap: wrap; gap: 12px; }
  .inq-form { padding: 32px 20px; }
  .inq-row-2 { grid-template-columns: 1fr; gap: 16px; }
  .faq-section { padding: 56px 0; }
  .faq-item summary { font-size: 18px; padding-right: 40px; }
  .channel-card { padding: 28px 24px; }
}

/* PDP responsive */
@media (max-width: 1023px) {
  .pdp-grid { grid-template-columns: 1fr; gap: 48px; }
  .pdp-gallery { position: static; }
  .pdp-specs .two-up { grid-template-columns: 1fr; gap: 32px; }
  .spec-row { grid-template-columns: 160px 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 639px) {
  .pdp-hero { padding: 24px 0 64px; }
  .composition-note { padding: 72px 0; }
  .pdp-specs { padding: 64px 0; }
  .pdp-related { padding: 64px 0; }
  .spec-row { grid-template-columns: 1fr; gap: 4px; padding: 14px 0; }
  .related-grid { grid-template-columns: 1fr; }
  .pdp-thumbs { grid-template-columns: repeat(4, 1fr); }
  .crumb { font-size: 10px; letter-spacing: 0.12em; }
  .pdp-price { font-size: 28px; }
  .pdp-price .price-gst { margin-left: 0; flex-basis: 100%; margin-top: 4px; }
}

/* Layout-verification nav tags */
.nav-tag {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72em;
  font-weight: 400;
  letter-spacing: 0;
  opacity: 0.55;
  margin-left: 4px;
  white-space: nowrap;
}
