/* ============================================
   SANTI BLINDS — style.css
   Modern · Minimal · Refined · Timeless
   ============================================ */

/* --- TOKENS --- */
:root {
  --c-black:    #2E2E2E;
  --c-dark:     #222021;
  --c-navy:     #33363D;
  --c-tan:      #A2A092;
  --c-cream:    #D1D0CB;
  --c-white:    #F5F4F0;
  --c-accent:   #A2A092;

  --font-display: 'Anton', sans-serif;
  --font-body:    'Open Sans', sans-serif;
  --font-ui:      'Quicksand', sans-serif;

  --nav-h: 210px;
  --section-pad: clamp(80px, 10vw, 140px);
  --container: 1280px;
  --radius: 2px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--c-dark);
  color: var(--c-cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
  font-family: var(--font-body);
  font-size: 0.9rem;
}
ul { list-style: none; }

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--c-dark); }
::-webkit-scrollbar-thumb { background: var(--c-navy); }

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

/* --- SECTION --- */
.section { padding: var(--section-pad) 0; }
.section-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-tan);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--c-white);
  margin-bottom: 1.5rem;
}
.section-desc {
  font-size: 1rem;
  color: var(--c-cream);
  max-width: 520px;
  margin-bottom: 3rem;
}
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-desc { margin: 0 auto 3rem; }

.body-text {
  font-size: 0.95rem;
  color: var(--c-cream);
  line-height: 1.8;
  margin-bottom: 1.4rem;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 32px;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.07);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }
.btn--primary {
  background: var(--c-tan);
  color: var(--c-dark);
}
.btn--primary:hover {
  background: var(--c-cream);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--c-cream);
  border: 1px solid rgba(209, 208, 203, 0.35);
}
.btn--ghost:hover {
  border-color: var(--c-cream);
  transform: translateY(-2px);
}
.btn--full { width: 100%; justify-content: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-tan);
  transition: gap 0.3s var(--ease-out), color 0.3s;
}
.link-arrow:hover { gap: 0.8rem; color: var(--c-cream); }
.link-arrow span { transition: transform 0.3s var(--ease-out); }
.link-arrow:hover span { transform: translateX(4px); }

/* --- REVEAL ANIMATION --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  overflow: visible;
  transition: background 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(34, 32, 33, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0;
}
@media (max-width: 480px) {
  .nav__logo-img { height: 80px; }
  .nav__brand { font-size: 0.95rem; }
}
/* Logo image — replaces the CSS-drawn S + slats mark */
.nav__logo-img {
  display: block;
  height: 200px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}

/* Suppress old drawn mark in case any stale markup remains */
.nav__logo-mark { display: none; }
.logo-s, .logo-slats { display: none; }
.nav__brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--c-cream);
  margin: 0;
  margin-left: -62px;
  padding: 0;
}
.nav__brand em {
  font-style: normal;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--c-tan);
  display: block;
  margin-top: 1px;
}
.nav__links {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
}
.nav__links a {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-cream);
  opacity: 0.75;
  transition: opacity 0.3s, color 0.3s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--c-tan);
  transition: width 0.3s var(--ease-out);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { width: 100%; }
.nav__links a.active {
  opacity: 1;
  color: var(--c-tan);
}
.nav__links a.active::after { width: 100%; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  position: relative;
  z-index: 1001;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--c-cream);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c-dark) 0%, var(--c-black) 50%, var(--c-navy) 100%);
}
.hero__slats-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 28px,
    rgba(255,255,255,0.018) 28px,
    rgba(255,255,255,0.018) 32px
  );
}
.hero__bg::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 60%; height: 120%;
  background: radial-gradient(ellipse at center, rgba(162,160,146,0.07) 0%, transparent 70%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  padding-top: 60px;
}
.hero__eyebrow {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-tan);
  margin-bottom: 1.5rem;
  display: block;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 11vw, 10rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: var(--c-white);
  margin-bottom: 2rem;
}
.hero__title--accent { color: var(--c-tan); }
.hero__sub {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  color: var(--c-cream);
  opacity: 0.7;
  max-width: 420px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: clamp(20px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}
@media (max-width: 480px) {
  .hero__scroll-hint { display: none; }
}
.hero__scroll-hint span {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-tan);
  opacity: 0.6;
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--c-tan), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleX(0); }
  50%  { transform: scaleX(1); }
  100% { transform: scaleX(0) translateX(40px); }
}

/* ============================================
   MARQUEE — Infinite seamless scroll
   ============================================ */
.marquee {
  background: var(--c-black);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  padding: 16px 0;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  will-change: transform;
  /* animation set dynamically by initMarquee() in script.js */
}
.marquee__track span {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-cream);
  white-space: nowrap;
  padding: 0 1.6em;
  line-height: 1;
  opacity: 0.85;
}
/* Hide the original · or ✦ character and replace with a unified diamond ✦ via CSS */
.marquee__track .dot {
  font-size: 0;           /* hide the original character */
  padding: 0;
  position: relative;
  width: 1em;
  flex-shrink: 0;
}
.marquee__track .dot::after {
  content: '✦';
  font-size: 0.55rem;
  color: var(--c-tan);
  opacity: 0.9;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
}
/* marqueeScroll keyframe is now injected per-track by script.js (initMarquee)
   so each track animates exactly one logical set width — no dead space ever */

/* ============================================
   ABOUT
   ============================================ */
.about { background: var(--c-dark); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
}
.about__text { display: flex; flex-direction: column; gap: 0; }
.about__visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.about__slat-art {
  height: 320px;
  position: relative;
  overflow: hidden;
  background: var(--c-navy);
}
.about__stat-block {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--c-white);
  letter-spacing: 0.02em;
  line-height: 1;
}
.stat__label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-tan);
}

/* ============================================
   VALUES
   ============================================ */
.values-section { background: var(--c-black); }
.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  margin-top: 4rem;
}
.value-card {
  background: var(--c-navy);
  padding: 2.5rem 2rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.4s, background 0.4s;
}
.value-card:hover {
  border-color: var(--c-tan);
  background: var(--c-dark);
}
.value-card__num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: var(--c-tan);
  opacity: 0.6;
  margin-bottom: 1.5rem;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--c-white);
  margin-bottom: 0.75rem;
}
.value-card p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--c-cream);
  opacity: 0.7;
}

/* ============================================
   TEAM
   ============================================ */
.team-section { background: var(--c-dark); }
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.team-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--c-navy);
  transition: background 0.4s, transform 0.4s var(--ease-out);
}
.team-card:hover {
  background: var(--c-black);
  transform: translateY(-6px);
}
.team-card__avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  background: var(--c-black);
  position: relative;
  overflow: hidden;
}
.team-card__avatar--1 {
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-tan) 100%);
}
.team-card__avatar--2 {
  background: linear-gradient(135deg, var(--c-black) 0%, var(--c-navy) 100%);
}
.team-card__avatar--3 {
  background: linear-gradient(135deg, var(--c-tan) 0%, var(--c-black) 100%);
}
.team-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--c-white);
  margin-bottom: 0.25rem;
}
.team-card span {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-tan);
  display: block;
  margin-bottom: 1rem;
}
.team-card p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--c-cream);
  opacity: 0.65;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--c-dark);
  text-align: center;
}
.testimonials__slider {
  max-width: 700px;
  margin: 2rem auto 0;
  min-height: 160px;
  position: relative;
}
.testimonial {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.testimonial.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.testimonial blockquote {
  font-family: var(--font-ui);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--c-cream);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial cite {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-tan);
  font-style: normal;
}
.testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.t-prev, .t-next {
  width: 40px; height: 40px;
  border: 1px solid rgba(162,160,146,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-cream);
  font-size: 1rem;
  transition: border-color 0.3s, background 0.3s;
}
.t-prev:hover, .t-next:hover {
  border-color: var(--c-tan);
  background: rgba(162,160,146,0.1);
}
.t-dots { display: flex; gap: 0.5rem; }
.t-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(162,160,146,0.3);
  transition: background 0.3s, transform 0.3s;
}
.t-dot.active {
  background: var(--c-tan);
  transform: scale(1.3);
}

/* ============================================
   CTA STRIP
   ============================================ */
.cta-strip { background: var(--c-navy); }
.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 5rem 0;
  flex-wrap: wrap;
}
.cta-strip__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.02em;
  color: var(--c-white);
  margin-bottom: 0.5rem;
}
.cta-strip__text p {
  font-size: 0.9rem;
  color: var(--c-cream);
  opacity: 0.65;
}

/* ============================================
   HOME TEASERS
   ============================================ */
.home-teasers { background: var(--c-dark); }
.teasers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  margin-top: 4rem;
}
.teaser-card {
  display: flex;
  flex-direction: column;
  background: var(--c-black);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out);
}
.teaser-card:hover { transform: translateY(-4px); }
.teaser-card__visual {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.teaser-card__visual--about {
  background: linear-gradient(145deg, var(--c-navy) 0%, var(--c-dark) 100%);
}
.teaser-card__visual--products {
  background: linear-gradient(145deg, var(--c-black) 0%, var(--c-navy) 100%);
}
.teaser-card__visual--gallery {
  background: linear-gradient(145deg, var(--c-dark) 0%, var(--c-black) 100%);
}
.teaser-card__visual--process {
  background: linear-gradient(145deg, var(--c-navy) 0%, var(--c-black) 100%);
}
.teaser-card__body {
  padding: 2rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.teaser-card__body h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--c-white);
}
.teaser-card__body p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--c-cream);
  opacity: 0.6;
  flex: 1;
  margin-bottom: 0.75rem;
}

/* ============================================
   PRODUCTS (index teaser)
   ============================================ */
.products { background: var(--c-dark); }
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-top: 4rem;
}
.product-card {
  background: var(--c-black);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out);
}
.product-card:hover { transform: translateY(-4px); }
.product-card__img {
  height: 220px;
  position: relative;
  overflow: hidden;
  background: var(--c-navy);
}
.product-card__img--roller   { background: linear-gradient(145deg, var(--c-navy) 0%, var(--c-dark) 100%); }
.product-card__img--venetian { background: linear-gradient(145deg, var(--c-black) 0%, var(--c-navy) 100%); }
.product-card__img--roman    { background: linear-gradient(145deg, var(--c-dark) 0%, var(--c-black) 100%); }
.product-card__img--vertical { background: linear-gradient(145deg, var(--c-navy) 0%, var(--c-black) 100%); }
.product-card__img--cellular { background: linear-gradient(145deg, var(--c-black) 0%, var(--c-dark) 100%); }
.product-card__img--motorized { background: linear-gradient(145deg, var(--c-dark) 0%, var(--c-navy) 100%); }
.product-card__slat-deco {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 18px,
    rgba(255,255,255,0.04) 18px,
    rgba(255,255,255,0.04) 22px
  );
}
.product-card__tag {
  position: absolute;
  top: 1rem; right: 1rem;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-tan);
  background: rgba(34,32,33,0.8);
  padding: 4px 10px;
  border: 1px solid rgba(162,160,146,0.25);
}
.product-card__body {
  padding: 2rem 1.75rem;
}
.product-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--c-white);
  margin-bottom: 0.75rem;
}
.product-card__body p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--c-cream);
  opacity: 0.65;
  margin-bottom: 1.5rem;
}
.product-features {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.75rem;
}
.product-features li {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--c-cream);
  opacity: 0.6;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.product-features li::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--c-tan);
  flex-shrink: 0;
  opacity: 0.6;
}

/* ============================================
   FILTER BAR (gallery + products page)
   ============================================ */
.filter-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-cream);
  padding: 9px 22px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  background: transparent;
  opacity: 0.55;
  transition: all 0.3s var(--ease-out);
}
.filter-btn:hover { opacity: 1; border-color: rgba(162,160,146,0.4); }
.filter-btn.active {
  background: var(--c-tan);
  border-color: var(--c-tan);
  color: var(--c-dark);
  opacity: 1;
}

/* ============================================
   GALLERY (index strip)
   ============================================ */
.gallery__strip {
  display: flex;
  gap: 3px;
  height: 460px;
  overflow: hidden;
}
.gallery__item {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: var(--c-navy);
  transition: flex 0.6s var(--ease-out);
  cursor: pointer;
}
.gallery__item--tall { flex: 1.4; }
.gallery__item--wide { flex: 1.6; }
.gallery__item:hover { flex: 2.2; }
.gallery__fill {
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease-out);
}
.gallery__item:hover .gallery__fill { transform: scale(1.04); }

/* Shared fill colours — used by both index strip and gallery page grid */
.gf--1 { background: linear-gradient(160deg, var(--c-navy) 0%, #2a2d34 100%); }
.gf--2 { background: linear-gradient(160deg, var(--c-black) 0%, var(--c-navy) 100%); }
.gf--3 { background: linear-gradient(160deg, #282624 0%, var(--c-navy) 100%); }
.gf--4 { background: linear-gradient(160deg, var(--c-navy) 0%, #3d3b30 100%); }
.gf--5 { background: linear-gradient(160deg, var(--c-black) 0%, #2c2b28 100%); }
.gf--6 { background: linear-gradient(160deg, #353230 0%, var(--c-navy) 100%); }
.gf--7 { background: linear-gradient(160deg, var(--c-dark) 0%, #2e3038 100%); }
.gf--8 { background: linear-gradient(160deg, var(--c-navy) 0%, var(--c-dark) 100%); }
.gf--9 { background: linear-gradient(160deg, #2b2926 0%, var(--c-navy) 100%); }

/* Slat texture overlay — sits inside each .gallery-grid__fill */
.gf__slats {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 22px,
    rgba(162,160,146,0.055) 22px,
    rgba(162,160,146,0.055) 26px
  );
  pointer-events: none;
}
/* Warm light sweep — top-right glow on every card */
.gallery-grid__fill::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 70%; height: 55%;
  background: radial-gradient(
    ellipse at 80% 10%,
    rgba(162,160,146,0.13) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.gallery__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(34,32,33,0.9) 0%, transparent 100%);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s, transform 0.4s var(--ease-out);
}
.gallery__item:hover .gallery__caption { opacity: 1; transform: translateY(0); }
.gallery__caption h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--c-white);
  margin-bottom: 0.15rem;
}
.gallery__caption span {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-tan);
}

/* ============================================
   GALLERY PAGE — Intro header
   ============================================ */
.gallery-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(2rem, 6vw, 6rem);
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
  padding-bottom: clamp(2rem, 3vw, 3rem);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.gallery-intro__text .section-label { margin-bottom: 0.75rem; }
.gallery-intro__text .section-title { margin-bottom: 0; }
.gallery-intro__desc {
  max-width: 380px;
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--c-cream);
  opacity: 0.6;
  flex-shrink: 0;
  padding-bottom: 0.2rem;
}

/* ============================================
   GALLERY PAGE — Filter bar
   ============================================ */
.gallery-page { background: var(--c-dark); }

/* Filter bar inherits shared .filter-bar styles;
   these overrides make it sit flush with the grid rhythm */
.gallery-page .filter-bar {
  margin-bottom: clamp(2rem, 3.5vw, 3.5rem);
  gap: 0.4rem;
}

/* ============================================
   GALLERY PAGE — Masonry grid
   ============================================ */
.gallery-grid {
  columns: 3;
  column-gap: 4px;
}
.gallery-grid__item {
  break-inside: avoid;
  margin-bottom: 4px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  /* border on every card — subtle structure from the moodboard */
  outline: 1px solid rgba(255,255,255,0.04);
  outline-offset: -1px;
}
.gallery-grid__item.hidden { display: none; }

/* The fill div holds the colour + pseudo-element glow */
.gallery-grid__fill {
  width: 100%;
  height: 280px;
  display: block;
  position: relative;
  transition: transform 0.55s var(--ease-out);
}
.gallery-grid__item--tall .gallery-grid__fill { height: 430px; }
.gallery-grid__item--wide .gallery-grid__fill { height: 330px; }
.gallery-grid__item:hover .gallery-grid__fill { transform: scale(1.05); }

/* Overlay — taller gradient, richer info hierarchy */
.gallery-grid__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem 1.5rem 1.5rem;
  background: linear-gradient(
    to top,
    rgba(34,32,33,0.96) 0%,
    rgba(34,32,33,0.5) 55%,
    transparent 100%
  );
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.gallery-grid__item:hover .gallery-grid__overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Room tag — small eyebrow label */
.gallery-grid__tag {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-tan);
  display: block;
  opacity: 0.9;
  margin-bottom: 0.2rem;
}
/* Product name — the headline */
.gallery-grid__label {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  letter-spacing: 0.06em;
  color: var(--c-white);
  display: block;
  line-height: 1.1;
}
/* Material detail — the sub-line */
.gallery-grid__product {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--c-cream);
  opacity: 0.55;
  display: block;
}

/* Hover border accent — tan bottom edge reveal */
.gallery-grid__item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--c-tan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
}
.gallery-grid__item:hover::after { transform: scaleX(1); }

/* ============================================
   GALLERY STATS
   ============================================ */
.gallery-stats {
  background: var(--c-black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: clamp(4rem, 7vw, 7rem) 0;
}
.gallery-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 0;
}
.gallery-stats__item {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
}
.gallery-stats__item:last-child { border-right: none; }

/* Vertical tan accent line above each stat */
.gallery-stats__item::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 2rem;
  background: linear-gradient(to bottom, var(--c-tan), transparent);
  opacity: 0.5;
}
.gallery-stats__num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--c-white);
  letter-spacing: 0.02em;
  line-height: 1;
  display: block;
  margin-bottom: 0.6rem;
}
.gallery-stats__sup {
  font-size: 0.45em;
  color: var(--c-tan);
  vertical-align: super;
}
.gallery-stats__label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-tan);
  display: block;
  opacity: 0.8;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(34,32,33,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lightbox__content {
  position: relative;
  z-index: 1;
  width: 90vw;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.lightbox__img {
  width: 100%;
  height: 68vh;
  background: var(--c-navy);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
/* Slat texture inside lightbox image area */
.lightbox__img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 22px,
    rgba(162,160,146,0.045) 22px,
    rgba(162,160,146,0.045) 26px
  );
  pointer-events: none;
  z-index: 1;
}
.lightbox__img::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%; height: 50%;
  background: radial-gradient(ellipse at 80% 10%, rgba(162,160,146,0.1) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}
.lightbox__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.25rem;
}
.lightbox__info {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-tan);
}
.lightbox__counter {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--c-cream);
  opacity: 0.35;
}
.lightbox__close {
  position: absolute;
  top: -3.25rem; right: 0;
  color: var(--c-cream);
  font-size: 1rem;
  opacity: 0.5;
  transition: opacity 0.3s, transform 0.3s;
  font-family: var(--font-ui);
  font-weight: 300;
  letter-spacing: 0.05em;
}
.lightbox__close:hover { opacity: 1; transform: scale(1.15); }
.lightbox__prev, .lightbox__next {
  position: absolute;
  top: calc(50% - 1.5rem);
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border: 1px solid rgba(162,160,146,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-cream);
  font-size: 1rem;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  z-index: 2;
}
.lightbox__prev { left: -3.75rem; }
.lightbox__next { right: -3.75rem; }
.lightbox__prev:hover, .lightbox__next:hover {
  border-color: var(--c-tan);
  background: rgba(162,160,146,0.1);
  transform: translateY(-50%) scale(1.08);
}

/* ============================================
   PROCESS (homepage teaser strip)
   ============================================ */
.process { background: var(--c-black); }
.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 4rem;
}
.process__step {
  flex: 1;
  padding: 2.5rem 2rem;
  background: var(--c-navy);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease-out), background 0.4s;
}
.process__step:hover {
  transform: translateY(-6px);
  background: var(--c-dark);
}
.process__connector {
  width: 30px;
  height: 1px;
  background: rgba(162,160,146,0.3);
  margin-top: 45px;
  flex-shrink: 0;
}
.process__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: rgba(162, 160, 146, 0.2);
  line-height: 1;
  margin-bottom: 1.25rem;
  transition: color 0.4s;
}
.process__step:hover .process__num { color: var(--c-tan); }
.process__content h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--c-white);
  margin-bottom: 0.75rem;
}
.process__content p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--c-cream);
  opacity: 0.7;
}

/* ============================================
   WHY STRIP (products page)
   ============================================ */
.why-strip { background: var(--c-navy); }
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  margin-top: 4rem;
}
.why-item {
  padding: 2.5rem 2rem;
  background: rgba(34,32,33,0.4);
  transition: background 0.4s;
}
.why-item:hover { background: rgba(34,32,33,0.8); }
.why-item__icon {
  font-size: 1.2rem;
  color: var(--c-tan);
  display: block;
  margin-bottom: 1.25rem;
}
.why-item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--c-white);
  margin-bottom: 0.6rem;
}
.why-item p {
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--c-cream);
  opacity: 0.6;
}

/* ============================================
   SLAT ART (decorative element)
   ============================================ */
.slat-art__frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.slat-art__light {
  position: absolute;
  top: 0; right: -20%; bottom: 0;
  width: 60%;
  background: radial-gradient(ellipse at 60% 40%, rgba(162,160,146,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.slat-art__slats {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 1.5rem;
}
.slat {
  height: 6px;
  background: linear-gradient(90deg,
    rgba(162,160,146,0.06) 0%,
    rgba(162,160,146,0.2) 40%,
    rgba(162,160,146,0.08) 100%
  );
  border-radius: 1px;
  animation: slatReveal 3s ease-in-out infinite alternate;
  animation-delay: calc(var(--i) * 220ms);
}
@keyframes slatReveal {
  from { opacity: 0.35; transform: scaleX(0.88); }
  to   { opacity: 1;   transform: scaleX(1); }
}

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--c-dark); border-top: 1px solid rgba(255,255,255,0.06); }
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  padding: 5rem 0 4rem;
  flex-wrap: wrap;
}
.footer__brand { max-width: 260px; }
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: var(--c-cream);
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}
.footer__logo-img {
  display: block;
  height: 120px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}
.footer__logo-text {
  margin-left: -50px;
}
.footer__logo em {
  font-style: normal;
  font-family: var(--font-ui);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--c-tan);
  display: block;
  margin-top: 2px;
}
.footer__brand p {
  font-size: 0.82rem;
  color: var(--c-cream);
  opacity: 0.45;
  line-height: 1.7;
}
.footer__nav {
  display: flex;
  gap: clamp(30px, 5vw, 80px);
}
.footer__nav > div {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__nav h4 {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-tan);
  margin-bottom: 0.5rem;
}
.footer__nav a {
  font-size: 0.85rem;
  color: var(--c-cream);
  opacity: 0.55;
  transition: opacity 0.3s, color 0.3s;
}
.footer__nav a:hover { opacity: 1; color: var(--c-cream); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--c-cream);
  opacity: 0.4;
}

/* ============================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================ */
@media (max-width: 1024px) {
  .about__grid  { grid-template-columns: 1fr; gap: 60px; }
  .about__visual { order: -1; }
  .about__slat-art { height: 260px; }

  .products__grid { grid-template-columns: repeat(2, 1fr); }

  .gallery__strip { height: 360px; }

  .process__steps { flex-direction: column; gap: 1.5px; }
  .process__connector { width: 1px; height: 20px; margin: 0 0 0 45px; }
  .process__step { padding: 2rem 1.75rem; }

  .contact__grid { grid-template-columns: 1fr; gap: 50px; }
  .footer__top { flex-direction: column; gap: 40px; }

  .teasers__grid { grid-template-columns: repeat(2, 1fr); }
  .values__grid { grid-template-columns: repeat(2, 1fr); }
  .team__grid { grid-template-columns: repeat(2, 1fr); }

  /* Contact page */
  .contact__grid--page { grid-template-columns: 1fr; gap: 50px; }
  .contact-page::before { display: none; }
  .faq__grid { grid-template-columns: 1fr; gap: 40px; }

  /* Map section */
  .map-placeholder { height: auto; }
  .map-placeholder__inner { flex-direction: column; position: relative; }
  .map__slat-visual { height: 240px; flex: none; }
  .map-placeholder__label { width: 100%; border-left: none; border-top: 1px solid rgba(255,255,255,0.06); padding: 2.5rem; }

  /* About hero */
  .page-hero--about .page-hero__content { max-width: 100%; }
}

/* ============================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================ */
@media (max-width: 768px) {
  :root { --nav-h: 100px; }

  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    z-index: 999;
    background: rgba(34,32,33,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--ease-out), padding 0.3s;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav__links.open {
    max-height: 400px;
    padding: 1.5rem 0 2rem;
  }
  .nav__links a {
    padding: 0.9rem 2rem;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    letter-spacing: 0.14em;
  }
  .nav__hamburger { display: flex; }

  /* Always show nav background on mobile so hamburger is always visible */
  .nav {
    background: rgba(34, 32, 33, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  }

  .hero__title { font-size: clamp(3rem, 12vw, 5rem); }
  .hero__cta { flex-direction: column; width: 100%; max-width: 260px; }
  .hero__cta .btn { justify-content: center; }

  .products__grid { grid-template-columns: 1fr; gap: 2px; }
  .product-card__img { height: 180px; }

  .gallery__strip {
    height: auto;
    flex-direction: column;
    gap: 4px;
  }
  .gallery__item { flex: none; height: 200px; }
  .gallery__item--tall,
  .gallery__item--wide { flex: none; height: 200px; }
  .gallery__item:hover { flex: none; }
  .gallery__caption { opacity: 1; transform: none; }

  .about__slat-art { height: 200px; }
  .about__stat-block { flex-direction: column; gap: 0.75rem; }

  .process__steps { gap: 0.75rem; }
  .process__connector { display: none; }

  .footer__nav { flex-direction: column; gap: 1.75rem; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .gallery-grid { columns: 2; }
  .gallery-intro { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .gallery-intro__desc { max-width: 100%; }
  .values__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr; }
  .teasers__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .cta-strip__inner { flex-direction: column; }

  /* Page hero */
  .page-hero { min-height: 55vh; }
  .page-hero--about { min-height: 60vh; }
  .page-hero--about .page-hero__content { max-width: 100%; }
  .page-hero__slat-art { display: none; }

  /* Stats strip */
  .stats-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip__item { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .stats-strip__item:nth-child(2) { border-right: none; }
  .stats-strip__item:nth-child(3) { border-bottom: none; }
  .stats-strip__item:nth-child(4) { border-right: none; border-bottom: none; }

  /* Lightbox — arrows stay within screen */
  .lightbox__prev { left: 0.5rem; }
  .lightbox__next { right: 0.5rem; }

  /* Commitment strip */
  .commitment-strip__grid { grid-template-columns: 1fr; gap: 1.5px; }

  /* Gallery stats */
  .gallery-stats__grid { grid-template-columns: 1fr; }
  .gallery-stats__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .gallery-stats__item:last-child { border-bottom: none; }

  /* Timeline */
  .timeline { grid-template-columns: 1fr; }
  .timeline::before { display: none; }
  .timeline__item { padding: 0 0 2.5rem 2rem; border-left: 1px solid rgba(162,160,146,0.15); }
  .timeline__item:first-child { padding-left: 2rem; }
  .timeline__marker { margin-left: -2rem; margin-bottom: 1.2rem; }

  /* FAQ grid */
  .faq-grid-wrap { grid-template-columns: 1fr; }
  .faq__grid { grid-template-columns: 1fr; gap: 40px; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================ */
@media (max-width: 480px) {
  .hero__content { padding-top: 30px; }
  .hero__scroll-hint { display: none; }
  .section-title { font-size: clamp(1.8rem, 8vw, 2.5rem); }
  .testimonial blockquote { font-size: 0.95rem; }
  .gallery-grid { columns: 1; }
  .gallery-grid__fill { height: 220px !important; }
  .gallery-grid__item--tall .gallery-grid__fill { height: 260px !important; }

  /* Lightbox full-screen on tiny phones */
  .lightbox__content { width: 100vw; }
  .lightbox__img { height: 55vh; }
  .lightbox__close { top: -2.75rem; }
  .lightbox__prev { left: 0.25rem; }
  .lightbox__next { right: 0.25rem; }

  /* Why grid to single column on very small screens */
  .why__grid { grid-template-columns: 1fr; }

  /* Buttons full-width on small phones */
  .hero__cta { max-width: 100%; }
  .hero__cta .btn { width: 100%; }

  /* Prevent overflow from large numbers */
  .stats-strip__num { font-size: clamp(2rem, 8vw, 3rem); }
  .gallery-stats__num { font-size: clamp(2.5rem, 8vw, 4rem); }
  .commitment-card__num { font-size: clamp(2rem, 8vw, 3rem); }
  .stat__num { font-size: clamp(1.8rem, 6vw, 2.5rem); }

  /* Contact form full-width */
  .map-placeholder__label { padding: 1.75rem; }

  /* Process full-width numbers */
  .process-step-full { grid-template-columns: 1fr; }
  .process-step-full__num { font-size: 2rem; }
  .process-step-full__num::after { display: none; }

  /* Section header spacing */
  .section-header { margin-bottom: 2.5rem; }
  .section-desc { margin-bottom: 2rem; }
}

/* ============================================
   PAGE HERO — Shared across all inner pages
   ============================================ */
.page-hero {
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.page-hero--contact {
  background: linear-gradient(135deg, var(--c-dark) 0%, var(--c-black) 55%, var(--c-navy) 100%);
}
.page-hero--about {
  background: linear-gradient(145deg, var(--c-dark) 0%, var(--c-black) 60%, #2a2e35 100%);
  min-height: 75vh;
}
.page-hero--gallery {
  background: linear-gradient(145deg, var(--c-black) 0%, var(--c-navy) 100%);
}
.page-hero--products {
  background: linear-gradient(145deg, var(--c-dark) 0%, var(--c-navy) 100%);
}
.page-hero--process {
  background: linear-gradient(145deg, var(--c-black) 0%, var(--c-dark) 100%);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 28px,
    rgba(255,255,255,0.015) 28px,
    rgba(255,255,255,0.015) 32px
  );
}
.page-hero__bg::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%; height: 100%;
  background: radial-gradient(ellipse at 80% 30%, rgba(162,160,146,0.08) 0%, transparent 65%);
}
.page-hero__bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--c-dark) 0%, transparent 100%);
}

/* Animated slat lines (contact hero) */
.page-hero__slat-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
  padding: 80px 0;
  opacity: 0.6;
}
.slat-line {
  height: 18px;
  margin: 4px 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(162,160,146,0.05) 20%,
    rgba(162,160,146,0.12) 50%,
    rgba(162,160,146,0.04) 80%,
    transparent 100%
  );
  animation: heroSlatPulse 5s ease-in-out infinite alternate;
  animation-delay: calc(var(--ln) * 130ms);
}
@keyframes heroSlatPulse {
  from { opacity: 0.3; transform: scaleX(0.96); }
  to   { opacity: 1;   transform: scaleX(1); }
}

/* About page hero slat art (right-side decorative) */
.page-hero__slat-art {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 42%;
  z-index: 1;
  overflow: hidden;
  opacity: 0.55;
  pointer-events: none;
}
.page-hero--about .page-hero__content { max-width: 60%; }

/* Universal page-hero content — consistent positioning on all pages */
.page-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: clamp(80px, 10vw, 130px);
  padding-bottom: clamp(60px, 8vw, 90px);
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--c-white);
  margin-bottom: 1.5rem;
}
.page-hero__title .accent { color: var(--c-tan); }
.page-hero__sub {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  color: var(--c-cream);
  opacity: 0.75;
  max-width: 440px;
  line-height: 1.75;
}

/* ============================================
   PROCESS PAGE — Full version
   ============================================ */
.process-page { background: var(--c-dark); padding-top: 0; }

.process-step-full {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 clamp(2rem, 4vw, 5rem);
  padding: clamp(60px, 8vw, 100px) 0;
  align-items: start;
}
.process-step-full__num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  color: var(--c-navy);
  letter-spacing: -0.02em;
  line-height: 1;
  padding-top: 0.1em;
  position: relative;
}
.process-step-full__num::after {
  content: '';
  position: absolute;
  left: 50%; top: 120%;
  transform: translateX(-50%);
  width: 1px;
  height: 999px;
  background: linear-gradient(to bottom, rgba(162,160,146,0.2) 0%, transparent 100%);
}
.process-step-full:last-child .process-step-full__num::after { display: none; }

.process-step-full__body {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
}
.process-step-full--flip .process-step-full__body {
  grid-template-columns: 380px 1fr;
}
.process-step-full--flip .process-step-full__text { order: 2; }
.process-step-full--flip .process-step-full__visual { order: 1; }

.process-step-full__text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0.02em;
  color: var(--c-white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.process-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1.8rem;
}
.process-checklist li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--c-cream);
  opacity: 0.75;
}
.process-checklist li::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--c-tan);
  flex-shrink: 0;
}

/* Process Visual Cards */
.process-visual {
  background: var(--c-black);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 3px;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  transition: border-color 0.4s;
}
.process-visual:hover { border-color: rgba(162,160,146,0.3); }
.process-visual::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 50%;
  background: radial-gradient(ellipse at top right, rgba(162,160,146,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Slats visual (consultation) */
.pv-slats {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 2rem;
}
.pv-slats .slat {
  height: 8px;
  background: linear-gradient(90deg, rgba(162,160,146,0.08) 0%, rgba(162,160,146,0.22) 50%, rgba(162,160,146,0.06) 100%);
  border-radius: 1px;
  animation: slatPulse 3s ease-in-out infinite alternate;
  animation-delay: calc(var(--i) * 200ms);
  transform-origin: left center;
}
@keyframes slatPulse {
  from { opacity: 0.4; transform: scaleX(0.92); }
  to   { opacity: 1;   transform: scaleX(1); }
}

/* Measure visual */
.pv-measure {
  position: absolute;
  inset: 2rem;
  border: 1px solid rgba(162,160,146,0.18);
  border-radius: 2px;
}
.pv-measure::before {
  content: '';
  position: absolute;
  top: -1px; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-tan), transparent);
  opacity: 0.5;
  animation: measureScan 2.5s ease-in-out infinite alternate;
}
.pv-measure::after {
  content: '';
  position: absolute;
  left: -1px; top: 20%; bottom: 20%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--c-tan), transparent);
  opacity: 0.5;
}
.pv-measure__corner {
  position: absolute;
  bottom: -6px; right: -6px;
  width: 12px; height: 12px;
  background: var(--c-tan);
  border-radius: 50%;
  opacity: 0.6;
  animation: measureScan 2.5s ease-in-out infinite alternate;
}
@keyframes measureScan {
  from { opacity: 0.3; }
  to   { opacity: 0.9; }
}

/* Fabricate visual */
.pv-fab {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  gap: 1px;
}
.pv-fab__slat {
  height: 28px;
  background: linear-gradient(135deg, rgba(162,160,146,0.15) 0%, rgba(162,160,146,0.07) 100%);
  border-top: 1px solid rgba(162,160,146,0.15);
  position: relative;
  animation: fabBuild 0.8s var(--ease-out) both;
  animation-delay: calc(var(--fi) * 180ms + 0.3s);
}
.pv-fab__slat::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(162,160,146,0.08) 100%);
}
@keyframes fabBuild {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}

/* Install visual */
.pv-install {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pv-install__blind {
  width: 60%;
  height: 65%;
  background: repeating-linear-gradient(
    180deg,
    rgba(162,160,146,0.12) 0px,
    rgba(162,160,146,0.12) 6px,
    transparent 6px,
    transparent 14px
  );
  border: 1px solid rgba(162,160,146,0.2);
  border-radius: 1px;
  position: relative;
}
.pv-install__blind::before {
  content: '';
  position: absolute;
  top: -8px; left: 50%; transform: translateX(-50%);
  width: 80%; height: 6px;
  background: rgba(162,160,146,0.3);
  border-radius: 1px;
}
.pv-install__check {
  position: absolute;
  bottom: 20%; right: 18%;
  width: 40px; height: 40px;
  background: rgba(162,160,146,0.15);
  border: 1px solid rgba(162,160,146,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--c-tan);
  animation: checkAppear 0.6s var(--ease-out) 0.5s both;
}
@keyframes checkAppear {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.pv-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-tan);
  padding: 1rem 1.25rem;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(4px);
  position: relative;
  z-index: 2;
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* Commitment strip */
.commitment-strip {
  background: var(--c-navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 5rem 0;
}
.commitment-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}
.commitment-card {
  background: rgba(34,32,33,0.6);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background 0.4s;
}
.commitment-card:hover { background: rgba(34,32,33,0.9); }
.commitment-card__num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--c-white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.commitment-card__unit {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-tan);
  display: block;
  margin-bottom: 0.75rem;
}
.commitment-card p {
  font-size: 0.82rem;
  color: var(--c-cream);
  opacity: 0.55;
  line-height: 1.65;
}

/* Timeline */
.timeline-section { background: var(--c-black); }
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 6px; left: 6px; right: 6px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(162,160,146,0.2) 10%, rgba(162,160,146,0.2) 90%, transparent);
}
.timeline__item {
  padding: 0 2rem 2rem;
  position: relative;
}
.timeline__item:first-child { padding-left: 0; }
.timeline__item:last-child { padding-right: 0; }
.timeline__marker {
  width: 12px; height: 12px;
  background: var(--c-tan);
  border-radius: 50%;
  margin-bottom: 2rem;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(162,160,146,0.15), 0 0 0 8px rgba(162,160,146,0.06);
}
.timeline__day {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-tan);
  display: block;
  margin-bottom: 0.5rem;
}
.timeline__content h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--c-white);
  margin-bottom: 0.5rem;
}
.timeline__content p {
  font-size: 0.82rem;
  color: var(--c-cream);
  opacity: 0.6;
  line-height: 1.7;
}

/* Process page FAQ (two-column grid layout) */
.faq-grid-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  margin-top: 4rem;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.faq-item__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 0;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-cream);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s;
}
.faq-item__q:hover { color: var(--c-white); }
.faq-item__icon {
  width: 22px; height: 22px;
  border: 1px solid rgba(162,160,146,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.72rem;
  color: var(--c-tan);
  transition: transform 0.35s var(--ease-out), background 0.3s, border-color 0.3s;
}
.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
  background: rgba(162,160,146,0.12);
  border-color: var(--c-tan);
}
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out), padding 0.35s;
}
.faq-item.open .faq-item__a { max-height: 250px; padding-bottom: 1.25rem; }
.faq-item__a p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--c-cream);
  opacity: 0.65;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.why-section { background: var(--c-dark); }
.why__card {
  background: var(--c-black);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255,255,255,0.05);
  transition: background 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.why__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--c-tan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.why__card:hover::before { transform: scaleX(1); }
.why__card:hover {
  background: var(--c-navy);
  transform: translateY(-5px);
}
.why__icon {
  width: 48px; height: 48px;
  margin-bottom: 1.5rem;
  color: var(--c-tan);
}
.why__card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--c-white);
  margin-bottom: 0.75rem;
}
.why__card p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--c-cream);
  opacity: 0.7;
}
.why__num {
  position: absolute;
  top: 1.5rem; right: 1.75rem;
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: rgba(162,160,146,0.06);
  line-height: 1;
  transition: color 0.4s;
}
.why__card:hover .why__num { color: rgba(162,160,146,0.12); }

/* Stats strip */
.stats-strip {
  background: var(--c-black);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats-strip__item {
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 2.5rem);
  border-right: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  transition: background 0.4s;
}
.stats-strip__item:last-child { border-right: none; }
.stats-strip__item:hover { background: rgba(255,255,255,0.02); }
.stats-strip__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--c-white);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stats-strip__sup {
  color: var(--c-tan);
  font-size: 0.55em;
}
.stats-strip__label {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-tan);
}

/* Contact page layout */
.contact-page { background: var(--c-dark); position: relative; }
.contact-page::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%; height: 100%;
  background: var(--c-navy);
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.contact__grid--page {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact__info { display: flex; flex-direction: column; gap: 3rem; }

/* Contact detail items */
.contact__details {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact__detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.88rem;
  color: var(--c-cream);
  transition: color 0.3s;
}
.contact__detail:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.contact__detail--link:hover { color: var(--c-white); }
.detail-icon {
  width: 36px; height: 36px;
  background: rgba(162,160,146,0.1);
  border: 1px solid rgba(162,160,146,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--c-tan);
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}
.contact__detail--link:hover .detail-icon {
  background: rgba(162,160,146,0.2);
  border-color: var(--c-tan);
}
.detail-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-tan);
  margin-bottom: 0.15rem;
}

/* Hours */
.hours-table { margin-top: 1.5rem; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.88rem;
  color: var(--c-cream);
}
.hours-row:first-child { border-top: 1px solid rgba(255,255,255,0.05); }
.hours-row span:last-child {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-tan);
  letter-spacing: 0.05em;
}

/* Showroom */
.showroom-address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--c-cream);
  opacity: 0.75;
  margin-top: 0.5rem;
}

/* Socials */
.contact__socials {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* Form */
.btn--sm { padding: 10px 20px; font-size: 0.7rem; }
.form-header { margin-bottom: 2.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.form-group label {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-tan);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--c-cream);
  transition: border-color 0.3s, background 0.3s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(162,160,146,0.5);
  background: rgba(255,255,255,0.06);
}
.form-group select { cursor: pointer; appearance: none; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.form-check input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--c-tan);
  cursor: pointer;
}
.form-check__label {
  font-size: 0.8rem;
  color: var(--c-cream);
  opacity: 0.65;
  line-height: 1.6;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
}
.form-success {
  display: none;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--c-tan);
  text-align: center;
  margin-top: 1rem;
}
.form-success.show { display: block; }

/* Client testimonials */
.contact-testimonials { background: var(--c-navy); }
.ctestimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}
.ctestimonial-card {
  background: var(--c-black);
  padding: 2.5rem 2rem 2rem;
  position: relative;
  transition: background 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.ctestimonial-card:hover {
  background: var(--c-dark);
  transform: translateY(-4px);
}
.ctestimonial-card__quote {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--c-tan);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: -0.5rem;
}
.ctestimonial-card blockquote {
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--c-cream);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.ctestimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ctestimonial-card__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--c-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--c-tan);
  flex-shrink: 0;
}
.ctestimonial-card__name {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-white);
  display: block;
}
.ctestimonial-card__loc {
  font-size: 0.75rem;
  color: var(--c-tan);
  opacity: 0.75;
  display: block;
}
.stars {
  position: absolute;
  top: 2rem; right: 2rem;
  display: flex;
  gap: 2px;
  color: var(--c-tan);
  font-size: 0.65rem;
  opacity: 0.7;
}

/* Contact FAQ */
.faq-section { background: var(--c-dark); }
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
  margin-top: 4rem;
}
.faq__cta { margin-top: 2rem; }
.faq__list { display: flex; flex-direction: column; gap: 0; }
.faq__item { border-bottom: 1px solid rgba(255,255,255,0.07); }
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 0;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-cream);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s;
}
.faq__q:hover { color: var(--c-white); }
.faq__q-icon {
  width: 24px; height: 24px;
  border: 1px solid rgba(162,160,146,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--c-tan);
  transition: transform 0.35s var(--ease-out), background 0.3s, border-color 0.3s;
}
.faq__item.open .faq__q-icon {
  transform: rotate(45deg);
  background: rgba(162,160,146,0.15);
  border-color: var(--c-tan);
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out), padding 0.35s;
}
.faq__item.open .faq__a { max-height: 300px; padding-bottom: 1.25rem; }
.faq__a p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--c-cream);
  opacity: 0.7;
}

/* Map section */
.map-section { background: var(--c-black); }
.map-placeholder { height: 440px; position: relative; overflow: hidden; }
.map-placeholder__inner {
  position: absolute;
  inset: 0;
  display: flex;
}
.map__slat-visual {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.map-placeholder__label {
  width: 380px;
  background: var(--c-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem;
  border-left: 1px solid rgba(255,255,255,0.06);
}
.map-placeholder__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  letter-spacing: 0.04em;
  color: var(--c-white);
  margin: 0.75rem 0 1rem;
}
.map-placeholder__address {
  font-size: 0.88rem;
  color: var(--c-cream);
  opacity: 0.65;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.map-directions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
  list-style: none;
}
.map-directions li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--c-cream);
  opacity: 0.65;
}
.map-directions li::before {
  content: '—';
  color: var(--c-tan);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ============================================
   RESPONSIVE — CONTACT & INNER PAGES (≤1100px)
   ============================================ */
@media (max-width: 1100px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .ctestimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step-full { grid-template-columns: 60px 1fr; }
  .process-step-full__body,
  .process-step-full--flip .process-step-full__body {
    grid-template-columns: 1fr;
  }
  .process-step-full--flip .process-step-full__text { order: 1; }
  .process-step-full--flip .process-step-full__visual { order: 2; }
  .process-visual { aspect-ratio: 16/7; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .timeline__item { padding: 0 0 2.5rem 2rem; border-left: 1px solid rgba(162,160,146,0.15); }
  .timeline__item:first-child { padding-left: 2rem; }
  .timeline__marker { margin-left: -2rem; margin-bottom: 1.2rem; }
  .faq-grid-wrap { grid-template-columns: 1fr; }
  .commitment-strip__grid { grid-template-columns: 1fr; gap: 1.5px; }
}

/* ============================================
   RESPONSIVE — CONTACT & INNER PAGES (≤640px supplement)
   ============================================ */
@media (max-width: 640px) {
  .process-step-full { grid-template-columns: 1fr; }
  .process-step-full__num { font-size: 2rem; }
  .process-step-full__num::after { display: none; }
  .timeline { grid-template-columns: 1fr; }
  .page-hero__title { font-size: clamp(2.4rem, 10vw, 4rem); }
  .map-placeholder__label { padding: 1.75rem 1.5rem; }
  .ctestimonial-grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .stats-strip__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   SHAKE KEYFRAME (form validation)
   ============================================ */
@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%      { transform: translateX(-6px); }
  40%      { transform: translateX(6px); }
  60%      { transform: translateX(-4px); }
  80%      { transform: translateX(4px); }
}

/* ============================================
   CONTACT PAGE HERO — Content alignment fix
   ============================================ */
.page-hero--contact .page-hero__content {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 80px);
  padding-right: clamp(20px, 5vw, 80px);
}
/* ============================================
   HOME — INTRO SECTION
   ============================================ */
.home-intro {
  background: var(--c-dark);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.home-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}
.home-intro__left { position: sticky; top: 220px; padding-bottom: 2rem; }
.home-intro__left .section-title { margin-bottom: 0; }
.home-intro__divider {
  width: 36px;
  height: 1px;
  background: var(--c-tan);
  margin: 2rem 0;
  opacity: 0.6;
}
.home-intro__body {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: var(--c-cream);
  line-height: 1.9;
  opacity: 0.72;
  margin-bottom: 2.5rem;
}
.home-intro__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 0.5rem;
}
.home-intro__stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.75rem 0 0;
  border-right: 1px solid rgba(255,255,255,0.07);
  padding-right: 1.5rem;
  margin-right: 1.5rem;
}
.home-intro__stat:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
.home-intro__cta-row {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

/* ============================================
   HOME — PRODUCT HIGHLIGHTS
   ============================================ */
.home-products {
  background: var(--c-black);
}
.home-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  margin-top: 3.5rem;
}
.home-products__footer {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

/* ============================================
   HOME — GALLERY STRIP
   ============================================ */
.home-gallery {
  background: var(--c-dark);
  padding-bottom: var(--section-pad);
}
.home-gallery__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 0 clamp(20px, 5vw, 80px);
}
.home-gallery__header .section-title { margin-bottom: 0; }

/* ============================================
   HOME — PROCESS LINK
   ============================================ */
.process__link {
  margin-top: 3rem;
  display: flex;
  justify-content: flex-end;
}

/* ============================================
   HERO RIGHT DECO
   ============================================ */
.hero__right-deco {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 30%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.45;
}
.hero__slat-art { width: 100%; height: 100%; }

/* ============================================
   HOME — TESTIMONIAL STRIP
   ============================================ */
.home-testimonial {
  background: var(--c-navy);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: clamp(60px, 8vw, 100px) 0;
}
.home-testimonial__inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: center;
}
.home-testimonial__label-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.home-testimonial__stars {
  color: var(--c-tan);
  font-size: 0.7rem;
  letter-spacing: 4px;
  opacity: 0.8;
}
.home-testimonial__quote {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--c-tan);
  opacity: 0.2;
  line-height: 1;
}
.home-testimonial blockquote {
  font-family: var(--font-ui);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  line-height: 1.85;
  color: var(--c-cream);
  font-style: italic;
  margin-bottom: 2rem;
}
.home-testimonial cite {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-tan);
  font-style: normal;
}

/* ============================================
   RESPONSIVE — HOME SECTIONS
   ============================================ */
@media (max-width: 1100px) {
  .home-intro__grid { grid-template-columns: 1fr 1.2fr; }
  .home-intro__left { position: static; }
}
@media (max-width: 1024px) {
  .home-intro__grid { grid-template-columns: 1fr; gap: 3rem; }
  .home-intro__left { position: static; }
  .home-products__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__right-deco { display: none; }
  .home-testimonial__inner { grid-template-columns: 1fr; gap: 2rem; }
  .home-testimonial__label-col { flex-direction: row; align-items: center; }
}
@media (max-width: 768px) {
  .home-products__grid { grid-template-columns: repeat(2, 1fr); }
  .home-gallery__header { flex-direction: column; align-items: flex-start; padding: 0 clamp(20px, 5vw, 40px); }
  .home-intro__stats { grid-template-columns: 1fr 1fr 1fr; }
  .home-intro__stat { padding-right: 1rem; margin-right: 1rem; }
  .home-intro__cta-row { flex-direction: column; }
  .home-testimonial__label-col { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 540px) {
  .home-products__grid { grid-template-columns: 1fr; }
  .home-intro__stats { grid-template-columns: 1fr; border: none; }
  .home-intro__stat { border-right: none; padding: 1.25rem 0 0; margin: 0; border-top: 1px solid rgba(255,255,255,0.07); }
}

/* ============================================
   UNIVERSAL OVERFLOW & TOUCH SAFETY
   ============================================ */

/* Prevent any element causing horizontal scroll */
.container,
.nav__inner,
.hero__content,
.page-hero__content,
.section,
.footer__top,
.marquee {
  max-width: 100%;
}

/* Filter bar — better wrapping on mobile */
@media (max-width: 480px) {
  .filter-bar { gap: 0.4rem; }
  .filter-btn {
    padding: 8px 14px;
    font-size: 0.68rem;
  }
}

/* Ensure process__step doesn't overflow on narrow screens */
@media (max-width: 400px) {
  .process__step { padding: 1.5rem 1.25rem; }
  .hero__title { font-size: clamp(2.5rem, 11vw, 4rem); }
  .nav__brand { font-size: 0.95rem; }
  .btn { padding: 12px 22px; font-size: 0.74rem; }
}

/* Ensure footer nav columns don't overflow */
@media (max-width: 768px) {
  .footer__nav { flex-wrap: wrap; }
  .footer__brand { max-width: 100%; }
}

/* Fix contact-page hero on all inner pages — consistent min-height */
@media (max-width: 768px) {
  .page-hero__content {
    padding-top: clamp(60px, 8vw, 100px);
    padding-bottom: clamp(40px, 6vw, 70px);
  }
}

/* ============================================
   CONTACT PAGE — MOBILE LAYOUT
   Full single-column stack; form on top, info below
   ============================================ */

/* --- ≤1024px: collapse the two-column grid --- */
@media (max-width: 1024px) {
  /* Remove the angled navy background — it only works with side-by-side layout */
  .contact-page::before { display: none; }

  .contact__grid--page {
    grid-template-columns: 1fr;
    gap: clamp(3rem, 6vw, 5rem);
  }

  /* Put the form first so the primary CTA is immediately visible */
  .contact__form  { order: -1; }
  .contact__info  { order: 1; gap: 2.5rem; }
}

/* --- ≤768px: tighten spacing and font sizes --- */
@media (max-width: 768px) {
  /* Form header */
  .contact__form .section-title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .contact__form .body-text { font-size: 0.88rem; margin-bottom: 0; }
  .form-header { margin-bottom: 1.75rem; }

  /* All form-row pairs → single column */
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Give form fields more breathing room on touch screens */
  .form-group { margin-bottom: 1rem; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 13px 14px;
    font-size: 1rem;          /* prevents iOS zoom on focus */
  }
  .form-group textarea { min-height: 100px; }

  /* Submit button — already full-width via .btn--full, just ensure it */
  .btn--full { width: 100%; }

  /* Reach Us — info blocks */
  .contact__info { gap: 2rem; }
  .contact-info-block { padding-bottom: 0; }

  /* Contact details list */
  .contact__detail {
    padding: 0.9rem 0;
    font-size: 0.9rem;
  }
  .detail-icon {
    width: 32px; height: 32px;
    font-size: 0.8rem;
    flex-shrink: 0;
  }

  /* Hours table */
  .hours-row {
    font-size: 0.85rem;
    padding: 0.7rem 0;
    flex-wrap: wrap;
    gap: 0.25rem;
  }
  .hours-row span:last-child { font-size: 0.75rem; }

  /* Showroom address */
  .showroom-address { font-size: 0.88rem; }

  /* Social buttons — stack on very small screens */
  .contact__socials { gap: 0.5rem; }
  .contact__socials .btn--sm { flex: 1 1 auto; text-align: center; }

  /* Section label spacing */
  .contact-info-block .section-label { margin-bottom: 0.75rem; }

  /* Why grid — already 2-col at 768px, keep it */
  .why__grid { gap: 1.5px; }

  /* Stats strip borders reset for 2-col layout */
  .stats-strip__item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.06); }
  .stats-strip__item:nth-child(even) { border-right: none; }
  .stats-strip__item:nth-child(3),
  .stats-strip__item:nth-child(4)    { border-bottom: none; }
}

/* --- ≤540px: single column everything --- */
@media (max-width: 540px) {
  /* Why grid → 1 col */
  .why__grid { grid-template-columns: 1fr; }

  /* Stats strip → 2 col still fine, but squish the padding */
  .stats-strip__item { padding: 1.5rem 1rem; }
  .stats-strip__num  { font-size: clamp(2rem, 7vw, 3rem); }

  /* Form: reduce container padding so nothing clips */
  .contact-page.section { padding-left: 0; padding-right: 0; }

  /* Social buttons full-width */
  .contact__socials { flex-direction: column; }
  .contact__socials .btn--sm { width: 100%; justify-content: center; }

  /* Map label padding */
  .map-placeholder__label { padding: 1.75rem 1.25rem; }

  /* FAQ section label column */
  .faq__intro .btn { width: 100%; justify-content: center; }
}

/* --- ≤400px: very narrow phones --- */
@media (max-width: 400px) {
  .contact__grid--page { gap: 2.5rem; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 1rem; }
  .why__card { padding: 2rem 1.5rem; }
  .contact__detail { gap: 0.75rem; }
}