/* ============================================================
   Grupo Mariscos Antón — Design tokens
   ============================================================ */
:root {
  /* Brand color — extracted from the official emblem */
  --ink: #1d1d1b;
  --ink-soft: #2a2a26;
  --gold: #fccb01;
  --gold-dark: #c9a100;
  --white: #ffffff;

  /* Supporting neutrals */
  --bg: #f7f4ec;
  --surface: #ffffff;
  --surface-alt: #efeadb;
  --border: #e3ddc9;
  --text: #211f1c;
  --text-muted: #6b6862;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --h1: clamp(2.5rem, 6vw, 4.5rem);
  --h2: clamp(2rem, 4vw, 2.8rem);
  --h3: clamp(1.4rem, 2vw, 1.6rem);
  --body: 1rem;
  --small: 0.875rem;

  /* Spacing (8px grid) */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-6: 48px;
  --space-8: 64px;
  --space-12: 96px;
  --space-16: 128px;

  --radius: 6px;
  --radius-lg: 16px;

  --shadow-sm: 0 4px 16px rgba(29, 29, 27, 0.06);
  --shadow-md: 0 12px 30px rgba(29, 29, 27, 0.10);
  --shadow-lg: 0 24px 48px rgba(29, 29, 27, 0.16);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ============================================================
   Reset
   ============================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--body);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); font-weight: 500; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}

section { padding: var(--space-12) 0; }

@media (max-width: 720px) {
  section { padding: var(--space-8) 0; }
}

/* ============================================================
   Section headers (kicker + heading + copy)
   ============================================================ */
.section-head {
  max-width: 640px;
  margin-bottom: var(--space-8);
}

.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-family: var(--font-body);
  font-size: var(--small);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: var(--space-2);
}

.kicker::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold-dark);
}

.section-head.center .kicker::before { display: none; }

.section-head p {
  margin-top: var(--space-2);
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--gold);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--ink-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--space-2) 0;
  transition: background 0.35s var(--ease), padding 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

/* Scrim de legibilidad sobre el hero claro (se oculta al hacer scroll) */
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(18, 26, 32, 0.55) 0%, rgba(18, 26, 32, 0.12) 70%, rgba(18, 26, 32, 0) 100%);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.35s var(--ease);
}

.site-header.is-scrolled::before { opacity: 0; }

/* Línea inferior con destello dorado "ping-pong" (recorre el borde de lado a lado) */
.site-header::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(252,203,1,0) 0%, var(--gold) 50%, rgba(252,203,1,0) 100%) no-repeat;
  background-size: 34% 100%;
  background-position: 0% 0;
  animation: hdrPingPong 3.2s ease-in-out infinite alternate;
}

@keyframes hdrPingPong {
  from { background-position: -8% 0; }
  to   { background-position: 108% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .site-header::after { animation: none; background-position: 50% 0; }
}

.site-header .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header.is-scrolled {
  background: rgba(29, 29, 27, 0.92);
  backdrop-filter: blur(10px);
  padding: var(--space-1) 0;
  box-shadow: var(--shadow-sm);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  height: 54px;
  width: auto;
  transition: height 0.35s var(--ease);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.site-header.is-scrolled .brand img { height: 44px; }

.brand-name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.brand-over {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.brand-name strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  color: var(--white);
}

@media (max-width: 560px) {
  .brand-name { font-size: 0.9rem; }
  .brand-name strong { font-size: 1.05rem; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav-links a {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: var(--space-3); }

.lang-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--gold);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}

.lang-switch .lang-current { color: var(--gold); }
.lang-switch .lang-sep { color: rgba(255, 255, 255, 0.4); font-weight: 400; }
.lang-switch .lang-alt { color: rgba(255, 255, 255, 0.7); transition: color 0.3s var(--ease); }

.lang-switch:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(252, 203, 1, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

.lang-switch:hover .lang-alt { color: var(--white); }
.lang-switch:active { transform: translateY(0); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 80vw);
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-4);
    padding: var(--space-4);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }

  .nav-links.is-open { transform: translateX(0); }

  .nav-links a { font-size: 1.1rem; }

  .nav-cta .btn { display: none; }
}

/* ============================================================
   Hero (cinematográfico, vídeo + viñeta)
   ============================================================ */
/* HERO BLOCK START */
.hero{
  position:relative;
  min-height:92vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:calc(90px + 40px) 24px 90px;
  overflow:hidden;
  isolation:isolate;
}
/* Cinematic vignette: radial darkening at edges + strong lower scrim,
   engineered so centered WHITE text reads over the light sky. */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    radial-gradient(130% 105% at 50% 42%,
      rgba(10,22,33,0) 0%,
      rgba(10,22,33,0.10) 34%,
      rgba(9,20,30,0.42) 66%,
      rgba(7,16,24,0.72) 100%),
    linear-gradient(180deg,
      rgba(8,18,28,0.42) 0%,
      rgba(8,18,28,0.14) 22%,
      rgba(8,18,28,0.30) 52%,
      rgba(6,14,22,0.70) 100%);
  pointer-events:none;
}
/* Soft focused pool behind the copy to lock legibility on the bright sky */
.hero::after{
  content:"";
  position:absolute;
  left:50%;top:48%;
  width:min(1180px,92vw);
  height:min(560px,66vh);
  transform:translate(-50%,-50%);
  z-index:2;
  background:radial-gradient(60% 60% at 50% 50%,
     rgba(6,15,24,0.55) 0%,
     rgba(6,15,24,0.34) 45%,
     rgba(6,15,24,0) 78%);
  filter:blur(6px);
  pointer-events:none;
}
.hero__media{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0}
.hero__inner{
  position:relative;
  z-index:3;
  max-width:1000px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:26px;
}
.hero__eyebrow{
  font-size:.78rem;
  letter-spacing:.42em;
  text-transform:uppercase;
  font-weight:500;
  color:rgba(255,255,255,.86);
  display:flex;
  align-items:center;
  gap:16px;
  text-shadow:0 1px 14px rgba(0,0,0,.5);
  opacity:0;
  animation:heroRise .9s cubic-bezier(.22,1,.36,1) .15s forwards;
}
.hero__eyebrow::before,.hero__eyebrow::after{
  content:"";
  width:34px;height:1px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
  display:inline-block;
}
.hero__title{
  font-family:'Fraunces',serif;
  font-weight:400;
  font-size:clamp(2.5rem,6.4vw,5.2rem);
  line-height:1.04;
  letter-spacing:-.015em;
  color:var(--white);
  text-shadow:0 2px 30px rgba(0,0,0,.55),0 1px 4px rgba(0,0,0,.4);
  max-width:14ch;
  opacity:0;
  animation:heroRise 1s cubic-bezier(.22,1,.36,1) .3s forwards;
}
.hero__title .gold{
  font-style:italic;
  color:var(--gold);
  text-shadow:0 2px 24px rgba(0,0,0,.55),0 0 30px rgba(252,203,1,.28);
}
.hero__sub{
  font-size:clamp(1rem,1.5vw,1.22rem);
  line-height:1.65;
  font-weight:300;
  color:rgba(255,255,255,.92);
  max-width:60ch;
  text-shadow:0 1px 16px rgba(0,0,0,.55);
  opacity:0;
  animation:heroRise 1s cubic-bezier(.22,1,.36,1) .48s forwards;
}
.hero__scroll{
  position:absolute;
  left:50%;
  bottom:34px;
  transform:translateX(-50%);
  z-index:3;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  color:rgba(255,255,255,.8);
  font-size:.68rem;
  letter-spacing:.34em;
  text-transform:uppercase;
  text-shadow:0 1px 10px rgba(0,0,0,.6);
  opacity:0;
  animation:heroFade 1s ease .9s forwards;
}
.hero__scroll .mouse{
  width:24px;height:38px;
  border:1.5px solid rgba(255,255,255,.7);
  border-radius:14px;
  position:relative;
}
.hero__scroll .mouse::after{
  content:"";
  position:absolute;
  left:50%;top:8px;
  width:3px;height:7px;
  border-radius:3px;
  background:var(--gold);
  transform:translateX(-50%);
  animation:wheel 1.8s ease-in-out infinite;
}
@keyframes heroRise{from{opacity:0;transform:translateY(26px)}to{opacity:1;transform:translateY(0)}}
@keyframes heroFade{from{opacity:0}to{opacity:1}}
@keyframes wheel{0%{opacity:0;transform:translate(-50%,0)}30%{opacity:1}70%{opacity:1}100%{opacity:0;transform:translate(-50%,12px)}}

@media (max-width:640px){
  .hero{padding:calc(90px + 30px) 20px 96px;background-position:center 45%}
  .hero__inner{gap:20px}
  .hero__title{font-size:clamp(2.1rem,9vw,3rem);max-width:16ch}
  .hero__eyebrow{letter-spacing:.3em;font-size:.68rem}
  .hero__sub{font-size:1rem}
  .hero::after{width:96vw;height:60vh}
}
@media (prefers-reduced-motion:reduce){
  .hero__eyebrow,.hero__title,.hero__sub,.hero__scroll{animation:none;opacity:1;transform:none}
  .hero__scroll .mouse::after{animation:none}
  html{scroll-behavior:auto}
}
/* HERO BLOCK END */

/* ============================================================
   Video section
   ============================================================ */
.video-section { padding: var(--space-6) 0; background: var(--bg); }

.video-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
  background: var(--ink);
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-toggle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(29, 29, 27, 0.18);
  border: none;
  cursor: pointer;
  transition: background 0.3s var(--ease);
}

.video-toggle:hover { background: rgba(29, 29, 27, 0.3); }

.video-toggle svg {
  width: 34px;
  height: 34px;
  color: var(--ink);
}

.video-toggle .icon-play,
.video-toggle .icon-pause {
  position: absolute;
  width: 84px;
  height: 84px;
  padding: 24px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.video-toggle:hover .icon-play,
.video-toggle:hover .icon-pause { transform: scale(1.08); }

.video-toggle .icon-pause { opacity: 0; visibility: hidden; }

.video-frame.is-playing .video-toggle { background: transparent; }
.video-frame.is-playing .video-toggle .icon-play { opacity: 0; visibility: hidden; }
.video-frame.is-playing .video-toggle .icon-pause { opacity: 0; visibility: hidden; }
.video-frame.is-playing .video-toggle:hover .icon-pause { opacity: 1; visibility: visible; }

/* ============================================================
   Marquee strip (product focus)
   ============================================================ */
.marquee-strip {
  background: var(--ink);
  color: var(--gold);
  padding: var(--space-2) 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: var(--space-6);
  animation: scroll-left 32s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   Product cards
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}

@media (max-width: 1100px) {
  .products-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .products-grid { grid-template-columns: 1fr; }
}

.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.product-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.product-card:hover img { transform: scale(1.08); }

.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29,29,27,0) 40%, rgba(29,29,27,0.92) 100%);
}

.product-card-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: var(--space-3);
  z-index: 1;
}

.product-card-body .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: var(--space-1);
}

.product-card-body h3 { color: var(--white); margin-bottom: 4px; }
.product-card-body p { color: rgba(255,255,255,0.75); font-size: var(--small); }

/* ============================================================
   Product gallery (real packaging photos)
   ============================================================ */
.product-gallery { margin-top: var(--space-6); }

.product-gallery-label {
  display: block;
  font-size: var(--small);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}

.product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
}

@media (max-width: 620px) {
  .product-gallery-grid { grid-template-columns: 1fr 1fr; }
}

.product-gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.product-gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.product-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--space-2);
}

/* ============================================================
   Team gallery (Nosotros)
   ============================================================ */
.team-gallery { margin-top: var(--space-8); }

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

@media (max-width: 620px) {
  .team-grid { grid-template-columns: 1fr; }
}

.team-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.team-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.team-card-info { padding: var(--space-2) var(--space-3) var(--space-3); }

.team-card-info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
}

.team-card-info span {
  display: block;
  font-size: var(--small);
  color: var(--gold-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

/* ============================================================
   Split layout (image / text) — Nosotros
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: var(--space-4); }
}

.split.reverse .split-media { order: 2; }

.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.split-media img { width: 100%; height: 100%; object-fit: cover; }

.split-copy p { color: var(--text-muted); margin-bottom: var(--space-2); }

.split-copy .fill { color: var(--gold-dark); font-style: italic; }

/* ============================================================
   Stats bar
   ============================================================ */
.stats-bar {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-4);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-8);
}

@media (max-width: 720px) {
  .stats-bar { grid-template-columns: 1fr 1fr; }
}

.stat { text-align: center; }

.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--gold);
  display: block;
  font-variant-numeric: tabular-nums;
}

.stat .num.is-counting {
  animation: count-glow 0.5s ease-in-out infinite alternate;
}

.stat .num.is-counted {
  animation: count-pop 0.5s var(--ease);
}

@keyframes count-glow {
  from { text-shadow: 0 0 0 rgba(252, 203, 1, 0); }
  to { text-shadow: 0 0 22px rgba(252, 203, 1, 0.9), 0 0 46px rgba(252, 203, 1, 0.35); }
}

@keyframes count-pop {
  0% { transform: scale(1); }
  45% { transform: scale(1.18); text-shadow: 0 0 24px rgba(252, 203, 1, 0.8); }
  100% { transform: scale(1); text-shadow: 0 0 0 rgba(252, 203, 1, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .stat .num.is-counting,
  .stat .num.is-counted { animation: none; }
}

.stat .label {
  color: rgba(255,255,255,0.7);
  font-size: var(--small);
  margin-top: 4px;
}

/* ============================================================
   Quality / commitments
   ============================================================ */
.commitments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

@media (max-width: 900px) {
  .commitments-grid { grid-template-columns: 1fr; }
}

.commitment-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.commitment-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.commitment-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
}

.commitment-card .icon svg { width: 22px; height: 22px; stroke: var(--gold); }

.commitment-card h3 { margin-bottom: var(--space-1); }
.commitment-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ============================================================
   Contact
   ============================================================ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}

@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; }
}

.contact-info { display: flex; flex-direction: column; gap: var(--space-3); }

.contact-row {
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--border);
}

.contact-row .icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.contact-row .icon svg { width: 18px; height: 18px; stroke: var(--gold); }

.contact-row strong { display: block; margin-bottom: 2px; }
.contact-row span, .contact-row a { color: var(--text-muted); }
.contact-row a:hover { color: var(--gold-dark); }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.map-embed iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2); }

@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.contact-form label {
  font-size: var(--small);
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 4px;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--bg);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(252, 203, 1, 0.25);
}

.contact-form textarea { resize: vertical; min-height: 120px; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: var(--space-8) 0 var(--space-3);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

@media (max-width: 720px) {
  .footer-top { grid-template-columns: 1fr; gap: var(--space-4); }
}

.footer-brand { display: flex; align-items: center; gap: var(--space-2); margin-bottom: var(--space-2); }
.footer-brand img { height: 48px; }
.footer-brand strong { color: var(--white); font-family: var(--font-display); font-size: 1.15rem; }

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-3);
  font-size: var(--small);
  flex-wrap: wrap;
  gap: var(--space-2);
}

.footer-bottom .credits { color: rgba(255,255,255,0.4); font-size: 0.78rem; max-width: 640px; }
.footer-bottom .credits a { text-decoration: underline; }

.social-links { display: flex; gap: var(--space-2); }
.social-links a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.social-links a:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.social-links a svg { width: 16px; height: 16px; stroke: var(--white); }
.social-links a:hover svg { stroke: var(--ink); }

/* ============================================================
   Scroll reveal
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}

[data-reveal="up"] { transform: translateY(32px); }
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="zoom"] { transform: scale(0.94); }

[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
}

/* Hero entrance (no observer needed — plays on load) */
.hero [data-entrance] {
  opacity: 0;
  transform: translateY(24px);
  animation: entrance-up 0.9s var(--ease) forwards;
}

.hero [data-entrance="1"] { animation-delay: 0.15s; }
.hero [data-entrance="2"] { animation-delay: 0.35s; }
.hero [data-entrance="3"] { animation-delay: 0.55s; }
.hero [data-entrance="4"] { animation-delay: 0.75s; }

@keyframes entrance-up {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero [data-entrance] { animation: none; opacity: 1; transform: none; }
}

/* ============================================================
   Mapa de España — variante "Lupa de Galicia"
   ============================================================ */
/* ---------- MAP COMPONENT ---------- */
  .anton-map{
    width:100%;max-width:1200px;background:var(--surface);
    border:1px solid var(--border);border-radius:16px;
    box-shadow:0 24px 60px -28px rgba(29,29,27,.28), 0 2px 6px rgba(29,29,27,.05);
    padding:48px;
  }
  .anton-map__eyebrow{
    display:inline-flex;align-items:center;gap:8px;
    font-size:12px;font-weight:600;letter-spacing:.18em;text-transform:uppercase;
    color:var(--gold-dark);
  }
  .anton-map__eyebrow::before{content:"";width:22px;height:2px;background:var(--gold);border-radius:2px}
  .anton-map__title{
    font-family:'Fraunces',serif;font-weight:600;font-size:clamp(26px,3.2vw,40px);
    line-height:1.08;color:var(--ink);margin:14px 0 8px;letter-spacing:-.01em;
  }
  .anton-map__lead{max-width:56ch;color:var(--text-muted);font-size:15.5px;line-height:1.6}

  .anton-map__body{display:grid;grid-template-columns:1.65fr 1fr;gap:40px;margin-top:34px;align-items:center}
  .anton-map__stage{position:relative}
  .anton-map__svg{width:100%;height:auto;display:block;overflow:visible}

  /* land */
  .land{fill:url(#landGrad);stroke:var(--gold-dark);stroke-width:.9;stroke-linejoin:round;stroke-opacity:.55}
  .island{fill:url(#landGrad);stroke:var(--gold-dark);stroke-width:.9;stroke-opacity:.5}

  /* pins */
  .pin .ring{fill:var(--gold);transform-box:fill-box;transform-origin:center;animation:antonPulse 2.6s ease-out infinite}
  .pin .halo{fill:var(--gold);opacity:.14}
  .pin .dot{fill:var(--gold);stroke:#fff;stroke-width:1.6}
  .pin .core{fill:var(--ink)}
  .pin.d2 .ring{animation-delay:.5s}
  .pin.d3 .ring{animation-delay:1s}
  @keyframes antonPulse{0%{transform:scale(.55);opacity:.65}70%{opacity:0}100%{transform:scale(2.6);opacity:0}}

  /* labels */
  .lbl{font-family:'Inter',sans-serif;font-weight:600;fill:var(--ink)}
  .lbl-sub{font-family:'Inter',sans-serif;font-weight:500;fill:var(--text-muted)}
  .lupa-title{font-family:'Fraunces',serif;font-weight:600;fill:var(--gold-dark);letter-spacing:.14em}
  .guide{stroke:var(--gold-dark);stroke-width:1;stroke-opacity:.5;fill:none}
  .gal-ring{fill:none;stroke:var(--gold-dark);stroke-width:1.1;stroke-dasharray:3 3;stroke-opacity:.7}
  .lupa-sea{fill:url(#seaGrad)}
  .lupa-border{fill:none;stroke:var(--gold);stroke-width:4}
  .lupa-border-in{fill:none;stroke:var(--gold-dark);stroke-width:1;stroke-opacity:.5}

  /* legend */
  .anton-legend{display:flex;flex-direction:column;gap:6px}
  .leg-item{display:flex;gap:14px;padding:16px 6px;border-bottom:1px solid var(--border)}
  .leg-item:last-child{border-bottom:none}
  .leg-marker{flex:0 0 auto;margin-top:3px;width:14px;height:14px;border-radius:50%;
    background:var(--gold);box-shadow:0 0 0 4px rgba(252,203,1,.18)}
  .leg-name{font-family:'Fraunces',serif;font-weight:600;font-size:17px;color:var(--ink);line-height:1.2}
  .leg-name small{display:block;font-family:'Inter',sans-serif;font-weight:600;font-size:11px;
    letter-spacing:.06em;text-transform:uppercase;color:var(--gold-dark);margin-top:3px}
  .leg-desc{font-size:14px;color:var(--text-muted);line-height:1.5;margin-top:5px}

  @media(max-width:820px){
    .anton-map{padding:26px}
    .anton-map__body{grid-template-columns:1fr;gap:26px}
  }
.anton-map{margin:var(--space-8) auto 0}
@media (prefers-reduced-motion: reduce){ .anton-map .pin .ring{animation:none} }

/* ============================================================
   Evolución (stepper horizontal, fondo marino)
   ============================================================ */
.evo{ --r-lg:16px; --r-sm:6px;
  --shadow:0 1px 2px rgba(29,29,27,.05), 0 10px 26px rgba(29,29,27,.12);
  --shadow-hover:0 2px 6px rgba(29,29,27,.10), 0 18px 44px rgba(29,29,27,.22); }
/* ===== EVO SECTION ===== */
.evo{max-width:1200px;margin:0 auto;padding:64px 48px}
.evo__head{text-align:center;margin-bottom:56px}
.evo__kicker{
  display:inline-block;
  font-family:'Inter',sans-serif;
  font-size:.75rem;font-weight:600;letter-spacing:.18em;text-transform:uppercase;
  color:var(--gold-dark);
  padding-bottom:6px;
  position:relative;
  margin-bottom:18px;
}
.evo__kicker::after{
  content:"";position:absolute;left:50%;bottom:0;transform:translateX(-50%);
  width:28px;height:2px;background:var(--gold);border-radius:2px;
}
.evo__title{
  font-family:'Fraunces',serif;
  font-weight:600;
  font-size:clamp(2rem,4vw,3rem);
  line-height:1.08;
  letter-spacing:-.01em;
  color:var(--ink);
}

/* ===== STEPPER ===== */
.evo__stepper{
  --node:56px;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:20px;
  position:relative;
}
/* eje base */
.evo__track,.evo__track-fill{
  position:absolute;
  top:calc(var(--node)/2);
  height:3px;
  border-radius:3px;
  /* recortado a los centros de nodos extremos */
  left:calc(10% );
  right:calc(10% );
  transform:translateY(-1.5px);
}
.evo__track{background:var(--border);z-index:0}
.evo__track-fill{
  background:linear-gradient(90deg,var(--gold-dark),var(--gold));
  z-index:1;
  transform-origin:left center;
  transform:translateY(-1.5px) scaleX(0);
  animation:fill 1.6s .3s cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes fill{to{transform:translateY(-1.5px) scaleX(1)}}

.evo__step{
  position:relative;z-index:2;
  display:flex;flex-direction:column;align-items:center;text-align:center;
  opacity:0;transform:translateY(14px);
  animation:rise .7s cubic-bezier(.22,1,.36,1) forwards;
}
.evo__step:nth-child(3){animation-delay:.25s}
.evo__step:nth-child(4){animation-delay:.4s}
.evo__step:nth-child(5){animation-delay:.55s}
.evo__step:nth-child(6){animation-delay:.7s}
.evo__step:nth-child(7){animation-delay:.85s}
@keyframes rise{to{opacity:1;transform:translateY(0)}}

.evo__badge{
  width:var(--node);height:var(--node);
  border-radius:50%;
  background:var(--ink);
  color:var(--gold);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 0 0 6px var(--surface-alt), 0 6px 16px rgba(29,29,27,.22);
  border:1.5px solid rgba(252,203,1,.35);
  transition:transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease;
}
.evo__badge svg{width:28px;height:28px;display:block}
.evo__badge svg *{stroke:var(--gold);stroke-width:1.6;fill:none;stroke-linecap:round;stroke-linejoin:round;vector-effect:non-scaling-stroke}
.evo__badge svg .fill{fill:var(--gold);stroke:none}

.evo__year{
  font-family:'Fraunces',serif;
  font-weight:600;
  font-size:1.4rem;
  color:var(--ink);
  margin:18px 0 4px;
  letter-spacing:-.01em;
}
.evo__year span{
  display:block;font-family:'Inter',sans-serif;font-size:.68rem;font-weight:600;
  letter-spacing:.14em;text-transform:uppercase;color:var(--gold-dark);margin-top:2px;
}

.evo__card{
  margin-top:14px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--r-lg);
  padding:22px 20px;
  box-shadow:var(--shadow);
  width:100%;
  position:relative;
  transition:transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, border-color .35s ease;
}
.evo__card::before{
  content:"";position:absolute;top:0;left:22px;right:22px;height:3px;
  background:linear-gradient(90deg,var(--gold),var(--gold-dark));
  border-radius:3px;opacity:.85;
}
.evo__card p{font-size:.92rem;line-height:1.62;color:var(--text-muted)}
.evo__card b{color:var(--ink-soft);font-weight:600}

.evo__step:hover .evo__badge{transform:translateY(-4px) scale(1.06)}
.evo__step:hover .evo__card{transform:translateY(-4px);box-shadow:var(--shadow-hover);border-color:#d8d0b8}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
  .evo{padding:56px 28px}
  .evo__stepper{
    grid-template-columns:1fr;
    gap:0;
    max-width:520px;margin:0 auto;
  }
  .evo__track,.evo__track-fill{
    left:calc(var(--node)/2 - 1.5px);right:auto;
    top:var(--node);bottom:var(--node);
    height:auto;width:3px;
    transform:none;
  }
  .evo__track-fill{
    transform-origin:top center;
    transform:scaleY(0);
    animation:fillV 1.8s .3s cubic-bezier(.22,1,.36,1) forwards;
  }
  @keyframes fillV{to{transform:scaleY(1)}}
  .evo__step{
    flex-direction:row;align-items:flex-start;text-align:left;
    gap:20px;
    padding-bottom:34px;
  }
  .evo__step:last-child{padding-bottom:0}
  .evo__badge{flex:0 0 auto}
  .evo__meta{display:flex;flex-direction:column;flex:1;min-width:0}
  .evo__year{margin:0 0 6px;font-size:1.25rem}
  .evo__card{margin-top:0}
}
@media(max-width:420px){
  .evo{padding:48px 20px}
  .evo__step{gap:16px}
}

@media(prefers-reduced-motion:reduce){
  .evo__step,.evo__track-fill{animation:none!important;opacity:1!important;transform:none!important}
  .evo__track-fill{transform:translateY(-1.5px) scaleX(1)!important}
  .evo__badge,.evo__card{transition:none!important}
  @media(max-width:900px){
    .evo__track-fill{transform:scaleY(1)!important}
  }
}

/* --- Fondo marino de la sección --- */
#historia{
  padding:0;
  position:relative;
  overflow:hidden;
  background:var(--ink);
}
#historia .evo-bg{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
#historia .evo-bg-overlay{ position:absolute; inset:0; z-index:1;
  background:linear-gradient(180deg, rgba(14,24,32,.68) 0%, rgba(14,24,32,.44) 44%, rgba(14,24,32,.62) 100%); }
#historia .evo{ position:relative; z-index:2; }
#historia .evo{ padding:88px 48px; }
#historia .evo__kicker{ color:var(--gold); }
#historia .evo__title{ color:#fff; }
#historia .evo__year{ color:#fff; }
#historia .evo__year span{ color:var(--gold); }
#historia .evo__track{ background:rgba(255,255,255,.22); }
#historia .evo__badge{ box-shadow:0 0 0 5px rgba(255,255,255,.10), 0 10px 22px rgba(0,0,0,.5); }

/* Alinear todas las cajas a la misma altura (bordes inferiores parejos) */
.evo__step{ height:100%; }
.evo__meta{ flex:1 1 auto; display:flex; flex-direction:column; width:100%; }
.evo__card{ flex:1 1 auto; }

@media(max-width:900px){ #historia .evo{ padding:64px 24px; } }

/* ============================================================
   Actividades — línea de 6 iconos (variante conector)
   ============================================================ */
/* ---------- Section shell ---------- */
.actl{
  --badge:58px;
  max-width:1200px; margin:0 auto; padding:8px 0 0;
}
.actl-head{ text-align:center; margin-bottom:56px; }
.actl-kicker{
  display:inline-block; font-family:'Inter',sans-serif;
  font-size:.72rem; font-weight:600; letter-spacing:.28em; text-transform:uppercase;
  color:var(--gold-dark); margin:0 0 14px;
}
.actl-kicker::before, .actl-kicker::after{
  content:""; display:inline-block; width:26px; height:1px;
  background:var(--gold-dark); vertical-align:middle; margin:0 12px; opacity:.6;
}
.actl-h2{
  font-family:'Fraunces',serif; font-weight:500;
  font-size:clamp(1.7rem,3.4vw,2.5rem); line-height:1.12;
  color:var(--ink); margin:0; letter-spacing:-.01em;
}
.actl-h2 em{ font-style:italic; color:var(--gold-dark); }

/* ---------- The line of 6 ---------- */
.actl-row{
  position:relative;
  display:flex; justify-content:space-between; align-items:flex-start;
  gap:8px; padding:0 6px;
}
/* golden connector that draws in */
.actl-connector{
  position:absolute; top:calc(var(--badge)/2); left:6%; right:6%;
  height:2px; z-index:0; overflow:visible; pointer-events:none;
  transform:scaleX(0); transform-origin:left center;
  background:linear-gradient(90deg,
     transparent 0, var(--gold-dark) 8%, var(--gold) 50%, var(--gold-dark) 92%, transparent 100%);
  border-radius:2px;
  animation:draw-line 1.15s cubic-bezier(.65,.02,.2,1) .15s forwards;
}
@keyframes draw-line{ to{ transform:scaleX(1);} }

.actl-item{
  position:relative; z-index:1;
  flex:1 1 0; min-width:0;
  display:flex; flex-direction:column; align-items:center; gap:14px;
  text-decoration:none;
  opacity:0; transform:translateY(14px);
  animation:rise .7s cubic-bezier(.2,.7,.2,1) forwards;
  transition:opacity .35s ease;
}
@keyframes rise{ to{ opacity:1; transform:translateY(0);} }
/* staggered entrance, after line begins */
.actl-item:nth-child(2){ animation-delay:.30s; }
.actl-item:nth-child(3){ animation-delay:.42s; }
.actl-item:nth-child(4){ animation-delay:.54s; }
.actl-item:nth-child(5){ animation-delay:.66s; }
.actl-item:nth-child(6){ animation-delay:.78s; }
.actl-item:nth-child(7){ animation-delay:.90s; }

.actl-badge{
  width:var(--badge); height:var(--badge); border-radius:50%;
  display:grid; place-items:center;
  background:var(--surface);
  border:1.5px solid var(--border);
  box-shadow:0 1px 0 rgba(0,0,0,.02);
  transition:transform .4s cubic-bezier(.2,.8,.2,1),
             box-shadow .4s ease, border-color .4s ease, background .4s ease;
}
.actl-badge svg{
  width:32px; height:32px; display:block;
  fill:none; stroke:var(--ink-soft); stroke-width:1.4;
  stroke-linecap:round; stroke-linejoin:round;
  transition:stroke .35s ease, transform .5s cubic-bezier(.2,.8,.2,1);
}
.actl-badge svg .dim{ opacity:.42; }
.actl-badge svg .fillgold{ fill:var(--gold-dark); stroke:none; transition:fill .35s ease; }

.actl-label{
  font-family:'Inter',sans-serif; font-size:.82rem; font-weight:600;
  letter-spacing:.01em; color:var(--ink); text-align:center; line-height:1.25;
  position:relative; padding-bottom:6px; transition:color .35s ease;
}
.actl-label::after{
  content:""; position:absolute; left:50%; bottom:0; height:2px; width:0;
  background:var(--gold); border-radius:2px; transform:translateX(-50%);
  transition:width .4s cubic-bezier(.2,.8,.2,1);
}

/* ---------- Hover: magnet + glow, dim the rest ---------- */
@media (hover:hover){
  .actl-row:hover .actl-item{ opacity:.5; }
  .actl-row:hover .actl-item:hover{ opacity:1; }
}
.actl-item:hover .actl-badge,
.actl-item:focus-visible .actl-badge{
  transform:translateY(-8px) scale(1.16);
  background:#fffdf4;
  border-color:var(--gold);
  box-shadow:0 12px 26px -10px rgba(201,161,0,.55),
             0 0 0 6px rgba(252,203,1,.12);
}
.actl-item:hover .actl-badge svg,
.actl-item:focus-visible .actl-badge svg{ stroke:var(--gold-dark); }
.actl-item:hover .actl-badge svg .fillgold,
.actl-item:focus-visible .actl-badge svg .fillgold{ fill:var(--gold); }
.actl-item:hover .actl-label::after,
.actl-item:focus-visible .actl-label::after{ width:78%; }
.actl-item:focus-visible{ outline:none; }
.actl-item:focus-visible .actl-label{ color:var(--gold-dark); }

/* ---------- Responsive ---------- */
@media (max-width:760px){
  .actl{ padding:48px 24px; }
  .actl-head{ margin-bottom:40px; }
  .actl-row{
    flex-wrap:wrap; row-gap:34px; column-gap:0; padding:0;
  }
  .actl-item{ flex:0 0 33.333%; }
  /* connector spans the two rows softly */
  .actl-connector{ left:16.6%; right:16.6%; }
}
@media (max-width:400px){
  .actl{ --badge:54px; }
  .actl-label{ font-size:.76rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion:reduce){
  .actl-connector{ animation:none; transform:scaleX(1); }
  .actl-item{ animation:none; opacity:1; transform:none; }
  .actl-badge, .actl-badge svg, .actl-label::after{ transition:none; }
}
.activity-video { margin-top: var(--space-6); }

/* ============================================================
   Productos — grid de 3
   ============================================================ */
.products-grid-3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 900px) { .products-grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .products-grid-3 { grid-template-columns: 1fr; } }

/* ============================================================
   Intro / preloader (logo gigante -> entra a la web)
   ============================================================ */
.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  background: radial-gradient(120% 120% at 50% 38%, #23231f 0%, var(--ink) 58%, #0b0b0a 100%);
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}
.intro.is-done { opacity: 0; visibility: hidden; }
body.intro-lock { overflow: hidden; }

.intro__stage {
  position: relative;
  display: grid;
  place-items: center;
  width: min(64vw, 300px);
  aspect-ratio: 1 / 1;
  transition: transform 0.8s var(--ease);
}
.intro.is-done .intro__stage { transform: scale(1.12); }

.intro__logo {
  width: min(46vw, 210px);
  height: auto;
  opacity: 0;
  transform: scale(0.72);
  animation: introLogo 1.1s var(--ease) 0.15s forwards;
  filter: drop-shadow(0 14px 46px rgba(0, 0, 0, 0.55));
}

.intro__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(252, 203, 1, 0.12);
}
.intro__ring::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--gold);
  border-right-color: var(--gold);
  animation: introSpin 1.1s linear infinite;
}

.intro__word {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  transform: translateY(10px);
  animation: introWord 0.9s var(--ease) 0.6s forwards;
}

@keyframes introLogo {
  0% { opacity: 0; transform: scale(0.72); }
  60% { opacity: 1; transform: scale(1.06); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes introSpin { to { transform: rotate(360deg); } }
@keyframes introWord { to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  .intro__logo { animation: none; opacity: 1; transform: none; }
  .intro__ring::before { animation: none; }
  .intro__word { animation: none; opacity: 1; transform: none; }
}

/* Nota bajo "Otros" en la fila de actividades */
.actl-note {
  font-size: 0.7rem;
  line-height: 1.3;
  color: var(--text-muted);
  text-align: center;
  max-width: 130px;
  margin-top: -6px;
}

/* ============================================================
   Instalaciones y cultivo (galería mosaico)
   ============================================================ */
.inst-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-2);
}
.inst-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  grid-column: span 3;
  height: clamp(220px, 26vw, 320px);
  background: var(--ink);
}
.inst-item.inst-a {
  grid-column: span 6;
  height: clamp(280px, 34vw, 460px);
}
.inst-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.inst-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29,29,27,0) 55%, rgba(29,29,27,0.22) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.inst-item:hover img { transform: scale(1.06); }
.inst-item:hover::after { opacity: 1; }

@media (max-width: 720px) {
  .inst-grid { grid-template-columns: 1fr 1fr; gap: var(--space-1); }
  .inst-item, .inst-item.inst-a { grid-column: span 2; height: 190px; }
}

/* ============================================================
   Contacto — teléfono + email (compacto y elegante)
   ============================================================ */
.contact-simple {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin: 0 auto;
}
.contact-card {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: 12px;
  padding: 10px 24px 10px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  text-align: left;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
a.contact-card { cursor: pointer; }
.contact-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.contact-card .icon {
  grid-row: 1 / span 2;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.contact-card .icon svg { width: 18px; height: 18px; stroke: var(--gold); }
.contact-card__label {
  grid-column: 2;
  align-self: end;
  font-family: var(--font-body);
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-dark); line-height: 1.1;
}
.contact-card__value {
  grid-column: 2;
  align-self: start;
  font-family: var(--font-body); font-weight: 500;
  font-size: 1rem; color: var(--ink); line-height: 1.25; margin-top: 2px;
}

/* Mapa en Contacto */
.contact-map {
  max-width: 960px;
  margin: var(--space-6) auto 0;
}
.contact-map .map-embed iframe { min-height: 380px; }
