/* =====================================================================
   Hortalizas Adoberas — Hoja de estilos
   Tokens y componentes extraídos del design system (Style Guide.dc.html).
   Mobile-first. Toda decisión de color/tipografía/espaciado nace de aquí.
   ===================================================================== */

/* ------------------------------------------------------------------ */
/* 1. TOKENS (design system → CSS variables)                          */
/* ------------------------------------------------------------------ */
:root {
  /* — Verdes de huerta — */
  --verde-hoja:   #4F7330; /* primario */
  --verde-huerta: #35501F; /* oscuro / hover */
  --verde-salvia: #8BA45E; /* secundario */
  --verde-claro:  #DCE4C9; /* fondo suave */

  /* — Marrones de tierra — */
  --tierra:        #6E4A2A;
  --tierra-clara:  #9A7349;
  --arena:         #C7A576;
  --tierra-honda:  #2D281E; /* texto principal */

  /* — Fondos crema / hueso — */
  --crema:        #FBF6EA; /* fondo base */
  --crema-calido: #F3E9D2; /* sección alterna */
  --blanco:       #FFFFFF;
  --lino:         #E3D8C0; /* bordes / líneas */

  /* — Acentos cálidos (CTA) — */
  --tomate:       #D2512C; /* acento principal */
  --tomate-hondo: #B23F1F; /* hover CTA */
  --calabaza:     #E08A33; /* acento 2 / badges */
  --melocoton:    #FBE3CC; /* fondo de aviso */

  /* — Texto & estados — */
  --texto:       #2D281E;
  --texto-sec:   #6B6253;
  --texto-tenue: #9A907E;
  --exito:       #2E7D4F;
  --error:       #C24A2C;
  --whatsapp:    #25D366;

  /* — Tipografía — */
  --font-serif: 'Vollkorn', Georgia, 'Times New Roman', serif;
  --font-sans:  'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* — Radios — */
  --r-sm:   12px;
  --r-md:   14px;
  --r-lg:   16px;
  --r-xl:   20px;
  --r-2xl:  28px;
  --r-pill: 999px;

  /* — Sombras — */
  --shadow-sm:   0 10px 24px -18px rgba(45, 40, 30, 0.40);
  --shadow-card: 0 14px 34px -24px rgba(45, 40, 30, 0.45);
  --shadow-cta:  0 12px 26px -10px rgba(210, 81, 44, 0.60);

  /* — Layout — */
  --maxw: 1120px;
  --gutter: 24px;

  /* — Foco accesible — */
  --focus-ring: 0 0 0 3px rgba(79, 115, 48, 0.45);
}

/* ------------------------------------------------------------------ */
/* 2. RESET / BASE                                                    */
/* ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--crema);
  color: var(--texto);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; }

::selection { background: var(--melocoton); color: var(--texto); }

h1, h2, h3, h4 { font-family: var(--font-serif); margin: 0; }
p { margin: 0; }

/* Respeta a quien prefiere menos movimiento */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ------------------------------------------------------------------ */
/* 3. UTILIDADES DE LAYOUT / ACCESIBILIDAD                            */
/* ------------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: 56px; }
.section--alt { background: var(--crema-calido); }
.section__lead { max-width: 60ch; color: var(--texto-sec); font-size: 1.0625rem; }

/* Cabecera de sección con número + línea (patrón del design) */
.eyebrow {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 6px;
}
.eyebrow__label {
  font-weight: 800;
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tomate);
}
.eyebrow__rule { flex: 1; height: 1px; background: var(--lino); }

.section__title {
  font-weight: 700;
  font-size: clamp(1.875rem, 5vw, 2.5rem);
  letter-spacing: -0.01em;
  margin: 8px 0 12px;
}

/* Salto de foco accesible */
.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 100;
  background: var(--tomate);
  color: var(--crema);
  padding: 12px 18px;
  border-radius: var(--r-md);
  font-weight: 800;
  text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 12px; }

/* Solo lectores de pantalla */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Foco visible global */
:focus-visible {
  outline: 3px solid var(--verde-hoja);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Desplazamiento para el header sticky al saltar a anclas */
:target,
[id] { scroll-margin-top: 84px; }

/* ------------------------------------------------------------------ */
/* 4. BOTONES (componentes del design system)                         */
/* ------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;            /* área táctil del design */
  padding: 16px 28px;
  border-radius: var(--r-md);  /* 14px */
  border: none;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}
.btn:active { transform: translateY(1px); }

/* CTA principal — tomate */
.btn--primary {
  background: var(--tomate);
  color: var(--crema);
  box-shadow: var(--shadow-cta);
}
.btn--primary:hover { background: var(--tomate-hondo); transform: translateY(-1px); }

/* Secundario — outline verde sobre blanco */
.btn--secondary {
  background: var(--blanco);
  color: var(--verde-hoja);
  border: 1.5px solid #C7D3AE;
  font-weight: 700;
  padding: 15px 26px;
}
.btn--secondary:hover {
  color: var(--verde-huerta);
  border-color: var(--verde-hoja);
  box-shadow: var(--focus-ring);
}

/* Terciario / texto */
.btn--ghost {
  background: none;
  color: var(--tomate);
  font-weight: 700;
  font-size: 0.96875rem;
  min-height: 0;
  padding: 8px 4px;
  gap: 7px;
}
.btn--ghost:hover { color: var(--tomate-hondo); }

/* WhatsApp */
.btn--whatsapp { background: var(--whatsapp); color: #fff; }
.btn--whatsapp:hover { background: #1da851; transform: translateY(-1px); }

/* Botón solo-icono */
.btn--icon {
  width: 54px;
  height: 54px;
  min-height: 0;
  padding: 0;
  border-radius: var(--r-lg);
}

.btn--block { width: 100%; }

/* ------------------------------------------------------------------ */
/* 5. BADGES / PÍLDORAS                                               */
/* ------------------------------------------------------------------ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
}
.badge--temporada { background: var(--verde-hoja); color: var(--crema); }
.badge--km0       { background: var(--blanco); color: var(--verde-hoja); border: 1.5px solid var(--verde-salvia); }
.badge--hoy       { background: var(--tomate); color: var(--crema); }
.badge--ultima    { background: var(--melocoton); color: var(--tomate-hondo); }
.badge--sintratar { background: var(--verde-claro); color: var(--verde-huerta); }
.badge--familiar  { background: var(--tierra); color: var(--crema); }

/* Badge pequeño dentro de tarjetas */
.badge--sm { padding: 5px 12px; font-size: 0.75rem; }

/* ------------------------------------------------------------------ */
/* 6. HEADER / NAVEGACIÓN                                              */
/* ------------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 234, 0.88);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--lino);
  box-shadow: 0 6px 20px -18px rgba(45, 40, 30, 0.6);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--texto);
}
.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--tomate);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px -6px rgba(0, 0, 0, 0.4);
}
.brand__name {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 1.125rem;
  line-height: 1;
}
.nav { display: none; align-items: center; gap: 28px; }
.nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--texto-sec);
}
.nav a:hover { color: var(--verde-hoja); }
/* Iconos de acción del navbar (WhatsApp + Google Maps) */
.header__actions { display: inline-flex; align-items: center; gap: 10px; }
.header__icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--crema);
  box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.45);
  transition: transform 0.15s ease, filter 0.15s ease;
}
.header__icon:hover { transform: translateY(-1px); filter: brightness(1.05); }
.header__icon:active { transform: translateY(0); }
.header__icon--wa { background: var(--tomate); }
.header__icon--map { background: var(--verde-hoja); }

@media (min-width: 760px) {
  .nav { display: flex; }
}

/* ------------------------------------------------------------------ */
/* 7. HERO                                                             */
/* ------------------------------------------------------------------ */
.hero { padding: 0; }
/* Panel a sangre: ocupa todo el ancho de la ventana */
.hero__panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #3F5E26 0%, #4F7330 55%, #5C8336 100%);
  color: var(--crema);
  display: flex;
  align-items: center;
  min-height: clamp(440px, 76svh, 720px);
  padding-block: 56px;
}
/* Contenido centrado y limitado al ancho de lectura */
.hero__content { position: relative; z-index: 3; width: 100%; }
/* Foto de la huerta a sangre dentro del panel */
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.02);
}
/* Velo verde para mantener el texto legible sobre la foto */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(152deg, rgba(53, 80, 31, 0.94) 0%, rgba(63, 94, 38, 0.80) 44%, rgba(79, 115, 48, 0.42) 100%),
    linear-gradient(to top, rgba(45, 40, 30, 0.50), rgba(45, 40, 30, 0) 55%);
}
/* Textura de puntos del design */
.hero__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.10;
  background-image: radial-gradient(circle at 1px 1px, var(--crema) 1.4px, transparent 0);
  background-size: 26px 26px;
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 3; }

/* Sello flotante de frescura */
.hero__stamp {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  display: none;                 /* solo en desktop, para no tapar contenido en móvil */
  align-items: center;
  gap: 12px;
  padding: 12px 18px 12px 14px;
  border-radius: var(--r-pill);
  background: rgba(251, 246, 234, 0.94);
  color: var(--verde-huerta);
  box-shadow: 0 16px 34px -16px rgba(45, 40, 30, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hero__stamp-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--calabaza);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 6px 16px -6px rgba(224, 138, 51, 0.8);
}
.hero__stamp-text { display: grid; line-height: 1.2; }
.hero__stamp-text strong { font-size: 0.9375rem; font-weight: 800; }
.hero__stamp-text span { font-size: 0.78125rem; color: var(--texto-sec); }
.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.hero__kicker-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--tomate);
  display: grid; place-items: center;
  box-shadow: 0 6px 18px -6px rgba(0, 0, 0, 0.4);
}
.hero__kicker-text {
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.8125rem;
  opacity: 0.85;
}
.hero__title {
  font-weight: 800;
  font-size: clamp(2.75rem, 11vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.hero__claim {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.125rem, 3.6vw, 1.5rem);
  line-height: 1.4;
  max-width: 38ch;
  color: #EDEAD2;
  margin-bottom: 28px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
/* Botón secundario sobre fondo verde: variante translúcida legible */
.hero__actions .btn--secondary {
  background: rgba(251, 246, 234, 0.12);
  color: var(--crema);
  border-color: rgba(251, 246, 234, 0.55);
}
.hero__actions .btn--secondary:hover {
  background: rgba(251, 246, 234, 0.2);
  color: var(--crema);
  border-color: var(--crema);
  box-shadow: none;
}
.hero__tags { display: flex; flex-wrap: wrap; gap: 10px; }
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(251, 246, 234, 0.14);
  border: 1px solid rgba(251, 246, 234, 0.25);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-size: 0.875rem;
  font-weight: 600;
}

@media (min-width: 760px) {
  .hero__panel { padding-block: 72px; }
  .hero__stamp { display: inline-flex; }
}

/* ------------------------------------------------------------------ */
/* 8. PRODUCTOS / DE TEMPORADA                                        */
/* ------------------------------------------------------------------ */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 560px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 920px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }

.product-card {
  background: var(--blanco);
  border: 1px solid #EFE7D4;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -26px rgba(45, 40, 30, 0.55);
}
.product-card__media {
  position: relative;
  height: 188px;
  display: grid;
  place-items: center;
  font-size: 64px;
  line-height: 1;
  overflow: hidden;
}
/* Foto del producto: cubre la cabecera; el degradado por producto queda de
   reserva por si la imagen aún no ha cargado. */
.product-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.product-card:hover .product-card__img { transform: scale(1.06); }
.product-card__media-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--crema);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1;
}
.product-card__media-badge--green { color: var(--verde-hoja); }
.product-card__media-badge--red   { color: var(--tomate-hondo); }

.product-card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.product-card__title { font-weight: 700; font-size: 1.375rem; margin-bottom: 6px; }
.product-card__text { font-size: 0.90625rem; line-height: 1.55; color: var(--texto-sec); margin-bottom: 16px; }
.product-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}
.product-card__price {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--verde-hoja);
}
.product-card__price span { font-size: 0.8125rem; color: var(--texto-tenue); font-family: var(--font-sans); font-weight: 400; }

/* Degradados de cabecera por producto (del design) */
.media--tomate    { background: linear-gradient(135deg, #C0341F, #E0572E); }
.media--lechuga   { background: linear-gradient(135deg, #5C8336, #8BA45E); }
.media--pimiento  { background: linear-gradient(135deg, #C77A1F, #E0A33A); }
.media--calabacin { background: linear-gradient(135deg, #4F7330, #6E9A3C); }
.media--zanahoria { background: linear-gradient(135deg, #C77A1F, #E08A33); }
.media--cebolla   { background: linear-gradient(135deg, #9A7349, #C7A576); }
.media--verde     { background: linear-gradient(135deg, #4F7330, #8BA45E); }
.media--tierra    { background: linear-gradient(135deg, #6E4A2A, #9A7349); }

/* Emoji de respaldo (productos sin foto, p. ej. los que añade el tío) */
.product-card__emoji { font-size: 64px; line-height: 1; position: relative; }

/* Línea de estado "X productos disponibles" */
.products-live {
  font-weight: 700;
  font-size: 0.84375rem;
  letter-spacing: 0.02em;
  color: var(--verde-hoja);
  margin: 4px 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.products-live::before {
  content: "";
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--exito);
  box-shadow: 0 0 0 4px rgba(46, 125, 79, 0.18);
}

/* --- Producto agotado: foto atenuada + sello "Hoy no queda" --- */
.product-card--agotado .product-card__img { filter: grayscale(0.85) brightness(0.92); opacity: 0.6; }
.product-card--agotado .product-card__emoji { filter: grayscale(1); opacity: 0.5; }
.product-card--agotado .product-card__title { color: var(--texto-sec); }
.product-card__out {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
  background: rgba(45, 40, 30, 0.34);
  color: var(--crema);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}
.product-card__out::before {
  content: "";
  position: absolute;
  left: 14px; right: 14px;
  height: 2px;
  background: rgba(251, 246, 234, 0.9);
  transform: rotate(-6deg);
}

.products-note {
  margin-top: 22px;
  font-size: 0.875rem;
  color: var(--texto-sec);
}

/* ------------------------------------------------------------------ */
/* 9. SOBRE NOSOTROS                                                  */
/* ------------------------------------------------------------------ */
.about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
@media (min-width: 860px) { .about { grid-template-columns: 1.05fr 0.95fr; gap: 40px; } }

.about__text p + p { margin-top: 16px; }
.about__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.375rem;
  line-height: 1.45;
  color: var(--verde-huerta);
  border-left: 3px solid var(--verde-salvia);
  padding-left: 18px;
  margin-top: 24px;
}
.about__points {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.about__points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.96875rem;
}
.about__check {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--verde-claro);
  color: var(--verde-huerta);
  display: grid; place-items: center;
}
/* Foto del invernadero / la familia */
.about__visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  min-height: 320px;
  margin: 0;
  background: linear-gradient(160deg, #35501F, #4F7330);
  box-shadow: var(--shadow-card);
}
.about__visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}
/* Pie de foto translúcido sobre la imagen */
.about__visual-caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  background: rgba(251, 246, 234, 0.94);
  color: var(--verde-huerta);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.96875rem;
  box-shadow: 0 10px 24px -14px rgba(45, 40, 30, 0.6);
}

/* ------------------------------------------------------------------ */
/* 10. CONTACTO / UBICACIÓN                                           */
/* ------------------------------------------------------------------ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 860px) { .contact-grid { grid-template-columns: 1.05fr 0.95fr; } }

/* Tarjeta info (horario / dirección / teléfono) — degradado verde */
.info-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  background: linear-gradient(160deg, #35501F, #4F7330);
  color: var(--crema);
  box-shadow: var(--shadow-card);
  padding: 32px 28px;
}
.info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: radial-gradient(circle at 1px 1px, var(--crema) 1.4px, transparent 0);
  background-size: 24px 24px;
}
.info-card__inner { position: relative; }
.info-card__title { font-weight: 700; font-size: 1.5rem; margin-bottom: 22px; }
.info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.info-row__icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  background: rgba(251, 246, 234, 0.16);
  display: grid; place-items: center;
}
.info-row__label { font-weight: 800; font-size: 0.9375rem; margin-bottom: 4px; }
.info-row__value { font-size: 0.9375rem; color: #E2E7CF; line-height: 1.5; }
.info-row__value a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }

/* Mapa embebido */
.map {
  margin-top: 8px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(251, 246, 234, 0.25);
}
.map iframe { display: block; width: 100%; height: 220px; border: 0; }

/* Tarjeta formulario "Escríbenos" */
.form-card {
  background: var(--blanco);
  border: 1px solid #EFE7D4;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
  padding: 32px 28px;
}
.form-card__title { font-weight: 700; font-size: 1.5rem; margin-bottom: 4px; }
.form-card__lead { font-size: 0.9375rem; color: var(--texto-sec); margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 0.84375rem; margin-bottom: 7px; color: var(--texto); }
.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--lino);
  background: #FCFAF3;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--texto);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus,
.field textarea:focus {
  border-color: var(--verde-hoja);
  background: var(--blanco);
  box-shadow: 0 0 0 3px rgba(79, 115, 48, 0.14);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--texto-tenue); }
.form-card__note { font-size: 0.8125rem; color: var(--texto-sec); margin-top: 14px; text-align: center; }

@media (min-width: 760px) {
  .info-card, .form-card { padding: 34px 36px; }
}

/* ------------------------------------------------------------------ */
/* 11. FOOTER                                                          */
/* ------------------------------------------------------------------ */
.site-footer {
  background: var(--tierra-honda);
  color: #D9D1C2;
  padding-block: 48px;
}
.site-footer a { color: #EDE7D8; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer__brand { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer__brand .brand__name { color: var(--crema); }
.footer__tagline { font-size: 0.9375rem; line-height: 1.6; max-width: 38ch; color: #C7BEAD; }
.footer h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--arena);
  margin: 0 0 14px;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: 0.9375rem; }
.footer ul a { text-decoration: none; }
.footer ul a:hover { text-decoration: underline; }
.socials { display: flex; gap: 12px; margin-top: 4px; }
.socials a {
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  background: rgba(251, 246, 234, 0.1);
  display: grid; place-items: center;
  color: var(--crema);
}
.socials a:hover { background: rgba(251, 246, 234, 0.2); }
.footer__legal {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(251, 246, 234, 0.12);
  font-size: 0.8125rem;
  color: #A99F8C;
  text-align: center;
}

