/* === Treasure Collection – Components & Layout ===
   Based on Design 2 / Le Salon site.css handoff.
   ============================================================ */

/* ── Front page: body bg matches hero so transparent nav shows burgundy ── */
body.home { background: var(--burgundy); }

/* ── Layout ── */
.container {
  max-width: var(--max-page);
  margin: 0 auto;
  padding: 0 var(--gutter-lg);
}
@media (max-width: 720px) { .container { padding: 0 var(--gutter); } }

.section    { padding: 120px 0; }
.section-sm { padding: 80px 0; }
@media (max-width: 720px) {
  .section    { padding: 72px 0; }
  .section-sm { padding: 48px 0; }
}

/* ── Skip link (a11y) ── */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--burgundy); color: var(--gold-bright);
  padding: 8px 16px; font-family: var(--font-sans); font-size: 13px;
  z-index: 9999;
}
.skip-link:focus { top: 8px; }

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 244, 230, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease);
}
.nav.nav-b {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid var(--line-dark-soft);
}
.nav.nav-b.is-scrolled {
  background: rgba(60, 10, 9, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 8px rgba(0,0,0,.2);
}
.nav-inner {
  max-width: var(--max-page);
  margin: 0 auto;
  padding: 20px var(--gutter-lg);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.nav-brand {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 18px;
  color: var(--ink);
  justify-self: start;
  white-space: nowrap;
}
.nav-brand:hover { color: var(--burgundy); }

/* Dark hero variant — override brand & link colors */
.nav-b .nav-brand            { color: var(--gold-bright); }
.nav-b .nav-brand:hover      { color: var(--gold); }
.nav-b .nav-links a          { color: var(--gold-soft); }
.nav-b .nav-links a:hover,
.nav-b .nav-links a.active   { color: var(--gold-bright); }
.nav-b .btn-ghost            { color: var(--gold-bright); border-color: rgba(255,233,168,0.4); }
.nav-b .btn-ghost:hover      { border-color: var(--gold); color: var(--gold); }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0; padding: 0;
  justify-self: center;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--burgundy); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
}
.nav-toggle {
  display: none;
  background: none; border: none;
  cursor: pointer; padding: 6px;
  color: var(--ink);
}
.nav-b .nav-toggle { color: var(--gold-bright); }

/* Mobile nav */
@media (max-width: 1080px) {
  .nav-inner { grid-template-columns: 1fr auto; padding: 16px var(--gutter); }
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
}
.nav-links.is-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: var(--burgundy);
  z-index: 200;
  align-items: center;
  justify-content: center;
  gap: 32px;
  animation: drawerIn var(--dur) var(--ease-out);
}
.nav-links.is-open a {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.14em;
  color: var(--gold-bright);
}
.nav-links.is-open a:hover { color: var(--gold); }
.nav-links.is-open + .nav-cta .btn { display: inline-flex; }

@keyframes drawerIn {
  from { opacity: 0; transform: translateX(100%); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--r-1);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn .arrow {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  transition: transform var(--dur) var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--burgundy);
  color: var(--gold-bright);
  border-color: var(--burgundy);
}
.btn-primary:hover { background: var(--burgundy-deep); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--bone); }
.btn-ghost {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--burgundy); }
.btn-on-dark {
  background: transparent;
  color: var(--gold-bright);
  border-color: var(--gold);
}
.btn-on-dark:hover { background: var(--gold); color: var(--burgundy); }

/* ── Eyebrow ── */
.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--ash);
}
.eyebrow-gold { color: var(--gold-deep); }

/* ── Ornament (Nº rule) ── */
.ornament {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.ornament .rule {
  height: 1px;
  background: currentColor;
  width: 60px;
  opacity: 0.6;
}
.ornament .num {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
}

/* ── Heading utilities ── */
.h-display {
  font-family: var(--font-editorial);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 96px);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--ink);
  margin: 0;
}
.h-display em { font-style: italic; font-weight: 400; }

.h-section {
  font-family: var(--font-editorial);
  font-weight: 500;
  font-size: clamp(36px, 4vw, 56px);
  line-height: var(--lh-snug);
  letter-spacing: var(--tracking-tight);
  color: var(--ink);
  margin: 0;
}
.h-section em { font-style: italic; font-weight: 400; }

.h-script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--gold-deep);
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.9;
  margin: 0;
}

.lead {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: var(--fs-lead);
  font-weight: 400;
  line-height: var(--lh-normal);
  color: var(--ink-soft);
  max-width: 56ch;
}

/* ── Photo placeholder (until real photography) ── */
.photo {
  position: relative;
  background:
    radial-gradient(120% 80% at 30% 20%, rgba(213,162,74,.16) 0%, transparent 60%),
    linear-gradient(135deg, #6B2A22 0%, #3C0A09 100%);
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--r-1);
}
.photo[data-tone="green"]     { background: linear-gradient(135deg, #4A5A48 0%, #1F2A20 100%); }
.photo[data-tone="cognac"]    { background: linear-gradient(135deg, #9A6234 0%, #4F2D14 100%); }
.photo[data-tone="oxblood"]   { background: linear-gradient(135deg, #6B2A22 0%, #3C0A09 100%); }
.photo[data-tone="walnut"]    { background: linear-gradient(135deg, #5B3A22 0%, #2E1A0D 100%); }
.photo[data-tone="parchment"] { background: linear-gradient(135deg, #E8DBBE 0%, #B8AC95 100%); }
.photo[data-tone="charcoal"]  { background: linear-gradient(135deg, #4A3F33 0%, #1F1812 100%); }
.photo::after {
  content: attr(data-label);
  position: absolute;
  inset: auto 14px 12px;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  opacity: 0.5;
}
/* Real image inside .photo */
.photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Le Salon Hero (B) ── */
.hero-b {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(213,162,74,.18) 0%, transparent 70%),
    linear-gradient(180deg, #3C0A09 0%, #240507 100%);
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
/* Hairline borders inside hero */
.hero-b::before,
.hero-b::after {
  content: '';
  position: absolute;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
  left: 64px; right: 64px;
  pointer-events: none;
}
.hero-b::before { top: 96px; }
.hero-b::after  { bottom: 32px; }
@media (max-width: 720px) {
  .hero-b::before { top: 64px; left: 24px; right: 24px; }
  .hero-b::after  { bottom: 24px; left: 24px; right: 24px; }
}
.hero-b-inner {
  max-width: 960px;
  padding: 0 var(--gutter-lg);
  position: relative;
  z-index: 1;
}
.hero-b .crest {
  width: 280px; height: auto;
  margin: 0 auto 32px;
  display: block;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,.4));
}
.hero-b .eyebrow {
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}
.hero-b h1 {
  font-family: var(--font-editorial);
  font-size: clamp(56px, 8vw, 112px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--gold-bright);
  margin: 0;
}
.hero-b h1 em { font-style: italic; font-weight: 400; color: var(--gold); }
.hero-b .h-script {
  color: var(--gold);
  margin-top: 16px;
  font-size: clamp(40px, 5vw, 64px);
}
.hero-b p.lead {
  color: var(--gold-soft);
  max-width: 50ch;
  margin: 36px auto 48px;
  font-style: italic;
  text-align: center;
}
.hero-b .cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-b .scroll-cue {
  position: absolute;
  bottom: 48px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 233, 168, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-b .scroll-cue::after {
  content: '';
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@media (max-width: 720px) {
  .hero-b { padding: 80px 0 64px; }
  .hero-b-inner { padding: 0 var(--gutter); }
  .hero-b .crest { width: 200px; }
  .hero-b .scroll-cue { display: none; }
}

/* ── Page body (resumes on bone after hero) ── */
.pagebody { background: var(--bone); }

/* ── Motto strip ── */
.motto {
  background: var(--bone);
  text-align: center;
  padding: 96px 0 64px;
}
.motto .h-script {
  color: var(--gold-deep);
  font-size: clamp(56px, 5vw, 80px);
  margin-bottom: 32px;
}
.motto p {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.4;
  color: var(--ink);
  max-width: 28ch;
  margin: 0 auto;
}

/* ── Gallery grid ── */
.gallery { background: var(--bone); padding: 32px 0 120px; }
.gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.gallery-card {
  display: block;
  color: inherit;
}
.gallery-card .photo {
  width: 100%;
  box-shadow: var(--shadow-2);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.gallery-card:hover .photo {
  box-shadow: var(--shadow-3);
  transform: translateY(-4px);
}
.gallery-card .gmeta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 18px;
}
.gallery-card .gnum {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ash);
}
.gallery-card .gtitle {
  font-family: var(--font-editorial);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  margin-top: 8px;
}
.gallery-card:hover .gtitle { color: var(--burgundy); }
.gallery-card .gtag {
  font-family: var(--font-script);
  font-size: 28px;
  color: var(--gold-deep);
  line-height: 1;
}
/* 12-col editorial layout */
.gc-1 { grid-column: span 7; } .gc-1 .photo { aspect-ratio: 5/4; }
.gc-2 { grid-column: span 5; } .gc-2 .photo { aspect-ratio: 4/5; }
.gc-3 { grid-column: span 4; } .gc-3 .photo { aspect-ratio: 4/5; }
.gc-4 { grid-column: span 4; } .gc-4 .photo { aspect-ratio: 4/5; }
.gc-5 { grid-column: span 4; } .gc-5 .photo { aspect-ratio: 4/5; }
@media (max-width: 880px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .gallery-grid > * { grid-column: span 1 !important; }
  .gallery-grid .gc-1 .photo,
  .gallery-grid > * .photo { aspect-ratio: 4/5; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ── Editorial full-bleed quote ── */
.editorial-bleed {
  position: relative;
  min-height: 70vh;
  background: linear-gradient(135deg, #5B3A22 0%, #2E1A0D 50%, #1A0E04 100%);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: var(--gold-bright);
  overflow: hidden;
}
.editorial-bleed.has-bg-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(60,10,9,.82) 0%, rgba(26,14,4,.88) 100%);
}
.editorial-bleed .container {
  position: relative;
  z-index: 1;
  padding-top: 96px;
  padding-bottom: 96px;
}
.editorial-bleed blockquote {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.2;
  color: var(--gold-bright);
  max-width: 24ch;
  margin: 0;
}
.editorial-bleed cite {
  font-family: var(--font-script);
  font-style: normal;
  font-size: 36px;
  color: var(--gold);
  display: block;
  margin-top: 24px;
}

/* ── Story split ── */
.story-b { background: var(--bone); padding: 120px 0; }
.story-b-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.story-b .photo { aspect-ratio: 4/5; box-shadow: var(--shadow-portrait); }
.story-b .ornament { justify-content: flex-start; }
.story-b p {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 52ch;
  margin-top: 20px;
}
.story-b .h-script { color: var(--gold-deep); font-size: 56px; margin-top: 32px; }
@media (max-width: 880px) {
  .story-b-grid { grid-template-columns: 1fr; gap: 56px; }
  .story-b { padding: 72px 0; }
}

/* ── Process rows ── */
.proces-b { background: var(--parchment); padding: 120px 0; }
.proces-b .head { text-align: center; margin-bottom: 80px; }
.proces-b .head .ornament { justify-content: center; }
.proces-b-list { max-width: 880px; margin: 0 auto; }
.proces-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 48px;
  align-items: baseline;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}
.proces-row:last-child { border-bottom: 1px solid var(--line); }
.proces-row .pn {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 44px;
  font-weight: 500;
  color: var(--gold-deep);
  line-height: 1;
}
.proces-row h4 {
  font-family: var(--font-editorial);
  font-size: 30px;
  font-weight: 500;
  color: var(--ink);
}
.proces-row p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}
@media (max-width: 720px) {
  .proces-row { grid-template-columns: 60px 1fr; gap: 24px; }
  .proces-row p { grid-column: 2; }
  .proces-b { padding: 72px 0; }
}

/* ── Showroom CTA panel ── */
.showroom-cta {
  background: var(--burgundy);
  color: var(--gold-bright);
  padding: 120px 0;
  text-align: center;
  position: relative;
}
.showroom-cta .ornament { color: var(--gold); justify-content: center; }
.showroom-cta h2 { color: var(--gold-bright); }
.showroom-cta h2 em { color: var(--gold); }
.showroom-cta .addr {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-soft);
  margin: 32px 0;
}
.showroom-cta .hours {
  display: flex;
  gap: 56px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0 48px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--gold-soft);
  letter-spacing: 0.08em;
}
.showroom-cta .hours strong {
  display: block;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 600;
}
.showroom-cta .cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 720px) { .showroom-cta { padding: 72px 0; } }

/* ── Footer ── */
.footer {
  background: var(--burgundy);
  color: var(--gold-bright);
  padding: 96px 0 32px;
}
.footer-inner {
  max-width: var(--max-page);
  margin: 0 auto;
  padding: 0 var(--gutter-lg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line-dark-soft);
}
.footer h5 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.footer p,
.footer li,
.footer a {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.8;
  color: var(--gold-soft);
}
.footer a:hover { color: var(--gold-bright); }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer-script {
  font-family: var(--font-script);
  font-size: 56px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 24px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 233, 168, 0.5);
}
@media (max-width: 880px) {
  .footer-inner { padding: 0 var(--gutter); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-script { font-size: 42px; }
}

/* ── Pill / badge ── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  background: var(--linen);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.pill-burgundy { background: var(--burgundy); color: var(--gold-bright); }

/* ── Product archive grid (aanbod) ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-grid--four { grid-template-columns: repeat(4, 1fr); gap: 22px; }

.product-card {
  display: block;
  color: inherit;
  background: var(--bone);
  border: 1px solid var(--line);
  transition: border-color var(--dur) var(--ease);
}
.product-card:hover { border-color: var(--stone); }
.product-card__imgwrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--parchment);
}
.product-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.product-card:hover .product-card__img { transform: scale(1.04); }
.product-card__placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ash);
}
.product-card__tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--burgundy); color: var(--gold-bright);
  font-family: var(--font-sans);
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 6px 12px;
  border-radius: var(--r-1);
}
.product-card__body {
  padding: 18px 20px 22px;
  border-top: 1px solid var(--line);
}
.product-card__name {
  font-family: var(--font-editorial);
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 6px;
  line-height: 1.2;
}
.product-card:hover .product-card__name { color: var(--burgundy); }
.product-card__meta {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ash);
}
.product-card__price {
  font-family: var(--font-editorial);
  font-size: 20px;
  color: var(--ink);
  margin-top: 10px;
}

/* Archive page hero banner */
.archive-hero {
  background: var(--burgundy);
  color: var(--gold-bright);
  padding: 80px 0 64px;
  text-align: center;
}
.archive-hero .ornament { justify-content: center; }
.archive-hero .eyebrow { color: var(--gold); display: block; margin-bottom: 14px; }
.archive-hero h1 {
  font-family: var(--font-editorial);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 500;
  color: var(--gold-bright);
  margin: 0;
}

/* Single product page */
.product-detail { padding: 64px 0 120px; }
.product-detail__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
.product-detail__title {
  font-family: var(--font-editorial);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  color: var(--ink);
  margin: 16px 0 20px;
  line-height: 1.1;
}
.product-detail__title em { font-style: italic; font-weight: 400; }
.product-price-card {
  background: var(--parchment);
  border: 1px solid var(--line);
  padding: 28px;
  margin-top: 32px;
}
.product-price-card .label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 8px;
}
.product-price-card .price {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 36px;
  color: var(--ink);
  margin-bottom: 24px;
}

/* Page hero (over-ons, contact, etc.) */
.page-hero {
  background: var(--burgundy);
  color: var(--gold-bright);
  text-align: center;
  padding: 80px 0 72px;
}
.page-hero .ornament { justify-content: center; }
.page-hero .eyebrow { color: var(--gold); margin-bottom: 16px; }
.page-hero h1 {
  font-family: var(--font-editorial);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 500;
  color: var(--gold-bright);
  margin: 0 0 20px;
}
.page-hero .lead {
  color: var(--gold-soft);
  margin: 0 auto;
}

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 96px;
  align-items: start;
}
.form-field label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: var(--bone);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-1);
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  transition: border-color var(--dur-fast) var(--ease);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--burgundy);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 20px;
}
.form-row-full { margin-bottom: 20px; }

/* Info card (showroom, contact) */
.info-card {
  border: 1px solid var(--line);
  padding: 32px;
  background: var(--bone);
}
.info-card-row {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.info-card-row:first-child { padding-top: 0; }
.info-card-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-card-row .label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 6px;
}
.info-card-row p, .info-card-row a {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ── Responsive: inner pages ── */
@media (max-width: 880px) {
  .product-detail__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .product-grid--four { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .product-grid,
  .product-grid--four { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .gallery-card:hover .photo { transform: none; }
  .product-card:hover .product-card__img { transform: none; }
  .btn .arrow { transition: none; }
}
