:root {
  --gold: #B8965A;
  --gold-light: #D4B07A;
  --gold-dark: #8A6D3B;
  --black: #0A0A0A;
  --black-soft: #1A1A18;
  --charcoal: #2C2C28;
  --warm-gray: #3E3D39;
  --cream: #F5F0E8;
  --cream-dark: #E8E0D2;
  --white: #FAFAF7;
  --text-light: #B0ADA5;
  --text-body: #8A8680;
}

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

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

body {
  font-family: 'Raleway', sans-serif;
  background: var(--black);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ====== PRELOADER ====== */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300; letter-spacing: 1.2em;
  padding-left: 1.2em;
  color: var(--gold);
  animation: preloaderPulse 1.5s ease-in-out infinite;
}
@keyframes preloaderPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ====== UTILITY ====== */
.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

.section-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 16px;
}
.section-label::before {
  content: ''; display: block;
  width: 40px; height: 1px;
  background: var(--gold);
}

.heading-lg {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 300; line-height: 1.15;
  color: var(--cream);
}
.heading-md {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300; line-height: 1.2;
}
.heading-sm {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 400; line-height: 1.3;
}

.text-body {
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem; font-weight: 300;
  line-height: 1.8; color: var(--text-body);
}

.gold-line {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 32px 0;
}

/* ====== CTA BUTTON ====== */
.cta-btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 40px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 0, 0.15, 1);
  position: relative; overflow: hidden;
}
.cta-btn::before {
  content: ''; position: absolute;
  inset: 0; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.25, 0, 0.15, 1);
  z-index: 0;
}
.cta-btn:hover::before { transform: scaleX(1); }
.cta-btn:hover { color: var(--black); }
.cta-btn span, .cta-btn svg { position: relative; z-index: 1; }
.cta-btn svg { transition: transform 0.4s ease; }
.cta-btn:hover svg { transform: translateX(4px); }

.cta-btn-solid {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 20px 48px;
  background: var(--gold);
  border: none;
  color: var(--black);
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: all 0.4s ease;
}
.cta-btn-solid:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(184, 150, 90, 0.25);
}

/* ====== WHATSAPP FLOATING ====== */
.whatsapp-float {
  display: none;
  position: fixed; bottom: 32px; right: 32px; z-index: 100;
  width: 64px; height: 64px;
  background: #25D366;
  border-radius: 50%;
  align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
  transition: all 0.3s ease;
  text-decoration: none;
  animation: floatPulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 44px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg { width: 32px; height: 32px; fill: #fff; }
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 8px 48px rgba(37, 211, 102, 0.55); }
}

/* ====== HEADER / NAV ====== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 24px 0;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, height 0.4s ease, padding 0.4s ease;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  padding: 4px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  display: flex; align-items: center; gap: 16px;
  text-decoration: none;
  transform-origin: left center;
  transition: transform 0.4s ease;
}
.nav-logo-img img {
  height: 100px;
  width: auto;
  display: block;
  transition: opacity 0.3s ease;
}
.nav-logo-img {
  display: block;
  transition: transform 0.4s ease;
  transform-origin: left center;
}
.nav-logo-img:hover img { opacity: 0.8; }
.nav-brand-text {
  display: flex; flex-direction: column; gap: 4px;
  transition: transform 0.4s ease;
}
.nav-tagline {
  font-family: 'Raleway', sans-serif;
  font-size: 0.62rem; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-light);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 400;
  letter-spacing: 0.6em; color: var(--gold);
  text-decoration: none;
}
.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a {
  font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--text-light); text-decoration: none;
  transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-contact {
  font-size: 0.8rem; font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gold) !important;
  transition: color 0.3s ease, transform 0.3s ease !important;
  display: inline-block;
}
.nav-contact:hover {
  color: var(--white) !important;
  transform: translateX(5px);
}
/* ====== BURGER ====== */
.nav-burger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 0;
}
.nav-burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--gold);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ====== MOBILE MENU ====== */
.nav-mobile {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 49;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  flex-direction: column; justify-content: center; align-items: center;
  gap: 56px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.nav-mobile.open { opacity: 1; }
.nav-mobile-link {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem; font-weight: 400;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--text-light); text-decoration: none;
  transition: color 0.3s ease;
}
.nav-mobile-link:hover { color: var(--gold); }
.nav-mobile-wa { color: var(--gold); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile.open { display: flex; }
}

/* ====== HERO ====== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  background: var(--black);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(184, 150, 90, 0.06), transparent),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(184, 150, 90, 0.03), transparent);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 140px 0 100px;
  position: relative; z-index: 1;
}
.hero-content { max-width: 560px; }
.hero-tagline {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: flex; align-items: center; gap: 16px;
}
.hero-tagline::before {
  content: ''; width: 48px; height: 1px; background: var(--gold);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300; line-height: 1.08;
  color: var(--cream);
  margin-bottom: 32px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.hero-desc {
  font-size: 1rem; font-weight: 300;
  line-height: 1.8; color: var(--text-body);
  margin-bottom: 48px; max-width: 440px;
}
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-image-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background:
    linear-gradient(145deg, var(--charcoal) 0%, var(--black-soft) 50%, var(--warm-gray) 100%);
  position: relative; overflow: hidden;
}
.hero-image-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 60px,
      rgba(184, 150, 90, 0.04) 60px,
      rgba(184, 150, 90, 0.04) 61px
    );
}
.hero-image-placeholder img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-image-frame {
  position: absolute;
  top: -20px; left: -20px;
  right: 20px; bottom: 20px;
  border: 1px solid rgba(184, 150, 90, 0.15);
  pointer-events: none;
}
.hero-stats {
  display: flex; gap: 48px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(184, 150, 90, 0.1);
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-light);
  margin-top: 8px;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; padding: 120px 0 60px; }
  .hero-visual { order: -1; }
  .hero-image-placeholder { max-height: 400px; }
  .hero-stats { gap: 32px; flex-wrap: wrap; }
}

/* ====== PRODUCTS / SERVICES ====== */
.products {
  padding: 140px 0;
  background: var(--black-soft);
  position: relative;
}
.products::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 150, 90, 0.2), transparent);
}
.products-header {
  text-align: center;
  max-width: 680px; margin: 0 auto 80px;
}
.products-header .section-label { justify-content: center; }
.products-header .section-label::before { display: none; }
.products-header .heading-lg { margin-bottom: 24px; }
.products-header .text-body { max-width: 520px; margin: 0 auto; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
}
.product-card:nth-child(1),
.product-card:nth-child(2),
.product-card:nth-child(3) { grid-column: span 2; }
.product-card:nth-child(4) { grid-column: 1 / span 2; }
.product-card:nth-child(5) { grid-column: 3 / span 2; }
.product-card {
  position: relative;
  padding: 48px 32px 40px;
  background: rgba(184, 150, 90, 0.02);
  border: 1px solid rgba(184, 150, 90, 0.06);
  transition: all 0.6s cubic-bezier(0.25, 0, 0.15, 1);
  cursor: pointer;
  overflow: hidden;
}
.product-card::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.25, 0, 0.15, 1);
}
.product-card:hover::before { transform: scaleX(1); }
.product-card:hover {
  background: rgba(184, 150, 90, 0.05);
  transform: translateY(-4px);
}
.product-card--featured {
  background: rgba(184, 150, 90, 0.07);
  border-color: rgba(184, 150, 90, 0.2);
}
.product-card--featured .product-title {
  color: var(--gold);
}
.product-card--featured:hover {
  background: rgba(184, 150, 90, 0.12);
}
.product-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 300;
  color: rgba(184, 150, 90, 0.12);
  line-height: 1;
  margin-bottom: 32px;
}
.product-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 400;
  color: var(--cream);
  margin-bottom: 16px;
}
.product-desc {
  font-size: 0.85rem; font-weight: 300;
  line-height: 1.7; color: var(--text-body);
  margin-bottom: 24px;
}
.product-features {
  list-style: none; padding: 0;
}
.product-features li {
  font-size: 0.78rem; font-weight: 300;
  color: var(--text-light);
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
}
.product-features li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--gold); font-weight: 300;
}

@media (max-width: 1280px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .product-card:nth-child(n) { grid-column: auto; }
}
@media (max-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card { padding: 32px 24px 28px; }
}
@media (max-width: 480px) { .products-grid { grid-template-columns: 1fr; } }

/* ====== WHY MARRUS / PHILOSOPHY ====== */
.philosophy {
  padding: 160px 0;
  background: var(--black);
  position: relative;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}
.philosophy-left .heading-lg {
  margin-bottom: 40px;
}
.philosophy-left .text-body {
  margin-bottom: 48px;
}
.philosophy-values {
  display: grid; gap: 40px;
}
.philosophy-value {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: start;
}
.philosophy-value-icon {
  width: 60px; height: 60px;
  border: 1px solid rgba(184, 150, 90, 0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 300;
}
.philosophy-value-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 400;
  color: var(--cream);
  margin-bottom: 8px;
}
.philosophy-value-desc {
  font-size: 0.82rem; font-weight: 300;
  line-height: 1.7; color: var(--text-body);
}

.philosophy-right {
  position: relative;
}
.philosophy-quote {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 400; font-style: italic;
  line-height: 1.6;
  color: var(--cream);
  padding: 60px;
  background: rgba(184, 150, 90, 0.04);
  border-left: 2px solid var(--gold);
  margin-bottom: 48px;
}
.philosophy-quote-author {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  margin-top: 24px;
  display: block;
  font-style: normal;
}
.philosophy-numbers {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.philosophy-num-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.philosophy-num-label {
  font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-top: 8px;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .philosophy-grid { grid-template-columns: 1fr; gap: 60px; }
  .philosophy-quote { padding: 32px; }
}

/* ====== PROCESS ====== */
.process {
  padding: 140px 0;
  background: var(--black-soft);
  position: relative;
}
.process::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 150, 90, 0.2), transparent);
}
.process-header {
  max-width: 600px; margin-bottom: 80px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
  opacity: 0.2;
}
.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.process-step-dot {
  width: 56px; height: 56px;
  border: 1px solid rgba(184, 150, 90, 0.3);
  border-radius: 50%;
  margin: 0 auto 28px;
  display: flex; align-items: center; justify-content: center;
  background: var(--black-soft);
  position: relative; z-index: 1;
  transition: all 0.4s ease;
}
.process-step:hover .process-step-dot {
  border-color: var(--gold);
  background: rgba(184, 150, 90, 0.08);
}
.process-step-dot span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 400;
  color: var(--gold);
}
.process-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
}
.process-step-desc {
  font-size: 0.78rem; font-weight: 300;
  line-height: 1.6; color: var(--text-body);
}

@media (max-width: 900px) {
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .process-step { text-align: left; display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 0; }
  .process-step-dot { margin: 0; }
}

/* ====== FAQ / OBJECTIONS ====== */
.faq {
  padding: 140px 0;
  background: var(--black);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.faq-left .heading-lg { margin-bottom: 24px; }
.faq-left .text-body { margin-bottom: 40px; }

.faq-items { display: grid; gap: 0; }
.faq-item {
  border-bottom: 1px solid rgba(184, 150, 90, 0.08);
  overflow: hidden;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 0;
  cursor: pointer;
  transition: color 0.3s ease;
}
.faq-question:hover { color: var(--gold); }
.faq-question h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 400;
  color: inherit;
  padding-right: 24px;
}
.faq-question .faq-icon {
  font-size: 1.5rem; font-weight: 200;
  color: var(--gold);
  transition: transform 0.4s ease;
  flex-shrink: 0;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25, 0, 0.15, 1);
}
.faq-answer-inner {
  padding: 0 0 28px;
  font-size: 0.88rem; font-weight: 300;
  line-height: 1.8; color: var(--text-body);
}

@media (max-width: 768px) { .faq-grid { grid-template-columns: 1fr; gap: 48px; } }

/* ====== FINAL CTA ====== */
.final-cta {
  padding: 160px 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(184, 150, 90, 0.06), transparent),
    var(--black-soft);
  text-align: center;
  position: relative;
}
.final-cta::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 150, 90, 0.2), transparent);
}
.final-cta .section-label { justify-content: center; }
.final-cta .section-label::before { display: none; }
.final-cta .heading-lg {
  max-width: 800px; margin: 0 auto 24px;
}
.final-cta .text-body {
  max-width: 560px; margin: 0 auto 48px;
}
.final-cta-actions {
  display: flex; gap: 24px;
  justify-content: center; flex-wrap: wrap;
}
.final-cta-note {
  font-size: 0.72rem; font-weight: 300;
  color: var(--text-light);
  margin-top: 32px;
  letter-spacing: 0.05em;
}

/* ====== FOOTER ====== */
.footer {
  padding: 60px 0;
  background: var(--black);
  border-top: 1px solid rgba(184, 150, 90, 0.08);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 24px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 400;
  letter-spacing: 0.5em; color: var(--gold);
}
.footer-info {
  font-size: 0.75rem; font-weight: 300;
  color: var(--text-light);
  text-align: right;
  line-height: 1.8;
}

/* ====== ANIMATIONS ====== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ====== MOBILE ====== */
@media (max-width: 768px) {
  .container { padding: 0 20px; }

  /* Section padding */
  .products  { padding: 80px 0; }
  .philosophy { padding: 80px 0; }
  .process   { padding: 80px 0; }
  .faq       { padding: 80px 0; }
  .final-cta { padding: 80px 0; }

  /* Products header */
  .products-header { margin-bottom: 40px; }

  /* Philosophy quote */
  .philosophy-quote { padding: 24px; }
  .philosophy-numbers { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .philosophy-num-value { font-size: 2rem; }
  .philosophy-values { gap: 24px; }

  /* Process */
  .process-header { margin-bottom: 48px; }

  /* CTA buttons */
  .final-cta-actions { flex-direction: column; align-items: center; }
  .cta-btn-solid, .cta-btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Footer */
  .footer { padding: 40px 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-info { text-align: left; }

  /* Headings */
  .heading-lg { font-size: clamp(2rem, 8vw, 3rem); }

  /* WhatsApp float — smaller */
  .whatsapp-float { width: 52px; height: 52px; bottom: 24px; right: 20px; }
}

@media (max-width: 480px) {
  .philosophy-numbers { grid-template-columns: 1fr; gap: 20px; }
  .hero-cta { flex-direction: column; gap: 12px; }
  .hero-cta .cta-btn-solid,
  .hero-cta .cta-btn { width: 100%; justify-content: center; }
}

/* ====== GRAIN OVERLAY ====== */
.grain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 200;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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-repeat: repeat;
  background-size: 256px;
}
