/* Colombian flag */
:root {
  --yellow: #fcd116;
  --blue: #003893;
  --red: #ce1126;
  --cream: #f8efe3;
  --cream-dark: #eddcc8;
  --cream-rgb: 248, 239, 227;
  --cream-dark-rgb: 237, 220, 200;
  --text: #1a2744;
  --text-muted: #4a5568;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0, 56, 147, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 56, 147, 0.12);
  --radius: 12px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --header-height: 4rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--red);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 1000;
  padding: 0.5rem 1rem;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, 68rem);
  margin-inline: auto;
}

.container--split {
  display: grid;
  gap: 2.5rem;
  align-items: start;
  width: min(100% - 2rem, 76rem);
}

@media (min-width: 56rem) {
  .container--split {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

/* Navigation — frosted sticky bar, text links, single CTA */
.site-header {
  position: relative;
  background: var(--cream);
}

.nav {
  position: fixed;
  top: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 1.5rem), 72rem);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 1rem 0.55rem 1.1rem;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: calc(var(--radius) * 1.35);
  box-shadow: 0 8px 28px rgba(26, 39, 68, 0.08);
  min-height: var(--header-height);
}

.nav__left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.nav__questions {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  white-space: nowrap;
  padding: 0.25rem 0.15rem;
  transition: color 0.2s;
}

.nav__questions:hover {
  color: var(--red);
  text-decoration: underline;
}

.menu-item__desc a,
.menu-category__intro a,
.section__text a,
.section__intro a,
.story__body a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.menu-item__desc a:hover,
.menu-category__intro a:hover,
.section__text a:hover,
.section__intro a:hover,
.story__body a:hover {
  color: var(--red);
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  z-index: 2;
}

.nav__logo-img {
  height: 3.25rem;
  width: auto;
  display: block;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.01em;
}

/* Language switch */
.lang-switch {
  display: inline-flex;
  padding: 2px;
  background: rgba(0, 56, 147, 0.05);
  border: 1px solid rgba(0, 56, 147, 0.1);
  border-radius: 999px;
}

.lang-switch__btn {
  padding: 0.3rem 0.55rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  background: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.lang-switch__btn:hover {
  color: var(--blue);
}

.lang-switch__btn.is-active {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 56, 147, 0.22);
}

.nav__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__menu > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.45rem 0.85rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--text);
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition: color 0.2s;
}

.nav__menu > li > a::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.2rem;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav__menu > li > a:hover,
.nav__menu > li > a.is-active {
  color: var(--blue);
  background: none;
  border-color: transparent;
  box-shadow: none;
}

.nav__menu > li > a:hover::after,
.nav__menu > li > a.is-active::after {
  transform: scaleX(1);
}

.nav__item--sub {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: -1rem;
}

.nav__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.nav__caret {
  display: inline-block;
  font-size: 0.65em;
  line-height: 1;
  color: var(--text-muted);
  transition: transform 0.2s ease, color 0.2s ease;
}

.nav__item--sub:hover .nav__caret,
.nav__item--sub:focus-within .nav__caret {
  color: var(--blue);
  transform: rotate(180deg);
}

.nav__sub {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0.45rem 0;
  min-width: 11rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 56, 147, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 0.25rem);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.nav__item--sub:hover .nav__sub,
.nav__item--sub:focus-within .nav__sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav__sub a {
  display: block;
  padding: 0.45rem 1rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  text-decoration: none;
}

.nav__sub a:hover,
.nav__sub a.is-active {
  color: var(--red);
  background: rgba(206, 17, 38, 0.06);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

@media (max-width: 52rem) {
  .nav {
    width: calc(100% - 1.25rem);
    padding: 0.5rem 0.85rem;
  }

  .nav__menu {
    gap: 0;
  }

  .nav__menu > li > a {
    padding: 0.4rem 0.65rem;
    font-size: 0.92rem;
  }
}

@media (max-width: 40rem) {
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: calc(0.85rem + var(--header-height) + 0.4rem);
    left: 0.65rem;
    right: 0.65rem;
    width: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0.85rem;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(0, 56, 147, 0.1);
    border-radius: calc(var(--radius) * 1.25);
    box-shadow: 0 8px 28px rgba(26, 39, 68, 0.1);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
  }

  .nav__menu > li > a {
    justify-content: flex-start;
    width: 100%;
    padding: 0.7rem 0.9rem;
  }

  .nav__menu > li > a::after {
    display: none;
  }

  .nav__right {
    margin-left: auto;
  }

  .nav__menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__item--sub {
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .nav__sub {
    position: static;
    left: auto;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    min-width: 0;
    width: 100%;
    margin-top: 0.25rem;
    padding: 0.2rem 0 0.2rem 0.85rem;
    box-shadow: none;
    border: none;
    border-left: 2px solid rgba(0, 56, 147, 0.15);
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .nav__item--sub .nav__caret {
    transform: none;
  }

  .nav__sub a {
    padding: 0.4rem 0;
  }

  .nav__sub a:hover,
  .nav__sub a.is-active {
    background: none;
  }

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

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

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

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: calc(var(--header-height) + 3rem) 0 4rem;
  overflow: hidden;
  background: var(--cream);
}

.hero__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  height: 6px;
  pointer-events: none;
  z-index: 2;
}

.flag-accent {
  flex: 1;
}

.flag-accent--yellow {
  background: var(--yellow);
}

.flag-accent--blue {
  background: var(--blue);
}

.flag-accent--red {
  background: var(--red);
}

.line-top {
  position: relative;
}

.line-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--yellow);
  pointer-events: none;
  z-index: 1;
}

.line-top--blue::before {
  background: var(--blue);
}

.line-top--red::before {
  background: var(--red);
}

.hero__photo {
  border-radius: calc(var(--radius) * 2);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3 / 2;
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  align-items: center;
  width: min(100% - 2rem, 72rem);
  margin-inline: auto;
  flex: 1;
  align-content: center;
}

@media (min-width: 48rem) {
  .hero__layout {
    grid-template-columns: 1.15fr 1fr;
    gap: 3rem;
  }
}

.hero__content {
  text-align: center;
  padding: 2rem 1.75rem;
  background: rgba(var(--cream-dark-rgb), 0.9);
  border-radius: calc(var(--radius) * 2);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero__brand {
  display: block;
  width: auto;
  height: clamp(6.5rem, 18vw, 10rem);
  margin: 0 auto 1rem;
  filter: drop-shadow(0 4px 14px rgba(26, 39, 68, 0.12));
}

@media (min-width: 48rem) {
  .hero__content {
    text-align: left;
  }

  .hero__brand {
    margin-left: 0;
    margin-right: auto;
  }
}

.hero__location {
  margin: 0 0 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.hero__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 11vw, 5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--blue);
}

.hero__tagline {
  margin: 0 0 1.25rem;
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  font-style: italic;
  color: var(--text);
}

.hero__availability {
  margin: 0 0 1.75rem;
  padding: 0.75rem 1rem;
  background: var(--yellow);
  border-radius: var(--radius);
  font-size: 0.98rem;
  color: var(--text);
}

.hero__availability em {
  font-style: normal;
  font-weight: 600;
  color: var(--blue);
}

.hero__area {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0, 56, 147, 0.35);
}

.btn--primary:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 56, 147, 0.4);
}

.btn--whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn--whatsapp:hover {
  color: var(--white);
  background: #1fb855;
  transform: translateY(-2px);
}

/* Sections */
.section {
  padding: 4.5rem 0;
  background: var(--cream);
}

.section--food,
.section--contact {
  background: var(--cream-dark);
}

.section--about {
  background: var(--cream);
}

.section--menu {
  padding: 0;
  background: var(--cream);
}

.menu-note-wrap {
  padding: 2.5rem 0 4.5rem;
  background: var(--cream);
}

.section__header {
  margin-bottom: 2.5rem;
}

.section__header--center {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.section__label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

.section h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 600;
  color: var(--blue);
  line-height: 1.15;
}

.section__intro {
  margin: 0;
  color: var(--text-muted);
  max-width: 40rem;
}

.section__header--center .section__intro {
  margin-inline: auto;
}

/* Section photos */
.section-photo {
  overflow: hidden;
  border-radius: calc(var(--radius) * 1.5);
  box-shadow: var(--shadow-lg);
}

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

.section-photo--tall {
  aspect-ratio: 4 / 5;
}

@media (min-width: 56rem) {
  .section--food .container--split {
    display: block;
  }

  .section--food .section-photo--tall {
    float: left;
    width: min(42%, 22rem);
    margin: 0 2.25rem 1.25rem 0;
    aspect-ratio: 4 / 5;
    min-height: unset;
  }

  .section--food .section__text {
    overflow: visible;
  }

  .section--food .container--split::after {
    content: "";
    display: table;
    clear: both;
  }
}

/* Kitchen crew */
.crew {
  margin-top: 3rem;
}

.crew__title {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  color: var(--blue);
  text-align: center;
}

.crew-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 40rem) {
  .crew-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.crew-photo {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
}

.crew-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: calc(var(--radius) * 1.25);
  box-shadow: var(--shadow);
}

.crew-photo__caption {
  font-weight: 600;
  color: var(--blue);
}

.container--split-reverse {
  align-items: stretch;
}

@media (min-width: 56rem) {
  .container--split-reverse {
    direction: rtl;
  }

  .container--split-reverse > * {
    direction: ltr;
  }
}

/* Menu */
.menu-categories {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.menu-category {
  padding: 3.25rem 0;
  background: var(--cream-dark);
}

.menu-category:nth-child(even) {
  background: var(--cream);
}

.menu-category .section__header {
  margin-bottom: 2rem;
}

.menu-category__title {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.5vw, 1.75rem);
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.15;
}

.menu-category__intro {
  margin: -0.75rem 0 1.75rem;
  max-width: 42rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.menu-subsection {
  margin-top: 2.5rem;
  padding-top: 0.25rem;
}

.menu-subsection__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.2;
}

.menu-subsection .menu-category__intro {
  margin-top: 0;
}

.menu-category__media {
  margin: 0 0 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.menu-category__media--placeholder {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(252, 209, 22, 0.25), rgba(0, 56, 147, 0.12) 45%, rgba(206, 17, 38, 0.15)),
    var(--cream-dark);
  box-shadow: none;
  border: 1px dashed rgba(0, 56, 147, 0.28);
}

.menu-photo-placeholder {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}

.menu-category__media video,
.menu-category__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-cross-link {
  margin: 1.5rem 0 0;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
}

.menu-cross-link a {
  color: var(--red);
  text-decoration: none;
}

.menu-cross-link a:hover {
  text-decoration: underline;
}

.menu-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.menu-item {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0, 56, 147, 0.1);
}

.menu-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.menu-item--photo {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1.25rem;
  align-items: center;
}

.menu-item__photo {
  width: 8rem;
  height: 8rem;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.menu-item__photo--placeholder {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background:
    linear-gradient(135deg, rgba(252, 209, 22, 0.25), rgba(0, 56, 147, 0.12) 45%, rgba(206, 17, 38, 0.15)),
    var(--cream-dark);
  box-shadow: none;
  border: 1px dashed rgba(0, 56, 147, 0.28);
  text-align: center;
  padding: 0.5rem;
}

.menu-item__body {
  min-width: 0;
}

@media (min-width: 30rem) {
  .menu-item--photo {
    grid-template-columns: 11rem 1fr;
    gap: 1.75rem;
  }

  .menu-item__photo {
    width: 11rem;
    height: 11rem;
  }
}

.menu-item__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.35rem;
}

.menu-item__name {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.menu-item__price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
}

.menu-item__desc {
  margin: 0 0 0.25rem;
  font-size: 0.98rem;
  color: var(--text);
}

.menu-item__ingredients {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
}

.menu-catering-note {
  margin: 2rem 0 0;
  padding: 1rem 1.25rem;
  background: var(--yellow);
  border-radius: var(--radius);
  font-size: 0.98rem;
  text-align: center;
}

.menu-catering-note a {
  font-weight: 600;
}

/* Stories */
.stories {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.story {
  display: grid;
  gap: 1.5rem;
  padding: 1.75rem;
  background: var(--white);
  border-radius: calc(var(--radius) * 1.25);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--blue);
}

.story--secondary {
  border-left-color: var(--red);
}

@media (min-width: 40rem) {
  .story {
    grid-template-columns: 10rem 1fr;
    align-items: start;
    gap: 1.75rem;
    padding: 2rem;
  }

  .story--primary {
    grid-template-columns: 12rem 1fr;
  }
}

.story__media {
  overflow: hidden;
  border-radius: calc(var(--radius) * 1.1);
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow);
}

.story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story__name {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 600;
  color: var(--blue);
  line-height: 1.15;
}

.story__role {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}

.story__clip {
  position: relative;
  max-height: 9.5rem;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.story--primary .story__clip {
  max-height: 14rem;
}

.story--secondary .story__clip {
  max-height: none;
  overflow: visible;
}

.story--secondary .story__clip::after {
  display: none;
}

.story__clip::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4.5rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--white) 90%);
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.story.is-expanded .story__clip {
  max-height: none;
}

.story.is-expanded .story__clip::after {
  opacity: 0;
}

.story__body {
  color: var(--text);
}

.story__body p {
  margin: 0 0 1rem;
}

.story__body p:last-child {
  margin-bottom: 0;
}

.story__more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
  padding: 0;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--red);
  cursor: pointer;
}

.story__more:hover {
  color: var(--blue);
}

.story__more-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

.story.is-expanded .story__more-arrow {
  transform: rotate(180deg);
}

/* Sweet Niñas — pastel accents on Empaniñas cream background */
.page-sweet {
  --yellow: #f5c99b;
  --blue: #8ec5e8;
  --red: #e8886a;
  --green: #9dcf9a;
  --peach: #f5c99b;
  --coral: #e8886a;
  --text: #1a2744;
  --text-muted: #4a5568;
  --shadow: 0 4px 24px rgba(232, 136, 106, 0.1);
  --shadow-lg: 0 12px 40px rgba(142, 197, 232, 0.14);
}

.page-sweet .hero__title {
  color: var(--coral);
}

.page-sweet .btn--primary {
  background: var(--coral);
}

.page-sweet .btn--primary:hover {
  background: var(--blue);
}

.page-sweet .story--primary {
  border-left-color: var(--coral);
}

.page-sweet .story--secondary {
  border-left-color: var(--green);
}

.page-sweet .flag-accent--peach {
  background: var(--peach);
}

.page-sweet .flag-accent--blue {
  background: var(--blue);
}

.page-sweet .flag-accent--green {
  background: var(--green);
}

.page-sweet .flag-accent--coral {
  background: var(--coral);
}

.page-sweet .line-top--green::before {
  background: var(--green);
}

.page-sweet .line-top--coral::before {
  background: var(--coral);
}

.page-sweet .line-top--blue::before {
  background: var(--blue);
}

.page-sweet .menu-cross-link a {
  color: var(--coral);
}

.page-sweet .location-banner {
  border-left-color: var(--green);
}

.page-sweet .contact-box {
  border-top-color: var(--coral);
}

.page-sweet .site-footer {
  background: var(--blue);
}

.page-sweet .menu-category__media--placeholder,
.page-sweet .menu-item__photo--placeholder {
  background:
    linear-gradient(135deg, rgba(245, 201, 155, 0.45), rgba(142, 197, 232, 0.25) 40%, rgba(157, 207, 154, 0.3) 70%, rgba(232, 136, 106, 0.22)),
    var(--cream-dark);
  border-color: rgba(232, 136, 106, 0.35);
}

/* Location */
.location-banner {
  max-width: 36rem;
  margin: 0 auto 1.75rem;
  padding: 1.5rem 1.75rem;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--yellow);
}

.location-banner p {
  margin: 0.35rem 0;
  font-size: 0.98rem;
}

.location-banner__island {
  font-weight: 600;
  font-size: 1.05rem !important;
  color: var(--blue) !important;
}

.location-banner__note {
  margin-top: 0.75rem !important;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Contact */
.contact-box {
  max-width: 32rem;
  margin-inline: auto;
  padding: 2.5rem;
  text-align: center;
  background: var(--white);
  border-radius: calc(var(--radius) * 1.5);
  box-shadow: var(--shadow-lg);
  border-top: 5px solid var(--blue);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 28rem) {
  .contact-actions {
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    gap: 2rem;
  }
}

.contact-action {
  flex: 1;
  min-width: 10rem;
}

.contact-box__label {
  margin: 0 0 0.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.contact-box__phone {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}

.contact-box__phone:hover {
  color: var(--red);
}

.contact-box__hours {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 56, 147, 0.1);
}

.contact-box__hours h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--blue);
}

.contact-box__hours p {
  margin: 0.25rem 0;
}

.contact-box__note {
  margin-top: 0.75rem !important;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  padding: 2.5rem 0;
  background: var(--blue);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
}

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

.site-footer__inner p {
  margin: 0.35rem 0;
  font-size: 0.95rem;
}

.site-footer__brand {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--yellow) !important;
}

.site-footer__location {
  font-size: 0.88rem !important;
  opacity: 0.85;
}

.site-footer__copy {
  margin-top: 1rem !important;
  font-size: 0.85rem !important;
  opacity: 0.7;
}
