/* =============================================================
   Restaurant Martin's — Mediterráneo costero (olas ANIMADas + turquesa + coral)
   ============================================================= */
:root {
  --sand:   #f6efe1;
  --sand-2: #efe3cf;
  --paper:  #ffffff;
  --teal:   #0f5b6b;
  --teal-2: #0a4653;
  --coral:  #e0603f;
  --coral-2:#c74d2f;
  --gold:   #e0a53f;
  --ink:    #14333b;
  --ink-soft:#43575d;
  --mute:   #8b8577;
  --line:   rgba(20,51,59,.14);
  --line-soft: rgba(20,51,59,.08);

  --disp: "DM Serif Display", Georgia, serif;
  --hand: "Caveat", cursive;
  --sans: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --wrap: 1180px;
  --gut: clamp(1.2rem, 5vw, 4rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; overflow-x: clip; scroll-behavior: smooth; }
body { font-family: var(--sans); font-size: 16px; line-height: 1.7; color: var(--ink); background: var(--sand); -webkit-font-smoothing: antialiased; overflow-x: clip; overscroll-behavior-y: none; }
img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1,h2,h3,h4 { font-family: var(--disp); font-weight: 400; line-height: 1.08; }
ul { list-style: none; padding: 0; }
em { font-style: italic; }
::selection { background: var(--coral); color: #fff; }
:focus-visible { outline: 2px solid var(--coral); outline-offset: 3px; border-radius: 4px; }
.skip-link { position: fixed; top: -100px; left: 1rem; padding: .6rem 1rem; background: var(--teal); color: #fff; z-index: 9999; border-radius: 10px; }
.skip-link:focus { top: 1rem; }
.hand { font-family: var(--hand); }

/* ---- Splash ---- */
.splash { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; background: var(--teal); color: #f6efe1; animation: splashSafe .01s 4.5s forwards; }
.splash.is-out { opacity: 0; pointer-events: none; transition: opacity .8s var(--ease); }
@keyframes splashSafe { to { opacity: 0; pointer-events: none; } }
.splash-inner { text-align: center; }
.splash-mark { display: block; font-family: var(--hand); font-size: clamp(2rem, 7vw, 3.4rem); color: var(--gold); opacity: 0; animation: sfade .8s .1s var(--ease) forwards; }
.splash-sub { display: block; font-family: var(--disp); font-size: clamp(2.4rem, 9vw, 5rem); opacity: 0; animation: sfade .8s .3s var(--ease) forwards; }
@keyframes sfade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.splash-bar { width: min(200px,50vw); height: 2px; margin: 1.4rem auto 0; background: rgba(246,239,225,.25); overflow: hidden; }
.splash-bar i { display: block; height: 100%; width: 0; background: var(--gold); animation: sload 1.9s .3s var(--ease) forwards; }
@keyframes sload { to { width: 100%; } }

/* ---- Nav flotante ---- */
.nav { position: fixed; top: 0; left: 0; z-index: 100; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .85rem var(--gut); color: var(--ink); background: rgba(247,241,230,.88); backdrop-filter: blur(10px); transition: box-shadow .4s var(--ease), padding .4s, background .4s; }
.nav.is-stuck { background: rgba(247,241,230,.97); box-shadow: 0 8px 26px -18px rgba(20,51,59,.5); }
.nav-logo { font-family: var(--disp); font-size: 1.25rem; }
.nav-logo span { color: var(--coral); margin: 0 .3em; }
.nav-links { display: flex; gap: 1.8rem; }
.nav-links a { font-size: .9rem; position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 100%; height: 2px; background: var(--coral); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: .9rem; }
.lang { display: flex; gap: .1rem; }
.lang button { font-size: .72rem; letter-spacing: .05em; padding: .28rem .4rem; color: inherit; opacity: .55; border-radius: 4px; line-height: 1; }
.lang button:hover { opacity: .9; }
.lang button.is-on { opacity: 1; font-weight: 600; text-decoration: underline; text-underline-offset: 4px; }
.nav.is-stuck .lang button.is-on { color: var(--coral); }
.nav-cta { font-size: .85rem; }
.nav-burger { display: none; width: 40px; height: 40px; flex-direction: column; justify-content: center; align-items: center; gap: 6px; }
.nav-burger span { width: 22px; height: 2px; background: currentColor; transition: transform .3s var(--ease), opacity .3s; }
.nav.is-open .nav-burger span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav.is-open .nav-burger span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
@media (max-width: 900px) {
  .nav-links { position: fixed; inset: 0 0 0 auto; width: min(78vw,320px); flex-direction: column; justify-content: center; gap: 1.8rem; padding: 2rem var(--gut); background: var(--paper); box-shadow: -10px 0 40px rgba(0,0,0,.1); transform: translateX(100%); transition: transform .4s var(--ease); }
  .nav.is-open .nav-links { transform: translateX(0); }
  .nav-links a { font-size: 1.5rem; font-family: var(--disp); color: var(--ink); }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

/* ---- Botones ---- */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 1.6rem; border-radius: 100px; font-weight: 500; font-size: .92rem; transition: transform .3s var(--ease), background .3s, color .3s, box-shadow .3s, border-color .3s; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-primary { background: var(--coral); color: #fff; }
.btn-primary:hover { background: var(--coral-2); transform: translateY(-2px); box-shadow: 0 14px 34px -12px rgba(224,96,63,.6); }
.btn-ghost { border: 1.5px solid rgba(255,255,255,.6); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.on-light .btn-ghost { border-color: var(--line); color: var(--ink); }
.on-light .btn-ghost:hover { background: rgba(20,51,59,.05); }

/* ---- OLAS ANIMADAS (agua en movimiento) ---- */
.wave { display: block; width: 100%; height: clamp(46px, 6vw, 96px); overflow: hidden; line-height: 0; }
.wave svg { width: 200%; max-width: none; height: 100%; display: block; animation: waveflow 16s linear infinite; }
.wave.slow svg { animation-duration: 24s; }
.wave.rev svg { animation-direction: reverse; animation-duration: 20s; }
@keyframes waveflow { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- Hero split (texto izq + foto der + sello) ---- */
.hero { max-width: var(--wrap); margin-inline: auto; padding: 6.5rem var(--gut) 0; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 1.6rem; align-items: center; }
.hero-text { padding: 1rem 0; }
.hero-hand { font-family: var(--hand); font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--coral); display: block; }
.hero-hand::after { content: ""; display: block; width: 46px; height: 6px; margin-top: .2rem; background: radial-gradient(circle at 6px 3px, var(--coral) 2px, transparent 3px) repeat-x; background-size: 12px 6px; opacity: .8; }
.hero-title { font-family: var(--disp); font-size: clamp(2.6rem, 7vw, 5.4rem); line-height: .96; color: var(--ink); margin: .3rem 0 .2rem; }
.hero-title em { color: var(--coral); font-style: italic; display: block; }
.kicker { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--mute); margin: .5rem 0 .9rem; }
.hero-tag { font-size: clamp(1rem, 1.6vw, 1.15rem); color: var(--ink-soft); max-width: 44ch; line-height: 1.6; }
.hero-rating { display: flex; align-items: center; gap: .6rem; margin-top: 1.3rem; font-size: .95rem; color: var(--ink-soft); }
.hero-rating .stars { color: var(--gold); letter-spacing: .05em; }
.hero-rating strong { font-family: var(--disp); font-size: 1.1rem; color: var(--ink); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.6rem; }
.hero .btn-ghost { border-color: var(--line); color: var(--ink); }
.hero .btn-ghost:hover { background: rgba(20,51,59,.05); color: var(--ink); }
.hero-media { position: relative; }
.hero-media img { width: 100%; height: clamp(300px, 60vw, 520px); object-fit: cover; border-radius: 24px; }
.seal { position: absolute; right: 16px; bottom: -30px; width: 118px; height: 118px; animation: spin 26s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.seal-txt { fill: var(--teal); font-size: 8.2px; letter-spacing: 2.2px; font-family: var(--sans); font-weight: 600; text-transform: uppercase; }
@media (min-width: 900px) {
  .hero { padding-top: 7.5rem; }
  .hero-grid { grid-template-columns: 1.02fr 1.12fr; gap: 3rem; }
  .hero-media img { height: clamp(420px, 44vw, 560px); border-radius: 180px 24px 24px 180px; }
}

/* ---- Tira de features ---- */
.features { max-width: var(--wrap); margin: 3.4rem auto 0; padding: 0 var(--gut) clamp(2.5rem, 5vw, 3.5rem); display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
.feature { display: flex; gap: .9rem; align-items: flex-start; }
.feature .ic { flex: 0 0 auto; width: 38px; height: 38px; color: var(--coral); }
.feature .ic svg { width: 100%; height: 100%; }
.feature h4 { font-family: var(--sans); font-weight: 600; font-size: .8rem; letter-spacing: .07em; text-transform: uppercase; color: var(--ink); margin-bottom: .25rem; }
.feature p { font-size: .85rem; color: var(--ink-soft); font-weight: 300; line-height: 1.5; }
@media (min-width: 800px) {
  .features { grid-template-columns: repeat(4, 1fr); gap: 0; }
  .feature { padding: 0 1.5rem; }
  .feature + .feature { border-left: 1px solid var(--line-soft); }
  .feature:first-child { padding-left: 0; }
}

/* ---- Marquee coral ---- */
.marquee { background: var(--coral); color: #fff; padding: .85rem 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; gap: 1.8rem; align-items: center; font-family: var(--disp); font-size: clamp(1.1rem, 2vw, 1.5rem); will-change: transform; }
.marquee-track i { color: #ffd9a0; font-style: normal; }

/* ---- La Casa (banda mar) ---- */
.casa { background: var(--teal); color: #f6efe1; text-align: center; padding: clamp(2.5rem,5vw,4rem) var(--gut) clamp(3.5rem,8vw,5.5rem); }
.casa-inner { max-width: 780px; margin-inline: auto; }
.eyebrow { font-family: var(--hand); font-size: 1.6rem; color: var(--gold); }
.casa h2 { font-size: clamp(2.2rem, 6vw, 3.8rem); margin: .2rem 0 1.2rem; }
.casa h2 em { color: #ffd9a0; }
.casa-lead { font-size: clamp(1.1rem, 2vw, 1.35rem); color: #ece1cf; }
.casa-p { margin-top: 1rem; color: #cddbd9; font-weight: 300; }
.stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.4rem; margin-top: 2.6rem; }
.stat b { display: block; font-family: var(--disp); font-size: clamp(1.6rem,4vw,2.4rem); color: #fff; }
.stat span { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: #a9c2c2; }

/* ---- Arroces destacados ---- */
.stars-sec { max-width: var(--wrap); margin-inline: auto; padding: clamp(3.5rem,8vw,6rem) var(--gut) 1rem; text-align: center; }
.stars-sec .eyebrow { color: var(--coral); }
.stars-sec h2 { font-size: clamp(2rem,5.5vw,3.4rem); color: var(--ink); margin: .2rem 0 2.2rem; }
.arroces { display: grid; gap: 1.6rem; grid-template-columns: 1fr; }
.arroz-card { background: var(--paper); border-radius: 18px; overflow: hidden; box-shadow: 0 20px 50px -32px rgba(20,51,59,.55); text-align: left; transition: transform .4s var(--ease), box-shadow .4s; }
.arroz-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(20,51,59,.5); }
.arroz-card .ph { aspect-ratio: 4/3; overflow: hidden; }
.arroz-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.arroz-card:hover .ph img { transform: scale(1.07); }
.arroz-card .bd { padding: 1.3rem 1.5rem 1.6rem; }
.arroz-card h3 { font-size: 1.6rem; display: flex; justify-content: space-between; align-items: baseline; gap: .6rem; }
.arroz-card h3 .pr { font-family: var(--sans); font-size: 1rem; color: var(--coral); font-weight: 600; }
.arroz-card p { color: var(--ink-soft); font-weight: 300; margin-top: .3rem; }

/* ---- Carta ---- */
.carta { max-width: 980px; margin-inline: auto; padding: clamp(2.5rem,5vw,4rem) var(--gut) clamp(4rem,9vw,7rem); }
.carta-head { text-align: center; margin-bottom: 2.4rem; }
.carta-head .eyebrow { color: var(--coral); }
.carta-head h2 { font-size: clamp(2rem,5vw,3.2rem); }
.menu { display: grid; gap: clamp(1.6rem,4vw,2.6rem) clamp(2.4rem,5vw,3.6rem); grid-template-columns: 1fr; }
.menu-cat h3 { font-family: var(--disp); font-size: 1.5rem; color: var(--teal); margin-bottom: .9rem; display: flex; align-items: center; gap: .5rem; }
.menu-cat h3::before { content: "❋"; color: var(--coral); font-size: .9em; }
.mi { display: flex; align-items: baseline; gap: .3rem; padding: .45rem 0; }
.mi-n { font-size: 1.06rem; }
.mi-d { flex: 1; border-bottom: 1px dotted rgba(20,51,59,.3); transform: translateY(-4px); min-width: 1.4rem; }
.mi-p { color: var(--coral); font-weight: 600; white-space: nowrap; }
.menu-foot { text-align: center; margin-top: clamp(2rem,4vw,3rem); font-size: .86rem; color: var(--mute); font-style: italic; }

/* ---- Galería mosaico ---- */
.gallery { background: var(--sand-2); padding: clamp(3rem,7vw,5rem) var(--gut); }
.gallery-grid { max-width: var(--wrap); margin-inline: auto; display: grid; grid-template-columns: repeat(2,1fr); gap: .7rem; grid-auto-rows: 130px; }
.gallery-grid figure { overflow: hidden; border-radius: 12px; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid .big { grid-row: span 2; }
.gallery-grid .wide { grid-column: span 2; }

/* ---- Reserva ---- */
.reserva { background: var(--coral); color: #fff; padding: clamp(4rem,9vw,6.5rem) var(--gut); }
.reserva-inner { max-width: 720px; margin-inline: auto; text-align: center; }
.reserva .eyebrow { color: #ffe1b0; }
.reserva h2 { font-size: clamp(2rem,6vw,3.4rem); }
.reserva h2 em { color: #ffe1b0; }
.reserva-note { color: rgba(255,255,255,.9); max-width: 46ch; margin: 1rem auto 2.2rem; }
.rform { display: grid; gap: 1rem; text-align: left; }
.rrow { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.rfield { display: grid; gap: .4rem; }
.rfield span { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.8); }
.rfield input { width: 100%; font: inherit; color: #fff; background: rgba(255,255,255,.14); border: 1.5px solid rgba(255,255,255,.34); border-radius: 12px; padding: .8rem 1rem; }
.rfield input::placeholder { color: rgba(255,255,255,.6); }
.rfield input:focus { outline: none; border-color: #fff; background: rgba(255,255,255,.2); }
.rhp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.ractions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: .5rem; }
.reserva .btn-primary { background: #fff; color: var(--coral-2); }
.reserva .btn-primary:hover { background: #fff2ea; color: var(--coral-2); }
.reserva .btn-ghost { border-color: rgba(255,255,255,.6); color: #fff; }
.rstatus { font-size: .9rem; color: #ffe1b0; min-height: 1.2em; margin-top: .2rem; }
.rform.is-sending button[type="submit"] { opacity: .6; pointer-events: none; }

/* ---- Visítanos ---- */
.visit { max-width: var(--wrap); margin-inline: auto; padding: clamp(3.5rem,8vw,6rem) var(--gut); display: grid; gap: clamp(2rem,5vw,3.5rem); grid-template-columns: 1fr; align-items: center; }
.visit .eyebrow { color: var(--coral); }
.visit h2 { font-size: clamp(2rem,5vw,3.2rem); margin: .2rem 0 1.4rem; }
.visit h2 em { color: var(--teal); }
.visit-list li { padding: .9rem 0; border-bottom: 1px solid var(--line-soft); }
.visit-list li span { display: block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--mute); margin-bottom: .3rem; }
.visit-list a:hover { color: var(--coral); }
.hours { margin: 1.6rem 0 2rem; }
.hours h3 { font-size: 1.4rem; color: var(--teal); margin-bottom: .7rem; }
.hours-row { display: flex; justify-content: space-between; gap: 1rem; padding: .5rem 0; border-bottom: 1px dashed var(--line-soft); font-size: .98rem; }
.hours-row span:last-child { color: var(--ink-soft); }
.hours-row.closed span:last-child { color: var(--coral); font-weight: 600; }
.visit-map iframe { width: 100%; min-height: 340px; height: 100%; border: 0; border-radius: 16px; }

/* ---- Footer ---- */
.footer { background: var(--teal-2); color: #dfe9e7; }
.footer-display { font-family: var(--hand); text-align: center; font-size: clamp(2.4rem,8vw,5rem); color: var(--gold); padding: 1.4rem var(--gut) .4rem; }
.footer-grid { max-width: var(--wrap); margin-inline: auto; padding: 1rem var(--gut) 0; display: grid; gap: 2rem; grid-template-columns: 1fr; }
.footer-grid h4 { font-family: var(--disp); font-size: 1.3rem; color: #fff; margin-bottom: .7rem; }
.footer-grid p { color: #b7cbc8; font-weight: 300; font-size: .95rem; margin-bottom: .3rem; }
.footer-grid a:hover { color: var(--gold); }
.footer-legal { max-width: var(--wrap); margin: 2.4rem auto 0; padding: 1.4rem var(--gut); border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .84rem; color: #91aaa7; }
.footer-top:hover { color: var(--gold); }

/* ---- Reveals (rápidas) ---- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .45s var(--ease), transform .45s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

/* ---- Arroces interactivos ---- */
.arroz-card { position: relative; cursor: pointer; }
.arroz-card .ph { position: relative; }
.arroz-hint { position: absolute; top: 10px; right: 10px; background: rgba(255,255,255,.92); color: var(--teal); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; padding: .28rem .7rem; border-radius: 100px; z-index: 2; }
.arroz-ing { position: absolute; inset: 0; background: rgba(14,84,98,.95); color: #f6efe1; padding: 1.1rem 1.3rem; display: flex; flex-direction: column; justify-content: center; opacity: 0; transform: translateY(8px); transition: opacity .35s var(--ease), transform .35s var(--ease); pointer-events: none; }
.arroz-card.is-open .arroz-ing { opacity: 1; transform: none; pointer-events: auto; }
.arroz-card.is-open .arroz-hint { opacity: 0; }
.arroz-ing h4 { font-family: var(--hand); font-size: 1.5rem; color: #ffd9a0; margin-bottom: .5rem; }
.arroz-ing ul { display: grid; gap: .28rem; }
.arroz-ing li { font-size: .92rem; padding-left: 1rem; position: relative; color: #eaf1f0; }
.arroz-ing li::before { content: "•"; position: absolute; left: 0; color: var(--gold); }

/* ---- Carrusel de reseñas ---- */
.reviews { background: var(--sand); padding: clamp(3rem, 6vw, 5rem) var(--gut); text-align: center; }
.reviews-inner { max-width: 780px; margin-inline: auto; }
.reviews .eyebrow { color: var(--coral); }
.reviews h2 { font-size: clamp(1.8rem, 4.5vw, 2.8rem); color: var(--ink); margin: .1rem 0 .5rem; }
.rev-score { display: inline-flex; align-items: center; gap: .55rem; font-size: .95rem; color: var(--ink-soft); margin-bottom: 1.9rem; }
.rev-score .stars { color: var(--gold); letter-spacing: .1em; }
.rev-score strong { color: var(--teal); }
.rev-track { position: relative; min-height: 210px; }
.rev { display: none; margin: 0; }
.rev.on { display: block; animation: revin .5s var(--ease); }
@keyframes revin { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.rev-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: .12em; }
.rev blockquote { font-family: var(--disp); font-size: clamp(1.15rem, 2.2vw, 1.5rem); color: var(--ink); line-height: 1.45; margin: .8rem auto 1.2rem; max-width: 60ch; quotes: "“" "”"; }
.rev blockquote::before { content: open-quote; color: var(--coral); }
.rev blockquote::after { content: close-quote; color: var(--coral); }
.rev figcaption { display: inline-flex; align-items: center; gap: .7rem; text-align: left; }
.rev-av { width: 40px; height: 40px; border-radius: 50%; background: var(--teal); color: #fff; display: grid; place-items: center; font-family: var(--disp); font-size: 1.2rem; flex: 0 0 auto; }
.rev figcaption b { display: block; color: var(--ink); font-size: .95rem; }
.rev figcaption i { color: var(--ink-soft); font-size: .78rem; font-style: normal; }
.rev-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.6rem; }
.rev-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); cursor: pointer; padding: 0; border: 0; transition: background .3s, transform .3s; }
.rev-dot.on { background: var(--coral); transform: scale(1.25); }

/* ---- Responsive ---- */
@media (min-width: 700px) {
  .stats { grid-template-columns: repeat(4,1fr); }
  .arroces { grid-template-columns: repeat(3,1fr); }
  .menu { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: repeat(4,1fr); grid-auto-rows: 150px; }
  .visit { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .rrow { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 8rem var(--gut) 6rem; }
  .nav { padding: .6rem .8rem .6rem 1.1rem; }
  .nav-logo { font-size: 1.05rem; }
  .lang button { font-size: .66rem; padding: .24rem .3rem; }
  /* Legibilidad móvil: subir microtexto por debajo de 12px */
  .kicker { font-size: .8rem; letter-spacing: .18em; }
  .arroz-hint { font-size: .74rem; padding: .32rem .8rem; }
  .rfield span { font-size: .78rem; }
  .visit-list li span, .stat span { font-size: .74rem; }
}
