/* ═══════════════════════════════════════════════════════
   VINCENT ALEXANDER — Shared Stylesheet
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@200;300;400;500&display=swap');

/* ── TOKENS ── */
:root {
  --warm-white: #F8F5F1;
  --stone:      #C9B99A;
  --stone-light:#E8DDD0;
  --charcoal:   #1A1A1A;
  --mid:        #6B6560;
  --pale:       #F0EBE4;
  --accent:     #8B7355;
  --ink:        #2A2520;
  --dark:       #111010;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;

  --max-w: 1400px;
  --gutter: 48px;
  --gutter-sm: 24px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { color: inherit; }

body {
  font-family: var(--font-sans);
  background: var(--warm-white);
  color: var(--ink);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── UTILITIES ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.rule {
  height: 1px;
  background: var(--stone);
  border: none;
  margin: 0;
}

.label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  height: 72px;
  background: rgba(248,245,241,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s;
}
nav.scrolled { border-color: var(--stone-light); }

.nav-logo {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  white-space: nowrap;
}
.nav-logo span { color: var(--stone); }
.nav-logo-mark {
  height: 32px;
  width: auto;
  margin-right: 10px;
  vertical-align: middle;
  display: inline-block;
}
.footer-logo-mark {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
  display: block;
  opacity: 0.85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-links a {
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a.active { color: var(--charcoal); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: -16px;
  background: var(--warm-white);
  border: 1px solid var(--stone-light);
  list-style: none;
  min-width: 180px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  padding: 8px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.nav-links > li:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 10px;
}
.nav-dropdown a:hover { background: var(--pale); }

.nav-cta {
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid var(--stone);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { color: var(--accent); border-color: var(--accent); }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--charcoal);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile overlay menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: var(--warm-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--stone); }

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.55);
  padding: 64px var(--gutter) 40px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 24px;
}
.footer-retailer {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,185,154,0.4);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.footer-retailer:hover { border-color: var(--stone); }
.footer-col-title {
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--max-w);
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
}

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  padding: 160px var(--gutter) 80px;
  text-align: center;
  border-bottom: 1px solid var(--stone-light);
}
.page-header .label { margin-bottom: 16px; }
.page-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.page-header p {
  font-size: 16px;
  color: var(--mid);
  max-width: 520px;
  margin: 0 auto;
}

/* ── PRODUCT GRID (shared) ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--stone-light);
}
.product-card {
  background: var(--warm-white);
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.product-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--pale);
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.04); }
.product-card-detail {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s;
}
.product-card-detail img { width: 100%; height: 100%; object-fit: cover; }
.product-card:hover .product-card-detail { opacity: 1; }
.product-card-no-image {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  background: var(--pale);
}
.product-card-no-image span:first-child {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--stone);
}
.product-card-no-image span:last-child {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
}
.product-card-info {
  padding: 20px 22px 24px;
}
.product-card-style {
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 6px;
}
.product-card-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.product-card-price {
  font-size: 13px;
  color: var(--mid);
}

/* ── FILTER BAR ── */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 24px var(--gutter);
  border-bottom: 1px solid var(--stone-light);
  flex-wrap: wrap;
}
.filter-btn {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  background: none;
  border: 1px solid transparent;
  padding: 8px 16px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.filter-btn:hover { color: var(--charcoal); border-color: var(--stone-light); }
.filter-btn.active { color: var(--charcoal); border-color: var(--stone); background: var(--pale); }

/* ── HOMEPAGE ── */
.hero {
  margin-top: 72px;
  position: relative;
  width: 100%;
  /* ~14.5% shorter than 16/9 cumulative (three 5% steps); band shorter, less image at bottom */
  --hero-aspect-ratio: 128000/61731;
  aspect-ratio: var(--hero-aspect-ratio);
  overflow: hidden;
  background: var(--charcoal);
  --hero-scrim-opacity: 0.2;
  --hero-object-position: center 45%;
  --hero-logo-top: 40%;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-object-position);
  display: block;
  opacity: 0.92;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(0, 0, 0, var(--hero-scrim-opacity));
}
.hero-logo {
  position: absolute;
  top: var(--hero-logo-top);
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  animation: fadeIn 1.6s ease both 0.4s;
  z-index: 2;
}
.hero-wordmark {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  display: block;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}
.hero-wordmark-sub {
  font-size: clamp(9px, 1vw, 12px);
  font-weight: 300;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
  display: block;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.brand-statement {
  padding: 80px var(--gutter) 72px;
  text-align: center;
  border-bottom: 1px solid var(--stone-light);
}
.brand-statement p {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.editorial-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.editorial-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.editorial-image:hover img { transform: scale(1.03); }
.editorial-text {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--stone-light);
}
.editorial-text .label { margin-bottom: 20px; }
.editorial-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 24px;
  line-height: 1.25;
  letter-spacing: 0.02em;
}
.editorial-text p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
  max-width: 420px;
}

/* Collection preview (homepage) */
.collection-preview {
  padding: 100px 0 0;
}
.collection-preview-header {
  padding: 0 var(--gutter) 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.collection-preview-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: 0.03em;
}
.collection-preview-header a {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  border-bottom: 1px solid var(--stone);
  padding-bottom: 2px;
  transition: color 0.2s;
  white-space: nowrap;
}
.collection-preview-header a:hover { color: var(--charcoal); }

/* Acrilion callout (homepage) */
.acrilion-callout {
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.acrilion-callout-text {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.acrilion-callout-text .label { color: var(--stone); margin-bottom: 20px; }
.acrilion-callout-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 300;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.acrilion-callout-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 40px;
}
.btn-ghost {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: none;
  border: 1px solid rgba(201,185,154,0.5);
  padding: 14px 28px;
  transition: background 0.2s, color 0.2s;
  align-self: flex-start;
}
.btn-ghost:hover { background: rgba(201,185,154,0.12); color: #fff; }
.btn-stone {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  border: 1px solid var(--stone);
  padding: 14px 28px;
  transition: background 0.2s;
  align-self: flex-start;
}
.btn-stone:hover { background: var(--stone-light); }
.acrilion-callout-image {
  overflow: hidden;
}
.acrilion-callout-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
}

/* Founder section */
.founder {
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.founder-image {
  overflow: hidden;
  max-height: 520px;
}
.founder-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(20%);
}
.founder-text {
  padding: 80px 72px;
  background: var(--pale);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.founder-text .label { margin-bottom: 20px; }
.founder-quote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.45;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}
.founder-attr {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
}
.founder-attr a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(139,115,85,0.4);
  margin-left: 16px;
  font-size: 10px;
}

/* ── PRODUCT PAGE ── */
.product-layout {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 72px);
}
.product-image-panel {
  position: sticky;
  top: 72px;
  height: calc(100vh - 72px);
  overflow: hidden;
  background: var(--pale);
}
.product-image-panel img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ── 10-YEAR GUARANTEE SEAL ── */
.guarantee-seal {
  display: block;
  width: var(--seal-size, 120px);
  height: auto;
  pointer-events: none;
  user-select: none;
}
/* Hallmark in the top-right of the product description column */
.product-detail-panel { position: relative; }
.product-detail-panel .guarantee-seal {
  position: absolute;
  top: 48px;
  right: 56px;
  z-index: 2;
  width: 150px;
  --seal-size: 150px;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.12));
}
/* Standalone hallmark above the collection page header (sits on warm-white) */
.page-header .guarantee-seal {
  width: 180px;
  --seal-size: 180px;
  margin: 0 auto 28px;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.12));
}
.product-image-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
}
.product-image-placeholder span:first-child {
  font-family: var(--font-serif); font-size: 48px; color: var(--stone);
}
.product-image-placeholder span:last-child {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mid);
}
.product-detail-panel {
  padding: 64px 64px 96px;
  overflow-y: auto;
}
.product-style-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 16px;
}
.product-name {
  font-family: var(--font-serif);
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  line-height: 1.1;
}
.product-tagline {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 440px;
}
.product-divider {
  height: 1px;
  background: var(--stone-light);
  margin: 36px 0;
}
.spec-drawing {
  margin: 32px 0 24px;
  padding: 24px 20px;
  background: var(--pale);
  border-radius: 4px;
  text-align: center;
}
.spec-drawing img {
  max-width: 320px;
  height: auto;
  display: inline-block;
  opacity: 0.75;
}

/* Variant selector */
.variant-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 12px;
}
.variant-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.variant-btn {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 10px 18px;
  border: 1px solid var(--stone-light);
  background: none;
  color: var(--mid);
  cursor: pointer;
  transition: all 0.2s;
}
.variant-btn:hover { border-color: var(--stone); color: var(--charcoal); }
.variant-btn.active { border-color: var(--charcoal); color: var(--charcoal); background: var(--pale); }
.variant-availability {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  background: var(--pale);
  padding: 4px 10px;
  display: inline-block;
  margin-left: 4px;
}

/* Spec table */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 36px;
}
.spec-table tr {
  border-bottom: 1px solid var(--stone-light);
}
.spec-table tr:first-child { border-top: 1px solid var(--stone-light); }
.spec-table td {
  padding: 13px 0;
  font-size: 14px;
}
.spec-table td:first-child {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  width: 46%;
}
.spec-table td:last-child { color: var(--charcoal); }

/* Material badge */
.material-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--pale);
  border-left: 2px solid var(--stone);
  margin-bottom: 36px;
}
.material-badge-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
}
.material-badge-desc {
  font-size: 12px;
  color: var(--mid);
  margin-top: 2px;
}
.material-badge a {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(139,115,85,0.3);
  padding-bottom: 1px;
  margin-top: 4px;
  display: inline-block;
}

/* Waste note */
.waste-note {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.65;
  padding: 16px 20px;
  border-left: 2px solid var(--stone-light);
  margin-bottom: 24px;
}
.waste-colours {
  margin-bottom: 36px;
}
.waste-colours .variant-label { margin-bottom: 10px; }
.waste-colour-list {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.9;
}
.waste-colour-list li {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  max-width: 300px;
}
.waste-colour-list li::before {
  content: '—';
  margin-right: 8px;
  color: var(--stone);
  flex-shrink: 0;
}
.waste-price {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-left: auto;
  padding-left: 12px;
  flex-shrink: 0;
}
.painted-finish-section {
  margin-bottom: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--stone-light);
}
.painted-finish-price {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  margin-top: 8px;
}

/* Download CTA */
.product-download {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid var(--stone-light);
  border-bottom: 1px solid var(--stone-light);
  margin-bottom: 64px;
}
.product-download a {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}
.product-download a:hover { color: var(--charcoal); }
.product-download .icon { font-size: 18px; color: var(--stone); }

/* Related baths */
.related {
  padding: 80px var(--gutter) 100px;
  border-top: 1px solid var(--stone-light);
}
.related-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.related-header h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--charcoal);
}
.related-header a {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  border-bottom: 1px solid var(--stone);
  padding-bottom: 2px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--stone-light);
}

/* ── COLLECTION PAGE ── */
.collection-count {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--mid);
  padding: 0 var(--gutter) 0 0;
}

/* ── ACRILION PAGE ── */
.material-hero {
  margin-top: 72px;
  position: relative;
  height: 60vh;
  min-height: 440px;
  overflow: hidden;
  background: var(--charcoal);
}
.material-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.material-hero-text {
  position: absolute;
  bottom: 64px; left: var(--gutter);
}
.material-hero-text .label { color: rgba(255,255,255,0.85); margin-bottom: 12px; text-shadow: 0 1px 4px rgba(0,0,0,0.3); }
.material-hero-text h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.25);
}
.material-props-section {
  padding: 100px var(--gutter);
}
.material-props-section > .label { margin-bottom: 48px; }
.material-intro {
  max-width: 680px;
  margin-bottom: 72px;
}
.material-intro h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 24px;
  line-height: 1.25;
}
.material-intro p { font-size: 16px; color: var(--mid); line-height: 1.75; }
.material-props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--stone-light);
  margin-bottom: 100px;
}
.material-prop {
  background: var(--warm-white);
  padding: 48px 40px;
}
.material-prop-icon {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--stone);
}
.material-prop h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.material-prop p { font-size: 14px; color: var(--mid); line-height: 1.7; }
.material-editorial {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px var(--gutter);
  border-top: 1px solid var(--stone-light);
}
.material-editorial-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 24px;
  line-height: 1.3;
}
.material-editorial-text p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.material-editorial-image {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.material-editorial-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── OUR STORY PAGE ── */
.story-intro {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.story-portrait {
  overflow: hidden;
  background: var(--charcoal);
}
.story-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(15%);
}
.story-intro-text {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-intro-text .label { margin-bottom: 20px; }
.story-intro-text h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 28px;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
.story-intro-text p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 14px;
  max-width: 460px;
}
.story-body {
  padding: 100px var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.timeline {
  padding: 80px var(--gutter);
  background: var(--pale);
}
.timeline h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 56px;
  text-align: center;
  letter-spacing: 0.04em;
}
.timeline-items {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.timeline-items::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 24px;
  width: 1px;
  background: var(--stone);
}
.timeline-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.timeline-dot {
  width: 9px; height: 9px;
  background: var(--stone);
  border-radius: 50%;
  margin-top: 8px;
  justify-self: center;
  position: relative;
  z-index: 1;
}
.timeline-year {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 6px;
}
.timeline-content h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.timeline-content p { font-size: 14px; color: var(--mid); line-height: 1.7; }

/* ── RETAILER / DOWNLOADS ── */
.simple-page {
  margin-top: 72px;
  min-height: calc(100vh - 72px - 280px);
  padding: 100px var(--gutter);
}
.coming-soon {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 0;
}
.coming-soon h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.coming-soon p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  :root { --gutter: 32px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .material-props-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  :root { --gutter: 24px; }
  .editorial { grid-template-columns: 1fr; }
  .editorial-image { aspect-ratio: 16/9; }
  .editorial-text { padding: 48px var(--gutter); }
  .acrilion-callout { grid-template-columns: 1fr; }
  .acrilion-callout-image { aspect-ratio: 16/9; order: -1; }
  .acrilion-callout-text { padding: 56px var(--gutter); }
  .founder { grid-template-columns: 1fr; }
  .founder-image { max-height: 360px; }
  .founder-text { padding: 48px var(--gutter); }
  .collection-preview-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .product-layout { grid-template-columns: 1fr; margin-top: 72px; }
  .product-image-panel { position: relative; height: 60vw; min-height: 280px; }
  .product-detail-panel .guarantee-seal { position: static; float: none; display: block; width: 110px; --seal-size: 110px; margin: 0 0 12px auto; }
  .page-header .guarantee-seal { width: 140px; --seal-size: 140px; margin-bottom: 22px; }
  .spec-drawing { margin: 24px 0 16px; padding: 16px; }
  .spec-drawing img { max-width: 260px; }
  .product-detail-panel { padding: 40px var(--gutter) 64px; }
  .story-intro { grid-template-columns: 1fr; }
  .story-portrait { min-height: 360px; }
  .story-intro-text { padding: 48px var(--gutter); }
  .material-editorial { grid-template-columns: 1fr; gap: 40px; }
  .material-editorial-image { aspect-ratio: 16/9; }
}

@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .product-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero {
    /* ~14.5% shorter than 4/3 cumulative (three 5% steps) */
    --hero-aspect-ratio: 32000/20577;
    --hero-scrim-opacity: 0.24;
  }
  .brand-statement { padding: 56px var(--gutter); }
  .material-props-grid { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 40px 1fr; gap: 16px; }

  .btn-ghost, .btn-stone {
    padding: 16px 32px;
    font-size: 12px;
    min-height: 44px;
  }

  body {
    font-size: 18px;
  }

  .label {
    font-size: 11px;
  }

  h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .hero { aspect-ratio: 1/1; }
  .brand-statement { padding: 40px var(--gutter); }
  .editorial-text, .acrilion-callout-text, .founder-text { padding: 32px var(--gutter); }
  .mobile-menu a { font-size: 28px; }
}
