/* ================================================================
   PATWARI TRADERS — COMPLETE STYLESHEET v5
   Theme: Editorial Luxury · Berger Red × Charcoal × Cream
   Fonts: Playfair Display (headings) + DM Sans (body)
   ================================================================ */

/* ──────────────────────────────────────────────────────────────
   1. RESET & BASE
   ────────────────────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #FDFAF5;
  color: #1A1208;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
*, *::before, *::after { box-sizing: border-box; }
img  { display: block; max-width: 100%; height: auto; }
svg  { display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ──────────────────────────────────────────────────────────────
   2. CSS CUSTOM PROPERTIES
   ────────────────────────────────────────────────────────────── */
:root {
  /* Colors */
  --red:       #E8251A;
  --red-dark:  #C01E14;
  --charcoal:  #1A1208;
  --ink:       #2C2318;
  --cream:     #F5F0E8;
  --warm:      #FDFAF5;
  --paper:     #F0EBE0;
  --line:      #E0D8CC;
  --muted:     #8A7E70;
  --white:     #FFFFFF;

  /* Shadows */
  --sh-xs:  0 1px 4px rgba(26,18,8,.06);
  --sh-sm:  0 2px 10px rgba(26,18,8,.08);
  --sh-md:  0 8px 30px rgba(26,18,8,.11);
  --sh-lg:  0 20px 60px rgba(26,18,8,.16);
  --sh-xl:  0 32px 80px rgba(26,18,8,.22);
  --sh-red: 0 8px 32px rgba(232,37,26,.36);

  /* Easing */
  --ease:   cubic-bezier(.4, 0, .2, 1);
  --bounce: cubic-bezier(.34, 1.56, .64, 1);

  /* Transitions */
  --t1: .18s;
  --t2: .38s;
  --t3: .65s;

  /* Border radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
}

/* ──────────────────────────────────────────────────────────────
   3. UTILITY
   ────────────────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}

/* ──────────────────────────────────────────────────────────────
   4. CUSTOM CURSOR (desktop only)
   ────────────────────────────────────────────────────────────── */
.cursor,
.cursor-dot {
  display: none;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
@media (hover: hover) and (pointer: fine) {
  .cursor {
    display: block;
    width: 36px; height: 36px;
    border: 2px solid var(--red);
    border-radius: 50%;
    mix-blend-mode: multiply;
    transition: width .2s var(--ease), height .2s var(--ease), border-color .2s var(--ease);
  }
  .cursor-dot {
    display: block;
    width: 5px; height: 5px;
    background: var(--red);
    border-radius: 50%;
    transition: transform .06s linear;
  }
}

/* ──────────────────────────────────────────────────────────────
   5. PRELOADER
   ────────────────────────────────────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.pl-wipe {
  position: absolute;
  inset: 0;
  background: var(--charcoal);
  transform-origin: bottom;
  transition: transform .9s cubic-bezier(.76, 0, .24, 1) .25s;
}
.preloader.done .pl-wipe {
  transform: scaleY(0);
}
.pl-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 20px;
}
.pl-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.pl-svg-wrap {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
.pl-svg-wrap svg {
  width: 60px;
  height: 60px;
}
.pl-text {
  text-align: left;
}
.pl-name {
  display: block;
  font-size: clamp(.88rem, 3vw, 1.3rem);
  font-weight: 700;
  letter-spacing: .13em;
  color: var(--white);
  text-transform: uppercase;
}
.pl-tagline {
  display: block;
  font-size: clamp(.5rem, 1.5vw, .62rem);
  letter-spacing: .18em;
  color: rgba(255,255,255,.36);
  margin-top: 5px;
  text-transform: uppercase;
}
.pl-bar-track {
  width: min(260px, 80vw);
  height: 2px;
  background: rgba(255,255,255,.1);
  border-radius: 999px;
  overflow: hidden;
  margin: 0 auto 14px;
}
.pl-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--red);
  border-radius: 999px;
  animation: plBarAnim 2s var(--ease) forwards;
}
@keyframes plBarAnim {
  to { width: 100%; }
}
.pl-pct {
  font-size: .72rem;
  color: rgba(255,255,255,.3);
  letter-spacing: .1em;
}

/* ──────────────────────────────────────────────────────────────
   6. BUTTONS
   ────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--red);
  color: var(--white);
  border-radius: 4px;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  overflow: hidden;
  box-shadow: var(--sh-red);
  transition: box-shadow var(--t2) var(--ease), transform var(--t2) var(--bounce);
}
.btn-primary span {
  padding: 14px 22px;
  display: block;
  white-space: nowrap;
}
.btn-arrow-box {
  padding: 14px 16px;
  background: var(--red-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: padding var(--t2) var(--bounce);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(232,37,26,.48);
}
.btn-primary:hover .btn-arrow-box {
  padding: 14px 22px;
}
.btn-primary i,
.btn-arrow-box i {
  transition: transform var(--t1) var(--ease);
}
.btn-primary:hover i {
  transform: translateX(3px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border: 1.5px solid rgba(255,255,255,.42);
  color: rgba(255,255,255,.82);
  border-radius: 4px;
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all var(--t2) var(--ease);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.75);
  color: var(--white);
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 24px;
  background: var(--red);
  color: var(--white);
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  box-shadow: var(--sh-red);
  transition: all var(--t2) var(--bounce);
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(232,37,26,.46);
}

/* ──────────────────────────────────────────────────────────────
   7. SECTION TAGS & HEADINGS
   ────────────────────────────────────────────────────────────── */
.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.sec-tag::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.sec-tag-light {
  color: rgba(255,255,255,.55);
}
.sec-tag-light::before {
  background: rgba(255,255,255,.4);
}

.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -.02em;
  color: var(--charcoal);
}
.sec-title em {
  font-style: italic;
  color: var(--red);
}
.sec-title-light {
  color: var(--white);
}
.sec-title-light em {
  color: rgba(255,255,255,.55);
}
.em-red {
  color: var(--red) !important;
}

/* Section 2-col header */
.sec-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 52px);
  align-items: end;
  margin-bottom: clamp(36px, 6vw, 60px);
}
.sh-r p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}
.p-light {
  color: rgba(255,255,255,.46);
}
.sec-cta {
  text-align: center;
  margin-top: 44px;
}

/* ──────────────────────────────────────────────────────────────
   8. NAVBAR
   ────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.nav-row {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 70px;
  padding: 0 clamp(16px, 4vw, 40px);
  transition: background var(--t2) var(--ease), box-shadow var(--t2) var(--ease);
}
.navbar.scrolled .nav-row {
  background: rgba(26,18,8,.93);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 2px 40px rgba(0,0,0,.3);
}

/* Logo */
.nav-logo-link {
  flex-shrink: 0;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 9px;
}
.nav-brand-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  overflow: hidden;
}
.nav-brand-icon svg {
  width: 36px;
  height: 36px;
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-brand-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}
.nav-brand-sub {
  font-size: .55rem;
  font-weight: 500;
  color: rgba(255,255,255,.4);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Desktop links */
.nav-links {
  display: flex;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  display: block;
  padding: 7px 12px;
  color: rgba(255,255,255,.68);
  font-size: .83rem;
  font-weight: 500;
  border-radius: 4px;
  white-space: nowrap;
  transition: color var(--t1) var(--ease);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 12px;
  width: calc(100% - 24px);
  height: 1.5px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t2) var(--bounce);
}
.nav-link:hover {
  color: var(--white);
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}
.nav-link.active {
  color: var(--white);
  font-weight: 600;
}

/* CTA button */
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: var(--red);
  color: var(--white);
  border-radius: 3px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: var(--sh-red);
  transition: all var(--t2) var(--bounce);
}
.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(232,37,26,.5);
  color: var(--white);
}
.nav-cta-btn i {
  font-size: .7rem;
  transition: transform var(--t1) var(--ease);
}
.nav-cta-btn:hover i {
  transform: translateX(3px);
}

/* Hamburger */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 7px;
  flex-shrink: 0;
}
.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t2) var(--ease);
  transform-origin: center;
}
.hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg);  }
.hamburger-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu — below navbar, not overlapping hero */
.mob-menu {
  overflow: hidden;
  max-height: 0;
  transition: max-height .42s var(--ease);
  background: rgba(18,12,4,.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mob-menu.open {
  max-height: 600px;
}
.mob-menu ul {
  padding: 14px clamp(16px, 4vw, 32px) 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mob-nav-link {
  display: block;
  padding: 12px 8px;
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  font-weight: 500;
  transition: color var(--t1) var(--ease);
}
.mob-nav-link:hover {
  color: var(--white);
}
.mob-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 14px clamp(16px, 4vw, 32px) 22px;
  padding: 14px 24px;
  background: var(--red);
  color: var(--white);
  border-radius: 3px;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: var(--sh-red);
}

/* ──────────────────────────────────────────────────────────────
   9. HERO SECTION
   ────────────────────────────────────────────────────────────── */
.hero-section {
  min-height: 100svh;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Film grain overlay */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px;
  animation: grainShift 8s steps(1) infinite;
}
@keyframes grainShift {
  0%   { background-position: 0 0 }
  10%  { background-position: -5% -10% }
  20%  { background-position: -15% 5% }
  30%  { background-position: 7% -25% }
  40%  { background-position: -5% 25% }
  50%  { background-position: -15% 10% }
  60%  { background-position: 15% 0% }
  70%  { background-position: 0 15% }
  80%  { background-position: 3% 35% }
  90%  { background-position: -10% 10% }
  100% { background-position: 0 0 }
}

/* Diagonal red stripes */
.hero-stripe {
  position: absolute;
  top: -20%;
  right: -5%;
  width: 38%;
  height: 140%;
  background: var(--red);
  transform: skewX(-8deg);
  opacity: .055;
  z-index: 0;
}
.hero-stripe.hs2 {
  right: 18%;
  opacity: .025;
}

/* Hero grid: 2 columns */
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 1;
  min-height: calc(100svh - 70px);
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(80px, 10vw, 120px) clamp(20px, 4vw, 56px) clamp(48px, 7vw, 80px) clamp(24px, 6vw, 80px);
}

/* Brand name pill */
.hero-brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 7px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  width: fit-content;
  margin-bottom: 20px;
}
.hbp-svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  overflow: hidden;
}
.hbp-svg svg {
  width: 24px;
  height: 24px;
}
.hero-brand-pill span {
  font-family: 'Playfair Display', serif;
  font-size: clamp(.88rem, 2vw, 1.1rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: .03em;
  white-space: nowrap;
}

/* Eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: .6; }
}
.hero-eyebrow span {
  font-size: clamp(.6rem, 1.4vw, .7rem);
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
}

/* Main headline */
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  line-height: .96;
  letter-spacing: -.03em;
  margin-bottom: 26px;
}
.hh-line { display: block; }
.hh1 {
  font-size: clamp(2.8rem, 6.5vw, 5.8rem);
  color: var(--white);
}
.hh2 {
  font-size: clamp(2.8rem, 6.5vw, 5.8rem);
  color: transparent;
  -webkit-text-stroke: 2px var(--red);
  font-style: italic;
  padding-left: clamp(12px, 2.5vw, 22px);
}
.hh3 {
  font-size: clamp(2.8rem, 6.5vw, 5.8rem);
  color: var(--white);
  padding-left: clamp(22px, 4.5vw, 42px);
}

.hero-desc {
  color: rgba(255,255,255,.5);
  font-size: clamp(.88rem, 1.8vw, 1.02rem);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

/* Colour swatch strip */
.color-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.cs-tag {
  font-size: .62rem;
  font-weight: 600;
  color: rgba(255,255,255,.28);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.cs-circles {
  display: flex;
  gap: 7px;
  align-items: center;
}
.cs-dot {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c);
  border: 2px solid rgba(255,255,255,.14);
  cursor: pointer;
  position: relative;
  transition: transform var(--t2) var(--bounce), border-color var(--t1) var(--ease);
}
.cs-dot:hover {
  transform: scale(1.48) translateY(-4px);
  border-color: rgba(255,255,255,.62);
  z-index: 1;
}
.cs-dot::after {
  content: attr(title);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--charcoal);
  font-size: .58rem;
  font-weight: 600;
  padding: 3px 6px;
  border-radius: 3px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t1) var(--ease);
}
.cs-dot:hover::after {
  opacity: 1;
}
.cs-count {
  font-size: .62rem;
  font-weight: 600;
  color: rgba(255,255,255,.28);
  letter-spacing: .1em;
}

/* Hero right — visual column */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  min-height: 500px;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(65px);
  pointer-events: none;
}
.hg1 {
  width: min(380px, 55vw);
  height: min(380px, 55vw);
  background: radial-gradient(circle, rgba(232,37,26,.18) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: glowDrift 12s ease-in-out infinite alternate;
}
.hg2 {
  width: min(220px, 30vw);
  height: min(220px, 30vw);
  background: radial-gradient(circle, rgba(245,197,24,.07) 0%, transparent 70%);
  top: 20%; right: 8%;
  animation: glowDrift 17s ease-in-out infinite alternate-reverse;
}
@keyframes glowDrift {
  to { transform: translate(-48%, -52%) scale(1.14); }
}

/* Center decorative card */
.hero-card {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(250px, 50vw);
  height: min(310px, 62vw);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: translate(-50%, -50%) rotate(-2deg); }
  50%       { transform: translate(-50%, -52%) rotate(2deg); }
}
.hero-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,37,26,.18) 0%, transparent 60%);
}
.hero-card-body {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}
.hero-card-body i {
  font-size: 2.2rem;
  color: var(--red);
  display: block;
  margin-bottom: 10px;
}
.hero-card-body span {
  display: block;
  font-weight: 600;
  font-size: .95rem;
}
.hero-card-body small {
  display: block;
  font-size: .62rem;
  color: rgba(255,255,255,.38);
  letter-spacing: .15em;
  margin-top: 4px;
}

/* Floating stat chips */
.float-chip {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: var(--white);
  padding: 11px 16px;
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  text-align: center;
  animation: chipFloat 5s ease-in-out infinite;
}
.float-chip b {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--charcoal);
  line-height: 1;
}
.float-chip small {
  font-size: .6rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.fc1 { top: 10%; right: 4%; animation-delay: 0s; }
.fc2 { bottom: 20%; right: 1%; animation-delay: .8s; }
.fc3 { top: 48%; right: 0; animation-delay: 1.6s; }
@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* Review floating card */
.hero-review {
  position: absolute;
  bottom: 13%;
  left: -2%;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 16px 18px;
  width: min(228px, 40vw);
  box-shadow: var(--sh-xl);
  border-left: 3px solid var(--red);
  animation: reviewFloat 7s ease-in-out infinite;
}
@keyframes reviewFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-8px) rotate(.8deg); }
}
.hrev-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 7px;
}
.hrev-stars i { color: #F59E0B; font-size: .72rem; }
.hero-review p {
  font-size: .74rem;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 10px;
  font-style: italic;
}
.hrev-author {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hrev-author img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--red);
  flex-shrink: 0;
}
.hrev-author b {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  color: var(--charcoal);
}
.hrev-author small {
  font-size: .6rem;
  color: var(--muted);
}

/* Berger certified spinning badge */
.berger-badge {
  position: absolute;
  top: 9%;
  left: 5%;
  width: 60px;
  height: 60px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--white);
  text-align: center;
  box-shadow: var(--sh-red);
  animation: badgeSpin 20s linear infinite;
}
@keyframes badgeSpin {
  to { transform: rotate(360deg); }
}
.berger-badge i { font-size: .85rem; }
.berger-badge span { font-size: .4rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; line-height: 1.2; }

/* Paint drip */
.paint-drip {
  position: absolute;
  top: 0;
  right: 8%;
  width: 44px;
  pointer-events: none;
}
.paint-drip svg { width: 44px; }
.paint-drip path {
  animation: dripBounce 3s ease-in-out infinite;
}
@keyframes dripBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: clamp(24px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.25);
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  z-index: 3;
}
.sh-wheel {
  width: 18px;
  height: 28px;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 9px;
  position: relative;
}
.sh-wheel::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 5px;
  background: var(--red);
  border-radius: 2px;
  animation: scrollWheel 2s ease infinite;
}
@keyframes scrollWheel {
  0%   { opacity: 1; top: 4px; }
  100% { opacity: 0; top: 15px; }
}

/* ──────────────────────────────────────────────────────────────
   10. TICKER
   ────────────────────────────────────────────────────────────── */
.ticker-bar {
  background: var(--red);
  padding: 11px 0;
  overflow: hidden;
  position: relative;
}
.ticker-bar::before,
.ticker-bar::after {
  content: '';
  position: absolute;
  top: 0;
  width: 50px;
  height: 100%;
  z-index: 1;
}
.ticker-bar::before {
  left: 0;
  background: linear-gradient(to right, var(--red), transparent);
}
.ticker-bar::after {
  right: 0;
  background: linear-gradient(to left, var(--red), transparent);
}
.ticker-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: tickerRoll 28s linear infinite;
}
.ticker-inner span {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
}
.t-dot {
  color: rgba(255,255,255,.38) !important;
  font-size: .52rem !important;
}
@keyframes tickerRoll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ──────────────────────────────────────────────────────────────
   11. STATS STRIP
   ────────────────────────────────────────────────────────────── */
.stats-strip {
  background: var(--charcoal);
  padding: clamp(24px, 5vw, 44px) 0;
}
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px clamp(18px, 4vw, 48px);
  text-align: center;
}
.stat-number {
  line-height: 1;
}
.ctr {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  font-weight: 900;
  color: var(--red);
}
.stat-suffix {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: rgba(232,37,26,.65);
}
.stat-label {
  font-size: clamp(.56rem, .9vw, .68rem);
  font-weight: 500;
  color: rgba(255,255,255,.36);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 4px;
}
.stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.07);
  flex-shrink: 0;
}

/* ──────────────────────────────────────────────────────────────
   12. PRODUCTS SECTION
   ────────────────────────────────────────────────────────────── */
.sec-products {
  padding: clamp(56px, 9vw, 112px) 0;
  background: var(--cream);
}

/* Filter pills */
.filter-row {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px;
  border: 1.5px solid var(--line);
  border-radius: 3px;
  background: var(--white);
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: all var(--t2) var(--bounce);
}
.filter-btn:hover {
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.filter-btn.active {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 20px;
  margin-bottom: 44px;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}

/* Product card */
.product-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  position: relative;
  transition: transform var(--t2) var(--ease), box-shadow var(--t2) var(--ease), border-color var(--t2) var(--ease);
}
.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}
.product-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t2) var(--ease);
}
.product-card:hover::after {
  transform: scaleX(1);
}
.product-image {
  height: clamp(150px, 22vw, 210px);
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-image img {
  max-width: 75%;
  max-height: 85%;
  object-fit: contain;
  transition: transform var(--t3) var(--ease);
}
.product-card:hover .product-image img {
  transform: scale(1.08);
}
.product-badge {
  position: absolute;
  top: 11px;
  left: 11px;
  background: var(--charcoal);
  color: var(--white);
  padding: 4px 11px;
  border-radius: 3px;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.product-info {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
  line-height: 1.2;
}
.product-type {
  display: inline-block;
  padding: 2px 9px;
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 3px;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.product-info p {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}
.product-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--cream);
  color: var(--charcoal);
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  width: fit-content;
  transition: all var(--t2) var(--bounce);
}
.product-btn i {
  font-size: .68rem;
  transition: transform var(--t1) var(--ease);
}
.product-btn:hover {
  background: var(--charcoal);
  color: var(--white);
}
.product-btn:hover i {
  transform: translateX(3px);
}

/* ──────────────────────────────────────────────────────────────
   13. SERVICES SECTION
   ────────────────────────────────────────────────────────────── */
.sec-services {
  padding: clamp(56px, 9vw, 112px) 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.srv-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.02) 0, rgba(255,255,255,.02) 1px, transparent 1px, transparent 56px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.02) 0, rgba(255,255,255,.02) 1px, transparent 1px, transparent 56px);
  pointer-events: none;
}
.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.srv-card {
  padding: clamp(28px, 4vw, 50px) clamp(20px, 3vw, 36px);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
  transition: border-color var(--t2) var(--ease);
}
.srv-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(232,37,26,.06);
  opacity: 0;
  transition: opacity var(--t2) var(--ease);
}
.srv-card:hover {
  border-color: rgba(232,37,26,.3);
}
.srv-card:hover::before {
  opacity: 1;
}
.srv-card-highlight {
  background: rgba(232,37,26,.08);
  border-color: rgba(232,37,26,.2) !important;
}
.srv-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,255,255,.04);
  position: absolute;
  top: 12px;
  right: 16px;
  line-height: 1;
  transition: color var(--t2) var(--ease);
  pointer-events: none;
}
.srv-card:hover .srv-num {
  color: rgba(232,37,26,.12);
}
.srv-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  background: rgba(232,37,26,.12);
  border: 1px solid rgba(232,37,26,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.3rem;
  margin-bottom: 22px;
  transition: all var(--t2) var(--bounce);
}
.srv-card:hover .srv-icon {
  background: var(--red);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
  border-color: var(--red);
}
.srv-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  color: var(--white);
  margin-bottom: 11px;
  line-height: 1.2;
}
.srv-card p {
  color: rgba(255,255,255,.42);
  font-size: .88rem;
  line-height: 1.75;
  margin-bottom: 22px;
}
.srv-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--red);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: gap var(--t1) var(--ease);
}
.srv-link:hover {
  gap: 12px;
}
.srv-link i {
  font-size: .66rem;
}

/* ──────────────────────────────────────────────────────────────
   14. ABOUT / FOUNDERS
   ────────────────────────────────────────────────────────────── */
.sec-about {
  padding-top: clamp(56px, 9vw, 112px);
  background: var(--warm);
}
.about-header {
  text-align: center;
  margin-bottom: clamp(44px, 7vw, 72px);
}

/* Full-bleed founder rows */
.founder-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(380px, 55vw, 560px);
}
.founder-photo-side {
  position: relative;
  overflow: hidden;
}
.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 1.2s var(--ease);
}
.founder-row:hover .founder-img {
  transform: scale(1.04);
}
.founder-photo-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 50%, var(--warm) 100%);
}
.founder-photo-fade-r {
  background: linear-gradient(to left, transparent 50%, var(--warm) 100%);
}
.founder-index {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: rgba(255,255,255,.14);
  line-height: 1;
  pointer-events: none;
}
.founder-info-side {
  display: flex;
  align-items: center;
  background: var(--warm);
  padding: clamp(24px, 3vw, 44px) clamp(18px, 3.5vw, 40px);
}
.founder-info-inner {
  max-width: 460px;
  width: 100%;
}
.founder-role-badge {
  display: inline-block;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  border: 1.5px solid var(--red);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.founder-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: .96;
  letter-spacing: -.03em;
  color: var(--charcoal);
  margin-bottom: 18px;
}
.founder-name em {
  font-style: italic;
  color: var(--red);
}
.founder-line {
  width: 40px;
  height: 3px;
  background: var(--red);
  margin-bottom: 18px;
}
.founder-bio {
  font-size: clamp(.86rem, 1.6vw, .98rem);
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 24px;
}
.founder-bio strong {
  color: var(--charcoal);
  font-weight: 600;
}
.founder-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.fst {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fst-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.8vw, 1.9rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}
.fst-lbl {
  font-size: .6rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.founder-socials {
  display: flex;
  gap: 9px;
}
.founder-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .82rem;
  transition: all var(--t2) var(--bounce);
}
.founder-socials a:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
  transform: translateY(-3px);
}

/* Mission Vision band */
.mv-band {
  background: var(--charcoal);
  padding: clamp(44px, 7vw, 68px) 0;
  margin-top: clamp(44px, 7vw, 72px);
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.mv-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(16px, 3vw, 36px);
}
.mv-divider span {
  font-size: 1.4rem;
  color: rgba(255,255,255,.1);
}
.mv-card {
  padding: clamp(12px, 2vw, 20px) clamp(16px, 3vw, 36px);
}
.mv-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-sm);
  background: rgba(232,37,26,.12);
  border: 1px solid rgba(232,37,26,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1rem;
  margin-bottom: 16px;
}
.mv-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--white);
  margin-bottom: 10px;
}
.mv-card p {
  color: rgba(255,255,255,.42);
  font-size: .88rem;
  line-height: 1.8;
  margin: 0;
}

/* ──────────────────────────────────────────────────────────────
   15. TESTIMONIALS
   ────────────────────────────────────────────────────────────── */
.sec-testimonials {
  padding: clamp(56px, 9vw, 112px) 0;
  background: var(--paper);
}
.rating-display {
  display: flex;
  align-items: center;
  gap: 14px;
}
.rd-score {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1;
}
.rd-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 4px;
}
.rd-stars i { color: #F59E0B; font-size: .88rem; }
.rd-info span {
  font-size: .73rem;
  color: var(--muted);
  font-weight: 500;
}
.testi-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 16px;
  align-items: stretch;
  margin-bottom: 44px;
}
.tcard {
  background: var(--white);
  border-radius: var(--r-md);
  padding: clamp(22px, 3.5vw, 32px) clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--t2) var(--ease), box-shadow var(--t2) var(--ease), border-color var(--t2) var(--ease);
}
.tcard:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}
.tcard-inv {
  background: var(--charcoal);
  border-color: transparent;
}
.tcard-inv .tcard-quote {
  color: var(--red);
}
.tcard-inv > p {
  color: rgba(255,255,255,.68);
}
.tcard-inv .tcard-author b {
  color: var(--white);
}
.tcard-inv .tcard-author span {
  color: rgba(255,255,255,.4);
}
.tcard-inv .tcard-author {
  border-top-color: rgba(255,255,255,.08);
}
.tcard-quote {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: .75;
  color: rgba(232,37,26,.18);
  margin-bottom: 9px;
}
.tcard-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}
.tcard-stars i { color: #F59E0B; font-size: .8rem; }
.tcard > p {
  font-size: .9rem;
  color: var(--ink);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 20px;
  font-style: italic;
}
.tcard-author {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-top: 16px;
  margin-top: auto;
  border-top: 1px solid var(--line);
}
.tcard-author img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--red);
  flex-shrink: 0;
}
.tcard-author b {
  display: block;
  font-size: .83rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.tcard-author span {
  font-size: .7rem;
  color: var(--muted);
}

/* ──────────────────────────────────────────────────────────────
   16. CONTACT SECTION
   ────────────────────────────────────────────────────────────── */
.sec-contact {
  background: var(--cream);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Left info panel */
.contact-left {
  background: var(--charcoal);
  padding: clamp(44px, 7vw, 80px) clamp(24px, 5vw, 68px);
  position: relative;
  overflow: hidden;
}
.contact-left::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(232,37,26,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cl-inner {
  position: relative;
  z-index: 1;
  max-width: 480px;
}
.cl-sub {
  color: rgba(255,255,255,.42);
  margin: 18px 0 32px;
  font-size: .95rem;
  line-height: 1.8;
}
.cl-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.cl-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-sm);
  transition: all var(--t1) var(--ease);
}
.cl-item:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(232,37,26,.22);
}
.cl-ico {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: rgba(232,37,26,.12);
  border: 1px solid rgba(232,37,26,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: .88rem;
  flex-shrink: 0;
}
.cl-item strong {
  display: block;
  font-size: .66rem;
  font-weight: 700;
  color: rgba(255,255,255,.82);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.cl-item span {
  color: rgba(255,255,255,.42);
  font-size: .84rem;
  line-height: 1.55;
}

/* Map art */
.map-art {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  height: 145px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.03) 0, rgba(255,255,255,.03) 1px, transparent 1px, transparent 26px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.03) 0, rgba(255,255,255,.03) 1px, transparent 1px, transparent 26px);
}
.map-pin-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.map-pin-wrap i {
  font-size: 1.9rem;
  color: var(--red);
  animation: pinBounce 2s ease-in-out infinite;
}
@keyframes pinBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}
.map-ping {
  width: 26px;
  height: 7px;
  background: rgba(232,37,26,.25);
  border-radius: 50%;
  animation: pingShadow 2s ease-in-out infinite;
}
@keyframes pingShadow {
  0%, 100% { transform: scaleX(1); opacity: .5; }
  50%       { transform: scaleX(.6); opacity: .2; }
}
.map-open-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  background: var(--red);
  color: var(--white);
  border-radius: 3px;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: all var(--t2) var(--bounce);
}
.map-open-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-red);
  color: var(--white);
}

/* Right form panel */
.contact-right {
  background: var(--warm);
  padding: clamp(44px, 7vw, 80px) clamp(24px, 5vw, 68px);
}
.cr-inner {
  max-width: 500px;
}
.cr-inner h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.cr-inner > p {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: .88rem;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: .66rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.optional-tag {
  font-weight: 400;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: var(--charcoal);
  transition: all var(--t1) var(--ease);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  background: var(--white);
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232,37,26,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
  opacity: .65;
}
.file-upload-box {
  position: relative;
}
.file-upload-box input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}
.file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 20px 14px;
  border: 2px dashed var(--line);
  border-radius: var(--r-sm);
  background: var(--paper);
  color: var(--muted);
  cursor: pointer;
  text-align: center;
  transition: all var(--t1) var(--ease);
}
.file-upload-label:hover {
  border-color: var(--red);
  background: rgba(232,37,26,.04);
  color: var(--red);
}
.file-upload-label i {
  font-size: 1.25rem;
  color: var(--red);
}
.file-upload-label span {
  font-size: .84rem;
  font-weight: 500;
}
.file-upload-label small {
  font-size: .68rem;
  color: var(--muted);
}

/* ──────────────────────────────────────────────────────────────
   17. FOOTER
   ────────────────────────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
}
.footer-top-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, rgba(232,37,26,.3) 100%);
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(36px, 6vw, 72px);
  padding: clamp(44px, 7vw, 68px) clamp(24px, 5vw, 72px) clamp(36px, 6vw, 56px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
}
.footer-logo svg {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.footer-logo-name {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo-sub {
  display: block;
  font-size: .54rem;
  font-weight: 500;
  color: rgba(255,255,255,.32);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.footer-brand p {
  color: rgba(255,255,255,.34);
  font-size: .86rem;
  line-height: 1.8;
  margin-bottom: 22px;
}
.footer-socials {
  display: flex;
  gap: 9px;
}
.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.36);
  font-size: .8rem;
  transition: all var(--t2) var(--bounce);
}
.footer-socials a:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-3px);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 36px);
}
.footer-col h5 {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: .84rem;
  color: rgba(255,255,255,.34);
  margin-bottom: 10px;
  transition: color var(--t1) var(--ease);
}
.footer-col a:hover {
  color: rgba(255,255,255,.78);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px clamp(24px, 5vw, 72px);
}
.footer-bottom span {
  font-size: .75rem;
  color: rgba(255,255,255,.22);
}
.footer-legal {
  display: flex;
  gap: 18px;
}
.footer-legal a {
  font-size: .72rem;
  color: rgba(255,255,255,.22);
  transition: color var(--t1) var(--ease);
}
.footer-legal a:hover {
  color: rgba(255,255,255,.6);
}

/* ──────────────────────────────────────────────────────────────
   18. CHAT WIDGET
   ────────────────────────────────────────────────────────────── */
.chat-fab-btn {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  box-shadow: var(--sh-red);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: all var(--t2) var(--bounce);
}
.chat-fab-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 40px rgba(232,37,26,.5);
}
.fab-close { display: none; }
.chat-fab-btn.open .fab-open  { display: none; }
.chat-fab-btn.open .fab-close { display: block; }

.chat-widget {
  position: fixed;
  bottom: 86px;
  right: 22px;
  width: min(330px, calc(100vw - 36px));
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--sh-xl);
  z-index: 1000;
  overflow: hidden;
  transform: translateY(20px) scale(.95);
  opacity: 0;
  pointer-events: none;
  transition: all var(--t2) var(--bounce);
  border: 1px solid rgba(0,0,0,.05);
}
.chat-widget.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}
.cw-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  background: var(--charcoal);
}
.cw-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(232,37,26,.2);
  border: 1.5px solid rgba(232,37,26,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: .82rem;
  flex-shrink: 0;
}
.cw-title {
  flex: 1;
}
.cw-title b {
  display: block;
  color: var(--white);
  font-size: .85rem;
}
.cw-title span {
  color: rgba(255,255,255,.42);
  font-size: .66rem;
  display: flex;
  align-items: center;
  gap: 4px;
}
.cw-close-btn {
  color: rgba(255,255,255,.48);
  font-size: 1rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--t1) var(--ease);
}
.cw-close-btn:hover {
  background: rgba(255,255,255,.2);
  color: var(--white);
}
.cw-body {
  display: flex;
  flex-direction: column;
  height: 320px;
}
.cw-messages {
  flex: 1;
  padding: 14px 12px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--paper);
}
.cw-messages::-webkit-scrollbar { width: 3px; }
.cw-messages::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
.chat-msg {
  max-width: 84%;
  padding: 9px 13px;
  border-radius: 14px;
  font-size: .83rem;
  line-height: 1.5;
  animation: chatPop .3s var(--bounce);
}
@keyframes chatPop {
  from { opacity: 0; transform: translateY(8px) scale(.95); }
  to   { opacity: 1; transform: none; }
}
.chat-msg.bot {
  background: var(--white);
  color: var(--ink);
  border-bottom-left-radius: 3px;
  box-shadow: var(--sh-xs);
  align-self: flex-start;
}
.chat-msg.user {
  background: var(--red);
  color: var(--white);
  border-bottom-right-radius: 3px;
  align-self: flex-end;
}
.chat-msg p {
  margin: 0 0 3px;
  color: inherit;
  font-size: inherit;
}
.msg-time {
  font-size: .6rem;
  opacity: .48;
  display: block;
  text-align: right;
}
.cw-input-row {
  display: flex;
  gap: 7px;
  padding: 10px 11px;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.cw-input-row input {
  flex: 1;
  padding: 9px 13px;
  border: 1.5px solid var(--line);
  border-radius: 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: .83rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color var(--t1) var(--ease);
}
.cw-input-row input:focus {
  border-color: var(--red);
}
.cw-input-row button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  box-shadow: 0 3px 10px rgba(232,37,26,.3);
  transition: all var(--t2) var(--bounce);
}
.cw-input-row button:hover {
  transform: scale(1.08);
}

/* ──────────────────────────────────────────────────────────────
   19. NOTIFICATIONS
   ────────────────────────────────────────────────────────────── */
.toast-notify {
  position: fixed;
  top: 88px;
  right: 18px;
  padding: 13px 16px;
  border-radius: var(--r-sm);
  color: var(--white);
  box-shadow: var(--sh-lg);
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: min(360px, calc(100vw - 36px));
  font-size: .86rem;
  font-weight: 500;
  animation: toastIn .4s var(--bounce);
}
@keyframes toastIn {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: none; }
}
@keyframes toastOut {
  to { opacity: 0; transform: translateX(80px); }
}
.toast-notify.success { background: linear-gradient(135deg, #10B981, #059669); }
.toast-notify.error   { background: linear-gradient(135deg, #EF4444, #DC2626); }
.toast-notify.info    { background: linear-gradient(135deg, #3B82F6, #2563EB); }
.toast-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  margin-left: auto;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity var(--t1) var(--ease);
}
.toast-close:hover { opacity: 1; color: var(--white); }

/* ──────────────────────────────────────────────────────────────
   20. SCROLL REVEAL CLASSES
   ────────────────────────────────────────────────────────────── */
.sr {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.sr-l {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.sr-r {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.sr.vis, .sr-l.vis, .sr-r.vis {
  opacity: 1;
  transform: translate(0);
}
/* Stagger delays */
.d1 { transition-delay: .05s; }
.d2 { transition-delay: .12s; }
.d3 { transition-delay: .19s; }
.d4 { transition-delay: .26s; }
.d5 { transition-delay: .33s; }
.d6 { transition-delay: .4s;  }

/* ──────────────────────────────────────────────────────────────
   21. RESPONSIVE BREAKPOINTS
   ────────────────────────────────────────────────────────────── */

/* 1200px */
@media (max-width: 1200px) {
  .footer-main       { padding: 52px 36px 44px; }
  .footer-bottom     { padding: 16px 36px; }
  .contact-left,
  .contact-right     { padding: 52px 36px; }
  .hero-left         { padding: 90px 28px 56px 40px; }
}

/* 1024px — tablet landscape */
@media (max-width: 1024px) {
  /* Navbar: hamburger shows, desktop links/cta hide */
  .nav-links    { display: none; }
  .nav-cta-btn  { display: none; }
  .nav-brand-sub { display: none; }
  .hamburger-btn { display: flex; }

  /* Hero: single column, centred */
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-section { min-height: auto; }
  .hero-left {
    padding: 92px 24px 52px;
    text-align: center;
    align-items: center;
  }
  .hero-brand-pill  { margin: 0 auto 18px; }
  .hero-eyebrow     { justify-content: center; }
  .hero-desc        { max-width: 560px; text-align: center; }
  .hero-buttons     { justify-content: center; }
  .color-strip      { justify-content: center; }
  .hh2              { padding-left: 0; }
  .hh3              { padding-left: 0; }
  .hero-right       { display: none; }
  .scroll-hint      { display: none; }

  /* Services: 2 col on tablet */
  .srv-grid { grid-template-columns: 1fr 1fr; gap: 2px; }

  /* Founders: stack vertically */
  .founder-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .founder-row-alt .founder-info-side  { order: 2; }
  .founder-row-alt .founder-photo-side { order: 1; }
  .founder-photo-side { height: min(380px, 56vw); }
  .founder-img { height: 100%; object-fit: cover; }
  .founder-photo-fade {
    background: linear-gradient(to bottom, transparent 50%, var(--warm) 100%) !important;
  }
  .founder-photo-fade-r {
    background: linear-gradient(to bottom, transparent 50%, var(--warm) 100%) !important;
  }
  .founder-info-side {
    padding: 28px 24px 36px;
    justify-content: flex-start;
  }
  .founder-info-inner { max-width: 100%; }

  /* Mission Vision: stack */
  .mv-grid { grid-template-columns: 1fr; }
  .mv-divider { flex-direction: row; padding: 10px 0; }
  .mv-card { padding: 24px 0; }

  /* Testimonials: stack */
  .testi-grid { grid-template-columns: 1fr; gap: 14px; }

  /* Contact: stack */
  .contact-layout { grid-template-columns: 1fr; }
  .contact-left,
  .contact-right { padding: 48px 24px; }
  .cl-inner,
  .cr-inner      { max-width: 100%; }

  /* Footer */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 24px 40px;
  }
  .footer-links  { grid-template-columns: repeat(3, 1fr); }
  .footer-bottom { padding: 16px 24px; flex-direction: column; text-align: center; }

  /* Section header */
  .sec-header { grid-template-columns: 1fr; gap: 14px; }
}

/* 768px */
@media (max-width: 768px) {
  .stat-sep { display: none; }
  .stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .stat-col { padding: 14px 10px; }

  .srv-grid { grid-template-columns: 1fr; }

  .form-row-2 { grid-template-columns: 1fr; gap: 0; }

  .footer-links { grid-template-columns: 1fr 1fr; gap: 24px; }

  .founder-photo-side { height: min(300px, 50vw); }

  .testi-grid { gap: 12px; }
}

/* 640px */
@media (max-width: 640px) {
  .hero-left { padding: 84px 18px 48px; }
  .hh1, .hh2, .hh3 { font-size: clamp(2.5rem, 11vw, 3.8rem); }
  .hh2 { -webkit-text-stroke: 1.5px var(--red); }

  .founder-photo-side { height: 280px; }
  .founder-name { font-size: clamp(1.9rem, 7vw, 2.8rem); }

  .filter-row { justify-content: center; }
  .products-grid { grid-template-columns: 1fr; }

  .footer-links { grid-template-columns: 1fr 1fr; }
}

/* 480px */
@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: stretch; width: 100%; }
  .btn-secondary,
  .btn-primary  { width: 100%; justify-content: center; }
  .btn-arrow-box { margin-left: auto; }

  .stats-row  { grid-template-columns: 1fr 1fr; }
  .stat-col   { padding: 12px 6px; }
  .ctr        { font-size: 1.7rem; }

  .footer-links { grid-template-columns: 1fr 1fr; }

  .pl-logo-row   { flex-direction: column; align-items: center; gap: 12px; }
  .pl-text       { text-align: center; }
  .pl-name       { font-size: 1.1rem; }

  .chat-fab-btn  { bottom: 16px; right: 16px; width: 48px; height: 48px; }
  .chat-widget   { bottom: 76px; right: 14px; }

  .mv-band { padding: 36px 0; }
}

/* 360px */
@media (max-width: 360px) {
  .hh1, .hh2, .hh3 { font-size: 2.3rem; }
  .footer-links     { grid-template-columns: 1fr; }
  .nav-brand-name   { font-size: .88rem; }
  .sec-title        { font-size: 1.8rem; }
  .stats-row        { grid-template-columns: 1fr 1fr; }
}