:root {
  --azul: #0047ab;
  --azul-bright: #0f72cf;
  --azul-deep: #082b63;
  --azul-night: #031634;
  --white: #ffffff;
  --white-soft: #f4f8ff;
  --market-red: #9f2d20;
  --sun-gold: #f4c65f;
  --maiz: #f7e2a1;
  --leaf: #2f7450;
  --sand: #efc479;
  --stone: #d9d3c5;
  --ink: #0f2747;
  --muted: #5a6c82;
  --line: rgba(0, 71, 171, 0.18);
  --shadow: 0 24px 60px rgba(3, 22, 52, 0.2);
  --photo-volcano: url("images/san-miguel-volcano.webp");
  --photo-coast: url("images/puerto-la-libertad-malecon.webp");
  --photo-cojutepeque: url("images/cojutepeque-entrada.webp");
  --photo-centro: url("images/plaza-barrios-san-salvador.webp");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.is-section-transitioning {
  scroll-behavior: auto;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 248, 255, 0.94)),
    repeating-linear-gradient(135deg, rgba(0, 71, 171, 0.06) 0 2px, transparent 2px 18px);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

body.is-menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(3, 22, 52, 0.84);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  gap: 20px;
}

.brand {
  text-decoration: none;
}

.brand__name {
  display: block;
  font-family: Cinzel, Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand__meta {
  display: block;
  color: var(--maiz);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-toggle {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.language-toggle:hover {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  border-radius: 999px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.section,
.menu-section,
.feature-band {
  transition:
    opacity 600ms cubic-bezier(0.42, 0, 0.58, 1),
    transform 600ms cubic-bezier(0.42, 0, 0.58, 1);
  will-change: opacity, transform;
}

.section-transition-enter {
  opacity: 0.35;
  transform: translateY(10%);
}

.section-transition-enter.section-transition-active {
  opacity: 1;
  transform: translateY(0);
}

.section-transition-exit {
  opacity: 0.56;
  transform: translateY(-10%);
}

.section-transition-settle {
  opacity: 1;
  transform: translateY(0);
}

.hero,
.page-hero,
.feature-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero,
.page-hero {
  box-shadow: inset 0 -110px 90px rgba(244, 248, 255, 0.16);
}

.hero {
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 142px 24px 96px;
}

.page-hero {
  min-height: 54vh;
  display: grid;
  align-items: end;
  padding: 140px 24px 72px;
}

.parallax-section::before {
  position: absolute;
  inset: -80px 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(3, 22, 52, 0.9), rgba(0, 71, 171, 0.52), rgba(244, 198, 95, 0.18)),
    var(--photo-volcano);
  background-position: center;
  background-size: cover;
  content: "";
  transform: translate3d(0, 0, 0);
}

.parallax-active .parallax-section::before {
  background-attachment: fixed;
}

.parallax-section::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(3, 22, 52, 0.08), rgba(3, 22, 52, 0.76)),
    radial-gradient(circle at 18% 22%, rgba(244, 198, 95, 0.2), transparent 34%);
  content: "";
}

.parallax-section--about::before {
  background-image:
    linear-gradient(90deg, rgba(3, 22, 52, 0.9), rgba(0, 71, 171, 0.48), rgba(47, 116, 80, 0.22)),
    var(--photo-centro);
}

.parallax-section--menu::before {
  background-image:
    linear-gradient(90deg, rgba(3, 22, 52, 0.9), rgba(0, 71, 171, 0.56), rgba(159, 45, 32, 0.2)),
    var(--photo-cojutepeque);
}

.parallax-section--volcano::before {
  background-image:
    linear-gradient(90deg, rgba(3, 22, 52, 0.86), rgba(0, 71, 171, 0.5), rgba(27, 185, 210, 0.28)),
    var(--photo-coast);
}

.hero__content,
.page-hero__content,
.feature-band__content {
  position: relative;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.hero__content,
.page-hero__content {
  max-width: 800px;
}

.hero__content {
  margin-left: max(24px, calc((100vw - 1120px) / 2));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--maiz);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 900px;
  font-size: 6.2rem;
}

h2 {
  font-size: 3.25rem;
}

h3 {
  font-size: 1.05rem;
}

p {
  margin: 16px 0 0;
}

.hero__lede,
.page-hero p,
.feature-band p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.93);
  font-size: 1.2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero__actions::after,
body[data-page="about"] .page-hero__content::after {
  display: block;
  width: min(360px, 72vw);
  height: 42px;
  margin-top: 20px;
  background:
    radial-gradient(80% 120% at 50% 0, rgba(244, 198, 95, 0.24), transparent 62%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.54), transparent);
  clip-path: ellipse(50% 42% at 50% 0);
  content: "";
  opacity: 0.9;
}

.hero__actions::after {
  flex-basis: 100%;
}

body[data-page="about"] .page-hero__content::after {
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--white);
  color: var(--azul-deep);
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.66);
  color: var(--white);
}

.button--ghost-dark {
  border: 1px solid var(--line);
  color: var(--azul-deep);
}

.button--ghost-dark:hover {
  border-color: var(--azul);
  background: var(--azul);
  color: var(--white);
}

.section {
  position: relative;
  overflow: hidden;
  padding: 88px 24px;
}

.hero + .section,
.page-hero + .section {
  margin-top: -34px;
  padding-top: 118px;
}

.feature-band + .section {
  margin-top: -38px;
  padding-top: 116px;
  background:
    linear-gradient(180deg, rgba(244, 248, 255, 0.88) 0%, rgba(255, 255, 255, 0.98) 36%, rgba(244, 248, 255, 0.96) 100%),
    linear-gradient(90deg, rgba(0, 71, 171, 0.06), transparent 60%);
}

.section--intro {
  padding-bottom: 126px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 255, 0.98) 72%, rgba(3, 22, 52, 0.9) 100%),
    linear-gradient(90deg, rgba(0, 71, 171, 0.08), transparent 55%);
}

.section--journey {
  margin-top: -52px;
  padding-top: 118px;
  padding-bottom: 128px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(3, 22, 52, 0.9) 0%, var(--azul-night) 18%, var(--azul-deep) 78%, rgba(8, 43, 99, 0.88) 100%);
  color: var(--white);
}

.section--journey::before,
.section--journey::after,
.section--gallery::before,
.section--deep::before {
  position: absolute;
  left: 0;
  width: 100%;
  pointer-events: none;
  content: "";
}

.section--journey::before {
  top: 0;
  height: 104px;
  background:
    radial-gradient(140% 70px at 50% 0, rgba(255, 255, 255, 0.24), transparent 72%),
    linear-gradient(180deg, rgba(244, 248, 255, 0.18), transparent);
}

.section--journey::after {
  bottom: 0;
  height: 110px;
  background:
    radial-gradient(120% 92px at 50% 100%, rgba(255, 255, 255, 0.16), transparent 70%),
    linear-gradient(180deg, transparent, rgba(6, 42, 92, 0.58));
}

.section--gallery {
  margin-top: -42px;
  padding-top: 122px;
  background:
    linear-gradient(180deg, rgba(8, 43, 99, 0.74) 0%, rgba(244, 248, 255, 0.98) 22%, rgba(255, 255, 255, 0.98) 100%),
    var(--photo-coast);
  background-size: cover;
  background-position: center;
}

.section--gallery::before {
  top: 0;
  height: 92px;
  background:
    radial-gradient(110% 78px at 50% 0, rgba(8, 43, 99, 0.64), transparent 74%),
    linear-gradient(180deg, rgba(8, 43, 99, 0.38), transparent);
}

.section--deep {
  margin-top: -36px;
  padding-top: 118px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(3, 22, 52, 0.94) 22%, rgba(8, 43, 99, 0.98) 100%),
    var(--photo-cojutepeque);
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.section--deep::before {
  top: 0;
  height: 96px;
  background:
    radial-gradient(120% 80px at 50% 0, rgba(255, 255, 255, 0.5), transparent 74%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent);
}

.section--owner {
  margin-top: -28px;
  padding-top: 112px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.96) 52%, rgba(247, 226, 161, 0.28)),
    linear-gradient(90deg, rgba(159, 45, 32, 0.06), transparent 58%);
}

.section__inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p {
  color: inherit;
}

.intro-grid,
.split-layout,
.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  align-items: center;
  gap: 64px;
}

.split-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
}

.location-grid {
  grid-template-columns: minmax(320px, 500px) minmax(0, 1fr);
}

.photo-panel {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--azul-night);
  box-shadow: var(--shadow);
}

.photo-panel picture,
.culture-gallery picture {
  display: block;
  width: 100%;
}

.photo-panel img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-panel--tall picture {
  height: 100%;
}

.photo-panel--tall img {
  aspect-ratio: 4 / 3;
}

.photo-panel--compact {
  aspect-ratio: 1 / 1;
  max-width: 360px;
  justify-self: end;
}

.photo-panel--compact img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-panel figcaption {
  padding: 14px 16px;
  color: var(--white-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.journey-grid,
.culture-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.journey-card,
.culture-gallery figure {
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.journey-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.culture-gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.journey-card h3,
.journey-card p,
.culture-gallery figcaption {
  padding-inline: 18px;
}

.journey-card h3 {
  margin-top: 18px;
  color: var(--azul-deep);
}

.journey-card p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.94rem;
}

.culture-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.culture-gallery figcaption {
  flex: 1;
  padding-block: 16px 18px;
  color: var(--azul-deep);
  font-weight: 800;
}

body[data-page="about"] .culture-gallery picture {
  aspect-ratio: 16 / 10;
  background: var(--azul-night);
}

body[data-page="about"] .photo-panel--tall {
  min-height: 360px;
}

body[data-page="about"] .photo-panel--tall img {
  min-height: 360px;
}

.feature-band {
  display: grid;
  align-items: center;
  margin-top: -48px;
  min-height: 520px;
  padding: 132px 24px 108px;
  box-shadow:
    inset 0 96px 86px rgba(8, 43, 99, 0.52),
    inset 0 -96px 88px rgba(255, 255, 255, 0.14);
}

.feature-band::after {
  background:
    linear-gradient(180deg, rgba(3, 22, 52, 0.08), rgba(3, 22, 52, 0.66) 54%, rgba(244, 248, 255, 0.3)),
    radial-gradient(circle at 18% 22%, rgba(244, 198, 95, 0.2), transparent 34%);
}

.feature-band__content {
  max-width: 720px;
}

.story-stack {
  display: grid;
  gap: 16px;
}

.story-stack article {
  border-left: 4px solid var(--azul-bright);
  padding: 18px 0 18px 22px;
}

.story-stack h3 {
  color: var(--azul);
}

.owner-board {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 32px 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.96)),
    var(--photo-centro);
  background-position: center;
  background-size: cover;
  box-shadow: 0 18px 48px rgba(3, 22, 52, 0.12);
}

.owner-board__intro {
  align-self: start;
}

.owner-board__intro .eyebrow {
  color: var(--market-red);
}

.owner-board__intro h2 {
  color: var(--azul-deep);
}

.owner-board__copy {
  align-self: center;
}

.owner-board__copy p {
  color: var(--muted);
  font-size: 1.02rem;
}

.owner-board__notes {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.owner-board__notes article {
  border-left: 4px solid var(--market-red);
  border-radius: 0 8px 8px 0;
  padding: 16px 16px 16px 18px;
  background: rgba(244, 248, 255, 0.88);
}

.owner-board__notes span {
  color: var(--azul-deep);
  font-weight: 900;
}

.owner-board__notes p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

address {
  margin-top: 18px;
  font-style: normal;
  font-size: 1.24rem;
  font-weight: 700;
}

address a {
  color: var(--maiz);
}

.visit-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 44px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 255, 0.96)),
    var(--photo-centro);
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 42px rgba(3, 22, 52, 0.12);
}

.phone {
  color: var(--azul);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
}

.menu-context {
  width: min(1180px, calc(100% - 32px));
  margin: -58px auto 26px;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.menu-context article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 42px rgba(3, 22, 52, 0.1);
}

.menu-context span {
  color: var(--market-red);
  font-size: 0.8rem;
  font-weight: 900;
}

.menu-context h2 {
  margin-top: 8px;
  color: var(--azul-deep);
  font-size: 1.05rem;
}

.menu-context p {
  color: var(--muted);
  font-size: 0.9rem;
}

.menu-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 96px;
  position: relative;
  z-index: 3;
}

.menu-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(90deg, rgba(3, 22, 52, 0.95), rgba(8, 43, 99, 0.94)),
    var(--photo-coast);
  background-size: cover;
  box-shadow: var(--shadow);
}

.menu-jump a {
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.menu-jump a:hover {
  background: var(--white);
  color: var(--azul-deep);
}

[id] {
  scroll-margin-top: 160px;
}

.menu-section {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 48px rgba(3, 22, 52, 0.1);
  scroll-margin-top: 96px;
}

.menu-section:nth-of-type(3n + 1) {
  border-top: 5px solid var(--azul-bright);
}

.menu-section:nth-of-type(3n + 2) {
  border-top: 5px solid var(--market-red);
}

.menu-section:nth-of-type(3n) {
  border-top: 5px solid var(--sand);
}

.menu-section h2 {
  padding-bottom: 18px;
  border-bottom: 2px solid rgba(0, 71, 171, 0.22);
  color: var(--azul-deep);
  font-size: 2.45rem;
}

.menu-subsection {
  margin-top: 28px;
}

.menu-subsection > h3 {
  color: var(--azul);
  font-size: 1.16rem;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin-top: 12px;
}

.menu-list--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.menu-item {
  display: grid;
  align-items: start;
  min-height: 62px;
  border-bottom: 1px dashed rgba(0, 71, 171, 0.22);
  padding: 16px 0;
}

.menu-item h3 {
  font-family: Inter, Arial, sans-serif;
  color: var(--azul-night);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}

.menu-item p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  background:
    linear-gradient(135deg, rgba(3, 22, 52, 0.98), rgba(8, 43, 99, 0.98)),
    var(--photo-centro);
  background-size: cover;
  color: var(--white);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer a {
  color: var(--maiz);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .language-toggle,
  .section,
  .menu-section,
  .feature-band {
    transition: none;
  }

  .section-transition-enter,
  .section-transition-enter.section-transition-active,
  .section-transition-exit,
  .section-transition-settle {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1020px) {
  h1 {
    font-size: 4.8rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .journey-grid,
  .menu-context {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .parallax-active .parallax-section::before {
    background-attachment: scroll;
  }

  .site-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    min-height: 66px;
    gap: 8px;
  }

  .brand {
    min-width: 0;
  }

  .brand__name {
    max-width: 100%;
    font-size: 1.08rem;
    line-height: 1.15;
  }

  .brand__meta {
    font-size: 0.7rem;
  }

  .nav-toggle {
    display: flex;
    order: 3;
  }

  .site-actions {
    display: contents;
  }

  .site-nav {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(3, 22, 52, 0.98);
    padding: 12px 20px 20px;
    transform: translateY(-120%);
    transition: transform 180ms ease;
    z-index: 19;
  }

  .site-header.nav-is-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    border-radius: 0;
    padding: 14px 4px;
  }

  .language-toggle {
    order: 2;
    min-height: 40px;
    padding: 8px 11px;
  }

  .hero {
    min-height: 86vh;
    padding: 128px 20px 68px;
  }

  .page-hero {
    min-height: 48vh;
    padding: 120px 20px 56px;
  }

  .hero__content {
    margin-left: auto;
  }

  .section {
    padding: 64px 20px;
  }

  .hero + .section,
  .page-hero + .section,
  .feature-band + .section {
    margin-top: -24px;
    padding-top: 86px;
  }

  .section--intro {
    padding-bottom: 92px;
  }

  .section--journey {
    margin-top: -34px;
    padding-top: 86px;
    padding-bottom: 94px;
  }

  .section--gallery,
  .section--deep,
  .section--owner {
    margin-top: -28px;
    padding-top: 84px;
  }

  .feature-band {
    margin-top: -32px;
    padding: 92px 20px 82px;
  }

  .intro-grid,
  .split-layout,
  .location-grid,
  .owner-board,
  .visit-card,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .owner-board {
    padding: 30px;
  }

  .owner-board__notes {
    grid-template-columns: 1fr;
  }

  .photo-panel--compact {
    max-width: none;
    justify-self: stretch;
  }

  .visit-card {
    display: grid;
    padding: 30px;
  }

  .culture-gallery,
  .menu-list,
  .menu-list--compact {
    grid-template-columns: 1fr;
  }

  body[data-page="about"] .photo-panel--tall,
  body[data-page="about"] .photo-panel--tall img {
    min-height: 280px;
  }
}

@media (max-width: 560px) {
  .site-header__inner {
    width: min(100% - 24px, 1120px);
  }

  .brand__name {
    font-size: 0.95rem;
  }

  .brand__meta {
    font-size: 0.66rem;
  }

  .language-toggle {
    min-height: 36px;
    padding: 7px 9px;
    font-size: 0.76rem;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  h1 {
    font-size: 2.7rem;
  }

  h2,
  .menu-section h2 {
    font-size: 2.05rem;
  }

  .hero__lede,
  .page-hero p,
  .feature-band p {
    font-size: 1.05rem;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions::after,
  body[data-page="about"] .page-hero__content::after {
    width: min(260px, 68vw);
    height: 32px;
    margin-top: 14px;
  }

  .button {
    width: 100%;
  }

  .journey-grid,
  .menu-context,
  .menu-list,
  .menu-list--compact {
    grid-template-columns: 1fr;
  }

  .menu-shell,
  .menu-context {
    width: min(100% - 20px, 1180px);
  }

  .menu-shell {
    margin-bottom: 64px;
  }

  .menu-jump {
    max-height: 230px;
    overflow: auto;
  }

  .menu-section {
    padding: 24px;
  }

  .phone {
    font-size: 2.2rem;
  }
}

@media (min-width: 400px) and (max-width: 560px) {
  .journey-grid,
  .menu-context {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-list--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.reveal,
.reveal-left,
.reveal-right {
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
