/* ================================================================
   HALVAR FLOORING — SHARED STYLESHEET
   ================================================================ */

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

:root {
  --green: #1A3D2B;
  --green-deep: #0E2C1D;
  --green-mid: #245c3e;
  --green-light: #2e7a52;
  --gold: #B0883F;
  --gold-bright: #CAA867;
  --gold-light: #CAA867;  /* alias for --gold-bright */
  --cream: #F6F2E9;
  --white: #ffffff;
  --paper: #ffffff;
  --ink: #26312A;
  --grey-light: #f4f4f2;
  --grey-mid: #e8e6e1;
  --grey-text: #5D655E;
  --muted: #9AA39C;
  --dark: #26312A;
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  --radius: 6px;
  --radius-btn: 2px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 24px rgba(26,61,43,0.10);
  --shadow-lg: 0 18px 44px -18px rgba(20,40,30,0.40);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--dark); background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ── TOP BAR ── */
.top-bar {
  background: var(--green-deep);
  color: rgba(243,239,228,0.85);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.03em;
  padding: 8px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a { color: var(--gold-bright); text-decoration: none; font-weight: 500; letter-spacing: 0.03em; }
.top-bar span { opacity: 0.9; }
.top-bar-links { display: flex; align-items: center; gap: 18px; }
.top-bar .fitter-login {
  color: rgba(243,239,228,0.7);
  font-weight: 400;
  border-left: 1px solid rgba(243,239,228,0.25);
  padding-left: 18px;
  transition: color 0.15s;
}
.top-bar .fitter-login:hover { color: var(--gold-bright); }

/* ── NAV ── */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--grey-mid);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: var(--shadow-sm);
}
.logo { display: flex; align-items: center; padding: 8px 0; text-decoration: none; }
.logo img { height: 72px; width: auto; display: block; }
/* Legacy text logo fallback (footer) */
.logo-name { font-family: var(--font-head); font-size: 26px; color: var(--green); letter-spacing: 2px; font-weight: normal; }
.logo-sub { font-size: 10px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-links li { position: relative; }
.nav-links li > a {
  display: block;
  padding: 28px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.15s;
  white-space: nowrap;
}
.nav-links li > a:hover { color: var(--green); border-bottom-color: var(--green); }

/* Dropdown */
.has-dropdown > a { cursor: pointer; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-top: 3px solid var(--green);
  border-radius: 0 0 var(--radius) var(--radius);
  list-style: none;
  min-width: 220px;
  box-shadow: var(--shadow-md);
  z-index: 300;
}
.dropdown li a {
  display: block;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0.3px;
  border-bottom: 1px solid var(--grey-light);
  transition: background 0.15s, color 0.15s;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--grey-light); color: var(--green); }
.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown { display: block; }

.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 12px 22px !important;
  border-radius: var(--radius-btn) !important;
  border-bottom: none !important;
  margin-left: 10px;
}
.nav-cta:hover { background: var(--green-deep) !important; color: var(--white) !important; border-bottom: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--green);
  padding: 8px;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--grey-mid);
  padding: 18px 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--green);
  padding: 0 36px;
  text-align: center;
}
.trust-item + .trust-item { border-left: 1px solid var(--grey-mid); }
.trust-item span { color: var(--muted); font-weight: 400; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-top: 3px; }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--grey-light);
  border-bottom: 1px solid var(--grey-mid);
  padding: 10px 40px;
  font-size: 12px;
  color: var(--grey-text);
}
.breadcrumb a { color: var(--green); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold);
  color: var(--white);
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-btn);
  display: inline-block;
  transition: background 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold-bright); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-btn);
  display: inline-block;
  transition: all 0.15s;
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-green {
  background: var(--green);
  color: var(--white);
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-btn);
  display: inline-block;
  transition: background 0.2s;
}
.btn-green:hover { background: var(--green-mid); }

/* ── SECTION LAYOUT ── */
section { padding: 96px 40px; }
.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
}
/* Eyebrow — alias for section-label */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: var(--font-head);
  font-size: 40px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-intro { font-size: 16px; color: var(--grey-text); line-height: 1.8; max-width: 640px; }
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-intro { margin: 0 auto; }

/* ── HOMEPAGE HERO ── */
.hero {
  position: relative;
  height: 580px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 50%, #1a2e1f 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 65%;
  opacity: 0;
  transition: opacity 2.5s ease-in-out;
}
.hero-photo.active { opacity: 1; }
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(14,44,29,0.94) 0%, rgba(26,61,43,0.84) 55%, rgba(14,44,29,0.68) 100%);
}
/* Slow cinematic zoom — only when motion is allowed */
.reveal-ready .hero-photo {
  animation: heroZoom 26s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0 2px, transparent 2px 22px);
}
.hero-content { position: relative; z-index: 2; padding: 0 80px; max-width: 680px; }
.hero-eyebrow { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 20px; font-weight: 600; }
.hero h1 { font-family: var(--font-head); font-size: 68px; color: #F3EFE4; line-height: 1.08; font-weight: 600; margin-bottom: 24px; }
.hero h1 em { color: var(--gold-bright); font-style: normal; }
.hero p { font-size: 17px; color: rgba(255,255,255,0.82); line-height: 1.7; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badge {
  position: absolute;
  right: 80px;
  bottom: 50px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  padding: 20px 28px;
  border-radius: var(--radius);
  text-align: center;
  color: var(--white);
}
.hero-badge .num { font-family: var(--font-head); font-size: 40px; color: var(--gold-light); display: block; }
.hero-badge .label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.8; }

/* ── INNER PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 60%, #1a2e1f 100%);
  padding: 64px 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0 2px, transparent 2px 22px);
}
.page-hero-content { position: relative; z-index: 1; max-width: 700px; }
.page-hero .section-label { color: var(--gold-light); }
.page-hero h1 { font-family: var(--font-head); font-size: 48px; color: #F3EFE4; line-height: 1.12; font-weight: 600; margin-bottom: 16px; }
.page-hero h1 em { color: var(--gold-light); font-style: normal; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.82); line-height: 1.7; margin-bottom: 28px; max-width: 620px; }
.page-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── PRODUCT GRID (homepage) ── */
.products-section { background: var(--white); }
.product-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 48px; }
.product-card {
  background: var(--grey-light);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green); }
.product-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.product-img.lvt { background-image: linear-gradient(135deg, #8b7355 0%, #6b5a3e 100%); }
.product-img.laminate { background-image: linear-gradient(135deg, #c4a882 0%, #a08060 100%); }
.product-img.engineered { background-image: linear-gradient(135deg, #7a5c3a 0%, #5a3e22 100%); }
.product-img.solid { background-image: linear-gradient(135deg, #5a3e22 0%, #3d2510 100%); }
.product-img.parquet { background-image: linear-gradient(135deg, #8b6914 0%, #6b4f0e 100%); }
.product-card-body { padding: 18px 16px; }
.product-card-name { font-size: 14px; font-weight: 700; color: var(--green); letter-spacing: 0.5px; margin-bottom: 6px; text-transform: uppercase; }
.product-card-desc { font-size: 12px; color: var(--grey-text); line-height: 1.5; }
.product-card-link { display: inline-block; margin-top: 10px; font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; }

/* ── ROOM GRID ── */
.room-section { background: var(--grey-light); }
.room-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.room-card { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; height: 240px; text-decoration: none; }
.room-bg { position: absolute; inset: 0; transition: transform 0.4s; background-size: cover; background-position: center; }
.room-card:hover .room-bg { transform: scale(1.06); }
.room-bg.living { background-image: linear-gradient(135deg, #2e5945 0%, #1a3d2b 100%); }
.room-bg.kitchen { background-image: linear-gradient(135deg, #3d6b52 0%, #245c3e 100%); }
.room-bg.bedroom { background-image: linear-gradient(135deg, #245c3e 0%, #1a3d2b 100%); }
.room-bg.hallway { background-image: linear-gradient(135deg, #1a4a30 0%, #122e1e 100%); }
.room-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 50%); }
.room-label { position: absolute; bottom: 20px; left: 20px; color: var(--white); }
.room-label h3 { font-family: var(--font-head); font-size: 20px; font-weight: normal; }
.room-label p { font-size: 12px; opacity: 0.8; margin-top: 4px; }

/* ── WHY CHOOSE ── */
.why-section { background: var(--green); }
.why-section .section-title { color: var(--white); }
.why-section .section-label { color: var(--gold-light); }
.why-section .section-intro { color: rgba(255,255,255,0.75); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; counter-reset: why; }
.why-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius); padding: 36px 28px; transition: background 0.2s; counter-increment: why; }
.why-card:hover { background: rgba(255,255,255,0.09); }
.why-card::before {
  content: counter(why, decimal-leading-zero);
  display: block;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 30px;
  color: var(--gold-bright);
  margin-bottom: 18px;
}
.why-card h3 { font-family: var(--font-head); font-size: 21px; font-weight: 600; color: #F3EFE4; letter-spacing: 0.01em; margin-bottom: 12px; }
.why-card p { font-size: 14px; color: #CFE0D4; line-height: 1.7; }

/* ── PROCESS STEPS ── */
.process-section { background: var(--cream); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 48px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 28px; left: 12.5%; right: 12.5%; height: 2px; background: var(--grey-mid); z-index: 0; }
.step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--cream); border: 1px solid var(--gold); color: var(--green); font-family: var(--font-head); font-style: italic; font-size: 24px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-weight: 500; }
.step h3 { font-family: var(--font-head); font-size: 19px; font-weight: 600; color: var(--green); margin-bottom: 10px; }
.step p { font-size: 13px; color: var(--grey-text); line-height: 1.6; }

/* ── PORTFOLIO ── */
.portfolio-section { background: var(--white); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.portfolio-item { background: var(--grey-light); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: transform 0.25s; }
.portfolio-item:hover { transform: translateY(-4px); }
.portfolio-img { height: 220px; display: flex; align-items: center; justify-content: center; font-size: 64px; position: relative; }
.portfolio-img.p1 { background: linear-gradient(135deg, #8b7355, #5a3e22); }
.portfolio-img.p2 { background: linear-gradient(135deg, #6b5a3e, #8b6914); }
.portfolio-img.p3 { background: linear-gradient(135deg, #5a3e22, #3d2510); }
.portfolio-img.p4 { background: linear-gradient(135deg, #c4a882, #8b7355); }
.portfolio-img.p5 { background: linear-gradient(135deg, #8b6914, #6b4f0e); }
.portfolio-img.p6 { background: linear-gradient(135deg, #7a5c3a, #5a3e22); }
.portfolio-caption { padding: 16px 18px; }
.portfolio-caption h4 { font-size: 13px; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.portfolio-caption p { font-size: 12px; color: var(--grey-text); }

/* Small portfolio grid (3-item on inner pages) */
.portfolio-grid.small .portfolio-img { height: 180px; font-size: 48px; }

/* ── SCROLL REVEAL ──
   Motion is gated in JS: .reveal-ready is only added to <html> when
   prefers-reduced-motion is not requested. */
.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
.reveal-ready .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
/* Images inside revealed cards settle from a gentle zoom */
.reveal-ready .reveal .pf-img,
.reveal-ready .reveal .product-range-img img,
.reveal-ready .reveal .portfolio-img {
  transform: scale(1.06);
  transition: transform 1.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal-ready .reveal.in-view .pf-img,
.reveal-ready .reveal.in-view .product-range-img img,
.reveal-ready .reveal.in-view .portfolio-img {
  transform: scale(1);
}
/* Hero: slow settle on load */
.reveal-ready .hero-content,
.reveal-ready .page-hero-content {
  animation: heroRise 1.1s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
@keyframes heroRise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── PHOTO PORTFOLIO (editorial) ── */
.pf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
  margin-top: 56px;
}
.pf-item { text-decoration: none; display: block; }
.pf-item.feature { grid-column: span 2; grid-row: span 2; display: flex; flex-direction: column; }
.pf-img {
  background-color: #E3DFD5;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  transition: opacity 0.2s;
}
.pf-item.feature .pf-img { flex: 1; height: auto; min-height: 420px; aspect-ratio: auto; background-position: center 72%; }
.pf-item.feature .pf-caption { flex: 0 0 auto; }
.pf-item:hover .pf-img { opacity: 0.92; }
.pf-caption { padding: 16px 2px 0; }
.pf-caption h3 { font-family: var(--font-head); font-size: 21px; font-weight: 600; color: var(--green); margin-bottom: 4px; }
.pf-caption p { font-size: 11px; color: var(--muted); letter-spacing: 0.16em; text-transform: uppercase; }
.pf-more { text-align: center; margin-top: 56px; }
.pf-more a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 6px;
  transition: color 0.15s, border-color 0.15s;
}
.pf-more a:hover { color: var(--gold); }
@media (max-width: 900px) {
  .pf-grid { grid-template-columns: 1fr 1fr; }
  .pf-item.feature { grid-column: span 2; grid-row: auto; }
  .pf-item.feature .pf-img { min-height: 300px; }
}
@media (max-width: 560px) {
  .pf-grid { grid-template-columns: 1fr; }
  .pf-item.feature { grid-column: auto; }
}

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--grey-light); }
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 48px; }
.testimonial { background: var(--white); border-left: 4px solid var(--green); padding: 32px 28px; border-radius: 0 var(--radius) var(--radius) 0; }
.stars { color: var(--gold); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-title { font-family: var(--font-head); font-size: 20px; color: var(--green); margin-bottom: 14px; }
.testimonial p { font-size: 14px; color: var(--grey-text); line-height: 1.8; }
.testimonial-author { margin-top: 20px; font-size: 13px; font-weight: 700; color: var(--dark); }
.testimonial-location { font-size: 12px; color: var(--grey-text); }

/* Single testimonial */
.testimonial-single { max-width: 680px; margin: 40px auto 0; }

/* ── AREA PILLS ── */
.areas-section { background: var(--white); }
.areas-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.area-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.pill { border: 2px solid var(--green); color: var(--green); padding: 8px 18px; border-radius: 100px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-block; }
.pill:hover { background: var(--green); color: var(--white); }
.areas-cta-block { background: var(--green); border-radius: 6px; padding: 48px 40px; color: var(--white); }
.areas-cta-block h3 { font-family: var(--font-head); font-size: 28px; font-weight: normal; margin-bottom: 16px; }
.areas-cta-block p { font-size: 14px; opacity: 0.8; line-height: 1.7; margin-bottom: 28px; }
.phone-big { font-family: var(--font-head); font-size: 32px; color: var(--gold-light); display: block; margin-bottom: 20px; }

/* ── ADVICE GRID ── */
.advice-section { background: var(--cream); }
.advice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.advice-card { background: var(--white); border: 1px solid var(--grey-mid); border-radius: var(--radius); padding: 36px 28px; text-align: center; cursor: pointer; transition: all 0.2s; text-decoration: none; display: block; }
.advice-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); }
.advice-icon { font-size: 36px; margin-bottom: 20px; display: block; }
.advice-card h3 { font-size: 15px; font-weight: 700; color: var(--green); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.advice-card p { font-size: 13px; color: var(--grey-text); line-height: 1.6; }

/* ── FAQ ── */
.faq-section { background: var(--white); }
.faq-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.faq-list { margin-top: 0; }
.faq-item { border-bottom: 1px solid var(--grey-mid); }
.faq-q { padding: 20px 0; font-size: 15px; font-weight: 600; color: var(--dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q:hover { color: var(--green); }
.faq-chevron { color: var(--green); font-size: 18px; flex-shrink: 0; transition: transform 0.2s; }
.faq-a { display: none; padding: 0 0 20px; font-size: 14px; color: var(--grey-text); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-cta-panel { background: var(--green); border-radius: 6px; padding: 48px 40px; color: var(--white); align-self: start; position: sticky; top: 100px; }
.faq-cta-panel h3 { font-family: var(--font-head); font-size: 26px; font-weight: normal; margin-bottom: 14px; }
.faq-cta-panel p { font-size: 14px; opacity: 0.8; line-height: 1.7; margin-bottom: 28px; }

/* Standalone FAQ section (no CTA panel) */
.faq-standalone { max-width: 800px; margin: 0 auto; }

/* ── CTA PANEL (reusable dark green block) ── */
.cta-panel {
  background: var(--green);
  color: var(--white);
  border-radius: 6px;
  padding: 56px 48px;
  text-align: center;
}
.cta-panel .section-label { color: var(--gold-light); }
.cta-panel .section-title { color: var(--white); }
.cta-panel p { font-size: 16px; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-panel .phone-big { font-family: var(--font-head); font-size: 36px; color: var(--gold-light); display: block; margin-bottom: 8px; text-decoration: none; }
.cta-panel .sub { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 28px; }
.cta-panel-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FEATURE GRID (product pages) ── */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.feature-card { background: var(--white); border: 1px solid var(--grey-mid); border-radius: var(--radius); padding: 32px 28px; }
.feature-card::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); margin-bottom: 20px; }
.feature-card h3 { font-family: var(--font-head); font-size: 20px; font-weight: 600; color: var(--green); margin-bottom: 10px; }
.feature-card p { font-size: 13px; color: var(--grey-text); line-height: 1.6; }

/* ── 2-COL LAYOUT ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.two-col-text h2 { font-family: var(--font-head); font-size: 30px; color: var(--green); font-weight: normal; margin-bottom: 16px; line-height: 1.2; }
.two-col-text p { font-size: 15px; color: var(--grey-text); line-height: 1.8; margin-bottom: 16px; }
.two-col-text ul { list-style: none; margin: 16px 0; }
.two-col-text ul li { font-size: 14px; color: var(--grey-text); padding: 8px 0; border-bottom: 1px solid var(--grey-mid); display: flex; gap: 10px; align-items: flex-start; }
.two-col-text ul li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.two-col-img { border-radius: var(--radius); overflow: hidden; height: 360px; display: flex; align-items: center; justify-content: center; font-size: 80px; }

/* ── COMPARISON TABLE ── */
.comparison-table { width: 100%; border-collapse: collapse; margin-top: 32px; font-size: 14px; }
.comparison-table th { background: var(--green); color: var(--white); padding: 14px 16px; text-align: left; font-size: 13px; letter-spacing: 0.5px; font-weight: 700; }
.comparison-table td { padding: 12px 16px; border-bottom: 1px solid var(--grey-mid); color: var(--grey-text); vertical-align: top; }
.comparison-table tr:nth-child(even) td { background: var(--grey-light); }
.comparison-table .check { color: var(--green); font-weight: 700; }
.comparison-table .cross { color: #c0392b; font-weight: 700; }
.comparison-table .partial { color: var(--gold); font-weight: 700; }

/* ── ROOM SUITABILITY GRID ── */
.suitability-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 36px; }
.suitability-card { text-align: center; padding: 28px 16px; border-radius: var(--radius); border: 2px solid var(--grey-mid); }
.suitability-card.good { border-color: var(--green); background: rgba(26,61,43,0.04); }
.suitability-card.ok { border-color: var(--gold); background: rgba(184,150,62,0.04); }
.suitability-card.bad { border-color: #e74c3c; background: rgba(231,76,60,0.04); }
.suitability-icon { font-size: 32px; margin-bottom: 12px; display: block; }
.suitability-card h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.suitability-card p { font-size: 12px; color: var(--grey-text); line-height: 1.5; }
.suitability-badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; margin-bottom: 10px; }
.suitability-badge.good { background: var(--green); color: var(--white); }
.suitability-badge.ok { background: var(--gold); color: var(--white); }
.suitability-badge.bad { background: #e74c3c; color: var(--white); }

/* ── AREA GRID ── */
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.area-card { background: var(--grey-light); border: 1px solid var(--grey-mid); border-radius: var(--radius); padding: 28px 20px; text-align: center; text-decoration: none; transition: all 0.2s; }
.area-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.area-card h3 { font-family: var(--font-head); font-size: 20px; color: var(--green); font-weight: normal; margin-bottom: 6px; }
.area-card p { font-size: 12px; color: var(--grey-text); margin-bottom: 12px; }
.area-card .area-link { font-size: 11px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; }

/* ── CONTACT FORM ── */
.contact-section { background: var(--cream); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info { }
.contact-info h2 { font-family: var(--font-head); font-size: 32px; color: var(--green); font-weight: normal; margin-bottom: 16px; }
.contact-info p { font-size: 15px; color: var(--grey-text); line-height: 1.7; margin-bottom: 28px; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
.contact-detail .detail-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.contact-detail h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.contact-detail p { font-size: 14px; color: var(--grey-text); margin: 0; }
.contact-detail a { color: var(--green); text-decoration: none; font-weight: 600; }
.contact-detail a:hover { text-decoration: underline; }

.form-wrap { background: var(--white); border-radius: 6px; padding: 40px; border: 1px solid var(--grey-mid); box-shadow: var(--shadow-sm); }
.form-wrap h3 { font-family: var(--font-head); font-size: 22px; color: var(--green); font-weight: normal; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkbox-group { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--dark);
  cursor: pointer;
  padding: 6px 12px;
  border: 1.5px solid var(--grey-mid);
  border-radius: 100px;
  transition: all 0.15s;
}
.checkbox-label:hover { border-color: var(--green); }
.checkbox-label input { width: auto; }
.form-submit { width: 100%; padding: 16px; font-family: var(--font-body); font-size: 13px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; background: var(--green); color: var(--white); border: none; border-radius: var(--radius-btn); cursor: pointer; transition: background 0.2s; margin-top: 8px; }
.form-submit:hover { background: var(--green-mid); }
.form-note { font-size: 12px; color: var(--grey-text); margin-top: 10px; text-align: center; }

/* ── CHECKLIST SECTION ── */
.checklist { list-style: none; margin: 20px 0; }
.checklist li { padding: 10px 0; border-bottom: 1px solid var(--grey-mid); display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--grey-text); line-height: 1.5; }
.checklist li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; font-size: 15px; margin-top: 1px; }

/* ── NUMBERED LIST ── */
.numbered-list { list-style: none; counter-reset: item; margin: 20px 0; }
.numbered-list li { counter-increment: item; display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; font-size: 14px; color: var(--grey-text); line-height: 1.6; }
.numbered-list li::before { content: counter(item); display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; min-width: 32px; background: var(--green); color: var(--white); border-radius: 50%; font-weight: 700; font-size: 14px; }

/* ── STATS ROW ── */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--grey-mid); border-radius: var(--radius); overflow: hidden; margin-top: 48px; }
.stat-block { background: var(--white); padding: 32px 20px; text-align: center; }
.stat-num { font-family: var(--font-head); font-size: 40px; color: var(--green); display: block; }
.stat-label { font-size: 13px; color: var(--grey-text); margin-top: 6px; }

/* ── TEAM CARDS ── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.team-card { text-align: center; }
.team-avatar { width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-size: 48px; background: var(--grey-light); border: 4px solid var(--grey-mid); }
.team-card h3 { font-family: var(--font-head); font-size: 20px; color: var(--green); font-weight: normal; margin-bottom: 4px; }
.team-card .role { font-size: 12px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; }
.team-card p { font-size: 14px; color: var(--grey-text); line-height: 1.7; }

/* ── THANK YOU PAGE ── */
.thankyou-wrap { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 80px 40px; text-align: center; }
.thankyou-inner { max-width: 560px; }
.thankyou-icon { font-size: 72px; margin-bottom: 24px; display: block; }
.thankyou-inner h1 { font-family: var(--font-head); font-size: 40px; color: var(--green); font-weight: normal; margin-bottom: 16px; }
.thankyou-inner p { font-size: 16px; color: var(--grey-text); line-height: 1.7; margin-bottom: 28px; }

/* ── FOOTER ── */
footer { background: var(--green); color: var(--white); }
.footer-main { padding: 64px 40px 40px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-logo { height: 36px; width: auto; display: block; margin-bottom: 16px; }
.footer-brand .logo-name { font-family: var(--font-head); font-size: 24px; color: var(--white); letter-spacing: 2px; }
.footer-brand .logo-sub { color: var(--gold-bright); font-size: 10px; letter-spacing: 3px; }
.footer-brand p { font-size: 13px; color: rgba(243,239,228,0.65); line-height: 1.7; }
.footer-col h4 { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; font-size: 13px; color: rgba(255,255,255,0.75); }
.footer-contact-item strong { color: var(--white); }
.footer-contact-item a { color: rgba(255,255,255,0.75); text-decoration: none; }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 20px 40px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

/* ── STICKY CALL BAR (mobile) ── */
.sticky-call { position: fixed; bottom: 0; left: 0; right: 0; background: var(--green); color: var(--white); display: none; align-items: center; justify-content: center; gap: 16px; padding: 14px; z-index: 300; box-shadow: 0 -4px 20px rgba(0,0,0,0.2); }
.sticky-call a { background: var(--gold); color: var(--white); padding: 12px 28px; font-size: 15px; font-weight: 700; text-decoration: none; border-radius: var(--radius); letter-spacing: 0.5px; }
.sticky-call span { font-size: 14px; opacity: 0.85; }

/* ── LINK LISTS (internal navigation) ── */
.link-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.link-list a { background: var(--grey-light); border: 1px solid var(--grey-mid); color: var(--green); padding: 8px 16px; border-radius: 100px; font-size: 13px; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.link-list a:hover { background: var(--green); color: var(--white); border-color: var(--green); }

/* ── INTRO TEXT BLOCK ── */
.intro-block { background: var(--cream); padding: 56px 40px; }
.intro-block-inner { max-width: 800px; margin: 0 auto; }
.intro-block h2 { font-family: var(--font-head); font-size: 28px; color: var(--green); font-weight: normal; margin-bottom: 16px; }
.intro-block p { font-size: 15px; color: var(--grey-text); line-height: 1.8; margin-bottom: 14px; }

/* ── UTILITY ── */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.bg-cream { background: var(--cream); }
.bg-grey { background: var(--grey-light); }
.bg-white { background: var(--white); }
.bg-green { background: var(--green); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .area-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .top-bar { padding: 8px 20px; font-size: 12px; }
  nav { padding: 0 20px; }
  .hamburger { display: block; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 0 40px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    overflow-y: auto;
    z-index: 250;
  }
  .nav-links.open { display: flex; }
  .nav-links li > a { padding: 14px 24px; border-bottom: 1px solid var(--grey-light) !important; }
  .nav-links li > a:hover { border-bottom-color: var(--grey-light) !important; }
  .nav-cta { margin: 16px 24px 0; border-radius: var(--radius) !important; padding: 14px 24px !important; text-align: center; }
  .dropdown { display: none; position: static; border: none; border-radius: 0; box-shadow: none; background: var(--grey-light); }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown li a { padding: 10px 32px; }

  section { padding: 56px 20px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .room-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .areas-layout { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-cta-panel { position: static; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .two-col-img { height: 240px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .suitability-grid { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .hero { height: auto; padding: 60px 0; }
  .hero-badge { display: none; }
  .hero-content { padding: 0 24px; }
  .hero h1 { font-size: 36px; }
  .page-hero { padding: 48px 24px; }
  .page-hero h1 { font-size: 32px; }
  .trust-bar { gap: 20px; padding: 12px 20px; }
  .breadcrumb { padding: 10px 20px; }
  .sticky-call { display: flex; }
  .advice-grid { grid-template-columns: 1fr; }
  .cta-panel { padding: 40px 24px; }
  .two-col-text ul li { font-size: 13px; }
  .comparison-table { font-size: 12px; }
  .comparison-table th, .comparison-table td { padding: 10px 12px; }
}

@media (max-width: 500px) {
  .product-grid { grid-template-columns: 1fr; }
  .room-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .suitability-grid { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .hero h1 { font-size: 28px; }
  .page-hero h1 { font-size: 26px; }
  .section-title { font-size: 28px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}

/* ── PRODUCT RANGE GRID ── */
.product-range-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.product-range-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.product-range-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--grey-light);
}
.product-range-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* wood-tone CSS placeholder gradients */
.wood-light  { background: linear-gradient(145deg, #c4956a 0%, #d9ae80 35%, #b07a50 70%, #c8975e 100%); }
.wood-dark   { background: linear-gradient(145deg, #6b4c35 0%, #7d5c44 35%, #5a3f2d 70%, #704e38 100%); }
.wood-mid    { background: linear-gradient(145deg, #a07348 0%, #b5844e 35%, #8e6035 70%, #a87240 100%); }
.wood-pale   { background: linear-gradient(145deg, #d6c4a0 0%, #e8d4ae 35%, #c4af88 70%, #d8c298 100%); }
/* LVT / stone placeholder gradients */
.stone-warm  { background: linear-gradient(145deg, #c8bfb0 0%, #d6cdbf 35%, #b8af9f 70%, #cac1b2 100%); }
.stone-grey  { background: linear-gradient(145deg, #8a8880 0%, #9a9890 35%, #7a7870 70%, #909088 100%); }
.stone-cream { background: linear-gradient(145deg, #e4d8c4 0%, #ede3cf 35%, #d8c8b0 70%, #e2d4bc 100%); }
/* carpet placeholder gradients */
.carpet-mid   { background: linear-gradient(145deg, #b0a898 0%, #bdb3a4 35%, #a29a8c 70%, #b4aca0 100%); }
.carpet-light { background: linear-gradient(145deg, #ccc3b3 0%, #d8d0c0 35%, #bcb3a0 70%, #cac0b0 100%); }
.carpet-dark  { background: linear-gradient(145deg, #7a7068 0%, #8a8078 35%, #6a6058 70%, #807470 100%); }
.carpet-warm  { background: linear-gradient(145deg, #c0b09c 0%, #ccbca8 35%, #b09e8a 70%, #bfae9a 100%); }
.carpet-beige { background: linear-gradient(145deg, #d4c8b4 0%, #e0d4c0 35%, #c4b8a4 70%, #d8ccb8 100%); }
.wool-warm    { background: linear-gradient(145deg, #d4c9b4 0%, #e0d4bc 35%, #c4b8a0 70%, #d8ccb8 100%); }
.wool-mid     { background: linear-gradient(145deg, #a89880 0%, #b8a88e 35%, #98886e 70%, #b09880 100%); }
.wool-light   { background: linear-gradient(145deg, #e0d8c8 0%, #ece4d4 35%, #d0c8b8 70%, #e4dcca 100%); }
/* underlay placeholder gradients */
.underlay-orange { background: linear-gradient(145deg, #d4841c 0%, #e89428 35%, #c07010 70%, #d88820 100%); }
.underlay-gold   { background: linear-gradient(145deg, #c8a030 0%, #d8b040 35%, #b89020 70%, #d0a828 100%); }
.underlay-purple { background: linear-gradient(145deg, #7a5890 0%, #8a68a0 35%, #6a4880 70%, #806098 100%); }
.underlay-green  { background: linear-gradient(145deg, #3a7845 0%, #4a8855 35%, #2a6838 70%, #408050 100%); }
.underlay-eco    { background: linear-gradient(145deg, #5e8a48 0%, #6e9a58 35%, #4e7a38 70%, #609050 100%); }
.underlay-grey   { background: linear-gradient(145deg, #b0b8c0 0%, #c0c8d0 35%, #a0a8b0 70%, #b8c0c8 100%); }
/* metal trim placeholder gradients */
.metal-silver { background: linear-gradient(145deg, #c0c4c8 0%, #d0d4d8 35%, #b0b4b8 70%, #c8ccd0 100%); }
.metal-brass  { background: linear-gradient(145deg, #b89840 0%, #c8a850 35%, #a88830 70%, #c0a040 100%); }
.metal-black  { background: linear-gradient(145deg, #3a3a3e 0%, #4a4a4e 35%, #2a2a2e 70%, #404044 100%); }
.metal-gold   { background: linear-gradient(145deg, #c4a028 0%, #d4b038 35%, #b49018 70%, #caa828 100%); }
/* Collection divider */
.collection-heading {
  text-align: center;
  margin: 56px 0 8px;
}
.collection-heading h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: normal;
  color: var(--green);
  margin-bottom: 6px;
}
.collection-heading p {
  font-size: 14px;
  color: var(--grey-text);
}
.collection-heading:first-of-type { margin-top: 24px; }
.product-range-desc {
  font-size: 12px;
  color: var(--grey-text);
  margin-top: 4px;
  line-height: 1.4;
}

.product-range-name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: normal;
  color: var(--green);
  margin: 14px 0 4px;
  letter-spacing: 0.5px;
}
.product-range-type {
  font-size: 11px;
  color: var(--grey-text);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .product-range-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .product-range-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 400px) {
  .product-range-grid { grid-template-columns: 1fr; }
}
