/*
Theme Name: Buenos Aires Transfers
Theme URI: https://buenosairestransfers.net
Author: Buenos Aires Transfers
Description: Custom dark/gold theme for Buenos Aires Transfers — private driver and city tours.
Version: 1.0
License: Private
Text Domain: bat-theme
*/

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

:root {
  --negro:   #0d0d0d;
  --carbon:  #1a1a1a;
  --gris:    #2e2e2e;
  --humo:    #5a5a5a;
  --plata:   #a0a0a0;
  --arena:   #f5f0ea;
  --blanco:  #ffffff;
  --oro:     #c9a227;
  --oro-claro: #f0d87a;
  --fuente: 'Georgia', 'Times New Roman', serif;
  --sans:   -apple-system, 'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--blanco); color: var(--negro); line-height: 1.6; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* TOPBAR */
.topbar {
  background: var(--negro);
  color: var(--plata);
  font-size: 12px;
  text-align: center;
  padding: 8px 20px;
  letter-spacing: 0.5px;
}
.topbar strong { color: var(--oro); }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,13,13,0.96);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 68px;
  border-bottom: 1px solid #222;
}
.nav-logo { font-family: var(--fuente); font-size: 18px; font-weight: 700; color: var(--blanco); letter-spacing: 1px; }
.nav-logo span { color: var(--oro); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: #bbb; font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--oro); }
.nav-cta { background: var(--oro); color: var(--negro) !important; font-weight: 700 !important; padding: 10px 22px; border-radius: 3px; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--oro-claro) !important; }

/* HAMBURGER */
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--blanco); border-radius: 2px; transition: all 0.25s; }
.nav-toggle.nav-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.nav-open span:nth-child(2) { opacity: 0; }
.nav-toggle.nav-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center;
  background: #0d0d0d; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(13,13,13,0.88) 38%, rgba(13,13,13,0.25) 100%),
    url('https://buenosairestransfers.net/wp-content/uploads/2024/06/colon-theater-9-de-julio.jpg');
  background-size: cover; background-position: center 40%;
}
.hero-bg-fallback { position: absolute; inset: 0; background: linear-gradient(135deg, #0a0a0a 0%, #1c0f00 50%, #050d08 100%); }
.hero-content { position: relative; z-index: 2; padding: 0 80px; max-width: 720px; }
.hero-eyebrow {
  font-size: 11px; text-transform: uppercase; letter-spacing: 3px;
  color: var(--oro); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before { content: ''; display: inline-block; width: 30px; height: 1px; background: var(--oro); }
.hero h1 { font-family: var(--fuente); font-size: clamp(38px, 5vw, 68px); font-weight: 700; color: var(--blanco); line-height: 1.1; margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--oro); }
.hero-sub { font-size: 17px; color: #c0c0c0; line-height: 1.7; margin-bottom: 40px; max-width: 480px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--oro); color: var(--negro); font-weight: 700; font-size: 14px;
  padding: 16px 32px; border-radius: 3px; letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--oro-claro); transform: translateY(-1px); }
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.3); color: var(--blanco);
  font-size: 14px; padding: 16px 32px; border-radius: 3px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--oro); background: rgba(201,162,39,0.08); }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.4); font-size: 11px; text-transform: uppercase;
  letter-spacing: 2px; text-align: center; z-index: 2;
}
.scroll-arrow {
  display: block; width: 20px; height: 20px;
  border-right: 1px solid rgba(255,255,255,0.3); border-bottom: 1px solid rgba(255,255,255,0.3);
  transform: rotate(45deg); margin: 8px auto 0;
  animation: bounce 1.8s infinite;
}
@keyframes bounce { 0%,100%{transform:rotate(45deg) translateY(0)} 50%{transform:rotate(45deg) translateY(4px)} }

/* STATS */
.stats {
  background: var(--carbon);
  border-top: 1px solid #333; border-bottom: 1px solid #333;
  display: flex; justify-content: center;
}
.stat-item { flex: 1; max-width: 220px; padding: 24px 20px; text-align: center; border-right: 1px solid #333; }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--fuente); font-size: 30px; font-weight: 700; color: var(--oro); display: block; line-height: 1; }
.stat-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--plata); margin-top: 6px; }

/* SECTIONS */
section { padding: 88px 40px; }
.section-eyebrow {
  font-size: 11px; text-transform: uppercase; letter-spacing: 3px;
  color: var(--oro); margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.section-eyebrow::before { content: ''; display: inline-block; width: 24px; height: 1px; background: var(--oro); }
.section-title { font-family: var(--fuente); font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; line-height: 1.2; color: var(--negro); margin-bottom: 16px; }
.section-title em { font-style: italic; color: var(--humo); }
.section-sub { font-size: 16px; color: var(--humo); max-width: 540px; line-height: 1.7; margin-bottom: 52px; }
.centered { text-align: center; }
.centered .section-eyebrow { justify-content: center; }
.centered .section-eyebrow::before { display: none; }
.centered .section-sub { margin-left: auto; margin-right: auto; }

/* HOW IT WORKS */
.how-it-works { background: var(--arena); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 900px; margin: 0 auto; }
.step { text-align: center; padding: 40px 28px; background: var(--blanco); border-radius: 4px; position: relative; }
.step-num { font-family: var(--fuente); font-size: 56px; font-weight: 700; color: #f0e8d0; line-height: 1; position: absolute; top: 12px; right: 18px; }
.step-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.step h3 { font-family: var(--fuente); font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--negro); }
.step p { font-size: 14px; color: var(--humo); line-height: 1.7; }

/* SERVICES */
.services { background: var(--blanco); }
.servicios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.servicio-card { border-radius: 4px; overflow: hidden; background: var(--negro); position: relative; transition: transform 0.25s; cursor: pointer; }
.servicio-card:hover { transform: translateY(-4px); }
.servicio-card.featured { grid-column: span 2; }
.card-img { height: 220px; background: #1a1a1a; position: relative; overflow: hidden; }
.servicio-card.featured .card-img { height: 280px; }
.card-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--oro); color: var(--negro);
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 10px; border-radius: 2px; z-index: 2;
}
.card-body { padding: 24px; color: var(--blanco); }
.card-meta { display: flex; gap: 16px; margin-bottom: 10px; flex-wrap: wrap; }
.card-meta span { font-size: 11px; color: var(--plata); text-transform: uppercase; letter-spacing: 0.5px; }
.card-body h3 { font-family: var(--fuente); font-size: 20px; font-weight: 700; margin-bottom: 8px; color: var(--blanco); line-height: 1.3; }
.card-body p { font-size: 13px; color: #aaa; line-height: 1.6; margin-bottom: 20px; }
.card-highlights { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.highlight-tag { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); color: #ccc; font-size: 11px; padding: 4px 10px; border-radius: 20px; }
.card-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 16px; }
.card-price { font-size: 13px; color: var(--plata); }
.card-price strong { font-size: 20px; color: var(--oro); font-family: var(--fuente); }
.card-btn {
  background: transparent; border: 1px solid rgba(201,162,39,0.5);
  color: var(--oro); font-size: 12px; padding: 8px 18px; border-radius: 3px;
  cursor: pointer; transition: background 0.2s; letter-spacing: 0.5px;
  display: inline-block;
}
.card-btn:hover { background: rgba(201,162,39,0.15); }

/* WHY PRIVATE */
.why-private { background: var(--negro); color: var(--blanco); }
.why-private .section-title { color: var(--blanco); }
.why-private .section-sub { color: var(--plata); }
.diff-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  max-width: 800px; margin: 0 auto;
  background: #333; border-radius: 6px; overflow: hidden;
}
.diff-header { background: var(--carbon); padding: 20px 28px; text-align: center; }
.diff-header.ours { background: rgba(201,162,39,0.12); }
.diff-header h4 { font-size: 14px; letter-spacing: 1px; text-transform: uppercase; }
.diff-header.ours h4 { color: var(--oro); }
.diff-header p { font-size: 12px; color: var(--plata); margin-top: 4px; }
.diff-cell { background: var(--carbon); padding: 16px 28px; font-size: 14px; color: #999; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #333; }
.diff-cell.ours { background: rgba(201,162,39,0.06); color: var(--blanco); font-weight: 500; }
.diff-cell::before { content: '✗'; color: #555; font-size: 12px; flex-shrink: 0; }
.diff-cell.ours::before { content: '✓'; color: var(--oro); font-size: 14px; }
.diff-cell.ours.neutral::before { content: '★'; color: var(--oro); }
.diff-cell.neutral { color: #666; }
.diff-cell.neutral::before { content: '–'; color: #444; }

/* NEIGHBORHOODS */
.neighborhoods { background: var(--arena); }
.barrios-intro { max-width: 1100px; margin: 0 auto; }
.barrios-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.barrio-card { border-radius: 4px; overflow: hidden; position: relative; height: 200px; cursor: pointer; background: var(--gris); transition: transform 0.2s; }
.barrio-card:hover { transform: scale(1.02); }
.barrio-card.tall { height: 260px; }
.barrio-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 18px; }
.barrio-name { font-family: var(--fuente); font-size: 18px; font-weight: 700; color: var(--blanco); line-height: 1.2; }
.barrio-desc { font-size: 12px; color: #ccc; margin-top: 4px; }

/* TESTIMONIALS */
.testimonials { background: var(--blanco); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.testi-card { background: var(--arena); border-radius: 4px; padding: 32px; position: relative; }
.testi-stars { color: var(--oro); font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-quote { font-size: 15px; color: var(--carbon); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testi-quote::before { content: '"'; font-size: 40px; color: #ddd; line-height: 0; vertical-align: -16px; margin-right: 4px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gris); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: 14px; }
.testi-origin { font-size: 12px; color: var(--humo); }
.testi-platform { position: absolute; top: 20px; right: 20px; font-size: 11px; color: var(--plata); background: #e8e0d0; padding: 3px 8px; border-radius: 10px; }

/* BLOG */
.blog-preview { background: var(--arena); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.blog-card { background: var(--blanco); border-radius: 4px; overflow: hidden; transition: transform 0.2s; display: block; }
.blog-card:hover { transform: translateY(-3px); }
.blog-img { height: 160px; overflow: hidden; position: relative; background: #1a1a1a; }
.blog-body { padding: 24px; }
.blog-tag { font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--oro); font-weight: 700; margin-bottom: 8px; }
.blog-body h4 { font-family: var(--fuente); font-size: 17px; font-weight: 700; color: var(--negro); margin-bottom: 10px; line-height: 1.4; }
.blog-body p { font-size: 13px; color: var(--humo); line-height: 1.6; margin-bottom: 16px; }
.blog-read-more { font-size: 12px; color: var(--oro); font-weight: 600; letter-spacing: 0.5px; }

/* CTA */
.cta-section { background: var(--negro); text-align: center; padding: 96px 40px; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(201,162,39,0.12) 0%, transparent 70%); }
.cta-section .section-eyebrow { justify-content: center; color: var(--oro-claro); }
.cta-section .section-eyebrow::before { display: none; }
.cta-section .section-title { color: var(--blanco); }
.cta-section p { font-size: 17px; color: var(--plata); max-width: 500px; margin: 0 auto 40px; line-height: 1.7; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }
.btn-whatsapp { background: #25d366; color: #fff; font-weight: 700; font-size: 15px; padding: 16px 36px; border-radius: 3px; display: flex; align-items: center; gap: 10px; transition: background 0.2s; }
.btn-whatsapp:hover { background: #1cb855; }
.btn-email { border: 1px solid rgba(255,255,255,0.2); color: var(--blanco); font-size: 15px; padding: 16px 36px; border-radius: 3px; transition: border-color 0.2s; }
.btn-email:hover { border-color: var(--oro); }

/* FOOTER */
footer { background: #0a0a0a; color: var(--plata); padding: 60px 40px 32px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .nav-logo { font-size: 20px; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: var(--humo); line-height: 1.7; max-width: 260px; }
.footer-col h5 { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--blanco); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 13px; color: var(--humo); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--oro); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.social-btn { width: 36px; height: 36px; border: 1px solid #333; border-radius: 3px; display: flex; align-items: center; justify-content: center; font-size: 16px; transition: border-color 0.2s; }
.social-btn:hover { border-color: var(--oro); }
.footer-bottom { border-top: 1px solid #1a1a1a; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: #444; }
.footer-bottom a { color: #444; }
.footer-bottom a:hover { color: var(--oro); }

/* ONE RIDE ONE TREE */
.one-tree { background: #1e3d2f; padding: 64px 40px; }
.one-tree-inner { max-width: 980px; margin: 0 auto; display: flex; align-items: center; gap: 48px; }
.one-tree-logo { width: 140px; height: auto; flex-shrink: 0; object-fit: contain; }
.one-tree-eyebrow { font-size: 11px; text-transform: uppercase; letter-spacing: 3px; color: #8fce9f; margin-bottom: 10px; }
.one-tree-text h2 { font-family: var(--fuente); font-size: clamp(22px, 3vw, 32px); color: #fff; line-height: 1.25; margin-bottom: 12px; }
.one-tree-text p { font-size: 15px; color: #cfe3d4; line-height: 1.7; margin-bottom: 18px; max-width: 640px; }
.one-tree-cta { color: #8fce9f; font-weight: 700; font-size: 14px; letter-spacing: 0.5px; border-bottom: 1px solid rgba(143,206,159,0.4); padding-bottom: 2px; transition: border-color 0.2s; }
.one-tree-cta:hover { border-color: #8fce9f; }

/* PAGE / SINGLE post content */
.page-hero { position: relative; height: 54vh; min-height: 400px; display: flex; align-items: center; background: #0d0d0d; overflow: hidden; }
.page-hero .hero-content { max-width: 760px; }
.entry-wrap { max-width: 760px; margin: 0 auto; padding: 72px 40px; }
.entry-wrap .entry-title { font-family: var(--fuente); font-size: clamp(26px, 3.5vw, 42px); font-weight: 700; line-height: 1.2; margin-bottom: 24px; }
.entry-wrap .entry-meta { font-size: 13px; color: var(--plata); margin-bottom: 40px; border-bottom: 1px solid #eee; padding-bottom: 20px; }
.entry-content p { font-size: 16px; line-height: 1.8; color: var(--carbon); margin-bottom: 1.5em; }
.entry-content h2 { font-family: var(--fuente); font-size: 26px; font-weight: 700; margin: 2em 0 0.6em; color: var(--negro); }
.entry-content h3 { font-family: var(--fuente); font-size: 20px; font-weight: 700; margin: 1.6em 0 0.5em; color: var(--negro); }
.entry-content ul, .entry-content ol { margin: 0 0 1.5em 1.5em; }
.entry-content li { font-size: 16px; line-height: 1.8; color: var(--carbon); margin-bottom: 0.4em; }
.entry-content img { border-radius: 4px; margin: 2em 0; height: auto; }
.entry-content a { color: var(--oro); border-bottom: 1px solid rgba(201,162,39,0.3); }
.entry-content a:hover { border-color: var(--oro); }
.entry-content blockquote { border-left: 3px solid var(--oro); padding: 16px 24px; margin: 2em 0; background: var(--arena); font-style: italic; border-radius: 0 4px 4px 0; }

/* ARCHIVE */
.archive-wrap { max-width: 1100px; margin: 0 auto; padding: 72px 40px; }
.archive-title { font-family: var(--fuente); font-size: 36px; font-weight: 700; margin-bottom: 52px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .servicios-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; max-width: 480px; }
  .testi-grid { grid-template-columns: 1fr; max-width: 540px; }
  .blog-grid { grid-template-columns: 1fr; max-width: 540px; }
  .barrios-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats { flex-wrap: wrap; }
  .stat-item { flex: 1 1 33%; max-width: none; border-bottom: 1px solid #333; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 60px; left: 0; right: 0;
    background: rgba(13,13,13,0.98); backdrop-filter: blur(8px);
    border-top: 1px solid #333; padding: 8px 0; z-index: 200;
  }
  .nav-links.nav-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 24px; font-size: 14px; border-bottom: 1px solid #222; }
  .nav-links li:last-child a { margin: 12px 16px; border-radius: 3px; border-bottom: none; text-align: center; }
  nav { position: relative; padding: 0 16px; height: 60px; }
}
@media (max-width: 640px) {
  .topbar { font-size: 10px; padding: 6px 10px; }
  .hero { min-height: 520px; height: 92vh; }
  .hero-content { padding: 0 22px; }
  .hero h1 { font-size: 34px; }
  .hero-sub { font-size: 15px; }
  .hero-ctas { width: 100%; }
  .hero-ctas a { width: 100%; text-align: center; justify-content: center; }
  section { padding: 56px 18px; }
  .servicios-grid { grid-template-columns: 1fr; }
  .servicio-card.featured { grid-column: span 1; }
  .servicio-card.featured .card-img { height: 220px; }
  .stat-item { flex: 1 1 50%; padding: 16px 10px; }
  .stat-num { font-size: 22px; }
  .stat-label { font-size: 9px; }
  .barrios-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .barrio-card, .barrio-card.tall { height: 150px; grid-row: auto !important; }
  .barrio-name { font-size: 15px; }
  .barrio-desc { font-size: 10px; }
  .diff-header { padding: 12px 14px; }
  .diff-header h4 { font-size: 11px; }
  .diff-header p { font-size: 10px; }
  .diff-cell { padding: 10px 14px; font-size: 12px; gap: 6px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons a { width: 100%; justify-content: center; text-align: center; }
  .section-title { font-size: 26px; }
  .section-sub { font-size: 14px; margin-bottom: 36px; }
  .card-body h3 { font-size: 18px; }
  .one-tree { padding: 48px 20px; }
  .one-tree-inner { flex-direction: column; text-align: center; gap: 24px; }
  .one-tree-text p { font-size: 14px; }
  .entry-wrap { padding: 48px 20px; }
  .archive-wrap { padding: 48px 20px; }
}

/* ============ INTERNAL PAGES ============ */
.page-hero { height: 54vh; min-height: 400px; }
.page-hero .hero-content { max-width: 760px; }
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e2dccf; padding: 26px 0; }
.faq-item h3 { font-family: var(--fuente); font-size: 19px; font-weight: 700; color: var(--negro); margin-bottom: 10px; }
.faq-item p { font-size: 15px; color: var(--humo); line-height: 1.7; }
.inc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 860px; margin: 0 auto; }
.inc-col { background: var(--blanco); border-radius: 4px; padding: 32px; }
.inc-col h3 { font-family: var(--fuente); font-size: 19px; margin-bottom: 18px; }
.inc-col ul { list-style: none; }
.inc-col li { padding: 8px 0; font-size: 14px; color: var(--gris); display: flex; gap: 10px; align-items: baseline; }
.inc-col.yes li::before { content: '✓'; color: var(--oro); font-weight: 700; }
.inc-col.no li::before { content: '✗'; color: #bbb; font-weight: 700; }
.fleet-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 860px; margin: 0 auto 32px; }
.fleet-strip .fleet-img { border-radius: 4px; overflow: hidden; height: 240px; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.contact-card { background: var(--blanco); border-radius: 4px; padding: 40px 28px; text-align: center; }
.contact-card .ico { font-size: 40px; margin-bottom: 16px; }
.contact-card h3 { font-family: var(--fuente); font-size: 19px; margin-bottom: 8px; }
.contact-card p { font-size: 14px; color: var(--humo); margin-bottom: 18px; }
@media (max-width: 640px) {
  .inc-grid, .fleet-strip, .contact-grid { grid-template-columns: 1fr; }
  .page-hero { height: 46vh; }
}

/* ============ ONE TREE STATS ============ */
.tree-counter { display: flex; justify-content: center; gap: 48px; margin: 0 auto; max-width: 700px; flex-wrap: wrap; }
.tree-stat { text-align: center; }
.tree-stat .num { font-family: var(--fuente); font-size: 44px; font-weight: 700; color: #2e6b45; display: block; line-height: 1; }
.tree-stat .lbl { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--humo); margin-top: 8px; }

/* ============ ONE TREE: THE PLACE + QUOTE ============ */
.place-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 1000px; margin: 0 auto; align-items: center; }
.place-grid .place-img { border-radius: 4px; overflow: hidden; height: 360px; }
.place-grid h2 { font-family: var(--fuente); font-size: 30px; margin-bottom: 16px; }
.place-grid p { font-size: 15px; color: var(--humo); line-height: 1.8; margin-bottom: 14px; }
.quote-block { background: #1e3d2f; padding: 80px 40px; text-align: center; }
.quote-block blockquote { font-family: var(--fuente); font-style: italic; font-size: clamp(20px, 2.6vw, 28px); color: #e8f3ea; max-width: 720px; margin: 0 auto 16px; line-height: 1.5; }
.quote-block cite { font-size: 13px; color: #8fce9f; font-style: normal; letter-spacing: 1px; text-transform: uppercase; }
@media (max-width: 760px) {
  .place-grid { grid-template-columns: 1fr; }
  .place-grid .place-img { height: 240px; }
}

/* ============ LANGUAGE SWITCHER (topbar) ============ */
.topbar-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; position: relative; }
.lang-switch { display: flex; gap: 6px; align-items: center; }
.lang-switch a { display: inline-block; padding: 3px 10px; border-radius: 3px; font-size: 12px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: #cbb66b; border: 1px solid rgba(201,162,39,0.4); transition: all 0.18s; }
.lang-switch a:hover { background: var(--oro); color: var(--negro); border-color: var(--oro); }
.lang-switch a.current-lang, .lang-switch .current-lang > a { background: var(--oro); color: var(--negro); border-color: var(--oro); }
.lang-switch ul { list-style: none; display: flex; gap: 6px; margin: 0; padding: 0; }
.lang-switch .lang_item { display: inline-block; }
@media (max-width: 640px) {
  .topbar-inner { gap: 10px; font-size: 11px; }
  .topbar .topbar-tagline { display: none; }
}
.footer-lang { align-items: center; flex-wrap: wrap; }
.footer-lang .lang-label { color: var(--plata); font-size: 13px; margin-right: 4px; }
.footer-lang ul { list-style: none; display: flex; gap: 8px; margin: 0; padding: 0; }
.footer-lang a { display: inline-block; padding: 4px 12px; border-radius: 3px; font-size: 13px; font-weight: 600; color: var(--oro-claro); border: 1px solid rgba(201,162,39,0.45); transition: all 0.18s; }
.footer-lang a:hover { background: var(--oro); color: var(--negro); border-color: var(--oro); }
.footer-lang .current-lang > a, .footer-lang a.current-lang { background: var(--oro); color: var(--negro); border-color: var(--oro); }
