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

:root {
  --cream:      #F5EDE0;
  --dark:       #1A1208;
  --dark-deep:  #100d08;
  --terra:      #C4845A;
  --terra-dark: #b3734d;
  --brown:      #7A5230;
  --brown-mid:  rgba(74,46,18,.1);
  --sep-dark:   rgba(255,255,255,.06);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

.eyebrow {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--terra); display: block; margin-bottom: 20px;
}
.eyebrow--dim { color: rgba(196,132,90,.55); }

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

h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.15; font-weight: 300; }
h1 { font-size: clamp(44px,6vw,80px); }
h2 { font-size: clamp(36px,4vw,54px); }
h3 { font-size: clamp(24px,2.8vw,36px); }
h4 { font-size: clamp(18px,2vw,24px); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ════ NAVBAR ════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .3s, padding .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(26,18,8,.95);
  backdrop-filter: blur(8px);
  padding: 14px 48px;
  border-color: rgba(255,255,255,.06);
}

.nav-logo { text-decoration: none; display: flex; flex-direction: column; gap: 2px; }
.nav-logo-name {
  font-family: var(--serif); font-size: 18px; font-weight: 300;
  color: var(--cream); letter-spacing: .5px; line-height: 1;
}
.nav-logo-sub {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(196,132,90,.55);
}

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(245,237,224,.55); text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--cream); }

.nav-cta {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--dark); background: var(--terra);
  padding: 11px 24px; text-decoration: none;
  transition: background .2s;
}
.nav-cta:hover { background: var(--terra-dark); }

.nav-hamburger { display: none; }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--dark); flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--serif); font-size: 32px; font-weight: 300;
  color: var(--cream); text-decoration: none;
}
.mobile-cta {
  font-size: 11px !important; letter-spacing: 3px;
  text-transform: uppercase; font-family: var(--sans) !important;
  color: var(--dark) !important; background: var(--terra);
  padding: 14px 32px; margin-top: 8px;
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger {
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
  }
  .nav-hamburger span {
    display: block; width: 24px; height: 1px; background: var(--cream);
  }
}

/* ════ HERO ════ */
#hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../img/hero.jpg');
  background-size: cover; background-position: center;
  animation: kenburns 20s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1)   translate(0, 0); }
  to   { transform: scale(1.08) translate(-2%, -1%); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,18,8,.55) 0%, rgba(26,18,8,.3) 50%, rgba(26,18,8,.7) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px; max-width: 900px;
}
.hero-content .eyebrow {
  color: rgba(245,237,224,.7);
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.hero-content h1 {
  color: var(--cream); margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.hero-content h1 em { font-style: italic; color: var(--terra); }
.hero-content p {
  font-size: 16px; color: rgba(245,237,224,.7);
  line-height: 1.8; margin-bottom: 48px;
}

.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-btn {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  text-decoration: none; padding: 15px 36px; transition: all .2s;
}
.hero-btn--primary {
  background: var(--terra); color: white; border: 1px solid var(--terra);
}
.hero-btn--primary:hover { background: var(--terra-dark); border-color: var(--terra-dark); }
.hero-btn--secondary {
  background: transparent; color: var(--cream);
  border: 1px solid rgba(245,237,224,.35);
}
.hero-btn--secondary:hover {
  background: rgba(245,237,224,.1); border-color: rgba(245,237,224,.6);
}

.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(245,237,224,.35); font-size: 20px;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

@media (max-width: 768px) {
  .hero-content p br { display: none; }
  .hero-btns { flex-direction: column; align-items: center; }
}

/* ════ TIERRA / IDENTIDAD ════ */
#tierra {
  background: var(--dark-deep);
  border-top: 1px solid var(--sep-dark);
}

.tierra-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.tierra-left {
  padding: 96px 64px;
  border-right: 1px solid var(--sep-dark);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  position: relative; overflow: hidden;
}
.tierra-big-num {
  font-family: var(--serif);
  font-size: clamp(120px, 16vw, 200px); font-weight: 300; line-height: 1;
  color: rgba(196,132,90,.12); letter-spacing: -8px;
  display: block; text-align: center;
}
.tierra-big-label {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(196,132,90,.3); margin-top: -16px; display: block;
}

.tierra-right {
  padding: 96px 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.tierra-right h2 { color: var(--cream); margin-bottom: 28px; }
.tierra-right h2 em { font-style: italic; color: var(--terra); }
.tierra-right p { font-size: 15px; color: rgba(245,237,224,.45); line-height: 1.85; }

.tierra-divider { width: 36px; height: 1px; background: var(--terra); margin-bottom: 24px; }

.tierra-values {
  display: grid; grid-template-columns: repeat(3,1fr);
  margin-top: 48px;
  border-top: 1px solid var(--sep-dark);
}
.tierra-val {
  padding: 28px 24px 0 0;
  display: flex; flex-direction: column; gap: 6px;
  border-right: 1px solid var(--sep-dark);
}
.tierra-val:last-child { border-right: none; padding-right: 0; }
.tierra-val-title {
  font-family: var(--serif); font-size: 22px; color: var(--cream); font-weight: 300;
}
.tierra-val-desc { font-size: 11px; color: rgba(245,237,224,.3); line-height: 1.6; }

@media (max-width: 768px) {
  .tierra-inner { grid-template-columns: 1fr; }
  .tierra-left { display: none; }
  .tierra-right { padding: 64px 24px; }
  .tierra-values { grid-template-columns: 1fr; }
  .tierra-val { border-right: none; border-bottom: 1px solid var(--sep-dark); padding-bottom: 20px; margin-bottom: 0; padding-right: 0; }
  .tierra-val:last-child { border-bottom: none; }
}

/* ════ PILARES ════ */
#adn {
  display: flex;
  background: var(--dark);
  border-top: 1px solid var(--sep-dark);
  min-height: 100vh;
}

.pillar {
  flex: 1;
  border-right: 1px solid var(--sep-dark);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: flex .5s cubic-bezier(.4,0,.2,1), background .3s;
  cursor: default;
}
.pillar:last-child { border-right: none; }
#adn:hover .pillar { flex: 0.8; }
#adn:hover .pillar:hover { flex: 1.4; background: rgba(255,255,255,.015); }

.pillar-icon {
  position: absolute; top: 0; bottom: 40%; left: 0; right: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}

.icon-cross { position: relative; width: 48px; height: 48px; }
.cross-v, .cross-h {
  position: absolute; background: rgba(196,132,90,.25);
  border-radius: 1px; transition: background .3s;
}
.cross-v { width: 1px; height: 48px; top: 0; left: 50%; transform: translateX(-50%); }
.cross-h { width: 48px; height: 1px; top: 30%; left: 0; }
.pillar:hover .cross-v,
.pillar:hover .cross-h { background: rgba(196,132,90,.5); }

.icon-arch {
  width: 48px; height: 56px;
  border: 1px solid rgba(196,132,90,.25);
  border-radius: 24px 24px 0 0;
  border-bottom: none;
  transition: border-color .3s;
}
.pillar:hover .icon-arch { border-color: rgba(196,132,90,.5); }

.icon-leaf {
  width: 40px; height: 48px;
  border: 1px solid rgba(196,132,90,.25);
  border-radius: 0 50% 0 50%;
  transform: rotate(45deg);
  transition: border-color .3s;
}
.pillar:hover .icon-leaf { border-color: rgba(196,132,90,.5); }

.pillar-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0 44px 52px;
  background: linear-gradient(to top, rgba(16,13,8,.95) 60%, transparent);
}
.pillar-content h3 {
  font-size: clamp(26px,2.5vw,34px); color: var(--cream); margin-bottom: 14px;
}
.pillar-content p {
  font-size: 13px; color: rgba(245,237,224,.4); line-height: 1.8;
}
.pillar-content .eyebrow { margin-bottom: 12px; font-size: 12px; }

@media (max-width: 768px) {
  #adn { flex-direction: column; min-height: auto; }
  .pillar { min-height: 320px; flex: none !important; }
  .pillar { border-right: none; border-bottom: 1px solid var(--sep-dark); }
  .pillar:last-child { border-bottom: none; }
}

/* ════ CULTIVOS ════ */
#cultivos {
  background: var(--cream);
  padding: 96px 0 72px;
  border-top: 1px solid var(--brown-mid);
  overflow: hidden;
}

.cultivos-header {
  text-align: center;
  padding: 0 80px 64px;
}
.cultivos-header h2 { color: var(--dark); margin-bottom: 16px; }
.cultivos-header h2 em { font-style: italic; }
.cultivos-header p { font-size: 15px; color: var(--brown); line-height: 1.8; max-width: 520px; margin: 0 auto; }

.cultivos-carousel-wrap { position: relative; }

.cultivos-carousel {
  display: flex; gap: 0;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; padding: 0 80px;
}
.cultivos-carousel::-webkit-scrollbar { display: none; }

.cultivo-card {
  flex-shrink: 0; width: 280px; height: 420px;
  border: 1px solid rgba(74,46,18,.15);
  margin-right: -1px;
  display: flex; flex-direction: column; justify-content: flex-end;
  scroll-snap-align: start;
  position: relative; overflow: hidden;
  cursor: pointer;
}

.cultivo-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
  z-index: 0;
}

.cultivo-card::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(10,6,2,.92) 0%, rgba(10,6,2,.45) 50%, rgba(10,6,2,.1) 100%);
  transition: background .5s ease;
}

.cultivo-card:hover .cultivo-bg { transform: scale(1.08); }
.cultivo-card:hover::before {
  background: linear-gradient(to top, rgba(10,6,2,.6) 0%, rgba(10,6,2,.1) 50%, transparent 100%);
}

.cultivo-content {
  position: relative; z-index: 2;
  padding: 28px;
  display: flex; flex-direction: column; gap: 8px;
}

.cultivo-badge {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--terra);
}
.cultivo-name {
  font-family: var(--serif); font-size: 24px; font-weight: 300; color: var(--cream);
}
.cultivo-desc { font-size: 12px; color: rgba(245,237,224,.55); line-height: 1.75; }

.cultivo-card--highlight { border-color: rgba(196,132,90,.3); }
.cultivo-card--highlight .cultivo-name { color: var(--cream); }

.cultivos-note {
  text-align: center; padding: 40px 80px 0;
  font-size: 12px; color: rgba(74,46,18,.4);
  line-height: 1.8; font-style: italic;
}

@media (max-width: 768px) {
  .cultivos-header { padding: 0 24px 48px; }
  .cultivos-carousel { padding: 0 24px; }
  .cultivo-card { width: 240px; height: 360px; }
  .cultivos-note { padding: 32px 24px 0; }
}

/* ════ ESTILO ════ */
#estilo {
  background: var(--dark);
  border-top: 1px solid var(--sep-dark);
}

.estilo-header {
  padding: 80px 80px 48px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 64px;
  border-bottom: 1px solid var(--sep-dark);
}
.estilo-header h2 { color: var(--cream); }
.estilo-header h2 em { font-style: italic; color: var(--terra); }
.estilo-sub { max-width: 320px; font-size: 13px; color: rgba(245,237,224,.35); line-height: 1.8; flex-shrink: 0; }

.estilo-tabs {
  display: flex; border-bottom: 1px solid var(--sep-dark);
  padding: 0 80px;
}
.tab-btn {
  background: none; border: none; cursor: pointer;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(245,237,224,.3); padding: 20px 0; margin-right: 40px;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color .2s, border-color .2s;
}
.tab-btn.active { color: var(--cream); border-bottom-color: var(--terra); }
.tab-btn:hover { color: rgba(245,237,224,.7); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.gallery-grid { display: grid; gap: 2px; padding: 2px; }
.gallery-grid--3 { grid-template-columns: repeat(3, 1fr); }
.gallery-grid--2 { grid-template-columns: repeat(2, 1fr); }
.gallery-grid--featured { grid-template-columns: 2fr 1fr; }

.gallery-item {
  overflow: hidden; cursor: pointer; position: relative;
  aspect-ratio: 4/3;
}
.gallery-item--wide { grid-column: span 2; aspect-ratio: 16/6; }
.gallery-item--featured { aspect-ratio: auto; min-height: 480px; }
.gallery-col { display: flex; flex-direction: column; gap: 2px; }
.gallery-col .gallery-item { flex: 1; aspect-ratio: auto; }

.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.04); }

@media (max-width: 768px) {
  .estilo-header { flex-direction: column; padding: 48px 24px 32px; gap: 24px; }
  .estilo-tabs { padding: 0 24px; }
  .tab-btn { margin-right: 24px; }
  .gallery-grid--3,
  .gallery-grid--2,
  .gallery-grid--featured { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; aspect-ratio: 4/3; }
  .gallery-item--featured { min-height: 240px; }
  .gallery-col { gap: 2px; }
}

/* ════ LOTES ════ */
#lotes { border-top: 1px solid var(--sep-dark); }

.lotes-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--dark-deep);
  min-height: 100vh;
}

.lotes-intro-left {
  padding: 96px 72px;
  border-right: 1px solid var(--sep-dark);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.lotes-intro-left::before {
  content: '5.000';
  font-family: var(--serif); font-size: 200px; font-weight: 300; line-height: 1;
  color: rgba(196,132,90,.04);
  position: absolute; bottom: -20px; left: -10px;
  letter-spacing: -8px; pointer-events: none; white-space: nowrap;
}
.lotes-intro-left h2 { color: var(--cream); margin-bottom: 28px; }
.lotes-intro-left h2 em { font-style: italic; color: var(--terra); }
.lotes-intro-left p { font-size: 15px; color: rgba(245,237,224,.45); line-height: 1.85; max-width: 380px; margin-bottom: 40px; }
.lotes-divider { width: 36px; height: 1px; background: var(--terra); margin-bottom: 24px; }
.lotes-btn {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--cream); background: var(--terra); border: 1px solid var(--terra);
  padding: 13px 28px; text-decoration: none; align-self: flex-start;
}

.lotes-intro-right { display: flex; flex-direction: column; }
.lotes-char {
  flex: 1; padding: 44px 64px;
  border-bottom: 1px solid var(--sep-dark);
  display: grid; grid-template-columns: 110px 1fr;
  gap: 32px; align-items: center;
  transition: background .2s;
}
.lotes-char:last-child { border-bottom: none; }
.lotes-char:hover { background: rgba(255,255,255,.015); }
.lotes-char-val {
  font-family: var(--serif); font-size: 38px; font-weight: 300;
  color: var(--terra); line-height: 1; text-align: right;
}
.lotes-char-val sup { font-size: 16px; color: rgba(196,132,90,.6); }
.lotes-char-val--sm { font-size: 24px; line-height: 1.2; }
.lotes-char-info h4 { font-family: var(--serif); font-size: 20px; color: var(--cream); margin-bottom: 6px; }
.lotes-char-info p { font-size: 12px; color: rgba(245,237,224,.35); line-height: 1.7; }

.lotes-legal {
  background: var(--cream);
  display: grid; grid-template-columns: 1fr 1fr;
}
.lotes-legal-left {
  padding: 80px 72px;
  border-right: 1px solid var(--brown-mid);
  display: flex; flex-direction: column; justify-content: center;
}
.lotes-legal-left h3 { color: var(--dark); margin-bottom: 20px; line-height: 1.2; }
.lotes-legal-left h3 em { font-style: italic; }
.lotes-legal-left p { font-size: 14px; color: var(--brown); line-height: 1.85; }

.lotes-legal-right { padding: 80px 72px; display: flex; flex-direction: column; justify-content: center; }
.legal-item {
  display: grid; grid-template-columns: 1fr 28px;
  gap: 24px; align-items: center;
  padding: 22px 0; border-bottom: 1px solid var(--brown-mid);
}
.legal-item:first-child { border-top: 1px solid var(--brown-mid); }
.legal-item-text h4 { font-family: var(--serif); font-size: 20px; color: var(--dark); margin-bottom: 4px; }
.legal-item-text p { font-size: 12px; color: var(--brown); line-height: 1.6; }
.legal-tick {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid rgba(196,132,90,.3);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.legal-tick::after { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--terra); }

.lotes-cta-bar {
  background: var(--dark); padding: 48px 80px;
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
  border-top: 1px solid var(--sep-dark);
}
.lotes-cta-bar p { font-size: 14px; color: rgba(245,237,224,.35); line-height: 1.7; max-width: 460px; }
.lotes-cta-bar p strong { color: rgba(245,237,224,.7); font-weight: 400; }
.lotes-cta-btn {
  flex-shrink: 0; font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--cream); border: 1px solid rgba(245,237,224,.2);
  padding: 13px 28px; text-decoration: none; white-space: nowrap;
}

@media (max-width: 768px) {
  .lotes-intro, .lotes-legal { grid-template-columns: 1fr; }
  .lotes-intro-left { padding: 64px 24px; }
  .lotes-intro-left::before { display: none; }
  .lotes-char { padding: 32px 24px; grid-template-columns: 80px 1fr; }
  .lotes-legal-left, .lotes-legal-right { padding: 48px 24px; border-right: none; }
  .lotes-cta-bar { flex-direction: column; padding: 40px 24px; text-align: center; }
}

/* ════ TESTIMONIOS ════ */
#testimonios {
  background: var(--dark-deep);
  border-top: 1px solid var(--sep-dark);
}

.test-header {
  padding: 80px 80px 72px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 64px;
  border-bottom: 1px solid var(--sep-dark);
}
.test-header h2 { color: var(--cream); }
.test-header h2 em { font-style: italic; color: var(--terra); }
.test-sub { max-width: 340px; flex-shrink: 0; font-size: 13px; color: rgba(245,237,224,.35); line-height: 1.8; }

.test-band {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--sep-dark);
  min-height: 300px;
}
.test-bands .test-band:last-child { border-bottom: none; }

.test-quote {
  padding: 64px 72px;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid var(--sep-dark);
}
.test-band--inv .test-quote { order: 2; border-right: none; border-left: 1px solid var(--sep-dark); }
.test-band--inv .test-side { order: 1; }

.test-qtext {
  font-family: var(--serif);
  font-size: clamp(20px,2vw,28px); font-weight: 300; font-style: italic;
  color: var(--cream); line-height: 1.5;
  position: relative; padding-left: 24px;
}
.test-qtext::before {
  content: ''; position: absolute; left: 0; top: 6px; bottom: 6px;
  width: 1px; background: var(--terra);
}

.test-author { margin-top: 28px; padding-left: 24px; display: flex; flex-direction: column; gap: 4px; }
.test-name { font-family: var(--serif); font-size: 16px; color: rgba(245,237,224,.7); }
.test-detail { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: rgba(196,132,90,.55); }

.test-side { padding: 64px 72px; display: flex; flex-direction: column; justify-content: flex-end; }
.test-side--center { justify-content: center; }

.test-photo {
  width: 100%; height: 180px;
  background: linear-gradient(135deg, var(--dark), #2a1e10);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(245,237,224,.12); margin-bottom: 24px;
}

.test-stat { display: flex; flex-direction: column; gap: 10px; }
.test-stat-val {
  font-family: var(--serif); font-size: 64px; font-weight: 300;
  color: rgba(196,132,90,.15); line-height: 1; letter-spacing: -2px;
}
.test-stat-val em { font-size: 26px; font-style: normal; color: rgba(196,132,90,.3); }
.test-stat-label { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(245,237,224,.2); line-height: 1.6; }

.test-cta {
  background: var(--terra); padding: 52px 80px;
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
}
.test-cta p { font-family: var(--serif); font-size: clamp(20px,2.5vw,30px); font-weight: 300; font-style: italic; color: var(--cream); line-height: 1.3; }
.test-btn {
  flex-shrink: 0; font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--dark); background: var(--cream); border: 1px solid var(--cream);
  padding: 13px 28px; text-decoration: none; white-space: nowrap;
}

@media (max-width: 768px) {
  .test-header { flex-direction: column; padding: 48px 24px 40px; }
  .test-band, .test-band--inv { grid-template-columns: 1fr; }
  .test-quote, .test-band--inv .test-quote { padding: 40px 24px; border: none; order: 1; }
  .test-side, .test-band--inv .test-side { padding: 24px 24px 40px; order: 2; }
  .test-cta { flex-direction: column; padding: 40px 24px; text-align: center; }
}

/* ════ PROCESO ════ */
#proceso {
  background: var(--cream);
  border-top: 1px solid var(--brown-mid);
}

.proceso-header {
  padding: 96px 80px 72px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end;
}
.proceso-header h2 { color: var(--dark); }
.proceso-header h2 em { font-style: italic; }
.proceso-header-right p { font-size: 14px; color: var(--brown); line-height: 1.85; }
.proceso-divider { width: 36px; height: 1px; background: var(--terra); margin-bottom: 22px; }

/* Flex steps with hover expansion */
.steps {
  display: flex;
  border-top: 1px solid var(--brown-mid);
  overflow: hidden;
}
.step {
  flex: 1; padding: 56px 44px 52px;
  border-right: 1px solid var(--brown-mid);
  position: relative; display: flex; flex-direction: column;
  transition: flex .5s cubic-bezier(.4,0,.2,1), background .3s, padding .5s cubic-bezier(.4,0,.2,1);
  min-width: 0; cursor: default;
}
.step:last-child { border-right: none; }
.steps:hover .step { flex: 0.7; }
.steps:hover .step:hover { flex: 1.9; background: rgba(74,46,18,.03); padding-left: 52px; padding-right: 52px; }

/* Top accent line */
.step::before {
  content: ''; position: absolute; top: 0; left: 44px;
  width: 24px; height: 2px; background: var(--terra);
  transition: width .3s ease;
}
.step:hover::before { width: 40px; }

/* Arrow between steps */
.step::after {
  content: ''; position: absolute; top: 80px; right: -1px;
  border-top: 7px solid transparent; border-bottom: 7px solid transparent;
  border-left: 8px solid rgba(196,132,90,.25); z-index: 2;
}
.step:last-child::after { display: none; }

.step-num {
  font-family: var(--serif); font-size: 56px; font-weight: 300; line-height: 1;
  color: rgba(74,46,18,.08); margin-bottom: 28px; letter-spacing: -2px;
  transition: color .3s;
}
.step:hover .step-num { color: rgba(196,132,90,.18); }
.step-title { font-family: var(--serif); font-size: 24px; color: var(--dark); margin-bottom: 14px; }
.step-desc { font-size: 13px; color: var(--brown); line-height: 1.8; flex: 1; }
.step-time {
  margin-top: 24px; font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(196,132,90,.55); padding-top: 16px; border-top: 1px solid rgba(74,46,18,.08);
}

/* Proceso CTA */
.proceso-cta {
  background: var(--dark); padding: 72px 80px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 80px; align-items: center;
  border-top: 1px solid var(--brown-mid);
}
.proceso-cta-text h3 { color: var(--cream); margin-bottom: 16px; }
.proceso-cta-text h3 em { font-style: italic; color: var(--terra); }
.proceso-cta-text p { font-size: 14px; color: rgba(245,237,224,.4); line-height: 1.8; max-width: 440px; }
.proceso-cta-actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
.pcta-btn-wa {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--dark); background: var(--terra); border: 1px solid var(--terra);
  padding: 15px 32px; text-decoration: none; white-space: nowrap;
}
.pcta-btn-mail {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(245,237,224,.35); border: 1px solid rgba(245,237,224,.12);
  padding: 13px 32px; text-decoration: none; white-space: nowrap;
}
.pcta-note { font-size: 11px; color: rgba(245,237,224,.2); font-style: italic; text-align: center; }

@media (max-width: 768px) {
  .proceso-header { grid-template-columns: 1fr; padding: 64px 24px 48px; gap: 32px; }
  .steps { flex-direction: column; }
  .step { flex: none !important; padding: 40px 24px !important; }
  .step::after { display: none; }
  .proceso-cta { grid-template-columns: 1fr; padding: 48px 24px; gap: 32px; }
  .proceso-cta-actions { align-items: stretch; }
  .pcta-btn-wa, .pcta-btn-mail { text-align: center; }
}

/* ════ FAQ ════ */
#faq {
  background: var(--dark-deep);
  border-top: 1px solid var(--sep-dark);
}

.faq-header {
  padding: 80px 80px 72px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 48px;
  border-bottom: 1px solid var(--sep-dark);
}
.faq-header h2 { color: var(--cream); }
.faq-header h2 em { font-style: italic; color: var(--terra); }
.faq-sub { max-width: 300px; flex-shrink: 0; font-size: 13px; color: rgba(245,237,224,.3); line-height: 1.8; }

.faq-list {
  background: var(--dark-deep);
  padding-bottom: 64px;
  border-bottom: 1px solid var(--sep-dark);
}
.faq-item { border-bottom: 1px solid var(--sep-dark); }

.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 0 80px; display: grid; grid-template-columns: 48px 1fr 32px;
  gap: 32px; align-items: center; text-align: left;
  min-height: 88px; transition: background .2s;
}
.faq-q:hover { background: rgba(255,255,255,.02); }
.faq-item.open .faq-q { background: rgba(196,132,90,.04); }

.faq-num {
  font-family: var(--serif); font-size: 13px; letter-spacing: 1px;
  color: rgba(196,132,90,.3); font-weight: 300; transition: color .2s;
}
.faq-item.open .faq-num { color: rgba(196,132,90,.7); }

.faq-q-text {
  font-family: var(--serif); font-size: clamp(18px,2vw,24px);
  font-weight: 300; color: rgba(245,237,224,.75); line-height: 1.2; transition: color .2s;
}
.faq-item.open .faq-q-text { color: var(--cream); }

.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1px solid rgba(196,132,90,.25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, border-color .25s; position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: rgba(196,132,90,.6);
  border-radius: 1px; transition: transform .25s, opacity .25s;
}
.faq-icon::before { width: 11px; height: 1px; }
.faq-icon::after  { width: 1px; height: 11px; }
.faq-item.open .faq-icon { background: var(--terra); border-color: var(--terra); }
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after { background: var(--cream); }
.faq-item.open .faq-icon::after { transform: scaleY(0); opacity: 0; }

.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s cubic-bezier(.4,0,.2,1); }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner {
  padding: 0 80px 36px calc(80px + 48px + 32px);
  font-size: 14px; color: rgba(245,237,224,.4); line-height: 1.9;
}
.faq-a-inner strong { color: rgba(245,237,224,.8); font-weight: 400; }

.faq-cta {
  background: var(--cream); padding: 64px 80px;
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
}
.faq-cta p { font-family: var(--serif); font-size: clamp(22px,2.5vw,32px); font-weight: 300; color: var(--dark); line-height: 1.3; }
.faq-cta p em { font-style: italic; color: var(--terra); }
.faq-cta-btn {
  flex-shrink: 0; font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--cream); background: var(--dark); border: 1px solid var(--dark);
  padding: 14px 32px; text-decoration: none; white-space: nowrap;
}

@media (max-width: 768px) {
  .faq-header { flex-direction: column; padding: 48px 24px 40px; }
  .faq-q { padding: 0 24px; grid-template-columns: 36px 1fr 28px; gap: 16px; }
  .faq-a-inner { padding: 0 24px 28px calc(24px + 36px + 16px); }
  .faq-cta { flex-direction: column; padding: 48px 24px; text-align: center; }
}

/* ════ CTA PRINCIPAL ════ */
#cta {
  background: var(--dark);
  min-height: 100vh;
  display: grid; grid-template-rows: 1fr auto;
  position: relative; overflow: hidden;
  border-top: 1px solid var(--sep-dark);
}

/* Radial glow */
#cta::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  width: 700px; height: 700px;
  background: radial-gradient(ellipse at center, rgba(196,132,90,.09) 0%, transparent 70%);
  pointer-events: none;
}

/* Decorative cross */
.cta-vline {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  width: 1px; height: 320px;
  background: linear-gradient(to bottom, transparent, rgba(196,132,90,.08), transparent);
  pointer-events: none; z-index: 0;
}
.cta-hline {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  width: 320px; height: 1px;
  background: linear-gradient(to right, transparent, rgba(196,132,90,.08), transparent);
  pointer-events: none; z-index: 0;
}

.cta-body {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  padding: 120px 80px 80px; position: relative; z-index: 1;
}
.cta-body::before {
  content: ''; display: block;
  width: 1px; height: 64px;
  background: linear-gradient(to bottom, transparent, rgba(196,132,90,.4));
  margin-bottom: 40px;
}
.cta-body h2 { color: var(--cream); margin-bottom: 24px; max-width: 800px; }
.cta-body h2 em { font-style: italic; color: var(--terra); }
.cta-body p { font-size: 15px; color: rgba(245,237,224,.35); line-height: 1.85; max-width: 440px; margin-bottom: 56px; }

.cta-buttons { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.cta-btn-primary {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--dark); background: var(--terra);
  padding: 18px 48px; text-decoration: none; transition: background .2s;
}
.cta-btn-primary:hover { background: var(--terra-dark); }
.cta-btn-secondary {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(245,237,224,.3); text-decoration: none;
  border-bottom: 1px solid rgba(245,237,224,.12); padding-bottom: 3px;
  transition: color .2s, border-color .2s;
}
.cta-btn-secondary:hover { color: rgba(245,237,224,.6); border-color: rgba(245,237,224,.3); }
.cta-note-text { font-size: 11px; color: rgba(245,237,224,.15); font-style: italic; }

.cta-trust {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--sep-dark); position: relative; z-index: 1;
}
.cta-trust-item {
  padding: 36px 48px; border-right: 1px solid var(--sep-dark);
  display: flex; flex-direction: column; gap: 6px;
}
.cta-trust-item:last-child { border-right: none; }
.cta-trust-val {
  font-family: var(--serif); font-size: 32px; font-weight: 300;
  color: rgba(245,237,224,.7); line-height: 1;
}
.cta-trust-val em { font-style: normal; font-size: 16px; color: var(--terra); }
.cta-trust-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(245,237,224,.2); line-height: 1.5; }

@media (max-width: 768px) {
  .cta-body { padding: 80px 24px 48px; }
  .cta-btn-primary { padding: 16px 32px; }
  .cta-trust { grid-template-columns: 1fr; }
  .cta-trust-item { border-right: none; border-bottom: 1px solid var(--sep-dark); padding: 28px 24px; }
  .cta-trust-item:last-child { border-bottom: none; }
}

/* ════ FOOTER ════ */
footer {
  background: var(--cream);
  border-top: 1px solid var(--brown-mid);
}

.footer-main {
  padding: 72px 80px 64px;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 64px; border-bottom: 1px solid rgba(74,46,18,.08);
}

.footer-brand-name {
  font-family: var(--serif); font-size: 22px; font-weight: 300; color: var(--dark);
  letter-spacing: .5px; display: block; margin-bottom: 6px;
}
.footer-brand-sub {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(196,132,90,.6); display: block; margin-bottom: 20px;
}
.footer-brand p { font-size: 13px; color: var(--brown); line-height: 1.85; max-width: 260px; }

.footer-col-label {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(74,46,18,.35); display: block; margin-bottom: 24px;
}

.footer-contact-item { display: flex; flex-direction: column; gap: 3px; margin-bottom: 18px; }
.footer-contact-item:last-child { margin-bottom: 0; }
.footer-contact-type { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: rgba(196,132,90,.55); }
.footer-contact-val {
  font-family: var(--serif); font-size: 18px; font-weight: 300; color: var(--dark);
  text-decoration: none; transition: color .2s;
}
a.footer-contact-val:hover { color: var(--terra); }

.footer-location-detail { font-size: 13px; color: var(--brown); line-height: 1.85; }
.footer-location-detail strong { color: var(--dark); font-weight: 500; }
.footer-location-tag {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 20px;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(196,132,90,.6);
}
.footer-location-tag::before {
  content: ''; display: block; width: 20px; height: 1px; background: var(--terra); opacity: .5;
}

.footer-bottom {
  padding: 20px 80px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.footer-copy { font-size: 11px; color: rgba(74,46,18,.3); }
.footer-legal { display: flex; gap: 28px; }
.footer-legal a {
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(74,46,18,.25); text-decoration: none; transition: color .2s;
}
.footer-legal a:hover { color: var(--terra); }

@media (max-width: 768px) {
  .footer-main { grid-template-columns: 1fr; padding: 48px 24px 40px; gap: 40px; }
  .footer-bottom { flex-direction: column; padding: 20px 24px; text-align: center; gap: 12px; }
}

/* ════ LIGHTBOX ════ */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(16,13,8,.95); backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  background: none; border: none; color: rgba(245,237,224,.5);
  font-size: 32px; cursor: pointer; transition: color .2s;
}
.lightbox-close:hover { color: var(--cream); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(245,237,224,.4);
  font-size: 48px; cursor: pointer; padding: 16px; transition: color .2s;
}
.lightbox-nav:hover { color: var(--cream); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
#lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lightbox-counter {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-size: 11px; letter-spacing: 2px; color: rgba(245,237,224,.3);
}
