
:root {
  --paper: #f2ede3;
  --paper-2: #e7dfd1;
  --ink: #181714;
  --muted: #777064;
  --accent: #9d4f37;
  --accent-dark: #713727;
  --cream: #fbf8f1;
  --line: rgba(24,23,20,.18);
  --sans: Arial, Helvetica, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --pad: clamp(22px, 4vw, 72px);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
body.country-gate-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
[hidden] { display: none !important; }
::selection { background: var(--accent); color: var(--cream); }
.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; }
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* Selector inicial de país */
.country-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: clamp(16px, 4vw, 54px);
  overflow-y: auto;
  background:
    linear-gradient(135deg, rgba(24,23,20,.74), rgba(113,55,39,.6)),
    url("assets/coffee-medialunas.jpg") center / cover no-repeat;
  backdrop-filter: blur(12px);
  animation: countryGateIn .55s ease both;
}
.country-gate-panel {
  width: min(940px, 100%);
  padding: clamp(28px, 5vw, 66px);
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 30px;
  background: rgba(242,237,227,.96);
  box-shadow: 0 36px 110px rgba(0,0,0,.34);
  outline: 0;
  animation: countryPanelIn .7s cubic-bezier(.2,.8,.2,1) both;
}
.country-gate-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.country-gate-brand img { width: 126px; height: auto; }
.country-gate-brand span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.country-gate-heading { margin: clamp(34px, 5vw, 58px) 0 34px; }
.country-gate-heading .eyebrow { margin-bottom: 16px; }
.country-gate-heading h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(54px, 7.2vw, 96px);
  line-height: .88;
}
.country-gate-heading > p:last-child {
  max-width: 470px;
  margin: 24px 0 0;
  color: #5d574e;
  font-size: 15px;
}
.country-options { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.country-option {
  min-width: 0;
  min-height: 152px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255,255,255,.3);
  font: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.country-option:hover,
.country-option:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(157,79,55,.5);
  background: var(--cream);
  box-shadow: 0 18px 40px rgba(24,23,20,.1);
  outline: 0;
}
.country-flag {
  width: 66px;
  height: 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(24,23,20,.12);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(24,23,20,.1);
}
.country-flag svg { width: 100%; height: 100%; }
.country-option-copy { min-width: 0; display: flex; flex-direction: column; }
.country-option-copy small {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.country-option-copy strong {
  font-family: var(--serif);
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.025em;
}
.country-option-copy > span { margin-top: 7px; color: #6d675d; font-size: 11px; }
.country-option-arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 17px;
  transition: transform .3s ease, color .3s ease, background .3s ease;
}
.country-option:hover .country-option-arrow,
.country-option:focus-visible .country-option-arrow {
  transform: translateX(3px);
  color: var(--cream);
  background: var(--accent);
}
.country-gate-note { margin: 20px 0 0; color: var(--muted); font-size: 10px; text-align: center; }
@keyframes countryGateIn { from { opacity: 0; } }
@keyframes countryPanelIn { from { opacity: 0; transform: translateY(18px) scale(.985); } }
.site-header {
  position: fixed; z-index: 100; top: 0; left: 0; right: 0;
  height: 88px; padding: 0 var(--pad); display: flex; align-items: center; justify-content: space-between;
  transition: background .3s ease, border-color .3s ease, height .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { background: rgba(242,237,227,.9); backdrop-filter: blur(16px); border-color: var(--line); height: 72px; }
.brand { width: 122px; flex: 0 0 auto; text-decoration: none; transition: width .3s ease; }
.brand img { display:block; width:100%; height:auto; }
.site-header.scrolled .brand { width:100px; }
.site-nav { display: flex; align-items: center; gap: clamp(18px, 2.1vw, 38px); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.site-nav a { text-decoration: none; position: relative; }
.site-nav > a:not(.nav-cta)::after { content:""; position:absolute; left:0; bottom:-5px; width:100%; height:1px; background:currentColor; transform:scaleX(0); transform-origin:right; transition:transform .25s ease; }
.site-nav > a:not(.nav-cta):hover::after { transform:scaleX(1); transform-origin:left; }
.nav-cta { padding: 12px 18px; border: 1px solid var(--ink); border-radius: 999px; transition: background .25s ease,color .25s ease; }
.nav-cta:hover { background: var(--ink); color: var(--cream); }
.menu-toggle { display: none; width: 44px; height: 44px; border:0; background:transparent; padding:0; position:relative; }
.menu-toggle span:not(.sr-only) { position:absolute; left:9px; width:26px; height:1.5px; background:var(--ink); transition:.25s ease; }
.menu-toggle span:first-child { top:18px; }
.menu-toggle span:nth-child(2) { top:26px; }

.hero {
  min-height: 100svh; display:grid; grid-template-columns: 56% 44%; gap: 26px;
  padding: calc(88px + 18px) var(--pad) 18px;
}
.hero-media { display:grid; grid-template-columns: minmax(0,1.1fr) minmax(190px,.55fr); gap:18px; min-height: calc(100svh - 124px); }
.hero-main-card, .hero-mini-card { margin:0; overflow:hidden; position:relative; background:#d9d0c2; }
.hero-main-card { min-height:100%; }
.hero-main-card img, .hero-mini-card img { width:100%; height:100%; object-fit:cover; }
.hero-photo { transform:scale(1.015); animation:heroIn 1.3s cubic-bezier(.2,.8,.2,1) both; object-position:50% 50%; }
.hero-side-stack { display:grid; grid-template-rows:1fr 1fr; gap:18px; }
.hero-mini-card img { transition:transform .8s cubic-bezier(.2,.8,.2,1); }
.hero-main-card:hover img, .hero-mini-card:hover img { transform:scale(1.03); }
.hero-shade { position:absolute; inset:0; background:linear-gradient(180deg,transparent 52%,rgba(0,0,0,.28)); }
.hero-badge { position:absolute; left:24px; bottom:54px; width:98px; opacity:.96; z-index:2; }
.hero-badge img { width:100%; height:auto; filter:drop-shadow(0 10px 24px rgba(0,0,0,.22)); }
.hero-main-card figcaption, .hero-mini-card figcaption {
  position:absolute; left:18px; right:18px; bottom:16px; z-index:2; color:#fff;
  font-size:10px; text-transform:uppercase; letter-spacing:.16em;
}
.hero-mini-card::after, .hero-main-card::after { content:""; position:absolute; inset:auto 0 0; height:45%; background:linear-gradient(180deg,transparent,rgba(0,0,0,.32)); }
.hero-copy { padding: clamp(40px,6vw,108px) 0 46px clamp(18px,3vw,24px); display:flex; flex-direction:column; justify-content:space-between; }
.eyebrow { margin:0 0 24px; font-size:11px; text-transform:uppercase; letter-spacing:.18em; font-weight:600; }
h1,h2,h3,p { margin-top:0; }
h1,h2 { font-family:var(--serif); font-weight:500; line-height:.94; letter-spacing:-.045em; }
h1 { font-size:clamp(66px,7vw,128px); margin:0; }
h1 em,h2 em { font-weight:500; color:var(--accent); }
.hero-bottom { display:grid; grid-template-columns:1fr auto; gap:40px; align-items:end; padding-top:40px; }
.circle-link { width:118px; aspect-ratio:1; border:1px solid var(--ink); border-radius:50%; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; text-decoration:none; text-transform:uppercase; letter-spacing:.12em; font-size:9px; gap:6px; transition:.3s ease; }
.circle-link b { font-size:18px; font-weight:400; transition:transform .3s ease; }
.circle-link:hover { background:var(--ink); color:var(--paper); transform:rotate(-4deg); }
.circle-link:hover b { transform:translateY(4px); }
@keyframes heroIn { from { opacity:0; transform:scale(1.06); } to { opacity:1; transform:scale(1.015); } }
.ticker { overflow:hidden; border-top:1px solid var(--line); border-bottom:1px solid var(--line); margin-top:24px; background:var(--paper-2); }
.ticker-track { width:max-content; display:flex; align-items:center; gap:28px; padding:17px 0; animation:ticker 32s linear infinite; font-family:var(--serif); font-size:clamp(22px,2.1vw,34px); font-style:italic; }
.ticker-track i { font-family:var(--sans); color:var(--accent); font-size:12px; }
@keyframes ticker { to { transform:translateX(-50%); } }
.section-pad { padding: clamp(90px,11vw,180px) var(--pad); }
.section-index { font-size:10px; font-weight:600; text-transform:uppercase; letter-spacing:.18em; border-top:1px solid currentColor; padding-top:10px; opacity:.8; }
.section-index.light { color:rgba(255,255,255,.72); }
.intro-grid { display:grid; grid-template-columns: minmax(0,1.05fr) minmax(320px,.72fr); gap:clamp(60px,10vw,180px); margin-top:70px; }
.intro h2,.flavours h2,.sourdough h2,.bread h2,.visit h2,.experience-banner h2 { font-size:clamp(54px,6vw,102px); margin:0; }
.intro-copy { padding-top:12px; }
.intro-copy p,.sourdough-copy > p,.bread-copy > p { color:#5d574e; max-width:650px; }
.lead { font-family:var(--serif); font-size:clamp(25px,2.4vw,38px); line-height:1.28; color:var(--ink)!important; letter-spacing:-.02em; }
.gallery { padding-top:0; display:grid; grid-template-columns:1.15fr .85fr; gap:clamp(18px,2vw,34px); }
.gallery figure { margin:0; overflow:hidden; }
.gallery img { width:100%; height:100%; object-fit:cover; transition:transform .7s cubic-bezier(.2,.8,.2,1); }
.gallery figure:hover img { transform:scale(1.025); }
.gallery-main { height:min(76vw,850px); display:grid; grid-template-rows:1fr auto; }
.gallery-main img { min-height:0; }
.gallery figcaption { display:flex; justify-content:space-between; gap:20px; padding:13px 0; border-bottom:1px solid var(--line); font-size:11px; text-transform:uppercase; letter-spacing:.12em; }
.gallery-side { display:grid; grid-template-rows:minmax(0,1fr) auto; gap:clamp(18px,2vw,34px); }
.gallery-side figure { height:min(37vw,410px); display:grid; grid-template-rows:1fr auto; }
.gallery-side .salad-frame { height:min(40vw,470px); background:#ddd5c9; }
.gallery-side .salad-frame img { object-position:center 43%; }
.gallery-side blockquote { margin:0; padding:clamp(38px,5vw,72px); min-height:340px; background:var(--accent); color:var(--cream); display:flex; flex-direction:column; justify-content:space-between; }
.quote-mark { font-family:var(--serif); font-size:92px; line-height:.5; opacity:.65; }
.gallery-side blockquote p { font-family:var(--serif); font-size:clamp(28px,3vw,48px); line-height:1.08; }
.gallery-side blockquote p em { color:#e7c9ba; }
.gallery-side blockquote small { text-transform:uppercase; letter-spacing:.16em; font-size:9px; }
.flavours { background:var(--ink); color:var(--cream); }
.flavours-head { display:flex; align-items:flex-end; justify-content:space-between; gap:60px; margin:70px 0 60px; }
.flavours h2 em { color:#d8a48e; }
.flavour-photo-grid { display:grid; grid-template-columns:1.1fr .9fr; grid-template-rows:1fr 1fr; gap:16px; width:min(100%, 1080px); margin:0 auto 70px; }
.photo-card { margin:0; position:relative; overflow:hidden; min-height:215px; background:#2a2926; }
.photo-card img { width:100%; height:100%; object-fit:cover; transition:transform .7s cubic-bezier(.2,.8,.2,1); }
.photo-card:hover img { transform:scale(1.03); }
.photo-card figcaption { position:absolute; left:16px; right:16px; bottom:14px; z-index:2; font-size:10px; text-transform:uppercase; letter-spacing:.16em; }
.photo-card::after { content:""; position:absolute; inset:auto 0 0; height:38%; background:linear-gradient(180deg,transparent,rgba(0,0,0,.52)); }
.tall-card { grid-row:span 2; min-height:446px; }
.flavour-list { border-top:1px solid rgba(255,255,255,.2); }
.flavour-list > div { display:grid; grid-template-columns:60px 1fr minmax(280px,.7fr); gap:24px; align-items:center; padding:25px 0; border-bottom:1px solid rgba(255,255,255,.2); transition:.25s ease; }
.flavour-list > div:hover { padding-left:12px; padding-right:12px; background:rgba(255,255,255,.035); }
.flavour-list span { font-size:10px; opacity:.55; }
.flavour-list h3 { margin:0; font-family:var(--serif); font-weight:500; font-size:clamp(26px,2.7vw,44px); }
.flavour-list p { margin:0; color:rgba(255,255,255,.58); font-size:13px; max-width:480px; }
.sourdough { display:grid; grid-template-columns:.85fr 1.15fr; gap:clamp(60px,10vw,170px); align-items:center; }
.sourdough-art { min-height:650px; display:flex; flex-direction:column; align-items:center; justify-content:center; position:relative; border:1px solid var(--line); border-radius:50% 50% 8px 8px / 42% 42% 8px 8px; overflow:hidden; background:#e9e2d5; }
.sourdough-art::after { content:""; position:absolute; inset:10%; border:1px solid rgba(24,23,20,.1); border-radius:inherit; }
.sourdough-art img { position:absolute; left:0; right:0; bottom:90px; width:100%; opacity:.75; }
.stamp { z-index:2; width:220px; aspect-ratio:1; display:flex; align-items:center; justify-content:center; transform:rotate(-5deg); }
.stamp img { width:100%; height:auto; display:block; }
.anniversary-stamp { filter: drop-shadow(0 18px 36px rgba(24,23,20,.08)); }
.sourdough-copy .section-index,.bread-copy .section-index { margin-bottom:60px; }
.sourdough-copy h2,.bread-copy h2 { margin-bottom:44px; }
.pullquote { border-left:1px solid var(--accent); padding-left:24px; margin-top:40px!important; font-family:var(--serif); font-size:clamp(23px,2vw,31px); line-height:1.25; color:var(--ink)!important; }
.pullquote em { color:var(--accent); }
.bread { background:var(--paper-2); display:grid; grid-template-columns:1fr 1fr; gap:clamp(50px,8vw,130px); align-items:center; }
.bread-photo { height:min(70vw,760px); position:relative; overflow:hidden; }
.bread-photo img { width:100%; height:100%; object-fit:cover; object-position:center; filter:saturate(.95) contrast(1.03); }
.bread-photo span { position:absolute; left:18px; bottom:16px; color:white; font-size:10px; text-transform:uppercase; letter-spacing:.16em; }
.bread-photo::after { content:""; position:absolute; inset:auto 0 0; height:30%; background:linear-gradient(180deg,transparent,rgba(0,0,0,.34)); }
.bread-types { list-style:none; margin:40px 0; padding:0; border-top:1px solid var(--line); }
.bread-types li { padding:13px 0; border-bottom:1px solid var(--line); display:flex; justify-content:space-between; font-family:var(--serif); font-size:clamp(20px,2vw,29px); }
.bread-types li::after { content:"↗"; font-family:var(--sans); font-size:13px; color:var(--accent); }
.small-copy { font-size:13px; }
.experience-banner { background:var(--accent); color:var(--cream); text-align:center; display:flex; flex-direction:column; align-items:center; }
.experience-copy { text-align:center; display:flex; flex-direction:column; align-items:center; }
.experience-banner h2 { margin:12px 0 54px; }
.experience-banner h2 em { color:#f0cbbb; }
.button-pill { display:inline-flex; align-items:center; gap:24px; padding:17px 24px; border:1px solid rgba(255,255,255,.7); border-radius:999px; color:var(--cream); text-decoration:none; text-transform:uppercase; font-size:10px; letter-spacing:.14em; transition:.25s ease; }
.button-pill span { font-size:16px; }
.button-pill:hover { background:var(--cream); color:var(--accent-dark); }
.visit-top { display:block; max-width:900px; }
.visit-top .section-index { margin-bottom:58px; }
.visit-gallery { display:grid; grid-template-columns:1fr 1fr; gap:18px; margin:42px 0 0; }
.visit-gallery figure { margin:0; overflow:hidden; background:#d9d0c2; }
.visit-gallery img { width:100%; height:min(34vw,460px); object-fit:cover; transition:transform .7s cubic-bezier(.2,.8,.2,1); }
.visit-gallery figure:hover img { transform:scale(1.03); }
.visit-gallery figcaption { padding:14px 0 6px; font-size:10px; text-transform:uppercase; letter-spacing:.14em; }
.contact-grid { display:grid; grid-template-columns:repeat(2,1fr); border-top:1px solid var(--ink); border-bottom:1px solid var(--ink); margin-top:90px; }
.contact-grid a { min-height:190px; padding:24px 20px 20px 0; text-decoration:none; position:relative; display:flex; flex-direction:column; justify-content:space-between; border-right:1px solid var(--ink); }
.contact-grid a:not(:first-child) { padding-left:20px; }
.contact-grid a:last-child { border-right:0; }
.contact-grid a span { text-transform:uppercase; font-size:9px; letter-spacing:.15em; opacity:.6; }
.contact-grid a strong { font-family:var(--serif); font-size:clamp(18px,1.5vw,24px); line-height:1.25; font-weight:500; }
.contact-grid a i { position:absolute; right:18px; top:20px; font-style:normal; transition:transform .25s ease; }
.contact-grid a:hover i { transform:translate(4px,-4px); }
.site-footer { background:var(--ink); color:var(--cream); padding:52px var(--pad); display:grid; grid-template-columns:1fr auto 1fr; align-items:center; gap:30px; }
.footer-brand { display:flex; align-items:center; }
.footer-brand img { display:block; width:150px; height:auto; filter:brightness(0) invert(1); opacity:.92; }
.site-footer > p { margin:0; font-family:var(--serif); font-style:italic; color:rgba(255,255,255,.55); }
.footer-links { display:flex; justify-content:flex-end; gap:22px; font-size:10px; text-transform:uppercase; letter-spacing:.12em; }
.footer-links a { text-decoration:none; }
.country-switch {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
  cursor: pointer;
  opacity: .72;
  transition: opacity .25s ease;
}
.country-switch:hover,
.country-switch:focus-visible { opacity: 1; outline: 0; }
.reveal { opacity:0; transform:translateY(28px); transition:opacity .75s ease,transform .75s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity:1; transform:none; }

/* Carta principal + carta saludable */
.hero-intro { max-width:520px; }
.hero-intro > p { margin:0; color:#4d4942; font-size:clamp(15px,1.25vw,19px); }
.hero-menu-actions { display:flex; flex-wrap:wrap; align-items:center; gap:13px 20px; margin-top:25px; }
.menu-primary { display:inline-flex; align-items:center; gap:26px; padding:14px 18px; border:1px solid var(--ink); background:var(--ink); color:var(--cream); text-decoration:none; text-transform:uppercase; font-size:10px; font-weight:600; letter-spacing:.14em; transition:.25s ease; }
.menu-primary span { font-size:15px; font-weight:400; transition:transform .25s ease; }
.menu-primary:hover { background:transparent; color:var(--ink); }
.menu-primary:hover span { transform:translate(3px,-3px); }
.menu-secondary { display:inline-flex; align-items:center; gap:9px; color:#6d675d; text-decoration:none; border-bottom:1px solid rgba(24,23,20,.28); padding-bottom:3px; font-size:10px; text-transform:uppercase; letter-spacing:.1em; transition:.25s ease; }
.menu-secondary span { font-size:8px; opacity:.62; }
.menu-secondary:hover { color:var(--ink); border-color:var(--ink); }
.menu-cta-stack { flex:0 0 auto; display:flex; flex-direction:column; align-items:flex-end; gap:13px; }
.menu-main-cta { display:inline-flex; align-items:center; justify-content:space-between; min-width:252px; gap:30px; padding:17px 20px; border:1px solid rgba(255,255,255,.72); background:var(--cream); color:var(--ink); text-decoration:none; text-transform:uppercase; font-size:10px; font-weight:600; letter-spacing:.14em; transition:.25s ease; }
.menu-main-cta span { font-size:16px; font-weight:400; transition:transform .25s ease; }
.menu-main-cta:hover { background:transparent; color:var(--cream); }
.menu-main-cta:hover span { transform:translate(3px,-3px); }
.healthy-menu-link { color:rgba(255,255,255,.55); text-decoration:none; border-bottom:1px solid rgba(255,255,255,.22); padding-bottom:3px; font-size:9px; text-transform:uppercase; letter-spacing:.11em; transition:.25s ease; }
.healthy-menu-link span { margin-left:7px; font-size:8px; opacity:.75; }
.healthy-menu-link:hover { color:var(--cream); border-color:rgba(255,255,255,.7); }

@media (max-width: 1180px) {
  .hero { grid-template-columns:1fr; min-height:auto; }
  .hero-copy { padding-left:0; }
  .hero-media { min-height:auto; }
}
@media (max-width: 1040px) {
  .site-nav { gap:16px; }
  .site-nav a:not(.nav-cta) { display:none; }
  .intro-grid,.sourdough,.bread { grid-template-columns:1fr; }
  .intro-grid { gap:45px; }
  .sourdough-art { min-height:520px; order:2; }
  .sourdough-copy { order:1; }
  .bread-photo { height:600px; }
  .contact-grid { grid-template-columns:repeat(2,1fr); }
  .contact-grid a:nth-child(2) { border-right:0; }
  .site-footer { grid-template-columns:1fr 1fr; }
  .site-footer > p { display:none; }
  .visit-gallery img { height:380px; }
}
@media (max-width: 760px) {
  :root { --pad: 20px; }
  .country-gate { place-items: start center; padding: 12px; }
  .country-gate-panel { margin: auto 0; padding: 24px 20px; border-radius: 22px; }
  .country-gate-brand { padding-bottom: 18px; }
  .country-gate-brand img { width: 98px; }
  .country-gate-brand span { max-width: 140px; font-size: 7px; text-align: right; }
  .country-gate-heading { margin: 28px 0 24px; }
  .country-gate-heading h1 { font-size: clamp(47px, 14vw, 64px); }
  .country-gate-heading > p:last-child { margin-top: 18px; font-size: 13px; }
  .country-options { grid-template-columns: 1fr; gap: 10px; }
  .country-option { min-height: 112px; gap: 14px; padding: 16px; border-radius: 14px; }
  .country-flag { width: 54px; height: 38px; }
  .country-option-copy strong { font-size: 26px; }
  .country-option-copy > span { font-size: 10px; }
  .country-option-arrow { width: 32px; height: 32px; }
  .country-gate-note { margin-top: 15px; font-size: 9px; }
  .site-header { height:72px; }
  .brand { width:96px; }
  .site-header.scrolled .brand { width:88px; }
  .site-header.scrolled { height:64px; }
  .site-nav {
    position:fixed; inset:0; z-index:-1; padding:110px 26px 34px; background:var(--paper); flex-direction:column; align-items:flex-start; justify-content:flex-start; gap:0;
    opacity:0; visibility:hidden; transition:.25s ease;
  }
  .site-nav.open { opacity:1; visibility:visible; z-index:90; }
  .site-nav a:not(.nav-cta) { display:block; width:100%; padding:16px 0; border-bottom:1px solid var(--line); font-family:var(--serif); text-transform:none; letter-spacing:-.02em; font-size:34px; font-weight:500; }
  .site-nav .nav-cta { margin-top:32px; font-size:12px; padding:14px 20px; }
  .menu-toggle { display:block; z-index:101; }
  .menu-toggle.active span:first-child { top:22px; transform:rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { top:22px; transform:rotate(-45deg); }
  .hero { padding-top:72px; display:flex; flex-direction:column; gap:0; }
  .hero-media { grid-template-columns:1fr; }
  .hero-main-card { min-height:56svh; }
  .hero-side-stack { grid-template-columns:1fr 1fr; grid-template-rows:none; }
  .hero-mini-card { min-height:220px; }
  .hero-copy { order:1; padding-top:38px; }
  h1 { font-size:clamp(62px,18vw,91px); }
  .hero-bottom { grid-template-columns:1fr; }
  .circle-link { width:100px; justify-self:end; }
  .hero-badge { width:84px; left:18px; bottom:48px; }
  .section-pad { padding-top:90px; padding-bottom:90px; }
  .intro h2,.flavours h2,.sourdough h2,.bread h2,.visit h2,.experience-banner h2 { font-size:clamp(50px,15vw,75px); }
  .gallery { grid-template-columns:1fr; }
  .gallery-main { height:600px; }
  .gallery-side figure { height:430px; }
  .gallery-side .salad-frame { height:480px; }
  .gallery-side .salad-frame img { object-position:center 40%; }
  .gallery-side blockquote { min-height:300px; }
  .flavours-head { display:block; margin:55px 0 45px; }
  .flavour-photo-grid { grid-template-columns:1fr; width:100%; margin-bottom:50px; }
  .tall-card, .photo-card { grid-column:auto; grid-row:auto; min-height:270px; }
  .flavour-list > div { grid-template-columns:42px 1fr; }
  .flavour-list p { grid-column:2; }
  .sourdough-art { min-height:430px; }
  .stamp { width:170px; }
  .bread-photo { height:520px; }
  .visit-top { grid-template-columns:1fr; align-items:start; }
  .visit-gallery { grid-template-columns:1fr; }
  .visit-gallery img { height:300px; }
  .contact-grid { grid-template-columns:1fr; }
  .contact-grid a { border-right:0!important; border-bottom:1px solid var(--ink); min-height:150px; padding-left:0!important; }
  .contact-grid a:last-child { border-bottom:0; }
  .site-footer { grid-template-columns:1fr; }
  .footer-links { justify-content:flex-start; }
  .hero-menu-actions { align-items:flex-start; flex-direction:column; }
  .menu-primary { width:100%; justify-content:space-between; }
  .menu-cta-stack { align-items:flex-start; margin-top:30px; }
  .menu-main-cta { min-width:min(100%, 290px); }
}
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { scroll-behavior:auto!important; animation-duration:.01ms!important; animation-iteration-count:1!important; transition-duration:.01ms!important; }
  .reveal { opacity:1; transform:none; }
}


/* =========================================================
   v11 — Responsive refinement
   Mantiene desktop intacto y optimiza tablet/mobile.
   ========================================================= */

@media (max-width: 1180px) and (min-width: 761px) {
  .hero {
    padding-top: 96px;
    gap: 10px;
  }
  .hero-media {
    min-height: 620px;
  }
  .hero-copy {
    padding: 54px 0 52px;
  }
  .hero-copy h1 {
    max-width: 900px;
  }
  .hero-bottom {
    max-width: 900px;
  }
  .section-pad {
    padding-top: clamp(82px, 9vw, 120px);
    padding-bottom: clamp(82px, 9vw, 120px);
  }
}

@media (max-width: 760px) {
  :root {
    --pad: clamp(18px, 5vw, 24px);
  }

  html {
    scroll-padding-top: 68px;
  }

  body {
    font-size: 15px;
    line-height: 1.48;
  }

  /* Header */
  .site-header,
  .site-header.scrolled {
    height: 68px;
    padding-left: var(--pad);
    padding-right: var(--pad);
  }
  .brand,
  .site-header.scrolled .brand {
    width: 88px;
  }
  .menu-toggle {
    width: 42px;
    height: 42px;
  }
  .site-nav {
    padding: 92px var(--pad) 28px;
    overflow-y: auto;
  }
  .site-nav a:not(.nav-cta) {
    padding: 13px 0;
    font-size: clamp(28px, 9vw, 38px);
  }
  .site-nav .nav-cta {
    width: 100%;
    margin-top: 24px;
    padding: 14px 18px;
    text-align: center;
  }

  /* Hero: fotos primero, pero sin alturas de viewport */
  .hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: 68px 0 0;
  }
  .hero-media {
    order: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
    padding: 10px var(--pad) 0;
  }
  .hero-main-card {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-radius: 2px;
  }
  .hero-side-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    gap: 10px;
  }
  .hero-mini-card {
    min-height: 0;
    aspect-ratio: 1 / 1;
    border-radius: 2px;
  }
  .hero-main-card figcaption,
  .hero-mini-card figcaption {
    left: 12px;
    right: 12px;
    bottom: 10px;
    font-size: 8px;
    line-height: 1.25;
    letter-spacing: .12em;
  }
  .hero-badge {
    width: 68px;
    left: 12px;
    bottom: 36px;
  }
  .hero-copy {
    order: 1;
    padding: 34px var(--pad) 36px;
  }
  .hero-copy .eyebrow {
    margin-bottom: 15px;
  }
  h1 {
    font-size: clamp(48px, 14.6vw, 68px);
    line-height: .94;
    letter-spacing: -.045em;
  }
  .hero-bottom {
    display: block;
    padding-top: 24px;
  }
  .hero-intro > p {
    font-size: 15px;
    line-height: 1.5;
  }
  .hero-menu-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 13px;
    margin-top: 20px;
  }
  .menu-primary {
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
    padding: 13px 16px;
  }
  .menu-secondary {
    width: fit-content;
    font-size: 9px;
  }
  .circle-link {
    display: none;
  }

  .ticker {
    margin-top: 0;
  }
  .ticker-track {
    gap: 20px;
    padding: 11px 0;
    font-size: 22px;
  }

  /* Ritmo vertical general */
  .section-pad {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .section-index {
    padding-top: 8px;
    font-size: 9px;
  }
  .eyebrow {
    margin-bottom: 16px;
    font-size: 9px;
  }
  .intro h2,
  .flavours h2,
  .sourdough h2,
  .bread h2,
  .visit h2,
  .experience-banner h2 {
    font-size: clamp(43px, 12.8vw, 60px);
    line-height: .96;
  }
  .lead {
    font-size: clamp(22px, 6.5vw, 29px);
    line-height: 1.2;
  }

  /* Somos */
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 34px;
  }
  .intro-copy {
    padding-top: 0;
  }
  .intro-copy p {
    margin-bottom: 16px;
  }
  .intro-copy p:last-child {
    margin-bottom: 0;
  }

  /* Galería: proporciones naturales, sin 600/480px fijos */
  .gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 0;
  }
  .gallery-main {
    height: auto;
    display: grid;
    grid-template-rows: auto auto;
  }
  .gallery-main img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }
  .gallery-side {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 22px;
  }
  .gallery-side figure,
  .gallery-side .salad-frame {
    height: auto;
    display: grid;
    grid-template-rows: auto auto;
  }
  .gallery-side figure img,
  .gallery-side .salad-frame img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center 42%;
  }
  .gallery figcaption {
    gap: 14px;
    padding: 10px 0;
    font-size: 9px;
    line-height: 1.35;
    letter-spacing: .1em;
  }
  .gallery-side blockquote {
    min-height: 0;
    padding: 30px 26px;
    gap: 30px;
  }
  .quote-mark {
    font-size: 64px;
  }
  .gallery-side blockquote p {
    margin-bottom: 0;
    font-size: clamp(28px, 8.5vw, 38px);
  }

  /* Sabores */
  .flavours-head {
    display: block;
    margin: 34px 0 36px;
  }
  .menu-cta-stack {
    align-items: flex-start;
    gap: 12px;
    margin-top: 26px;
  }
  .menu-main-cta {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 13px 16px;
  }
  .healthy-menu-link {
    font-size: 8px;
    line-height: 1.4;
  }
  .flavour-photo-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
    margin: 0 0 38px;
  }
  .photo-card,
  .tall-card {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }
  .tall-card {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }
  .photo-card figcaption {
    left: 11px;
    right: 11px;
    bottom: 10px;
    font-size: 8px;
    letter-spacing: .12em;
  }
  .flavour-list > div {
    display: grid;
    grid-template-columns: 30px minmax(0,1fr);
    gap: 8px 12px;
    padding: 17px 0;
  }
  .flavour-list > div:hover {
    padding-left: 0;
    padding-right: 0;
    background: transparent;
  }
  .flavour-list span {
    padding-top: 5px;
  }
  .flavour-list h3 {
    font-size: clamp(24px, 7.5vw, 32px);
    line-height: 1.05;
  }
  .flavour-list p {
    grid-column: 2;
    font-size: 12px;
    line-height: 1.45;
  }

  /* Masa madre */
  .sourdough {
    display: flex;
    flex-direction: column;
    gap: 42px;
  }
  .sourdough-copy {
    order: 1;
  }
  .sourdough-art {
    order: 2;
    width: 100%;
    min-height: 0;
    aspect-ratio: 1 / 1.04;
  }
  .sourdough-art > img {
    bottom: 46px;
  }
  .stamp {
    width: min(43vw, 170px);
  }
  .stamp img {
    position: static;
  }
  .sourdough-copy .section-index,
  .bread-copy .section-index {
    margin-bottom: 30px;
  }
  .sourdough-copy h2,
  .bread-copy h2 {
    margin-bottom: 28px;
  }
  .sourdough-copy > p,
  .bread-copy > p {
    margin-bottom: 16px;
  }
  .pullquote {
    margin-top: 26px !important;
    padding-left: 17px;
    font-size: 22px;
  }

  /* Panes */
  .bread {
    display: flex;
    flex-direction: column;
    gap: 38px;
  }
  .bread-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
  }
  .bread-copy {
    width: 100%;
  }
  .bread-types {
    margin: 28px 0;
  }
  .bread-types li {
    padding: 11px 0;
    font-size: 20px;
  }

  /* CTA */
  .experience-banner {
    min-height: 0;
    padding-top: 68px;
    padding-bottom: 68px;
  }
  .experience-banner h2 {
    margin: 8px 0 32px;
  }
  .button-pill {
    width: 100%;
    max-width: 330px;
    justify-content: space-between;
    padding: 14px 18px;
  }

  /* Visitanos */
  .visit-top {
    display: block;
  }
  .visit-top .section-index {
    margin-bottom: 30px;
  }
  .visit-gallery {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 34px;
  }
  .visit-gallery img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }
  .visit-gallery figcaption {
    padding: 9px 0 0;
    font-size: 9px;
    line-height: 1.35;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }
  .contact-grid a {
    min-height: 0;
    padding: 18px 42px 18px 0 !important;
    gap: 24px;
  }
  .contact-grid a strong {
    font-size: clamp(19px, 6vw, 26px);
  }
  .contact-grid a i {
    right: 4px;
    top: 17px;
  }

  /* Footer */
  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 34px var(--pad);
  }
  .footer-brand img {
    width: 120px;
  }
  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px 20px;
  }
}

@media (max-width: 430px) {
  .hero-main-card {
    aspect-ratio: 1 / 1;
  }
  .hero-mini-card {
    aspect-ratio: 4 / 5;
  }
  h1 {
    font-size: clamp(46px, 14vw, 61px);
  }
  .section-pad {
    padding-top: 58px;
    padding-bottom: 58px;
  }
  .intro h2,
  .flavours h2,
  .sourdough h2,
  .bread h2,
  .visit h2,
  .experience-banner h2 {
    font-size: clamp(41px, 12.3vw, 53px);
  }
  .gallery-main img,
  .gallery-side figure img,
  .gallery-side .salad-frame img {
    aspect-ratio: 1 / 1.14;
  }
  .flavour-photo-grid {
    gap: 8px;
  }
  .photo-card figcaption {
    font-size: 7px;
  }
}


/* Sucursales */
.locations-layout {
  margin-top: 72px;
  padding-top: 18px;
  border-top: 1px solid var(--ink);
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.45fr);
  gap: 34px;
  align-items: start;
}
.locations-copy {
  position: sticky;
  top: 110px;
}
.locations-copy .eyebrow {
  margin-bottom: 18px;
}
.locations-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.05;
  letter-spacing: -.03em;
}
.locations-intro {
  margin: 18px 0 0;
  max-width: 420px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(30, 28, 25, 0.72);
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.location-card {
  min-height: 138px;
  padding: 22px 54px 20px 22px;
  border: 1px solid rgba(30, 28, 25, 0.22);
  background: rgba(255,255,255,0.34);
  border-radius: 20px;
  text-decoration: none;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease, color .25s ease;
  box-shadow: 0 8px 24px rgba(30, 28, 25, 0.04);
  overflow: hidden;
}
.location-card::after {
  content: '';
  position: absolute;
  inset: auto -26% -42% auto;
  width: 160px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,117,.16) 0%, rgba(201,168,117,0) 70%);
  pointer-events: none;
}
.location-card:hover {
  transform: translateY(-3px);
  background: #f4eee5;
  border-color: rgba(30, 28, 25, 0.4);
  box-shadow: 0 16px 34px rgba(30, 28, 25, 0.08);
}
.location-name {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  opacity: .62;
}
.location-action {
  font-family: var(--serif);
  font-size: clamp(22px, 1.85vw, 28px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -.03em;
}
.location-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .68;
}
.location-meta::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  opacity: .7;
}
.location-card i {
  position: absolute;
  right: 20px;
  top: 19px;
  font-style: normal;
  font-size: 18px;
  transition: transform .25s ease;
}
.location-card:hover i {
  transform: translate(4px, -4px);
}

@media (max-width: 1180px) {
  .locations-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .locations-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .locations-layout {
    margin-top: 38px;
    padding-top: 14px;
    gap: 18px;
  }
  .locations-copy h2 {
    font-size: clamp(28px, 8.2vw, 36px);
  }
  .locations-intro {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.55;
  }
  .locations-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .location-card {
    min-height: 0;
    padding: 18px 48px 18px 18px;
    border-radius: 18px;
  }
  .location-action {
    font-size: clamp(24px, 7vw, 29px);
  }
  .location-meta {
    font-size: 11px;
    letter-spacing: .11em;
  }
  .location-card i {
    right: 16px;
    top: 16px;
  }
}
