/* ============================================
   FUNDI INTERIOR SYSTEMS — MAIN STYLESHEET
   Direction: Bold Trade + Real Photography
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #ff6b1a;
  --orange-dark: #e55a0a;
  --green: #2d5a2e;
  --green-dark: #1e3e1f;
  --green-light: #3a7a3c;
  --black: #0d0d0d;
  --black-2: #111111;
  --black-3: #161616;
  --white: #ffffff;
  --grey-1: #1e1e1e;
  --grey-2: #2a2a2a;
  --grey-3: #555555;
  --grey-4: #888888;
  --grey-5: #bbbbbb;
  --grey-6: #e0e0e0;
  --text-muted: #888;
  --text-dim: #555;
  --border: #1e1e1e;
  --border-light: #2a2a2a;
  --bebas: 'Bebas Neue', sans-serif;
  --sans: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--sans);
  overflow-x: hidden;
  background: var(--black);
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255,107,26,.06) 59px, rgba(255,107,26,.06) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255,107,26,.06) 59px, rgba(255,107,26,.06) 60px);
  color: var(--grey-6);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── UTILITY ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.orange { color: var(--orange); }
.bebas { font-family: var(--bebas); }

.section-label {
  font-size: 10px;
  color: var(--orange);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--bebas);
  font-size: clamp(40px, 5vw, 64px);
  color: var(--white);
  line-height: .95;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.section-title span { color: var(--orange); }

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
  max-width: 560px;
}

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: background .2s, transform .15s, border-color .2s;
  cursor: pointer;
  border: none;
  font-family: var(--sans);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-primary:hover { background: var(--orange-dark); }

.btn-outline {
  border: 1px solid var(--grey-2);
  color: var(--grey-5);
  background: transparent;
}
.btn-outline:hover { border-color: var(--grey-3); color: var(--white); }

.btn-orange-outline {
  border: 1px solid var(--orange);
  color: var(--orange);
  background: transparent;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-orange-outline:hover { background: var(--orange); color: var(--white); }

/* ── NAVIGATION ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black-2);
  border-bottom: 2px solid var(--orange);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Orange top rule — same language as section-label lines */
.nav::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(to right, var(--orange) 0%, rgba(255,107,26,0.15) 60%, transparent 100%);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px 0 20px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Brand — logo left, vertical rule separates from links */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding-right: 20px;
  border-right: 1px solid var(--border-light);
  height: 68px;
  text-decoration: none;
}

.nav-brand:hover .nav-name { color: var(--orange); }

.nav-logo {
  width: 124px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-top: 0;
}

.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.nav-name {
  color: var(--white);
  font-family: var(--bebas);
  font-size: 22px;
  letter-spacing: 2px;
  line-height: 1;
  transition: color .2s;
  white-space: nowrap;
}

.nav-tagline {
  font-size: 10px;
  color: var(--grey-5);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 5px;
  white-space: nowrap;
  font-weight: 400;
}

/* Links */
.nav-links { display: flex; gap: 9px; align-items: center; flex: 1; justify-content: flex-end; }
.nav-links a {
  color: var(--grey-4);
  font-size: 10.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  transition: color .2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width .2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { width: 100%; }

/* CTA — same parallelogram as every other button in the site */
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 9px 16px 9px 22px !important;
  font-size: 10px !important;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: background .2s !important;
  white-space: nowrap;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--orange-dark) !important; }

/* Calculator CTA — green variant, same shape as Get a Quote */
.nav-calc {
  background: #1e6e0d !important;
  color: var(--white) !important;
  padding: 9px 16px 9px 22px !important;
  font-size: 10px !important;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: background .2s !important;
  white-space: nowrap;
}
.nav-calc::after { display: none !important; }
.nav-calc:hover { background: #155a09 !important; }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border: 1px solid var(--border-light); border-radius: 4px; }
.nav-hamburger span { width: 26px; height: 2px; background: var(--white); display: block; transition: all .3s; }
.nav-mobile { display: none; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: #0d0d0d;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255,107,26,.08) 59px, rgba(255,107,26,.08) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255,107,26,.08) 59px, rgba(255,107,26,.08) 60px);
}

/* Fallback right-side panel when no photo loads */
.hero-photo-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 50%, #0d0d0d 100%);
}

.hero-photo-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .45;
  filter: grayscale(20%);
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0d0d0d 0%, rgba(13,13,13,.75) 40%, rgba(13,13,13,.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 64px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-eyebrow-line { width: 32px; height: 2px; background: var(--orange); }
.hero-eyebrow-text { font-size: 10px; color: var(--orange); letter-spacing: 3px; text-transform: uppercase; font-weight: 600; }

.hero h1 {
  font-family: var(--bebas);
  font-size: clamp(64px, 8vw, 110px);
  color: var(--white);
  line-height: .9;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.hero h1 .line-orange { color: var(--orange); display: block; }
.hero h1 .line-grey { color: var(--grey-5); display: block; font-size: clamp(44px, 5.5vw, 72px); }

.hero-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
  font-weight: 300;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 0;
}

.hero-stat {
  padding: 20px 40px 20px 0;
  margin-right: 40px;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; margin-right: 0; }

.hero-stat-num {
  font-family: var(--bebas);
  font-size: 42px;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
}
.hero-stat-num span { color: var(--orange); }
.hero-stat-num.stat-word { font-size: 26px; letter-spacing: 1.5px; color: var(--orange); }
.hero-stat-label { font-size: 10px; color: var(--text-dim); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px; }

/* ── TRUST BAR ── */
/* ── TRUST BAR ── */
.trust-bar {
  background: var(--orange);
  padding: 0;
  border-top: 2px solid rgba(255,255,255,.15);
  border-bottom: 4px solid var(--orange-dark);
}

.trust-bar-inner {
  display: flex;
  align-items: stretch;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 20px;
  font-size: 13px;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  flex: 1;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,.3);
  transition: background .2s;
}
.trust-item:hover { background: var(--orange-dark); }
.trust-item:last-child { border-right: none; }
.trust-item svg { width: 20px; height: 20px; stroke: #ffffff; fill: none; stroke-width: 2.5; stroke-linecap: round; flex-shrink: 0; }

/* ── PRODUCT STRIP ── */
.product-strip {
  background: var(--black-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.product-strip-inner { display: flex; }

.prod-strip-item {
  flex: 1;
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  cursor: pointer;
  transition: background .2s;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.prod-strip-item:last-child { border-right: none; }
.prod-strip-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .25s;
  transform-origin: left;
}
.prod-strip-item:hover { background: var(--black-3); }
.prod-strip-item:hover::before { transform: scaleX(1); }
.prod-strip-item:hover .psi-arrow { color: var(--orange); }

.psi-tag { font-size: 9px; color: var(--orange); letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }
.psi-name { font-size: 13px; color: var(--grey-6); font-weight: 500; }
.psi-spec { font-size: 11px; color: var(--text-dim); line-height: 1.5; }
.psi-arrow { font-size: 18px; color: var(--grey-2); margin-top: 4px; transition: color .2s; }

/* ── WHY SECTION ── */
.why { background: var(--black-2); }

.why-list { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.why-item:first-child { border-top: 1px solid var(--border); }

.why-num {
  font-family: var(--bebas);
  font-size: 32px;
  color: var(--grey-1);
  line-height: 1;
  min-width: 36px;
  margin-top: 2px;
  transition: color .2s;
}
.why-item:hover .why-num { color: var(--orange); }

.why-text h4 { font-size: 15px; font-weight: 600; color: var(--grey-6); margin-bottom: 5px; }
.why-text p { font-size: 14px; color: var(--text-muted); line-height: 1.65; font-weight: 300; }

.why-visual { position: relative; }
.why-photo-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 8px; height: 520px; }
.why-photo { border-radius: 4px; overflow: hidden; background: var(--black-3); }
.why-photo.large { grid-row: span 2; }
.why-photo img { width: 100%; height: 100%; object-fit: cover; opacity: .75; transition: opacity .3s; filter: grayscale(15%); }
.why-photo:hover img { opacity: .95; }
.why-photo-label { position: absolute; bottom: 16px; left: 16px; background: var(--orange); color: var(--white); font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 14px; clip-path: polygon(4px 0%,100% 0%,calc(100% - 4px) 100%,0% 100%); }

/* ── ABOUT ── */
.about { background: var(--black); }
.about-img { border-radius: 4px; overflow: hidden; height: 480px; position: relative; }
.about-img img { width: 100%; height: 100%; object-fit: cover; opacity: .6; filter: grayscale(20%); }
.about-img-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,.85)); padding: 40px 28px 24px; }
.about-img-caption { font-size: 12px; color: var(--grey-4); font-style: italic; }

.about-body { margin-top: 24px; }
.about-body p { font-size: 15px; color: var(--text-muted); line-height: 1.85; font-weight: 300; }
.about-body p + p { margin-top: 18px; }
.about-body strong { color: var(--grey-5); font-weight: 500; }
.about-quote {
  border-left: 3px solid var(--orange);
  padding-left: 20px;
  margin-top: 28px;
  font-size: 15px;
  color: var(--grey-4);
  font-style: italic;
  line-height: 1.7;
  font-weight: 300;
}

/* ── PRODUCTS PAGE ── */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: transparent; margin-top: 52px; }
.products-grid.cols-1 { grid-template-columns: 1fr; }
.products-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.products-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.product-card { background: var(--black-2); outline: 1px solid var(--border); }

.product-card {
  background: var(--black-2);
  padding: 36px 32px;
  transition: background .2s;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .25s;
  transform-origin: left;
}
.product-card:hover { background: var(--black-3); }
.product-card:hover::before { transform: scaleX(1); }

.product-card-img {
  height: 180px;
  background: var(--black-3);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 4px;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; opacity: .7; filter: grayscale(10%); transition: opacity .3s; }
.product-card:hover .product-card-img img { opacity: .9; }

.product-card-tag { font-size: 9px; color: var(--orange); letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }
.product-card h3 { font-family: var(--bebas); font-size: 26px; color: var(--white); letter-spacing: 1px; line-height: 1; }
.product-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; font-weight: 300; flex: 1; }
.product-card-specs { font-size: 11px; color: var(--text-dim); line-height: 1.8; }
.product-card-link { font-size: 12px; color: var(--orange); font-weight: 600; letter-spacing: .5px; display: flex; align-items: center; gap: 6px; margin-top: 4px; }
.product-card-link:hover { color: var(--orange-dark); }

/* ── INDIVIDUAL PRODUCT PAGE ── */
.product-hero { background: var(--black-2); padding: 64px 0; border-bottom: 1px solid var(--border); }
.product-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.product-hero-img { height: 420px; border-radius: 4px; overflow: hidden; background: var(--black-3); }
.product-hero-img img { width: 100%; height: 100%; object-fit: cover; opacity: .75; filter: grayscale(10%); }

.product-breadcrumb { font-size: 11px; color: var(--text-dim); letter-spacing: .5px; margin-bottom: 16px; }
.product-breadcrumb a { color: var(--orange); }
.product-breadcrumb span { margin: 0 8px; color: var(--grey-2); }

.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.benefit-item { background: var(--black-3); border: 1px solid var(--border); border-radius: 2px; padding: 20px; }
.benefit-item h4 { font-size: 13px; font-weight: 600; color: var(--grey-6); margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.benefit-item h4::before { content: ''; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }
.benefit-item p { font-size: 12px; color: var(--text-muted); line-height: 1.6; font-weight: 300; }

.applications-list { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.application-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text-muted); font-weight: 300; }
.application-item::before { content: '—'; color: var(--orange); flex-shrink: 0; font-weight: 600; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 2px; margin-top: 40px; }
.faq-item { background: var(--black-2); border: 1px solid var(--border); }
.faq-item details > summary {
  padding: 20px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-6);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq-item details > summary::-webkit-details-marker { display: none; }
.faq-item details[open] > summary { color: var(--orange); border-bottom: 1px solid var(--border); }
.faq-chevron { width: 18px; height: 18px; stroke: var(--orange); fill: none; stroke-width: 2; flex-shrink: 0; transition: transform .2s; stroke-linecap: round; }
.faq-item details[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer { padding: 20px 24px; font-size: 14px; color: var(--text-muted); line-height: 1.75; font-weight: 300; }

/* ── CONTACT ── */
.contact { background: var(--black-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; margin-top: 52px; }
.contact-block h3 { font-size: 10px; color: var(--orange); letter-spacing: 2px; text-transform: uppercase; font-weight: 600; margin-bottom: 20px; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--grey-4); }
.hours-time { color: var(--white); font-weight: 500; }
.hours-closed { color: var(--text-dim); }
.delivery-note { background: rgba(255,107,26,.08); border: 1px solid rgba(255,107,26,.2); border-radius: 2px; padding: 16px 18px; margin-top: 20px; font-size: 13px; color: var(--grey-4); line-height: 1.65; }
.delivery-note strong { color: var(--orange); display: block; margin-bottom: 4px; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }
.contact-detail { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; font-size: 14px; color: var(--grey-4); line-height: 1.5; border-bottom: 1px solid var(--border); }
.contact-detail:last-child { border-bottom: none; }
.contact-detail svg { width: 16px; height: 16px; stroke: var(--orange); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 2px; }
.contact-detail a { color: var(--grey-4); transition: color .2s; }
.contact-detail a:hover { color: var(--white); }
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-form-name-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form input, .contact-form textarea, .contact-form select {
  background: var(--black-3);
  border: 1px solid var(--border-light);
  border-radius: 2px;
  padding: 12px 16px;
  color: var(--white);
  font-size: 14px;
  font-family: var(--sans);
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--text-dim); }
.contact-form input:focus, .contact-form textarea:focus { border-color: rgba(255,107,26,.5); }
.contact-form textarea { resize: vertical; }
.contact-form button { background: var(--orange); color: var(--white); border: none; padding: 14px; font-size: 13px; font-weight: 600; cursor: pointer; font-family: var(--sans); letter-spacing: .8px; text-transform: uppercase; transition: background .2s; clip-path: polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%); }
.contact-form button:hover { background: var(--orange-dark); }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--orange);
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 { font-family: var(--bebas); font-size: clamp(36px, 5vw, 60px); color: var(--white); letter-spacing: 2px; margin-bottom: 12px; }
.cta-banner p { font-size: 16px; color: rgba(255,255,255,.8); margin-bottom: 32px; font-weight: 300; }
.btn-white { background: var(--white); color: var(--orange); padding: 15px 40px; font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%); display: inline-block; transition: transform .15s; }
.btn-white:hover { transform: translateY(-2px); }

/* ── FOOTER ── */
.footer { background: #080808; border-top: 1px solid rgba(45, 90, 46, 0.3); padding: 52px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand-logo {
  width: 124px;
  height: 60px;
  margin-bottom: 14px;
}
.footer-brand-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.footer-brand p { font-size: 13px; color: var(--text-dim); line-height: 1.7; margin-top: 10px; max-width: 280px; }
.footer-col h4 { font-size: 10px; color: var(--orange); letter-spacing: 2px; text-transform: uppercase; font-weight: 600; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--text-dim); transition: color .2s; }
.footer-col ul li a:hover { color: var(--grey-5); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom-left { font-size: 12px; color: #333; line-height: 1.6; }
.footer-bottom-right { font-size: 12px; color: #333; }

/* ── PHOTO STRIP ── */
.photo-strip { display: grid; grid-template-columns: repeat(5, 1fr); height: 200px; gap: 3px; background: var(--black); }
.photo-cell { overflow: hidden; background: var(--black-3); position: relative; display:flex; align-items:center; justify-content:center; }
.photo-cell img { width: 100%; height: 100%; object-fit: cover; object-position: center center; opacity: .85; filter: grayscale(10%); transition: opacity .4s, filter .4s, transform .4s; }
.photo-cell:hover img { opacity: 1; filter: grayscale(0%); transform: scale(1.04); }
.photo-cell-label { position: absolute; bottom: 10px; left: 12px; font-size: 9px; color: rgba(255,255,255,.7); letter-spacing: 1.5px; text-transform: uppercase; font-weight:600; text-shadow:0 1px 4px rgba(0,0,0,.8); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  overflow: hidden; background: var(--black-2); padding: 52px 0; border-bottom: 1px solid var(--border); }
.page-hero-breadcrumb { font-size: 11px; color: var(--text-dim); letter-spacing: .5px; margin-bottom: 20px; }
.page-hero-breadcrumb a { color: var(--orange); }
.page-hero-breadcrumb span { margin: 0 8px; color: var(--grey-2); }
.page-hero h1 { font-family: var(--bebas); font-size: clamp(44px, 6vw, 80px); color: var(--white); letter-spacing: 2px; line-height: .95; margin-bottom: 16px; }
.page-hero h1 span { color: var(--orange); }
.page-hero p { font-size: 16px; color: var(--text-muted); max-width: 600px; font-weight: 300; line-height: 1.7; }

/* ── SPEC TABLE ── */
.spec-table { width: 100%; border-collapse: collapse; margin-top: 24px; }
.spec-table th { font-size: 10px; color: var(--orange); letter-spacing: 2px; text-transform: uppercase; font-weight: 600; padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.spec-table td { font-size: 13px; color: var(--grey-4); padding: 12px 16px; border-bottom: 1px solid var(--border); }
.spec-table tr:hover td { color: var(--grey-6); }
.spec-table td:first-child { color: var(--grey-6); font-weight: 500; }

/* ── VARIANT CARDS ── */
.variant-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.variant-card { background: var(--black-3); border: 1px solid var(--border); border-radius: 2px; padding: 24px; transition: border-color .2s; }
.variant-card:hover { border-color: rgba(255,107,26,.3); }
.variant-card-tag { font-size: 9px; color: var(--orange); letter-spacing: 2px; text-transform: uppercase; font-weight: 600; margin-bottom: 8px; }
.variant-card h3 { font-family: var(--bebas); font-size: 24px; color: var(--white); letter-spacing: 1px; margin-bottom: 8px; }
.variant-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; font-weight: 300; }

/* ── RESPONSIVE ── */

/* ── WATERMARK LOGO ─────────────────────────── */
.hero-watermark {
  position: absolute;
  top: 24px;
  right: 32px;
  width: 160px;
  opacity: 0.50;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .three-col { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: clamp(56px, 10vw, 90px); }
  .hero-photo-panel { width: 50%; opacity: .8; }
  .product-strip-inner { flex-wrap: wrap; }
  .prod-strip-item { flex: 0 0 50%; border-right: none; border-bottom: 1px solid var(--border); }
  .variant-grid { grid-template-columns: 1fr 1fr; }
  .why-photo-grid { height: 360px; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav-links { display: none; }
  .nav-inner { padding: 0 16px; display: flex; justify-content: space-between; align-items: center; gap: 0; }
  .nav-hamburger { display: flex !important; flex-shrink: 0; margin-left: auto; }
  .nav-links { display: none !important; }
  .nav-brand { padding-right: 0; border-right: none; flex: 1; min-width: 0; overflow: hidden; }
  .nav-brand .nav-name { font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .nav-logo { width: 60px !important; height: 32px !important; flex-shrink: 0; }
  .nav-tagline { display: none !important; }
  .nav-mobile { display: none; background: var(--black-3); padding: 20px 24px; border-top: 1px solid var(--border); border-bottom: 2px solid var(--orange); }
  .nav-mobile.open { display: flex; flex-direction: column; gap: 0; }
  .nav-mobile a { color: var(--grey-4); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; padding: 14px 0; border-bottom: 1px solid var(--border); }
  .hero { min-height: auto; padding-bottom: 0; }
  .hero-photo-panel { position: relative; width: 100%; height: 280px; opacity: 1; }
  .hero-photo-panel img { opacity: .35; }
  .hero-content { padding: 48px 0 40px; }
  .hero-stats { flex-wrap: wrap; gap: 0; }
  .hero-stat { flex: 0 0 50%; }
  .trust-bar-inner { flex-wrap: wrap; }
  .trust-item { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,.15); }
  .products-grid, .three-col, .two-col { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .variant-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .product-hero-grid { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: repeat(3, 1fr); height: 140px; }
  .why-photo-grid { height: 280px; }
  .faq-list { gap: 0; }
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; font-size: 13px; }
  table th, table td { min-width: 100px; white-space: normal; }
  .contact-form-name-row { grid-template-columns: 1fr; }
  .contact-form input, .contact-form select, .contact-form textarea { width: 100% !important; box-sizing: border-box; }
  .contact-grid { grid-template-columns: 1fr !important; }
  .contact-info { padding-right: 0 !important; }
  .section-title { font-size: clamp(36px, 8vw, 52px); }
  .prod-strip-item { flex: 0 0 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav-inner { padding: 0 12px; gap: 8px; }
  .nav-logo { width: 56px; height: 30px; }
  .nav-brand .nav-name { font-size: 13px; letter-spacing: 1px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; }
  .trust-item { flex: 0 0 100%; }
  .hero-stat { flex: 0 0 100%; }
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: clamp(42px, 12vw, 60px); }
  .section-title { font-size: clamp(28px, 8vw, 42px); }
  .nav-name { font-size: 13px !important; letter-spacing: 1px; }
  .nav-tagline { font-size: 8px !important; }
  .blog-body { font-size: 15px; }
  .article-content { padding: 0 4px; }
  .deal-item { flex-direction: column; gap: 4px; }
  .deal-item-price { text-align: left; }
}

/* ── WHATSAPP BUTTON ── */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 20px 12px 14px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37,211,102,.5);
}
.whatsapp-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
@media(max-width:768px) {
  .whatsapp-btn span { display: none; }
  .whatsapp-btn { padding: 14px; border-radius: 50%; }
}

/* Contact page grid — responsive */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-page-grid {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }
}
