/* F:B — Flavour : Brew · Korean studio café */

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

html, body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6,
pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td, img {
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: var(--cream, #F5F1EB);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: "Pretendard", "Noto Sans KR", "Times New Roman", "Nanum Myeongjo", Verdana, Dotum, AppleGothic, sans-serif;
  font-size: var(--font-13px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.65;
  color: var(--bk);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(140, 123, 106, 0.08), transparent 55%),
    var(--cream, #F5F1EB);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100dvh;
  overflow-x: hidden;
}

::selection {
  color: var(--w);
  background-color: var(--espresso, #3D342C);
}

img, picture, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--base);
  color: var(--w);
}

.skip-link:focus {
  left: 0;
}

.page-width {
  width: min(100% - (var(--page-gutter) * 2), var(--page-width));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0 1.75rem;
  border: 1px solid transparent;
  border-radius: var(--round);
  font-size: var(--font-13px);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--espresso, #3D342C);
  color: var(--w);
  border-color: var(--espresso, #3D342C);
}

.btn--primary:hover {
  background: var(--base);
  border-color: var(--base);
}

.btn--secondary {
  background: transparent;
  color: var(--espresso, #3D342C);
  border-color: var(--stone, #D6CFC4);
}

.btn--secondary:hover {
  background: var(--espresso, #3D342C);
  color: var(--w);
  border-color: var(--espresso, #3D342C);
}

.btn--white {
  background: var(--w);
  color: var(--espresso, #3D342C);
  border-color: var(--w);
}

.btn--white:hover {
  background: transparent;
  color: var(--w);
  border-color: var(--w);
}

.btn--full {
  width: 100%;
}

.btn[disabled],
.btn.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* ——— Announcement / flow banner ——— */
.announcement-bar {
  min-height: var(--flowban_hight);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--espresso, #3D342C);
  color: var(--cream, #F5F1EB);
  font-size: var(--font-11px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.5rem max(var(--page-gutter), env(safe-area-inset-right)) 0.5rem max(var(--page-gutter), env(safe-area-inset-left));
  font-weight: 400;
}

.announcement-bar p {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.announcement-bar a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--cream, #F5F1EB) 88%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--alp-review-border-gray08);
}

.site-header__inner {
  height: var(--top-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding-inline: max(0px, env(safe-area-inset-left)) max(0px, env(safe-area-inset-right));
}

.site-header__nav {
  display: none;
  gap: 1.75rem;
  align-items: center;
}

.site-header__nav a {
  font-size: var(--font-13px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.site-header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 100%;
  height: 1px;
  background: var(--base);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.site-header__nav a:hover::after,
.site-header__nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-header__brand {
  justify-self: center;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--espresso, #3D342C);
  text-transform: uppercase;
}

.site-header__brand span {
  color: var(--taupe, #8C7B6A);
  font-weight: 300;
  margin: 0 0.05em;
}

.site-header__brand img {
  width: auto;
  height: auto;
  max-height: 36px;
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
}

.site-header__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cart-count {
  position: absolute;
  top: 6px;
  right: 6px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 0;
  background: var(--espresso, #3D342C);
  color: var(--cream, #F5F1EB);
  font-size: 10px;
  line-height: 16px;
  text-align: center;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--espresso, #3D342C);
}

.menu-toggle__bars {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

@media (min-width: 990px) {
  .site-header__inner {
    grid-template-columns: 1fr auto 1fr;
  }

  .site-header__nav {
    display: flex;
  }

  .site-header__actions {
    gap: 0.5rem;
  }

  .menu-toggle {
    display: none;
  }
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--cream, #F5F1EB);
  padding:
    max(1.5rem, env(safe-area-inset-top))
    max(1.5rem, env(safe-area-inset-right))
    max(1.5rem, env(safe-area-inset-bottom))
    max(1.5rem, env(safe-area-inset-left));
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  visibility: hidden;
}

.mobile-nav.is-open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-nav__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav__close {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--espresso, #3D342C);
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav__links a {
  font-size: clamp(1.5rem, 6vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  padding: 0.65rem 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--alp-review-border-gray08);
}

@media (min-width: 990px) {
  .mobile-nav {
    display: none;
  }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: min(92svh, 860px);
  display: grid;
  align-items: end;
  color: var(--w);
  overflow: hidden;
  background: var(--cream-deep, #EBE4DA);
}

@media (max-width: 749px) {
  .hero {
    min-height: min(78svh, 640px);
  }
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 18s ease-out forwards;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 27, 25, 0.12) 0%, rgba(61, 52, 44, 0.18) 40%, rgba(28, 27, 25, 0.62) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding:
    clamp(2.5rem, 8vh, 6rem)
    max(var(--page-gutter), env(safe-area-inset-right))
    clamp(2.5rem, 7vh, 5rem)
    max(var(--page-gutter), env(safe-area-inset-left));
  width: min(100%, var(--page-width));
  margin-inline: auto;
  max-width: 40rem;
}

.hero__brand {
  font-size: clamp(2.5rem, 12vw, 5.5rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 0.95;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  opacity: 0;
  animation: riseIn 0.9s ease forwards 0.15s;
}

.hero__brand span {
  color: color-mix(in srgb, var(--w) 55%, var(--taupe, #8C7B6A));
  font-weight: 300;
}

.hero__tagline {
  font-size: var(--font-12px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--w) 72%, transparent);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: riseIn 0.9s ease forwards 0.25s;
}

.hero__heading {
  font-size: clamp(1.1rem, 3.2vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: riseIn 0.9s ease forwards 0.35s;
}

.hero__text {
  font-size: var(--font-14px);
  color: color-mix(in srgb, var(--w) 78%, transparent);
  max-width: 28rem;
  margin-bottom: 1.75rem;
  line-height: 1.7;
  opacity: 0;
  animation: riseIn 0.9s ease forwards 0.5s;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  animation: riseIn 0.9s ease forwards 0.65s;
}

@media (max-width: 549px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__text {
    font-size: var(--font-13px);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

/* ——— Section chrome ——— */
.section {
  padding-block: var(--gap-S);
}

@media (min-width: 768px) {
  .section {
    padding-block: var(--gap-M);
  }
}

@media (min-width: 1280px) {
  .section {
    padding-block: var(--gap-L);
  }
}

.section__header {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section__eyebrow {
  font-size: var(--font-11px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe, #8C7B6A);
  margin-bottom: 0.65rem;
  font-weight: 400;
}

.section__title {
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--espresso, #3D342C);
}

.section__link {
  font-size: var(--font-12px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--bk);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.section__link:hover {
  color: var(--base);
  border-color: var(--base);
}

/* ——— Product grid ——— */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 0.75rem;
}

@media (min-width: 750px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.25rem;
  }
}

@media (min-width: 1100px) {
  .product-grid.columns-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream-deep, #EBE4DA);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* media filter off for clarity */
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-card__media img {
  transform: scale(1.03);
  /* crisp photos */
}

.product-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--w);
  color: var(--espresso, #3D342C);
  font-size: var(--font-11px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.55rem;
  border: 1px solid var(--stone, #D6CFC4);
}

.product-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.product-card__title {
  font-size: var(--font-14px);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.product-card__price {
  font-size: var(--font-13px);
  color: var(--alp-review-text-gray80);
}

.product-card__price .price--sale {
  color: var(--sale);
}

.product-card__price s {
  color: var(--alp-review-text-gray40);
  margin-right: 0.35rem;
}

/* ——— Featured row / editorial ——— */
.editorial {
  display: grid;
  gap: 0;
}

@media (min-width: 900px) {
  .editorial {
    grid-template-columns: 1.15fr 1fr;
    min-height: 620px;
  }

  .editorial--reverse {
    direction: rtl;
  }

  .editorial--reverse > * {
    direction: ltr;
  }
}

.editorial__media {
  min-height: min(56vw, 420px);
  background: var(--cream-deep, #EBE4DA);
  overflow: hidden;
}

@media (max-width: 899px) {
  .editorial__media {
    min-height: 280px;
    aspect-ratio: 4 / 3;
  }
}

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

.editorial__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  padding: clamp(2rem, 5vw, 4.5rem) max(var(--page-gutter), 1.25rem);
  background:
    linear-gradient(160deg, var(--mist, #FAF8F5) 0%, var(--cream, #F5F1EB) 55%, var(--cream-deep, #EBE4DA) 100%);
}

.editorial__body p {
  font-size: var(--font-15px);
  color: var(--text-muted, #6F6860);
  max-width: 32rem;
  line-height: 1.75;
}

/* ——— Marquee (infinite dual-track) ——— */
.marquee {
  --marquee-gap: 2rem;
  --marquee-duration: 28s;
  display: flex;
  align-items: center;
  gap: var(--marquee-gap);
  overflow: hidden;
  border-block: 1px solid var(--alp-review-border-gray10);
  background: var(--mist, #FAF8F5);
  padding-block: 1rem;
  min-height: 3rem;
  user-select: none;
}

@media (min-width: 750px) {
  .marquee {
    --marquee-gap: 3rem;
    padding-block: 1.1rem;
    min-height: 3.25rem;
  }
}

.marquee__track {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: var(--marquee-gap);
  min-width: max-content;
  animation: marquee-scroll var(--marquee-duration) linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__item {
  flex-shrink: 0;
  font-size: var(--font-12px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--espresso, #3D342C);
  font-weight: 400;
  line-height: 1;
}

.marquee__item span {
  color: var(--taupe, #8C7B6A);
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--marquee-gap)));
  }
}

/* ——— Collection banner ——— */
.collection-banner {
  padding: 3rem var(--page-gutter) 1.5rem;
  border-bottom: 1px solid var(--alp-review-border-gray08);
}

.collection-banner__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.collection-banner__desc {
  margin-top: 0.75rem;
  max-width: 36rem;
  color: var(--alp-review-text-gray60);
  font-size: var(--font-14px);
}

/* ——— Product page ——— */
.product {
  display: grid;
  gap: 2rem;
  padding: 1.5rem var(--page-gutter) 4rem;
}

@media (min-width: 900px) {
  .product {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: start;
    padding-top: 2.5rem;
  }
}

.product__gallery {
  display: grid;
  gap: 0.5rem;
}

.product__gallery-main {
  aspect-ratio: 3 / 4;
  background: var(--alp-review-bg-gray05);
  overflow: hidden;
}

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

.product__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.product__thumbs button {
  aspect-ratio: 1;
  border: 1px solid transparent;
  overflow: hidden;
  background: var(--alp-review-bg-gray05);
}

.product__thumbs button[aria-pressed="true"] {
  border-color: var(--base);
}

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

.product__info {
  position: sticky;
  top: calc(var(--header-offset) + 1rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.product__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.product__price {
  font-size: var(--font-18px);
}

.product__price .price--sale {
  color: var(--sale);
}

.product__description {
  font-size: var(--font-14px);
  color: var(--alp-review-text-gray80);
  line-height: 1.7;
}

.product__description p + p {
  margin-top: 0.75rem;
}

.variant-selects {
  display: grid;
  gap: 1rem;
}

.variant-selects label {
  display: block;
  font-size: var(--font-11px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.variant-selects select {
  width: 100%;
  min-height: 48px;
  padding: 0 0.75rem;
  border: 1px solid var(--alp-review-border-gray20);
  border-radius: var(--round);
  background: var(--w);
}

.quantity {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--alp-review-border-gray20);
}

.quantity button {
  width: 44px;
  height: 44px;
  font-size: var(--font-18px);
}

.quantity input {
  width: 48px;
  height: 44px;
  border: 0;
  text-align: center;
  -moz-appearance: textfield;
}

.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/* ——— Cart ——— */
.cart-page {
  padding: 2.5rem var(--page-gutter) 5rem;
  max-width: 960px;
  margin-inline: auto;
}

.cart-page__title {
  font-size: var(--font-32px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--alp-review-border-gray10);
}

.cart-item__media {
  aspect-ratio: 3 / 4;
  background: var(--alp-review-bg-gray05);
  overflow: hidden;
}

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

.cart-item__title {
  font-size: var(--font-14px);
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.cart-item__meta {
  font-size: var(--font-12px);
  color: var(--alp-review-text-gray50);
}

.cart-footer {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

.cart-footer__subtotal {
  font-size: var(--font-16px);
  display: flex;
  gap: 1.5rem;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
}

.cart-drawer.is-open {
  pointer-events: auto;
}

.cart-drawer__overlay {
  position: absolute;
  inset: 0;
  background: var(--alp-review-scrim-black40);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cart-drawer.is-open .cart-drawer__overlay {
  opacity: 1;
}

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 420px);
  height: 100%;
  background: var(--w);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--alp-review-border-gray10);
}

.cart-drawer.is-open .cart-drawer__panel {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.25rem;
  border-bottom: 1px solid var(--alp-review-border-gray10);
  font-size: var(--font-14px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-drawer__body {
  flex: 1;
  overflow: auto;
  padding: 1rem 1.25rem;
}

.cart-drawer__footer {
  padding: 1.25rem;
  border-top: 1px solid var(--alp-review-border-gray10);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cart-drawer__empty {
  padding: 3rem 0;
  text-align: center;
  color: var(--alp-review-text-gray50);
}

/* ——— Footer ——— */
.site-footer {
  background: var(--espresso, #3D342C);
  color: var(--cream, #F5F1EB);
  padding:
    clamp(3rem, 8vw, 4.5rem)
    max(var(--page-gutter), env(safe-area-inset-right))
    max(2rem, env(safe-area-inset-bottom))
    max(var(--page-gutter), env(safe-area-inset-left));
  margin-top: auto;
}

.site-footer__grid {
  display: grid;
  gap: 2.5rem;
  max-width: var(--page-width);
  margin-inline: auto;
}

@media (min-width: 750px) {
  .site-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

@media (max-width: 549px) {
  .site-footer__grid {
    gap: 2rem;
  }
}

.site-footer__brand {
  font-size: var(--font-28px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.site-footer__brand span {
  color: var(--taupe, #8C7B6A);
  font-weight: 300;
}

.site-footer__meaning {
  font-size: var(--font-11px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--cream, #F5F1EB) 45%, transparent);
  margin-bottom: 1.25rem;
}

.site-footer p {
  color: color-mix(in srgb, var(--w) 65%, transparent);
  font-size: var(--font-13px);
  max-width: 22rem;
}

.site-footer__heading {
  font-size: var(--font-11px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: color-mix(in srgb, var(--w) 55%, transparent);
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.site-footer__links a:hover {
  color: color-mix(in srgb, var(--w) 70%, var(--base));
}

.newsletter {
  display: flex;
  gap: 0;
  margin-top: 1rem;
  border: 1px solid color-mix(in srgb, var(--w) 25%, transparent);
}

.newsletter input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  padding: 0.85rem 1rem;
  color: var(--w);
}

.newsletter input::placeholder {
  color: color-mix(in srgb, var(--w) 40%, transparent);
}

.newsletter button {
  padding: 0 1.1rem;
  background: var(--taupe, #8C7B6A);
  color: var(--cream, #F5F1EB);
  font-size: var(--font-11px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__bottom {
  max-width: var(--page-width);
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--w) 12%, transparent);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: var(--font-12px);
  color: color-mix(in srgb, var(--w) 45%, transparent);
}

@media (max-width: 549px) {
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter {
    flex-direction: column;
  }

  .newsletter button {
    min-height: 48px;
    width: 100%;
  }
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

/* ——— Landing grids (menu / bakery) ——— */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

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

@media (min-width: 900px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.space-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 750px) {
  .space-strip {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: stretch;
  }
}

.space-strip__media {
  overflow: hidden;
  background: var(--cream-deep, #EBE4DA);
  aspect-ratio: 4 / 3;
}

.space-strip__media--tall {
  aspect-ratio: 3 / 4;
}

@media (min-width: 750px) {
  .space-strip__media {
    aspect-ratio: auto;
    min-height: 420px;
    height: 100%;
  }
}

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

@media (max-width: 749px) {
  .section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .section {
    padding-block: clamp(2.5rem, 8vw, 3.125rem);
  }
}

/* ——— Utilities ——— */
.price--sale {
  color: var(--sale);
}

.main-content {
  min-height: 50vh;
}

.rte a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rte ul {
  list-style: disc;
  padding-left: 1.25rem;
}

.rte ol {
  list-style: decimal;
  padding-left: 1.25rem;
}

.empty-state {
  padding: 5rem var(--page-gutter);
  text-align: center;
}

.empty-state h1,
.empty-state h2 {
  font-size: var(--font-28px);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.empty-state p {
  color: var(--alp-review-text-gray50);
  margin-bottom: 1.5rem;
}

/* Search modal */
.search-modal {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: var(--w);
  display: none;
  flex-direction: column;
  padding: 1.5rem;
}

.search-modal.is-open {
  display: flex;
}

.search-modal__form {
  display: flex;
  gap: 0.75rem;
  border-bottom: 1px solid var(--alp-review-border-gray20);
  padding-bottom: 0.75rem;
}

.search-modal__form input {
  flex: 1;
  border: 0;
  font-size: var(--font-24px);
  letter-spacing: -0.02em;
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  /* Decorative marquee stays in motion (aria-hidden) */
  .marquee__track {
    animation: marquee-scroll var(--marquee-duration, 28s) linear infinite !important;
    animation-duration: var(--marquee-duration, 28s) !important;
    animation-iteration-count: infinite !important;
  }
}


.atmosphere-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  padding-inline: var(--page-gutter);
  max-width: calc(var(--page-width) + var(--page-gutter) * 2);
  margin-inline: auto;
  padding-bottom: var(--gap-S);
}
@media (min-width: 750px) {
  .atmosphere-grid { grid-template-columns: 1fr 1fr; }
}
.atmosphere-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  /* media filter off for clarity */
}
