/* ═══════════════════════════════════════════════════════════════════════
 * Un Jardín Japonés en Santiago — main.css
 * Mobile-first. Sobrio, contemplativo, sin parallax ni sliders.
 * Paleta: verde profundo + arena Santiago + gris piedra + dorado seco.
 * ═══════════════════════════════════════════════════════════════════════ */

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

:root {
  /* ── Paleta ───────────────────────────────────────────────────────── */
  --green:        #1f3a2e;   /* verde profundo (pino mojado) */
  --green-dark:   #14271f;
  --green-soft:   #2c4d3e;
  --sand:         #d7c5a8;   /* arena Santiago, granito en seco */
  --sand-light:   #f1e8d6;
  --sand-soft:    #f6f2e9;   /* fondo crema */
  --stone:        #7a7770;   /* gris piedra */
  --stone-light:  #a8a59e;
  --gold:         #a87f3a;   /* dorado seco (arena rastrillada) */
  --gold-light:   #c69e58;
  --ink:          #1b1b18;
  --ink-soft:     #2d2d28;
  --paper:        #fbfaf6;
  --paper-pure:   #ffffff;
  --line:         #e2dccd;
  --line-strong:  #c9c0aa;

  --error:        #a8523a;
  --ok-bg:        #e9efe6;
  --ok-fg:        #1f3a2e;
  --err-bg:       #f4e6e0;
  --err-fg:       #a8523a;

  /* ── Tipografía ───────────────────────────────────────────────────── */
  --font-display: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* ── Layout ───────────────────────────────────────────────────────── */
  --maxw:         1180px;
  --maxw-wide:    1360px;
  --maxw-narrow:  720px;
  --gutter:       20px;
  --header-h:     68px;

  /* ── Sombras ──────────────────────────────────────────────────────── */
  --shadow-card:  0 1px 2px rgba(31, 58, 46, 0.06), 0 8px 24px rgba(31, 58, 46, 0.06);
  --shadow-soft:  0 2px 16px rgba(20, 39, 31, 0.08);
}

/* ── Base ────────────────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--green);
  text-decoration: none;
  text-underline-offset: 3px;
  transition: color .2s ease;
}
a:hover { color: var(--gold); }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -10000px;
  top: 0;
  padding: 8px 12px;
  background: var(--green);
  color: var(--paper);
  font-size: 14px;
}
.skip-link:focus {
  left: 8px;
  top: 8px;
  z-index: 1000;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Tipografía ───────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--green-dark);
  line-height: 1.18;
  letter-spacing: -0.005em;
}

em { font-style: italic; }
strong { font-weight: 600; color: var(--ink); }

/* ── Container ─────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container--narrow { max-width: var(--maxw-narrow); }
.container--wide   { max-width: var(--maxw-wide); }

.muted { color: var(--stone); }

/* ═══════════════════════════════════════════════════════════════════
 * Header / Nav
 * ═══════════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 246, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  height: var(--header-h);
}

body.is-home .site-header {
  background: rgba(20, 39, 31, 0.55);
  border-bottom-color: transparent;
}
body.is-home .site-header .brand,
body.is-home .site-nav__list > li > a {
  color: var(--paper);
}
body.is-home .site-header .brand__mark { color: var(--sand); }

.site-header__inner {
  max-width: var(--maxw-wide);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green-dark);
  font-family: var(--font-display);
}
.brand__mark {
  color: var(--green);
  display: block;
}
.brand__words {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand__line1 {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.brand__line2 {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 500;
}
body.is-home .brand__line2 { color: var(--sand); }

/* Nav list */
.site-nav__list {
  list-style: none;
  display: none;
  gap: 28px;
  align-items: center;
}
.site-nav__list > li > a {
  font-size: 13.5px;
  letter-spacing: 0.04em;
  color: var(--green-dark);
  padding: 8px 0;
  position: relative;
}
.site-nav__list > li > a::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s ease;
}
.site-nav__list > li > a:hover::after,
.site-nav__list > li > a.is-active::after { transform: scaleX(1); }

.site-nav__list > li > a.cta {
  border: 1px solid var(--gold);
  padding: 8px 18px;
  border-radius: 2px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.site-nav__list > li > a.cta:hover {
  background: var(--gold);
  color: var(--paper-pure);
}
.site-nav__list > li > a.cta::after { display: none; }

/* Sub-menu (desktop hover) */
.has-children { position: relative; }
.site-nav__sub {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: -16px;
  min-width: 260px;
  background: var(--paper-pure);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  list-style: none;
  padding: 10px 0;
  border-radius: 2px;
}
.has-children:hover > .site-nav__sub,
.has-children:focus-within > .site-nav__sub { display: block; }
.site-nav__sub a {
  display: block;
  padding: 8px 22px;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.site-nav__sub a:hover {
  background: var(--sand-soft);
  color: var(--green-dark);
}

/* Mobile hamburger toggle */
.site-nav__toggle {
  display: block;
  width: 42px;
  height: 42px;
  position: relative;
  border-radius: 2px;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 1.5px;
  background: var(--green-dark);
  transform: translate(-50%, -50%);
  transition: transform .3s ease, opacity .2s ease;
}
.hamburger::before { content: ''; transform: translate(-50%, -8px); }
.hamburger::after  { content: ''; transform: translate(-50%, 6px); }
body.is-home .hamburger,
body.is-home .hamburger::before,
body.is-home .hamburger::after { background: var(--paper); }

.site-nav__toggle[aria-expanded='true'] .hamburger { background: transparent; }
.site-nav__toggle[aria-expanded='true'] .hamburger::before { transform: translate(-50%, -50%) rotate(45deg); }
.site-nav__toggle[aria-expanded='true'] .hamburger::after  { transform: translate(-50%, -50%) rotate(-45deg); }

/* When list is open on mobile */
.site-nav__list.is-open {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--paper);
  padding: 22px var(--gutter) 40px;
  border-top: 1px solid var(--line);
  overflow-y: auto;
}
.site-nav__list.is-open > li > a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  color: var(--green-dark) !important;
}
.site-nav__list.is-open .site-nav__sub {
  position: static;
  display: block;
  border: none;
  box-shadow: none;
  padding: 0 0 6px 16px;
  background: transparent;
  margin-bottom: 8px;
}
.site-nav__list.is-open .site-nav__sub a { padding: 8px 0; font-size: 14px; }
.site-nav__list.is-open > li > a.cta {
  margin-top: 18px;
  text-align: center;
  border: 1px solid var(--gold);
  border-radius: 2px;
  padding: 14px;
}

/* ═══════════════════════════════════════════════════════════════════
 * Botones
 * ═══════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .15s ease;
  cursor: pointer;
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--green);
  color: var(--paper-pure);
}
.btn--primary:hover { background: var(--green-dark); color: var(--paper-pure); }

.btn--outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn--outline:hover {
  background: var(--green-dark);
  color: var(--paper-pure);
}

.btn--ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(247, 240, 222, 0.6);
}
body.is-subpage .btn--ghost {
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn--ghost:hover {
  background: rgba(247, 240, 222, 0.12);
  border-color: var(--sand);
  color: var(--paper);
}
body.is-subpage .btn--ghost:hover {
  background: var(--green-dark);
  color: var(--paper);
}

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

/* ═══════════════════════════════════════════════════════════════════
 * Hero (home)
 * ═══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 78vh;
  max-height: 920px;
  display: flex;
  align-items: center;
  margin-top: calc(-1 * var(--header-h));
  padding: calc(var(--header-h) + 60px) 0 80px;
  overflow: hidden;
  color: var(--paper);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 39, 31, 0.55) 0%, rgba(20, 39, 31, 0.65) 60%, rgba(20, 39, 31, 0.85) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}
.hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 18px;
}
.hero__title {
  font-size: clamp(40px, 9vw, 88px);
  line-height: 1.0;
  font-weight: 300;
  margin-bottom: 26px;
  color: var(--paper);
  letter-spacing: -0.012em;
}
.hero__title em {
  font-style: italic;
  color: var(--sand);
  font-weight: 400;
}
.hero__lead {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 300;
  max-width: 620px;
  line-height: 1.6;
  margin-bottom: 36px;
  color: rgba(251, 250, 246, 0.92);
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 28px;
  height: 44px;
  border: 1px solid rgba(247, 240, 222, 0.5);
  border-radius: 14px;
  display: none;
}
.hero__scroll span {
  display: block;
  width: 2px;
  height: 7px;
  background: var(--sand);
  margin: 8px auto 0;
  border-radius: 1px;
  animation: scrollIndicator 1.8s ease-in-out infinite;
}
@keyframes scrollIndicator {
  0%, 100% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translateY(10px); }
}

/* ═══════════════════════════════════════════════════════════════════
 * Sección intro / common section heads
 * ═══════════════════════════════════════════════════════════════════ */
.intro {
  padding: 90px 0 50px;
  background: var(--paper);
  text-align: center;
}
.intro__kicker {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.intro__title {
  font-size: clamp(28px, 5vw, 48px);
  margin-bottom: 28px;
  font-weight: 400;
}
.intro__title em { color: var(--green); font-style: italic; }
.intro__body {
  font-size: 17px;
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
  color: var(--ink-soft);
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.section-head--left { text-align: left; }
.section-kicker {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(28px, 4.5vw, 44px);
  margin-bottom: 20px;
  font-weight: 400;
}
.section-lead {
  font-size: 16px;
  color: var(--stone);
  max-width: 560px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════
 * Dimensiones (5 secciones de la home)
 * ═══════════════════════════════════════════════════════════════════ */
.dimensions {
  padding: 80px 0 110px;
  background: var(--sand-soft);
}

.dim-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.dim {
  background: var(--paper-pure);
  padding: 36px 32px 40px;
  border-radius: 2px;
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.dim:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(31,58,46,.08), 0 18px 36px rgba(31,58,46,.10);
}
.dim__num {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 400;
}
.dim__title {
  font-size: 26px;
  margin-bottom: 14px;
  font-weight: 500;
}
.dim__body {
  color: var(--ink-soft);
  margin-bottom: 22px;
  font-size: 15.5px;
  line-height: 1.7;
}
.dim__link {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
  position: relative;
  padding-right: 22px;
}
.dim__link::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform .2s ease;
}
.dim__link:hover { color: var(--gold); }
.dim__link:hover::after { transform: translate(3px, -50%); }

/* ═══════════════════════════════════════════════════════════════════
 * Quote band
 * ═══════════════════════════════════════════════════════════════════ */
.quote-band {
  background: var(--green);
  color: var(--sand-light);
  padding: 90px 0;
  text-align: center;
}
.big-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: var(--paper);
  max-width: 720px;
  margin: 0 auto;
}
.big-quote blockquote em {
  color: var(--sand);
  font-weight: 400;
}
.big-quote figcaption {
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  font-style: normal;
}

/* ═══════════════════════════════════════════════════════════════════
 * Featured news (home)
 * ═══════════════════════════════════════════════════════════════════ */
.featured-news {
  padding: 100px 0;
  background: var(--paper);
}
.news-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}
.news-feature__body {
  padding: 10px 0;
}
.news-feature__body p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 26px;
  color: var(--ink-soft);
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: var(--green-dark);
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--shadow-soft);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ═══════════════════════════════════════════════════════════════════
 * CTA band
 * ═══════════════════════════════════════════════════════════════════ */
.cta-band {
  background: var(--sand-soft);
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid var(--line);
}
.cta-band__title {
  font-size: clamp(28px, 4.5vw, 42px);
  margin-bottom: 18px;
  font-weight: 400;
}
.cta-band__body {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ═══════════════════════════════════════════════════════════════════
 * Page hero (sub-pages)
 * ═══════════════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  overflow: hidden;
}
.page-hero--image {
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  padding: 80px 0 50px;
  color: var(--paper);
  margin-top: 0;
}
.page-hero--image .page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero--image .page-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-hero--image .page-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,39,31,0.40) 0%, rgba(20,39,31,0.80) 100%);
}
.page-hero--image .page-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.page-hero__content--solo {
  padding: 70px var(--gutter) 50px;
  max-width: var(--maxw-narrow);
  margin: 0 auto;
}
.page-hero__kicker {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.page-hero--image .page-hero__kicker { color: var(--sand); }
.page-hero__title {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 20px;
}
.page-hero--image .page-hero__title { color: var(--paper); }
.page-hero__lead {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 300;
  line-height: 1.65;
  max-width: 620px;
  color: var(--ink-soft);
}
.page-hero--image .page-hero__lead { color: rgba(251, 250, 246, 0.92); }
.kicker-link { color: inherit; text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════════════
 * Prose (proyecto sub-pages)
 * ═══════════════════════════════════════════════════════════════════ */
.prose {
  padding: 60px 0 90px;
  font-size: 17px;
  line-height: 1.78;
  color: var(--ink-soft);
}
.prose h2 {
  font-size: clamp(24px, 3.5vw, 32px);
  margin-top: 56px;
  margin-bottom: 18px;
  font-weight: 500;
  color: var(--green-dark);
}
.prose h2:first-of-type { margin-top: 36px; }
.prose p {
  margin-bottom: 22px;
}
.prose p em { color: var(--green); }
.prose__lede {
  font-size: 20px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.65;
  border-left: 3px solid var(--gold);
  padding-left: 22px;
  margin: 0 0 36px;
}
.prose ul {
  margin: 0 0 22px;
  padding-left: 22px;
}
.prose li { margin-bottom: 6px; }

.prose__quote {
  margin: 38px 0;
  padding: 24px 28px;
  background: var(--sand-soft);
  border-left: 3px solid var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: var(--green-dark);
}
.prose__quote p { margin-bottom: 12px; }
.prose__quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}

.prose__next {
  margin-top: 50px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.link-next {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--green);
}
.link-next:hover { color: var(--gold); }

/* Use-grid (usos.html) */
.use-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 40px 0 24px;
}
.use {
  background: var(--sand-soft);
  padding: 28px 26px;
  border-radius: 2px;
  border-top: 2px solid var(--gold);
}
.use__title {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--green-dark);
}
.use p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════════
 * Noticias listing
 * ═══════════════════════════════════════════════════════════════════ */
.news-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  margin: 40px 0 80px;
}
.news-card {
  background: var(--paper-pure);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .3s ease, box-shadow .3s ease;
}
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(31,58,46,.08), 0 18px 36px rgba(31,58,46,.12);
}
.news-card__link {
  display: block;
  color: inherit;
}
.news-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--green-dark);
}
.news-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.news-card:hover .news-card__media img { transform: scale(1.04); }
.news-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(251, 250, 246, 0.88);
  background: rgba(20,39,31,0.18);
  transition: background .3s ease;
}
.news-card:hover .news-card__play { background: rgba(20,39,31,0.32); }

.news-card__body { padding: 26px 28px 30px; }
.news-card__title {
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--green-dark);
}
.news-card__excerpt {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.news-card__more {
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════
 * Forms
 * ═══════════════════════════════════════════════════════════════════ */
.form-card {
  background: var(--paper-pure);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 40px 28px;
  box-shadow: var(--shadow-card);
  margin: 30px 0 80px;
}
.form-card__intro {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.form-card__title {
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--green-dark);
}
.form-card__intro p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.form .field { margin-bottom: 20px; }
.form .field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form .field-row .field { margin-bottom: 0; }

.form label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 8px;
  font-weight: 500;
}
.form label .muted { text-transform: none; letter-spacing: normal; font-weight: 400; color: var(--stone); }
.form .req { color: var(--gold); }

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form select,
.form textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  outline: none;
  transition: border-color .25s ease, background .25s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--gold);
  background: var(--paper-pure);
}
.form textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}
.form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231f3a2e' stroke-width='1.4' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.turnstile-wrap { margin: 8px 0 20px; }
.form__actions { margin-top: 8px; }
.form__note {
  margin-top: 18px;
  font-size: 12.5px;
  color: var(--stone);
  text-align: center;
}

.form-status {
  padding: 14px 18px;
  margin-bottom: 24px;
  font-size: 14.5px;
  border-radius: 2px;
}
.form-status--ok  { background: var(--ok-bg);  color: var(--ok-fg);  border-left: 3px solid var(--green); }
.form-status--err { background: var(--err-bg); color: var(--err-fg); border-left: 3px solid var(--error); }

/* ═══════════════════════════════════════════════════════════════════
 * Contacto grid
 * ═══════════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 10px;
}
.contact-info {
  background: var(--green);
  color: var(--sand-light);
  padding: 36px 30px;
  border-radius: 2px;
  margin-top: 30px;
}
.contact-info__title {
  font-size: 22px;
  margin-bottom: 26px;
  color: var(--paper);
  font-weight: 500;
}
.info-block {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(215, 197, 168, 0.18);
}
.info-block:last-child { border-bottom: none; padding-bottom: 0; }
.info-block h3 {
  font-family: var(--font-body);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 10px;
  font-weight: 500;
}
.info-block address,
.info-block p {
  font-style: normal;
  font-size: 15px;
  color: var(--paper);
  line-height: 1.7;
}
.info-block a { color: var(--paper); border-bottom: 1px solid var(--gold); }
.info-block a:hover { color: var(--sand); }

/* ═══════════════════════════════════════════════════════════════════
 * 404
 * ═══════════════════════════════════════════════════════════════════ */
.not-found {
  padding: 100px 0 120px;
  text-align: center;
}
.not-found__num {
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 160px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
}
.not-found__title {
  font-size: clamp(26px, 4.5vw, 38px);
  margin-bottom: 22px;
  font-weight: 400;
}
.not-found__lead {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 460px;
  margin: 0 auto 30px;
}
.not-found__links {
  list-style: none;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.not-found__links a {
  font-size: 13.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-dark);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--gold);
}
.not-found__links a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════════
 * Footer
 * ═══════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--green-dark);
  color: var(--sand-light);
  padding: 70px 0 0;
  margin-top: 40px;
}
.site-footer__inner {
  max-width: var(--maxw-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-col--quote {
  grid-column: 1 / -1;
  border-bottom: 1px solid rgba(215, 197, 168, 0.15);
  padding-bottom: 36px;
}
.quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--paper);
  max-width: 540px;
}
.quote cite {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  font-family: var(--font-body);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  font-style: normal;
}

.footer-title {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 500;
  margin-bottom: 18px;
}
.footer-links {
  list-style: none;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: var(--paper);
  font-size: 14.5px;
  opacity: 0.86;
}
.footer-links a:hover {
  color: var(--gold-light);
  opacity: 1;
}
.footer-address, .footer-hours {
  font-style: normal;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--paper);
  opacity: 0.86;
}
.footer-hours { margin-top: 16px; }

.site-footer__bottom {
  border-top: 1px solid rgba(215, 197, 168, 0.15);
  padding: 22px var(--gutter);
  text-align: center;
}
.footer-copy {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone-light);
}

/* ═══════════════════════════════════════════════════════════════════
 * Responsive
 *   640  → tablet portrait
 *  1024  → small desktop
 *  1440  → wide
 * ═══════════════════════════════════════════════════════════════════ */
@media (min-width: 640px) {
  :root { --gutter: 32px; }

  .dim-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .news-list { grid-template-columns: repeat(2, 1fr); }
  .use-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }

  .form .field-row { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 48px 40px; }

  .site-footer__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }

  .hero__scroll { display: block; }
}

@media (min-width: 1024px) {
  :root { --header-h: 78px; }

  .site-nav__toggle { display: none; }
  .site-nav__list {
    display: flex !important;
    position: static;
    flex-direction: row;
    padding: 0;
    background: transparent;
    border-top: none;
    inset: auto;
  }
  .site-nav__list > li > a {
    padding: 8px 0;
    border-bottom: none !important;
  }
  .site-nav__list > li > a.cta { padding: 8px 18px; }
  .site-nav__sub { display: none; }
  .has-children:hover > .site-nav__sub,
  .has-children:focus-within > .site-nav__sub { display: block; }

  .dim-grid { grid-template-columns: repeat(3, 1fr); }
  .dim-grid .dim:nth-child(4),
  .dim-grid .dim:nth-child(5) {
    grid-column: span 1;
  }

  .news-feature {
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
  }

  .news-list { grid-template-columns: repeat(2, 1fr); }

  .site-footer__inner {
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 50px;
  }
  .footer-col--quote {
    grid-column: 1 / -1;
    border-bottom: 1px solid rgba(215, 197, 168, 0.15);
  }

  .contact-grid {
    grid-template-columns: 0.9fr 1.4fr;
    gap: 50px;
    align-items: flex-start;
  }

  .hero { min-height: 86vh; }
}

@media (min-width: 1440px) {
  :root { --gutter: 48px; }

  .hero__title { font-size: 96px; }
  .news-list { grid-template-columns: repeat(3, 1fr); }
}

/* ── Honeypot global hide ─────────────────────────────────────────── */
.hp-field,
input[name="hp_url"],
input[name="website"] {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

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