:root {
  --cream: #f4efe6;
  --paper: #fbf7f0;
  --sand: #e6d8c4;
  --ink: #1a1410;
  --ink-soft: #3b322b;
  --burgundy: #6b2428;
  --burgundy-deep: #43161a;
  --forest: #243126;
  --gold: #b08a4f;
  --gold-soft: #d4bc8c;
  --line: rgba(26, 20, 16, 0.12);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: clip;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
iframe { max-width: 100%; border: 0; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; max-width: 100%; }
button, a, input, select, textarea { touch-action: manipulation; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip-link:focus { left: 16px; top: 16px; background: #fff; padding: 8px 12px; z-index: 20; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 247, 240, 0.92);
  border-bottom: 1px solid var(--line);
  padding-top: env(safe-area-inset-top);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(16px);
  pointer-events: none;
}
.header-inner, .footer-inner, .container, .hero-copy {
  width: min(1180px, calc(100% - clamp(28px, 5.5vw, 48px)));
  margin-inline: auto;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 16px 24px;
  position: relative;
}
.brand {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 3.4vw, 1.7rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.brand img {
  width: auto;
  height: auto;
  max-height: 40px;
  max-width: min(180px, 46vw);
}
.nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.nav a {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--burgundy); }
.header-cta {
  border: 1px solid var(--ink);
  padding: 10px 18px;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  flex-shrink: 0;
  white-space: nowrap;
}
.header-cta:hover { background: var(--ink); color: var(--paper); }
.nav-cta { display: none; }
.nav-toggle {
  display: none;
  position: relative;
  z-index: 45;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: end start;
  padding: 12vh 0 10vh;
  opacity: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(26,20,16,0.18), rgba(26,20,16,0.58)),
    var(--sand);
  background-size: cover;
  background-position: center;
  transition: opacity 0.7s ease;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  min-height: 88vh;
}
.hero-fallback {
  background:
    radial-gradient(1200px 480px at 80% 20%, rgba(176,138,79,0.28), transparent 55%),
    linear-gradient(180deg, rgba(26,20,16,0.08), rgba(26,20,16,0.62)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 18px),
    #3a2a22;
}
.hero-copy { position: relative; z-index: 1; }
.hero-lede {
  max-width: 38ch;
  font-size: 1.08rem;
  color: rgba(251,247,240,0.82);
}
.hero-nav {
  position: absolute;
  right: max(20px, calc((100% - 1180px) / 2));
  bottom: 36px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-dots { display: flex; gap: 8px; }
.hero-dots button {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  border: 0;
  background: rgba(255,255,255,0.35);
  padding: 0;
  cursor: pointer;
}
.hero-dots button[aria-current="true"] { background: var(--paper); width: 22px; }
.hero-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.4);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

.stats-band {
  background: var(--ink);
  color: #efe7db;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stats-grid strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
}
.stats-grid span {
  color: rgba(255,255,255,0.62);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  max-width: none;
}
.text-link {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}
.intro-figure {
  margin: 0 0 24px;
  overflow: hidden;
  background: var(--cream);
  aspect-ratio: 4 / 5;
}
.intro-figure img { width: 100%; height: 100%; object-fit: cover; }
.intro-note { font-size: 1.05rem; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.category-card {
  display: grid;
  min-height: 220px;
  background: var(--cream);
  overflow: hidden;
  position: relative;
}
.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72);
  transition: transform 0.7s ease;
}
.category-card:hover img { transform: scale(1.05); }
.category-card > div {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 24px;
}
.category-card:has(img) { color: var(--paper); }
.category-card:has(img) .muted { color: rgba(255,255,255,0.78); }
.category-card h3 { margin: 0 0 6px; font-size: 1.8rem; }

.service-list { display: grid; gap: 0; }
.service-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.service-card:last-child { border-bottom: 1px solid var(--line); }
.service-index {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--gold);
}
.page-intro { margin-bottom: 48px; }
.page-hero-media {
  position: relative;
  min-height: 42vh;
  display: grid;
  place-items: end start;
  color: var(--paper);
  padding: 18vh 0 48px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-media .container { position: relative; z-index: 1; }
.page-hero-media .muted { color: rgba(251,247,240,0.78); }
.content-layout { max-width: 760px; }
.legal-prose { max-width: 48rem; }
.pager { display: flex; gap: 10px; margin-top: 36px; }
.pager a {
  min-width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
}
.pager a.is-current { background: var(--ink); color: var(--paper); }

.eyebrow {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold-soft);
}
.hero h1, h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.12;
}
.hero h1 { font-size: clamp(2.35rem, 8.5vw, 7.2rem); max-width: 12ch; margin: 12px 0 20px; }
.section { padding: clamp(52px, 8vw, 96px) 0; }
.section-head { max-width: 38rem; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(2.2rem, 4vw, 3.6rem); margin: 8px 0 12px; }
.muted { color: var(--ink-soft); }

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}
.split > *, .grid-3 > *, .grid-4 > *, .product-grid > *, .pdp-layout > *, .category-grid > *, .footer-grid > * {
  min-width: 0;
}
.grid-3, .grid-4, .product-grid {
  display: grid;
  gap: 28px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4, .product-grid { grid-template-columns: repeat(4, 1fr); }

.card, .product-card, .service-card {
  background: transparent;
}
.product-card figure {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(232, 220, 200, 0.35), rgba(244, 239, 230, 0.9)),
    var(--cream);
  aspect-ratio: 3 / 4;
  margin: 0 0 16px;
  display: grid;
  place-items: center;
  padding: clamp(10px, 2vw, 18px);
}
.product-card img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}
.product-card h3 { font-size: 1.45rem; margin: 0 0 6px; overflow-wrap: anywhere; }
.meta { font-size: 0.82rem; color: var(--ink-soft); letter-spacing: 0.04em; }

.service-card h3 { font-size: 1.8rem; margin-top: 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 12px;
}
.gallery-grid a { display: block; overflow: hidden; height: 100%; min-height: 0; }
.gallery-grid a:first-child { grid-row: 1 / span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }

.intro-figure figcaption,
.page-gallery a span,
.about-mosaic-item span {
  display: block;
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.highlight-card {
  background: var(--cream);
  padding: 28px 24px 32px;
  min-height: 100%;
}
.highlight-index {
  display: block;
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.highlight-card h3 {
  font-size: 1.55rem;
  margin: 0 0 10px;
}
.highlight-card p {
  margin: 0;
  color: var(--ink-soft);
}

.quote-band {
  background: var(--ink);
  color: #efe7db;
  padding: clamp(56px, 8vw, 88px) 0;
}
.quote-band blockquote {
  margin: 0;
  max-width: 38rem;
}
.quote-band p {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.2;
  margin: 0 0 18px;
}
.quote-band cite {
  font-style: normal;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold-soft);
}

.page-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.page-gallery a {
  display: block;
  overflow: hidden;
  background: var(--cream);
  position: relative;
}
.page-gallery img {
  width: 100%;
  height: clamp(180px, 28vw, 280px);
  object-fit: cover;
}
.page-gallery a span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 14px 16px;
  color: var(--paper);
  background: linear-gradient(transparent, rgba(26,20,16,.7));
}

.about-intro { padding-top: 0; }
.about-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-auto-rows: minmax(140px, 18vw);
  gap: 12px;
}
.about-mosaic-item {
  display: block;
  overflow: hidden;
  position: relative;
  background: var(--cream);
  min-height: 0;
}
.about-mosaic-item:first-child {
  grid-row: span 2;
}
.about-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-mosaic-item span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 12px 14px;
  color: var(--paper);
  background: linear-gradient(transparent, rgba(26,20,16,.72));
}

.product-slider-section {
  padding-bottom: clamp(36px, 6vw, 64px);
  background: var(--cream);
}
.cover-slider { position: relative; }
.cover-slider-track {
  display: flex;
  gap: clamp(12px, 2vw, 18px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-inline: max(16px, calc((100% - 1180px) / 2));
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cover-slider-track::-webkit-scrollbar { display: none; }
.cover-slide {
  flex: 0 0 min(72vw, 640px);
  position: relative;
  aspect-ratio: 3 / 4;
  background: #2c241e;
  overflow: hidden;
  scroll-snap-align: start;
  color: var(--paper);
}
.cover-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.cover-slide-copy {
  position: absolute;
  inset: auto 0 0;
  padding: 28px 24px 22px;
  background: linear-gradient(transparent, rgba(26,20,16,.78));
}
.cover-slide-copy h3 {
  margin: 6px 0 8px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}
.cover-slide-copy .meta,
.cover-slide-copy .eyebrow { color: rgba(251,247,240,.82); }
.cover-slider-nav {
  position: absolute;
  right: max(20px, calc((100% - 1180px) / 2));
  bottom: 28px;
  z-index: 2;
  display: flex;
  gap: 8px;
}
.cover-slider-nav .hero-arrow {
  background: rgba(251,247,240,.9);
  color: var(--ink);
  border-color: transparent;
}

.service-card-media { grid-template-columns: 88px 120px 1fr; }
.service-card-media:not(:has(.service-thumb)) { grid-template-columns: 88px 1fr; }
.service-thumb {
  margin: 0;
  width: 120px;
  height: 88px;
  overflow: hidden;
  background: var(--cream);
}
.service-thumb img { width: 100%; height: 100%; object-fit: cover; }
.service-aside .intro-figure { margin-bottom: 20px; }
.contact-aside {
  background: var(--cream);
  padding: 28px 24px;
}
.contact-hours { margin-bottom: 22px; }
.contact-hours p { margin: 8px 0 0; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0; }
.contact-thanks { font-family: var(--serif); font-size: 1.6rem; }
.cta-band {
  background: var(--burgundy-deep);
  color: var(--paper);
  padding: clamp(56px, 8vw, 88px) 0;
}
.cta-band h2 { font-size: clamp(2.4rem, 5vw, 4.4rem); margin-bottom: 16px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid currentColor;
  padding: 12px 22px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  background: transparent;
  cursor: pointer;
}
.btn-solid { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-solid:hover { background: var(--burgundy); border-color: var(--burgundy); }
.btn-light { color: var(--paper); }
.btn-light:hover { background: var(--paper); color: var(--ink); }

.site-footer {
  background: var(--ink);
  color: #efe7db;
  padding: clamp(48px, 7vw, 72px) 0 max(28px, env(safe-area-inset-bottom));
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 18px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.62);
}
.footer-admin {
  color: rgba(255,255,255,0.38);
}
.footer-admin:hover {
  color: rgba(255,255,255,0.78);
}

.page-hero { padding: clamp(36px, 6vw, 72px) 0 24px; }
.page-hero h1 { font-size: clamp(2.15rem, 7vw, 5rem); margin: 8px 0 12px; }
.prose { max-width: 44rem; overflow-wrap: break-word; }
.prose :is(h2,h3) { margin-top: 1.6em; }
.rich-text img { margin: 24px 0; }
.rich-text table { display: block; max-width: 100%; overflow-x: auto; }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
  align-items: stretch;
}
.filters input, .filters select {
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px 12px;
  min-width: 0;
  flex: 1 1 180px;
}

.product-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}

.pdp-top { padding: 28px 0 8px; }
.pdp-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 64px;
  align-items: start;
  padding-bottom: 88px;
}
.pdp-gallery {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  align-items: start;
}
.pdp-gallery:has(.pdp-stage:only-child),
.pdp-gallery:not(:has(.pdp-thumbs)) {
  grid-template-columns: 1fr;
}
.pdp-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: min(78vh, 760px);
  overflow-y: auto;
}
.pdp-thumbs button {
  border: 1px solid transparent;
  padding: 0;
  width: 76px;
  height: 96px;
  background: var(--cream);
  cursor: pointer;
  overflow: hidden;
}
.pdp-thumbs button[aria-current="true"] { border-color: var(--gold); }
.pdp-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.pdp-stage {
  background: var(--cream);
  min-height: min(78vh, 760px);
}
.pdp-stage-frame {
  position: relative;
  display: block;
  width: 100%;
  height: min(78vh, 760px);
  padding: 0;
  border: 0;
  background: var(--cream);
  cursor: zoom-in;
}
.pdp-stage-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pdp-zoom-hint {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 8px 12px;
  background: rgba(26, 20, 16, 0.78);
  color: var(--paper);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.68rem;
}
.pdp-placeholder {
  min-height: min(70vh, 680px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 48px 24px;
  background:
    linear-gradient(180deg, rgba(232, 220, 200, 0.35), rgba(244, 239, 230, 0.9)),
    var(--cream);
}
.pdp-placeholder p {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0 0 8px;
}
.pdp-info { position: sticky; top: 108px; }
.pdp-kicker {
  margin: 0 0 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold);
}
.pdp-info h1 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  margin: 0 0 18px;
}
.pdp-lede {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 36ch;
  margin: 0 0 28px;
}
.pdp-facts {
  list-style: none;
  margin: 0 0 28px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
}
.pdp-facts span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.pdp-facts strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}
.pdp-price {
  font-family: var(--serif);
  font-size: 2rem;
  margin: 0 0 24px;
}
.pdp-price small { font-size: 0.9rem; letter-spacing: 0.12em; }
.pdp-specs {
  display: grid;
  gap: 0;
  margin: 0 0 32px;
}
.pdp-specs > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.pdp-specs dt {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.pdp-specs dd { margin: 0; }
.pdp-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.pdp-note { font-size: 0.88rem; color: var(--ink-soft); max-width: 38ch; }
.pdp-story {
  background: var(--cream);
  padding: clamp(52px, 8vw, 96px) 0;
}
.pdp-story-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
  align-items: start;
}
.pdp-story .prose { max-width: 42rem; font-size: 1.08rem; }
.pdp-related { padding: clamp(52px, 8vw, 96px) 0 40px; }
.pdp-related-grid { grid-template-columns: repeat(4, 1fr); }

.lightbox.is-single .lightbox-prev,
.lightbox.is-single .lightbox-next { display: none; }

.stage {
  background: var(--cream);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  cursor: zoom-in;
}
.stage img { width: 100%; height: 100%; object-fit: contain; }
.thumbs { display: flex; gap: 10px; margin-top: 12px; overflow-x: auto; }
.thumbs button {
  border: 1px solid transparent;
  padding: 0;
  width: 72px;
  height: 90px;
  background: var(--cream);
  cursor: pointer;
}
.thumbs button[aria-current="true"] { border-color: var(--gold); }
.thumbs img { width: 100%; height: 100%; object-fit: cover; }
.spec-list { display: grid; grid-template-columns: 140px 1fr; gap: 8px 16px; margin: 28px 0; }
.spec-list dt { color: var(--ink-soft); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }
.breadcrumb { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 18px; overflow-wrap: anywhere; }
.breadcrumb span { margin: 0 8px; color: var(--gold); }

.form { display: grid; gap: 14px; max-width: 36rem; }
.form label { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }
.form input, .form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  padding: 10px 0;
}
.form .field-error { color: var(--burgundy); font-size: 0.85rem; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(12, 9, 7, 0.94);
  display: none;
  z-index: 80;
  color: #fff;
  overflow: hidden;
}
.lightbox.is-open { display: grid; place-items: center; }
body.lightbox-open { overflow: hidden; }
.lightbox-stage {
  display: grid;
  place-items: center;
  width: min(92vw, 1400px);
  height: min(86vh, 100%);
  z-index: 1;
}
.lightbox img,
.lightbox-stage img {
  max-width: min(92vw, 1400px);
  max-height: 86vh;
  object-fit: contain;
  cursor: zoom-in;
  user-select: none;
  -webkit-user-drag: none;
  touch-action: none;
  will-change: transform;
}
.lightbox-hint {
  position: absolute;
  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  margin: 0;
  z-index: 2;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  pointer-events: none;
  white-space: nowrap;
}
.lightbox.is-zoomed .lightbox-hint { opacity: 0; }
.lightbox-ui {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}
.lightbox-ui button {
  pointer-events: auto;
  position: absolute;
  background: transparent;
  color: #fff;
  border: 0;
  font-size: 1.4rem;
  cursor: pointer;
}
.lightbox-close { top: max(18px, env(safe-area-inset-top)); right: max(16px, env(safe-area-inset-right)); min-width: 44px; min-height: 44px; }
.lightbox-prev { left: max(8px, env(safe-area-inset-left)); top: 50%; min-width: 44px; min-height: 44px; }
.lightbox-next { right: max(8px, env(safe-area-inset-right)); top: 50%; min-width: 44px; min-height: 44px; }
.lightbox-tools {
  position: absolute;
  top: max(18px, env(safe-area-inset-top));
  left: max(16px, env(safe-area-inset-left));
  display: flex;
  gap: 4px;
  pointer-events: auto;
}
.lightbox-tools button {
  position: static;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(255,255,255,0.28);
  font-size: 1.1rem;
}
.lightbox-close,
.lightbox-full {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem !important;
}

.cookie-banner {
  position: fixed;
  left: max(12px, env(safe-area-inset-left));
  right: max(12px, env(safe-area-inset-right));
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 50;
  background: var(--ink);
  color: #efe7db;
  padding: 18px 22px;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.cookie-banner.is-visible { display: flex; }

.error-page { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: clamp(48px, 8vw, 80px) 20px; }
.error-page h1 { font-size: clamp(2.6rem, 16vw, 6rem); margin: 0; word-break: break-word; }

@media (max-width: 1180px) {
  .grid-4, .product-grid { grid-template-columns: repeat(3, 1fr); }
  .pdp-related-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1100px) {
  .nav-toggle { display: block; }
  .header-cta-desktop { display: none; }
  .nav {
    position: fixed;
    inset: 0;
    z-index: 44;
    display: flex;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 4px;
    padding: max(96px, env(safe-area-inset-top) + 72px) clamp(24px, 6vw, 40px) max(40px, env(safe-area-inset-bottom));
    background: rgba(251, 247, 240, 0.98);
    border-bottom: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
  }
  .nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .nav a {
    font-family: var(--serif);
    font-size: clamp(1.55rem, 5.5vw, 2.15rem);
    letter-spacing: 0.04em;
    text-transform: none;
    color: var(--ink);
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav a:hover, .nav a[aria-current="page"] { color: var(--burgundy); }
  .nav .nav-cta {
    display: inline-flex;
    margin-top: 28px;
    align-self: flex-start;
    font-family: var(--sans);
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 14px 22px;
    border: 1px solid var(--ink);
  }
}

@media (max-width: 980px) {
  .split,
  .product-layout,
  .footer-grid,
  .grid-3,
  .grid-4,
  .product-grid,
  .category-grid,
  .stats-grid,
  .pdp-related-grid,
  .highlight-grid,
  .page-gallery { grid-template-columns: 1fr 1fr; }
  .about-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(160px, 22vw);
  }
  .cover-slide { flex: 0 0 min(58vw, 480px); }
  .highlight-card { padding: 22px 18px 24px; }
  .gallery-grid {
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 180px 180px;
  }
  .hero, .hero-slide.is-active { min-height: min(78vh, 760px); }
  .hero-slide { padding: 16vh 0 12vh; }
  .pdp-layout,
  .pdp-story-grid { grid-template-columns: 1fr; }
  .pdp-gallery { grid-template-columns: 1fr; }
  .pdp-thumbs {
    flex-direction: row;
    max-height: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
  }
  .pdp-thumbs button { flex: 0 0 auto; scroll-snap-align: start; }
  .pdp-info { position: static; }
  .pdp-stage-frame,
  .pdp-stage { min-height: min(52vh, 480px); height: min(52vh, 480px); }
  .pdp-story-grid { gap: 16px; }
  .page-hero-media { min-height: 36vh; padding: 14vh 0 36px; }
  .split iframe { width: 100%; height: min(280px, 50vw); }
}

@media (max-width: 720px) {
  .header-inner { min-height: 64px; }
  .split,
  .product-layout,
  .footer-grid,
  .grid-3,
  .grid-4,
  .product-grid,
  .category-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 18px 14px; }
  .highlight-grid,
  .page-gallery,
  .about-mosaic { grid-template-columns: 1fr; }
  .about-mosaic { grid-auto-rows: minmax(200px, 52vw); }
  .about-mosaic-item:first-child { grid-row: auto; }
  .page-gallery { grid-template-columns: 1fr 1fr; }
  .page-gallery img { height: min(42vw, 220px); }
  .service-card-media,
  .service-card-media:not(:has(.service-thumb)) { grid-template-columns: 48px 1fr; }
  .service-thumb { width: 100%; height: 140px; grid-column: 1 / -1; }
  .cover-slide { flex: 0 0 min(82vw, 420px); }
  .cover-slider-nav {
    right: auto;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
  }
  .cover-slide-copy { padding: 20px 16px 16px; }
  .cover-slide-copy h3 { font-size: clamp(1.25rem, 5vw, 1.8rem); }
  .contact-aside { padding: 22px 18px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 18px 16px; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    grid-auto-rows: 150px;
  }
  .gallery-grid a:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 210px;
  }
  .pdp-related-grid,
  .pdp-facts { grid-template-columns: 1fr; }
  .pdp-cta .btn { flex: 1 1 140px; justify-content: center; min-height: 44px; }
  .pdp-specs > div,
  .spec-list { grid-template-columns: 1fr; gap: 4px; }
  .pdp-stage-frame,
  .pdp-stage { min-height: min(46vh, 380px); height: min(46vh, 380px); }
  .pdp-info h1 { font-size: clamp(2rem, 9vw, 3.2rem); }
  .pdp-zoom-hint { font-size: 0.62rem; padding: 6px 10px; }
  .service-card { grid-template-columns: 48px 1fr; gap: 16px; padding: 22px 0; }
  .service-card h3 { font-size: clamp(1.35rem, 5vw, 1.8rem); }
  .category-card { min-height: 200px; }
  .category-card h3 { font-size: 1.5rem; }
  .section-head-row { flex-direction: column; align-items: flex-start; }
  .hero, .hero-slide.is-active { min-height: 72svh; }
  .hero-slide { padding: 12vh 0 108px; }
  .hero-lede { font-size: 1rem; max-width: none; }
  .hero-nav {
    right: auto;
    left: 50%;
    bottom: max(20px, env(safe-area-inset-bottom));
    transform: translateX(-50%);
  }
  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer-meta span { display: flex; flex-wrap: wrap; gap: 6px 10px; }
  .cookie-banner { flex-direction: column; align-items: stretch; }
  .cookie-banner .btn { justify-content: center; min-height: 44px; }
  .btn { min-height: 44px; justify-content: center; }
  .filters .btn { flex: 1 1 100%; }
  .form { max-width: none; }
  .lightbox img,
  .lightbox-stage img { max-width: 94vw; max-height: 72vh; }
  .lightbox-stage { width: 94vw; height: 72vh; }
  .lightbox-hint { font-size: 0.62rem; white-space: normal; text-align: center; padding: 0 16px; }
  .thumbs { -webkit-overflow-scrolling: touch; }
}

@media (max-width: 520px) {
  .product-grid { grid-template-columns: 1fr; }
  .page-gallery { grid-template-columns: 1fr; }
  .page-gallery img { height: min(58vw, 260px); }
  .cover-slide { flex: 0 0 86vw; }
  .quote-band p { font-size: clamp(1.45rem, 7vw, 2.2rem); }
  .contact-actions .btn { flex: 1 1 140px; justify-content: center; }
}

@media (max-width: 480px) {
  .stats-grid { gap: 16px 12px; }
  .stats-grid strong { font-size: clamp(1.4rem, 7vw, 2rem); }
  .gallery-grid { grid-auto-rows: 130px; gap: 8px; }
  .gallery-grid a:first-child { min-height: 180px; }
  .product-card h3 { font-size: 1.28rem; }
  .product-card figure { aspect-ratio: 4 / 5; padding: 12px; }
  .page-hero-media { min-height: 32vh; padding: 12vh 0 28px; }
}

@media (max-height: 500px) and (orientation: landscape) {
  .hero, .hero-slide.is-active { min-height: 100svh; }
  .hero-slide { padding: 72px 0 80px; place-items: center start; }
  .hero h1 { font-size: clamp(2rem, 8vh, 3.4rem); }
  .nav { justify-content: flex-start; padding-top: 80px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
