/* ══════════════════════════════════════════════════════
   AGROGAMMA V2.0 — "Surco Noble"
   Complete Design System & Stylesheet
   ══════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────────────────
   0. CUSTOM PROPERTIES
   ───────────────────────────────────────────────────── */

:root {
  /* Backgrounds */
  --color-cream: #FAF8F3;
  --color-arena: #EDE8DE;
  --color-dark: #1A1D17;
  --color-dark-soft: #22261E;

  /* Text */
  --color-ink: #1C1C1A;
  --color-ink-secondary: #52524A;
  --color-ink-muted: #8A8A7E;
  --color-ink-light: #FAF8F3;

  /* Accents */
  --color-gold: #C49B5A;
  --color-gold-rgb: 196, 155, 90;
  --color-earth: #9B7B3C;
  --color-earth-deep: #7A5F2B;
  --color-green: #4A7C59;
  --color-green-soft: rgba(74, 124, 89, 0.10);
  --color-gold-soft: rgba(196, 155, 90, 0.12);

  /* Typography */
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-width: 1200px;
  --header-height: 72px;
  --section-pad: 7rem;
  --section-pad-sm: 4rem;
  --container-pad: clamp(1.25rem, 4vw, 2.5rem);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 30px 60px rgba(0, 0, 0, 0.15);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 200ms;
  --dur-normal: 350ms;
  --dur-slow: 600ms;
}


/* ─────────────────────────────────────────────────────
   1. RESET & BASE
   ───────────────────────────────────────────────────── */

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--color-ink-secondary);
  background: var(--color-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

input,
textarea,
select {
  font: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--color-ink);
  line-height: 1.15;
  font-weight: 400;
}

::selection {
  background: rgba(var(--color-gold-rgb), 0.25);
  color: var(--color-ink);
}


/* ─────────────────────────────────────────────────────
   2. GLOBAL ATMOSPHERE
   ───────────────────────────────────────────────────── */

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 600px 600px at 15% 30%, rgba(var(--color-gold-rgb), 0.04), transparent),
    radial-gradient(ellipse 500px 500px at 85% 70%, rgba(74, 124, 89, 0.03), transparent);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.025;
  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: 200px 200px;
}


/* ─────────────────────────────────────────────────────
   3. TYPOGRAPHY HELPERS
   ───────────────────────────────────────────────────── */

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--color-ink);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-earth);
  margin-bottom: 1rem;
  display: inline-block;
}

.eyebrow--shimmer {
  background: linear-gradient(90deg, var(--color-earth) 0%, var(--color-gold) 40%, var(--color-earth) 80%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 200% center; }
  50% { background-position: 0% center; }
}


/* ─────────────────────────────────────────────────────
   4. UTILITIES
   ───────────────────────────────────────────────────── */

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--color-gold);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.875rem;
  transition: top var(--dur-fast);
}

.skip-link:focus-visible {
  top: 1rem;
}

.section {
  position: relative;
  z-index: 2;
  padding: var(--section-pad) 0;
}


/* ─────────────────────────────────────────────────────
   5. BUTTONS
   ───────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-full);
  transition: all var(--dur-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
  line-height: 1;
}

.btn--primary {
  background: var(--color-gold);
  color: #fff;
  padding: 0.875rem 2rem;
}

.btn--primary:hover {
  background: var(--color-earth);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--color-gold-rgb), 0.3);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  padding: 0.875rem 2rem;
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--light {
  background: #fff;
  color: var(--color-dark);
  padding: 0.875rem 2rem;
}

.btn--light:hover {
  background: var(--color-cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn--sm {
  padding: 0.625rem 1.5rem;
  font-size: 0.8125rem;
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 0.9375rem;
}

.btn__loader {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}


/* ─────────────────────────────────────────────────────
   6. PRELOADER
   ───────────────────────────────────────────────────── */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: opacity 0.6s var(--ease-out);
}

.preloader.is-done {
  opacity: 0;
  pointer-events: none;
}

.preloader__logo {
  width: 64px;
  height: 64px;
  animation: preloader-pulse 1.5s ease-in-out infinite;
}

@keyframes preloader-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.preloader__bar {
  width: 120px;
  height: 2px;
  background: rgba(var(--color-gold-rgb), 0.15);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.preloader__bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--color-gold);
  border-radius: 2px;
  animation: preloader-fill 1.8s var(--ease-in-out) forwards;
}

@keyframes preloader-fill {
  0% { width: 0%; }
  100% { width: 100%; }
}


/* ─────────────────────────────────────────────────────
   7. HEADER
   ───────────────────────────────────────────────────── */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  transition:
    background var(--dur-normal),
    box-shadow var(--dur-normal),
    transform var(--dur-normal);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  height: 100%;
}

.header__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header__logo {
  height: 64px;
  width: auto;
}

.header__logo--color {
  display: none;
}

/* .header__brand-name — removed, logo SVG contains the name */

/* Default state — transparent on hero */
.header__nav-link {
  color: rgba(255, 255, 255, 0.85);
}

/* Scrolled state */
.header--scrolled {
  background: var(--color-cream);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.header--scrolled .header__logo--white {
  display: none;
}

.header--scrolled .header__logo--color {
  display: block;
}

/* .header--scrolled .header__brand-name removed */

.header--scrolled .header__nav-link {
  color: var(--color-ink-secondary);
}

.header--scrolled .header__nav-link:hover {
  color: var(--color-ink);
}

.header--scrolled .header__menu-toggle {
  color: var(--color-ink);
}

/* Dark state (over CTA/footer) */
.header--dark .header__logo--white {
  display: block;
}

.header--dark .header__logo--color {
  display: none;
}

/* .header--dark .header__brand-name removed */

.header--dark .header__nav-link {
  color: rgba(255, 255, 255, 0.85);
}

.header--dark .header__menu-toggle {
  color: #fff;
}

/* Hamburger menu toggle */
.header__menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 101;
  color: #fff;
}

.header__menu-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition:
    transform var(--dur-normal) var(--ease-out),
    opacity var(--dur-fast);
}

.header__menu-toggle[aria-expanded="true"] .header__menu-bar:first-child {
  transform: translateY(4px) rotate(45deg);
}

.header__menu-toggle[aria-expanded="true"] .header__menu-bar:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Hidden on scroll down */
.header--hidden {
  transform: translateY(-100%);
}

/* Navigation */
.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header__nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: color var(--dur-fast);
  padding: 0.25rem 0;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-gold);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--dur-normal) var(--ease-out);
}

.header__nav-link:hover::after {
  transform: scaleX(1);
}

.header__nav-link.is-active::after {
  transform: scaleX(1);
}

/* Header CTA */
.header__cta {
  margin-left: 1rem;
}

/* Progress bar */
.header__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--color-gold);
  width: 0%;
  transition: none;
}


/* ─────────────────────────────────────────────────────
   8. MOBILE MENU
   ───────────────────────────────────────────────────── */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(26, 29, 23, 0.97);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding-top: var(--header-height);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-1rem);
  transition:
    opacity var(--dur-slow) var(--ease-out),
    transform var(--dur-slow) var(--ease-out);
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu__link {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 2rem;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity var(--dur-normal) var(--ease-out),
    transform var(--dur-normal) var(--ease-out),
    color var(--dur-fast);
}

.mobile-menu.is-open .mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.is-open .mobile-menu__link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(6) { transition-delay: 0.30s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(7) { transition-delay: 0.35s; }

.mobile-menu__link:hover {
  color: var(--color-gold);
}

.mobile-menu__cta {
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity var(--dur-normal) var(--ease-out),
    transform var(--dur-normal) var(--ease-out);
}

.mobile-menu.is-open .mobile-menu__cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.40s;
}


/* ─────────────────────────────────────────────────────
   9. HERO — "Teatro de Tierra"
   ───────────────────────────────────────────────────── */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 1200px;
  display: flex;
  align-items: flex-end;
  overflow: clip;
  background: var(--color-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 29, 23, 0.1) 0%,
    rgba(26, 29, 23, 0.3) 40%,
    rgba(26, 29, 23, 0.7) 75%,
    rgba(26, 29, 23, 0.85) 100%
  );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad) 5rem;
  width: 100%;
}

.hero__eyebrow {
  color: rgba(255, 255, 255, 0.7);
  opacity: 0;
}

.hero__title {
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.hero__title-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
}

.hero__shimmer-word {
  font-style: italic;
  background: linear-gradient(90deg, var(--color-gold) 0%, #E8D5A8 50%, var(--color-gold) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}

.hero__lead {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
  opacity: 0;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
}

/* Hero badges — inline below CTA */
.hero__badges {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  opacity: 0;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.hero__badge svg {
  flex-shrink: 0;
  color: var(--color-gold);
  opacity: 0.8;
}


/* ─────────────────────────────────────────────────────
   10. STATS
   ───────────────────────────────────────────────────── */

.stats {
  background: var(--color-arena);
  padding: var(--section-pad-sm) 0;
  position: relative;
  z-index: 2;
}

.stats__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.stats__item {
  text-align: center;
}

.stats__number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--color-ink);
  line-height: 1;
}

.stats__suffix {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--color-gold);
}

.stats__label {
  font-size: 0.8125rem;
  color: var(--color-ink-muted);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stats__underline {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--color-gold);
  margin: 0.75rem auto 0;
  transform: scaleX(0);
  transition: transform 0.6s var(--ease-out);
}

.stats__underline.is-revealed {
  transform: scaleX(1);
}

.stats__divider {
  width: 1px;
  height: 50px;
  background: rgba(0, 0, 0, 0.08);
}


/* ─────────────────────────────────────────────────────
   11. ABOUT
   ───────────────────────────────────────────────────── */

.about {
  background: var(--color-cream);
  position: relative;
  z-index: 2;
  padding: var(--section-pad) 0;
}

.about__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.about__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__text {
  color: var(--color-ink-secondary);
  max-width: 480px;
  line-height: 1.7;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about__feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about__feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-gold-soft);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__feature-icon--green {
  background: var(--color-green-soft);
  color: var(--color-green);
}

.about__feature h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-ink);
  margin-bottom: 0.25rem;
}

.about__feature p {
  font-size: 0.875rem;
  color: var(--color-ink-muted);
  line-height: 1.6;
}

.about__image-wrap {
  border-radius: var(--radius-xl);
  overflow: clip;
  aspect-ratio: 4 / 3;
  position: relative;
}

.about__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Image reveal initial state for JS */
[data-animate="image-reveal"] .about__image-wrap {
  clip-path: inset(8%);
}

.about__float-card {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  z-index: 4;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-md);
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--color-ink-secondary);
  max-width: 280px;
}

.about__float-card strong {
  display: block;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 0.15rem;
}


/* ─────────────────────────────────────────────────────
   TRUST BADGES
   ───────────────────────────────────────────────────── */

.trust {
  max-width: var(--max-width);
  margin: 4rem auto 0;
  padding: 3rem var(--container-pad) 0;
  border-top: 1px solid rgba(var(--color-gold-rgb), 0.10);
}

.trust__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
}

.trust__badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-ink-muted);
}

.trust__badge svg {
  color: var(--color-gold);
  width: 18px;
  height: 18px;
}


/* ─────────────────────────────────────────────────────
   12. SERVICES
   ───────────────────────────────────────────────────── */

.services {
  background: var(--color-cream);
  position: relative;
  z-index: 2;
  padding: var(--section-pad) 0;
}

.services__split {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  align-items: start;
}

.services__header {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.services__card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  transition:
    transform var(--dur-normal) var(--ease-out),
    box-shadow var(--dur-normal);
  opacity: 0;
  transform: translateY(30px);
}

.services__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.services__card-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: rgba(var(--color-gold-rgb), 0.15);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}

.services__card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-ink);
  margin-bottom: 0.75rem;
}

.services__card-text {
  font-size: 0.9rem;
  color: var(--color-ink-secondary);
  line-height: 1.6;
}

.services__card-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 1.25rem;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-gold);
  background: transparent;
  border: 1.5px solid rgba(var(--color-gold-rgb), 0.35);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
}

.services__card-btn:hover {
  background: rgba(var(--color-gold-rgb), 0.08);
  border-color: var(--color-gold);
}


/* ─── Modal ──────────────────────────────────────── */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(26, 29, 23, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--container-pad);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-normal) var(--ease-out);
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  position: relative;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 420px;
  width: 100%;
  transform: scale(0.95) translateY(10px);
  transition: transform var(--dur-normal) var(--ease-out);
}

.modal-overlay.is-open .modal {
  transform: scale(1) translateY(0);
}

.modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  cursor: pointer;
  color: var(--color-ink-muted);
  transition: all var(--dur-fast);
}

.modal__close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: var(--color-ink);
}

.modal__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-ink);
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}

.modal__list {
  list-style: none;
  padding: 0;
}

.modal__list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--color-ink-secondary);
  line-height: 1.5;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.modal__list li:last-child {
  border-bottom: none;
}

.modal__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
}

@media (max-width: 480px) {
  .modal {
    padding: 2rem;
    border-radius: var(--radius-lg);
  }
}


/* ─────────────────────────────────────────────────────
   13. PROCESS — Timeline + Rolling Seed
   ───────────────────────────────────────────────────── */

.process {
  background: var(--color-arena);
  overflow: clip;
  position: relative;
  z-index: 2;
  padding: var(--section-pad) 0;
}

.process__header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  text-align: center;
  margin-bottom: 4rem;
}

.process__desc {
  color: var(--color-ink-secondary);
  max-width: 500px;
  margin: 0 auto;
}

.process__timeline {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
  position: relative;
}

.process__line {
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(var(--color-gold-rgb), 0.15);
}

.process__line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(var(--progress, 0) * 100%);
  background: var(--color-gold);
  transition: height 0.1s linear;
}

.process__seed {
  position: absolute;
  left: -13px;
  top: 0;
  width: 28px;
  height: 28px;
  z-index: 5;
  border-radius: 50%;
  transition: top 0.1s linear;
  will-change: transform;
  filter: drop-shadow(0 2px 8px rgba(var(--color-gold-rgb), 0.3));
}

.process__step {
  display: flex;
  gap: 2.5rem;
  padding: 2.5rem 0;
  padding-left: 0;
  opacity: 0.3;
  transform: translateX(-10px);
  transition:
    opacity 0.5s var(--ease-out),
    transform 0.5s var(--ease-out);
}

.process__step.is-active {
  opacity: 1;
  transform: translateX(0);
}

.process__marker {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-cream);
  border: 2px solid rgba(var(--color-gold-rgb), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-earth);
  position: relative;
  z-index: 2;
  transition: border-color 0.4s, box-shadow 0.4s;
}

.process__step.is-active .process__marker {
  border-color: var(--color-gold);
  box-shadow:
    0 0 0 8px rgba(var(--color-gold-rgb), 0.08),
    0 0 20px rgba(var(--color-gold-rgb), 0.15);
}

.process__step-content h3 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: var(--color-ink);
  margin-bottom: 0.5rem;
}

.process__step-content p {
  font-size: 0.9375rem;
  color: var(--color-ink-secondary);
  line-height: 1.7;
}


/* ─────────────────────────────────────────────────────
   14. GALLERY / CALIDAD
   ───────────────────────────────────────────────────── */

.gallery {
  background: var(--color-cream);
  position: relative;
  z-index: 2;
  padding: var(--section-pad) 0;
}

.gallery__header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  text-align: center;
  margin-bottom: 3rem;
}

.gallery__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.gallery__item {
  border-radius: var(--radius-md);
  overflow: clip;
  position: relative;
}

.gallery__item--wide {
  grid-column: 1 / 8;
  grid-row: 1;
}

.gallery__item--tall {
  grid-column: 8 / 13;
  grid-row: 1 / 3;
}

.gallery__item:nth-child(3) {
  grid-column: 1 / 5;
  grid-row: 2;
}

.gallery__item:nth-child(4) {
  grid-column: 5 / 8;
  grid-row: 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.gallery__item:hover img {
  transform: scale(1.03);
}

/* Gold border inset */
.gallery__item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(var(--color-gold-rgb), 0.12);
  z-index: 2;
  pointer-events: none;
}

/* Vignette */
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, 0.08) 100%);
  z-index: 1;
  pointer-events: none;
}

.gallery__label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  background: rgba(26, 29, 23, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  z-index: 3;
}


/* ─────────────────────────────────────────────────────
   15. TESTIMONIALS
   ───────────────────────────────────────────────────── */

.testimonials {
  background: var(--color-cream);
  position: relative;
  z-index: 2;
  padding: var(--section-pad) 0;
}

.testimonials__header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.testimonials__card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: none;
  margin: 0;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(20px);
}

.testimonials__card--featured {
  grid-column: 1 / -1;
  background: var(--color-arena);
  box-shadow: none;
  padding: 3.5rem;
  text-align: center;
}

.testimonials__card--featured .testimonials__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: var(--color-ink);
  line-height: 1.5;
  font-style: italic;
}

.testimonials__stars {
  color: var(--color-gold);
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
  display: block;
}

.testimonials__quote {
  font-size: 0.9375rem;
  color: var(--color-ink-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonials__author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonials__name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-ink);
  font-style: normal;
}

.testimonials__role {
  font-size: 0.8125rem;
  color: var(--color-ink-muted);
}

.testimonials__card--featured .testimonials__author {
  align-items: center;
}


/* ─────────────────────────────────────────────────────
   16. CTA — Video Background
   ───────────────────────────────────────────────────── */

.cta {
  position: relative;
  padding: var(--section-pad) 0;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: clip;
  z-index: 2;
}

.cta__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.cta__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 29, 23, 0.75);
}

.cta__content {
  position: relative;
  text-align: center;
  max-width: 600px;
  padding: 0 var(--container-pad);
}

.cta__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: #fff;
  margin-bottom: 1rem;
}

.cta__text {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
  font-size: 1.0625rem;
  line-height: 1.7;
}


/* ─────────────────────────────────────────────────────
   17. FAQ — Split Layout
   ───────────────────────────────────────────────────── */

.faq {
  background: var(--color-cream);
  position: relative;
  z-index: 2;
  padding: var(--section-pad) 0;
}

.faq__split {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  align-items: start;
}

.faq__header {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-ink);
  transition: color var(--dur-fast);
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::marker {
  display: none;
  content: '';
}

.faq__question:hover {
  color: var(--color-earth);
}

.faq__chevron {
  flex-shrink: 0;
  transition: transform var(--dur-normal) var(--ease-out);
  color: var(--color-ink-muted);
}

.faq__item[open] .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--dur-slow) var(--ease-out);
}

.faq__answer p {
  padding-bottom: 1.5rem;
  font-size: 0.9375rem;
  color: var(--color-ink-secondary);
  line-height: 1.7;
}


/* ─────────────────────────────────────────────────────
   18. CONTACT
   ───────────────────────────────────────────────────── */

.contact {
  background: var(--color-arena);
  position: relative;
  z-index: 2;
  padding: var(--section-pad) 0;
}

.contact__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact__desc {
  color: var(--color-ink-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--color-ink);
  transition:
    background var(--dur-fast),
    transform var(--dur-fast);
}

.contact__channel:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.contact__channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__channel:first-child .contact__channel-icon {
  background: #25D366;
  color: #fff;
}

.contact__channel:last-child .contact__channel-icon {
  background: var(--color-gold-soft);
  color: var(--color-gold);
}

.contact__channel-title {
  font-weight: 600;
  font-size: 0.9375rem;
  display: block;
}

.contact__channel-sub {
  font-size: 0.8125rem;
  color: var(--color-ink-muted);
  display: block;
}

/* Form */
.contact__form {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 0.5rem;
}

.required {
  color: var(--color-gold);
}

.form-group__input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--color-ink);
  background: var(--color-cream);
  transition:
    border-color var(--dur-fast),
    box-shadow var(--dur-fast);
  outline: none;
}

.form-group__input:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(var(--color-gold-rgb), 0.1);
}

.form-group__input--textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group.has-error .form-group__input {
  border-color: #e53e3e;
}

.form-group__error {
  display: none;
  font-size: 0.8125rem;
  color: #e53e3e;
  margin-top: 0.375rem;
}

.form-group.has-error .form-group__error {
  display: block;
}

.contact__submit {
  width: 100%;
  justify-content: center;
}

.contact__form.is-hidden {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.contact__success {
  text-align: center;
  padding: 3rem 2.5rem;
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
  display: none;
}

.contact__success.is-visible {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.contact__success svg {
  color: var(--color-green);
  margin: 0 auto 1.25rem;
  display: block;
}

.contact__success h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-ink);
  margin-bottom: 0.5rem;
}

.contact__success p {
  color: var(--color-ink-secondary);
  font-size: 0.9375rem;
}


/* ─────────────────────────────────────────────────────
   19. FOOTER
   ───────────────────────────────────────────────────── */

.footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 2;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer__logo {
  height: 32px;
  width: auto;
  opacity: 0.8;
}

/* .footer__brand-name — removed, logo SVG contains the name */

.footer__tagline {
  font-size: 0.8125rem;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__nav-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.5rem;
}

.footer__nav a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.375rem 0;
  transition: color var(--dur-fast);
}

.footer__nav a:hover {
  color: var(--color-gold);
}

.footer__social {
  display: flex;
  gap: 1rem;
  align-items: start;
  padding-top: 0.5rem;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition:
    background var(--dur-fast),
    color var(--dur-fast);
}

.footer__social-link:hover {
  background: rgba(var(--color-gold-rgb), 0.15);
  color: var(--color-gold);
}

.footer__bottom {
  max-width: var(--max-width);
  margin: 3rem auto 0;
  padding: 2rem var(--container-pad) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
}

.footer__credit {
  color: rgba(255, 255, 255, 0.3);
}


/* ─────────────────────────────────────────────────────
   20. BACK TO TOP
   ───────────────────────────────────────────────────── */

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-cream);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 90;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity var(--dur-normal),
    transform var(--dur-normal),
    background var(--dur-fast);
  pointer-events: none;
  color: var(--color-ink);
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--color-gold);
  color: #fff;
}


/* ─────────────────────────────────────────────────────
   21. WHATSAPP FLOAT
   ───────────────────────────────────────────────────── */

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  z-index: 90;
  transition:
    transform var(--dur-fast),
    box-shadow var(--dur-fast);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: wa-pulse 2s ease-out infinite;
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.4); opacity: 0; }
}


/* ─────────────────────────────────────────────────────
   22. PATH LINE SVG
   ───────────────────────────────────────────────────── */

.path-line {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}


/* ─────────────────────────────────────────────────────
   23. ANIMATION INITIAL STATES (GSAP)
   ───────────────────────────────────────────────────── */

[data-animate="fade-up"] {
  opacity: 0;
  transform: translateY(24px);
}

[data-animate="image-reveal"] {
  clip-path: inset(8%);
}


/* ─────────────────────────────────────────────────────
   24. RESPONSIVE
   ───────────────────────────────────────────────────── */

/* Tablet */
@media (max-width: 1399px) {
  .about.section {
    padding-bottom: calc(var(--section-pad) + 2rem);
  }
}

@media (max-width: 1024px) {
  :root {
    --section-pad: 5rem;
  }

  .about__float-card {
    right: 0;
  }

  .services__split,
  .faq__split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services__header,
  .faq__header {
    position: static;
  }

  .services__grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery__item--wide,
  .gallery__item--tall,
  .gallery__item:nth-child(3),
  .gallery__item:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery__item--tall {
    aspect-ratio: 3 / 4;
  }

  .gallery__item--wide {
    aspect-ratio: 16 / 9;
  }

  .gallery__item:nth-child(3),
  .gallery__item:nth-child(4) {
    aspect-ratio: 1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-pad: 4rem;
    --section-pad-sm: 3rem;
  }

  .header__nav {
    display: none;
  }

  .header__cta {
    display: none;
  }

  .header__menu-toggle {
    display: flex;
  }

  .about__grid,
  .contact__grid,
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .stats__inner {
    flex-direction: column;
    gap: 2rem;
  }

  .stats__divider {
    width: 40px;
    height: 1px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .gallery__item {
    aspect-ratio: 4 / 3;
  }

  .gallery__item--tall {
    aspect-ratio: 3 / 4;
  }

  .hero__content {
    padding-bottom: 3rem;
  }

  .process__seed {
    display: block;
  }

  .about.section {
    padding-bottom: calc(var(--section-pad) + 3rem);
  }

  .about__float-card {
    right: 0;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .contact__form {
    padding: 1.5rem;
  }

  .services__card {
    padding: 2rem;
  }

  .testimonials__card {
    padding: 2rem;
  }

  .testimonials__card--featured {
    padding: 2.5rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero__image {
    will-change: auto;
  }

  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero__title-line {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero__eyebrow,
  .hero__lead,
  .hero__actions {
    opacity: 1 !important;
  }

  .hero__badges {
    opacity: 1 !important;
  }

  .services__card {
    opacity: 1 !important;
    transform: none !important;
  }

  .testimonials__card {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* ─────────────────────────────────────────────────────
   26. FORM SUBMIT LOADER
   ───────────────────────────────────────────────────── */

.contact__submit.is-loading .btn__text {
  display: none;
}

.contact__submit.is-loading .btn__loader {
  display: block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
