@charset "UTF-8";

:root {
  --rice: #f3ead8;
  --paper: #fbf7ee;
  --tea: #4b3022;
  --ink: #1d241e;
  --sage: #9aa06d;
  --honey: #c98d35;
  --lacquer: #902f34;
  --berry: #7b2937;
  --line: rgba(75, 48, 34, 0.2);
  --display: "Arial Narrow", "Helvetica Neue Condensed", "PingFang TC", "Noto Sans TC", sans-serif;
  --body: "Avenir Next", "PingFang TC", "Microsoft JhengHei", sans-serif;
  --serif: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  --shell: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--tea);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-150%);
}

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

:focus-visible {
  outline: 3px solid var(--honey);
  outline-offset: 4px;
}

.announcement {
  position: relative;
  z-index: 50;
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 6px 24px;
  color: var(--rice);
  background: var(--lacquer);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.announcement p {
  margin: 0;
}

.announcement a {
  border-bottom: 1px solid currentColor;
}

.site-header {
  position: absolute;
  z-index: 40;
  top: 34px;
  left: 0;
  display: grid;
  width: 100%;
  height: 92px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(75, 48, 34, 0.2);
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease, height 220ms ease;
}

.site-header.is-scrolled {
  position: fixed;
  top: 0;
  height: 72px;
  background: rgba(251, 247, 238, 0.94);
  box-shadow: 0 8px 32px rgba(40, 30, 20, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
}

.brand__roundel {
  display: grid;
  width: 58px;
  height: 58px;
  place-content: center;
  border-radius: 50%;
  color: var(--rice);
  background: var(--tea);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0.05em;
  text-align: center;
}

.brand__roundel small {
  margin-top: 5px;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.brand__text {
  display: grid;
  line-height: 1.1;
}

.brand__text strong {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.06em;
}

.brand__text small {
  margin-top: 5px;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 42px);
  font-size: 13px;
  font-weight: 650;
}

.primary-nav a {
  position: relative;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  padding: 10px 0;
  border-bottom: 1px solid var(--tea);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: min(850px, 100vh);
  overflow: hidden;
  background: #dac7a8;
}

.hero__image,
.hero__wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  will-change: transform;
}

.hero__wash {
  background: linear-gradient(90deg, rgba(243, 234, 216, 0.9) 0%, rgba(243, 234, 216, 0.5) 33%, rgba(243, 234, 216, 0.02) 57%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: min(850px, 100vh);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 126px;
}

.eyebrow {
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.eyebrow--light {
  color: rgba(243, 234, 216, 0.74);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: clamp(58px, 7.5vw, 108px);
}

.hero h1 em,
.feature h2 em {
  font-family: var(--serif);
  font-weight: 400;
}

.hero__intro {
  max-width: 530px;
  margin-bottom: 34px;
  font-size: clamp(15px, 1.5vw, 18px);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid currentColor;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

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

.button--solid {
  color: var(--rice);
  border-color: var(--tea);
  background: var(--tea);
}

.button--solid:hover {
  border-color: var(--lacquer);
  background: var(--lacquer);
}

.button--outline:hover {
  color: var(--paper);
  background: var(--tea);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-block: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.text-link--light {
  color: var(--rice);
}

.hero__seal {
  position: absolute;
  z-index: 3;
  top: 164px;
  left: max(14px, calc((100vw - 1360px) / 2));
  color: var(--lacquer);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  opacity: 0.75;
  writing-mode: vertical-rl;
}

.hero__seal::before {
  display: block;
  width: 1px;
  height: 46px;
  margin: 0 auto 14px;
  background: currentColor;
  content: "";
}

.hero__note {
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 14px;
  color: var(--rice);
  background: rgba(29, 36, 30, 0.76);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  backdrop-filter: blur(8px);
}

.hero__note span + span::before {
  margin-right: 16px;
  color: var(--honey);
  content: "●";
}

.marquee {
  overflow: hidden;
  color: var(--rice);
  background: var(--lacquer);
}

.marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 26px;
  padding: 18px 0;
  animation: marquee 28s linear infinite;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.marquee__track i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--honey);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section-dark {
  color: var(--rice);
  background: var(--ink);
}

.flavours {
  padding: 118px 0 52px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 58px;
}

.section-heading h2,
.events h2,
.order h2,
.about h2,
.faq h2 {
  margin: 0;
  font-size: clamp(42px, 5.5vw, 78px);
}

.section-heading__aside p {
  margin: 0;
  color: rgba(243, 234, 216, 0.68);
  font-size: 14px;
}

.flavour-shelf {
  display: grid;
  width: min(100%, 1840px);
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px 16px;
  margin-inline: auto;
  padding: 28px 24px 44px;
}

.flavour-card {
  position: relative;
  display: flex;
  min-height: 0;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  overflow: hidden;
  border: 1px solid rgba(243, 234, 216, 0.14);
  border-radius: 14px;
  color: var(--tea);
  background: var(--rice);
  box-shadow: 0 10px 28px rgba(11, 20, 14, 0.14);
  transform: translateY(0) scale(1);
  transform-origin: center;
  transition: transform 320ms cubic-bezier(0.2, 0.75, 0.2, 1),
              box-shadow 320ms ease,
              border-color 320ms ease;
  will-change: transform;
}

.flavour-card__number {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  margin: 0;
  padding: 7px 10px;
  border: 1px solid rgba(75, 48, 34, 0.16);
  border-radius: 100px;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--tea);
  background: rgba(251, 247, 238, 0.9);
  box-shadow: 0 8px 22px rgba(39, 26, 18, 0.12);
  backdrop-filter: blur(10px);
}

.flavour-card__image {
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: #d8c6a4;
}

.flavour-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

@media (hover: hover) and (pointer: fine) {
  .flavour-card:hover {
    z-index: 3;
    border-color: rgba(230, 167, 65, 0.62);
    box-shadow: 0 26px 58px rgba(8, 16, 11, 0.34);
    transform: translateY(-12px) scale(1.055);
  }

  .flavour-card:hover .flavour-card__image img {
    transform: scale(1.075);
  }
}

.flavour-card__copy {
  width: 100%;
  min-height: 150px;
  padding: 20px 24px 26px;
}

.flavour-card__copy p {
  margin-bottom: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.flavour-card__copy h3 {
  margin-bottom: 4px;
  font-size: 25px;
  letter-spacing: -0.05em;
}

.flavour-card__copy span {
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
}

.shelf-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 24px;
}

.feature {
  position: relative;
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(0, 1.45fr) minmax(480px, 0.75fr);
  overflow: hidden;
  background: var(--rice);
}

.feature > img {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: 680px;
  object-fit: cover;
  object-position: 44% calc(50% - 10px);
}

.feature__copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: auto;
  min-height: 680px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  padding: 52px clamp(36px, 4.2vw, 76px) 50px clamp(34px, 3.5vw, 64px);
}

.feature h2 {
  width: 100%;
  margin-bottom: 22px;
  font-size: clamp(46px, 4vw, 62px);
  line-height: 1.02;
  text-wrap: balance;
}

.feature h2 span,
.feature h2 em {
  display: block;
  white-space: nowrap;
}

.feature__copy > p:not(.eyebrow) {
  max-width: 420px;
  margin-bottom: 24px;
}

.feature__notes {
  display: grid;
  max-width: 420px;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 0 0 26px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.feature__notes div {
  display: grid;
  gap: 2px;
}

.feature__notes dt {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.feature__notes dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 15px;
}

.craft {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--rice);
  background: #29271f;
}

.craft > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.craft__copy {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 124px 0;
}

.craft h2 {
  max-width: 520px;
  margin-bottom: 26px;
  font-size: clamp(48px, 5.2vw, 78px);
}

.craft__copy > p:not(.eyebrow) {
  max-width: 430px;
  color: rgba(243, 234, 216, 0.76);
}

.promise-list {
  max-width: 430px;
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
}

.promise-list li {
  display: grid;
  grid-template-columns: 50px 1fr;
  padding: 13px 0;
  border-top: 1px solid rgba(243, 234, 216, 0.24);
  font-size: 14px;
}

.promise-list span {
  color: var(--honey);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
}

.section-space {
  padding-top: 130px;
  padding-bottom: 130px;
}

.events {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.events__image {
  position: relative;
}

.events__image img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
}

.events__stamp {
  position: absolute;
  right: -38px;
  bottom: -35px;
  display: grid;
  width: 128px;
  height: 128px;
  place-content: center;
  border-radius: 50%;
  color: var(--rice);
  background: var(--lacquer);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  transform: rotate(7deg);
}

.events h2 {
  margin-bottom: 28px;
}

.events__copy > p:not(.eyebrow) {
  margin-bottom: 30px;
}

.event-types {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.event-types span {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
}

.order {
  padding: 118px 0 0;
  color: var(--rice);
  background: var(--lacquer);
}

.order__intro h2 {
  max-width: 730px;
}

.order-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  padding: 0;
  list-style: none;
}

.order-steps li {
  min-height: 270px;
  padding: 30px 34px;
  border-top: 1px solid rgba(243, 234, 216, 0.42);
  border-right: 1px solid rgba(243, 234, 216, 0.22);
}

.order-steps li:last-child {
  border-right: 0;
}

.order-steps li > span {
  display: block;
  margin-bottom: 56px;
  color: var(--honey);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
}

.order-steps h3 {
  margin-bottom: 10px;
  font-size: 28px;
}

.order-steps p {
  max-width: 280px;
  margin: 0;
  color: rgba(243, 234, 216, 0.72);
  font-size: 13px;
}

.order__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding: 34px 0;
  border-top: 1px solid rgba(243, 234, 216, 0.28);
}

.order__cta p {
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
}

.order__cta a {
  font-family: var(--display);
  font-size: clamp(18px, 2.5vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 10vw, 150px);
  border-bottom: 1px solid var(--line);
}

.about__lead {
  margin-bottom: 26px;
  font-family: var(--serif);
  font-size: clamp(23px, 2.4vw, 34px);
  line-height: 1.38;
}

.about__body > p:not(.about__lead) {
  color: rgba(75, 48, 34, 0.75);
}

.about__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.about__facts div {
  display: grid;
}

.about__facts strong {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.about__facts span {
  margin-top: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(60px, 10vw, 150px);
}

.faq h2 {
  font-size: clamp(42px, 4.5vw, 64px);
}

.faq__list details {
  border-top: 1px solid var(--line);
}

.faq__list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq__list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq__list summary::-webkit-details-marker {
  display: none;
}

.faq__list summary span {
  color: var(--lacquer);
  font-size: 24px;
  transition: transform 180ms ease;
}

.faq__list details[open] summary span {
  transform: rotate(45deg);
}

.faq__list details p {
  max-width: 600px;
  padding: 0 40px 24px 0;
  color: rgba(75, 48, 34, 0.72);
  font-size: 14px;
}

.site-footer {
  color: var(--rice);
  background: var(--ink);
}

.site-footer__top {
  display: flex;
  min-height: 330px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.site-footer__kicker {
  margin-bottom: 10px;
  color: var(--honey);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.site-footer h2 {
  margin: 0;
  font-size: clamp(48px, 7vw, 92px);
}

.site-footer__top > a {
  padding: 18px 0;
  border-bottom: 1px solid rgba(243, 234, 216, 0.6);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 800;
}

.site-footer__bottom {
  display: grid;
  min-height: 120px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-top: 1px solid rgba(243, 234, 216, 0.16);
}

.site-footer__bottom > p {
  margin: 0;
  color: rgba(243, 234, 216, 0.55);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.site-footer__bottom > p:last-child {
  justify-self: end;
}

.brand--footer .brand__roundel {
  color: var(--ink);
  background: var(--rice);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1);
}

.reveal--delay-1 { transition-delay: 100ms; }
.reveal--delay-2 { transition-delay: 200ms; }
.reveal--delay-3 { transition-delay: 300ms; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1200px) {
  .flavour-shelf {
    width: min(100%, 1040px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand__text,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    width: 46px;
    height: 46px;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(251, 247, 238, 0.55);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--tea);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

  .primary-nav {
    position: fixed;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    gap: 22px;
    padding: 120px 24px 60px;
    opacity: 0;
    color: var(--rice);
    background: var(--ink);
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
  }

  .primary-nav a {
    font-family: var(--display);
    font-size: clamp(34px, 7vw, 64px);
    font-weight: 800;
    letter-spacing: -0.04em;
  }

  .menu-open .brand,
  .menu-open .menu-toggle {
    position: relative;
    z-index: 3;
  }

  .menu-open .brand__roundel {
    color: var(--ink);
    background: var(--rice);
  }

  .menu-open .menu-toggle {
    border-color: rgba(243,234,216,.4);
    background: transparent;
  }

  .menu-open .menu-toggle span {
    background: var(--rice);
  }

  .hero__seal {
    display: none;
  }

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

  .section-heading__aside {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
  }

  .section-heading__aside p {
    max-width: 500px;
    margin: 0;
  }

  .feature {
    min-height: 600px;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  }

  .feature > img {
    height: 600px;
    object-position: 43% calc(50% - 10px);
  }

  .feature::after {
    display: none;
  }

  .feature__copy {
    width: auto;
    min-height: 600px;
    margin: 0;
    padding: 42px 32px;
  }

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

  .events__image {
    margin-right: 40px;
  }

  .events__copy {
    max-width: 660px;
  }

  .about,
  .faq {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: min(100% - 36px, 1180px);
  }

  .announcement {
    justify-content: space-between;
    gap: 8px;
    padding-inline: 16px;
    font-size: 9px;
    letter-spacing: 0.04em;
  }

  .site-header {
    height: 78px;
    padding-inline: 18px;
  }

  .brand__roundel {
    width: 52px;
    height: 52px;
  }

  .hero {
    min-height: 830px;
  }

  .hero__image {
    object-position: 61% center;
  }

  .hero__wash {
    background: linear-gradient(180deg, rgba(243,234,216,.83) 0%, rgba(243,234,216,.76) 52%, rgba(243,234,216,.14) 100%);
  }

  .hero__content {
    min-height: 830px;
    justify-content: flex-start;
    padding-top: 190px;
  }

  .hero h1 {
    font-size: clamp(51px, 15vw, 72px);
  }

  .hero__intro {
    max-width: 380px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .hero__note {
    right: 18px;
    bottom: 18px;
  }

  .marquee__track {
    padding-block: 14px;
  }

  .flavours {
    padding-top: 86px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2,
  .events h2,
  .order h2,
  .about h2,
  .faq h2 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .section-heading__aside {
    display: block;
  }

  .section-heading__aside p {
    margin: 0;
  }

  .flavour-shelf {
    width: min(100%, 700px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 12px;
    padding: 16px 18px 30px;
  }

  .flavour-card {
    min-height: 0;
  }

  .feature {
    min-height: 0;
    grid-template-columns: 1fr;
    background: #ead9b8;
  }

  .feature > img {
    position: relative;
    grid-column: 1;
    grid-row: auto;
    height: auto;
    aspect-ratio: 16 / 11;
    object-position: 25% calc(50% - 10px);
  }

  .feature::after {
    display: none;
  }

  .feature__copy {
    position: relative;
    width: auto;
    min-height: 0;
    grid-column: 1;
    grid-row: auto;
    margin: 0;
    padding: 42px 18px 52px;
    background: var(--rice);
  }

  .feature h2 {
    font-size: clamp(38px, 11vw, 48px);
  }

  .craft {
    min-height: 850px;
  }

  .craft > img {
    object-position: 48% center;
  }

  .craft::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(29,36,30,.82) 0%, rgba(29,36,30,.72) 48%, rgba(29,36,30,.05) 100%);
    content: "";
  }

  .craft__copy {
    z-index: 3;
    padding-top: 88px;
  }

  .craft h2 {
    font-size: clamp(43px, 12vw, 61px);
  }

  .section-space {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .events {
    gap: 66px;
  }

  .events__image {
    margin-right: 20px;
  }

  .events__image img {
    min-height: 470px;
    object-position: 40% center;
  }

  .events__stamp {
    right: -24px;
    width: 108px;
    height: 108px;
    font-size: 10px;
  }

  .order {
    padding-top: 84px;
  }

  .order-steps {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .order-steps li {
    min-height: 0;
    padding: 26px 0 34px;
    border-right: 0;
  }

  .order-steps li > span {
    margin-bottom: 28px;
  }

  .order__cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .about__facts {
    gap: 16px;
  }

  .site-footer__top {
    min-height: 360px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .site-footer__bottom {
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding-block: 24px;
  }

  .site-footer__bottom > p:first-of-type {
    justify-self: end;
    text-align: right;
  }

  .site-footer__bottom > p:last-child {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 520px) {
  .flavour-shelf {
    width: min(100%, 380px);
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .flavour-card:hover { transform: none; }
  .flavour-card:hover .flavour-card__image img { transform: none; }
}
