/* ============================================================
   FIRECLAY™ — Premium Light Design System v2
   Blueprints to Buildings
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Barlow+Condensed:wght@400;600;700&display=swap');

/* ── VARIABLES ── */
:root {
  --ivory:      #FAFAF7;
  --white:      #FFFFFF;
  --sand:       #F5F0E8;
  --sand-mid:   #EDE5D4;
  --concrete:   #E8E4DC;
  --warm-grey:  #9E9690;
  --stone:      #6B6560;
  --charcoal:   #2D2926;
  --ink:        #1A1714;

  --terracotta: #C8593A;
  --terra-light:#E07A5F;
  --terra-pale: #F5EDE9;
  --gold:       #B8860B;
  --gold-light: #D4A843;

  --shadow-sm:  0 2px 12px rgba(45,41,38,0.07);
  --shadow-md:  0 8px 32px rgba(45,41,38,0.10);
  --shadow-lg:  0 20px 60px rgba(45,41,38,0.12);

  --nav-h: 76px;
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--ivory);
  color: var(--charcoal);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--sand); }
::-webkit-scrollbar-thumb { background: var(--terracotta); border-radius: 10px; }

/* ── LOADER ── */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
#loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo-wrap { animation: loaderPop 0.6s var(--ease) 0.2s both; }
.loader-logo-wrap img { height: 56px; width: auto; }
.loader-progress { width: 180px; height: 3px; background: var(--concrete); border-radius: 3px; overflow: hidden; }
.loader-bar-fill {
  height: 100%; width: 0; background: var(--terracotta); border-radius: 3px;
  animation: fillBar 2s var(--ease) 0.4s forwards;
}
.loader-text {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--warm-grey); animation: loaderPop 0.5s var(--ease) 0.9s both;
}
@keyframes loaderPop { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:none; } }
@keyframes fillBar { to { width: 100%; } }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%;
  transition: background 0.5s var(--ease), box-shadow 0.5s;
}
#navbar.at-top { background: transparent; }
#navbar.scrolled {
  background: rgba(250,250,247,0.96);
  backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(45,41,38,0.08), var(--shadow-sm);
}

.nav-logo img { height: 42px; width: auto; transition: transform 0.3s; }
.nav-logo:hover img { transform: scale(1.03); }

.nav-center { display: flex; align-items: center; gap: 38px; }
.nav-center a {
  font-size: 13px; font-weight: 500; color: var(--stone);
  letter-spacing: 0.3px; position: relative; padding-bottom: 2px;
  transition: color 0.3s;
}
.nav-center a::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 0; height: 2px; background: var(--terracotta); border-radius: 2px;
  transition: width 0.35s var(--ease);
}
.nav-center a:hover,
.nav-center a.active { color: var(--terracotta); }
.nav-center a:hover::after,
.nav-center a.active::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-phone {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; color: var(--charcoal);
}
.nav-phone svg { width: 15px; height: 15px; color: var(--terracotta); }
.nav-btn {
  padding: 10px 26px;
  background: var(--terracotta);
  color: var(--white) !important;
  font-size: 12px; font-weight: 700; letter-spacing: 0.8px;
  border-radius: 40px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 14px rgba(200,89,58,0.3);
}
.nav-btn:hover { background: #A8432A; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,89,58,0.35); }
.nav-btn::after { display: none !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  background: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 36px;
  transform: translateX(-100%);
  transition: transform 0.55s var(--ease);
}
.mobile-nav.open { transform: none; }
.mobile-nav a { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--charcoal); transition: color 0.3s; }
.mobile-nav a:hover { color: var(--terracotta); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--white);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 6%;
  padding-top: var(--nav-h);
  position: relative; overflow: hidden;
  gap: 48px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(200,89,58,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 0% 100%, rgba(184,134,11,0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* Blueprint grid accent */
.hero::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background-image:
    linear-gradient(rgba(200,89,58,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,89,58,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none; z-index: 0;
}

.hero-left { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--terra-pale); border: 1px solid rgba(200,89,58,0.2);
  padding: 7px 16px; border-radius: 40px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.5px; color: var(--terracotta);
  margin-bottom: 28px;
  opacity: 0; animation: slideUp 0.7s var(--ease) 0.3s forwards;
}
.hero-badge span { width: 6px; height: 6px; background: var(--terracotta); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 6.5vw, 88px);
  font-weight: 700; line-height: 1.0;
  color: var(--ink); margin-bottom: 24px;
  opacity: 0; animation: slideUp 0.8s var(--ease) 0.5s forwards;
}
.hero-title em { font-style: italic; color: var(--terracotta); }
.hero-title .accent-line {
  display: block; position: relative;
}
.hero-title .accent-line::after {
  content: '';
  position: absolute; bottom: 6px; left: 0;
  width: 100%; height: 8px;
  background: rgba(200,89,58,0.15);
  z-index: -1; border-radius: 4px;
}

.hero-desc {
  font-size: 16px; line-height: 1.75; color: var(--stone);
  max-width: 460px; margin-bottom: 40px;
  opacity: 0; animation: slideUp 0.8s var(--ease) 0.7s forwards;
}

.hero-actions {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: slideUp 0.8s var(--ease) 0.9s forwards;
}
.btn-filled {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: var(--terracotta); color: var(--white);
  font-size: 14px; font-weight: 700; border-radius: 40px;
  box-shadow: 0 6px 20px rgba(200,89,58,0.3);
  transition: all 0.3s var(--ease);
}
.btn-filled:hover { background: #A8432A; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(200,89,58,0.35); }
.btn-filled svg { width: 16px; height: 16px; transition: transform 0.3s; }
.btn-filled:hover svg { transform: translateX(3px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  border: 2px solid var(--concrete);
  color: var(--charcoal); font-size: 14px; font-weight: 600; border-radius: 40px;
  transition: all 0.3s var(--ease);
}
.btn-ghost:hover { border-color: var(--terracotta); color: var(--terracotta); background: var(--terra-pale); }

.hero-trust {
  display: flex; align-items: center; gap: 20px; margin-top: 40px;
  opacity: 0; animation: slideUp 0.7s var(--ease) 1.1s forwards;
}
.hero-trust-avatars { display: flex; }
.hero-trust-avatars span {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2.5px solid white;
  background: var(--sand-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--stone);
  margin-left: -10px;
}
.hero-trust-avatars span:first-child { margin-left: 0; }
.hero-trust-text { font-size: 13px; color: var(--stone); line-height: 1.4; }
.hero-trust-text strong { color: var(--charcoal); }

/* Hero Right — image stack */
.hero-right {
  position: relative; z-index: 1;
  height: 580px; display: flex; align-items: center;
  opacity: 0; animation: slideRight 0.9s var(--ease) 0.6s forwards;
}
.hero-img-main {
  width: 78%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: 16px; box-shadow: var(--shadow-lg);
  position: absolute; right: 0; top: 0;
}
.hero-img-accent {
  width: 52%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 12px; box-shadow: var(--shadow-lg);
  position: absolute; left: 0; bottom: 40px;
  border: 4px solid white;
}
.hero-stat-card {
  position: absolute; top: 40px; left: 20px;
  background: white; border-radius: 14px;
  padding: 16px 20px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 14px;
  animation: float 4s ease-in-out infinite 1.5s;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.hero-stat-icon { width: 44px; height: 44px; background: var(--terra-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.hero-stat-icon svg { width: 22px; height: 22px; color: var(--terracotta); }
.hero-stat-val { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 700; color: var(--ink); line-height: 1; }
.hero-stat-lbl { font-size: 11px; color: var(--warm-grey); letter-spacing: 0.3px; }

.hero-badge-card {
  position: absolute; bottom: 120px; right: -10px;
  background: var(--terracotta); border-radius: 12px;
  padding: 14px 18px; box-shadow: 0 8px 24px rgba(200,89,58,0.3);
  animation: float 4s ease-in-out infinite 2.5s;
}
.hero-badge-card p { font-size: 12px; font-weight: 700; color: white; }
.hero-badge-card span { font-size: 11px; color: rgba(255,255,255,0.75); }

/* ── TICKER / MARQUEE ── */
.ticker { background: var(--charcoal); padding: 13px 0; overflow: hidden; }
.ticker-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-track span { font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.7); padding: 0 28px; }
.ticker-track em { color: var(--terra-light); font-style: normal; padding: 0 8px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION COMMONS ── */
.section { padding: 100px 6%; }
.section.bg-sand { background: var(--sand); }
.section.bg-white { background: var(--white); }
.section.bg-ivory { background: var(--ivory); }

.label-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--terracotta);
  margin-bottom: 14px;
}
.label-tag::before { content: ''; width: 24px; height: 2px; background: var(--terracotta); border-radius: 2px; }

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 700; line-height: 1.1; color: var(--ink);
  margin-bottom: 16px;
}
.section-heading em { font-style: italic; color: var(--terracotta); }

.section-sub { font-size: 16px; color: var(--stone); line-height: 1.75; max-width: 540px; }

/* ── SCROLL REVEAL ── */
.sr { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.sr.visible { opacity: 1; transform: none; }
.sr-left { opacity: 0; transform: translateX(-28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.sr-left.visible { opacity: 1; transform: none; }
.sr-right { opacity: 0; transform: translateX(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.sr-right.visible { opacity: 1; transform: none; }
.sr-d1 { transition-delay: 0.1s; }
.sr-d2 { transition-delay: 0.18s; }
.sr-d3 { transition-delay: 0.26s; }
.sr-d4 { transition-delay: 0.34s; }
.sr-d5 { transition-delay: 0.42s; }
.sr-d6 { transition-delay: 0.5s; }

/* ── STATS ROW ── */
.stats-section {
  padding-top: 72px;
  padding-bottom: 72px;
}
.stats-shell {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(245, 240, 232, 0.96) 0%, rgba(255, 255, 255, 0.98) 42%, rgba(245, 237, 233, 0.94) 100%);
  border: 1px solid rgba(232, 228, 220, 0.9);
  box-shadow: var(--shadow-lg);
}
.stats-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(212, 168, 67, 0.15) 0%, transparent 34%),
    radial-gradient(circle at bottom left, rgba(200, 89, 58, 0.10) 0%, transparent 38%);
  pointer-events: none;
}
.stats-shell::after {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(184, 134, 11, 0.12);
  border-radius: 22px;
  pointer-events: none;
}
.stats-intro {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin-bottom: 32px;
}
.stats-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat-box {
  position: relative;
  overflow: hidden;
  min-height: 200px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(12px);
  padding: 28px 24px 26px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 14px 34px rgba(45,41,38,0.08);
  text-align: left;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  width: 52px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--terracotta), var(--gold-light));
}
.stat-box:hover {
  background: rgba(255,255,255,0.92);
  border-color: rgba(200,89,58,0.18);
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(45,41,38,0.12);
}
.stat-kicker {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(26,23,20,0.04);
  color: var(--stone);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 0.95;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 2px;
}
.stat-num span {
  font-size: 64px;
}
.stat-label {
  max-width: 140px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 600;
}

/* ── ABOUT SECTION ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-imgs { position: relative; }
.about-img-primary { width: 80%; aspect-ratio: 3/4; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow-lg); }
.about-img-secondary {
  width: 55%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 16px; box-shadow: var(--shadow-md);
  position: absolute; right: 0; bottom: -32px;
  border: 5px solid var(--white);
}
.about-exp-badge {
  position: absolute; top: 24px; right: -8px;
  background: var(--terracotta); border-radius: 14px;
  padding: 18px 22px; text-align: center;
  box-shadow: 0 8px 24px rgba(200,89,58,0.35);
}
.about-exp-badge .num { font-family: 'Barlow Condensed', sans-serif; font-size: 40px; font-weight: 700; color: white; line-height: 1; }
.about-exp-badge .lbl { font-size: 11px; color: rgba(255,255,255,0.8); letter-spacing: 0.5px; margin-top: 2px; }

.about-content { padding-bottom: 32px; }
.about-features-list { display: flex; flex-direction: column; gap: 0; margin-top: 32px; }
.about-feat {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--concrete);
  transition: transform 0.3s;
}
.about-feat:last-child { border-bottom: none; }
.about-feat:hover { transform: translateX(4px); }
.feat-icon {
  width: 44px; height: 44px; background: var(--terra-pale);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feat-icon svg { width: 22px; height: 22px; color: var(--terracotta); }
.feat-body h4 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.feat-body p { font-size: 13px; color: var(--stone); line-height: 1.6; }

/* ── CATEGORIES ── */
.cats-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 24px; flex-wrap: wrap; }
.cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cat-card {
  background: var(--white); border-radius: 16px;
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
  cursor: pointer;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.cat-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.cat-card:hover .cat-card-img img { transform: scale(1.07); }
.cat-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,23,20,0.5) 0%, transparent 55%);
}
.cat-card-num {
  position: absolute; top: 12px; right: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 2px;
  color: rgba(255,255,255,0.8);
  background: rgba(0,0,0,0.25); backdrop-filter: blur(4px);
  padding: 3px 10px; border-radius: 20px;
}
.cat-card-body { padding: 18px 20px 20px; }
.cat-card-body h3 { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.cat-card-body p { font-size: 12px; color: var(--warm-grey); line-height: 1.5; }
.cat-card-footer {
  padding: 0 20px 18px;
  display: flex; align-items: center; justify-content: space-between;
}
.cat-arrow {
  width: 34px; height: 34px; background: var(--terra-pale);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, transform 0.3s;
}
.cat-card:hover .cat-arrow { background: var(--terracotta); transform: translateX(3px); }
.cat-arrow svg { width: 15px; height: 15px; color: var(--terracotta); transition: color 0.3s; }
.cat-card:hover .cat-arrow svg { color: white; }
.cat-brand-pills { display: flex; gap: 5px; flex-wrap: wrap; }
.brand-pill { font-size: 10px; font-weight: 600; background: var(--sand); color: var(--stone); padding: 3px 8px; border-radius: 20px; letter-spacing: 0.3px; }

/* View All Button */
.view-all-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: var(--terracotta);
  padding: 10px 0; border-bottom: 2px solid var(--terracotta);
  transition: gap 0.3s;
}
.view-all-btn:hover { gap: 12px; }
.view-all-btn svg { width: 16px; height: 16px; }

/* ── BRANDS ── */
.brands-section {
  background: var(--white);
  padding-top: 76px;
  padding-bottom: 76px;
}
.brands-shell {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.98) 0%, rgba(250,250,247,0.98) 46%, rgba(245,240,232,0.96) 100%);
  border: 1px solid rgba(232,228,220,0.95);
  box-shadow: var(--shadow-lg);
}
.brands-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left top, rgba(200,89,58,0.08) 0%, transparent 30%),
    radial-gradient(circle at right bottom, rgba(212,168,67,0.14) 0%, transparent 32%);
  pointer-events: none;
}
.brands-shell::after {
  content: '';
  position: absolute;
  inset: 18px;
  border-radius: 22px;
  border: 1px solid rgba(184,134,11,0.10);
  pointer-events: none;
}
.brands-header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  flex-wrap: wrap;
}
.brands-copy {
  max-width: 620px;
}
.brands-summary {
  min-width: 280px;
  max-width: 320px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(255,255,255,0.88);
  box-shadow: 0 14px 34px rgba(45,41,38,0.08);
}
.brands-summary-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 54px;
  line-height: 1;
  color: var(--terracotta);
  flex-shrink: 0;
}
.brands-summary-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.brands-summary-text strong {
  font-size: 15px;
  color: var(--ink);
}
.brands-summary-text span {
  font-size: 13px;
  line-height: 1.6;
  color: var(--stone);
}
.brands-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.brand-chip {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.8);
  border-radius: 18px;
  padding: 22px 16px;
  text-align: center;
  border: 1px solid rgba(232,228,220,0.95);
  box-shadow: 0 10px 24px rgba(45,41,38,0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.brand-chip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,89,58,0.06), rgba(212,168,67,0.05));
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.brand-chip:hover {
  background: rgba(255,255,255,0.96);
  border-color: rgba(200,89,58,0.18);
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(45,41,38,0.10);
}
.brand-chip:hover::before { opacity: 1; }
.brand-chip span {
  position: relative;
  z-index: 1;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: var(--stone);
  text-transform: uppercase;
  transition: color 0.3s;
}
.brand-chip:hover span { color: var(--terracotta); }

/* ── HOW IT WORKS ── */
.how-section {
  background: var(--ivory);
  padding-top: 76px;
  padding-bottom: 76px;
}
.how-shell {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(250,250,247,0.98) 0%, rgba(255,255,255,0.98) 48%, rgba(245,240,232,0.96) 100%);
  border: 1px solid rgba(232,228,220,0.95);
  box-shadow: var(--shadow-lg);
}
.how-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(212,168,67,0.12) 0%, transparent 28%),
    radial-gradient(circle at bottom right, rgba(200,89,58,0.08) 0%, transparent 32%);
  pointer-events: none;
}
.how-shell::after {
  content: '';
  position: absolute;
  inset: 18px;
  border-radius: 22px;
  border: 1px solid rgba(184,134,11,0.10);
  pointer-events: none;
}
.how-header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  flex-wrap: wrap;
}
.how-copy { max-width: 620px; }
.how-summary {
  min-width: 280px;
  max-width: 320px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(255,255,255,0.88);
  box-shadow: 0 14px 34px rgba(45,41,38,0.08);
}
.how-summary-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 54px;
  line-height: 1;
  color: var(--terracotta);
  flex-shrink: 0;
}
.how-summary-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.how-summary-text strong { font-size: 15px; color: var(--ink); }
.how-summary-text span { font-size: 13px; line-height: 1.6; color: var(--stone); }
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
  position: relative;
  z-index: 1;
}
.how-grid::before {
  content: '';
  position: absolute; top: 38px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,89,58,0.18), rgba(212,168,67,0.18), transparent);
  z-index: 0;
}
.how-step {
  position: relative;
  z-index: 1;
  min-height: 240px;
  padding: 26px 22px 24px;
  border-radius: 22px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(232,228,220,0.95);
  box-shadow: 0 12px 28px rgba(45,41,38,0.06);
  text-align: left;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.how-step:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.95);
  border-color: rgba(200,89,58,0.18);
  box-shadow: 0 20px 40px rgba(45,41,38,0.10);
}
.how-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}
.how-step-num {
  width: 62px; height: 62px;
  background: linear-gradient(135deg, var(--terra-pale), rgba(255,255,255,0.9));
  border: 1px solid rgba(200,89,58,0.14);
  border-radius: 18px; display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 30px; font-weight: 700; color: var(--terracotta);
  transition: all 0.3s;
}
.how-step-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(26,23,20,0.04);
  color: var(--stone);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}
.how-step:hover .how-step-num { background: linear-gradient(135deg, var(--terracotta), var(--terra-light)); color: white; }
.how-step h4 { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.how-step p { font-size: 14px; color: var(--stone); line-height: 1.75; }

/* ── PRODUCT CARDS ── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px,1fr)); gap: 20px; }
.product-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.product-img { position: relative; aspect-ratio: 1.1; overflow: hidden; background: var(--sand); }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.product-card:hover .product-img img { transform: scale(1.06); }
.product-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--terracotta); color: white;
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 12px; border-radius: 20px;
}
.product-info { padding: 18px 18px 20px; }
.product-cat-lbl { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--terracotta); margin-bottom: 6px; }
.product-name { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 6px; line-height: 1.3; }
.product-brands-text { font-size: 12px; color: var(--warm-grey); margin-bottom: 16px; }
.product-btns { display: flex; gap: 8px; }
.pbtn {
  flex: 1; padding: 10px 8px; border-radius: 10px;
  font-size: 12px; font-weight: 700; text-align: center;
  transition: all 0.25s; cursor: pointer; display: block;
}
.pbtn.solid { background: var(--terracotta); color: white; }
.pbtn.solid:hover { background: #A8432A; }
.pbtn.outline { border: 1.5px solid var(--concrete); color: var(--stone); }
.pbtn.outline:hover { border-color: var(--terracotta); color: var(--terracotta); background: var(--terra-pale); }

/* ── SIDEBAR (products page) ── */
.products-layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; padding: 64px 6%; }
.sidebar { position: sticky; top: calc(var(--nav-h) + 16px); height: fit-content; }
.sidebar-card { background: var(--white); border-radius: 16px; padding: 24px; box-shadow: var(--shadow-sm); margin-bottom: 16px; }
.sidebar-title { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--concrete); }
.filter-opt {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0; cursor: pointer; border-bottom: 1px solid var(--ivory);
  transition: color 0.2s;
}
.filter-opt:last-child { border-bottom: none; }
.filter-opt:hover { color: var(--terracotta); }
.filter-check {
  width: 18px; height: 18px; border: 2px solid var(--concrete);
  border-radius: 5px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.2s, border-color 0.2s;
}
.filter-opt.on .filter-check { background: var(--terracotta); border-color: var(--terracotta); }
.filter-opt.on .filter-check::after { content:'✓'; color: white; font-size: 11px; font-weight: 700; }
.filter-opt span { font-size: 13px; color: var(--charcoal); }
.filter-count { margin-left: auto; font-size: 11px; color: var(--warm-grey); background: var(--sand); padding: 2px 7px; border-radius: 10px; }
.contractor-cta {
  background: linear-gradient(135deg, var(--terracotta), #A8432A);
  border-radius: 14px; padding: 22px 20px; text-align: center;
}
.contractor-cta h4 { font-size: 15px; font-weight: 700; color: white; margin-bottom: 6px; }
.contractor-cta p { font-size: 12px; color: rgba(255,255,255,0.8); margin-bottom: 14px; line-height: 1.5; }
.contractor-cta a { display: block; background: white; color: var(--terracotta); font-size: 12px; font-weight: 700; padding: 10px 16px; border-radius: 8px; transition: background 0.3s; }
.contractor-cta a:hover { background: var(--ivory); }

/* ── TESTIMONIALS ── */
.testi-section { background: var(--sand); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.testi-card {
  background: var(--white); border-radius: 20px;
  padding: 32px 28px; box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.testi-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testi-stars svg { width: 16px; height: 16px; fill: var(--gold-light); color: var(--gold-light); }
.testi-text {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-style: italic; color: var(--charcoal);
  line-height: 1.7; margin-bottom: 22px;
}
.testi-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--concrete); padding-top: 18px; }
.testi-ava {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--terra-pale); display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; color: var(--terracotta);
}
.testi-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.testi-role { font-size: 12px; color: var(--warm-grey); }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--charcoal);
  padding: 30px 6%;
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 48px;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cta-banner::after {
  content: '';
  position: absolute; right: 200px; top: 50%; transform: translateY(-50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(200,89,58,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-text { position: relative; z-index: 1; }
.cta-text .label-tag { color: var(--terra-light); }
.cta-text .label-tag::before { background: var(--terra-light); }
.cta-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 48px); font-weight: 700;
  color: var(--white); line-height: 1.15; margin-top: 8px;
}
.cta-text h2 em { font-style: italic; color: var(--terra-light); }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: white;
  color: var(--terracotta); font-size: 14px; font-weight: 700;
  border-radius: 40px; box-shadow: var(--shadow-md);
  transition: all 0.3s var(--ease); white-space: nowrap;
}
.btn-white:hover { background: var(--ivory); transform: translateY(-2px); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border: 2px solid rgba(255,255,255,0.3);
  color: white; font-size: 14px; font-weight: 600;
  border-radius: 40px; transition: all 0.3s; white-space: nowrap;
}
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.08); }

/* ── ABOUT PAGE ── */
.about-hero-strip {
  background: var(--sand); padding: 100px 6% 60px;
}
.about-story-panel {
  position: relative;
  overflow: hidden;
  padding: 40px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(245,240,232,0.98) 0%, rgba(255,255,255,0.98) 45%, rgba(245,237,233,0.94) 100%);
  border: 1px solid rgba(232,228,220,0.95);
  box-shadow: var(--shadow-lg);
}
.about-story-panel::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(184,134,11,0.12);
  border-radius: 22px;
  pointer-events: none;
}
.about-story-glow {
  position: absolute;
  left: -70px;
  bottom: -90px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(200,89,58,0.14) 0%, transparent 72%);
  pointer-events: none;
}
.about-story-copy {
  position: relative;
  z-index: 1;
  font-size: 15px;
  color: var(--stone);
  line-height: 1.8;
  margin-top: 16px;
  max-width: 100%;
}
.about-story-highlights {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.7fr);
  gap: 24px;
  margin-top: 34px;
  align-items: stretch;
}
.about-story-note {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(200,89,58,0.12);
  box-shadow: 0 12px 30px rgba(45,41,38,0.06);
  font-size: 14px;
  line-height: 1.8;
  color: var(--stone);
  backdrop-filter: blur(10px);
}
.about-story-note-line {
  width: 56px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--terracotta), var(--gold-light));
}
.about-story-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.about-story-metric {
  position: relative;
  overflow: hidden;
  padding: 24px 18px 22px;
  text-align: center;
  border-radius: 22px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.85);
  box-shadow: 0 14px 34px rgba(45,41,38,0.08);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.about-story-metric::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 54px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--terracotta), var(--gold-light));
}
.about-story-metric:hover {
  transform: translateY(-6px);
  border-color: rgba(200,89,58,0.18);
  box-shadow: 0 20px 44px rgba(45,41,38,0.12);
}
.about-story-metric-kicker {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--warm-grey);
  margin-bottom: 14px;
}
.about-story-metric-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  color: var(--terracotta);
}
.about-story-metric-label {
  font-size: 12px;
  color: var(--stone);
  margin-top: 8px;
  font-weight: 600;
}
.about-values-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.about-values-tag { justify-content: center; }
.about-values-sub { margin: 0 auto; }
.about-values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }
.value-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(250,250,247,0.94) 100%);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.value-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(200,89,58,0.10) 0%, transparent 34%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(200,89,58,0.18); }
.value-card:hover::before { opacity: 1; }
.value-card-index {
  position: absolute;
  top: 22px;
  right: 22px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: rgba(200,89,58,0.18);
  line-height: 1;
}
.value-icon {
  width: 52px; height: 52px; background: var(--terra-pale);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: inset 0 0 0 1px rgba(200,89,58,0.08);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}
.value-card:hover .value-icon { transform: translateY(-2px) scale(1.04); background: #f3e4dc; }
.value-icon svg { width: 26px; height: 26px; color: var(--terracotta); }
.value-card h4 { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--stone); line-height: 1.7; }

/* ── SERVICES PAGE ── */
.services-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 34px;
  align-items: end;
}
.services-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left top, rgba(200,89,58,0.10) 0%, transparent 34%),
    radial-gradient(circle at right bottom, rgba(184,134,11,0.08) 0%, transparent 30%);
  pointer-events: none;
}
.services-hero-inner,
.services-hero-card {
  position: relative;
  z-index: 1;
}
.services-hero-card {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}
.services-hero-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--concrete);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 0.95;
  color: var(--terracotta);
}
.services-hero-metric small {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--stone);
}
.services-hero-list {
  display: grid;
  gap: 14px;
}
.services-hero-list div {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--stone);
  line-height: 1.6;
}
.services-hero-list div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--gold-light));
}
.services-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.95fr);
  gap: 42px;
  align-items: center;
}
.services-overview-points {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}
.services-point {
  padding: 20px 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(250,250,247,1) 0%, rgba(245,240,232,0.7) 100%);
  border: 1px solid rgba(232,228,220,0.95);
}
.services-point strong {
  display: block;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 6px;
}
.services-point span {
  font-size: 14px;
  line-height: 1.7;
  color: var(--stone);
}
.services-overview-visual {
  position: relative;
  min-height: 520px;
}
.services-overview-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
}
.services-overview-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(26,23,20,0.84);
  box-shadow: var(--shadow-md);
}
.services-overview-badge .badge-kicker {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.services-overview-badge strong {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--white);
}
.services-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.service-card {
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(250,250,247,0.95) 100%);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.service-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
}
.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,23,20,0.42) 0%, transparent 58%);
}
.service-card-index {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 1;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
}
.service-card-body {
  padding: 26px 24px 24px;
}
.service-card-body h3 {
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 10px;
}
.service-card-body p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--stone);
}
.service-card-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}
.service-card-list li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: var(--charcoal);
  line-height: 1.6;
}
.service-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
}
.project-showcase {
  display: grid;
  gap: 34px;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.project-card {
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.project-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}
.project-card-body {
  padding: 24px;
}
.project-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.project-type,
.project-size {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.project-type {
  background: var(--terra-pale);
  color: var(--terracotta);
}
.project-size {
  background: rgba(26,23,20,0.06);
  color: var(--stone);
}
.project-card h3 {
  font-size: 21px;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}
.project-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--stone);
}
.services-process-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: start;
  padding: 38px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(245,240,232,0.9) 0%, rgba(255,255,255,1) 42%, rgba(245,237,233,0.92) 100%);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(232,228,220,0.95);
}
.services-process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.services-process-card {
  min-height: 180px;
  padding: 24px 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(255,255,255,0.82);
  box-shadow: 0 12px 30px rgba(45,41,38,0.07);
}
.services-process-card span {
  display: inline-flex;
  margin-bottom: 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 34px;
  line-height: 1;
  color: rgba(200,89,58,0.55);
}
.services-process-card h4 {
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 8px;
}
.services-process-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--stone);
}

/* ── CONTACT PAGE ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding: 80px 6%; }
.contact-form-card { background: var(--white); border-radius: 24px; padding: 44px 40px; box-shadow: var(--shadow-md); }
.form-title { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.form-subtitle { font-size: 14px; color: var(--stone); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group + .form-group { margin-top: 16px; }
.form-row .form-group + .form-group { margin-top: 0; }
.form-label { font-size: 12px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--stone); }
.form-input, .form-select, .form-textarea {
  padding: 13px 16px; border: 1.5px solid var(--concrete);
  border-radius: 12px; background: var(--ivory);
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; color: var(--charcoal);
  outline: none; transition: border-color 0.3s, background 0.3s;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--terracotta); background: var(--white); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-check { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.form-check input { width: 18px; height: 18px; accent-color: var(--terracotta); cursor: pointer; }
.form-check label { font-size: 13px; color: var(--stone); cursor: pointer; }
.form-submit {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 16px;
  background: var(--terracotta); color: white;
  font-size: 15px; font-weight: 700; border-radius: 12px;
  border: none; cursor: pointer; margin-top: 20px;
  box-shadow: 0 6px 20px rgba(200,89,58,0.3);
  transition: all 0.3s var(--ease);
}
.form-submit:hover { background: #A8432A; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(200,89,58,0.35); }
.form-submit svg { width: 18px; height: 18px; }

.contact-info-side { display: flex; flex-direction: column; gap: 24px; }
.contact-info-heading { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--ink); margin-bottom: 6px; line-height: 1.15; }
.contact-info-heading em { font-style: italic; color: var(--terracotta); }
.contact-info-sub { font-size: 15px; color: var(--stone); line-height: 1.7; margin-bottom: 12px; }
.contact-box {
  background: var(--white); border-radius: 16px; padding: 22px 22px;
  display: flex; gap: 16px; align-items: flex-start;
  box-shadow: var(--shadow-sm); transition: transform 0.3s;
}
.contact-box:hover { transform: translateX(4px); }
.contact-box-icon {
  width: 46px; height: 46px; background: var(--terra-pale); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-box-icon svg { width: 22px; height: 22px; color: var(--terracotta); }
.contact-box h5 { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.contact-box p { font-size: 13px; color: var(--stone); line-height: 1.5; }
.wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: #25D366; color: white;
  font-size: 15px; font-weight: 700; padding: 16px;
  border-radius: 14px; margin-top: 4px;
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
  transition: all 0.3s; cursor: pointer;
}
.wa-btn:hover { background: #1da550; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,0.35); }
.wa-btn svg { width: 22px; height: 22px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: calc(var(--nav-h) + 60px) 6% 60px;
  background: var(--sand);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; top: 0; right: 0; width: 40%; height: 100%;
  background-image:
    linear-gradient(rgba(200,89,58,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,89,58,0.07) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.page-hero-inner { max-width: 700px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--warm-grey); margin-bottom: 16px; }
.breadcrumb a { color: var(--terracotta); font-weight: 600; }
.breadcrumb svg { width: 14px; height: 14px; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(40px, 6vw, 72px); font-weight: 700; color: var(--ink); line-height: 1.05; }
.page-hero h1 em { font-style: italic; color: var(--terracotta); }
.page-hero p { font-size: 16px; color: var(--stone); margin-top: 14px; line-height: 1.7; max-width: 500px; }

/* ── FOOTER ── */
footer { background: var(--charcoal); padding: 30px 6% 20px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 20px; }
.footer-brand img { height: 40px; width: auto; margin-bottom: 16px; filter: brightness(1.3); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 260px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--terracotta); color: var(--terracotta); background: rgba(200,89,58,0.12); }
.footer-social svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }
.footer-col h5 { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--terra-light); }
.footer-contact-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.footer-contact-row svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--terra-light); margin-top: 2px; stroke: currentColor; stroke-width: 2; fill: none; }
.footer-contact-row span { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: var(--terra-light); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 58px; height: 58px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.wa-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 10px 32px rgba(37,211,102,0.5); }
.wa-float svg { width: 28px; height: 28px; fill: white; }
.wa-float::before {
  content: '';
  position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.35);
  animation: waPulse 2.5s ease-in-out infinite;
}
@keyframes waPulse { 0%,100%{transform:scale(1);opacity:0.6} 50%{transform:scale(1.2);opacity:0} }

/* ── CONSULTATION MODAL ── */
body.modal-open {
  overflow: hidden;
}
.consult-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}
.consult-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.consult-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26,23,20,0.56), rgba(26,23,20,0.72)),
    radial-gradient(circle at top right, rgba(200,89,58,0.22) 0%, transparent 28%);
  backdrop-filter: blur(8px);
}
.consult-modal-panel {
  position: relative;
  width: min(100%, 1080px);
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(360px, 1.08fr);
  background: linear-gradient(135deg, rgba(245,240,232,0.98) 0%, rgba(255,255,255,0.98) 46%, rgba(245,237,233,0.94) 100%);
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(18,16,14,0.24);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.45s var(--ease);
}
.consult-modal.open .consult-modal-panel {
  transform: translateY(0) scale(1);
}
.consult-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 50%;
  background: rgba(255,255,255,0.82);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.consult-modal-close:hover {
  transform: rotate(90deg);
  background: var(--terracotta);
  color: var(--white);
}
.consult-modal-close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.4;
  fill: none;
}
.consult-modal-aside {
  position: relative;
  min-height: 100%;
  padding: 42px 34px 34px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(26,23,20,0.28), rgba(26,23,20,0.76)),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1000&q=80') center/cover;
}
.consult-modal-aside::after {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 20px;
  pointer-events: none;
}
.consult-modal-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.consult-modal-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.76);
}
.consult-modal-tag::before {
  content: '';
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: var(--terra-light);
}
.consult-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 14px;
}
.consult-modal-title em {
  font-style: italic;
  color: var(--terra-light);
}
.consult-modal-desc {
  max-width: 360px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
}
.consult-modal-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: auto;
  padding-top: 28px;
}
.consult-stat {
  padding: 16px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
}
.consult-stat strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 30px;
  line-height: 1;
  color: var(--white);
}
.consult-stat span {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.64);
}
.consult-modal-form-wrap {
  position: relative;
  padding: 42px 38px 36px;
}
.consult-form-head {
  margin-bottom: 26px;
}
.consult-form-head h3 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 8px;
}
.consult-form-head p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--stone);
  max-width: 460px;
}
.consult-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.consult-form-grid .form-group {
  gap: 8px;
}
.consult-form-grid .form-group.full {
  grid-column: 1 / -1;
}
.consult-submit-note {
  margin-top: 14px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--warm-grey);
}

/* ── ANIMATIONS ── */
@keyframes slideUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:none} }
@keyframes slideRight { from{opacity:0;transform:translateX(40px)} to{opacity:1;transform:none} }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .cats-grid { grid-template-columns: repeat(3,1fr); }
  .brands-grid { grid-template-columns: repeat(4,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding: calc(var(--nav-h) + 40px) 6% 60px; }
  .hero-right { display: none; }
  .consult-modal-panel { grid-template-columns: 1fr; max-height: min(92vh, 980px); overflow-y: auto; }
  .consult-modal-aside { min-height: 320px; }
  .services-hero { grid-template-columns: 1fr; }
  .services-overview { grid-template-columns: 1fr; }
  .services-overview-visual { min-height: 380px; }
  .services-grid { grid-template-columns: 1fr; }
  .project-grid { grid-template-columns: 1fr; }
  .services-process-shell { grid-template-columns: 1fr; padding: 32px 26px; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .stats-shell { padding: 34px 26px; }
  .brands-shell { padding: 34px 26px; }
  .brands-summary { min-width: 100%; max-width: none; }
  .how-shell { padding: 34px 26px; }
  .how-summary { min-width: 100%; max-width: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-imgs { display: none; }
  .about-story-panel { padding: 34px 26px; }
  .about-story-highlights { grid-template-columns: 1fr; }
  .about-story-metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .how-grid { grid-template-columns: repeat(2,1fr); }
  .how-grid::before { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .cta-banner { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; padding: 60px 5%; }
  .products-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}
@media (max-width: 700px) {
  :root { --nav-h: 64px; }
  .section { padding: 70px 5%; }
  .consult-modal { padding: 14px; }
  .consult-modal-panel { border-radius: 22px; }
  .consult-modal-aside { padding: 74px 20px 22px; min-height: 280px; }
  .consult-modal-form-wrap { padding: 28px 20px 22px; }
  .consult-modal-stats { grid-template-columns: 1fr; }
  .consult-form-grid { grid-template-columns: 1fr; }
  .services-hero-card { padding: 22px; }
  .services-overview-badge { left: 16px; right: 16px; bottom: 16px; }
  .services-section-head { margin-bottom: 32px; }
  .service-card-body { padding: 22px 20px 20px; }
  .project-card-body { padding: 20px; }
  .services-process-shell { padding: 24px 18px; border-radius: 22px; }
  .services-process-grid { grid-template-columns: 1fr; }
  .services-process-card { min-height: 0; }
  .about-story-panel { padding: 28px 22px; border-radius: 24px; }
  .about-story-highlights { gap: 18px; margin-top: 28px; }
  .about-story-metrics { grid-template-columns: 1fr; }
  .about-story-note { padding: 20px; }
  .value-card { padding: 28px 22px; }
  .nav-center, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .cats-grid { grid-template-columns: repeat(2,1fr); }
  .brands-grid { grid-template-columns: repeat(3,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stats-section { padding-top: 56px; padding-bottom: 56px; }
  .stats-shell { padding: 28px 18px; border-radius: 22px; }
  .stats-intro { margin-bottom: 24px; }
  .stat-box { min-height: 170px; padding: 24px 18px 22px; border-radius: 18px; }
  .stat-num,
  .stat-num span { font-size: 54px; }
  .stat-label { max-width: none; font-size: 14px; }
  .brands-section { padding-top: 56px; padding-bottom: 56px; }
  .brands-shell { padding: 28px 18px; border-radius: 22px; }
  .brands-grid { gap: 12px; margin-top: 28px; }
  .brand-chip { padding: 18px 12px; border-radius: 16px; }
  .brand-chip span { font-size: 16px; letter-spacing: 1.4px; }
  .how-section { padding-top: 56px; padding-bottom: 56px; }
  .how-shell { padding: 28px 18px; border-radius: 22px; }
  .how-grid { gap: 14px; margin-top: 28px; }
  .how-step { min-height: 0; padding: 22px 18px; border-radius: 18px; }
  .how-step h4 { font-size: 16px; }
  .how-step p { font-size: 13px; line-height: 1.65; }
  .cta-banner { padding: 60px 5%; }
}
@media (max-width: 440px) {
  .cats-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2,1fr); }
  .stats-row { grid-template-columns: 1fr; }
}
