/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg: #14100b;
  --bg-2: #1c150e;
  --bg-3: #251c13;
  --bg-3-hover: #2d2216;
  --cream: #f4ead9;
  --cream-2: #ddccab;
  --cream-3: #93826a;
  --accent: #c68a44;
  --accent-2: #a8712f;
  --olive: #7c8759;
  --olive-2: #5f6a41;
  --line: rgba(244, 234, 217, 0.12);
  --line-strong: rgba(244, 234, 217, 0.22);

  --display: "Fraunces", "Iowan Old Style", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 76px;
  --container: 1220px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { 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; }
ul { list-style: none; padding: 0; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.01em; font-family: var(--display); font-weight: 500; }
em { font-style: italic; color: var(--accent); }
::selection { background: var(--accent); color: var(--bg); }

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

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--cream); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 600;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { max-width: var(--container); margin-inline: auto; padding-inline: 1.5rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.kicker {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
.kicker::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow-stamp {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .08em;
  color: var(--cream);
  background: rgba(20, 16, 11, .55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  padding: .3em .9em;
  display: inline-block;
}
.section { padding-block: clamp(4rem, 9vw, 8rem); position: relative; }
.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); margin-top: .6em; }
.section-head p { color: var(--cream-2); margin-top: 1em; font-size: 1.05rem; max-width: 52ch; }

.btn {
  display: inline-flex; align-items: center; gap: .6em;
  padding: .95em 1.8em;
  border-radius: 100px;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: transform .45s var(--ease-out), background .3s var(--ease-out), color .3s var(--ease-out), box-shadow .3s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #1a1108;
  box-shadow: 0 8px 30px -8px rgba(198, 138, 68, .55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px -8px rgba(198, 138, 68, .65); }
.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--cream);
}
.btn-ghost:hover { background: rgba(244,234,217,.06); transform: translateY(-2px); }

/* =============================================================
   5. Components
   ============================================================= */

/* --- Nav --- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 500;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: linear-gradient(180deg, rgba(20,16,11,.92), rgba(20,16,11,0));
  backdrop-filter: blur(0px);
  transition: background .4s var(--ease-out), backdrop-filter .4s var(--ease-out), border-color .4s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(20, 16, 11, .82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { display: flex; align-items: center; gap: .7em; }
.nav-logo img { height: 30px; width: auto; filter: invert(1) brightness(1.3); }
.nav-links { display: none; align-items: center; gap: 2.2rem; }
.nav-links a {
  font-size: .88rem; color: var(--cream-2); position: relative; padding-block: .3em;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--accent); transition: right .4s var(--ease-out);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: .8rem; }
.nav-actions .btn-primary { padding: .7em 1.4em; font-size: .84rem; }
.nav-burger { display: flex; width: 40px; height: 40px; align-items: center; justify-content: center; border: 1px solid var(--line-strong); border-radius: 100px; }
.nav-burger span, .nav-burger span::before, .nav-burger span::after {
  content: ""; display: block; width: 15px; height: 1px; background: var(--cream); position: relative; transition: transform .3s var(--ease-out), opacity .3s var(--ease-out);
}
.nav-burger span::before { position: absolute; top: -5px; }
.nav-burger span::after { position: absolute; top: 5px; }
.nav-burger[aria-expanded="true"] span { background: transparent; }
.nav-burger[aria-expanded="true"] span::before { transform: translateY(5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span::after { transform: translateY(-5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 490;
  background: rgba(16, 12, 8, .98);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column; justify-content: center; gap: 2rem;
  padding: 2rem 1.5rem;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
}
.mobile-menu.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu a:not(.btn) { font-family: var(--display); font-style: italic; font-size: 2rem; color: var(--cream); }
.mobile-menu .btn { align-self: stretch; justify-content: center; margin-top: 1rem; white-space: normal; text-align: center; font-size: .92rem; }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-burger { display: none; }
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: clip;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,16,11,.35) 0%, rgba(20,16,11,.2) 35%, rgba(20,16,11,.75) 78%, rgba(20,16,11,.96) 100%),
    linear-gradient(90deg, rgba(20,16,11,.55) 0%, transparent 45%);
}
.hero-grain {
  position: absolute; inset: 0; z-index: 1; opacity: .045; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.hero-mesh {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(60% 45% at 18% 15%, rgba(198,138,68,.28), transparent 70%);
  animation: meshDrift 22s ease-in-out infinite;
}
@keyframes meshDrift {
  0%, 100% { opacity: .55; transform: translate(0,0) scale(1); }
  50% { opacity: .9; transform: translate(2%, 3%) scale(1.08); }
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
  padding-top: calc(var(--nav-h) + 2rem);
}
.hero-stamp {
  display: inline-flex; align-items: center; gap: .8em;
  margin-bottom: 1.6rem;
}
.hero-postal {
  font-family: var(--mono);
  font-size: .72rem; letter-spacing: .1em;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  padding: .4em 1em;
  color: var(--cream-2);
}
.hero-title {
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  max-width: 15ch;
  text-shadow: 0 4px 40px rgba(0,0,0,.5);
}
.hero-title em { display: block; }
.hero-title-lead { display: none; }
.hero-sub {
  margin-top: 1.4rem;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--cream-2);
  max-width: 46ch;
}
.hero-sub-extra { display: none; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 1.6rem;
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--cream-3);
}
.hero-meta span { display: flex; align-items: center; gap: .5em; }
.hero-meta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex: none; }
.hero-meta .hero-meta-extra { display: none; }

/* Restore the fuller hero copy from small-tablet width up */
@media (min-width: 540px) {
  .hero-title-lead { display: block; }
  .hero-sub-extra { display: inline; }
  .hero-meta .hero-meta-extra { display: flex; }
}

/* --- Reveal --- */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-split] { opacity: 1; transform: none; }

/* --- Concept / Historia --- */
.concept {
  display: grid; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.concept-figure { position: relative; border-radius: 18px; overflow: clip; }
.concept-figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.concept-figure:hover img { transform: scale(1.05); }
.concept-figure::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px var(--line-strong);
  border-radius: 18px;
}
.concept-body p { color: var(--cream-2); margin-top: 1.1rem; max-width: 52ch; }
.concept-body p:first-of-type { margin-top: 1.6rem; }
.concept-pillars { display: grid; gap: 1.2rem; margin-top: 2.2rem; grid-template-columns: repeat(2, 1fr); }
.concept-pillar { border-top: 1px solid var(--line); padding-top: 1rem; }
.concept-pillar b { font-family: var(--display); font-style: italic; font-size: 1.5rem; color: var(--accent); display: block; }
.concept-pillar span { font-size: .84rem; color: var(--cream-3); }

.pull-quote {
  margin-top: 2.8rem;
  padding: 2rem clamp(1.2rem, 3vw, 2.4rem);
  border-left: 2px solid var(--accent);
  background: linear-gradient(90deg, rgba(198,138,68,.08), transparent);
  border-radius: 0 12px 12px 0;
}
.pull-quote p {
  font-family: var(--display); font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--cream);
  line-height: 1.4;
}
.pull-quote cite {
  display: block; margin-top: 1rem; font-style: normal;
  font-family: var(--mono); font-size: .76rem; color: var(--cream-3); letter-spacing: .04em;
}

@media (min-width: 960px) {
  .concept { grid-template-columns: 1fr 1fr; }
}

/* --- Iconos (Cruzcampo / Gildas) --- */
.icons-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
.icon-card {
  position: relative; border-radius: 20px; overflow: clip;
  aspect-ratio: 4 / 5;
  isolation: isolate;
  --tiltX: 0deg; --tiltY: 0deg;
  transform: perspective(1000px) rotateX(var(--tiltX)) rotateY(var(--tiltY));
  transition: transform .5s var(--ease-out);
}
.icon-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out), filter .8s var(--ease-out); z-index: 0; }
.icon-card:hover img { transform: scale(1.07); filter: saturate(1.15) brightness(1.03); }
.icon-card::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,16,11,0) 30%, rgba(20,16,11,.92) 100%);
}
.icon-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1; opacity: 0; pointer-events: none;
  background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%), rgba(198,138,68,.35), transparent 70%);
  transition: opacity .4s var(--ease-out);
}
.icon-card:hover::after { opacity: 1; }
.icon-card-body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: clamp(1.4rem, 3vw, 2.2rem);
}
.icon-card-num { font-family: var(--mono); font-size: .74rem; color: var(--accent); letter-spacing: .1em; }
.icon-card h3 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin-top: .4em; }
.icon-card p { color: var(--cream-2); margin-top: .6em; max-width: 34ch; font-size: .95rem; }

@media (min-width: 780px) {
  .icons-grid { grid-template-columns: 1fr 1fr; }
}

/* --- Gallery mosaic --- */
.gallery-mosaic {
  display: grid;
  gap: .9rem;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 160px;
}
.gallery-item {
  border-radius: 14px; overflow: clip; position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.is-tall { grid-row: span 2; }
.gallery-item.is-wide { grid-column: span 2; }

@media (min-width: 640px) {
  .gallery-mosaic { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 170px; }
}

/* --- Carta / Menu --- */
.menu-tabs {
  display: flex; flex-wrap: wrap; gap: .6rem;
  margin-bottom: 2.4rem;
}
.menu-tab {
  padding: .6em 1.2em;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  font-size: .84rem;
  color: var(--cream-2);
  transition: background .3s var(--ease-out), color .3s var(--ease-out), border-color .3s var(--ease-out);
}
.menu-tab.is-active, .menu-tab:hover { background: var(--accent); color: #1a1108; border-color: var(--accent); }

.menu-category { display: none; }
.menu-category.is-active { display: block; }
/* Fallback: without JS every category is visible, stacked */
.no-js .menu-category { display: block; margin-bottom: 3rem; }
.no-js .menu-tabs { display: none; }

.menu-cat-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1.6rem; flex-wrap: wrap; }
.menu-cat-head h3 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.menu-cat-head .menu-cat-sub { color: var(--cream-3); font-family: var(--mono); font-size: .8rem; }
.menu-cols-legend { display: flex; gap: 1.4rem; font-family: var(--mono); font-size: .72rem; color: var(--cream-3); }

.menu-list { border-top: 1px solid var(--line); }
.menu-row {
  display: flex; align-items: baseline; gap: 1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
}
.menu-row-name { flex: 1; min-width: 0; }
.menu-row-name .name { font-size: 1.02rem; }
.menu-row-name .note { display: block; color: var(--cream-3); font-size: .82rem; margin-top: .25rem; }
.menu-row-prices { display: flex; gap: 1.1rem; font-family: var(--mono); font-size: .92rem; color: var(--accent); flex: none; }
.menu-row-prices span { min-width: 3.4ch; text-align: right; }
.menu-row-prices .dim { color: var(--cream-3); }

/* --- Terrazas / Ambiente --- */
.ambience {
  position: relative;
  border-radius: 24px;
  overflow: clip;
  min-height: 560px;
  display: flex; align-items: flex-end;
}
.ambience-bg { position: absolute; inset: 0; }
.ambience-bg img { width: 100%; height: 100%; object-fit: cover; }
.ambience-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(20,16,11,.94) 0%, rgba(20,16,11,.35) 55%, rgba(20,16,11,.55) 100%);
}
.ambience-body { position: relative; z-index: 1; padding: clamp(1.6rem, 4vw, 3.2rem); width: 100%; }
.ambience-pillars {
  display: grid; gap: 1.6rem;
  margin-top: 2rem;
  grid-template-columns: 1fr;
}
.ambience-pillar { border-top: 1px solid var(--line-strong); padding-top: 1rem; }
.ambience-pillar h4 { font-size: 1.2rem; font-style: italic; }
.ambience-pillar p { color: var(--cream-2); font-size: .9rem; margin-top: .4rem; }

@media (min-width: 780px) {
  .ambience-pillars { grid-template-columns: repeat(3, 1fr); }
}

/* --- Ubicación --- */
.location-grid {
  display: grid; gap: 2rem;
}
.location-map {
  position: relative;
  border-radius: 18px; overflow: clip; border: 1px solid var(--line-strong);
  aspect-ratio: 4 / 3;
  background: var(--bg-3);
}
.location-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.3) invert(.92) contrast(.9); position: relative; z-index: 0; }
.location-map-fallback {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 1;
  font-family: var(--mono); font-size: .78rem;
  background: rgba(20,16,11,.88); backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong); border-radius: 100px;
  padding: .6em 1.1em; color: var(--cream);
  transition: background .3s var(--ease-out), color .3s var(--ease-out);
}
.location-map-fallback:hover { background: var(--accent); color: #1a1108; }
.location-info dl { display: grid; gap: 1.4rem; }
.location-info dt { font-family: var(--mono); font-size: .74rem; letter-spacing: .08em; color: var(--accent); text-transform: uppercase; }
.location-info dd { margin: .4rem 0 0; font-size: 1.05rem; color: var(--cream); }
.location-info dd a:hover { color: var(--accent); }

@media (min-width: 900px) {
  .location-grid { grid-template-columns: 1.1fr 1fr; }
}

/* --- Contact / Reserva CTA --- */
.cta-section {
  position: relative;
  border-radius: 24px;
  padding: clamp(2.4rem, 6vw, 5rem);
  text-align: center;
  background: radial-gradient(120% 140% at 50% 0%, rgba(198,138,68,.16), transparent 60%), var(--bg-3);
  border: 1px solid var(--line);
  overflow: clip;
}
.cta-section h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); max-width: 18ch; margin-inline: auto; }
.cta-section p { color: var(--cream-2); max-width: 46ch; margin: 1rem auto 0; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.2rem; }
.cta-socials { display: flex; gap: .9rem; justify-content: center; margin-top: 2rem; color: var(--cream-3); }
.cta-socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid var(--line-strong); border-radius: 50%;
  transition: color .3s var(--ease-out), border-color .3s var(--ease-out), background .3s var(--ease-out);
}
.cta-socials a:hover { color: var(--accent); border-color: var(--accent); background: rgba(198,138,68,.1); }

/* --- Footer --- */
.footer { border-top: 1px solid var(--line); padding-block: 3rem; margin-top: 2rem; }
.footer-grid { display: grid; gap: 2rem; }
.footer-logo img { height: 32px; filter: invert(1) brightness(1.3); }
.footer-cols { display: grid; gap: 1.6rem; grid-template-columns: repeat(2, 1fr); }
.footer-col h5 { font-family: var(--mono); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: var(--cream-3); margin-bottom: .8rem; }
.footer-col a, .footer-col p { display: block; font-size: .88rem; color: var(--cream-2); margin-bottom: .5rem; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid var(--line); font-size: .78rem; color: var(--cream-3); }

@media (min-width: 780px) {
  .footer-grid { grid-template-columns: 1.2fr 2fr; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}

/* --- Splash --- */
.splash {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  animation: splashSafety .01s 4.5s forwards;
}
.splash img { height: 32px; filter: invert(1) brightness(1.3); opacity: 0; animation: splashFade 1.4s var(--ease-out) forwards .15s; }
.splash.is-out { opacity: 0; pointer-events: none; transition: opacity .6s var(--ease-out); }
@keyframes splashFade { to { opacity: 1; } }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); } }

/* =============================================================
   8. Responsive base sizing
   ============================================================= */
@media (min-width: 540px) {
  .hero-actions { flex-wrap: nowrap; }
}
@media (min-width: 720px) {
  .concept-pillars { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 960px) {
  .menu-row-name .name { font-size: 1.06rem; }
}
@media (min-width: 1280px) {
  .container { padding-inline: 2rem; }
}

/* =============================================================
   9. Reduced motion — only truly intrusive
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-mesh { animation: none; }
  .splash { animation: none; opacity: 0; pointer-events: none; }
}
