@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Inter:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

:root {
  --green: #0b3b31;
  --green-deep: #06251f;
  --teal: #078c93;
  --orange: #f36a21;
  --gold: #f7b733;
  --cream: #fffaf0;
  --paper: #fffdf8;
  --ink: #17251f;
  --muted: #6c746f;
  --line: #ded9cd;
  --header-height: 76px;
  --category-height: 61px;
  --max-width: 1180px;
  --shadow: 0 18px 48px rgba(17, 43, 34, .12);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--category-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    url('../img/leaf-shadow.svg') right -90px top 610px / 330px auto no-repeat,
    url('../img/leaf-shadow.svg') left -120px top 2050px / 290px auto no-repeat,
    radial-gradient(circle at 5% 15%, rgba(247, 183, 51, .08), transparent 23rem),
    var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }

.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;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: .7rem 1rem;
  color: white;
  background: var(--green-deep);
  text-decoration: none;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 0 max(1.25rem, calc((100vw - var(--max-width)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: white;
  background: var(--green-deep);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: white;
  text-decoration: none;
}

.brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.2rem);
}

.main-nav a {
  position: relative;
  padding: 1.65rem 0;
  color: rgba(255, 255, 255, .86);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 1.15rem;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a[aria-current="page"]::after { transform: scaleX(1); }

.main-nav a[aria-current="page"] { color: white; }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 0;
  color: white;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  position: relative;
  min-height: clamp(310px, 37vw, 430px);
  isolation: isolate;
  display: flex;
  align-items: center;
  padding: clamp(2rem, 5vw, 5rem) max(1.25rem, calc((100vw - var(--max-width)) / 2));
  color: white;
  background: url('../img/hero-local.webp') center 34% / cover no-repeat;
}

.hero-shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 25, 21, .88) 0%, rgba(3, 25, 21, .54) 45%, rgba(3, 25, 21, .1) 72%),
    linear-gradient(0deg, rgba(3, 25, 21, .48), transparent 45%);
}

.hero-content { max-width: 570px; }

.eyebrow,
.section-kicker {
  margin: 0 0 .65rem;
  color: var(--orange);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero .eyebrow { color: #ffd381; }

.hero h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: .82;
  letter-spacing: -.055em;
  text-shadow: 0 5px 26px rgba(0, 0, 0, .35);
}

.hero h1 span {
  display: inline-block;
  margin-left: .08em;
  color: #ffd27b;
  font-size: .48em;
  font-style: italic;
  letter-spacing: -.015em;
}

.hero-copy {
  max-width: 36rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-hours {
  display: flex;
  align-items: baseline;
  width: fit-content;
  gap: .65rem;
  margin: 1rem 0 0;
  padding-top: .85rem;
  border-top: 1px solid rgba(255,255,255,.32);
  color: white;
}
.hero-hours span,
.hero-hours small { font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero-hours strong {
  color: #dfffff;
  font-family: "Great Vibes", "Segoe Script", cursive;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: .7;
  text-shadow: 0 0 2px #fff, 0 0 8px #bffcff, 0 0 18px #22d7dc, 0 0 32px rgba(34,215,220,.76);
}
.hero-hours small { color: #ffd381; }

.google-review {
  position: absolute;
  right: max(1.25rem, calc((100vw - var(--max-width)) / 2));
  bottom: 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .9rem;
  width: min(390px, calc(100% - 2.5rem));
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 26px 26px 26px 8px;
  color: var(--ink);
  background: rgba(255, 253, 248, .96);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.google-review:hover,
.google-review:focus-visible {
  background: white;
  transform: translateY(-3px);
}

.google-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #d9d9d9;
  border-radius: 50%;
  color: #4285f4;
  background: white;
  font-size: 1.3rem;
  font-weight: 800;
}

.review-copy { display: grid; gap: .2rem; min-width: 0; }
.review-copy strong { font-size: .88rem; line-height: 1.2; }
.review-copy span { color: #59645f; font-size: .78rem; }
.review-copy b { color: #f5a000; letter-spacing: .04em; }
.review-arrow { color: var(--teal); font-size: 1.2rem; }

.category-nav {
  position: sticky;
  z-index: 90;
  top: var(--header-height);
  height: var(--category-height);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, .97);
  box-shadow: 0 6px 18px rgba(23, 37, 31, .06);
  backdrop-filter: blur(12px);
}

.category-scroll {
  display: flex;
  align-items: stretch;
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}

.category-scroll::-webkit-scrollbar { display: none; }

.category-nav a {
  position: relative;
  display: inline-flex;
  flex: 1 0 auto;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  padding: 0 clamp(1rem, 2vw, 1.7rem);
  border-right: 1px solid var(--line);
  color: #38433e;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .015em;
  text-decoration: none;
}

.category-nav a:first-child { border-left: 1px solid var(--line); }

.category-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transition: transform .2s ease;
}

.category-nav a:hover,
.category-nav a:focus-visible,
.category-nav a.active { color: var(--teal); }

.category-nav a.active::after { transform: scaleX(1); }

.menu {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(2.25rem, 4vw, 3.5rem) 1.25rem 4rem;
}

.menu-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 390px);
  align-items: end;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.menu-intro h2,
.daily-menu h2,
.visit h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -.04em;
}

.menu-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.menu-intro--interior {
  position: relative;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 330px) 150px;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-bottom: 2.5rem;
  padding: 1.45rem 2rem;
  overflow: hidden;
  border: 0;
  border-radius: 12px 52px 12px 52px;
  color: white;
  background:
    radial-gradient(circle at 91% 50%, rgba(243, 106, 33, .25), transparent 12rem),
    linear-gradient(90deg, rgba(6, 37, 31, .76), rgba(6, 37, 31, .2)),
    repeating-linear-gradient(90deg, #8d6039 0 11px, #c08d5d 11px 16px, #151611 16px 24px);
  box-shadow: inset 0 12px 32px rgba(0, 0, 0, .28), var(--shadow);
}

.menu-intro--interior::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 5%, #ff7a24 30%, #ffb11b 47%, #19c9d0 64%, transparent 95%);
  box-shadow: 0 0 10px rgba(255, 122, 36, .7), 0 0 15px rgba(25, 201, 208, .5);
  content: "";
}

.menu-intro--interior .section-kicker { color: #ffad48; }
.menu-intro--interior h2 { color: white; text-shadow: 0 3px 18px rgba(0, 0, 0, .68); }
.menu-intro--interior > p { color: rgba(255,255,255,.78); text-shadow: 0 2px 12px rgba(0, 0, 0, .7); }
.menu-intro--interior > img {
  width: 100%;
  max-height: 130px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: saturate(1.12) drop-shadow(0 0 14px rgba(243, 106, 33, .28));
}

.menu-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem clamp(3rem, 7vw, 6rem);
}

.menu-section { scroll-margin-top: calc(var(--header-height) + var(--category-height) + 24px); }

.menu-section > header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .45rem;
  padding-bottom: .75rem;
  border-bottom: 3px solid var(--green);
}

.menu-section h3 {
  margin: 0;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.1;
}

.menu-section > header span {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: right;
  text-transform: uppercase;
}

.menu-section--accent > header { border-bottom-color: var(--orange); }
.menu-section--accent h3 { color: var(--orange); }

.dish-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dish-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: baseline;
  padding: .78rem 0;
  border-bottom: 1px dotted #c9c3b8;
}

.dish-list li > span {
  min-width: 0;
  font-size: .92rem;
  font-weight: 500;
}

.dish-list li > strong {
  color: var(--orange);
  font-size: .9rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.dish-list--described li { align-items: start; }
.dish-list--described li > span { display: grid; gap: .2rem; }
.dish-list--described b { font-size: .92rem; }
.dish-list--described small { color: var(--muted); font-size: .78rem; font-weight: 400; }

.menu-photo { position: relative; overflow: hidden; background: var(--green); box-shadow: var(--shadow); }
.menu-photo--landscape {
  grid-column: 1 / -1;
  width: min(78%, 900px);
  height: clamp(280px, 35vw, 410px);
  margin: -.5rem 0 .5rem clamp(1rem, 7vw, 6rem);
  border-radius: 96px 12px 96px 12px;
  box-shadow: 18px 18px 0 rgba(7,140,147,.08), var(--shadow);
}
.menu-photo--portrait {
  grid-column: 2;
  align-self: start;
  justify-self: end;
  width: min(86%, 475px);
  height: clamp(470px, 50vw, 630px);
  margin-top: 1.5rem;
  border-radius: 12px 104px 12px 104px;
  box-shadow: -18px 18px 0 rgba(243,106,33,.08), var(--shadow);
}
.menu-photo img { width: 100%; height: 100%; object-fit: cover; }
.menu-photo--landscape img { object-position: center 58%; }
.menu-photo--portrait img { object-position: center 50%; }

.family-gallery figure { position: relative; margin: 0; overflow: hidden; box-shadow: var(--shadow); }
.family-gallery img { width: 100%; height: 100%; object-fit: cover; }
.family-gallery figcaption { position: absolute; right: .8rem; bottom: .8rem; left: .8rem; width: fit-content; padding: .45rem .7rem; border-radius: 10px 10px 10px 3px; color: white; background: rgba(6,37,31,.84); font-size: .72rem; font-weight: 700; }

.origin-map {
  display: grid;
  grid-template-columns: minmax(310px, .85fr) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 7rem);
  max-width: var(--max-width);
  margin: 0 auto 5rem;
  padding: clamp(3.5rem, 8vw, 7rem) 1.25rem;
  scroll-margin-top: calc(var(--header-height) + var(--category-height) + 24px);
}

.origin-map__visual {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-radius: 110px 18px 110px 18px;
  background:
    radial-gradient(circle at 50% 45%, rgba(7,140,147,.2), transparent 45%),
    linear-gradient(155deg, #092f28, #061c18);
  box-shadow: var(--shadow), inset 0 0 80px rgba(0,0,0,.35);
}

.origin-map__visual::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ff7a24 32%, #21d4da 68%, transparent);
  box-shadow: 0 0 13px rgba(255,122,36,.7), 0 0 16px rgba(33,212,218,.55);
  content: "";
}

.south-america { position: absolute; inset: 4% 5% 4% 7%; width: 88%; height: 92%; filter: drop-shadow(0 22px 30px rgba(0,0,0,.3)); }
.continent { fill: rgba(218,188,139,.16); stroke: rgba(255,255,255,.18); stroke-width: 2; }
.country { stroke-width: 2.5; transition: opacity .2s ease, filter .2s ease; }
.country--colombia { fill: rgba(247,183,51,.62); stroke: #ffd381; }
.country--ecuador { fill: rgba(243,106,33,.7); stroke: #ff9b63; }
.country--venezuela { fill: rgba(7,140,147,.68); stroke: #53dbe0; }
.journey-routes { pointer-events: none; }
.route { fill: none; stroke-width: 1.6; stroke-dasharray: 5 8; stroke-linecap: round; opacity: .38; }
.route--colombia { stroke: #f7b733; }
.route--ecuador { stroke: #f36a21; }
.route--venezuela { stroke: #53dbe0; }
.journey-dot { stroke: white; stroke-width: 1.5; filter: drop-shadow(0 0 4px currentColor); }
.journey-dot--colombia { color: #f7b733; fill: #f7b733; }
.journey-dot--ecuador { color: #f36a21; fill: #f36a21; }
.journey-dot--venezuela { color: #53dbe0; fill: #53dbe0; }
.spain-locator { fill: rgba(218,188,139,.2); stroke: rgba(255,255,255,.58); stroke-width: 1.2; stroke-linejoin: round; }
.destination-country, .destination-label { fill: rgba(255,255,255,.76); font-family: Inter, sans-serif; font-size: 7px; font-weight: 800; letter-spacing: .12em; }
.destination-label { fill: #fff0d8; font-size: 8px; letter-spacing: .08em; }
.benidorm-point { fill: #ff7a24; stroke: white; stroke-width: 1.2; }
.benidorm-pulse {
  fill: none;
  stroke: #ff7a24;
  stroke-width: 1.5;
  transform-box: fill-box;
  transform-origin: center;
  animation: benidorm-arrival 4s steps(1, end) infinite;
}

@keyframes benidorm-arrival {
  0%, 50%, 100% { opacity: .18; transform: scale(.75); }
  75% { opacity: .72; transform: scale(1.35); }
}

.map-pin {
  position: absolute;
  z-index: 2;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 4px solid white;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(243,106,33,.22), 0 0 18px rgba(243,106,33,.7);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.map-pin:hover, .map-pin:focus-visible, .map-pin.is-active { transform: scale(1.25); box-shadow: 0 0 0 7px rgba(83,219,224,.2), 0 0 25px rgba(83,219,224,.85); }
.map-pin span { position: absolute; top: -10px; left: 28px; padding: .25rem .45rem; color: white; background: rgba(6,37,31,.82); font-size: .67rem; font-weight: 800; white-space: nowrap; }
.map-pin--venezuela { top: 16%; left: 51%; background: var(--teal); }
.map-pin--colombia { top: 26%; left: 28%; background: var(--gold); }
.map-pin--ecuador { top: 39%; left: 23%; }

.origin-map__content { align-self: center; }
.origin-map__content h2 {
  margin: 0;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 7vw, 6.1rem);
  line-height: .86;
  letter-spacing: -.06em;
}
.origin-map__content h2 em { color: var(--orange); font-weight: 700; }
.origin-tabs { display: flex; flex-wrap: wrap; gap: 0; margin: 2rem 0 1.5rem; border-bottom: 1px solid var(--line); }
.origin-tabs button { padding: .7rem 1rem; border: 0; border-bottom: 3px solid transparent; color: var(--muted); background: transparent; font: inherit; font-size: .78rem; font-weight: 800; cursor: pointer; }
.origin-tabs button:hover, .origin-tabs button:focus-visible, .origin-tabs button.is-active { color: var(--teal); border-bottom-color: var(--orange); }
.origin-story { min-height: 290px; }
.origin-story__note { margin: 0; color: var(--teal); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.origin-story h3 { margin: .45rem 0 .7rem; color: var(--green); font-family: "Playfair Display", Georgia, serif; font-size: clamp(1.8rem, 4vw, 2.7rem); line-height: 1; }
.origin-story > p:not(.origin-story__note) { max-width: 39rem; color: var(--muted); }
.origin-story ul { display: flex; flex-wrap: wrap; gap: .5rem .7rem; margin: 1.4rem 0 0; padding: 0; list-style: none; }
.origin-story li { padding: .4rem .65rem; border: 1px solid rgba(7,140,147,.24); border-radius: 10px 10px 10px 3px; color: var(--green); background: rgba(191,232,231,.2); font-size: .76rem; font-weight: 700; }
.origin-disclaimer { max-width: 39rem; margin-top: 1.4rem; padding-top: 1rem; border-top: 1px solid var(--line); color: #7b817d; font-size: .72rem; }

.neon-manifesto {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 310px;
  max-width: calc(var(--max-width) - 2.5rem);
  margin: 5rem auto 0;
  padding: clamp(2.5rem, 7vw, 5rem);
  overflow: hidden;
  border-radius: 14px 74px 14px 74px;
  color: white;
  background:
    radial-gradient(circle at 78% 42%, rgba(243,106,33,.24), transparent 18rem),
    linear-gradient(90deg, rgba(6,37,31,.82), rgba(6,37,31,.3)),
    repeating-linear-gradient(90deg, #895b36 0 11px, #bb8656 11px 16px, #141510 16px 24px);
  box-shadow: var(--shadow), inset 0 15px 40px rgba(0,0,0,.3);
}
.neon-manifesto span { color: #ffae4d; font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.neon-manifesto strong { color: white; font-family: "Playfair Display", Georgia, serif; font-size: clamp(4rem, 11vw, 9rem); font-style: italic; line-height: .78; letter-spacing: -.07em; text-shadow: 0 0 8px rgba(255,255,255,.45), 0 0 24px rgba(33,212,218,.42); }
.neon-manifesto small { margin-top: 1.5rem; color: #ffd381; font-size: .8rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.neon-manifesto--music strong { color: #72f3ef; }
.neon-manifesto--story strong { color: #ffd381; text-shadow: 0 0 10px rgba(255,211,129,.55), 0 0 24px rgba(243,106,33,.5); }
.neon-manifesto--space { text-align: right; }
.neon-manifesto--space strong { color: #ff8b42; }

.daily-menu {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: clamp(340px, 39vw, 520px);
  gap: 2rem;
  width: 100%;
  margin: 0 0 5rem;
  padding: clamp(3rem, 8vw, 7rem) max(1.25rem, calc((100vw - var(--max-width)) / 2));
  overflow: hidden;
  scroll-margin-top: calc(var(--header-height) + var(--category-height) + 24px);
  color: white;
  background:
    linear-gradient(90deg, rgba(4, 27, 23, .95) 0%, rgba(5, 37, 31, .8) 43%, rgba(5, 37, 31, .28) 78%),
    url("../img/food/sopa-tradicional-real.webp") center 55% / cover no-repeat;
  box-shadow: inset 0 0 90px rgba(0,0,0,.28);
}

.daily-menu::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 5%, #ff7a24 30%, #ffb11b 47%, #19c9d0 64%, transparent 95%);
  box-shadow: 0 0 12px rgba(255,122,36,.65), 0 0 18px rgba(25,201,208,.45);
  content: "";
}

.daily-menu > * { position: relative; z-index: 1; }
.daily-menu > div { max-width: 36rem; }
.daily-menu .section-kicker { color: #ffd381; }
.daily-menu h2 { color: white; font-size: clamp(3.2rem, 7vw, 6rem); text-shadow: 0 4px 24px rgba(0,0,0,.5); }
.daily-menu h2 span { display: block; }
.daily-menu h2 em {
  display: block;
  width: fit-content;
  margin: -.24em 0 0 .75em;
  color: #dcffff;
  font-family: "Great Vibes", "Segoe Script", cursive;
  font-size: 1.08em;
  font-weight: 400;
  line-height: .78;
  text-shadow:
    0 0 2px #fff,
    0 0 8px #d8ffff,
    0 0 18px #22d7dc,
    0 0 38px rgba(34, 215, 220, .8);
}
.daily-menu p:not(.section-kicker) { margin: 1rem 0 .25rem; font-size: clamp(1.05rem, 2vw, 1.35rem); font-weight: 700; }
.daily-menu small { color: rgba(255, 255, 255, .68); }
.daily-menu > strong {
  flex: 0 0 auto;
  color: #ffd381;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 1;
  text-shadow: 0 4px 28px rgba(0,0,0,.55);
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(190px, 1fr) minmax(280px, auto) auto;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem max(1.25rem, calc((100vw - var(--max-width)) / 2));
  color: rgba(255,255,255,.86);
  background:
    linear-gradient(90deg, rgba(6, 37, 31, .97), rgba(6, 37, 31, .9)),
    repeating-linear-gradient(90deg, #8c5e37 0 8px, #bd8a59 8px 12px, #131510 12px 18px);
}

.site-footer img { width: 76px; height: 76px; object-fit: contain; }
.site-footer div { display: grid; gap: .1rem; }
.site-footer div strong { color: white; font-size: .92rem; }
.site-footer div span, .site-footer p { margin: 0; font-size: .72rem; }
.footer-brand a { width: fit-content; color: #ffd381; font-size: .72rem; text-decoration: none; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .7rem 1.2rem; }
.footer-links a { color: rgba(255,255,255,.78); font-size: .72rem; text-decoration: none; }
.footer-links a:hover, .footer-links a:focus-visible { color: white; text-decoration: underline; }
.site-footer p { color: rgba(255,255,255,.55); }

.whatsapp-float {
  position: fixed;
  z-index: 120;
  right: clamp(1rem, 2.5vw, 2rem);
  bottom: max(1rem, env(safe-area-inset-bottom));
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-height: 50px;
  padding: .7rem 1rem .7rem .75rem;
  border: 2px solid white;
  border-radius: 999px;
  color: white;
  background: #1c9a56;
  box-shadow: 0 12px 30px rgba(8, 48, 30, .25);
  font-size: .8rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible { background: #157d45; transform: translateY(-3px); }
.whatsapp-float svg { width: 26px; height: 26px; fill: currentColor; }

.inner-page {
  background:
    url('../img/leaf-shadow.svg') right -100px top 760px / 350px auto no-repeat,
    url('../img/leaf-shadow.svg') left -125px top 1780px / 320px auto no-repeat,
    radial-gradient(circle at 8% 32%, rgba(247, 183, 51, .1), transparent 24rem),
    var(--paper);
}

.inner-hero {
  position: relative;
  min-height: clamp(390px, 55vw, 590px);
  display: flex;
  align-items: end;
  padding: clamp(3rem, 8vw, 7rem) max(1.25rem, calc((100vw - var(--max-width)) / 2));
  overflow: hidden;
  border-radius: 0 0 86px 0;
  color: white;
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.inner-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 25, 21, .9), rgba(3, 25, 21, .52) 50%, rgba(3, 25, 21, .12));
  content: "";
}

.inner-hero--music { background-image: url('../img/gallery/ambiente-amigos.webp'); background-position: center 44%; }
.inner-hero--story {
  justify-content: flex-end;
  background-image: url('../img/gallery/neon-local.webp');
  background-position: 23% 48%;
  background-size: auto 112%;
}

.inner-hero--story::before {
  background:
    linear-gradient(270deg, rgba(3, 25, 21, .94), rgba(3, 25, 21, .72) 36%, rgba(3, 25, 21, .2) 66%, rgba(3, 25, 21, .05) 82%),
    linear-gradient(0deg, rgba(3, 25, 21, .42), transparent 60%);
}

.inner-hero--story .inner-hero__content {
  width: min(42vw, 570px);
  margin-left: auto;
  text-align: right;
}

.inner-hero--story .inner-hero__content > p:last-child { margin-left: auto; }
.inner-hero--space { background-image: url('../img/hero-local.webp'); background-position: center 30%; }

.inner-hero__content { max-width: 790px; }
.inner-hero__content .eyebrow { color: #ffd381; }
.inner-hero h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 7.6vw, 6.8rem);
  line-height: .91;
  letter-spacing: -.055em;
  text-shadow: 0 7px 30px rgba(0, 0, 0, .38);
}

.inner-hero h1 em { color: #ffd381; font-weight: 700; }
.inner-hero__content > p:last-child { max-width: 38rem; margin: 1.2rem 0 0; color: rgba(255,255,255,.9); font-size: clamp(1rem, 2vw, 1.18rem); }

.inner-hero__content .night-hours {
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
  justify-content: start;
  width: fit-content;
  gap: 0 .85rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.36);
}
.night-hours span { color: #ffd381; font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.night-hours strong {
  grid-row: 1 / span 2;
  grid-column: 2;
  color: #dfffff;
  font-family: "Great Vibes", "Segoe Script", cursive;
  font-size: clamp(4.4rem, 9vw, 7.3rem);
  font-weight: 400;
  line-height: .62;
  text-shadow: 0 0 2px #fff, 0 0 9px #caffff, 0 0 20px #22d7dc, 0 0 42px rgba(34,215,220,.82);
}
.night-hours small { color: rgba(255,255,255,.76); font-size: .69rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }

.page-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 8rem) 1.25rem;
}

.page-section h2,
.event-band h2,
.roots-band h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.video-feature,
.story-feature {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7.5rem);
}

.video-frame {
  position: relative;
  max-width: 430px;
  padding: 9px;
  border-radius: 110px 16px 110px 16px;
  background: linear-gradient(145deg, var(--orange), var(--gold), var(--teal));
  box-shadow: var(--shadow);
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 101px 10px 101px 10px;
  background: var(--green-deep);
  object-fit: cover;
}

.feature-copy { max-width: 590px; }
.feature-copy > p:not(.section-kicker) { margin: 1.2rem 0 0; color: var(--muted); }
.feature-copy .tardeando-time { margin-top: 1.5rem; color: var(--orange); }
.tardeando-time strong { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; }
.primary-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-top: 1.8rem;
  padding: .9rem 1.2rem;
  border-radius: 18px 18px 18px 5px;
  color: white;
  background: var(--orange);
  font-size: .84rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.primary-link:hover,
.primary-link:focus-visible { background: #d95512; transform: translateY(-2px); }

.event-band,
.roots-band {
  max-width: calc(var(--max-width) - 2.5rem);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem);
  color: white;
  background:
    linear-gradient(112deg, rgba(6, 37, 31, .98), rgba(11, 59, 49, .9)),
    url('../img/gallery/neon-local.webp') center / cover;
  box-shadow: var(--shadow);
}

.event-band {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  align-items: end;
  gap: 2.5rem;
  border-radius: 14px 64px 14px 64px;
}

.event-band .section-kicker,
.roots-band .section-kicker { color: #ffd381; }
.event-band > p { margin: 0; color: rgba(255,255,255,.78); font-size: .9rem; }
.event-band > p strong { color: #ffd381; font-size: 1.15rem; }
.text-link--light { color: white; white-space: nowrap; }

.event-band--dance.neon-manifesto {
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  align-items: start;
  gap: 0;
  min-height: 360px;
  margin-top: 0;
  border-radius: 14px 64px 14px 64px;
}
.event-band--dance span { color: #ffae4d; font-size: clamp(1rem, 2vw, 1.35rem); }
.event-band--dance strong {
  color: #dfffff;
  font-family: "Great Vibes", "Segoe Script", cursive;
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 400;
  font-style: normal;
  line-height: .72;
  text-shadow: 0 0 2px #fff, 0 0 9px #caffff, 0 0 20px #22d7dc, 0 0 43px rgba(34,215,220,.8);
}
.event-band--dance small { margin-top: 1.5rem; }

.editorial-heading,
.space-intro {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 400px);
  align-items: end;
  gap: 3rem;
  margin-bottom: 3rem;
}

.editorial-heading > p,
.space-intro > p { margin: 0; color: var(--muted); }

.photo-mosaic {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  grid-template-rows: repeat(2, 260px) 280px;
  gap: 1rem;
}

.photo-mosaic figure,
.space-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #d9dfd9;
  box-shadow: 0 12px 35px rgba(17, 43, 34, .1);
}

.photo-mosaic figure:first-child { grid-row: 1 / 3; border-radius: 76px 14px 76px 14px; }
.photo-mosaic figure:nth-child(2) { border-radius: 14px 70px 14px 14px; }
.photo-mosaic figure:nth-child(3) { border-radius: 14px 14px 70px 14px; }
.photo-mosaic figure:nth-child(4) { grid-column: 1 / -1; border-radius: 14px 14px 14px 60px; }
.photo-mosaic img,
.space-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.photo-mosaic--music figure:nth-child(2) img { object-position: top; }
.photo-mosaic--music figure:nth-child(3) img { object-position: center 45%; }
.photo-mosaic--music figure:nth-child(4) img { object-position: center 40%; }
.photo-mosaic figure:hover img,
.space-gallery figure:hover img { transform: scale(1.025); }
.photo-mosaic figcaption,
.space-gallery figcaption {
  position: absolute;
  right: .8rem;
  bottom: .8rem;
  left: .8rem;
  width: fit-content;
  padding: .48rem .7rem;
  border-radius: 10px 10px 10px 3px;
  color: white;
  background: rgba(6,37,31,.84);
  font-size: .72rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.story-photo { padding: 10px; border-radius: 24px 110px 24px 110px; background: rgba(86,193,198,.3); }
.story-photo img { width: 100%; min-height: 510px; border-radius: 18px 101px 18px 101px; object-fit: cover; }

.family-feature,
.events-feature { padding-top: 1rem; }
.events-feature .primary-link { margin-top: 2.2rem; }
.events-gallery { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 300px; gap: 1rem; }
.events-gallery figure { position: relative; margin: 0; overflow: hidden; box-shadow: var(--shadow); }
.events-gallery img { width: 100%; height: 100%; object-fit: cover; }
.events-gallery figcaption { position: absolute; right: .8rem; bottom: .8rem; left: .8rem; width: fit-content; padding: .45rem .7rem; border-radius: 10px 10px 10px 3px; color: white; background: rgba(6,37,31,.84); font-size: .72rem; font-weight: 700; }
.events-gallery figure:first-child { grid-column: 1 / -1; height: 420px; border-radius: 70px 12px 12px 12px; }
.events-gallery figure:nth-child(2) { border-radius: 12px 12px 12px 54px; }
.events-gallery figure:nth-child(3) { border-radius: 12px 12px 54px 12px; }
.family-gallery { display: grid; grid-template-columns: 1.5fr .7fr; grid-auto-rows: 430px; gap: 1rem; }
.family-gallery figure:first-child { border-radius: 68px 12px 12px 12px; }
.family-gallery figure:last-child { border-radius: 12px 68px 12px 68px; }

.roots-band {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  border-radius: 64px 12px 64px 12px;
}

.root-note { display: grid; align-content: start; gap: .65rem; padding-top: .5rem; border-top: 2px solid var(--orange); }
.root-note strong { color: #ffd381; font-family: "Playfair Display", Georgia, serif; font-size: 1.45rem; }
.root-note span { color: rgba(255,255,255,.74); font-size: .84rem; }

.quote-feature { max-width: 850px; text-align: center; }
.quote-mark { height: 62px; color: var(--orange); font-family: Georgia, serif; font-size: 7rem; line-height: .8; }
.quote-feature blockquote { margin: 1rem 0; color: var(--green); font-family: "Playfair Display", Georgia, serif; font-size: clamp(2rem, 5vw, 4.2rem); font-style: italic; line-height: 1.08; }
.quote-feature > p { color: var(--muted); font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.space-intro { padding-bottom: 1rem; }
.gallery-section { padding-top: 2rem; }
.space-gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 220px; gap: 1rem; }
.space-gallery figure:nth-child(1) { grid-column: span 8; border-radius: 70px 12px 12px 12px; }
.space-gallery figure:nth-child(2) { grid-column: span 4; grid-row: span 2; border-radius: 12px 70px 12px 70px; }
.space-gallery figure:nth-child(3) { grid-column: span 4; border-radius: 12px 12px 12px 54px; }
.space-gallery figure:nth-child(4) { grid-column: span 4; border-radius: 12px 54px 12px 12px; }
.space-gallery figure:nth-child(5) { grid-column: span 12; min-height: 300px; border-radius: 12px 12px 74px 12px; }
.space-gallery figure:nth-child(2) img { object-position: center 24%; }
.visit--page { align-items: center; margin-top: 0; margin-bottom: clamp(4rem, 8vw, 7rem); }
.visit--page .primary-link { flex: 0 0 auto; margin-top: 0; }

.legal-content { max-width: 860px; margin: 0 auto; padding: clamp(4rem, 8vw, 7rem) 1.25rem; }
.legal-content h1 { margin: 0; color: var(--green); font-family: "Playfair Display", Georgia, serif; font-size: clamp(2.8rem, 7vw, 5.6rem); line-height: .95; letter-spacing: -.05em; }
.legal-content h2 { margin: 3rem 0 .8rem; color: var(--green); font-family: "Playfair Display", Georgia, serif; font-size: clamp(1.55rem, 3vw, 2.2rem); line-height: 1.1; }
.legal-content p, .legal-content li { color: #525f59; }
.legal-content li + li { margin-top: .35rem; }
.legal-content a:not(.primary-link) { color: var(--teal); }
.legal-updated { margin: 1rem 0 2rem; font-size: .82rem; }
.legal-notice { margin: 2rem 0 3rem; padding: 1.4rem 1.5rem; border-left: 4px solid var(--orange); border-radius: 8px 28px 28px 8px; color: #59432f; background: #fff0d5; }
.legal-notice strong { display: block; margin-bottom: .35rem; color: #5b2b14; }

.not-found-page { min-height: 100vh; display: grid; place-items: center; padding: 2rem; color: white; background: linear-gradient(135deg, rgba(6,37,31,.96), rgba(11,59,49,.84)), url('../img/gallery/neon-local.webp') center / cover; }
.not-found-page main { max-width: 720px; text-align: center; }
.not-found-page img { margin: 0 auto 1rem; object-fit: contain; }
.not-found-page h1 { margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: clamp(3rem, 9vw, 6.5rem); line-height: .9; letter-spacing: -.055em; }
.not-found-page p:not(.section-kicker) { max-width: 540px; margin: 1.4rem auto; color: rgba(255,255,255,.8); }
.not-found-page main > div { display: flex; align-items: center; justify-content: center; gap: 1.5rem; }

:focus-visible { outline: 3px solid #f7b733; outline-offset: 3px; }

@media (max-width: 780px) {
  :root { --header-height: 68px; --category-height: 56px; }

  .site-header { padding: 0 1rem; }
  .brand img { width: 60px; height: 60px; }

  .menu-toggle { display: block; }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 1rem 1.25rem;
    background: var(--green-deep);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .22s ease, visibility .22s ease;
  }

  .main-nav.open { transform: translateX(0); visibility: visible; }
  .main-nav a { padding: 1.1rem .25rem; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 1rem; }
  .main-nav a::after { display: none; }

  .hero {
    align-items: flex-start;
    min-height: 330px;
    padding: 2.2rem 1.25rem 7.5rem;
    background-position: 55% 31%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 25, 21, .84), rgba(3,25,21,.24)),
      linear-gradient(0deg, rgba(3, 25, 21, .65), transparent 65%);
  }

  .hero h1 { font-size: clamp(3.4rem, 17vw, 5rem); }
  .hero-copy { max-width: 17rem; font-size: .9rem; }

  .google-review {
    right: 1.25rem;
    bottom: 1.1rem;
    left: 1.25rem;
    width: auto;
    padding: .8rem;
  }

  .google-mark { width: 34px; height: 34px; }
  .review-copy strong { font-size: .8rem; }
  .review-copy span { font-size: .7rem; }

  .category-scroll { padding-right: 1rem; }
  .category-nav a { flex: 0 0 auto; padding: 0 1.05rem; font-size: .74rem; }
  .category-nav a:first-child { border-left: 0; }

  .menu { padding: 2rem 1.1rem 3.25rem; }
  .menu-intro { grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2.6rem; }
  .menu-intro h2 { font-size: 2.55rem; }
  .menu-intro > p { max-width: 29rem; }
  .menu-intro--interior {
    grid-template-columns: minmax(0, 1fr) 88px;
    gap: .45rem 1rem;
    padding: 1.4rem 1.25rem;
    border-radius: 9px 38px 9px 38px;
    margin-bottom: 2.25rem;
  }
  .menu-intro--interior > div { grid-column: 1; grid-row: 1; }
  .menu-intro--interior > p { grid-column: 1; grid-row: 2; font-size: .76rem; }
  .menu-intro--interior > img { grid-column: 2; grid-row: 1 / span 2; max-height: 92px; }
  .menu-layout { grid-template-columns: minmax(0, 1fr); gap: 3.25rem; }
  .menu-section > header { align-items: end; }
  .menu-section h3 { font-size: 1.72rem; }
  .menu-section > header span { max-width: 9rem; }
  .dish-list li { gap: .75rem; padding: .75rem 0; }
  .dish-list li > span, .dish-list li > strong, .dish-list--described b { font-size: .86rem; }

  .menu-photo { grid-column: 1; }
  .menu-photo--landscape {
    width: calc(100% + 1.1rem);
    height: 310px;
    margin: -.25rem 0 -.25rem -1.1rem;
    border-radius: 0 58px 58px 0;
  }
  .menu-photo--portrait {
    width: 82%;
    height: 430px;
    margin: -.5rem -1.1rem 0 0;
    border-radius: 58px 0 0 58px;
  }

  .daily-menu {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    min-height: 500px;
    margin: 0 0 3rem;
    padding: 3rem 1.1rem;
    background:
      linear-gradient(0deg, rgba(4,27,23,.96) 0%, rgba(4,27,23,.7) 42%, rgba(4,27,23,.12) 76%),
      url("../img/food/sopa-tradicional-real.webp") 58% center / cover no-repeat;
  }

  .origin-map { grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; padding: 3rem 1.1rem; }
  .origin-map__visual { min-height: 430px; border-radius: 65px 12px 65px 12px; }
  .map-pin span { display: none; }
  .origin-map__content h2 { font-size: clamp(3.2rem, 15vw, 4.8rem); }
  .origin-tabs { flex-wrap: nowrap; }
  .origin-tabs button { flex: 1; padding: .65rem .35rem; }
  .origin-story { min-height: 0; }

  .neon-manifesto { min-height: 250px; margin: 3rem 1.1rem 0; padding: 2.3rem 1.4rem; border-radius: 10px 48px 10px 48px; }
  .neon-manifesto strong { font-size: clamp(3.5rem, 19vw, 5.6rem); }

  .daily-menu h2 { font-size: clamp(3.1rem, 15vw, 4.5rem); }
  .daily-menu h2 em { margin-left: .38em; }
  .daily-menu > strong { font-size: 3.1rem; }
  .site-footer { grid-template-columns: auto 1fr; padding: 1.2rem 1rem 5rem; }
  .footer-links { grid-column: 1 / -1; justify-content: flex-start; padding-top: .6rem; border-top: 1px solid rgba(255,255,255,.1); }
  .site-footer p { grid-column: 1 / -1; }

  .whatsapp-float {
    right: .85rem;
    bottom: max(.85rem, env(safe-area-inset-bottom));
    width: 52px;
    min-height: 52px;
    justify-content: center;
    padding: .6rem;
    border-radius: 50%;
  }

  .whatsapp-float span { display: none; }

  .inner-hero {
    min-height: 430px;
    align-items: end;
    padding: 4rem 1.25rem;
    border-radius: 0 0 50px 0;
  }

  .inner-hero--music { background-position: 58% center; }
  .inner-hero--story {
    background-position: 31% center;
    background-size: auto 108%;
  }

  .inner-hero--story::before {
    background: linear-gradient(270deg, rgba(3, 25, 21, .92), rgba(3, 25, 21, .62) 58%, rgba(3, 25, 21, .14));
  }

  .inner-hero--story .inner-hero__content {
    width: min(88%, 28rem);
  }

  .inner-hero--space { background-position: 56% 29%; }
  .inner-hero h1 { font-size: clamp(3.2rem, 15vw, 5rem); }
  .inner-hero__content > p:last-child { max-width: 19rem; font-size: .92rem; }

  .video-feature,
  .story-feature { grid-template-columns: 1fr; gap: 3rem; }
  .video-frame { width: min(92%, 400px); margin: 0 auto; border-radius: 74px 12px 74px 12px; }
  .video-frame video { border-radius: 66px 7px 66px 7px; }
  .story-photo { grid-row: 2; border-radius: 18px 70px 18px 70px; }
  .story-photo img { min-height: 380px; border-radius: 12px 62px 12px 62px; }
  .family-gallery { grid-template-columns: 1fr; grid-auto-rows: 300px; }
  .family-gallery figure:last-child { min-height: 440px; border-radius: 10px 48px 10px 48px; }
  .events-gallery { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .events-gallery figure:first-child { height: 300px; }

  .event-band,
  .roots-band { margin-right: 1.1rem; margin-left: 1.1rem; padding: 2.3rem 1.4rem; }
  .event-band { grid-template-columns: 1fr; align-items: start; gap: 1.5rem; border-radius: 10px 42px 10px 42px; }
  .roots-band { grid-template-columns: 1fr; border-radius: 42px 10px 42px 10px; }
  .roots-intro { margin-bottom: .5rem; }

  .editorial-heading,
  .space-intro { grid-template-columns: 1fr; align-items: start; gap: 1.2rem; }
  .photo-mosaic { grid-template-columns: 1fr; grid-template-rows: 430px 230px 430px 320px; }
  .photo-mosaic figure:first-child { grid-row: auto; border-radius: 52px 10px 52px 10px; }
  .photo-mosaic figure:nth-child(2) { border-radius: 10px 42px 10px 10px; }
  .photo-mosaic figure:nth-child(3) { border-radius: 10px 10px 42px 10px; }
  .photo-mosaic figure:nth-child(4) { grid-column: auto; border-radius: 10px 10px 10px 46px; }

  .space-gallery { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .space-gallery figure:nth-child(n) { grid-column: auto; grid-row: auto; min-height: 0; }
  .space-gallery figure:nth-child(2) { min-height: 420px; }
  .space-gallery figure:nth-child(5) { min-height: 250px; }
  .visit--page { margin-right: 1.1rem; margin-left: 1.1rem; padding: 2.5rem 1.4rem; }
  .visit--page .primary-link { margin-top: .5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .journey-dot { display: none; }
  .benidorm-pulse { animation: none; opacity: .35; transform: none; }
}
