/**
 * Alimente theme layout + cream paper menu (Outback-style grid).
 * Brand accents stay sage; menu sheet uses cream paper surface.
 */

/* —— Header / footer —— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  height: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  background: rgba(255, 255, 255, 0.92);
  /* Do NOT put backdrop-filter on .site-header — it creates a containing
     block for position:fixed descendants, clipping .nav-mobile to the bar. */
  border-bottom: 1px solid transparent;
  overflow: visible;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* WP admin bar */
body.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

.site-header.is-scrolled:not(.is-open) {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.98);
}

/* Open menu: solid white sheet — easy contrast for dark logo + links */
.site-header.is-open {
  border-bottom-color: var(--line);
  background: #fff;
}

.site-header.is-open::before {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header.is-open .logo .logo__img--dark {
  visibility: visible;
  display: block;
}

.site-header.is-open .logo .logo__img--light {
  display: none !important;
}

.site-header.is-open .burger {
  border-color: var(--line);
  background: #fff;
}

.site-header.is-open .burger span {
  background: var(--text);
}

.site-header.is-open .burger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.site-header.is-open .burger span:nth-child(2) {
  opacity: 0;
}
.site-header.is-open .burger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Home: same bar metrics, transparent over hero until scroll/open */
.site-header--overlay:not(.is-scrolled):not(.is-open) {
  background: transparent;
  border-bottom-color: transparent;
}

.site-header--overlay:not(.is-scrolled):not(.is-open)::before {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header--overlay:not(.is-scrolled):not(.is-open) .nav-desktop a {
  color: rgba(255, 255, 255, 0.82);
}

.site-header--overlay:not(.is-scrolled):not(.is-open) .nav-desktop a:hover,
.site-header--overlay:not(.is-scrolled):not(.is-open) .nav-desktop a.is-active {
  color: #fff;
}

.site-header--overlay:not(.is-scrolled):not(.is-open) .burger {
  border-color: rgba(255, 255, 255, 0.35);
}

.site-header--overlay:not(.is-scrolled):not(.is-open) .burger span {
  background: #fff;
}

.site-header__inner {
  position: relative;
  z-index: 2;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 2;
  flex-shrink: 0;
}

.logo__img {
  display: block;
  height: 1.45rem;
  width: auto;
  max-width: min(168px, 46vw);
  object-fit: contain;
}

/* Only one mark visible — .logo__img must not override this (same specificity). */
.logo .logo__img--light {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

.site-header--overlay:not(.is-scrolled):not(.is-open) .logo .logo__img--dark {
  visibility: hidden;
}

.site-header--overlay:not(.is-scrolled):not(.is-open) .logo .logo__img--light {
  display: block;
}

@media (min-width: 768px) {
  .logo__img { height: 1.65rem; max-width: 200px; }
}

.nav-desktop {
  display: none;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 0.05rem;
}

.nav-desktop a {
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  white-space: nowrap;
  padding: 0.55rem 0.5rem;
  transition: color 0.25s var(--ease);
}

.nav-desktop a:hover,
.nav-desktop a.is-active { color: var(--text); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.header-cta {
  min-height: 2.35rem;
  min-width: 0;
  padding: 0.55rem 1rem;
  width: auto;
}

.burger {
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  background: transparent;
  display: inline-grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.burger span {
  display: block;
  width: 16px;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-mobile {
  position: fixed;
  top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: #fff;
  padding: 1rem var(--pad) calc(2rem + env(safe-area-inset-bottom, 0px));
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-mobile[hidden] {
  display: none !important;
}

.nav-mobile nav { display: grid; }

.nav-mobile a:not(.dodger-blue-button) {
  font-size: 1.125rem;
  border-bottom: 1px solid var(--line);
  padding: 1.05rem 0;
  color: var(--text);
}

.nav-mobile a.is-active {
  color: var(--text);
  font-weight: 700;
}
.nav-mobile .dodger-blue-button { margin-top: 1.25rem; width: 100%; }

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

body:not(.home-body) .site-main {
  padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
}

.site-footer {
  background: linear-gradient(180deg, #f7faf7 0%, #eef4ef 100%);
  color: var(--text);
  border-top: 1px solid rgba(4, 33, 31, 0.08);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  padding: clamp(2.75rem, 7vw, 4.5rem) 0 clamp(2rem, 5vw, 3rem);
  text-align: center;
}

.site-footer__logo {
  display: inline-flex;
}

.site-footer__logo img {
  width: clamp(8.5rem, 18vw, 11rem);
  height: auto;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.75rem;
  max-width: 46rem;
}

.site-footer__nav a {
  color: rgba(4, 33, 31, 0.72);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.2rem 0.15rem;
  transition: color 0.2s var(--ease);
}

.site-footer__nav a:hover {
  color: var(--text);
}

.site-footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: rgba(4, 33, 31, 0.7);
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}

.site-footer__social a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.site-footer__meta {
  border-top: 1px solid rgba(4, 33, 31, 0.1);
  padding: 1.5rem 0 calc(1.75rem + var(--safe-bottom));
  text-align: center;
}

.site-footer__copy {
  margin: 0;
  color: rgba(4, 33, 31, 0.55);
  font-size: 0.875rem;
}

.site-footer__credit {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4em 0.5em;
  margin: 0.55rem 0 0;
  color: rgba(4, 33, 31, 0.42);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.site-footer__credit-amp {
  letter-spacing: 0.06em;
}

.site-footer__credit a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  letter-spacing: 0.03em;
}

.site-footer__credit a:hover {
  color: rgba(4, 33, 31, 0.7);
}

/* —— Home hero & sections —— */
.hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 100svh;
  margin: 0;
  margin-top: calc(-1 * (var(--header-h) + env(safe-area-inset-top, 0px)));
  padding: 0;
  background-color: #04211f;
  background-image: var(--hero-image);
  background-position: center 22%;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  overflow: clip;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(4, 33, 31, 0.82) 0%,
      rgba(4, 33, 31, 0.58) 28%,
      rgba(4, 33, 31, 0.22) 48%,
      transparent 68%
    ),
    linear-gradient(180deg, rgba(4, 33, 31, 0.38) 0%, transparent 26%, transparent 78%, rgba(4, 33, 31, 0.32) 100%);
}

.hero .banner {
  position: relative;
  z-index: 1;
}

.home-body .hero {
  margin-top: 0;
}

.home-body .site-main {
  padding-top: 0;
}

.banner { flex: 1; display: flex; align-items: center; min-height: 0; width: 100%; padding-inline: 0; }
/* Full-bleed text row: do not inherit .main-content 80% inset on the media plane */
.banner-content.main-content,
.banner-content {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: var(--pad);
  display: flex;
}
.banner-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.banner-inner {
  color: #fff;
  text-align: left;
  padding: clamp(5.5rem, 12vh, 7.5rem) 0 clamp(2rem, 5vh, 3.5rem);
  max-width: min(34rem, 100%);
  margin-inline: 0;
  text-shadow: 0 1px 24px rgba(4, 33, 31, 0.35);
}

.hero-eyebrow {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.brand-mark {
  margin: 0 0 1.15rem;
}

.brand-mark__img {
  display: block;
  width: min(24rem, 86vw);
  height: auto;
  margin-inline: 0;
}

.hero-heading {
  color: #fff;
  text-transform: none;
  margin: 0 0 0.85rem;
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.hero-support {
  max-width: 28rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.6;
  letter-spacing: 0.06em;
}

.section-block--soft { background: var(--bg-soft); }

.section-content {
  padding-top: clamp(3.75rem, 12vw, 8rem);
  padding-bottom: clamp(3.75rem, 12vw, 8rem);
}

.section-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.section-text,
.tips-image { width: min(100%, 48%); flex: 1 1 48%; }

.section-text h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: 0.06em;
}

.tips-image img { width: 100%; height: auto; }

.location-home {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: clamp(22rem, 48vw, 32rem);
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #04211f;
  background-image: var(--location-image);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: clip;
}

.location-home__scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(4, 33, 31, 0.55) 0%,
      rgba(4, 33, 31, 0.42) 40%,
      rgba(4, 33, 31, 0.62) 100%
    ),
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(4, 33, 31, 0.35), rgba(4, 33, 31, 0.55));
}

.location-home__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: clamp(3.5rem, 10vw, 6.5rem);
  padding-bottom: clamp(3.5rem, 10vw, 6.5rem);
  text-align: center;
}

.location-home__text {
  max-width: 36rem;
  margin-inline: auto;
}

.location-home__text .white-heading {
  margin: 0 0 1rem;
  color: #fff;
}

.white-heading {
  color: #fff;
}

.location-home__lead {
  margin: 0 auto 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.7;
}

.location-home__text .btn-group {
  justify-content: center;
}

.reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(3rem, 7vw, 5rem);
}

.reason__icon {
  display: flex;
  justify-content: center;
  margin: 0 0 0.85rem;
  color: var(--sage);
}

.reason__icon svg {
  display: block;
  flex-shrink: 0;
}

.reason h3 { margin: 0 0 0.75rem; font-size: 1.35rem; }

.signature-banner {
  position: relative;
  isolation: isolate;
  width: 100%;
  /* Full-bleed cover — image is edge-to-edge (no baked-in side bars) */
  aspect-ratio: 1820 / 1216;
  min-height: clamp(20rem, 48vw, 34rem);
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #04211f;
  background-image: var(--signature-image);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: clip;
}

#power-bowls.signature-banner {
  background-size: cover;
  background-position: center center;
}

.signature-banner__scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4, 33, 31, 0.55) 0%, rgba(4, 33, 31, 0.28) 42%, rgba(4, 33, 31, 0.72) 100%);
}

.signature-banner__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 40rem);
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 3.5rem) var(--pad);
  text-align: center;
  color: #fff;
}

.signature-banner__eyebrow {
  margin: 0 0 0.75rem;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.signature-banner__title {
  margin: 0 0 1rem;
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: 0.06em;
}

.signature-banner__lead {
  max-width: 34rem;
  margin: 0 auto 1.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  line-height: 1.65;
}

.more-intro {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
}

.more-intro__title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0.45rem 0.75rem;
  margin: 0;
}

.more-intro__script {
  font-family: var(--font-script, "Great Vibes", "Marcellus", cursive);
  font-weight: 400;
  font-size: clamp(2.6rem, 6.5vw, 3.85rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--text);
}

.more-intro__menu {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.55rem, 3.5vw, 2.35rem);
  letter-spacing: 0.08em;
  line-height: 1.1;
  color: var(--text);
}

.more-intro__lead {
  margin: 1rem auto 0;
  max-width: 36rem;
  color: var(--text-muted);
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.65;
}

.more-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (max-width: 1100px) {
  .more-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.more-card {
  padding: 0;
  background: var(--bg-soft);
  overflow: clip;
}

.more-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 0 1.35rem;
  color: inherit;
  text-decoration: none;
  transition: transform 0.4s var(--ease);
}

.more-card__link:hover {
  transform: translateY(-3px);
}

.more-card__media {
  aspect-ratio: 1 / 1;
  overflow: clip;
  background: #e8ebe9;
}

.more-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.more-card__link:hover .more-card__media img {
  transform: scale(1.04);
}

.more-card h3 {
  margin: 1.1rem 1.25rem 0.55rem;
  font-size: 1.35rem;
}

.more-card p {
  margin: 0 1.25rem 1rem;
  flex: 1;
}

.more-card .btn {
  align-self: center;
  margin-inline: 1.25rem;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .more-card__link,
  .more-card__media img {
    transition: none;
  }

  .more-card__link:hover {
    transform: none;
  }

  .more-card__link:hover .more-card__media img {
    transform: none;
  }
}

.step {
  background:
    linear-gradient(180deg, rgba(4, 33, 31, 0.68), rgba(4, 33, 31, 0.84)),
    var(--step-image) 35% center / cover no-repeat;
}

.step-content {
  max-width: 1000px;
  text-align: center;
  padding-top: clamp(5rem, 12vw, 10rem);
  padding-bottom: clamp(3.75rem, 10vw, 7.5rem);
  margin-inline: auto;
}

.step-lead {
  color: rgba(255, 255, 255, 0.88);
  max-width: 36rem;
  margin: 1.25rem auto 1.5rem;
}

.social-proof {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
  overflow: clip;
}

.social-proof--media {
  background:
    radial-gradient(ellipse 70% 45% at 8% 12%, rgba(144, 196, 151, 0.2), transparent 55%),
    radial-gradient(ellipse 50% 40% at 92% 88%, rgba(117, 146, 121, 0.12), transparent 50%),
    linear-gradient(180deg, var(--bg-mint) 0%, #fafaf8 48%, #fff 100%);
}

.social-proof--kol {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  background:
    radial-gradient(ellipse 60% 40% at 88% 18%, rgba(144, 196, 151, 0.16), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--bg-mint) 38%, #fafaf8 100%);
}

.social-proof__inner { max-width: 1120px; }

.social-proof__intro {
  max-width: 40rem;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}

.social-proof__heading {
  font-size: clamp(1.45rem, 2.8vw, 1.9rem);
  line-height: 1.3;
  letter-spacing: 0.06em;
  margin-bottom: 0.65rem;
  text-transform: none;
}

.social-proof__lead {
  margin-top: 0.5rem;
  max-width: 40rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.social-proof__press-grid {
  list-style: none;
  margin: 0 0 clamp(1.75rem, 3vw, 2.25rem);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.8vw, 2rem);
}

.social-proof__press-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.social-proof__press-media {
  display: block;
  overflow: clip;
  margin-bottom: 1rem;
  background: rgba(4, 33, 31, 0.04);
}

.social-proof__press-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.social-proof__press-card:hover .social-proof__press-media img,
.social-proof__press-card:focus-visible .social-proof__press-media img {
  transform: scale(1.04);
}

.social-proof__press-outlet {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--sage);
  margin-bottom: 0.45rem;
}

.social-proof__press-title {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.35;
  letter-spacing: 0.02em;
  margin-bottom: 0.55rem;
}

.social-proof__press-summary {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.social-proof__cta {
  display: flex;
  justify-content: center;
}

.social-proof__kol-feature {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}

.social-proof__yt-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.15rem, 2.5vw, 1.5rem);
  margin: 0 0 2.25rem;
}

@media (min-width: 640px) {
  .social-proof__yt-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .social-proof__yt-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.social-proof__yt-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #04211f;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(4, 33, 31, 0.08),
    0 16px 36px rgba(4, 33, 31, 0.1);
}

.social-proof__yt-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.social-proof__yt-meta {
  margin: 0.65rem 0 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
}

.social-proof__yt-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--text);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.social-proof__kol-player {
  max-width: 320px;
  margin: 0;
  box-shadow:
    0 0 0 1px rgba(4, 33, 31, 0.06),
    0 20px 48px rgba(4, 33, 31, 0.1);
}

.social-proof__kol-player .kol-player__video {
  aspect-ratio: 9 / 16;
  width: 100%;
  display: block;
  object-fit: cover;
}

.social-proof__kol-still {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.social-proof__kol-copy {
  max-width: 36rem;
  padding-top: 0.25rem;
}

.social-proof__kol-meta {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--sage);
}

.social-proof__kol-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.3;
  letter-spacing: 0.03em;
  color: var(--text);
}

.social-proof__kol-summary {
  margin: 0 0 1.35rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.faq-list { display: grid; gap: 0.75rem; margin-top: 1.25rem; }
.faq-item { border: 1px solid var(--line); padding: 1rem 1.25rem; }
.faq-item summary { cursor: pointer; list-style: none; }
.faq-item summary h3 { margin: 0; font-size: 1.15rem; }
.faq-item summary::-webkit-details-marker { display: none; }

@keyframes fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 991px) {
  .reasons,
  .more-grid { grid-template-columns: 1fr; }
  .social-proof__press-grid { gap: 1rem; }
  .social-proof__press-title { font-size: 1rem; }
  .social-proof__kol-feature {
    grid-template-columns: minmax(200px, 0.42fr) minmax(0, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 767px) {
  .hero-scrim {
    background:
      linear-gradient(
        90deg,
        rgba(4, 33, 31, 0.86) 0%,
        rgba(4, 33, 31, 0.62) 42%,
        rgba(4, 33, 31, 0.28) 70%,
        transparent 100%
      ),
      linear-gradient(180deg, rgba(4, 33, 31, 0.4) 0%, transparent 28%, transparent 78%, rgba(4, 33, 31, 0.36) 100%);
  }
  .banner-inner { padding: 5rem 0 3.75rem; max-width: 100%; }
  .brand-mark__img { width: min(18rem, 88vw); }
  .hero-heading { font-size: clamp(1.2rem, 5.2vw, 1.4rem); }
  .section-wrapper { display: block; }
  .section-text,
  .tips-image { width: 100%; }
  .section-text { margin-bottom: 2.5rem; }
  .location-home {
    min-height: 0;
    background-position: 58% center;
  }
  .location-home__scrim {
    background:
      linear-gradient(
        180deg,
        rgba(4, 33, 31, 0.62) 0%,
        rgba(4, 33, 31, 0.48) 45%,
        rgba(4, 33, 31, 0.68) 100%
      ),
      radial-gradient(ellipse 85% 70% at 50% 48%, rgba(4, 33, 31, 0.28), rgba(4, 33, 31, 0.58));
  }
  .location-home__content {
    padding-block: clamp(2.5rem, 9vw, 3.5rem);
  }
  .location-home__text {
    max-width: 100%;
    padding-inline: 0.15rem;
  }
  .location-home__text .white-heading {
    margin: 0 0 0.85rem;
    font-size: clamp(1.45rem, 7.2vw, 1.85rem);
    line-height: 1.25;
    letter-spacing: 0.04em;
  }
  .location-home__lead {
    margin: 0 auto 1.35rem;
    max-width: 28rem;
    font-size: 0.92rem;
    line-height: 1.75;
    text-wrap: pretty;
  }
  .location-home__text .btn-group {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.85rem;
    width: 100%;
    max-width: 20rem;
    margin-inline: auto;
  }
  .location-home__text .btn-group .dodger-blue-button,
  .location-home__text .btn-group .btn {
    width: 100%;
    min-width: 0;
    padding: 0.95rem 1.1rem;
    letter-spacing: 0.1em;
    white-space: normal;
    line-height: 1.35;
  }
  .social-proof__press-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .social-proof__kol-feature {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .social-proof__kol-player,
  .social-proof__kol-still {
    max-width: 260px;
    margin-inline: auto;
  }
}

/* —— Menu hero —— */
.menu-hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(1.5rem, 4vw, 2.5rem);
  background:
    linear-gradient(180deg, rgba(233, 242, 234, 0.65) 0%, rgba(255, 255, 255, 0.92) 55%, #fff 100%);
  text-align: center;
}

.menu-hero__inner {
  max-width: 42rem;
  margin-inline: auto;
}

.menu-hero__inner .over-wrapper { justify-content: center; }

.menu-hero h1 {
  letter-spacing: 0.04em;
  text-transform: none;
}

.menu-hero__lead {
  margin: 1.5rem auto 2rem;
  max-width: 36rem;
}

.menu-hero .btn-group { justify-content: center; }

.menu-nav-wrap {
  position: sticky;
  top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  z-index: 40;
  background: rgba(253, 252, 240, 0.96);
  border-bottom: 1px solid rgba(4, 33, 31, 0.12);
  backdrop-filter: blur(12px);
}

body.admin-bar .menu-nav-wrap {
  top: calc(var(--header-h) + env(safe-area-inset-top, 0px) + 32px);
}

@media screen and (max-width: 782px) {
  body.admin-bar .menu-nav-wrap {
    top: calc(var(--header-h) + env(safe-area-inset-top, 0px) + 46px);
  }
}

.menu-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.15rem;
  padding: 0.85rem 0;
  text-align: center;
}

.menu-nav a {
  flex: 0 0 auto;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  padding: 0.55rem 0.85rem;
  border-bottom: 1px dashed transparent;
  white-space: nowrap;
  text-align: center;
}

.menu-nav a:hover,
.menu-nav a.is-active {
  color: var(--text);
  border-bottom-color: var(--text);
}

/* —— Cream paper menu (Outback-style grid) —— */
.paper-menu {
  --paper: #fdfcf0;
  --paper-ink: #1a1a1a;
  --paper-muted: #5c5c5c;
  --paper-accent: #5f7a63;
  --paper-sides: #8a9e6e;
  padding: clamp(1.5rem, 4vw, 3rem) var(--pad) clamp(3rem, 8vw, 5rem);
  background:
    radial-gradient(ellipse at 20% 0%, rgba(117, 146, 121, 0.08), transparent 50%),
    linear-gradient(180deg, #f3f0e4 0%, #e8e4d4 100%);
}

.paper-menu__sheet {
  width: min(100%, 1100px);
  margin-inline: auto;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent 40%),
    var(--paper);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 12px 40px rgba(4, 33, 31, 0.12);
  padding: clamp(1.25rem, 3vw, 2.5rem) clamp(1rem, 3vw, 2.25rem) clamp(1.5rem, 4vw, 2.75rem);
  color: var(--paper-ink);
}

.paper-menu__border {
  height: 10px;
  margin-bottom: 1.25rem;
  background:
    repeating-linear-gradient(
      90deg,
      var(--paper-accent) 0 8px,
      transparent 8px 14px,
      rgba(4, 33, 31, 0.35) 14px 16px,
      transparent 16px 22px
    );
  opacity: 0.55;
}

.paper-menu__border--bottom {
  margin: 1.75rem 0 0;
  margin-bottom: 0;
}

.paper-menu__intro {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
}

.paper-menu__eyebrow {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: var(--paper-accent);
  margin: 0 0 0.85rem;
}

.paper-menu__fineprint {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--paper-muted);
}

.paper-menu__fineprint--muted { opacity: 0.9; }

.paper-menu__service {
  margin: 0.75rem 0;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--paper-accent);
}

.paper-section {
  margin: clamp(1.75rem, 4vw, 2.75rem) 0;
  padding-top: 0.5rem;
}

.paper-section__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.paper-section__rule {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--paper-accent) 0 4px,
    transparent 4px 8px
  );
  opacity: 0.55;
}

.paper-section__titles { text-align: center; flex: 0 1 auto; }

.paper-section__en {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  color: var(--paper-accent);
  margin: 0;
  letter-spacing: 0.02em;
  text-transform: none;
  line-height: 1.15;
}

.paper-section__zh {
  margin: 0.2rem 0 0;
  font-size: 0.95rem;
  color: var(--paper-muted);
  letter-spacing: 0.12em;
}

.paper-section__lead {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 1rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--paper-muted);
}

.paper-section__setnote {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 1.35rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--paper-muted);
  border-top: 1px dashed rgba(4, 33, 31, 0.18);
  border-bottom: 1px dashed rgba(4, 33, 31, 0.18);
  padding: 0.65rem 0.5rem;
}

.paper-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem) clamp(0.85rem, 2vw, 1.25rem);
}

.paper-grid--text {
  margin-top: 1.25rem;
}

.paper-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.paper-card__media {
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #ebe6d6;
}

.paper-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.paper-card__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 1rem;
  text-align: center;
  background:
    linear-gradient(145deg, #f4f0e0, #e5dfcc);
  color: var(--paper-muted);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.paper-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.55rem;
}

.paper-card__names { min-width: 0; flex: 1; }

.paper-card__en {
  margin: 0;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.25;
  color: var(--paper-ink);
}

.paper-card__zh {
  margin: 0.15rem 0 0;
  font-size: 0.82rem;
  color: var(--paper-muted);
  line-height: 1.3;
}

.paper-card__spicy {
  display: inline-block;
  margin-left: 0.25rem;
  color: #9a3b3b;
  font-size: 0.7rem;
}

.paper-card__code {
  margin: 0.2rem 0 0;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--paper-muted);
}

.paper-card__prices {
  text-align: right;
  flex-shrink: 0;
}

.paper-card__price {
  margin: 0;
  font-weight: 700;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  line-height: 1;
  color: var(--paper-ink);
  font-variant-numeric: tabular-nums;
}

.paper-card__price--tba {
  font-size: 0.78rem !important;
  font-weight: 600;
  max-width: 4.5rem;
  line-height: 1.25;
}

.paper-card__price-old {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  color: var(--paper-muted);
}

.paper-card__price-old s {
  text-decoration: line-through;
}

.paper-card__materials {
  margin: 0.4rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.paper-card__desc {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--paper-muted);
}

.paper-card__desc--en {
  font-size: 0.68rem;
  opacity: 0.92;
}

.paper-card__note {
  margin: 0.35rem 0 0;
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--paper-muted);
}

.paper-sides {
  margin-top: 1.75rem;
  background: var(--paper-sides);
  color: #fff;
  padding: 1rem 1.1rem 1.15rem;
}

.paper-sides__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

.paper-sides__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.paper-sides__list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.35rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
  min-width: 5.5rem;
}

.paper-sides__list li:last-child { border-right: none; }

.paper-sides__en {
  font-size: 0.82rem;
  font-weight: 600;
}

.paper-sides__price {
  font-size: 0.72rem;
  opacity: 0.9;
}

.menu-faq { background: #fff; }
.menu-faq__links { margin-top: 1.5rem; }

.reserve-band {
  --reserve-band-image: none;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(68svh, 34rem);
  display: grid;
  align-items: center;
  padding: clamp(4rem, 11vw, 8.5rem) 0 calc(clamp(4rem, 11vw, 8.5rem) + env(safe-area-inset-bottom, 0px));
  text-align: center;
  color: #fff;
  background: #1a1510;
}

.reserve-band::before {
  content: "";
  position: absolute;
  inset: -2%;
  z-index: -2;
  background: var(--reserve-band-image) center / cover no-repeat;
  transform: scale(1.05);
  animation: reserve-band-drift 24s var(--ease, ease) infinite alternate;
}

.reserve-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 55% at 50% 42%, rgba(8, 16, 14, 0.28) 0%, rgba(8, 14, 12, 0.62) 55%, rgba(6, 10, 9, 0.78) 100%),
    linear-gradient(180deg, rgba(8, 18, 16, 0.42) 0%, rgba(8, 14, 12, 0.68) 48%, rgba(5, 10, 9, 0.84) 100%);
  pointer-events: none;
}

@keyframes reserve-band-drift {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(0, -1.8%, 0); }
}

.reserve-band__inner {
  position: relative;
  max-width: 40rem;
  margin-inline: auto;
}

.reserve-band .overheading {
  margin-bottom: 1.35rem;
  color: rgba(255, 255, 255, 0.78);
}

.reserve-band__title {
  color: #fff;
  font-size: clamp(2rem, 4.8vw, 3.35rem);
  line-height: 1.18;
  letter-spacing: 0.03em;
}

.reserve-band__brand {
  display: inline-block;
  letter-spacing: 0.06em;
}

.reserve-band__lead {
  margin: 1.25rem auto 2rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.9);
}

.reserve-band .btn-group {
  justify-content: center;
  gap: 1.25rem 1.75rem;
}

@media (prefers-reduced-motion: reduce) {
  .reserve-band::before {
    animation: none;
    transform: none;
  }
}

/* —— Inner pages —— */
.page-intro {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(1.5rem, 4vw, 2.5rem);
}

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

.page-intro--location .page-intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
}

.page-intro__media {
  margin: 0;
}

.page-intro__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 35%;
  background: #e8efe9;
}

@media (min-width: 901px) {
  .page-intro--location .page-intro__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}

.info-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

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

.map-frame {
  margin-top: 1.5rem;
  aspect-ratio: 16 / 9;
  background: var(--bg-soft);
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.section--env-gallery {
  background:
    radial-gradient(ellipse 70% 45% at 12% 0%, rgba(144, 196, 151, 0.18), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--bg-soft) 55%, #fff 100%);
}

.env-gallery__intro {
  margin-bottom: 1.5rem;
}

.env-gallery__lead {
  max-width: 42rem;
  margin-top: 0.75rem;
  color: var(--text-muted);
}

.env-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem 1rem;
}

@media (min-width: 720px) {
  .env-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .env-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .env-card:nth-child(1),
  .env-card:nth-child(6) {
    grid-column: span 2;
  }
  .env-card:nth-child(1) .env-card__img,
  .env-card:nth-child(6) .env-card__img {
    aspect-ratio: 16 / 9;
  }
}

.env-card {
  margin: 0;
}

.env-card__img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: #e8efe9;
}

.env-card:nth-child(3n) .env-card__img {
  aspect-ratio: 4 / 3;
}

.env-card__caption {
  margin-top: 0.65rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text);
}

.press-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .press-grid { grid-template-columns: repeat(2, 1fr); }
}

.press-card {
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.25rem;
}

.press-card__outlet {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 0.4rem;
}

.press-card h2 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.media-list {
  display: grid;
  gap: 2rem;
  margin-top: 1.5rem;
}

.media-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.5rem;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.25rem;
}

.media-row__media img:not(.media-logo-cell__img),
.media-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--bg-mint);
}

.media-logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #fff;
  border: 1px solid rgba(4, 33, 31, 0.08);
  text-decoration: none;
}

.media-logo-cell__img {
  display: block;
  max-width: 72%;
  max-height: 62%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.media-placeholder {
  display: grid;
  place-items: center;
  color: var(--text);
  font-family: var(--font-display);
  text-align: center;
  padding: 1rem;
  text-decoration: none;
}

.media-row h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.btn-group--about-cta {
  justify-content: center;
  width: 100%;
}

.about-press {
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(117, 146, 121, 0.28);
}

.about-press__heading {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text);
  text-align: center;
  margin: 0 0 1.15rem;
}

.about-press__logos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.65rem;
}

.about-press__cell {
  aspect-ratio: 16 / 10;
  background: #fff;
  border: 1px solid rgba(4, 33, 31, 0.08);
}

.about-press__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0;
}

.about-press__link img {
  display: block;
  max-width: 72%;
  max-height: 62%;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 800px) {
  .media-row {
    grid-template-columns: 1fr;
  }
  .media-logo-cell {
    max-width: 280px;
  }
  .about-press__logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.section--kol {
  padding-top: 0.5rem;
  padding-bottom: 3.5rem;
  background:
    radial-gradient(ellipse 80% 50% at 12% 18%, rgba(144, 196, 151, 0.18), transparent 55%),
    linear-gradient(180deg, var(--bg-mint) 0%, #fff 42%, var(--bg) 100%);
}

.kol-yt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 2.5rem;
}

@media (min-width: 720px) {
  .kol-yt-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.kol-yt-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.kol-yt-card__embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #04211f;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(4, 33, 31, 0.08),
    0 18px 40px rgba(4, 33, 31, 0.1);
}

.kol-yt-card__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.kol-yt-card__meta {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
}

.kol-yt-card__title {
  margin: 0.35rem 0 0.5rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  letter-spacing: 0.03em;
  line-height: 1.35;
  text-transform: none;
}

.kol-yt-card__summary {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.section--kol-teaser {
  background: var(--bg-mint);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.kol-feature {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: start;
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-top: 1px solid rgba(117, 146, 121, 0.28);
}

.kol-feature__stage {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.kol-player {
  position: relative;
  max-width: 380px;
  margin-inline: auto;
  background: #04211f;
  box-shadow:
    0 0 0 1px rgba(4, 33, 31, 0.08),
    0 28px 60px rgba(4, 33, 31, 0.12);
}

.kol-player__video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #04211f;
}

.kol-player__mute {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  appearance: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: #04211f;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.45rem 0.7rem;
}

.kol-feature__still {
  width: 100%;
  max-width: 380px;
  margin-inline: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.kol-feature__copy {
  padding-top: 0.35rem;
  max-width: 36rem;
}

.kol-feature__outlet {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
}

.kol-feature__title {
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  letter-spacing: 0.04em;
  line-height: 1.25;
  margin-bottom: 1rem;
  text-transform: none;
}

.kol-feature__summary {
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.kol-feature__highlights {
  margin: 0 0 1.25rem;
  padding: 0.85rem 0;
  list-style: none;
  border-top: 1px dashed rgba(117, 146, 121, 0.45);
  border-bottom: 1px dashed rgba(117, 146, 121, 0.45);
}

.kol-feature__highlights li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.1rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.kol-feature__highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 0.45rem;
  height: 1px;
  background: var(--sage);
}

.kol-feature__note {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.kol-feature__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.35rem;
}

.kol-teaser {
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
  padding: 0.5rem 0 0;
  border-top: 1px solid rgba(117, 146, 121, 0.28);
}

.kol-teaser .kol-player {
  max-width: none;
  margin-inline: 0;
}

@media (max-width: 900px) {
  .kol-feature,
  .kol-teaser {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .kol-feature__stage {
    position: static;
  }
  .kol-player,
  .kol-feature__still {
    max-width: 300px;
    margin-inline: 0;
  }
}

.blog-list {
  display: grid;
  gap: 1.5rem;
}

.blog-card {
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.25rem;
}

.entry-content {
  max-width: 42rem;
  margin: 2rem auto;
  padding-bottom: 3rem;
}

.entry-content h2 {
  font-size: 1.75rem;
  margin-top: 2rem;
}

/* Media / press singles — centered column, full clipping (no crop) */
.article-page .article-column {
  width: min(100% - 2 * var(--pad), 48rem);
  margin-inline: auto;
  padding-bottom: 3rem;
}

.article-page .article-hero {
  padding: calc(var(--header-h) + 2.5rem) 0 1.5rem;
}

.article-page .article-hero h1 {
  text-transform: none;
  letter-spacing: 0.03em;
}

.article-page .article-lead {
  margin-top: 1.25rem;
  color: var(--text);
}

.article-page .article-body {
  max-width: none;
  margin: 0;
  padding-bottom: 0;
}

.article-page .article-body h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 0.04em;
  margin-top: 2.5rem;
}

.article-page .media-figure {
  margin: 0 0 1.5rem;
}

.article-page .media-figure img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: var(--bg-mint);
}

.article-page .media-figure figcaption {
  margin-top: 0.65rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.article-page .highlights {
  margin: 0 0 1rem 1.1rem;
  list-style: disc;
  color: var(--text-muted);
}

.article-page .note {
  font-size: 0.88rem;
  margin-top: 1rem;
}

.article-page .article-cta {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--bg-soft);
}

.article-page .related {
  margin-top: 2.5rem;
}

.article-page .related ul {
  list-style: none;
  margin-top: 1rem;
}

.article-page .related li + li {
  margin-top: 0.65rem;
}

.article-page .related a {
  color: var(--text);
  border-bottom: 1px solid var(--line);
}

@media (max-width: 900px) {
  .paper-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .paper-grid { grid-template-columns: 1fr; }
  .paper-sides__list li {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    width: 100%;
    padding: 0.65rem 0;
  }
  .paper-sides__list li:last-child { border-bottom: none; }
}

/* —— Social tabs (KOL | 食客評價) + diner gallery —— */
.social-tabs {
  margin-top: 1.75rem;
}

.review-panel__heading {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  letter-spacing: 0.04em;
  text-transform: none;
  margin: 0 0 0.75rem;
}

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

.social-tabs__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  border-bottom: 1px solid rgba(117, 146, 121, 0.28);
  padding-bottom: 0;
}

.social-tabs__list {
  display: flex;
  align-items: stretch;
  gap: 0.15rem;
  min-width: 0;
}

.social-tabs__tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.social-tabs__tab:hover {
  color: var(--ink);
}

.social-tabs__tab.is-active {
  color: var(--ink);
  font-weight: 700;
}

.social-tabs__tab.is-active::after {
  content: '';
  position: absolute;
  left: 0.65rem;
  right: 0.65rem;
  bottom: -1px;
  height: 2px;
  background: var(--sage-bright);
}

.social-tabs__cta {
  flex-shrink: 0;
  margin-bottom: 0.55rem;
  font-size: 0.82rem !important;
  padding: 0.55rem 0.95rem !important;
}

.page-intro--social .page-intro__lead {
  max-width: 42rem;
}

.section--review-quotes {
  padding-top: 0;
  padding-bottom: 1.5rem;
}

.review-quotes__heading,
.diner-gallery__heading {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  letter-spacing: 0.04em;
  text-transform: none;
  margin: 0 0 1rem;
}

.review-quotes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .review-quotes {
    grid-template-columns: repeat(2, 1fr);
  }
}

.review-quotes__item {
  background:
    linear-gradient(160deg, rgba(144, 196, 151, 0.12), transparent 55%),
    #fff;
  border: 1px solid rgba(117, 146, 121, 0.22);
  padding: 1.15rem 1.25rem 1.25rem;
}

.review-quotes__item blockquote {
  margin: 0;
}

.review-quotes__item p {
  margin: 0 0 0.85rem;
  line-height: 1.65;
}

.review-quotes__item footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.85rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.review-quotes__item cite {
  font-style: normal;
}

.review-stars {
  color: var(--sage);
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.review-stars--sm {
  display: block;
  font-size: 0.72rem;
  line-height: 1.2;
  color: #d4a017;
}

.section--diner-gallery {
  padding-top: 0.5rem;
  padding-bottom: 3.5rem;
  background:
    radial-gradient(ellipse 70% 45% at 88% 8%, rgba(144, 196, 151, 0.16), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--bg-mint) 48%, var(--bg) 100%);
}

.diner-gallery__intro {
  margin-bottom: 1.25rem;
}

.diner-gallery__note {
  margin: 0;
  max-width: 40rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.diner-gallery {
  column-count: 2;
  column-gap: 0.85rem;
}

@media (min-width: 720px) {
  .diner-gallery {
    column-count: 3;
    column-gap: 1rem;
  }
}

@media (min-width: 1100px) {
  .diner-gallery {
    column-count: 4;
  }
}

.diner-card {
  break-inside: avoid;
  display: block;
  position: relative;
  margin: 0 0 0.85rem;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: #04211f;
  box-shadow: 0 10px 28px rgba(4, 33, 31, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.diner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(4, 33, 31, 0.14);
}

.diner-card__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  vertical-align: middle;
}

.diner-card:nth-child(3n) .diner-card__img {
  aspect-ratio: 3 / 4;
}

.diner-card:nth-child(5n) .diner-card__img {
  aspect-ratio: 1 / 1;
}

.diner-card__meta {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 2.4rem 0.7rem 0.65rem;
  background: linear-gradient(180deg, transparent 0%, rgba(4, 33, 31, 0.82) 72%);
  font-size: 0.72rem;
  line-height: 1.35;
}

.diner-card__user {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  min-width: 0;
}

.diner-card__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.2);
}

.diner-card__avatar--fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  background: var(--sage);
}

.diner-card__who {
  min-width: 0;
}

.diner-card__name {
  display: block;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.diner-card__caption {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: 0.92;
}

.diner-card__views {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
  opacity: 0.9;
  font-variant-numeric: tabular-nums;
}

.diner-gallery__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin: 1.75rem 0 0;
}

@media (max-width: 640px) {
  .social-tabs__row {
    align-items: stretch;
  }
  .social-tabs__list {
    width: 100%;
  }
  .social-tabs__cta {
    width: 100%;
    text-align: center;
    margin-bottom: 0.75rem;
  }
}

/* —— 關於品牌 —— */
.about-hero {
  position: relative;
  padding: calc(var(--header-h) + 3.5rem) 0 3.25rem;
  overflow: hidden;
}
.about-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.78) 42%, rgba(233, 242, 234, 0.55) 100%),
    var(--about-hero-bg) center / cover no-repeat;
  z-index: 0;
}
.about-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 42rem;
}
.about-hero__logo {
  display: block;
  height: 2.15rem;
  width: auto;
  max-width: min(240px, 70vw);
  margin-bottom: 1.75rem;
  object-fit: contain;
}
.about-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--text);
  text-transform: none;
}
.about-hero__lead,
.about-lede {
  max-width: 38rem;
  margin-top: 1.1rem;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;
}
.about-founder__grid,
.about-place__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}
.about-founder__media img,
.about-place__media img,
.about-philosophy__visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.about-founder__media img {
  aspect-ratio: 4 / 5;
}
.about-place__media img {
  aspect-ratio: 4 / 3;
}
.about-milestones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.about-milestone__label {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text);
}
.about-milestone__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}
.about-section-intro {
  max-width: 40rem;
  margin-bottom: 1.75rem;
}
.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem 1.5rem;
}
.about-pillar h3 {
  margin: 0 0 0.55rem;
  font-size: 1.35rem;
  color: var(--text);
}
.about-pillar p {
  margin: 0;
}
.about-philosophy__visual {
  margin-top: 2.25rem;
}
.about-philosophy__visual img {
  aspect-ratio: 16 / 9;
}
.about-place__copy h2 {
  white-space: nowrap;
}
@media (max-width: 900px) {
  .about-founder__grid,
  .about-place__grid,
  .about-pillars,
  .about-milestones {
    grid-template-columns: 1fr;
  }
  .about-place__media {
    order: -1;
  }
  .about-hero {
    padding-bottom: 2.5rem;
  }
}
@media (max-width: 380px) {
  .about-place__copy h2 {
    white-space: normal;
  }
}
