:root {
  color: #1e2522;
  background: #ffffff;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;

  --green: #23483e;
  --green-action: #2f5d50;
  --green-light: #dce9e4;
  --cream: #f5f0e8;
  --brown: #a66a45;
  --ink: #1e2522;
  --text-secondary: #66716c;
  --text-muted: #929b97;
  --border: #dde2df;
  --soft: #f8f8f6;
  --white: #ffffff;
  --header-height: 76px;
  --page-padding: clamp(1.5rem, 5.3vw, 5rem);
  --section-space: clamp(5.5rem, 8.4vw, 8rem);
  --content-width: 1440px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

body,
button,
a {
  font-family: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

[hidden] {
  display: none !important;
}

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

button {
  color: inherit;
}

p,
h1,
h2,
h3,
figure,
dl,
dd {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

section,
footer {
  position: relative;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

::selection {
  background: var(--green-light);
  color: var(--green);
}

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

.container {
  width: 100%;
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: var(--page-padding);
}

.section {
  padding-block: var(--section-space);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green-action);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.section-heading h2,
.story__copy h2,
.location__content h2,
.promo__copy h2 {
  margin-top: 18px;
  font-size: clamp(2.25rem, 3.5vw, 3.25rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: clamp(2rem, 7vw, 7.5rem);
  align-items: end;
}

.section-heading--split > p {
  max-width: 470px;
  padding-bottom: 5px;
  color: var(--text-secondary);
  font-size: 17px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button svg,
.text-link svg,
.back-to-top svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.9;
  transition: transform 180ms ease;
}

.button--primary {
  background: var(--green-action);
  color: var(--white);
}

.button--primary:hover {
  background: var(--green);
  transform: translateY(-2px);
}

.button--primary:active,
.button--secondary:active,
.button--light:active {
  transform: translateY(0);
}

.button--secondary {
  border-color: var(--green-action);
  background: transparent;
  color: var(--green-action);
}

.button--secondary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}

.button--light {
  background: var(--cream);
  color: var(--green);
}

.button--light:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.button:disabled,
.button[aria-disabled="true"] {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
}

.button:hover svg,
.text-link:hover svg {
  transform: translate(2px, -2px);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid currentColor;
  color: var(--green-action);
  font-size: 14px;
  font-weight: 650;
  line-height: 2;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 650ms var(--ease),
    transform 650ms var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: var(--cream);
  transition:
    background-color 220ms ease,
    border-color 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--border);
  background: var(--white);
}

.site-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand__logo,
.brand img {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  object-fit: cover;
}

.brand__name {
  color: var(--green);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

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

.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.3vw, 2.25rem);
}

.site-nav__link {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: color 180ms ease;
}

.site-nav__link::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--green);
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav__cta {
  min-height: 44px;
  padding-inline: 20px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}

/* Hero */
.hero {
  overflow: hidden;
  background: var(--cream);
}

.hero__inner {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  grid-template-columns: minmax(0, 0.88fr) minmax(400px, 1.12fr);
  gap: clamp(3rem, 7vw, 7.5rem);
  align-items: center;
  padding-top: clamp(3rem, 5vw, 5rem);
  padding-bottom: clamp(4.5rem, 7vw, 7rem);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 630px;
}

.hero__content h1 {
  max-width: 610px;
  margin-top: 22px;
  font-size: clamp(3.25rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1.01;
}

.hero__description {
  max-width: 555px;
  margin-top: 28px;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
}

.hero__note {
  margin-top: 40px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
}

.hero__visual {
  position: relative;
  display: grid;
  width: min(100%, 576px);
  aspect-ratio: 4 / 5;
  justify-self: end;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border-radius: 20px;
  background: var(--green-light);
}

.hero__visual > img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 50% 50%;
}

.hero__visual figcaption {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: var(--white);
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.035em;
}

.hero__visual figcaption span:first-child {
  color: var(--ink);
}

/* Best sellers */
.products {
  background: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.4vw, 2rem);
  margin-top: clamp(3.5rem, 6vw, 5.5rem);
}

.product-grid > li:nth-child(2) {
  padding-top: 72px;
}

.product-grid > li:nth-child(3) {
  padding-top: 24px;
}

.product-card__image-link {
  display: block;
  border-radius: 16px;
}

.product-card__image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 16px;
  background: var(--soft);
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.product-grid > li:nth-child(1) .product-card__image {
  object-position: center 50%;
}

.product-grid > li:nth-child(2) .product-card__image {
  padding: 10px;
  background: #f1eee8;
  object-fit: contain;
  object-position: center;
}

.product-grid > li:nth-child(3) .product-card__image {
  object-position: center 42%;
}

.product-card:hover .product-card__image {
  transform: scale(1.025);
}

.product-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--white);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.product-card__meta {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.product-card__number {
  padding-top: 4px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
}

.product-card__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.product-card__heading h3 {
  font-size: clamp(1.15rem, 1.7vw, 1.35rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.product-card__price {
  flex: 0 0 auto;
  color: var(--green-action);
  font-size: 14px;
  font-weight: 700;
}

.product-card__copy > p {
  max-width: 330px;
  margin-top: 10px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.product-card__link {
  margin-top: 15px;
  color: var(--ink);
  font-size: 13px;
}

/* Brand pause */
.brand-statement {
  overflow: hidden;
  background: var(--cream);
}

.brand-statement__inner {
  padding-top: clamp(6rem, 10vw, 10rem);
  padding-bottom: clamp(6rem, 10vw, 10rem);
}

.brand-statement__mark {
  height: 46px;
  color: var(--brown);
  font-family: Georgia, serif;
  font-size: 88px;
  line-height: 1;
}

.brand-statement__text {
  max-width: 1150px;
  color: var(--green);
  font-size: clamp(2.5rem, 5vw, 4.75rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1.08;
}

.brand-statement__signoff {
  margin-top: 32px;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 600;
}

/* Everyday moments */
.moments {
  background: var(--white);
}

.moments__heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.moments__list {
  border-bottom: 1px solid var(--border);
}

.moment {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(280px, 1.14fr);
  gap: clamp(3rem, 8vw, 8.5rem);
  align-items: center;
  padding-block: clamp(3.5rem, 6vw, 5.5rem);
  border-top: 1px solid var(--border);
}

.moment--reverse {
  grid-template-columns: minmax(280px, 1.14fr) minmax(320px, 0.86fr);
}

.moment--reverse .moment__image-wrap {
  order: 2;
  margin-left: auto;
}

.moment--reverse .moment__copy {
  order: 1;
}

.moment__image-wrap {
  width: min(100%, 520px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 20px;
  background: var(--soft);
}

.moment__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.moment:nth-child(1) .moment__image {
  object-position: center 54%;
}

.moment:nth-child(2) .moment__image {
  object-position: center 58%;
}

.moment:nth-child(3) .moment__image {
  object-position: center 44%;
}

.moment:hover .moment__image {
  transform: scale(1.02);
}

.moment__copy {
  max-width: 390px;
}

.moment__time {
  color: var(--brown);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.moment__copy h3 {
  margin-top: 16px;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.moment__copy > p:last-child {
  margin-top: 18px;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.65;
}

/* Menu categories */
.menu-categories {
  background: var(--soft);
}

.menu-categories__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(4rem, 10vw, 10rem);
  align-items: start;
}

.menu-categories__intro {
  max-width: 510px;
}

.menu-categories__intro > p:not(.eyebrow) {
  max-width: 450px;
  margin-top: 24px;
  color: var(--text-secondary);
  font-size: 17px;
}

.menu-categories__intro .button {
  margin-top: 32px;
}

.category-list {
  border-top: 1px solid #cfd6d2;
}

.category-list__item {
  display: grid;
  min-height: 142px;
  grid-template-columns: 54px minmax(0, 1fr) 28px;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid #cfd6d2;
  transition: color 180ms ease;
}

.category-list__number {
  align-self: start;
  padding-top: 40px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
}

.category-list__item h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.category-list__item p {
  margin-top: 8px;
  color: var(--text-secondary);
  font-size: 14px;
}

.category-list__arrow {
  width: 22px;
  height: 22px;
  color: var(--green-action);
  stroke-width: 1.75;
  transition: transform 220ms var(--ease);
}

.category-list__item:hover {
  color: var(--green-action);
}

.category-list__item:hover .category-list__arrow {
  transform: translateX(5px);
}

/* Promotion */
.promo {
  overflow: hidden;
  background: var(--green);
  color: var(--cream);
}

.promo__inner {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-top: clamp(4.5rem, 7vw, 6.5rem);
  padding-bottom: clamp(4.5rem, 7vw, 6.5rem);
}

.promo__label {
  display: grid;
  min-height: 108px;
  align-content: space-between;
  padding-right: 28px;
  border-right: 1px solid rgb(245 240 232 / 30%);
  color: rgb(245 240 232 / 70%);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promo__copy {
  max-width: 700px;
}

.promo__copy .eyebrow {
  color: #b9d7cd;
}

.promo__copy h2 {
  color: var(--white);
}

.promo__copy > p:last-child {
  max-width: 620px;
  margin-top: 18px;
  color: rgb(245 240 232 / 74%);
  font-size: 16px;
}

/* Brand story */
.story {
  background: var(--white);
}

.story__inner {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(4rem, 10vw, 10rem);
  align-items: center;
}

.story__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 20px;
  background: var(--green-light);
}

.story__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  transform: scale(2.35);
}

.story__caption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--green);
  color: var(--cream);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.story__copy {
  max-width: 610px;
}

.story__lead {
  margin-top: 28px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.55;
}

.story__copy > p:not(.eyebrow):not(.story__lead) {
  max-width: 570px;
  margin-top: 16px;
  color: var(--text-secondary);
  font-size: 16px;
}

.story__copy .text-link {
  margin-top: 30px;
}

/* Location */
.location {
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: var(--green);
}

.location__media {
  min-height: 600px;
  overflow: hidden;
}

.location__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  transition: transform 700ms var(--ease);
}

.location:hover .location__media img {
  transform: scale(1.018);
}

.location__content {
  display: flex;
  max-width: 720px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem);
  color: var(--cream);
}

.location__content .eyebrow {
  color: #b9d7cd;
}

.location__content h2 {
  max-width: 600px;
  color: var(--white);
  font-size: clamp(2.5rem, 4.1vw, 3.75rem);
}

.location__description {
  max-width: 520px;
  margin-top: 24px;
  color: rgb(245 240 232 / 76%);
  font-size: 17px;
}

.location__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
  padding-block: 25px;
  border-top: 1px solid rgb(245 240 232 / 25%);
  border-bottom: 1px solid rgb(245 240 232 / 25%);
}

.location__details dt {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgb(245 240 232 / 64%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location__details dt svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.8;
}

.location__details dd {
  margin-top: 10px;
  color: var(--cream);
  font-size: 14px;
  font-weight: 500;
}

.location__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.location .button--primary {
  background: var(--cream);
  color: var(--green);
}

.location .button--primary:hover {
  background: var(--white);
}

.location .button--secondary {
  border-color: rgb(245 240 232 / 70%);
  color: var(--cream);
}

.location .button--secondary:hover {
  background: rgb(255 255 255 / 8%);
}

/* Footer */
.site-footer {
  padding-top: clamp(4.5rem, 7vw, 6.5rem);
  padding-bottom: 28px;
  background: var(--ink);
  color: var(--white);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) minmax(140px, 0.55fr) minmax(220px, 0.75fr);
  gap: clamp(2.5rem, 7vw, 7rem);
}

.brand--footer .brand__name {
  color: var(--white);
}

.brand--footer img {
  border-color: rgb(255 255 255 / 15%);
}

.site-footer__brand > p {
  max-width: 390px;
  margin-top: 22px;
  color: rgb(255 255 255 / 60%);
  font-size: 14px;
}

.site-footer__group h2 {
  color: rgb(255 255 255 / 48%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-footer__group ul {
  display: grid;
  gap: 11px;
  margin-top: 20px;
  color: rgb(255 255 255 / 75%);
  font-size: 13px;
}

.site-footer__group a {
  transition: color 180ms ease;
}

.site-footer__group a:hover {
  color: var(--white);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 72px;
  padding-top: 24px;
  border-top: 1px solid rgb(255 255 255 / 13%);
  color: rgb(255 255 255 / 45%);
  font-size: 11px;
}

.back-to-top {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  color: rgb(255 255 255 / 72%);
  font-weight: 600;
}

.back-to-top:hover {
  color: var(--white);
}

.back-to-top:hover svg {
  transform: translateY(-3px);
}

@media (max-width: 1100px) {
  .hero__inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 3.5rem;
  }

  .hero__content h1 {
    font-size: clamp(3rem, 5.5vw, 3.65rem);
  }

  .story__inner,
  .menu-categories__layout {
    gap: 5rem;
  }

  .location__content {
    padding: 4.5rem;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    gap: 24px;
    overflow: hidden;
    border-bottom: 1px solid transparent;
    background: var(--white);
    opacity: 0;
    padding-inline: var(--page-padding);
    visibility: hidden;
    transition:
      max-height 320ms var(--ease),
      opacity 180ms ease,
      padding 320ms var(--ease),
      visibility 0s linear 320ms;
  }

  .site-nav.is-open {
    max-height: 500px;
    padding-top: 20px;
    padding-bottom: 28px;
    border-color: var(--border);
    opacity: 1;
    visibility: visible;
    transition:
      max-height 320ms var(--ease),
      opacity 180ms ease,
      padding 320ms var(--ease),
      visibility 0s;
  }

  .site-nav__list {
    display: grid;
    gap: 0;
  }

  .site-nav__link {
    width: 100%;
    min-height: 50px;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
  }

  .site-nav__link::after {
    display: none;
  }

  .site-nav__cta {
    width: 100%;
  }

  .hero__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .hero__content {
    max-width: 680px;
  }

  .hero__visual {
    width: min(100%, 720px);
    height: min(82vw, 680px);
    aspect-ratio: auto;
    min-height: 540px;
    margin-left: auto;
  }

  .product-grid {
    gap: 20px;
  }

  .product-grid > li:nth-child(2) {
    padding-top: 48px;
  }

  .product-card__meta {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .product-card__number {
    display: none;
  }

  .moment,
  .moment--reverse {
    grid-template-columns: minmax(280px, 0.9fr) minmax(230px, 1.1fr);
    gap: 3.5rem;
  }

  .menu-categories__layout,
  .story__inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .promo__inner {
    grid-template-columns: 1fr auto;
  }

  .promo__label {
    display: none;
  }

  .location {
    min-height: 640px;
  }

  .location__content {
    padding: 3.5rem var(--page-padding);
  }

  .location__details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --page-padding: 1.25rem;
    --section-space: 4.75rem;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading--split > p {
    padding: 0;
  }

  .section-heading h2,
  .story__copy h2,
  .promo__copy h2 {
    font-size: clamp(2.1rem, 9vw, 2.7rem);
  }

  .hero__inner {
    gap: 3rem;
    padding-top: 3.5rem;
    padding-bottom: 4.75rem;
  }

  .hero__content h1 {
    margin-top: 18px;
    font-size: clamp(2.65rem, 12vw, 3.25rem);
    line-height: 1.04;
  }

  .hero__description {
    margin-top: 22px;
    font-size: 16px;
  }

  .hero__actions {
    align-items: flex-start;
    gap: 20px;
  }

  .hero__visual {
    width: 100%;
    height: min(132vw, 620px);
    min-height: 490px;
  }

  .hero__visual figcaption {
    min-height: 54px;
    padding-inline: 14px;
  }

  .product-grid {
    width: calc(100% + var(--page-padding));
    grid-template-columns: none;
    grid-auto-columns: minmax(275px, 83vw);
    grid-auto-flow: column;
    gap: 16px;
    margin-top: 48px;
    padding-right: var(--page-padding);
    padding-bottom: 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
  }

  .product-grid > li {
    padding-top: 0 !important;
    scroll-snap-align: start;
  }

  .product-card__meta {
    margin-top: 18px;
  }

  .brand-statement__mark {
    height: 35px;
    font-size: 68px;
  }

  .brand-statement__text {
    font-size: clamp(2.25rem, 10vw, 3.35rem);
    line-height: 1.1;
  }

  .moment,
  .moment--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .moment--reverse .moment__image-wrap,
  .moment--reverse .moment__copy {
    order: initial;
  }

  .moment__image-wrap {
    width: 100%;
    aspect-ratio: 4 / 5;
  }

  .moment__copy {
    padding-right: 12px;
  }

  .moment__copy > p:last-child {
    font-size: 16px;
  }

  .menu-categories__layout,
  .story__inner {
    grid-template-columns: 1fr;
    gap: 3.75rem;
  }

  .category-list__item {
    min-height: 128px;
    grid-template-columns: 38px minmax(0, 1fr) 22px;
    gap: 12px;
  }

  .category-list__number {
    padding-top: 37px;
  }

  .story__visual {
    width: min(100%, 560px);
  }

  .promo__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .promo__inner .button {
    width: fit-content;
  }

  .location {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .location__media {
    min-height: 0;
    height: min(112vw, 620px);
  }

  .location__content {
    max-width: none;
    padding-top: 4.75rem;
    padding-bottom: 4.75rem;
  }

  .location__content h2 {
    font-size: clamp(2.4rem, 10vw, 3.15rem);
  }

  .location__details {
    gap: 22px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .brand__logo,
  .brand img {
    width: 36px;
    height: 36px;
  }

  .hero__actions {
    display: grid;
    justify-items: start;
  }

  .hero__note {
    margin-top: 32px;
  }

  .hero__visual figcaption span:last-child {
    display: none;
  }

  .product-grid {
    grid-auto-columns: minmax(268px, 87vw);
  }

  .story__caption {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .location__actions {
    display: grid;
  }

  .location__actions .button {
    width: 100%;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__brand {
    grid-column: auto;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 52px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
