/* ==========================================================
   Wudless Website — Styles  (Light + Dark theme, Parallax)
   ========================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── CSS Custom Properties — Light (default) ─────────────── */
:root {
  --bg:         #FAFAF8;
  --bg-2:       #F3EDE4;
  --bg-3:       #EAE0D3;
  --bg-card:    #FFFFFF;
  --text:       #1C1916;
  --text-2:     #5C5448;
  --text-3:     #9A8E82;
  --gold:       #B07D3C;
  --gold-2:     #C99D5C;
  --gold-btn:   #B07D3C;
  --gold-hover: #8C6028;
  --gold-bg:    rgba(176,125,60,.09);
  --gold-bdr:   rgba(176,125,60,.25);
  --border:     rgba(28,25,22,.08);
  --shadow:     0 2px 20px rgba(28,25,22,.06);
  --shadow-md:  0 6px 30px rgba(28,25,22,.10);
  --shadow-lg:  0 16px 50px rgba(28,25,22,.14);
  --nav-bg:     rgba(250,250,248,.96);
  --hero-ov:    rgba(10,8,6,.52);
  --nav-text:   #1C1916;
  --footer-bg:  #1C1916;
  --footer-txt: rgba(255,255,255,.65);
  --footer-bdr: rgba(255,255,255,.08);
  --nav-h:      72px;
  --radius:     14px;
  --radius-sm:  8px;
  --trans:      .28s cubic-bezier(.4,0,.2,1);
  --container:  1200px;
}

/* ── Dark Theme ───────────────────────────────────────────── */
[data-theme="dark"] {
  --bg:         #0E0C0A;
  --bg-2:       #161410;
  --bg-3:       #1E1C18;
  --bg-card:    #1A1814;
  --text:       #F5F0EB;
  --text-2:     #B0A898;
  --text-3:     #7A7268;
  --gold:       #C9A96E;
  --gold-2:     #D4B886;
  --gold-btn:   #C9A96E;
  --gold-hover: #DFCB99;
  --gold-bg:    rgba(201,169,110,.08);
  --gold-bdr:   rgba(201,169,110,.22);
  --border:     rgba(255,255,255,.07);
  --shadow:     0 2px 20px rgba(0,0,0,.3);
  --shadow-md:  0 6px 30px rgba(0,0,0,.4);
  --shadow-lg:  0 16px 50px rgba(0,0,0,.55);
  --nav-bg:     rgba(14,12,10,.96);
  --hero-ov:    rgba(0,0,0,.58);
  --nav-text:   #F5F0EB;
  --footer-bg:  #0E0C0A;
  --footer-txt: rgba(255,255,255,.5);
  --footer-bdr: rgba(255,255,255,.06);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background var(--trans), color var(--trans);
}

/* ── Layout ───────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 40px; }
.w-page { display: none; }
.w-page.active { display: block; }
section { padding: 96px 0; }

/* ── Section colors ───────────────────────────────────────── */
.section-light { background: var(--bg); }
.section-cream { background: var(--bg-2); }
.section-dark  { background: var(--bg-3); }

/* ── Parallax containers ──────────────────────────────────── */
.parallax-bg {
  position: absolute;
  inset: -30% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
  transition: none !important;
}

/* ── Hero bg cross-fade layers ───────────────────────────────
   Two stacked parallax divs; CSS opacity handles the
   slow smooth cross-fade when theme toggles.
   ID selector (1,0,0) beats .parallax-bg class (0,1,0)
   so the !important opacity transition wins.              ── */
#hero-parallax-bg-light,
#hero-parallax-bg-dark {
  transition: opacity 0.7s ease !important;
}
#hero-parallax-bg-dark {
  opacity: 0;
}
[data-theme="dark"] #hero-parallax-bg-light {
  opacity: 0;
}
[data-theme="dark"] #hero-parallax-bg-dark {
  opacity: 1;
}

.two-col-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.parallax-img-inner {
  position: absolute;
  inset: -15% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
  border-radius: var(--radius);
  transition: none !important;
}

/* ── Navigation ───────────────────────────────────────────── */
.w-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background var(--trans), box-shadow var(--trans), border-color var(--trans);
}

.w-header.scrolled { box-shadow: var(--shadow-md); }

.w-nav { height: 100%; display: flex; align-items: center; gap: 28px; }

.w-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.w-logo img { height: 52px; object-fit: contain; }
#nav-logo-text {
  font-size: 24px; font-weight: 800;
  color: var(--text); letter-spacing: -.5px;
  transition: color var(--trans);
}

.w-nav-links {
  display: flex; align-items: center; gap: 2px;
  flex: 1; justify-content: center;
}

.w-nav-link {
  padding: 8px 13px;
  color: var(--text-2);
  text-decoration: none; font-size: 14px; font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--trans);
  display: flex; align-items: center; gap: 3px;
  white-space: nowrap; cursor: pointer; border: none; background: none;
}
.w-nav-link:hover, .w-nav-link.active { color: var(--text); background: var(--gold-bg); }
.w-nav-link.active { color: var(--gold); }

/* On desktop, .w-nav-link-row is invisible to layout; arrow button hidden */
.w-nav-link-row { display: contents; }
.w-dropdown-arrow { display: none; }

.w-nav-dropdown { position: relative; }
.w-nav-link-drop svg { width: 14px; height: 14px; transition: transform .2s; }
.w-nav-dropdown:hover .w-nav-link-drop svg { transform: rotate(180deg); }

.w-dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 220px;
  opacity: 0; visibility: hidden;
  transition: opacity .2s, transform .2s, visibility .2s;
  box-shadow: var(--shadow-lg);
}
.w-nav-dropdown:hover .w-dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.w-dropdown-item {
  display: block; padding: 9px 14px;
  color: var(--text-2); text-decoration: none;
  font-size: 13.5px; font-weight: 500;
  border-radius: 6px; transition: all .15s; cursor: pointer;
}
.w-dropdown-item:hover { background: var(--gold-bg); color: var(--gold); }

.w-nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Theme Toggle */
.theme-toggle {
  width: 38px; height: 38px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-bdr);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--gold);
  transition: all var(--trans);
}
.theme-toggle:hover { background: var(--gold); color: #fff; }
.theme-toggle svg { width: 16px; height: 16px; }
[data-theme="light"] .icon-moon { display: none; }
[data-theme="dark"]  .icon-sun  { display: none; }
[data-theme="dark"]  .icon-moon { display: block; }

/* Buttons */
.btn-gold {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 13px 28px;
  background: var(--gold-btn); color: #fff;
  font-size: 14px; font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none; border: none; cursor: pointer;
  transition: background var(--trans), transform .12s, box-shadow var(--trans);
}
.btn-gold:hover { background: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(176,125,60,.3); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 13px 28px;
  background: rgba(255,255,255,.12); color: #fff;
  font-size: 14px; font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none; border: 1.5px solid rgba(255,255,255,.3);
  cursor: pointer; transition: all var(--trans);
}
.btn-ghost:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.6); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 24px;
  background: transparent; color: var(--gold);
  font-size: 14px; font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none; border: 1.5px solid var(--gold-bdr);
  cursor: pointer; transition: all var(--trans);
}
.btn-outline:hover { background: var(--gold-bg); border-color: var(--gold); }

/* Nav CTA Button */
.w-cta-btn {
  display: inline-flex; align-items: center;
  padding: 9px 20px;
  background: var(--gold-btn); color: #fff;
  font-size: 13px; font-weight: 600; letter-spacing: .3px;
  border-radius: 6px; text-decoration: none; white-space: nowrap;
  border: none; cursor: pointer;
  transition: background var(--trans), transform .12s, box-shadow var(--trans);
}
.w-cta-btn:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(176,125,60,.35);
  color: #fff;
}

/* Hamburger */
.w-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.w-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all .2s;
}

/* ── Section typography ───────────────────────────────────── */
.section-badge {
  display: inline-block;
  padding: 5px 14px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-bdr);
  color: var(--gold);
  font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  border-radius: 100px; margin-bottom: 14px;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800; color: var(--text);
  line-height: 1.18; letter-spacing: -.5px;
  transition: color var(--trans);
}

.section-desc {
  color: var(--text-3); font-size: 15px;
  margin-top: 12px; max-width: 580px;
}

.section-body {
  color: var(--text-2); font-size: 15px;
  line-height: 1.8; margin: 16px 0 24px;
  transition: color var(--trans);
}

.section-header-center { text-align: center; margin-bottom: 52px; }
.section-header-center .section-title,
.section-header-center .section-desc { margin-left: auto; margin-right: auto; }

/* ── Scroll Reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Stagger reveal for grid items */
.process-card:nth-child(2)  .reveal, .process-grid > *:nth-child(2)  { transition-delay: .08s; }
.process-grid > *:nth-child(3)  { transition-delay: .16s; }
.process-grid > *:nth-child(4)  { transition-delay: .24s; }
.process-grid > *:nth-child(5)  { transition-delay: .32s; }
.process-grid > *:nth-child(6)  { transition-delay: .40s; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: calc(var(--nav-h) + 60px) 40px 100px;
  overflow: hidden; text-align: center;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: var(--hero-ov);
  transition: background var(--trans);
}

.hero-content { position: relative; z-index: 2; max-width: 760px; }

.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(176,125,60,.2);
  border: 1px solid rgba(176,125,60,.4);
  color: #e8c87a; font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  border-radius: 100px; margin-bottom: 20px;
}

.hero-heading {
  font-size: clamp(36px, 7.5vw, 84px);
  font-weight: 900; color: #fff; line-height: 1.1;
  letter-spacing: -2px; margin-bottom: 22px;
}

.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,.78);
  max-width: 540px; margin: 0 auto 40px; line-height: 1.7;
}

.hero-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,.45);
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 28px; height: 28px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Page hero ────────────────────────────────────────────── */
.page-hero {
  min-height: 340px; position: relative;
  display: flex; align-items: flex-end;
  overflow: hidden;
  padding: calc(var(--nav-h) + 48px) 0 52px;
}

.dark-page-hero { background: var(--bg-3); }

.page-hero-content { position: relative; z-index: 2; }
.page-hero-content h1 {
  font-size: clamp(32px, 5vw, 56px); font-weight: 900;
  color: #fff; letter-spacing: -1px; line-height: 1.1; margin-bottom: 10px;
}
.page-hero-content p { font-size: 16px; color: rgba(255,255,255,.65); }

/* ── Two-column ───────────────────────────────────────────── */
.two-col-section {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.reverse-col { direction: rtl; }
.reverse-col > * { direction: ltr; }

/* ── About snippet ────────────────────────────────────────── */
.about-snippet-section .two-col-text { padding: 20px 0; }

/* ── Stats ────────────────────────────────────────────────── */
.stats-section { padding: 64px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px; background: var(--border);
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
}
.stat-item {
  text-align: center; padding: 44px 20px;
  background: var(--bg-3);
  transition: background var(--trans);
}
.stat-value {
  font-size: clamp(34px, 4vw, 52px); font-weight: 900;
  color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.stat-label {
  font-size: 12.5px; color: var(--text-3);
  text-transform: uppercase; letter-spacing: .8px; font-weight: 600;
}

/* ── Process ──────────────────────────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.process-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans), background var(--trans);
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease, border-color .3s, box-shadow .3s, background .3s;
}
.process-card.visible { opacity: 1; transform: translateY(0); }
.process-card:hover { border-color: var(--gold-bdr); box-shadow: var(--shadow-md); transform: translateY(-4px); }

.process-num { font-size: 11px; font-weight: 800; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
.process-icon { font-size: 34px; margin-bottom: 14px; }
.process-title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.process-desc { font-size: 13.5px; color: var(--text-3); line-height: 1.65; }

/* ── Products teaser ──────────────────────────────────────── */
.products-teaser-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.products-teaser-grid .product-teaser-card {
  flex: 0 0 calc(25% - 12px);
  min-width: 200px;
  max-width: 340px;
}

.product-teaser-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; cursor: pointer;
  transition: all var(--trans); text-decoration: none;
  opacity: 0; transform: translateY(24px);
}
.product-teaser-card.visible { opacity: 1; transform: translateY(0); }
.product-teaser-card:hover { border-color: var(--gold-bdr); transform: translateY(-4px); box-shadow: var(--shadow-md); }

.product-teaser-img {
  height: 180px; overflow: hidden;
  background: var(--bg-3);
  display: flex; align-items: center; justify-content: center;
}
.product-teaser-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-teaser-card:hover .product-teaser-img img { transform: scale(1.06); }
.product-teaser-img svg { width: 48px; height: 48px; opacity: .15; color: var(--text-3); }

.product-teaser-body { padding: 16px; }
.product-teaser-name { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.product-teaser-tag { font-size: 12px; color: var(--gold); font-weight: 600; }

/* ── Finishes ─────────────────────────────────────────────── */
.finishes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.finish-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 32px 16px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: center;
  cursor: default;
  transition: all .25s ease;
  opacity: 0; transform: translateY(20px);
}
.finish-item.visible { opacity: 1; transform: translateY(0); }
.finish-item:hover {
  border-color: var(--gold-bdr);
  box-shadow: 0 6px 28px rgba(0,0,0,.08);
  transform: translateY(-4px);
}

.finish-icon {
  width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  font-size: 34px;
  background: var(--bg-3);
  border-radius: 50%;
  border: 1.5px solid var(--border);
  transition: background .25s, border-color .25s;
  flex-shrink: 0;
}
.finish-item:hover .finish-icon {
  background: #f9f3e8;
  border-color: var(--gold-bdr);
}

.finish-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .01em;
  line-height: 1.3;
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: all var(--trans);
  opacity: 0; transform: translateY(20px);
}
.testimonial-card.visible { opacity: 1; transform: translateY(0); }
.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold-bdr); }

.testimonial-stars { color: #E8A020; font-size: 16px; margin-bottom: 12px; }
.testimonial-text { font-size: 15px; color: var(--text-2); line-height: 1.75; font-style: italic; margin-bottom: 18px; }
.testimonial-author { font-size: 14px; font-weight: 700; color: var(--text); }
.testimonial-loc { font-size: 12px; color: var(--text-3); margin-top: 3px; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color var(--trans), background var(--trans);
  opacity: 0; transform: translateY(16px);
}
.faq-item.visible { opacity: 1; transform: translateY(0); }
.faq-item.open { border-color: var(--gold-bdr); }

.faq-question {
  padding: 18px 22px; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 15px; font-weight: 600; color: var(--text);
  transition: background .15s; user-select: none;
}
.faq-question:hover { background: var(--gold-bg); }
.faq-arrow { color: var(--gold); font-size: 22px; transition: transform .22s; flex-shrink: 0; line-height: 1; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-answer {
  display: none; padding: 0 22px 18px;
  font-size: 14px; color: var(--text-2); line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  position: relative; padding: 110px 0;
  overflow: hidden; text-align: center;
  background: var(--bg-3);
}
.cta-inner { position: relative; z-index: 2; }
.cta-inner h2 { font-size: clamp(26px, 4vw, 44px); font-weight: 800; color: #fff; margin-bottom: 14px; }
.cta-inner p { color: rgba(255,255,255,.65); font-size: 16px; margin-bottom: 36px; }

/* ── About page ───────────────────────────────────────────── */
.about-body-text p { margin-bottom: 14px; color: var(--text-2); font-size: 15px; line-height: 1.8; }

.philosophy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.philosophy-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 34px 28px; text-align: center;
  transition: all var(--trans);
  opacity: 0; transform: translateY(24px);
}
.philosophy-card.visible { opacity: 1; transform: translateY(0); }
.philosophy-card:hover { border-color: var(--gold-bdr); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.philosophy-icon { font-size: 40px; margin-bottom: 16px; }
.philosophy-title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.philosophy-desc { font-size: 14px; color: var(--text-3); line-height: 1.7; }

.tiers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tier-card {
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  transition: all var(--trans);
  opacity: 0; transform: translateY(24px);
}
.tier-card.visible { opacity: 1; transform: translateY(0); }
.tier-card:hover { border-color: var(--gold-bdr); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tier-card.featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold-bdr); }
.tier-card-name { font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.tier-card-material { font-size: 13px; color: var(--gold); margin-bottom: 16px; font-weight: 600; }
.tier-card-warranty { font-size: 30px; font-weight: 900; color: var(--text); margin-bottom: 2px; }
.tier-card-warranty-label { font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 20px; }
.tier-card-features { list-style: none; }
.tier-card-features li {
  font-size: 13.5px; color: var(--text-2);
  padding: 7px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.tier-card-features li::before { content: '✓'; color: var(--gold); font-weight: 700; }
.tier-card-price { font-size: 14px; color: var(--gold); font-weight: 700; margin-top: 18px; }
/* ── B2B Partner Cards ────────────────────────────────────── */
#b2b-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.b2b-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  flex: 0 0 calc(33.33% - 14px);
  max-width: 360px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease, border-color var(--trans), box-shadow var(--trans);
}
.b2b-card.visible { opacity: 1; transform: translateY(0); }
.b2b-card:hover { border-color: var(--gold-bdr); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.b2b-card.b2b-card-featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold-bdr); }
.b2b-card-name {
  font-size: 26px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -.4px;
  line-height: 1.15;
}
.b2b-card-desc {
  font-size: 13.5px;
  color: var(--text-3);
  line-height: 1.65;
  flex: 1;
}
.b2b-card-cta {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: .2px;
}
.b2b-card-cta:hover { text-decoration: underline; }
@media (max-width: 768px) {
  .b2b-card { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 480px) {
  .b2b-card { flex: 0 0 100%; max-width: 100%; }
}

/* ── Products full page ───────────────────────────────────── */
.products-full-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.product-full-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; cursor: pointer;
  transition: all var(--trans); text-decoration: none;
  opacity: 0; transform: translateY(24px);
}
.product-full-card.visible { opacity: 1; transform: translateY(0); }
.product-full-card:hover { border-color: var(--gold-bdr); transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.product-full-img { height: 280px; overflow: hidden; background: var(--bg-3); display: flex; align-items: center; justify-content: center; }
.product-full-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.product-full-card:hover .product-full-img img { transform: scale(1.05); }
.product-full-img svg { width: 64px; height: 64px; opacity: .12; color: var(--text-3); }

.product-full-body { padding: 24px; }
.product-full-tag { font-size: 11px; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.product-full-name { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.product-full-desc { font-size: 13.5px; color: var(--text-3); line-height: 1.65; margin-bottom: 16px; }
.product-full-link { font-size: 13px; color: var(--gold); font-weight: 600; }

/* ── Product detail ───────────────────────────────────────── */
.pd-features { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 24px; }
.pd-feature { display: flex; gap: 12px; align-items: flex-start; }
.pd-feature-icon { font-size: 24px; flex-shrink: 0; }
.pd-feature-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.pd-feature-desc { font-size: 12.5px; color: var(--text-3); line-height: 1.55; }

.product-gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.product-gallery-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); cursor: pointer; transition: transform var(--trans); border: 1px solid var(--border); }
.product-gallery-grid img:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }

/* ── Projects ─────────────────────────────────────────────── */
.projects-filter { display: flex; gap: 10px; margin-bottom: 36px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 20px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: 100px;
  color: var(--text-2); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all var(--trans);
}
.filter-btn:hover, .filter-btn.active { background: var(--gold); color: #fff; border-color: var(--gold); }

.projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 24px; }
.project-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: all var(--trans);
  opacity: 0; transform: translateY(24px);
}
.project-card.visible { opacity: 1; transform: translateY(0); }
.project-card:hover { border-color: var(--gold-bdr); transform: translateY(-4px); box-shadow: var(--shadow-md); }

.project-img { position: relative; height: 240px; overflow: hidden; background: var(--bg-3); display: flex; align-items: center; justify-content: center; }
.project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.project-card:hover .project-img img { transform: scale(1.05); }
.project-img svg { width: 64px; height: 64px; opacity: .12; color: var(--text-3); }

.project-body { padding: 20px; }
.project-featured-badge { display: inline-block; padding: 3px 10px; background: var(--gold-bg); color: var(--gold); border-radius: 100px; font-size: 11px; font-weight: 700; margin-bottom: 8px; }
.project-title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.project-meta { display: flex; gap: 12px; flex-wrap: wrap; font-size: 12px; color: var(--text-3); margin-bottom: 8px; }
.project-desc { font-size: 13.5px; color: var(--text-2); line-height: 1.65; }

/* ── Blog ─────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.blog-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; cursor: pointer;
  transition: all var(--trans);
  opacity: 0; transform: translateY(24px);
}
.blog-card.visible { opacity: 1; transform: translateY(0); }
.blog-card:hover { border-color: var(--gold-bdr); transform: translateY(-4px); box-shadow: var(--shadow-md); }

.blog-img { height: 200px; overflow: hidden; background: var(--bg-3); display: flex; align-items: center; justify-content: center; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-img svg { width: 64px; height: 64px; opacity: .12; color: var(--text-3); }

.blog-body { padding: 20px; }
.blog-meta { display: flex; gap: 12px; font-size: 12px; color: var(--text-3); margin-bottom: 10px; }
.blog-category { color: var(--gold); font-weight: 700; }
.blog-title { font-size: 17px; font-weight: 700; color: var(--text); line-height: 1.4; margin-bottom: 10px; }
.blog-excerpt { font-size: 13.5px; color: var(--text-2); line-height: 1.65; margin-bottom: 14px; }
.blog-read-more { font-size: 13px; color: var(--gold); font-weight: 600; }

/* ── Blog post ────────────────────────────────────────────── */
.blog-post-hero {
  min-height: 400px; position: relative;
  display: flex; align-items: flex-end; overflow: hidden;
  padding: calc(var(--nav-h) + 48px) 0 52px;
}
.blog-post-hero-content { position: relative; z-index: 2; }
.blog-meta-top { font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 12px; }
.blog-meta-top span { margin-right: 14px; }
.blog-post-hero-content h1 { font-size: clamp(26px, 4vw, 50px); font-weight: 900; color: #fff; max-width: 840px; line-height: 1.18; }
.blog-post-content { font-size: 16px; line-height: 1.9; color: var(--text-2); }
.blog-post-content p { margin-bottom: 20px; }
.blog-post-content h2 { font-size: 22px; font-weight: 700; color: var(--text); margin: 34px 0 12px; }
.blog-post-content strong { color: var(--text); font-weight: 700; }

/* Inline images inside blog post content */
.blog-inline-img {
  margin: 32px 0;
  border-radius: 10px;
  overflow: hidden;
}
.blog-inline-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
.blog-inline-img figcaption {
  font-size: 13px;
  color: var(--text-3);
  text-align: center;
  margin-top: 10px;
  font-style: italic;
}

/* ── Contact ──────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: flex-start; }
.contact-form-wrap h3 { font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.contact-form-note { font-size: 14px; color: var(--text-3); margin-bottom: 28px; line-height: 1.6; }

.c-field { margin-bottom: 16px; }
.c-field label { display: block; font-size: 11.5px; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 7px; }
.c-field input, .c-field textarea, .c-field select {
  width: 100%; padding: 11px 14px;
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text);
  font-size: 14px; outline: none; font-family: inherit; resize: vertical;
  transition: border-color var(--trans), background var(--trans), color var(--trans);
}
.c-field input:focus, .c-field textarea:focus, .c-field select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-bg); }
.c-field select option { background: var(--bg-card); color: var(--text); }

.contact-office { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; margin-bottom: 20px; transition: background var(--trans), border-color var(--trans); }
.contact-office-name { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 18px; }
.contact-info-item { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.contact-info-icon { font-size: 18px; flex-shrink: 0; }
.contact-info-text { font-size: 13.5px; color: var(--text-2); line-height: 1.6; }
.contact-info-text a { color: var(--gold); text-decoration: none; }

/* ── Footer ───────────────────────────────────────────────── */
.w-footer { background: var(--footer-bg); border-top: 1px solid var(--footer-bdr); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding: 72px 40px 52px; }
.footer-brand-name { font-size: 24px; font-weight: 800; color: #fff; letter-spacing: -.5px; }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; }
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; justify-content: flex-start; margin-left: -32px; }
.footer-logo-wrap img { height: 64px; object-fit: contain; display: block; }
.footer-tagline { font-size: 13px; color: var(--footer-txt); line-height: 1.6; margin-bottom: 22px; text-align: left; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,.07); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--footer-txt); text-decoration: none; font-size: 15px; transition: all var(--trans); }
.footer-social a:hover { background: var(--gold); color: #fff; }
.footer-links h4, .footer-contact h4 { font-size: 11.5px; font-weight: 700; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--footer-txt); text-decoration: none; font-size: 13.5px; transition: color var(--trans); cursor: pointer; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; color: var(--footer-txt); font-size: 13.5px; line-height: 1.6; }
.footer-contact-item a { color: var(--footer-txt); text-decoration: none; }
.footer-bottom { border-top: 1px solid var(--footer-bdr); padding: 18px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,.25); padding: 0 40px; }
.admin-link { color: rgba(255,255,255,.15); text-decoration: none; font-size: 11px; }
.admin-link:hover { color: rgba(255,255,255,.35); }

/* ── Project Detail ───────────────────────────────────────── */
.project-video-badge {
  position: absolute; bottom: 10px; left: 10px;
  background: rgba(0,0,0,.72); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .5px;
  padding: 4px 10px; border-radius: 20px;
}
.project-view-btn {
  margin-top: 14px;
  font-size: 13px; font-weight: 600; color: var(--gold);
  letter-spacing: .3px;
}

/* Photo gallery on detail page */
.pd-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.pd-gallery-item {
  border-radius: 10px; overflow: hidden;
  aspect-ratio: 4/3; background: var(--bg-2);
}
.pd-gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.pd-gallery-item:hover img { transform: scale(1.04); }

/* Video grid — landscape (16:9) and portrait/reel (9:16) */
.pd-videos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  align-items: start;
}

/* Landscape 16:9 */
.pd-video-item { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-md); }
.video-embed-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0; overflow: hidden; background: #000;
}
.video-embed-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: none;
}

/* Portrait / Reel (9:16) — phone-frame style */
.pd-video-item.portrait {
  max-width: 320px;
  margin: 0 auto;
}
.video-embed-wrap.portrait {
  padding-bottom: 177.78%; /* 9:16 */
  border-radius: 16px;
  box-shadow: 0 0 0 6px #111, 0 20px 50px rgba(0,0,0,.5);
}

/* ── WhatsApp ─────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 56px; height: 56px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  z-index: 999; box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform var(--trans), box-shadow var(--trans);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 1024px)
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .stats-grid          { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
  .products-teaser-grid .product-teaser-card { flex: 0 0 calc(50% - 8px); }
  .finishes-grid       { grid-template-columns: repeat(3, 1fr); }
  .process-grid        { grid-template-columns: repeat(2, 1fr); }
  .footer-grid         { grid-template-columns: 1fr 1fr; gap: 36px; }
  .products-full-grid  { grid-template-columns: 1fr; }
  .tiers-grid          { grid-template-columns: 1fr; }
  .philosophy-grid     { grid-template-columns: 1fr; }
}

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

  /* Layout */
  .container  { padding: 0 18px; }
  section     { padding: 56px 0; }

  /* ── Navigation ─────────────────────────────── */
  .w-logo img { height: 40px; }
  #nav-logo-text { font-size: 20px; }

  /* Logo left, controls right — no gap trick */
  .w-nav { gap: 0; justify-content: space-between; padding: 0; }
  .w-nav-right { margin-left: auto; gap: 6px; }

  /* Hide desktop CTA text button — lives inside mobile menu */
  .w-cta-btn { display: none; }

  /* Hamburger — 44×44 tap target, always visible */
  .w-hamburger {
    display: flex !important;
    flex-direction: column; gap: 5px;
    width: 44px; height: 44px; padding: 0;
    align-items: center; justify-content: center;
    background: none; border: none; cursor: pointer;
  }
  .w-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

  /* ── Mobile nav drawer ────────────────────── */
  .w-nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    height: calc(100dvh - var(--nav-h));
    background: var(--bg);
    padding: 12px 0 32px;
    z-index: 1001;
    overflow-y: auto;
    border-top: 2px solid var(--gold-bdr);
    box-shadow: 0 12px 40px rgba(0,0,0,.2);
  }
  .w-nav-links.open { display: flex; }

  /* Each nav link — full width, large tap target */
  .w-nav-link {
    width: 100%;
    font-size: 16px; font-weight: 600; color: var(--text);
    padding: 14px 24px;
    border-radius: 0; border: none; background: none;
    text-align: left;
    border-bottom: 1px solid var(--border);
  }
  .w-nav-link:hover, .w-nav-link.active {
    background: var(--gold-bg); color: var(--gold);
  }

  /* Products dropdown — collapsed by default, expanded on .mobile-open */
  .w-nav-dropdown { width: 100%; }
  .w-nav-link-row {
    display: flex; align-items: center;
    border-bottom: 1px solid var(--border);
  }
  .w-nav-link-row .w-nav-link {
    flex: 1; border-bottom: none;
  }
  .w-dropdown-arrow {
    display: flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; flex-shrink: 0;
    background: none; border: none; cursor: pointer;
    color: var(--text-2);
  }
  .w-dropdown-arrow svg {
    width: 18px; height: 18px;
    transition: transform .25s ease;
  }
  .w-nav-dropdown.mobile-open .w-dropdown-arrow svg { transform: rotate(180deg); }
  .w-dropdown-menu {
    position: static; transform: none !important;
    opacity: 1; visibility: visible;
    background: var(--bg-2);
    border: none; border-radius: 0;
    padding: 4px 0; margin: 0;
    box-shadow: none; min-width: unset;
    display: none;
  }
  .w-nav-dropdown.mobile-open .w-dropdown-menu { display: block; }
  .w-dropdown-item {
    padding: 11px 24px 11px 40px;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
  }
  .w-nav-dropdown:hover .w-dropdown-menu { transform: none; }

  /* Book Consultation CTA at bottom of menu */
  .mobile-cta-wrap {
    display: block !important;
    padding: 20px 24px 0;
    margin-top: 8px;
  }
  .mobile-cta-wrap .w-cta-btn {
    display: flex !important;
    justify-content: center;
    padding: 15px 24px;
    font-size: 15px;
    border-radius: 8px;
    width: 100%;
  }

  /* ── Buttons — bigger tap targets ──────────── */
  .btn-gold, .btn-ghost {
    padding: 14px 28px; font-size: 14px;
    width: 100%; justify-content: center;
  }
  .btn-outline { padding: 13px 24px; font-size: 14px; }

  /* Hero action buttons stack vertically */
  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero-actions .btn-gold,
  .hero-actions .btn-ghost { max-width: 320px; }

  /* ── Hero ───────────────────────────────────── */
  .hero-section { padding: calc(var(--nav-h) + 32px) 18px 64px; }
  .hero-heading { letter-spacing: -1px; }

  /* ── Page hero ──────────────────────────────── */
  .page-hero { padding: calc(var(--nav-h) + 32px) 0 36px; min-height: 260px; }
  .page-hero-content h1 { font-size: clamp(24px, 5vw, 40px); }
  .page-hero-content p  { font-size: 14px; }

  /* ── Sections ───────────────────────────────── */
  .section-header-center { margin-bottom: 36px; }
  .section-title { font-size: clamp(22px, 6vw, 32px); }

  /* CTA banner */
  .cta-banner { padding: 64px 0; }

  /* Stats */
  .stats-section { padding: 48px 0; }
  .stats-grid { grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); }
  .stat-item { padding: 28px 16px; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; gap: 14px; }
  .process-card { padding: 22px; }

  /* Products teaser — 2 col */
  .products-teaser-grid { gap: 12px; }
  .products-teaser-grid .product-teaser-card { flex: 0 0 calc(50% - 6px); min-width: 0; }
  .product-teaser-img { height: 140px; }

  /* Finishes — 2 col */
  .finishes-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 20px; }

  /* Two-col */
  .two-col-section { grid-template-columns: 1fr; gap: 32px; }
  .reverse-col { direction: ltr; }

  /* About */
  .philosophy-grid { grid-template-columns: 1fr; gap: 14px; }
  .philosophy-card { padding: 24px; }
  .tiers-grid { grid-template-columns: 1fr; gap: 16px; }
  .tier-card { padding: 24px; }

  /* Products full */
  .products-full-grid { grid-template-columns: 1fr; }
  .product-full-img { height: 200px; }

  /* Projects */
  .projects-grid { grid-template-columns: 1fr; }
  .project-img { height: 200px; }
  .projects-filter { gap: 8px; }
  .filter-btn { padding: 7px 16px; font-size: 12px; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }
  .blog-img  { height: 180px; }

  /* Blog post */
  .blog-post-hero { padding: calc(var(--nav-h) + 28px) 0 32px; min-height: 260px; }
  .blog-post-hero-content h1 { font-size: clamp(22px, 5vw, 36px); }
  .blog-post-content { font-size: 15px; }

  /* Project detail videos */
  .pd-videos { grid-template-columns: 1fr; }
  .pd-gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pd-video-item.portrait { max-width: 280px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-office { padding: 20px; }

  /* Form inputs — 16px prevents iOS auto-zoom */
  .c-field input,
  .c-field textarea,
  .c-field select { font-size: 16px; padding: 13px 14px; }

  /* PD features */
  .pd-features { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding: 40px 18px; }
  .footer-bottom-inner { padding: 0 18px; flex-direction: column; gap: 6px; text-align: center; }

  /* WhatsApp */
  .whatsapp-float { bottom: 20px; right: 16px; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE  (≤ 480px)
══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  section { padding: 48px 0; }

  .hero-section { padding: calc(var(--nav-h) + 24px) 16px 52px; }
  .hero-badge { font-size: 10px; }

  /* Stats — auto-fit on very small screens */
  .stats-grid { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); }
  .stat-item { padding: 22px 12px; }

  /* Products teaser — 1 col */
  .products-teaser-grid .product-teaser-card { flex: 0 0 100%; max-width: 100%; }
  .product-teaser-img { height: 180px; }

  /* Finishes — 1 col */
  .finishes-grid { grid-template-columns: 1fr 1fr; }

  /* Buttons full width in hero */
  .hero-actions .btn-gold,
  .hero-actions .btn-ghost { max-width: 100%; }

  /* Project gallery 1 col */
  .pd-gallery { grid-template-columns: 1fr; }

  /* Reel videos centred narrower */
  .pd-video-item.portrait { max-width: 240px; }

  /* FAQ */
  .faq-question { font-size: 14px; padding: 16px; gap: 12px; }

  /* CTA banner */
  .cta-banner { padding: 52px 0; }
  .cta-inner p { margin-bottom: 24px; }
}

/* ══════════════════════════════════════════════════════════
   THEME DISSOLVE — background colours fade, images stay crisp
   Only non-image elements get the transition; <img> and
   <video> are excluded so photos are never affected.
   Kitchen-showcase opacity cross-fade runs independently.
══════════════════════════════════════════════════════════ */

html.theme-dissolving *:not(img):not(video) {
  transition:
    background-color 0.6s ease,
    color            0.5s ease,
    border-color     0.5s ease,
    box-shadow       0.5s ease,
    fill             0.5s ease !important;
}

/* SVG paths that use fill/stroke (icons, logos) also dissolve */
html.theme-dissolving svg path,
html.theme-dissolving svg rect,
html.theme-dissolving svg circle {
  transition: fill 0.5s ease, stroke 0.5s ease !important;
}

/* ══════════════════════════════════════════════════════════
   KITCHEN SHOWCASE — Theme-aware cross-fade image section
══════════════════════════════════════════════════════════ */
.kitchen-showcase {
  position: relative;
  overflow: hidden;
  height: 72vh;
  min-height: 420px;
  max-height: 780px;
  background: var(--bg-3);
}
.kitchen-showcase-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.kitchen-showcase-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.7s ease;
}
/* Light mode: show light-mode image, hide dark */
.kitchen-img-light { opacity: 1; }
.kitchen-img-dark  { opacity: 0; }
/* Dark mode: swap */
[data-theme="dark"] .kitchen-img-light { opacity: 0; }
[data-theme="dark"] .kitchen-img-dark  { opacity: 1; }

/* Optional label overlay */
.kitchen-showcase-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.55));
  padding: 48px 40px 36px;
  z-index: 2;
  pointer-events: none;
}
.kitchen-showcase-label h2 {
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 900;
  color: #fff;
  max-width: 600px;
  line-height: 1.2;
}
.kitchen-showcase-label p {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  margin-top: 8px;
  max-width: 480px;
}
@media (max-width: 768px) {
  .kitchen-showcase { height: 56vw; min-height: 260px; max-height: 420px; }
  .kitchen-showcase-label { padding: 32px 18px 24px; }
}

/* ══════════════════════════════════════════════════════════
   LOGO — Light / Dark variants
══════════════════════════════════════════════════════════ */
.nav-logo-light { display: block; }
.nav-logo-dark  { display: none;  }
[data-theme="dark"] .nav-logo-light { display: none; }
[data-theme="dark"] .nav-logo-dark  { display: block; }

/* ══════════════════════════════════════════════════════════
   GALLERY SECTION
══════════════════════════════════════════════════════════ */
.gallery-section { padding: 80px 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: var(--bg-2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.6));
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 28px 14px 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-caption { opacity: 1; }

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lb-in 0.25s ease;
}
@keyframes lb-in { from { opacity:0 } to { opacity:1 } }

.gallery-lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
}

.gallery-lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none; border: none;
  color: #fff; font-size: 32px;
  cursor: pointer; line-height: 1;
  opacity: .7; transition: opacity .2s;
}
.gallery-lightbox-close:hover { opacity: 1; }

.gallery-lightbox-caption {
  position: absolute;
  bottom: 24px;
  color: rgba(255,255,255,.75);
  font-size: 14px;
  text-align: center;
  width: 100%;
}

.gallery-lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  border: none; color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%; font-size: 22px;
  cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: background .2s;
}
.gallery-lightbox-nav:hover { background: rgba(255,255,255,.25); }
.gallery-lightbox-nav.prev { left: 20px; }
.gallery-lightbox-nav.next { right: 20px; }

@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════
   BRAND PARTNERS — minimal logo strip
══════════════════════════════════════════════════════════ */
.partners-section {
  padding: 52px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  background: var(--surface);
}

[data-theme="dark"] .partners-section {
  border-color: rgba(255,255,255,.06);
}

.partners-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 32px;
}

.partners-track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  perspective: 600px;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 48px 72px;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  filter: none;
  transition: transform .3s ease, filter .3s ease, opacity .3s ease;
  cursor: default;
  will-change: transform;
}

.partner-logo:hover {
  opacity: 1;
  filter: none;
  transform: translateY(-5px) scale(1.06);
}

.partner-logo img {
  max-height: 80px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 600px) {
  .partners-track { gap: 32px 40px; }
  .partner-logo img { max-height: 56px; max-width: 130px; }
}
