/* =============================================
   AGRÍCOLA QUILIMARÍ — Ultra Modern 2026 v4
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Sora:wght@400;500;600;700;800&display=swap');

:root {
  --green-900: #0A1A0F;
  --green-800: #1B5E20;
  --green-700: #2E7D32;
  --green-600: #388E3C;
  --green-500: #43A047;
  --green-400: #66BB6A;
  --green-300: #81C784;
  --green-200: #A5D6A7;
  --green-100: #C8E6C9;
  --green-50: #E8F5E9;
  --gold: #FFD600;
  --gold-light: #FFEA00;
  --gold-dark: #F9A825;
  --purple: #7B1FA2;
  --white: #FFFFFF;
  --black: #0A0A0A;
  --gray-900: #171717;
  --gray-800: #262626;
  --gray-700: #404040;
  --gray-600: #525252;
  --gray-400: #A3A3A3;
  --gray-200: #E5E5E5;
  --gray-100: #F5F5F5;
  --gray-50: #FAFAFA;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --font-head: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.08; letter-spacing: -0.03em; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── HEADER ─── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 2.5rem;
  background: transparent;
  transition: all 0.5s var(--ease-out);
}
.header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  padding: 0.75rem 2.5rem;
}
.header-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 0.6rem; }
.logo img { height: 46px; transition: transform 0.4s var(--ease-spring); }
.logo:hover img { transform: scale(1.06) rotate(-2deg); }
.logo .logo-divider { width: 1px; height: 30px; background: rgba(255,255,255,0.3); flex-shrink: 0; }
.header.scrolled .logo .logo-divider { background: var(--gray-200); }
.nav { display: flex; align-items: center; gap: 0.25rem; }
.nav a {
  padding: 0.6rem 1.2rem; border-radius: 999px; font-weight: 600; font-size: 0.92rem;
  color: var(--white); transition: all 0.3s var(--ease-out);
}
.header.scrolled .nav a { color: var(--gray-900); }
.nav a:hover { background: rgba(255,255,255,0.15); }
.header.scrolled .nav a:hover { background: rgba(27,94,32,0.08); color: var(--green-700); }
.nav a.active { background: var(--green-800); color: var(--white) !important; }
.lang-btn {
  display: flex; align-items: center; gap: 0.4rem; margin-left: 1rem;
  padding: 0.5rem 1rem; border-radius: 999px; font-size: 0.85rem; font-weight: 700;
  background: var(--gold); color: var(--green-900); cursor: pointer;
  border: none; transition: all 0.3s var(--ease-spring);
}
.lang-btn:hover { transform: scale(1.05); box-shadow: 0 4px 20px rgba(255,214,0,0.4); }
.lang-btn span.active { text-decoration: underline; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; background: none; border: none; cursor: pointer; z-index: 101; }
.menu-toggle span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.header.scrolled .menu-toggle span { background: var(--gray-900); }

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--green-900);
}
.hero-video-bg { position: absolute; inset: 0; z-index: 0; }
.hero-video-bg video { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(27,94,32,0.35) 0%, transparent 70%),
    linear-gradient(180deg, rgba(10,26,15,0.5) 0%, rgba(10,26,15,0.25) 40%, rgba(10,26,15,0.85) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center; max-width: 880px; padding: 0 2rem; padding-top: 5rem;
  color: var(--white);
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1.25rem; border-radius: 999px;
  background: rgba(255,214,0,0.15); border: 1px solid rgba(255,214,0,0.3);
  font-size: 0.85rem; font-weight: 600; color: var(--gold);
  margin-bottom: 1.75rem;
  animation: fadeUp 0.8s var(--ease-out) both;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800;
  margin-bottom: 1.25rem; line-height: 1.12;
  background: linear-gradient(135deg, var(--white) 0%, var(--green-200) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: fadeUp 0.8s 0.1s var(--ease-out) both;
}
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem); line-height: 1.75;
  color: rgba(255,255,255,0.85); margin-bottom: 2.5rem; max-width: 620px; margin-left: auto; margin-right: auto;
  animation: fadeUp 0.8s 0.2s var(--ease-out) both;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; animation: fadeUp 0.8s 0.3s var(--ease-out) both; }

/* ─── BOTONES ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 1rem 2.25rem; border-radius: 999px; font-family: var(--font-head); font-weight: 700;
  font-size: 1rem; border: none; cursor: pointer;
  transition: all 0.4s var(--ease-spring); text-decoration: none;
}
.btn-gold {
  background: var(--gold); color: var(--green-900);
  box-shadow: 0 4px 24px rgba(255,214,0,0.3), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-gold:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 8px 40px rgba(255,214,0,0.45); }
.btn-white {
  background: rgba(255,255,255,0.12); color: var(--white); backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-white:hover { background: rgba(255,255,255,0.22); transform: translateY(-3px); }
.btn-green {
  background: var(--green-700); color: var(--white);
  box-shadow: 0 4px 20px rgba(46,125,50,0.3);
}
.btn-green:hover { background: var(--green-600); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(46,125,50,0.4); }
.btn-outline {
  background: transparent; color: var(--green-800); border: 2px solid var(--green-300);
}
.btn-outline:hover { background: var(--green-800); color: var(--white); border-color: var(--green-800); transform: translateY(-2px); }

/* ─── MARQUEE ─── */
.marquee-strip {
  overflow: hidden; background: var(--gold); padding: 0.75rem 0; white-space: nowrap;
}
.marquee-track {
  display: flex; gap: 3rem; animation: marquee 30s linear infinite;
}
.marquee-track span { font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; color: var(--green-900); flex-shrink: 0; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── SECCIONES ─── */
.section { padding: 5rem 2.5rem; max-width: 1400px; margin: 0 auto; }

/* Fondos con contraste dramático */
.bg-white { background: var(--white); }
.bg-cream { background: #FDFCF5; }
.bg-gray { background: var(--gray-100); }
.bg-green-light { background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%); }
.bg-green-dark { background: var(--green-900); color: var(--white); }
.bg-green-mid { background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%); color: var(--white); }
.bg-gold-soft { background: linear-gradient(135deg, #FFFDE7 0%, #FFF9C4 50%, #FFE082 100%); }
.bg-dark-texture {
  background: var(--green-900);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(27,94,32,0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255,214,0,0.06) 0%, transparent 50%);
  color: var(--white);
}
.bg-mesh {
  background:
    radial-gradient(at 0% 0%, rgba(200,230,201,0.5) 0%, transparent 50%),
    radial-gradient(at 100% 100%, rgba(255,249,196,0.4) 0%, transparent 50%),
    var(--white);
}

.section-head { text-align: center; margin-bottom: 3rem; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.section-head p { font-size: 1.1rem; color: var(--gray-600); max-width: 560px; margin: 0 auto; line-height: 1.7; }
.bg-green-dark .section-head p,
.bg-green-mid .section-head p,
.bg-dark-texture .section-head p { color: rgba(255,255,255,0.7); }

/* ─── FULL-BLEED IMAGE SECTION ─── */
.fullbleed-section {
  position: relative;
  min-height: 420px;
  max-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.fullbleed-section .fb-img {
  position: absolute; inset: 0;
}
.fullbleed-section .fb-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.fullbleed-section .fb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,26,15,0.92) 0%, rgba(10,26,15,0.6) 50%, transparent 100%);
}
.fullbleed-section .fb-content {
  position: relative; z-index: 2;
  max-width: 600px; padding: 4rem 2.5rem 4rem 5%;
  color: var(--white);
}
.fullbleed-section .fb-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
  color: var(--white);
}
.fullbleed-section .fb-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
.fullbleed-section .fb-content .btn { margin-top: 1.5rem; }

/* ─── OFFSET FEATURE ─── */
.offset-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 380px;
  max-height: 480px;
}
.offset-feature .of-img {
  overflow: hidden;
}
.offset-feature .of-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.offset-feature:hover .of-img img { transform: scale(1.04); }
.offset-feature .of-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 3rem 5%;
}
.offset-feature .of-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1.25rem;
}
.offset-feature .of-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
.offset-feature .of-text .btn { margin-top: 1.5rem; align-self: flex-start; }
.offset-feature.of-dark .of-text { background: var(--green-900); color: var(--white); }
.offset-feature.of-dark .of-text p { color: rgba(255,255,255,0.85); }
.offset-feature.of-gold .of-text { background: linear-gradient(135deg, #FFF9C4 0%, #FFE082 100%); }
.offset-feature.of-green .of-text { background: var(--green-50); }
.offset-feature.of-cream .of-text { background: #FDFCF5; }
.offset-feature.of-reverse { direction: rtl; }
.offset-feature.of-reverse > * { direction: ltr; }

/* ─── BENTO GRID ─── */
.bento {
  display: grid; gap: 0.75rem;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
}
.bento-item {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer;
  min-height: 200px;
}
.bento-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.bento-item:hover img { transform: scale(1.08); }
.bento-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.75rem;
  background: linear-gradient(180deg, transparent 30%, rgba(10,26,15,0.85) 100%);
  color: var(--white); transition: background 0.5s;
}
.bento-item:hover .bento-overlay {
  background: linear-gradient(180deg, transparent 10%, rgba(10,26,15,0.92) 100%);
}
.bento-overlay h3 { font-size: 1.2rem; margin-bottom: 0.3rem; }
.bento-overlay p { font-size: 0.88rem; color: rgba(255,255,255,0.85); line-height: 1.5; }
.b-col-4 { grid-column: span 4; }
.b-col-5 { grid-column: span 5; }
.b-col-6 { grid-column: span 6; }
.b-col-7 { grid-column: span 7; }
.b-col-8 { grid-column: span 8; }
.b-col-12 { grid-column: span 12; }
.b-row-2 { grid-row: span 2; }

/* ─── STATS ─── */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  background: var(--green-800); border-radius: var(--radius-xl); overflow: hidden;
}
.stat-box {
  padding: 3rem 1.5rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-box:last-child { border-right: none; }
.stat-box strong {
  display: block; font-family: var(--font-head); font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800; color: var(--gold); margin-bottom: 0.5rem;
}
.stat-box span { font-size: 0.9rem; color: rgba(255,255,255,0.75); font-weight: 500; }

/* ─── CARDS ─── */
.card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--gray-200); transition: all 0.5s var(--ease-out);
}
.card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); border-color: transparent; }
.card-img { height: 220px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.card:hover .card-img img { transform: scale(1.08); }
.card-body { padding: 1.75rem; }
.card-body h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.card-body p { color: var(--gray-600); line-height: 1.7; font-size: 0.95rem; }

/* Glass card on dark backgrounds */
.glass-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: all 0.5s var(--ease-out);
}
.glass-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border-color: rgba(255,214,0,0.2);
}

/* ─── SPLIT ─── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }
.split-img {
  border-radius: var(--radius-xl); overflow: hidden; position: relative; aspect-ratio: 4/3;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.split-img:hover img { transform: scale(1.04); }
.split-img .float-badge {
  position: absolute; bottom: 1.25rem; left: 1.25rem; padding: 0.6rem 1.25rem;
  background: var(--gold); color: var(--green-900); border-radius: var(--radius-sm);
  font-family: var(--font-head); font-weight: 700; font-size: 0.85rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.split-text h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1.25rem; }
.split-text p { font-size: 1.05rem; color: var(--gray-700); line-height: 1.8; margin-bottom: 0.75rem; }
.split-text ul { list-style: none; margin: 1.25rem 0; }
.split-text li {
  padding: 0.75rem 0; border-bottom: 1px solid var(--gray-200); font-size: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.split-text li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ─── PARALLAX ─── */
.parallax-strip {
  position: relative; min-height: 340px; max-height: 420px;
  display: flex; align-items: center; justify-content: center;
  background-attachment: fixed; background-size: cover; background-position: center;
  overflow: hidden;
}
.parallax-strip::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(27,94,32,0.88) 0%, rgba(10,26,15,0.75) 100%);
}
.parallax-strip .inner { position: relative; z-index: 1; text-align: center; color: var(--white); padding: 4rem 2rem; max-width: 700px; }
.parallax-strip h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1rem; color: var(--white); }
.parallax-strip p { font-size: 1.1rem; color: rgba(255,255,255,0.9); margin-bottom: 2rem; line-height: 1.7; }

/* ─── CTA ─── */
.cta-block {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  padding: 4rem 3rem; text-align: center;
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-600) 100%);
}
.cta-block::before {
  content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,214,0,0.15) 0%, transparent 70%); border-radius: 50%;
}
.cta-block::after {
  content: ''; position: absolute; bottom: -80px; left: -80px; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(102,187,106,0.2) 0%, transparent 70%); border-radius: 50%;
}
.cta-block h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--white); margin-bottom: 1rem; position: relative; z-index: 1; }
.cta-block p { font-size: 1.1rem; color: rgba(255,255,255,0.9); position: relative; z-index: 1; max-width: 500px; margin: 0 auto 2rem; }
.cta-block .btn { position: relative; z-index: 1; }

/* ─── VALOR CARDS ─── */
.valor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.valor-card {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.valor-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.valor-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.valor-card:hover::before { transform: scaleX(1); }
.valor-number {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.5rem;
  color: var(--green-900); font-weight: 800; font-family: var(--font-head);
  transition: transform 0.4s var(--ease-spring);
}
.valor-card:hover .valor-number { transform: scale(1.1) rotate(-3deg); }
.valor-card h3 { color: white; font-size: 1.3rem; margin-bottom: 0.75rem; }
.valor-card p { color: rgba(255,255,255,0.75); line-height: 1.7; }

/* ─── FORMULARIO PREMIUM ─── */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start;
}
.contact-info { padding: 2rem 0; }
.contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.contact-info > p { font-size: 1.05rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 2rem; }
.info-card {
  display: flex; align-items: center; gap: 1.25rem; padding: 1.25rem 1.5rem;
  background: var(--white); border-radius: var(--radius-md); margin-bottom: 1rem;
  border: 1px solid var(--gray-200); transition: all 0.3s var(--ease-out);
}
.info-card:hover { border-color: var(--green-300); box-shadow: 0 4px 20px rgba(0,0,0,0.05); transform: translateX(4px); }
.info-icon {
  width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0; background: var(--green-50); color: var(--green-700);
}
.info-card strong { display: block; font-size: 0.95rem; color: var(--gray-900); margin-bottom: 0.15rem; }
.info-card a, .info-card span { font-size: 0.95rem; color: var(--green-600); font-weight: 500; }
.form-card {
  background: var(--white); border-radius: var(--radius-xl); padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06); border: 1px solid var(--gray-200);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.4rem; font-size: 0.9rem; color: var(--gray-800); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 0.9rem 1.1rem; border: 2px solid var(--gray-200); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.95rem; background: var(--gray-50);
  transition: all 0.3s var(--ease-out);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--green-500); background: var(--white);
  box-shadow: 0 0 0 4px rgba(67,160,71,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-actions { margin-top: 1rem; }
.form-actions .btn { width: 100%; padding: 1.1rem; font-size: 1rem; }

/* ─── FOOTER ─── */
.footer {
  background: var(--green-900); color: rgba(255,255,255,0.8); padding: 5rem 2.5rem 2rem;
}
.footer-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 3rem; margin-bottom: 3rem;
}
.footer h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 1.25rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.footer p, .footer a { font-size: 0.9rem; margin-bottom: 0.6rem; display: block; color: rgba(255,255,255,0.65); transition: color 0.3s; }
.footer a:hover { color: var(--gold); }
.footer-brand p { font-size: 0.95rem; line-height: 1.7; color: rgba(255,255,255,0.55); }
.footer-logos {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.footer-logos img {
  height: 52px;
  opacity: 0.9;
}
.footer-logos .logo-divider {
  width: 1px; height: 36px; background: rgba(255,255,255,0.15); flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; text-align: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.45);
}
.footer-bottom a { display: inline; font-size: 0.85rem; margin: 0; color: var(--gold); }
.footer-bottom a:hover { color: var(--gold-light); text-decoration: underline; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(50px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(60px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.stagger > * { opacity: 0; transform: translateY(30px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.4s; }
.stagger.visible > * { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(6, 1fr); }
  .b-col-4, .b-col-5 { grid-column: span 3; }
  .b-col-6, .b-col-7, .b-col-8 { grid-column: span 6; }
  .b-col-12 { grid-column: span 6; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-reverse { direction: ltr; }
  .offset-feature { grid-template-columns: 1fr; }
  .offset-feature .of-img { min-height: 300px; }
  .offset-feature.of-reverse { direction: ltr; }
  .fullbleed-section .fb-overlay { background: linear-gradient(180deg, rgba(10,26,15,0.85) 0%, rgba(10,26,15,0.7) 100%); }
  .fullbleed-section .fb-content { max-width: 100%; padding: 3rem 2rem; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-box { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav {
    position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
    background: var(--white); flex-direction: column; align-items: flex-start;
    padding: 5rem 2rem 2rem; box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    transition: right 0.5s var(--ease-out); z-index: 100;
  }
  .nav.open { right: 0; }
  .nav a { color: var(--gray-900) !important; width: 100%; }
  .menu-toggle { display: flex; }
  .section { padding: 3.5rem 1.25rem; }
  .bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .b-col-4, .b-col-5, .b-col-6, .b-col-7, .b-col-8 { grid-column: span 1; }
  .b-col-12 { grid-column: span 2; }
  .b-row-2 { grid-row: span 1; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .fullbleed-section { min-height: 300px; max-height: none; }
  .offset-feature { max-height: none; }
  .parallax-strip { max-height: none; }
}
