/* ============================================================
   WinDor — Design System
   Phase 1: Website
   ============================================================ */

:root {
  /* === Brand palette (per client brief) === */
  --charcoal: #252729;        /* Architectural Charcoal — primary ink */
  --warm-white: #F8F7F3;      /* Warm White — primary background */
  --stone-grey: #D8D3CB;      /* Stone Grey — borders, dividers, surfaces */
  --deep-slate: #3E464D;      /* Deep Slate — secondary text, dark surfaces */
  --bronze: #B08A57;          /* Warm Bronze — accent */

  /* === Material system accents (per client brief) === */
  --mat-alu: #404040;         /* Aluminium */
  --mat-upvc: #F2F2EF;        /* uPVC */
  --mat-timber: #8A6742;      /* Timber */

  /* === Functional colours (derived) === */
  --ink: var(--charcoal);
  --paper: var(--warm-white);
  --border: #E5E1D7;
  --border-soft: #EFEBE2;
  --muted: #6B6A66;
  --muted-2: #8A8780;
  --line: rgba(37, 39, 41, 0.10);
  --line-light: rgba(248, 247, 243, 0.14);

  /* === Dark surface variants === */
  --dark-bg: #1A1B1D;
  --dark-bg-2: #232527;
  --dark-text: #F8F7F3;
  --dark-muted: rgba(248, 247, 243, 0.65);

  /* === Type === */
  --font-display: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  /* === Spacing scale (tightened — sections breathe without flooding) === */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 40px;
  --s-8: 56px;
  --s-9: 96px;
  --s-10: 120px;
  --s-11: 160px;

  /* === Layout === */
  --max-w: 1320px;
  --gutter: 48px;
  --gutter-sm: 24px;
  --radius: 4px;
  --radius-lg: 8px;

  /* === Motion === */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: clip; max-width: 100%; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'kern', 'liga', 'ss01';
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }

/* === Typography === */
h1, h2, h3, h4, h5, .display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: var(--ink);
}
h1 { font-size: clamp(44px, 5.5vw, 76px); line-height: 0.98; }
h2 { font-size: clamp(34px, 4vw, 56px); line-height: 1.05; }
h3 { font-size: clamp(24px, 2.6vw, 36px); line-height: 1.1; }
h4 { font-size: clamp(20px, 2vw, 26px); line-height: 1.2; }
h5 { font-size: 18px; line-height: 1.3; }

.lede { font-size: 18px; line-height: 1.55; color: var(--ink-soft, #2A2A28); max-width: 56ch; }
.body-lg { font-size: 17px; line-height: 1.6; }
.body { font-size: 15px; line-height: 1.6; }
.body-sm { font-size: 13px; line-height: 1.55; color: var(--muted); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
}
.system-hero .eyebrow { font-size: 16px; letter-spacing: 0.28em; }
.btn.btn-bordered { border: 2px solid var(--warm-white); }
.system-hero .hero-tagline { font-size: 18px; color: rgba(248,247,243,0.85); font-style: italic; margin: 16px 0 24px 0; max-width: 50ch; }
/* .eyebrow::before removed — decorative dashes out per client feedback */

em { font-style: italic; }

/* === Layout === */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--s-9) 0; }
.section-sm { padding: var(--s-8) 0; }
.section-lg { padding: var(--s-10) 0; }

/* === Utility === */
.flex { display: flex; }
.grid { display: grid; }
.between { display: flex; justify-content: space-between; align-items: center; }
.text-bronze { color: var(--bronze); }
.text-muted { color: var(--muted); }
.text-charcoal { color: var(--charcoal); }
.bg-charcoal { background: var(--charcoal); color: var(--warm-white); }
.bg-slate { background: var(--deep-slate); color: var(--warm-white); }
.bg-stone { background: var(--stone-grey); }
.bg-paper { background: var(--paper); }
.bronze-rule { width: 40px; height: 1px; background: var(--bronze); display: inline-block; vertical-align: middle; margin-right: 12px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 247, 243, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 18px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}
.nav .logo { display: flex; align-items: center; gap: 16px; }
.nav .logo img { width: 56px; height: 56px; }
.nav .logo .wordmark { display: flex; flex-direction: column; }
.nav .logo .wordmark .name {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--charcoal);
}
.nav .logo .wordmark .name .accent { color: var(--bronze); }

.nav .menu { display: flex; justify-content: center; gap: 4px; }
.nav .menu > li { position: relative; }
.nav .menu a, .nav .menu .drop-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  border-radius: 4px;
  transition: background 0.2s var(--ease);
  letter-spacing: 0.005em;
}
.nav .menu a:hover, .nav .menu .drop-toggle:hover { background: rgba(37, 39, 41, 0.05); }
.nav .menu .arrow { font-size: 9px; opacity: 0.6; margin-left: 2px; }

.nav .menu .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.nav .menu > li:hover .dropdown,
.nav .menu > li:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav .menu .dropdown a {
  padding: 10px 14px;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 400;
}
.nav .menu .dropdown a:hover { background: var(--warm-white); color: var(--ink); }
.nav .menu .dropdown .tag-trade {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--bronze);
  color: #fff;
  padding: 2px 6px;
  border-radius: 2px;
  font-weight: 600;
}

.nav .actions { display: flex; gap: 8px; align-items: center; }
.nav .actions .login {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 9px 14px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav .actions .login:hover { color: var(--ink); }
.nav .actions .login .lock { font-size: 12px; opacity: 0.7; }

.nav-mobile-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-mobile-toggle span { display: block; width: 24px; height: 1.5px; background: var(--ink); margin: 5px 0; transition: 0.2s; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all 0.2s var(--ease);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}
.btn .arrow { transition: transform 0.2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }
.btn-primary { background: var(--charcoal); color: var(--warm-white); }
.btn-primary:hover { background: #000; }
.btn-secondary { background: transparent; color: var(--warm-white); border-color: rgba(248,247,243,0.6); }
.btn-secondary:hover { background: rgba(248,247,243,0.1); }
.btn-secondary-dark { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-secondary-dark:hover { background: var(--charcoal); color: var(--warm-white); }
.btn-bronze { background: var(--bronze); color: #fff; }
.btn-bronze:hover { background: #9A7748; }
.btn-ghost { background: transparent; color: var(--ink); padding: 10px 0; border: 0; }
.btn-ghost:hover { color: var(--bronze); }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-lg { padding: 18px 32px; font-size: 15px; }
.btn-block { display: flex; width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--warm-white);
}
.hero .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero .overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(37,39,41,0.7) 0%, rgba(37,39,41,0) 55%),
    linear-gradient(180deg, rgba(37,39,41,0.75) 0%, rgba(37,39,41,0.8) 50%, rgba(37,39,41,0.92) 100%);
  z-index: 1;
}
.hero .inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--s-10) var(--gutter) var(--s-8);
  width: 100%;
}
.hero .eyebrow { color: var(--bronze); }
.hero .eyebrow::before { background: var(--bronze); }
.hero h1 { color: var(--warm-white); max-width: 18ch; }
.hero h1 em { color: #E5C68C; font-style: italic; }
.hero .lede { color: rgba(248,247,243,0.92); margin-top: 24px; max-width: 56ch; font-size: 17px; line-height: 1.6; }
.hero .lede em { font-style: italic; color: var(--warm-white); }
.hero .ctas { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero .ctas .btn-primary { background: var(--warm-white); color: var(--charcoal); border: 1px solid var(--warm-white); }
.hero .ctas .btn-primary:hover { background: transparent; color: var(--warm-white); border-color: var(--warm-white); }
/* .hero .scroll-cue removed — scroll indicator out per client feedback */

/* Hero v4 — eyebrow-line (uppercase per new brief) / h1 (3-line hero) */
.hero .eyebrow-line {
  display: block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #D4A574;
  line-height: 1.5;
  margin-bottom: 32px;
  max-width: 60ch;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.hero .eyebrow-line .nowrap { white-space: nowrap; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--warm-white);
  max-width: 18ch;
  margin-top: 40px;
  letter-spacing: -0.01em;
}
.hero h1 em { font-style: italic; color: #E5C68C; }
.hero .tagline {
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248,247,243,0.55);
  font-weight: 400;
}

/* Sub-page hero */
.subhero {
  background: var(--charcoal);
  color: var(--warm-white);
  padding: var(--s-10) 0 var(--s-9);
}
.subhero .wrap { max-width: var(--max-w); }
.subhero .eyebrow { color: var(--bronze); }
.subhero h1 { color: var(--warm-white); max-width: 22ch; margin-top: 16px; }
.subhero h1 em { color: #E5C68C; }
.subhero .lede { color: rgba(248,247,243,0.8); margin-top: 24px; max-width: 60ch; }
.subhero .meta { margin-top: 40px; display: flex; gap: 32px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid var(--line-light); }
.subhero .meta .k { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(248,247,243,0.5); }
.subhero .meta .v { font-size: 14px; color: var(--warm-white); margin-top: 4px; font-weight: 500; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  overflow: hidden;
}
.trust-bar .ticker { flex: 1; overflow: hidden; }
.trust-bar .ticker .track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
  align-items: center;
  min-width: max-content;
}
.trust-bar .ticker .track > span {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.trust-bar .ticker .track > span::after {
  content: "✕";
  color: var(--bronze);
  font-weight: 400;
  font-size: 11px;
}
.trust-bar .ticker .track .cert {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: 3px;
}
.trust-bar .ticker .track .cert-logo {
  height: 50px;
  width: auto;
  display: block;
  flex-shrink: 0;
  margin-right: 56px;
  filter: grayscale(20%);
  opacity: 0.85;
  transition: filter 0.3s, opacity 0.3s;
}
.trust-bar .ticker .track .cert-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}
.trust-bar .ticker .track .brand-logo {
  height: 50px;
  width: auto;
  display: block;
  flex-shrink: 0;
  filter: grayscale(20%);
  opacity: 0.85;
}
.ticker-set { display: flex; flex-shrink: 0; align-items: center; }
.ticker-set .brand-logo { margin-right: 80px; }
.trust-bar .ticker .track .brand-logo {
  height: 50px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Respect user motion preferences — skip the journey animation */
@media (prefers-reduced-motion: reduce) {
  .process-journey::before { transform: scaleX(1) !important; transition: none !important; }
  .process-journey .process-step .marker,
  .process-journey .process-step h3,
  .process-journey .process-step p {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .trust-bar .ticker .track { animation: none !important; }
}

/* ============================================================
   EUROCORE PRINCIPLES (Section 3.5)
   ============================================================ */
.eurocore {
  background: var(--warm-white);
  padding: var(--s-7) 0;
  border-bottom: 1px solid var(--border);
}
.eurocore-home {
  background: var(--warm-white);
  padding: var(--s-7) 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.eurocore-home .eurocore-home-inner { max-width: 78ch; margin: 0 auto; }
.eurocore-home h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 24px 0;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.eurocore-home p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 16px 0;
}
.eurocore .head { margin-bottom: 32px; }
.eurocore .head .eurocore-eyebrow {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 16px;
}
.eurocore .head .head-grid > div:first-child { text-align: left; }
  margin: 0 0 40px 0;
  display: block;
}
.eurocore .head .eyebrow { margin-bottom: 32px; }
.eurocore .head .head-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: stretch; }
.eurocore .head .three-lines { font-family: var(--font-display); font-size: clamp(28px, 2.6vw, 38px); font-weight: 400; line-height: 1.1; color: var(--ink); margin: 0 0 32px 0; }
.eurocore .head .three-lines em { color: var(--bronze); font-style: italic; }
.eurocore .head h2 em { color: var(--bronze); }
.eurocore .head .lede { color: var(--ink-soft); font-size: 17px; line-height: 1.65; max-width: none; align-self: stretch; margin-bottom: 16px; }
.eurocore .head .lede.soft { color: var(--muted); font-size: 15px; margin-top: 8px; }
.eurocore .eurocore-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--bronze);
  margin: 0 0 24px 0;
  white-space: nowrap;
}
.eurocore .glazing-copy > p { margin-top: 0; }

/* EuroCore cert ticker (no heading, just text) */
.eurocore .cert-ticker {
  margin-top: 64px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.eurocore .cert-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  animation: cert-scroll 40s linear infinite;
}
.eurocore .cert-track .dot { color: var(--bronze); }
@keyframes cert-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.eurocore .pillars { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border-top: 1px solid var(--border); margin-top: 56px; }
.pillar { padding: 32px 24px 32px 0; border-right: 1px solid var(--border); transition: background 0.2s var(--ease); }
.pillar:last-child { border-right: 0; }
.pillar:not(:first-child) { padding-left: 24px; }
.pillar .pillar-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.pillar .icn { width: 32px; height: 32px; color: var(--bronze); flex-shrink: 0; transition: transform 0.3s var(--ease); }
.pillar .icn svg { width: 100%; height: 100%; }
.pillar:hover .icn { transform: scale(1.1); }
.pillar h3 { font-size: 19px; font-weight: 500; color: var(--ink); margin: 0; line-height: 1.2; transition: color 0.2s var(--ease); }
.pillar:hover h3 { color: var(--bronze); }
.pillar p { font-size: 14px; line-height: 1.6; color: var(--ink-soft); margin: 0; }
.eurocore .foot { margin-top: 56px; display: flex; justify-content: center; align-items: center; gap: 32px; flex-wrap: wrap; }
.eurocore .foot p { font-size: 15px; color: var(--ink-soft); max-width: 60ch; }
.eurocore .foot p em { color: var(--bronze); font-style: italic; }

/* ============================================================
   PREMIUM SYSTEMS GRID (3 cards)
   ============================================================ */
.systems-grid {
  background: var(--paper);
  padding: var(--s-8) 0;
}
.systems-grid .head { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 40px; align-items: end; }
.systems-grid .head .eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.24em; }
.systems-grid .head h2 { max-width: 16ch; }
.systems-grid .head h2 em { color: var(--bronze); }
.systems-grid .head p { color: var(--ink-soft); font-size: 16px; line-height: 1.65; }
.systems-grid .head p em { color: var(--bronze); font-style: italic; font-weight: 500; }
.systems-grid .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.systems-grid .grid.grid-4 { grid-template-columns: repeat(4, 1fr); }
.sys-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.3s var(--ease); text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.sys-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,0.08); border-color: var(--bronze); }
.sys-card .img { aspect-ratio: 4/3; background-size: cover; background-position: center; background-color: var(--stone-grey); }
.sys-card .body { padding: 24px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.sys-card .num { font-family: var(--font-mono); font-size: 11px; color: var(--bronze); letter-spacing: 0.12em; margin-bottom: 8px; font-weight: 300; }
.sys-card h3 { font-size: 24px; margin-bottom: 10px; }
.sys-card p { font-size: 14px; line-height: 1.6; color: var(--ink-soft); flex: 1; }
.sys-card .foot { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.sys-card .foot .tag { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.sys-card .foot .more { font-size: 13px; color: var(--bronze); font-weight: 500; }
/* ============================================================
   JOINERY GRID — Choose Your Joinery System (Windows page)
   ============================================================ */
.joinery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.joinery-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease);
}
.joinery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.08);
  border-color: var(--bronze);
}
.joinery-card .joinery-img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: var(--stone-grey);
  transition: transform 0.4s var(--ease);
}
.joinery-card:hover .joinery-img {
  transform: scale(1.03);
}
.joinery-card .joinery-body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.joinery-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--ink);
}
.joinery-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  flex: 1;
  margin-bottom: 16px;
}
.joinery-card p em {
  color: var(--bronze);
  font-style: italic;
  font-weight: 500;
}
.joinery-card .arrow {
  font-size: 13px;
  color: var(--bronze);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform 0.3s var(--ease);
  display: inline-block;
}
.joinery-card:hover .arrow {
  transform: translateX(4px);
}
.joinery-cta {
  text-align: center;
  margin-top: 32px;
}
/* ============================================================
   DOOR FEATURES — Architectural Features 5 items (mirrors arch-features)
   ============================================================ */
.door-features {
  background: var(--warm-white);
  padding: var(--s-8) 0;
}
.door-features .head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.1;
}
.door-features .head h2 em {
  color: var(--bronze);
  font-style: italic;
}
.door-features .features-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--border);
}
.door-features .feature-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border);
  text-align: left;
  padding: 18px 0;
  display: grid;
  grid-template-columns: 50px 32px 220px 1fr 40px;
  gap: 20px;
  align-items: start;
  cursor: pointer;
  transition: padding 0.3s var(--ease);
  position: relative;
}
.door-features .feature-item:hover {
  padding-left: 16px;
}
.door-features .feature-item.active {
  padding-left: 16px;
}
.door-features .feature-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  background: var(--bronze);
}
.door-features .feature-item .feature-num {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--bronze);
  letter-spacing: 0.12em;
  font-weight: 400;
  padding-top: 6px;
}
.door-features .feature-item .feature-icn {
  width: 28px;
  height: 28px;
  color: var(--bronze);
  padding-top: 2px;
  transition: color 0.3s var(--ease);
}
.door-features .feature-item .feature-icn svg {
  width: 100%;
  height: 100%;
}
.door-features .feature-item.active .feature-icn {
  color: var(--ink);
}
.door-features .feature-item h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  transition: color 0.3s var(--ease);
  padding-top: 4px;
}
.door-features .feature-item.active h3 {
  color: var(--bronze);
}
.door-features .feature-item p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), opacity 0.4s var(--ease), margin 0.4s var(--ease);
  margin: 0;
}
.door-features .feature-item.active p {
  max-height: 200px;
  opacity: 1;
  margin-top: 0;
}
.door-features .feature-item .feature-toggle {
  font-size: 24px;
  color: var(--bronze);
  text-align: right;
  padding-top: 4px;
  transition: transform 0.3s var(--ease);
}
.door-features .feature-item.active .feature-toggle {
  transform: rotate(45deg);
}
@media (max-width: 1024px) {
  .door-features .feature-item { grid-template-columns: 50px 32px 1fr 40px; }
  .door-features .feature-item h3 { grid-column: 1 / -1; padding-top: 0; }
}
@media (max-width: 640px) {
  .door-features .feature-item { grid-template-columns: 40px 1fr 40px; }
  .door-features .feature-item .feature-icn { display: none; }
  .door-features .feature-item p { grid-column: 1 / -1; }
}

/* ============================================================
   CONFIGURATION OPTIONS — 2-col layout with image + bullet list
   ============================================================ */
.config-options {
  background: var(--paper);
  padding: var(--s-9) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.config-options .config-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.config-options .config-left {
  position: relative;
}
.config-options .config-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--charcoal);
}
.config-options .config-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  animation: carousel-scroll 24s infinite;
}
.config-options .config-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.config-options .config-right h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 46px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 16px;
  white-space: nowrap;
}
.config-options .config-right h2 em {
  color: var(--bronze);
  font-style: italic;
}
.config-options .config-right > p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.config-options .config-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border);
}
.config-options .config-bullets li {
  padding: 14px 0;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 1024px) {
  .config-options .config-layout { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   DOOR TAILOR — 6 image cards (matches Choose Your Window Style)
   ============================================================ */
.door-tailor {
  background: var(--warm-white);
  padding: var(--s-8) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.door-tailor .head h2 {
  font-family: var(--font-display);
  font-weight: 400;
}
.door-tailor .door-tailor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dt-card {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--warm-white);
  display: block;
  background: var(--charcoal);
}
.dt-card .dt-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--deep-slate);
  transition: transform 0.6s var(--ease);
}
.dt-card:hover .dt-img {
  transform: scale(1.05);
}
.dt-card .dt-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,27,29,0.0) 0%, rgba(26,27,29,0.55) 45%, rgba(26,27,29,0.92) 100%);
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background 0.4s var(--ease);
}
.dt-card:hover .dt-overlay {
  background: linear-gradient(180deg, rgba(26,27,29,0.3) 0%, rgba(26,27,29,0.7) 30%, rgba(26,27,29,0.95) 100%);
}
.dt-card .dt-overlay h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--warm-white);
  margin-bottom: 6px;
  line-height: 1.05;
}
.dt-card .dt-overlay p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(248,247,243,0.9);
}
@media (max-width: 1024px) {
  .door-tailor .door-tailor-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .door-tailor .door-tailor-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HARDWARE COLLECTION — 8 image cards (4x2 grid) with hover overlay
   ============================================================ */
.hardware-collection {
  background: var(--warm-white);
  padding: var(--s-8) 0 var(--s-9) 0;
}
.hardware-collection .head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 48px);
  line-height: 1.1;
}
.hardware-collection .head h2 em {
  color: var(--bronze);
  font-style: italic;
}
.hardware-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hardware-card {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--charcoal);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.hardware-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.hardware-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--deep-slate);
  transition: transform 0.6s var(--ease);
}
.hardware-card:hover .hardware-img {
  transform: scale(1.05);
}
.hardware-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,27,29,0.0) 0%, rgba(26,27,29,0.55) 50%, rgba(26,27,29,0.92) 100%);
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background 0.4s var(--ease);
}
.hardware-card:hover .hardware-overlay {
  background: linear-gradient(180deg, rgba(26,27,29,0.3) 0%, rgba(26,27,29,0.75) 30%, rgba(26,27,29,0.97) 100%);
}
.hardware-overlay h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--warm-white);
  margin-bottom: 8px;
  line-height: 1.1;
}
.hardware-overlay p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(248,247,243,0.9);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease), margin 0.3s var(--ease);
  margin: 0;
}
.hardware-card:hover .hardware-overlay p {
  max-height: 200px;
  opacity: 1;
  margin-top: 8px;
}
@media (max-width: 1024px) {
  .hardware-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .hardware-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hardware-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESOURCES PAGE — Big "Resources" hero, simple 2-col cards, FAQ accordion
   ============================================================ */
.resources-hero {
  background: var(--warm-white);
  padding: var(--s-9) 0 var(--s-8) 0;
}
.resources-hero .eyebrow {
  margin-bottom: 8px;
}
.resources-big {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.05;
  margin: 0 0 20px 0;
  letter-spacing: -0.01em;
}
.resources-tag {
  font-size: 18px;
  line-height: 1.6;
  color: var(--warm-white);
  max-width: 56ch;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.resources-hero h1.resources-big { color: var(--warm-white); }
.resources-hero .eyebrow { color: var(--warm-white); }
.resources-hero {
  background-size: cover;
  background-position: center;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.resources-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.resources-hero-icons {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}
.hero-icon {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-icon svg {
  flex-shrink: 0;
}
.hero-icon span {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
}
.resources-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .resources-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .resources-hero-img { max-width: 100%; }
}

/* Two-column cards — simple text + CTA per card */
.resources-two-col {
  background: var(--warm-white);
  padding: var(--s-8) 0;
}
.res-2col, .res-3col {
  display: grid;
  gap: 32px;
}
.res-3col { grid-template-columns: 1fr 1fr 1fr; }
.res-2col { grid-template-columns: 1fr 1fr; }
.res-card-large {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.res-card-large.res-card-dark {
  background: var(--charcoal);
  color: var(--warm-white);
  border-color: var(--charcoal);
}
.res-card-large h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 16px 0;
  color: var(--ink);
}
.res-card-large.res-card-dark h2 {
  color: var(--warm-white);
}
.res-card-large p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 32px 0;
  max-width: 50ch;
}
.res-card-large.res-card-dark p {
  color: rgba(248,247,243,0.75);
}
.res-card-large .btn {
  align-self: flex-start;
  margin-top: auto;
}

@media (max-width: 1024px) {
  .res-2col, .res-3col { grid-template-columns: 1fr; }
}

/* FAQ section */
.resources-faq {
  background: var(--warm-white);
  padding: var(--s-7) 0 var(--s-4) 0;
}
.resources-faq .head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 48px);
  line-height: 1.1;
}
.res-faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}
.res-faq-cat {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.res-faq-cat > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  cursor: pointer;
  list-style: none;
  transition: background 0.2s var(--ease);
}
.res-faq-cat > summary::-webkit-details-marker { display: none; }
.res-faq-cat > summary:hover { background: rgba(176,138,87,0.04); }
.res-faq-cat-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
}
.res-faq-toggle {
  font-size: 24px;
  color: var(--bronze);
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  margin-left: 16px;
}
.res-faq-cat[open] .res-faq-toggle {
  transform: rotate(45deg);
}
.res-faq-items {
  padding: 0 32px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.res-faq-item {
  border-top: 1px solid var(--border);
  padding: 4px 0;
}
.res-faq-item summary {
  padding: 16px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s var(--ease);
}
.res-faq-item summary::-webkit-details-marker { display: none; }
.res-faq-item summary::after {
  content: '+';
  font-size: 18px;
  color: var(--bronze);
  font-weight: 300;
  line-height: 1;
  margin-left: 16px;
  transition: transform 0.3s var(--ease);
}
.res-faq-item[open] summary::after {
  transform: rotate(45deg);
}
.res-faq-item summary:hover { color: var(--bronze); }
.res-faq-answer {
  padding: 0 0 16px 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.res-faq-answer p { margin: 0; }

/* Resources "Get in touch" CTA - simple centered */
.resources-cta {
  background: var(--warm-white);
  padding: var(--s-6) 0;
  border-top: 1px solid var(--border);
}
.resources-cta h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 36px);
  color: var(--ink);
  margin: 0 0 12px 0;
  text-align: center;
}
.resources-cta p {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0 0 28px 0;
  text-align: center;
}

@media (max-width: 768px) {
  .res-card-large { padding: 32px 24px; }
  .res-faq-cat > summary { padding: 20px 20px; }
  .res-faq-items { padding: 0 20px 20px 20px; }
  .res-faq-cat-title { font-size: 18px; }
}

/* ============================================================
   CONTACT PAGE — original 2-col design (Visit Showroom + Project Enquiry)
   ============================================================ */
.contact-hero {
  background: var(--warm-white);
  padding: var(--s-9) 0 var(--s-6) 0;
}
.contact-big {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 5.5vw, 72px);
  line-height: 1;
  margin: 0;
  letter-spacing: -0.02em;
}

.contact-form-section {
  background: var(--warm-white);
  padding: var(--s-6) 0 var(--s-9) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.contact-col .eyebrow {
  margin-bottom: 16px;
}
.contact-col-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 4.5vw, 56px);
  line-height: 1.05;
  margin: 0 0 20px 0;
  color: var(--ink);
}
.contact-col-title em {
  color: var(--bronze);
  font-style: italic;
}
.contact-col-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 32px 0;
  max-width: 50ch;
}

/* Contact info card */
.contact-info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 28px;
  width: 100%;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 36px;
  height: 36px;
  background: var(--stone-grey);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 4px;
}
.contact-info-item a {
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s var(--ease);
}
.contact-info-item a:hover { border-bottom-color: var(--bronze); }
.contact-info-item > div > div:last-child {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.4;
}

.contact-col .btn {
  align-self: flex-start;
  margin-top: 0;
}

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 64px; }
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.contact-form label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
  font-weight: 500;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.2s var(--ease);
  line-height: 1.5;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--bronze);
}
.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}
.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin: 4px 0 0 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-soft);
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
}
.form-checkbox span {
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 400;
}
.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--bronze);
  margin: 0;
}
.contact-form .submit {
  margin-top: 8px;
  align-self: flex-start;
}


/* Photo gallery */
.contact-gallery {
  background: var(--paper);
  padding: var(--s-8) 0;
}
.contact-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.contact-photo {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: var(--deep-slate);
  border-radius: 6px;
}
@media (max-width: 768px) {
  .contact-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   ENTRANCE DOOR SECTIONS
   ============================================================ *//* ============================================================
   ENTRANCE DOOR SECTIONS
   ============================================================ *//* ============================================================
   CONTACT PAGE — big heading, 2-col intro, form + info, gallery
   ============================================================ */
.contact-hero {
  background: var(--warm-white);
  padding: var(--s-9) 0 var(--s-6) 0;
}
.contact-big {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 5.5vw, 72px);
  line-height: 1;
  margin: 0;
  letter-spacing: -0.02em;
}

.contact-intro {
  background: var(--warm-white);
  padding: var(--s-4) 0 var(--s-8) 0;
  border-top: 1px solid var(--border);
}
.contact-intro-head {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
  max-width: 50ch;
}
.contact-intro-head em {
  color: var(--bronze);
  font-style: italic;
}
.contact-info-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 4px 0;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

/* Form + info */
.contact-form-section {
  background: var(--warm-white);
  padding: var(--s-7) 0 var(--s-9) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 160px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 36px 32px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  max-width: 400px;
  margin-left: auto;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--paper);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 6px;
}
.contact-info-item a {
  color: var(--ink);
  text-decoration: none;
  font-size: 16px;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s var(--ease);
}
.contact-info-item a:hover { border-bottom-color: var(--bronze); }
.contact-info-item > div > div:last-child {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Form */
.contact-form-wrap {
  display: flex;
  justify-content: flex-start;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 480px;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}
.contact-form label .optional { font-weight: 400; color: var(--ink-soft); font-size: 12px; margin-left: 4px; }
.contact-form .form-intro { font-size: 14px; color: var(--muted); margin: 0 0 20px 0; }
.contact-info-list { display: flex; flex-direction: column; gap: 10px; font-size: 16px; color: var(--ink-soft); line-height: 1.6; margin: 24px 0; }
.contact-info-list a { color: var(--ink); }
.contact-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 48px; align-items: start; }
.contact-hero-tagline { font-family: var(--font-display); font-size: clamp(28px, 3vw, 40px); font-weight: 400; line-height: 1.15; color: var(--ink); margin: 0; }
.contact-hero-tagline em { color: var(--bronze); font-style: italic; }
.contact-hero-desc { font-size: 18px; color: var(--ink-soft); line-height: 1.6; margin: 0; }

/* Quote form (dark card) */
.quote-card {
  background: var(--charcoal);
  color: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.quote-title {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 28px 0;
  color: var(--warm-white);
}
.quote-form .quote-field { margin-bottom: 16px; }
.quote-form .quote-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-form label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--warm-white);
  margin-bottom: 6px;
}
.quote-form label .req { color: #e87a7a; margin-left: 2px; }
.quote-form input[type="text"],
.quote-form input[type="tel"],
.quote-form input[type="email"],
.quote-form textarea {
  width: 100%;
  background: var(--warm-white);
  border: 0;
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--ink);
}
.quote-form textarea { resize: vertical; min-height: 80px; }
.quote-form input:focus,
.quote-form textarea:focus { outline: 2px solid var(--bronze); outline-offset: 1px; }
.quote-submit { width: 100%; margin-top: 8px; background: var(--bronze); border: 2px solid var(--bronze); color: var(--warm-white); }
.quote-submit:hover { background: #8d6a3f; border-color: #8d6a3f; }

/* Right-side info column */
.contact-info-lead { font-size: 16px; color: var(--ink-soft); line-height: 1.6; margin: 0 0 24px 0; }
.contact-divider { border: 0; border-top: 1px solid var(--border); margin: 0 0 24px 0; }
.contact-info-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 24px; }
.contact-info-h { font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--ink); margin: 0 0 8px 0; }
.contact-info-row p, .contact-info-block p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; margin: 0; }
.contact-info-block { margin-bottom: 24px; }
.contact-info-row a, .contact-info-block a { color: var(--ink); text-decoration: underline; }
/* contact-col order: left=info, right=form (natural order) */
.contact-col-left { order: 1; }
.contact-col-right { order: 2; }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: border-color 0.2s var(--ease);
  font-family: var(--font-body);
  line-height: 1.5;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--bronze);
  background: #fff;
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-soft);
  margin: 4px 0 0 0;
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--bronze);
  margin: 0;
}
.contact-form .submit {
  margin-top: 8px;
  align-self: flex-start;
}


/* Photo gallery */
.contact-gallery {
  background: var(--paper);
  padding: var(--s-8) 0;
}
.contact-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.contact-photo {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: var(--deep-slate);
  border-radius: 6px;
}
@media (max-width: 768px) {
  .contact-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   ENTRANCE DOOR SECTIONS
   ============================================================ */
.entrance-why-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 8px;
}
.entrance-why-card {
  flex: 1 1 0;
  min-width: 0;
  max-width: 240px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  transition: all 0.3s var(--ease);
}
.entrance-why-card:hover {
  border-color: var(--bronze);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.entrance-why-card .entrance-why-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.entrance-why-card .entrance-why-icon {
  width: 36px;
  height: 36px;
  color: var(--bronze);
  flex-shrink: 0;
}
.entrance-why-card .entrance-why-icon svg {
  width: 100%;
  height: 100%;
}
.entrance-why-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  line-height: 1.25;
  color: var(--ink);
}
.entrance-why-card p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
}
@media (max-width: 1024px) {
  .entrance-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .entrance-why-grid { grid-template-columns: 1fr; }
}

/* Choose Your Entrance Door Style */
.entrance-styles {
  background: var(--paper);
  padding: var(--s-8) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.entrance-styles .head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  text-align: center;
}
.entrance-styles .head h2 em {
  color: var(--bronze);
  font-style: italic;
}
.entrance-styles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.entrance-style-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s var(--ease);
}
.entrance-style-card:hover {
  border-color: var(--bronze);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.entrance-style-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--ink);
}
.entrance-style-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}
@media (max-width: 1024px) {
  .entrance-styles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .entrance-styles-grid { grid-template-columns: 1fr; }
}

/* Choose Your Entrance Door Style - 2-col with single image + accordion list */
.entrance-styles-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}
.entrance-styles-carousel {
  position: sticky;
  top: 120px;
  height: 100%;
  min-height: 600px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--stone-grey);
}
.entrance-styles-track {
  display: flex;
  width: 100%;
  height: 100%;
  animation: entrance-styles-carousel 12s infinite;
}
.entrance-styles-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
@keyframes entrance-styles-carousel {
  0%, 21%   { transform: translateX(0); }
  25%, 46%  { transform: translateX(-100%); }
  50%, 71%  { transform: translateX(-200%); }
  75%, 96%  { transform: translateX(-300%); }
  100%      { transform: translateX(0); }
}
.entrance-styles-right {
  display: flex;
  flex-direction: column;
}
.entrance-styles-head {
  margin-bottom: 32px;
}
.entrance-styles-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 16px;
  color: var(--ink);
  white-space: nowrap;
}
.entrance-styles-head h2 em {
  color: var(--bronze);
  font-style: italic;
  font-weight: 400;
}
.entrance-styles-head p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0;
}
.entrance-styles-list {
  display: flex;
  flex-direction: column;
}
.entrance-style-row {
  border-bottom: 1px solid var(--border);
}
.entrance-style-row:first-child {
  border-top: 1px solid var(--border);
}
.entrance-style-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: inherit;
  transition: color 0.3s var(--ease);
}
.entrance-style-trigger:hover {
  color: var(--bronze);
}
.entrance-style-trigger h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: inherit;
}
.entrance-style-row.active .entrance-style-trigger h3 {
  color: var(--bronze);
}
.entrance-style-arrow {
  font-size: 18px;
  color: var(--bronze);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  margin-left: 16px;
}
.entrance-style-row.active .entrance-style-arrow {
  transform: rotate(180deg);
}
.entrance-style-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s var(--ease);
}
.entrance-style-row.active .entrance-style-content {
  max-height: 200px;
  padding-bottom: 20px;
}
.entrance-style-content p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  text-align: left;
}
@media (max-width: 900px) {
  .entrance-styles-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .entrance-styles-carousel {
    position: static;
    min-height: 500px;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
}

/* Design Every Detail - 6 cards */
.entrance-tailor {
  background: var(--warm-white);
  padding: var(--s-8) 0;
}
.entrance-tailor .head h2 {
  font-family: var(--font-display);
  font-weight: 400;
}
.entrance-tailor .head h2 em {
  color: var(--bronze);
  font-style: italic;
}
.entrance-tailor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.entrance-tailor-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease);
  min-height: 120px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.entrance-tailor-card:hover {
  border-color: var(--bronze);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.entrance-tailor-header {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  flex: 1;
}
.entrance-tailor-header:hover {
  background: rgba(176,138,87,0.04);
}
.entrance-tailor-icon {
  width: 32px;
  height: 32px;
  color: var(--bronze);
  flex-shrink: 0;
}
.entrance-tailor-icon svg {
  width: 100%;
  height: 100%;
}
.entrance-tailor-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
}
.entrance-tailor-toggle {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  color: var(--bronze);
  font-size: 20px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.entrance-tailor-card.active .entrance-tailor-toggle {
  transform: translateY(-50%) rotate(45deg);
}
.entrance-tailor-content {
  display: none;
  padding: 0 24px 24px;
}
.entrance-tailor-card.active .entrance-tailor-content {
  display: block;
}
.entrance-tailor-card > p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.entrance-tailor-content p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.entrance-tailor-options-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--bronze);
  margin-bottom: 4px;
  margin-top: 12px;
}
.entrance-tailor-card ul {
  list-style: disc;
  padding-left: 20px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.entrance-tailor-card ul li {
  margin-bottom: 2px;
}
@media (max-width: 1024px) {
  .entrance-tailor-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .entrance-tailor-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   DOOR SYSTEM — Choose Your Door System 6-card grid
   ============================================================ */
.door-system {
  background: var(--warm-white);
  padding: var(--s-5) 0 var(--s-7) 0;
}
.door-system .door-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
.door-card {
  position: relative;
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--warm-white);
  display: block;
  aspect-ratio: 1/1;
}
.door-card .door-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--deep-slate);
  transition: transform 0.6s var(--ease);
  background-blend-mode: multiply;
  background-color: rgba(0,0,0,0.2);
}
.door-card:hover .door-img {
  transform: scale(1.05);
}
.door-card .door-body {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,27,29,0) 0%, rgba(26,27,29,0.55) 45%, rgba(26,27,29,0.92) 100%);
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background 0.4s var(--ease);
}
.door-card:hover .door-body {
  background: linear-gradient(180deg, rgba(26,27,29,0.3) 0%, rgba(26,27,29,0.7) 30%, rgba(26,27,29,0.95) 100%);
}
.door-card .door-body h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--warm-white);
  margin-bottom: 8px;
  line-height: 1.1;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.door-card .door-body p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(248,247,243,0.85);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), opacity 0.4s var(--ease), margin 0.4s var(--ease);
  margin: 0;
}
.door-card:hover .door-body p {
  max-height: 100px;
  opacity: 1;
}
.door-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--ink);
}
.door-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  flex: 1;
}
@media (max-width: 1024px) {
  .door-system .door-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .door-system .door-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   GLAZING CALLOUT — Glass & Glazing separate section
   ============================================================ */
.glazing-callout {
  background: var(--charcoal);
  color: var(--warm-white);
  padding: var(--s-9) 0;
}
.glazing-callout .glazing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.glazing-callout .glazing-img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: var(--deep-slate);
  border-radius: var(--radius-lg);
}
.glazing-callout .glazing-copy {
  padding: 0 16px;
}
.glazing-callout .eyebrow {
  color: var(--bronze);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}
.glazing-callout h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--warm-white);
  margin-bottom: 24px;
  max-width: 16ch;
}
.glazing-callout h2 em {
  color: var(--bronze);
  font-style: italic;
}
.glazing-callout p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--warm-white);
  margin-bottom: 32px;
  max-width: 52ch;
}
@media (max-width: 1024px) {
  .glazing-callout .glazing-grid { grid-template-columns: 1fr; gap: 40px; }
}


/* ============================================================
   WINDOW STYLES — 6 image cards in 3x2 with hover overlay
   ============================================================ */
.window-styles {
  background: var(--paper);
  padding: var(--s-8) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.window-styles .head {
  margin-bottom: 40px;
}
.window-styles .head .eyebrow {
  margin-bottom: 16px;
}
.window-styles .head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  max-width: 18ch;
  margin: 0 auto;
  white-space: nowrap;
}
.window-styles .head h2 em {
  color: var(--bronze);
  font-style: italic;
}
.styles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}
.style-card {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--warm-white);
  display: block;
  background: var(--charcoal);
}
.style-card .style-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--deep-slate);
  transition: transform 0.6s var(--ease);
}
.style-card:hover .style-img {
  transform: scale(1.05);
}
.style-card .style-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,27,29,0.0) 0%, rgba(26,27,29,0.55) 45%, rgba(26,27,29,0.92) 100%);
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background 0.4s var(--ease);
}
.style-card:hover .style-overlay {
  background: linear-gradient(180deg, rgba(26,27,29,0.3) 0%, rgba(26,27,29,0.7) 30%, rgba(26,27,29,0.95) 100%);
}
.style-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--warm-white);
  margin-bottom: 8px;
  line-height: 1.05;
}
.style-card p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(248,247,243,0.85);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), opacity 0.4s var(--ease), margin 0.4s var(--ease);
  margin-top: 0;
}
.style-card p.tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--bronze);
  margin-bottom: 4px;
}
.style-card:hover p {
  max-height: 200px;
  opacity: 1;
  margin-top: 8px;
}

/* ============================================================
   ARCHITECTURAL FEATURES — 5 numbered items, click to expand
   ============================================================ */
.arch-features {
  background: var(--warm-white);
  padding: var(--s-8) 0;
}
.arch-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border);
}
.arch-row {
  border-bottom: 1px solid var(--border);
  list-style: none;
}
.arch-btn {
  display: block;
  width: 100%;
  background: none;
  border: 0;
  padding: 16px 30px 16px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  position: relative;
  transition: color 0.25s var(--ease);
}
.arch-btn:hover { color: var(--bronze); }
.arch-btn::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 300;
  color: var(--bronze);
  line-height: 1;
  transition: transform 0.3s var(--ease);
}
.arch-btn.is-open::after {
  content: '×';
  transform: translateY(-50%) rotate(45deg);
}
.arch-body {
  display: none;
  padding: 0 0 16px 0;
}
.arch-body p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.arch-features-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.arch-features-left h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
  white-space: nowrap;
}
.arch-features-left h2 em {
  color: var(--bronze);
  font-style: italic;
}
.arch-features-left > p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 32px;
  list-style: none !important;
}
.features-accordion {
  border-top: 1px solid var(--border);
}
.features-accordion .feature-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
  list-style: none;
  display: block;
}
.features-accordion .feature-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: 0;
  padding: 14px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  transition: color 0.3s var(--ease);
}
.features-accordion .feature-toggle:hover { color: var(--bronze); }
.features-accordion .t-icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--bronze);
  line-height: 1;
  flex-shrink: 0;
  margin-left: 16px;
}
.features-accordion .feature-item.is-open .t-icon { transform: rotate(45deg); display: inline-block; }
.features-accordion .feature-content {
  display: none;
  padding: 0 0 14px 0;
}
.features-accordion .feature-item.is-open .feature-content {
  display: block;
}
.features-accordion .feature-content > div {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.arch-features-right {
  position: sticky;
  top: 100px;
}
.feature-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--charcoal);
}
.feature-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  animation: carousel-scroll 20s infinite;
}
.feature-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
@keyframes carousel-scroll {
  0%, 16% { transform: translateX(0); }
  20%, 36% { transform: translateX(-100%); }
  40%, 56% { transform: translateX(-200%); }
  60%, 76% { transform: translateX(-300%); }
  80%, 96% { transform: translateX(-400%); }
  100% { transform: translateX(0); }
}

/* ============================================================
   ARCHITECTURAL DETAILS — 3 image cards with text below
   ============================================================ */
.arch-details {
  background: var(--paper);
  padding: var(--s-5) 0 var(--s-6) 0;
  border-top: 1px solid var(--border);
}
.arch-details .head {
  margin-bottom: 56px;
}
.arch-details .head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.1;
}
.arch-details .head h2 em {
  color: var(--bronze);
  font-style: italic;
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.detail-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.detail-card:hover {
  border-color: var(--bronze);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.08);
}
.detail-card .detail-img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: var(--stone-grey);
}
.detail-card .detail-body {
  padding: 28px 28px 32px;
}
.detail-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--ink);
}
.detail-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.detail-card .detail-meta {
  font-size: 13px;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 0;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* ============================================================
   TAILOR YOUR WINDOW SYSTEM — 6 cards with large icons (3x2)
   ============================================================ */
.tailor-windows {
  background: var(--charcoal);
  color: var(--warm-white);
  padding: var(--s-9) 0;
}
.tailor-windows .head {
  margin-bottom: 56px;
}
.tailor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.tailor-card {
  background: #2a2c2f;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.tailor-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--warm-white);
  margin: 0 0 12px 0;
  line-height: 1.2;
}
.tailor-card p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(248,247,243,0.75);
  margin: 0 0 24px 0;
}
.tailor-options-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 14px;
  font-weight: 500;
}
.tailor-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tailor-list li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--warm-white);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.tailor-list li:first-child { border-top: 0; }
.tailor-list li::before {
  content: '•';
  position: absolute;
  left: 6px;
  top: 8px;
  color: var(--bronze);
  font-size: 18px;
  line-height: 1;
}
@media (max-width: 960px) {
  .tailor-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .tailor-grid { grid-template-columns: 1fr; }
}

  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: var(--ink);
  border-bottom: 3px solid var(--bronze);
}
.tailor-windows .window-tabs .tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 16px;
  color: var(--warm-white);
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
  position: relative;
}
.tailor-windows .window-tabs .tab-btn svg {
  width: 28px;
  height: 28px;
}
.tailor-windows .window-tabs .tab-btn:hover {
  background: rgba(255,255,255,0.05);
}
.tailor-windows .window-tabs .tab-btn.active {
  background: var(--bronze);
}
.tailor-windows .window-tabs .tabs-content {
  background: var(--paper);
  color: var(--ink);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 56px 48px;
  min-height: 360px;
}
.tailor-windows .window-tabs .tab-panel {
  display: none;
}
.tailor-windows .window-tabs .tab-panel.active {
  display: block;
  animation: fade-in 0.35s ease;
}
.tailor-windows .window-tabs .tab-body {
  max-width: 720px;
  margin: 0 auto;
}
.tailor-windows .window-tabs .tab-body h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--ink);
}
.tailor-windows .window-tabs .tab-body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.tailor-windows .window-tabs .check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tailor-windows .window-tabs .check-list li {
  position: relative;
  padding: 10px 0 10px 32px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--border);
}
.tailor-windows .window-tabs .check-list li:last-child {
  border-bottom: 0;
}
.tailor-windows .window-tabs .check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B08A57' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='20 6 9 17 4 12'%3e%3c/polyline%3e%3c/svg%3e");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 1024px) {
  .tailor-windows .window-tabs .tabs-nav { grid-template-columns: repeat(3, 1fr); }
  .tailor-windows .window-tabs .tabs-content { padding: 40px 32px; }
}
@media (max-width: 640px) {
  .tailor-windows .window-tabs .tabs-nav { grid-template-columns: repeat(2, 1fr); }
  .tailor-windows .window-tabs .tab-btn { padding: 16px 8px; font-size: 13px; }
  .tailor-windows .window-tabs .tabs-content { padding: 32px 24px; }
}

.tailor-windows .head .eyebrow {
  color: rgba(248,247,243,0.5);
  margin-bottom: 16px;
}
.tailor-windows .head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--warm-white);
}
.tailor-windows .head h2 em {
  color: var(--bronze);
  font-style: italic;
}
.tailor-windows .head p {
  color: rgba(248,247,243,0.8);
}
.tailor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tailor-card {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all 0.3s var(--ease);
}
.tailor-card:hover {
  border-color: var(--bronze);
  background: rgba(255,255,255,0.03);
  transform: translateY(-2px);
}
.tailor-card .tailor-icn {
  width: 56px;
  height: 56px;
  color: var(--bronze);
  margin-bottom: 28px;
}
.tailor-card .tailor-icn svg {
  width: 100%;
  height: 100%;
}
.tailor-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--warm-white);
}
.tailor-card p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(248,247,243,0.75);
}

/* ============================================================
   RESPONSIVE — Windows page
   ============================================================ */
@media (max-width: 1024px) {
  .joinery-grid { grid-template-columns: repeat(2, 1fr); }
  .styles-grid { grid-template-columns: repeat(2, 1fr); }
  .details-grid { grid-template-columns: repeat(2, 1fr); }
  .tailor-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .joinery-grid { grid-template-columns: 1fr; }
  .styles-grid { grid-template-columns: 1fr; }
  .feature-item { grid-template-columns: 60px 1fr 40px; gap: 16px; }
  .feature-item p { grid-column: 1 / -1; }
  .details-grid { grid-template-columns: 1fr; }
  .tailor-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   MANUFACTURER BRANDS TICKER (no heading, monochrome)
   ============================================================ */
.brand-ticker {
  background: var(--warm-white);
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.brand-ticker .brand-track {
  display: flex;
  gap: 0;
  align-items: center;
  white-space: nowrap;
  animation: brand-scroll 40s linear infinite;
  min-width: max-content;
}
.brand-ticker .brand-track .brand-logo {
  height: 50px;
  width: auto;
  display: block;
  flex-shrink: 0;
  margin-right: 80px;
  filter: grayscale(20%);
  opacity: 0.85;
  transition: filter 0.3s, opacity 0.3s;
}
.brand-ticker .brand-track .brand-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}
@keyframes brand-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   WHY WINDOR (bullet list)
   ============================================================ */
.why {
  background: var(--charcoal);
  color: var(--warm-white);
  padding: var(--s-10) 0;
}
.why .head { text-align: center; margin-bottom: 64px; }
.why .head .eyebrow { justify-content: center; }
.why .head h2 { color: var(--warm-white); margin-top: 16px; max-width: 24ch; margin-left: auto; margin-right: auto; }
.why .head h2 em { color: var(--bronze); }
.why .lede { color: rgba(248,247,243,0.7); font-size: 17px; line-height: 1.65; max-width: 64ch; margin-bottom: 64px; text-align: center; margin-left: auto; margin-right: auto; }
.why .grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 56px 80px; border-top: 1px solid var(--line-light); padding-top: 56px; }
.why .cell h4 { font-family: var(--font-body); font-size: 18px; font-weight: 500; color: var(--warm-white); margin-bottom: 12px; letter-spacing: 0.01em; }
.why .cell p { font-size: 14px; color: rgba(248,247,243,0.65); line-height: 1.65; }

/* ============================================================
   GLASS & GLAZING — 4 cards with icons (light background)
   ============================================================ */
.glass-cta,
.glazing {
  background: var(--warm-white);
  color: var(--ink);
  padding: var(--s-7) 0;
}
.glass-cta .head h2,
.glazing .head h2 { text-align: center; max-width: 20ch; margin: 0 auto; }
.glass-cta .lede,
.glazing .lede { text-align: center; max-width: 60ch; margin: 24px auto 64px; color: var(--ink-soft); font-size: 17px; line-height: 1.65; }
.glazing-intro { display: grid; grid-template-columns: 0.85fr 1fr; gap: 64px; align-items: center; margin-bottom: 48px; }
.glazing-image { border-radius: var(--radius-lg); overflow: hidden; }
.glazing-image img { width: 100%; height: 100%; display: block; object-fit: cover; }
.glazing .glazing-copy .eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--bronze); margin-bottom: 16px; }
.glazing .glazing-copy h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1.1; margin-bottom: 24px; max-width: 24ch; }
.glazing .glazing-copy p { font-size: 16px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 24px; }
.glazing-cta-btn { display: inline-block; margin-top: 8px; }
.glass-cta .grid,
.glazing .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.glazing .glazing-cta { text-align: center; margin-top: 48px; }
.glass-cta .cell,
.glazing .cell { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px 20px; display: flex; flex-direction: column; }
.glazing .cell .cell-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.glass-cta .cell .icn,
.glazing .cell .icn { width: 32px; height: 32px; color: var(--bronze); flex-shrink: 0; margin-bottom: 0; }
.glass-cta .cell .icn svg,
.glazing .cell .icn svg { width: 100%; height: 100%; }
.glass-cta .cell h3,
.glazing .cell h3 { font-size: 18px; margin: 0; color: var(--ink); line-height: 1.2; }
.glass-cta .cell p,
.glazing .cell p { font-size: 14px; line-height: 1.5; color: var(--ink-soft); }

/* ============================================================
   TAILORED FOR EVERY PROJECT — 6-icon grid (light background)
   ============================================================ */
.tailored {
  background: var(--charcoal);
  color: var(--warm-white);
  padding: var(--s-7) 0;
}
.tailored .head h2 { text-align: center; max-width: 22ch; margin: 0 auto; color: var(--warm-white); }
.tailored .lede { text-align: center; max-width: 64ch; margin: 24px auto 48px; color: rgba(248, 247, 243, 0.75); font-size: 17px; line-height: 1.65; }
.tailored .icon-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); padding: 0 var(--gutter); }
.tailored .ic { text-align: center; padding: 0 4px; }
.tailored .ic { text-align: center; }
.tailored .ic .icn { width: 80px; height: 80px; color: var(--bronze); margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; }
.tailored .ic .icn svg { width: 100%; height: 100%; }
.tailored .ic .icn img { max-width: 100%; max-height: 100%; height: auto; width: auto; filter: brightness(0) saturate(100%) invert(58%) sepia(50%) saturate(600%) hue-rotate(358deg) brightness(110%) contrast(108%); }
.tailored .ic .label { font-size: 17px; color: var(--warm-white); font-weight: 600; letter-spacing: 0.01em; }

/* ============================================================
   SYSTEM PAGE TEMPLATE (Aluminium / uPVC / Timber / AluClad)
   ============================================================ */

/* Hero — full-bleed image with dark overlay */
.system-hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  background: var(--charcoal);
  color: var(--warm-white);
  overflow: hidden;
}
.system-hero .wrap { max-width: var(--max-w); margin: 0 auto; padding: var(--s-7) var(--gutter); width: 100%; }
.system-hero .eyebrow { color: #F0D89A; margin-bottom: 24px; text-shadow: 0 2px 12px rgba(0,0,0,0.6); font-weight: 700; letter-spacing: 0.24em; font-size: 14px; }
.system-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  color: #FFFFFF;
  max-width: 22ch;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.system-hero h1 em { font-style: italic; color: #E5C68C; }
.system-hero .lede {
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FFFFFF;
  font-weight: 600;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  max-width: 60ch;
}
.system-hero .lede-body {
  font-size: 17px;
  line-height: 1.65;
  color: #FFFFFF;
  max-width: 64ch;
  margin-bottom: 16px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.system-hero .ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* Why Choose — 4-cell grid */
.system-why {
  background: var(--warm-white);
  padding: var(--s-8) 0 var(--s-5) 0;
  border-bottom: 1px solid var(--border);
}
.system-why .glazing-grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: 64px; align-items: stretch; }
.system-why .glazing-image { height: 100%; }
.system-why .glazing-image img { width: 100%; height: 100%; object-fit: cover; }
.system-why .glazing-copy .eyebrow {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 12px;
  white-space: nowrap;
}
.system-why .glazing-copy h2 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink-soft);
  margin-bottom: 20px;
  max-width: 40ch;
}
.system-why .head { text-align: center; margin-bottom: 40px; }
.system-why .head h2 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); font-weight: 400; line-height: 1.1; text-align: center !important; margin: 0 auto !important; }
.system-why .head h2 em { color: var(--bronze); font-style: italic; }
.system-why .grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 56px 80px; }
.system-why .cell h3 { font-size: 22px; font-weight: 500; margin-bottom: 12px; color: var(--ink); }
.system-why .cell p { font-size: 15px; line-height: 1.7; color: var(--ink-soft); }
.system-why .best-for {
  margin-top: 56px;
  padding: 24px 32px;
  background: var(--paper);
  border-left: 3px solid var(--bronze);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-style: italic;
  max-width: 80ch;
  margin-left: auto;
  margin-right: auto;
}

/* Performance at a Glance — 5 spec rows on a light background */
.system-perf {
  background: #1a1c1f;
  padding: var(--s-6) 0;
  border-bottom: 1px solid var(--border);
  color: var(--warm-white);
}
.system-perf .head { text-align: center; margin: 0 auto 32px; }
.system-perf .head .eyebrow { margin-bottom: 16px; }
.system-perf .head h2 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); font-weight: 400; line-height: 1.1; color: var(--warm-white); }
.system-perf .head h2 em { color: var(--bronze); font-style: italic; }
.system-perf .head p { margin-top: 20px; color: var(--ink-soft); font-size: 17px; line-height: 1.65; }
.system-perf .perf-grid { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 8px 40px; }
.system-perf .row { display: grid; grid-template-columns: 240px 1fr; gap: 32px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.system-perf .row:last-child { border-bottom: 0; }
.system-perf .row .k { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bronze); font-weight: 500; padding-top: 4px; }
.system-perf .row .v { font-size: 16px; line-height: 1.65; color: var(--ink); }

/* Inside the System — 6 component cards in a grid */
.system-inside {
  background: var(--warm-white);
  padding: var(--s-8) 0;
  border-bottom: 1px solid var(--border);
}
.system-inside .glazing-intro { align-items: stretch; }
.system-perf .glazing-intro { direction: rtl; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.system-perf .glazing-intro > * { direction: ltr; }
.inside-faq { display: flex; flex-direction: column; gap: 0; max-width: 560px; }
.inside-faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.inside-faq-item:first-child { border-top: 1px solid var(--border); }
.inside-faq-item summary {
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s var(--ease);
}
.inside-faq-item summary::-webkit-details-marker { display: none; }
.inside-faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--bronze);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  margin-left: 16px;
  line-height: 1;
}
.inside-faq-item[open] summary::after { transform: rotate(45deg); }
.inside-faq-item summary:hover { color: var(--bronze); }
.inside-faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease), padding 0.3s var(--ease);
  padding: 0;
}
.inside-faq-item[open] .inside-faq-answer {
  max-height: 320px;
  opacity: 1;
  padding: 0 0 20px 0;
}
.inside-faq-answer p { font-size: 15px; line-height: 1.65; color: var(--ink-soft); margin: 0; }
.system-inside .head { text-align: center; margin-bottom: 40px; }
.system-inside .head .eyebrow { margin-bottom: 16px; }
.system-inside .head h2 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); font-weight: 400; line-height: 1.1; }
.system-inside .head h2 em { color: var(--bronze); font-style: italic; }
.system-inside .components { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 1fr; gap: 20px 24px; }
.system-inside .comp { display: flex; flex-direction: column; gap: 12px; padding: 24px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); }
.system-inside .comp .icn { width: 36px; height: 36px; color: var(--bronze); flex-shrink: 0; }
.system-inside .comp .icn svg { width: 100%; height: 100%; }
.system-inside .comp h3 { font-size: 15px; color: var(--ink); margin-bottom: 4px; font-family: var(--font-body); font-weight: 600; }
.system-inside .comp p { font-size: 13px; line-height: 1.55; color: var(--ink-soft); }
.system-inside .comp .best-for { font-size: 13px; line-height: 1.7; color: var(--ink-soft); margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); font-style: italic; }

/* System why cells (linked) */
.system-why .cell { display: block; text-decoration: none; color: inherit; transition: all 0.2s var(--ease); }
.system-why .cell:hover { transform: translateY(-2px); }
.system-why .cell .link-arrow { display: inline-block; margin-top: 12px; color: var(--bronze); font-size: 14px; font-weight: 500; letter-spacing: 0.02em; }

/* Tailor Your System — 6 config cards in 3x2 grid */
.system-config {
  background: var(--paper);
  padding: var(--s-10) 0;
  border-bottom: 1px solid var(--border);
}
.system-config .head { text-align: center; margin-bottom: 64px; }
.system-config .head .eyebrow { margin-bottom: 16px; }
.system-config .head h2 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); font-weight: 400; line-height: 1.1; }
.system-config .head h2 em { color: var(--bronze); font-style: italic; }
.system-config .head p { margin-top: 20px; color: var(--ink-soft); font-size: 17px; line-height: 1.65; max-width: 60ch; margin-left: auto; margin-right: auto; }
.system-config .config-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.system-config .config-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; transition: all 0.2s var(--ease); }
.system-config .config-card:hover { border-color: var(--bronze); transform: translateY(-2px); }
.system-config .config-card .icn { width: 44px; height: 44px; color: var(--bronze); margin-bottom: 20px; }
.system-config .config-card .icn svg { width: 100%; height: 100%; }
.system-config .config-card h3 { font-size: 18px; font-weight: 500; margin-bottom: 16px; color: var(--ink); }
.system-config .config-card ul { list-style: none; padding: 0; margin: 0; }
.system-config .config-card ul li { font-size: 14px; line-height: 1.7; color: var(--ink-soft); padding: 4px 0; border-bottom: 1px solid var(--border); }
.system-config .config-card ul li:last-child { border-bottom: 0; }

/* Cross-nav — 3 cards pointing to other systems */
.system-crossnav {
  background: var(--paper);
  color: var(--ink);
  padding: var(--s-7) 0 var(--s-9) 0;
}
.system-crossnav .head { text-align: center; margin-bottom: 40px; }
.system-crossnav .head h2.crossnav-heading { font-family: var(--font-display); font-size: clamp(48px, 6vw, 72px); font-weight: 400; line-height: 1.05; color: var(--ink); white-space: nowrap; }
.system-crossnav .head h2.crossnav-heading em { color: var(--bronze); font-style: italic; }
.system-crossnav .cross-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.system-crossnav .cross-card { text-decoration: none; color: var(--ink); display: block; transition: transform 0.2s var(--ease); }
.system-crossnav .cross-card:hover { transform: translateY(-4px); }
.system-crossnav .cross-img { aspect-ratio: 4/3; background-size: cover; background-position: center; background-color: var(--deep-slate); border-radius: var(--radius-md); margin-bottom: 20px; }
.system-crossnav .cross-body h3 { font-size: 22px; font-weight: 400; margin-bottom: 8px; color: var(--ink); }
.system-crossnav .cross-body p { font-size: 14px; color: var(--ink-soft); margin-bottom: 0; line-height: 1.5; }

/* System CTA — closing call-to-action */
.system-cta {
  background: var(--paper);
  padding: var(--s-10) 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.system-cta h2 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); font-weight: 400; line-height: 1.1; margin-bottom: 20px; }
.system-cta h2 em { color: var(--bronze); font-style: italic; }
.system-cta p { color: var(--ink-soft); font-size: 17px; line-height: 1.65; max-width: 60ch; margin: 0 auto 32px; }
.system-cta .ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Responsive for system pages */
@media (max-width: 1024px) {
  .system-why .grid { grid-template-columns: 1fr; gap: 40px; }
  .system-inside .components { grid-template-columns: repeat(2, 1fr); }
  .system-config .config-grid { grid-template-columns: repeat(2, 1fr); }
  .system-crossnav .cross-grid { grid-template-columns: 1fr; gap: 40px; }
  .system-perf .row { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
  .system-perf .perf-grid { padding: 8px 24px; }
}
@media (max-width: 640px) {
  .system-inside .components { grid-template-columns: 1fr; }
  .system-config .config-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   TESTIMONIALS PLACEHOLDER (Phase 1 - no real testimonials yet)
   ============================================================ */
.testimonials-placeholder {
  background: var(--paper);
  padding: var(--s-10) 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.testimonials-placeholder .head .eyebrow { justify-content: center; margin-bottom: 16px; }
.testimonials-placeholder .head h2 { color: var(--ink); margin-bottom: 16px; }
.testimonials-placeholder .head p { color: var(--muted); max-width: 56ch; margin: 0 auto; font-size: 16px; line-height: 1.6; }

/* ============================================================
   PROCESS FLOW — single horizontal row with animated line
   ============================================================ */
.process {
  padding: var(--s-7) 0;
  background: var(--paper);
}
.process .head { text-align: center; margin-bottom: 56px; }
.process .head .eyebrow { justify-content: center; }
.process .head h2 { margin-top: 16px; max-width: 22ch; margin-left: auto; margin-right: auto; }
.process .head h2 em { color: var(--bronze); }
.process .head .lede { margin: 20px auto 0; max-width: 56ch; color: var(--ink-soft); }

/* The journey line — horizontal, draws from left to right on scroll into view */
.process-journey {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-top: 32px;
}
.process-journey::before {
  content: "";
  position: absolute;
  top: 28px; /* center of marker (56px / 2) */
  left: calc(100% / 14); /* center of first step (1/7 ÷ 2 = 1/14) */
  right: calc(100% / 14);
  height: 1.5px;
  background: var(--bronze);
  z-index: 1;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.process-journey.in-view::before { transform: scaleX(1); }

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 4px;
}
.process-step .marker {
  width: 56px;
  height: 56px;
  background: var(--paper);
  border: 2px solid var(--bronze);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--bronze);
  position: relative;
  z-index: 3;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.process-journey.in-view .process-step .marker {
  opacity: 1;
  transform: scale(1);
}
.process-journey.in-view .process-step:nth-child(1) .marker { transition-delay: 0.15s; }
.process-journey.in-view .process-step:nth-child(2) .marker { transition-delay: 0.35s; }
.process-journey.in-view .process-step:nth-child(3) .marker { transition-delay: 0.55s; }
.process-journey.in-view .process-step:nth-child(4) .marker { transition-delay: 0.75s; }
.process-journey.in-view .process-step:nth-child(5) .marker { transition-delay: 0.95s; }
.process-journey.in-view .process-step:nth-child(6) .marker { transition-delay: 1.15s; }
.process-journey.in-view .process-step:nth-child(7) .marker { transition-delay: 1.35s; }
.process-step:hover .marker {
  background: var(--bronze);
  color: var(--warm-white);
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(176, 138, 87, 0.3);
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.15;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--ink);
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.process-journey.in-view .process-step h3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}
.process-journey.in-view .process-step:nth-child(1) h3 { transition-delay: 0.25s; }
.process-journey.in-view .process-step:nth-child(2) h3 { transition-delay: 0.45s; }
.process-journey.in-view .process-step:nth-child(3) h3 { transition-delay: 0.65s; }
.process-journey.in-view .process-step:nth-child(4) h3 { transition-delay: 0.85s; }
.process-journey.in-view .process-step:nth-child(5) h3 { transition-delay: 1.05s; }
.process-journey.in-view .process-step:nth-child(6) h3 { transition-delay: 1.25s; }
.process-journey.in-view .process-step:nth-child(7) h3 { transition-delay: 1.45s; }
.process-step p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 140px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.process-journey.in-view .process-step p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
.process-journey.in-view .process-step:nth-child(1) p { transition-delay: 0.35s; }
.process-journey.in-view .process-step:nth-child(2) p { transition-delay: 0.55s; }
.process-journey.in-view .process-step:nth-child(3) p { transition-delay: 0.75s; }
.process-journey.in-view .process-step:nth-child(4) p { transition-delay: 0.95s; }
.process-journey.in-view .process-step:nth-child(5) p { transition-delay: 1.15s; }
.process-journey.in-view .process-step:nth-child(6) p { transition-delay: 1.35s; }
.process-journey.in-view .process-step:nth-child(7) p { transition-delay: 1.55s; }

/* ============================================================
   INSPIRATION / PROJECTS TEASER
   ============================================================ */
.inspiration {
  background: var(--charcoal);
  color: var(--warm-white);
  padding: var(--s-7) 0;
}
.inspiration .head { display: grid; grid-template-columns: 1fr; gap: 80px; margin-bottom: 48px; text-align: center; }
.inspiration .head h2 { color: var(--warm-white); max-width: 22ch; margin: 0 auto; }
.inspiration .head h2 em { color: var(--bronze); }
.inspiration .head p { color: rgba(248,247,243,0.7); font-size: 16px; line-height: 1.65; }
.inspiration .grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.inspiration .card { aspect-ratio: 1/1; background: var(--deep-slate); border-radius: var(--radius-lg); position: relative; overflow: hidden; display: flex; align-items: end; padding: 24px; }
.inspiration .card.placeholder { background: linear-gradient(135deg, #2A2C30 0%, #1A1B1D 100%); border: 1px dashed rgba(248,247,243,0.18); }
.inspiration .card:not(.placeholder) { background-size: cover; background-position: center; }
.inspiration .card:not(.placeholder)::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 40%, rgba(0,0,0,0.75) 100%);
  z-index: 1;
}
.inspiration .card:not(.placeholder) .label { z-index: 2; }
.filterable .card .img { transition: opacity 0.3s var(--ease); }
.inspiration .card .label { position: relative; z-index: 2; }
.inspiration .card .label .k { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bronze); margin-bottom: 6px; }
.inspiration .card .label .v { font-family: var(--font-display); font-size: 22px; line-height: 1.1; color: var(--warm-white); }
.inspiration .card:not(.placeholder) .label .k { color: var(--bronze); }
.inspiration .card:not(.placeholder) .label .v { color: var(--warm-white); }
.inspiration .card.placeholder .label .v { color: rgba(248,247,243,0.4); }
.inspiration .foot { margin-top: 32px; display: flex; justify-content: center; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: var(--s-9) 0; background: var(--paper); }
.testimonials .head { text-align: center; margin-bottom: 64px; }
.testimonials .head .eyebrow { justify-content: center; }
.testimonials .head h2 { margin-top: 16px; }
.testimonials .head h2 em { color: var(--bronze); }
.testimonials .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px 32px;
  display: flex;
  flex-direction: column;
}
.testimonial.placeholder { border-style: dashed; border-color: var(--stone-grey); background: rgba(216, 211, 203, 0.08); }
.testimonial blockquote { font-family: var(--font-display); font-size: 22px; line-height: 1.35; color: var(--ink); font-weight: 400; flex: 1; font-style: italic; }
.testimonial.placeholder blockquote { color: var(--muted); }
.testimonial .who { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 13px; color: var(--muted); }
.testimonial .who strong { color: var(--ink); display: block; font-weight: 500; }
.testimonial .who .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--deep-slate) 100%);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--bronze);
  font-style: italic;
  border: 1.5px solid var(--bronze);
}
.testimonial .who .avatar span { line-height: 1; }
.testimonials .foot { margin-top: 40px; text-align: center; }

/* ============================================================
   SHOWROOM CTA
   ============================================================ */
.showroom-cta {
  background: var(--deep-slate);
  color: var(--warm-white);
  padding: var(--s-9) 0;
  position: relative;
  overflow: hidden;
}
.showroom-cta .grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: center; }
.showroom-cta h2 { color: var(--warm-white); max-width: 14ch; }
.showroom-cta h2 em { color: var(--bronze); }
.showroom-cta p { color: rgba(248,247,243,0.75); margin-top: 20px; max-width: 50ch; }
.showroom-cta .info { border-left: 1px solid var(--line-light); padding-left: 40px; }
.showroom-cta .info .row { margin-bottom: 24px; }
.showroom-cta .info .k { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bronze); margin-bottom: 6px; }
.showroom-cta .info .v { font-size: 16px; color: var(--warm-white); line-height: 1.5; }
.showroom-cta .ctas { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   STAT STRIP (full-width charcoal)
   ============================================================ */
.stat-strip {
  background: var(--charcoal);
  color: var(--warm-white);
  padding: 80px 0;
}
.stat-strip .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.stat-strip .cell { padding: 8px 32px; border-right: 1px solid var(--line-light); }
.stat-strip .cell:first-child { padding-left: 0; }
.stat-strip .cell:last-child { border-right: 0; }
.stat-strip .num { font-family: var(--font-display); font-size: 72px; line-height: 1; letter-spacing: -0.025em; color: var(--warm-white); }
.stat-strip .num em { color: var(--bronze); font-style: italic; }
.stat-strip .num small { font-family: var(--font-body); font-size: 14px; color: rgba(248,247,243,0.6); font-weight: 400; margin-left: 4px; letter-spacing: 0.02em; }
.stat-strip .kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 600;
}
.stat-strip .kicker-icn {
  width: 20px;
  height: 20px;
  color: var(--bronze);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.stat-strip .kicker-icn svg { width: 100%; height: 100%; }
.stat-strip .sub { font-size: 14px; color: rgba(248,247,243,0.7); margin-top: 12px; line-height: 1.5; max-width: 32ch; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #1A1B1D;
  color: var(--warm-white);
  padding: var(--s-7) 0 24px;
}
.footer .top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid var(--line-light); }
.footer .brand h3 { font-family: var(--font-display); font-size: 28px; line-height: 1.1; max-width: 14ch; color: var(--warm-white); margin-bottom: 16px; }
.footer .brand h3 em { color: var(--bronze); }
.footer .brand p { font-size: 14px; color: rgba(248,247,243,0.65); line-height: 1.6; max-width: 36ch; }
.footer h4 { font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase; color: #F0D89A; margin-bottom: 20px; font-weight: 700; }
.footer ul li { margin-bottom: 12px; font-size: 14px; color: rgba(248,247,243,0.75); }
.footer ul a:hover { color: var(--warm-white); }
.footer .footer-cta {
  display: inline-block;
  margin-top: 8px;
  color: var(--bronze) !important;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-bottom: 1px solid var(--bronze);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer .footer-cta:hover {
  color: var(--warm-white) !important;
  border-bottom-color: var(--warm-white);
}
.footer .bot { margin-top: 16px; text-align: center; font-size: 12px; color: rgba(248,247,243,0.4); letter-spacing: 0.04em; }

/* ============================================================
   COMPONENT: Material Selector (3 cards on product pages)
   ============================================================ */
.material-selector { padding: var(--s-9) 0; background: var(--paper); }
.material-selector .head { text-align: center; margin-bottom: 48px; }
.material-selector .head h2 { max-width: 24ch; margin: 16px auto 0; }
.material-selector .head h2 em { color: var(--bronze); }
.material-selector .head p { color: var(--ink-soft); margin-top: 16px; max-width: 56ch; margin-left: auto; margin-right: auto; }
.material-selector .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.mat-card:hover { border-color: var(--bronze); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.06); }
.mat-card .head-row { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px 0; }
.mat-card .mat-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; padding: 4px 8px; border-radius: 3px; font-weight: 300; }
.mat-card.alu .mat-tag { background: var(--mat-alu); color: var(--warm-white); }
.mat-card.upvc .mat-tag { background: var(--mat-upvc); color: var(--mat-alu); border: 1px solid #DCDCD6; }
.mat-card.timber .mat-tag { background: var(--mat-timber); color: var(--warm-white); }
.mat-card .code { font-family: var(--font-mono); font-size: 11px; color: var(--muted); font-weight: 300; }
.mat-card .body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.mat-card h3 { font-size: 26px; margin: 8px 0 8px; }
.mat-card .ideal { font-size: 12px; color: var(--bronze); letter-spacing: 0.04em; margin-bottom: 12px; font-style: italic; }
.mat-card p { font-size: 14px; line-height: 1.55; color: var(--ink-soft); flex: 1; }
.mat-card .foot { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.mat-card .foot .link { font-size: 13px; color: var(--bronze); font-weight: 500; }

/* ============================================================
   COMPONENT: Content block (left copy / right visual)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split.reverse > div:first-child { order: 2; }
.split .copy h2 { margin-bottom: 20px; }
.split .copy h2 em { color: var(--bronze); }
.split .copy p { color: var(--ink-soft); font-size: 16px; line-height: 1.65; margin-bottom: 16px; max-width: 52ch; }
.split .copy ul { margin: 20px 0; }
.split .copy ul li { padding-left: 24px; position: relative; font-size: 15px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 8px; }
.split .copy ul li::before { content: "•"; position: absolute; left: 0; color: var(--bronze); }
.split .copy .ctas { margin-top: 32px; display: flex; gap: 16px; flex-wrap: wrap; }
.split .visual { aspect-ratio: 4/3; background-size: cover; background-position: center; border-radius: var(--radius-lg); background-color: var(--stone-grey); }

/* ============================================================
   COMPONENT: Spec list (with stats)
   ============================================================ */
.spec-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 40px; margin: 32px 0; padding: 32px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.spec-list .item .k { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.spec-list .item .v { font-size: 16px; font-weight: 500; color: var(--ink); line-height: 1.4; }
.spec-list .item .v em { color: var(--bronze); font-style: normal; }

/* ============================================================
   COMPONENT: Glass matrix (full-width charcoal)
   ============================================================ */
.glass-matrix {
  background: var(--charcoal);
  color: var(--warm-white);
  padding: 80px 0;
  margin: 80px 0;
}
.glass-matrix .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.glass-matrix .col h3 { font-family: var(--font-display); font-size: 32px; color: var(--warm-white); margin-bottom: 12px; }
.glass-matrix .col .best { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bronze); margin-bottom: 12px; }
.glass-matrix .col p { color: rgba(248,247,243,0.75); font-size: 15px; line-height: 1.6; }
.glass-matrix .stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--line-light); }
.glass-matrix .stats .cell { padding: 0 32px; border-right: 1px solid var(--line-light); }
.glass-matrix .stats .cell:last-child { border-right: 0; }
.glass-matrix .stats .num { font-family: var(--font-display); font-size: 56px; line-height: 1; color: var(--warm-white); }
.glass-matrix .stats .num em { color: var(--bronze); font-style: normal; }
.glass-matrix .stats .k { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bronze); margin-top: 12px; }
.glass-matrix .stats .sub { font-size: 13px; color: rgba(248,247,243,0.7); margin-top: 8px; line-height: 1.5; }

/* ============================================================
   COMPONENT: Filterable grid
   ============================================================ */
.filterable {
  padding: var(--s-9) 0;
  background: var(--paper);
}
.filterable .head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 48px; flex-wrap: wrap; gap: 24px; }
.filterable .head h2 { max-width: 16ch; }
.filterable .head h2 em { color: var(--bronze); }
.filterable .filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filterable .filters button { padding: 8px 16px; font-size: 13px; font-weight: 500; border: 1px solid var(--border); background: #fff; border-radius: 999px; color: var(--ink-soft); cursor: pointer; transition: all 0.2s var(--ease); }
.filterable .filters button:hover { border-color: var(--bronze); color: var(--ink); }
.filterable .filters button.active { background: var(--charcoal); color: var(--warm-white); border-color: var(--charcoal); }
.filterable .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.filterable .card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.filterable .card .img { aspect-ratio: 4/3; background: var(--stone-grey); background-size: cover; background-position: center; }
.filterable .card .body { padding: 24px 24px 28px; }
.filterable .card .tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bronze); margin-bottom: 8px; font-weight: 300; }
.filterable .card h3 { font-size: 22px; margin-bottom: 8px; }
.filterable .card p { font-size: 13px; line-height: 1.55; color: var(--muted); }

/* ============================================================
   COMPONENT: Process step list
   ============================================================ */
.steps-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 40px 0; }
.step-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.step-card .num { font-family: var(--font-display); font-size: 36px; color: var(--bronze); line-height: 1; margin-bottom: 12px; }
.step-card h4 { font-family: var(--font-body); font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }

/* ============================================================
   COMPONENT: FAQ accordion
   ============================================================ */
.faq { padding: var(--s-9) 0; background: var(--paper); }
.faq .head { text-align: center; margin-bottom: 64px; }
.faq .head .eyebrow { justify-content: center; }
.faq .head h2 { margin-top: 16px; }
.faq .head h2 em { color: var(--bronze); }
.faq .head p { color: var(--ink-soft); margin: 16px auto 0; max-width: 56ch; }
.faq .group { margin-bottom: 64px; }
.faq .group h3 { font-family: var(--font-body); font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bronze); margin-bottom: 24px; font-weight: 600; }
.faq .item { border-top: 1px solid var(--border); }
.faq .item:last-child { border-bottom: 1px solid var(--border); }
.faq .item summary { padding: 24px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 32px; font-family: var(--font-display); font-size: 20px; color: var(--ink); font-weight: 500; list-style: none; transition: color 0.2s var(--ease); }
.faq .item summary::-webkit-details-marker { display: none; }
.faq .item summary::after { content: "+"; font-size: 24px; color: var(--bronze); transition: transform 0.2s var(--ease); flex-shrink: 0; }
.faq .item[open] summary::after { content: "−"; }
.faq .item summary:hover { color: var(--bronze); }
.faq .item .answer { padding: 0 0 28px; max-width: 80ch; }
.faq .item .answer p { font-size: 15px; line-height: 1.65; color: var(--ink-soft); }
.faq-cat-title { font-family: var(--font-body); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bronze); margin: 48px 0 16px; font-weight: 600; padding: 10px 16px; background: rgba(176, 138, 87, 0.08); border-left: 2px solid var(--bronze); border-radius: 0 4px 4px 0; }
.faq-cat-title:first-of-type { margin-top: 0; }

/* ============================================================
   COMPONENT: Forms
   ============================================================ */
.form { display: flex; flex-direction: column; gap: 16px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { display: block; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; font-weight: 500; }
.form input, .form select, .form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-soft);
  background: #fff;
  font-size: 15px;
  color: var(--ink);
  border-radius: var(--radius);
  font-family: inherit;
  transition: border-color 0.2s var(--ease);
}
.form input:focus, .form select:focus, .form textarea:focus { outline: 0; border-color: var(--bronze); }
.form textarea { min-height: 120px; resize: vertical; }
.form .submit { margin-top: 8px; }

/* ============================================================
   COMPONENT: Gated resource hero
   ============================================================ */
.gate-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 540px;
  margin: 0 auto;
}
.gate-card h3 { font-size: 24px; margin-bottom: 8px; }
.gate-card p { font-size: 14px; color: var(--muted); margin-bottom: 24px; }

/* ============================================================
   RESOURCES DROPDOWN
   ============================================================ */
.res-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.res-grid .res-card.full { grid-column: 1 / -1; }
.res-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px 32px; transition: all 0.3s var(--ease); text-decoration: none; color: inherit; display: block; }
.res-card:hover { border-color: var(--bronze); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.06); }
.res-card .tag { display: inline-block; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bronze); margin-bottom: 16px; font-weight: 600; }
.res-card h3 { font-size: 24px; margin-bottom: 8px; }
.res-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
.res-card.gated { border-color: var(--stone-grey); background: rgba(216, 211, 203, 0.05); }
.res-card.gated .tag { background: var(--charcoal); color: var(--warm-white); padding: 4px 8px; border-radius: 3px; }

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --gutter: 32px; }

  /* Mobile nav: full-width dropdown panel below the nav bar */
  .nav { grid-template-columns: 1fr auto; }
  .nav .menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 12px var(--gutter);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    flex-direction: column;
    gap: 0;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
  }
  .nav .menu.open { display: flex; }
  .nav .menu > li { width: 100%; }
  .nav .menu a, .nav .menu .drop-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 14px 12px;
    font-size: 15px;
  }
  .nav .menu .dropdown {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 4px 0 4px 12px;
    background: transparent;
    min-width: 0;
  }
  .nav .menu .dropdown a {
    padding: 12px 14px;
    font-size: 14px;
  }
  .nav .actions .login { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-mobile-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-mobile-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-mobile-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  h1 { font-size: clamp(36px, 7vw, 56px); }
  h2 { font-size: clamp(28px, 5vw, 42px); }
  .util-bar { font-size: 11px; padding: 8px var(--gutter); }
  .util-bar .left { gap: 16px; }
  .eurocore .head, .systems-grid .head, .split, .split.reverse, .inspiration .head, .showroom-cta .grid, .faq .group, .material-selector .head, .glass-matrix .grid { grid-template-columns: 1fr; gap: 32px; }
  .eurocore .pillars { grid-template-columns: 1fr 1fr; }
  .pillar { border-right: 0; border-bottom: 1px solid var(--border); }
  .pillar:nth-child(2n) { border-right: 0; }
  .systems-grid .grid, .material-selector .grid, .testimonials .grid, .res-grid, .steps-list, .filterable .grid, .inspiration .grid { grid-template-columns: 1fr; }
  .why .grid { grid-template-columns: 1fr; }
  .why .cell { border-right: 0; border-bottom: 1px solid var(--line-light); padding: 20px 0; }
  .process .flow { grid-template-columns: 1fr; gap: 16px; }
  .process .step::after { display: none; }
  .process-stepper { flex-direction: column; gap: 0; }
  .process-step {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 24px;
    padding: 12px 0;
  }
  .process-step .badge { margin: 0; flex-shrink: 0; }
  .process-step::after {
    top: auto;
    bottom: -12px;
    left: 28px;
    right: auto;
    width: 1.5px;
    height: 24px;
  }
  .process-step:last-child::after { display: none; }
  .process-step p { max-width: none; margin: 0; padding: 0; }
  .process-journey { flex-direction: column; gap: 0; align-items: stretch; }
  .process-journey::before {
    top: 28px;
    bottom: 28px;
    left: 28px;
    right: auto;
    width: 1.5px;
    height: auto;
    transform: scaleY(0);
    transform-origin: top center;
    transition: transform 1.6s cubic-bezier(0.65, 0, 0.35, 1);
  }
  .process-journey.in-view::before { transform: scaleY(1); }
  .process-step {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 20px;
    padding: 12px 0;
  }
  .process-step .marker { margin: 0; flex-shrink: 0; }
  .process-step h3 { margin-bottom: 4px; }
  .process-step p { max-width: none; margin: 0; }
  .footer .top { grid-template-columns: 1fr 1fr; }

  /* Aluminium page responsive */
  .system-why .glazing-intro { grid-template-columns: 1fr; gap: 40px; }
  .system-inside .glazing-intro { grid-template-columns: 1fr; gap: 40px; }
  .system-inside .components { grid-template-columns: 1fr; gap: 20px; }
  .perf-cards { grid-template-columns: repeat(3, 1fr); }

  .glass-cta .grid, .glazing .grid { grid-template-columns: repeat(2, 1fr); }
  .glazing-intro { grid-template-columns: 1fr; gap: 40px; margin-bottom: 48px; }
  .tailored .icon-grid { grid-template-columns: repeat(3, 1fr); gap: 40px 32px; }
  .systems-grid .grid.grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-strip .grid { grid-template-columns: 1fr; gap: 32px; }

  /* Aluminium page mobile */
  .perf-cards { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .perf-card { padding: 24px 16px; }
  .perf-metric { font-size: 28px; }
  .perf-metric span { font-size: 20px; }

  .stat-strip .cell { border-right: 0; border-bottom: 1px solid var(--line-light); padding: 0 0 32px; }
  .stat-strip .cell:last-child { border-bottom: 0; padding-bottom: 0; }
  .form .row { grid-template-columns: 1fr; }
  .nav .actions .login { display: none; }
}
@media (max-width: 640px) {
  :root { --gutter: 20px; }

  /* Nav: shrink logo, shrink CTA, tighter spacing so all three fit */
  .nav { padding: 14px var(--gutter); gap: 12px; }
  .nav .logo { gap: 10px; }
  .nav .logo img { width: 40px; height: 40px; }
  .nav .logo .wordmark .name { font-size: 26px; }
  .nav .actions .btn { padding: 10px 14px; font-size: 13px; }

  .footer .top { grid-template-columns: 1fr; }
  .eurocore .pillars { grid-template-columns: 1fr; }
  .glass-cta .grid, .glazing .grid { grid-template-columns: 1fr; }
  .tailored .icon-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .systems-grid .grid.grid-4 { grid-template-columns: 1fr; }
  .stat-strip .num { font-size: 48px; }
  .glass-matrix .stats { grid-template-columns: 1fr; gap: 24px; }
  .glass-matrix .stats .cell { border-right: 0; border-bottom: 1px solid var(--line-light); padding: 0 0 24px; }
  .glass-matrix .stats .cell:last-child { border-bottom: 0; padding-bottom: 0; }
  .process-step .marker { width: 48px; height: 48px; font-size: 18px; }
  .process-journey::before { left: 24px; top: 24px; bottom: 24px; }
}

/* ============================================================
   ABOUT US PAGE
   ============================================================ */
.why-windor .glazing-intro { align-items: stretch; }
.why-windor .glazing-image { display: flex; }
.why-windor .glazing-image img { width: 100%; height: 100%; object-fit: cover; }
.why-windor .glazing-copy h2 em { color: var(--bronze); font-style: italic; }
.reasons-list { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.reason { display: flex; gap: 20px; align-items: flex-start; }
.reason-num { font-family: var(--font-mono); font-size: 13px; color: var(--bronze); letter-spacing: 0.12em; padding-top: 4px; flex-shrink: 0; min-width: 30px; }
.reason h4 { font-size: 18px; color: var(--warm-white); margin-bottom: 6px; font-family: var(--font-body); font-weight: 600; }
.reason p { font-size: 14px; color: rgba(248,247,243,0.7); line-height: 1.6; }
.why-windor .reasons-bullets {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}
.why-windor .reasons-bullets li {
  font-size: 15px;
  color: rgba(248,247,243,0.75);
  line-height: 1.6;
  margin-bottom: 16px;
}
.why-windor .reasons-bullets li strong {
  color: var(--warm-white);
  font-weight: 600;
}
.showroom-section .showroom-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 24px 0;
  white-space: nowrap;
}
.showroom-section .showroom-heading .accent { color: var(--bronze); font-style: italic; }

.contact-item { text-align: center; padding: 32px 24px; background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.contact-item .k { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bronze); margin-bottom: 12px; }
.contact-item .v { font-size: 15px; color: var(--ink); line-height: 1.5; }
.contact-item .v a { color: var(--ink); text-decoration: none; }
.contact-item .v a:hover { color: var(--bronze); }

.how-we-work .eyebrow { justify-content: center; }
.how-we-work h2 em { color: var(--bronze); }
.how-we-work .how-we-work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.how-we-work .how-we-work-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}
.how-we-work .how-we-work-copy h2 { text-align: left; margin: 0 0 16px 0; }
.how-we-work .how-we-work-tagline {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 24px 0;
}
.how-we-work .how-we-work-tagline .dark { color: var(--ink); }
.how-we-work .how-we-work-tagline .accent { color: var(--bronze); font-style: italic; }
.how-we-work .how-we-work-copy p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 16px 0;
}
.why-windor .glazing-copy h2 { font-size: clamp(28px, 3vw, 38px); line-height: 1.15; margin-bottom: 20px; }

/* ============================================================
   ALUMINIUM PAGE (template for other systems)
   ============================================================ */
.system-why .head h2 { text-align: left; margin-bottom: 32px; }
.system-why .head h2 em { color: var(--bronze); }
.system-why .glazing-intro { grid-template-columns: 0.85fr 1fr; }

.why-list { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.why-item { display: flex; gap: 20px; align-items: flex-start; }
.why-num { font-family: var(--font-mono); font-size: 13px; color: var(--bronze); letter-spacing: 0.12em; padding-top: 4px; flex-shrink: 0; min-width: 30px; }
.why-item h4 { font-size: 18px; color: var(--ink); margin-bottom: 6px; font-family: var(--font-body); font-weight: 600; }
.why-item p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

/* Performance cards */
.system-perf { background: #1a1c1f; color: var(--warm-white); }
.system-perf .head { text-align: center; margin-bottom: 56px; }
.system-perf .head h2 { max-width: 20ch; margin: 0 auto; }
.system-perf .head h2 em { color: var(--bronze); }
.perf-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.perf-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; transition: all 0.3s var(--ease); }
.perf-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); border-color: var(--bronze); }
.perf-icon { width: 48px; height: 48px; margin: 0 auto 20px; color: var(--bronze); }
.perf-icon svg { width: 100%; height: 100%; }
.perf-metric { font-family: var(--font-display); font-size: 36px; font-weight: 500; line-height: 1; color: var(--ink); margin-bottom: 4px; }
.perf-metric span { font-size: 24px; color: var(--ink-soft); }
.perf-unit { font-family: var(--font-mono); font-size: 12px; color: var(--ink-soft); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.perf-label { font-family: var(--font-body); font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.perf-card p { font-size: 13px; line-height: 1.55; color: var(--ink-soft); }

/* Inside the System */
.system-inside { background: var(--warm-white); }
.system-inside .glazing-intro { grid-template-columns: 1fr 0.8fr; align-items: center; }
.system-inside .glazing-image { align-self: center; position: sticky; top: 80px; }
.system-inside .glazing-image img { width: 100%; height: auto; }
.system-inside .head { margin-bottom: 40px; }
.system-inside .head h2 em { color: var(--bronze); }
.system-inside .components { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 1fr; gap: 20px 24px; }
.system-inside .comp { display: flex; flex-direction: column; gap: 12px; padding: 24px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); }
.system-inside .comp .icn { width: 36px; height: 36px; color: var(--bronze); flex-shrink: 0; }
.system-inside .comp .icn svg { width: 100%; height: 100%; }
.system-inside .comp h3 { font-size: 15px; color: var(--ink); margin-bottom: 4px; font-family: var(--font-body); font-weight: 600; }
.system-inside .comp p { font-size: 13px; line-height: 1.55; color: var(--ink-soft); }

/* Why Choose — 2x2 grid of cells */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 1fr; gap: 20px; margin-top: 24px; }
.why-cell { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px 20px; display: flex; flex-direction: column; }
.why-cell .icn { width: 36px; height: 36px; color: var(--bronze); margin-bottom: 16px; }
.why-cell .icn svg { width: 100%; height: 100%; }
.why-cell .why-cell-head { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; }
.why-cell .why-cell-head .icn { margin-bottom: 0; flex-shrink: 0; }
.why-cell .why-cell-head h4 { margin-bottom: 0; }
.system-why .glazing-copy h2.why-section-heading,
.why-section-heading { font-family: var(--font-display); font-size: clamp(48px, 6vw, 72px); font-weight: 400; line-height: 1.05; color: var(--ink); margin: 0 0 16px 0; letter-spacing: -0.01em; font-style: normal; }
.why-cell h4 { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 6px; font-family: var(--font-body); }
.why-cell p { font-size: 13px; line-height: 1.55; color: var(--ink-soft); }

/* Mobile responsive for why-grid */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* Performance at a Glance — 5 categories from the doc */
.system-perf .head { text-align: center; margin-bottom: 56px; }
.system-perf .head h2 { max-width: 20ch; margin: 0 auto 12px; }
.system-perf .head h2 em { color: var(--bronze); }
.system-perf .head p { color: var(--ink-soft); font-size: 14px; }
.perf-tiles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; align-items: start; }
.perf-tiles-6 { grid-template-columns: repeat(6, 1fr); gap: 12px; }
.perf-tile { background: #2a2c2f; border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-md); transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease); min-height: 180px; display: flex; flex-direction: column; color: var(--warm-white); }
.perf-tile:hover { border-color: var(--bronze); box-shadow: 0 12px 32px rgba(0,0,0,0.08); transform: translateY(-4px); }
.tile-trigger { padding: 24px 12px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; flex: 1; }
.tile-icon { width: 40px; height: 40px; color: #E8B96A; flex-shrink: 0; }
.tile-icon svg { width: 100%; height: 100%; }
.tile-detail { max-height: 0; overflow: hidden; opacity: 0; padding: 0 24px; transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease), padding 0.3s var(--ease); text-align: left; }
.tile-detail p { font-size: 13px; line-height: 1.55; color: rgba(248,247,243,0.7); }
.perf-tiles-6 .tile-detail p { font-size: 12px; line-height: 1.5; }
.perf-tile:hover .tile-detail { max-height: 320px; opacity: 1; padding: 0 24px 28px; }
.tile-label { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--warm-white); letter-spacing: 0.02em; line-height: 1.3; }

/* Mobile: tiles stack and show all info */
@media (max-width: 1024px) {
  .perf-tiles { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .perf-tiles-6 { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}
@media (max-width: 640px) {
  .perf-tiles { grid-template-columns: 1fr; }
  .perf-tiles-6 { grid-template-columns: 1fr; }
}

/* ============== GLASS & GLAZING TABS ============== */
.glazing-tabs {
  background: var(--warm-white);
  padding: var(--s-7) 0;
}
.glazing-tabs .head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
}
.tabs-nav {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: var(--ink);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
  border-bottom: 3px solid var(--bronze);
}
.tab-btn {
  background: transparent;
  border: none;
  color: var(--warm-white);
  padding: 20px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: background 0.25s ease;
  position: relative;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.tab-btn:last-child { border-right: none; }
.tab-btn svg {
  width: 32px;
  height: 32px;
  stroke: var(--bronze);
  stroke-width: 1.8;
  opacity: 1;
  transition: opacity 0.25s ease;
}
.tab-btn:hover { background: rgba(255,255,255,0.05); }
.tab-btn:hover svg { opacity: 1; }
.tab-btn.active { background: var(--bronze); }
.tab-btn.active svg { stroke: var(--warm-white); opacity: 1; }
.tabs-content {
  background: var(--paper);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 56px 48px;
  min-height: 360px;
}
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fade-in 0.35s ease; }
@keyframes fade-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.tab-grid {
  display: block;
  max-width: 720px;
  margin: 0 auto;
}
.tab-icon { display: none; }
.tab-body h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.2;
}
.tab-body > p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  position: relative;
  padding: 10px 0 10px 32px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23B08A57' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='2,8 7,13 14,3'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}
.check-list li a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--bronze);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  font-weight: 500;
}
.tabs-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .tabs-nav { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .tabs-nav { grid-template-columns: repeat(2, 1fr); }
  .tab-btn { padding: 16px 8px; font-size: 13px; }
  .tabs-content { padding: 40px 24px; }
}

/* ============================================================
   RESPONSIVE OVERRIDES — recently changed sections
   Scoped to fix mobile/tablet issues without breaking existing styles
   ============================================================ */

/* Ensure images and media never overflow their containers */
img, picture, video, svg { max-width: 100%; height: auto; }

/* ---------- Entrance Doors: 5-card "Why Choose" (now flex, not grid) ---------- */
@media (max-width: 1024px) {
  .entrance-why-grid { flex-wrap: wrap; }
  .entrance-why-card { flex: 1 1 calc(50% - 10px); max-width: calc(50% - 10px); }
}
@media (max-width: 640px) {
  .entrance-why-card { flex: 1 1 100%; max-width: 100%; }
}

/* ---------- Entrance Doors: Choose Your Style (carousel + list split) ---------- */
@media (max-width: 1024px) {
  .entrance-styles-split { grid-template-columns: 1fr; gap: 40px; }
  .entrance-styles-carousel { position: static; min-height: 500px; max-width: 600px; margin: 0 auto; width: 100%; }
  .entrance-styles-head h2 { white-space: normal; }
}
@media (max-width: 640px) {
  .entrance-styles-carousel { min-height: 380px; }
  .entrance-styles-head h2 { font-size: 26px; }
}

/* ---------- Doors: Architectural Features (image + accordion) ---------- */
@media (max-width: 1024px) {
  .arch-features-layout { grid-template-columns: 1fr; gap: 40px; }
  .arch-features-right { position: static; }
  .arch-features-left h2 { white-space: normal; }
}
@media (max-width: 640px) {
  .arch-features .glazing-copy h2 { font-size: 28px; }
}

/* ---------- Doors: feature-carousel sizing on mobile ---------- */
@media (max-width: 640px) {
  .feature-carousel { aspect-ratio: 1/1; }
}

/* ---------- Doors: 5-card "Why Choose" in system-why (glazing-grid) ---------- */
@media (max-width: 1024px) {
  .system-why .glazing-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Safety: prevent text overflow on long headings ---------- */
.system-why .glazing-copy h2,
.arch-features-left h2,
.entrance-styles-head h2 {
  overflow-wrap: break-word;
  word-wrap: break-word;
}
