:root {
  --paper: #f2efe7;
  --paper-clear: #fbf8f0;
  --forest: #173126;
  --forest-deep: #0f251c;
  --kiln: #b53a2a;
  --kiln-light: #ef806c;
  --butter: #d8aa47;
  --honey-ink: #76520a;
  --ink: #173126;
  --muted: #5f625b;
  --line: rgba(23, 49, 38, 0.18);
  --light-line: rgba(251, 248, 240, 0.2);
  --serif: "Noto Serif KR", serif;
  --sans: "Pretendard Variable", Pretendard, sans-serif;
  --section-pad: clamp(5.5rem, 8.5vw, 8.5rem);
}

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

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--forest);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: var(--sans);
}

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

button,
input,
select,
textarea {
  letter-spacing: 0;
}

button,
select {
  cursor: pointer;
}

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

svg {
  width: 1em;
  height: 1em;
  stroke-width: 1.7;
}

[hidden] {
  display: none !important;
}

::selection {
  color: var(--paper-clear);
  background: var(--kiln);
}

:focus-visible {
  outline: 2px solid var(--kiln);
  outline-offset: 4px;
}

main > section[id] {
  scroll-margin-top: 116px;
}

.site-header[data-navigation-pattern="centered-masthead"] {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  width: 100%;
  min-height: 104px;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.75rem);
  padding: 0 clamp(1.5rem, 4vw, 4.5rem);
  border-bottom: 1px solid var(--line);
  color: var(--forest);
  background: rgba(242, 239, 231, 0.97);
  backdrop-filter: blur(16px);
  transition: min-height 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.site-header[data-navigation-pattern="centered-masthead"].is-scrolled {
  min-height: 76px;
  background: rgba(251, 248, 240, 0.94);
  box-shadow: 0 10px 32px rgba(15, 37, 28, 0.06);
}

.site-header .desktop-nav {
  display: contents;
}

.site-header .nav-left,
.site-header .nav-right {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 2.5vw, 2.75rem);
}

.site-header .nav-left {
  grid-column: 1;
  justify-content: flex-start;
}

.site-header .nav-right {
  grid-column: 3;
  justify-content: flex-end;
}

.site-header .nav-left a,
.site-header .nav-right a {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  font-size: 15px;
  font-weight: 650;
  white-space: nowrap;
}

.site-header .nav-left a::after,
.site-header .nav-right a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--kiln);
  opacity: 0;
  transform: scaleX(0.3);
  transform-origin: left;
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-header .nav-left a:hover::after,
.site-header .nav-right a:hover::after,
.site-header .nav-left a[aria-current="page"]::after,
.site-header .nav-right a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-header .brand {
  display: grid;
  min-width: 126px;
  min-height: 72px;
  grid-column: 2;
  place-content: center;
  text-align: center;
}

.site-header .brand strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
}

.site-header .brand small {
  margin-top: 3px;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
}

.site-header[data-navigation-pattern] .header-cta {
  min-height: 48px;
  grid-column: 4;
  padding: 0 0 0.1rem;
  border: 0;
  border-bottom: 1px solid var(--forest);
  border-radius: 0;
  font-size: 15px;
  font-weight: 750;
}

.hero {
  position: relative;
  min-height: calc(100svh - 104px);
  max-height: 920px;
  overflow: hidden;
  color: var(--paper-clear);
  background: var(--forest-deep);
}

.hero-media {
  position: absolute;
  inset: -2%;
  overflow: hidden;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-drift 24s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 20, 15, 0.92) 0%, rgba(6, 20, 15, 0.6) 34%, rgba(6, 20, 15, 0.08) 67%, rgba(6, 20, 15, 0.26) 100%);
}

.hero-copy {
  position: absolute;
  z-index: 2;
  right: clamp(1.5rem, 4vw, 4.5rem);
  bottom: clamp(9.5rem, 19vh, 12.75rem);
  left: clamp(1.5rem, 4vw, 4.5rem);
  max-width: 680px;
}

.eyebrow,
.section-index {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--kiln);
}

.section-index {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.hero .eyebrow {
  margin-bottom: 1.1rem;
  color: #efc86e;
}

.hero h1 {
  display: grid;
  gap: 0;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.7rem, 5.4vw, 5.4rem);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 1.4rem 0 0;
  color: rgba(251, 248, 240, 0.86);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
}

.hero-actions,
.final-actions {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  margin-top: 2.1rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0 1.45rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button.primary {
  color: var(--paper-clear);
  background: var(--kiln);
}

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

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

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.45rem;
  border-bottom: 1px solid currentColor;
  font-weight: 750;
  transition: color 180ms ease, transform 180ms ease;
}

.text-link:hover {
  color: #efc86e;
  transform: translateX(3px);
}

.hero-batch {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  min-height: 104px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: 1.25rem clamp(1.5rem, 4vw, 4.5rem);
  border-top: 1px solid rgba(251, 248, 240, 0.28);
  background: rgba(15, 37, 28, 0.92);
  backdrop-filter: blur(12px);
}

.hero-batch > strong {
  font-size: 13px;
  white-space: nowrap;
}

.batch-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.batch-rail span {
  display: flex;
  gap: 0.55rem;
  color: rgba(251, 248, 240, 0.72);
  font-size: 13px;
  white-space: nowrap;
}

.batch-rail b {
  color: var(--paper-clear);
  font-variant-numeric: tabular-nums;
}

.hero-batch > small {
  max-width: 200px;
  color: rgba(251, 248, 240, 0.6);
  font-size: 11px;
  line-height: 1.55;
}

.section-shell {
  width: min(100%, 1480px);
  margin-inline: auto;
  padding: var(--section-pad) clamp(1.5rem, 4vw, 4.5rem);
}

.section-intro h2,
.signature-heading h2,
.craft-heading h2,
.news-heading h2,
.visit-copy h2,
.final-copy h2,
.form-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}

.bakes {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(480px, 1.55fr) minmax(230px, 0.8fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: stretch;
}

.section-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-intro .section-index,
.signature-heading .section-index,
.craft-heading .section-index,
.news-heading .section-index,
.final-copy .section-index {
  margin-bottom: 1.2rem;
}

.section-intro .eyebrow,
.signature-heading .eyebrow,
.craft-heading .eyebrow,
.news-heading .eyebrow,
.visit-copy .eyebrow,
.form-heading .eyebrow,
.final-copy .eyebrow {
  margin-bottom: 1rem;
}

.section-intro h2 {
  font-size: clamp(2.6rem, 4vw, 4.4rem);
}

.section-intro > p:last-child {
  max-width: 260px;
  margin: auto 0 0;
  color: var(--muted);
}

.bake-timeline {
  position: relative;
  display: grid;
  border-top: 1px solid var(--line);
}

.timeline-progress {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 145px;
  width: 2px;
  background: var(--kiln);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1000ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bakes.is-visible .timeline-progress {
  transform: scaleY(1);
}

.bake-timeline article {
  position: relative;
  display: grid;
  min-height: 142px;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.bake-timeline article::before {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 139px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  content: "";
  background: var(--kiln);
  transform: translateY(-50%);
}

.bake-timeline time {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 600;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.bake-timeline article > div {
  padding-left: 0.5rem;
}

.bake-timeline small {
  color: var(--kiln);
  font-size: 11px;
  font-weight: 750;
}

.bake-timeline h3 {
  margin: 0.3rem 0 0;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
}

.bake-timeline p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 13px;
}

.bake-state {
  align-self: start;
  margin-top: 0.55rem;
  color: var(--honey-ink);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.bake-state.active {
  color: var(--kiln);
}

.bake-state.quiet {
  color: var(--muted);
}

.bakes-media {
  position: relative;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  background: var(--forest);
}

.bakes-media img {
  height: 100%;
  object-fit: cover;
  object-position: 59% center;
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bakes-media:hover img {
  transform: scale(1.025);
}

.bakes-media figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.4rem 0.7rem;
  color: var(--paper-clear);
  background: rgba(15, 37, 28, 0.88);
  font-size: 11px;
  font-weight: 750;
}

.signatures {
  display: grid;
  min-height: 900px;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  color: var(--paper);
  background: var(--forest-deep);
}

.signature-media {
  min-height: 100%;
  overflow: hidden;
}

.signature-media img {
  height: 100%;
  object-fit: cover;
  object-position: 38% center;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.signature-media:hover img {
  transform: scale(1.025);
}

.signature-copy {
  display: flex;
  flex-direction: column;
  padding: var(--section-pad) clamp(1.5rem, 5vw, 5.5rem);
}

.signature-copy .section-index,
.pickup-form .section-index,
.final-copy .section-index {
  color: rgba(251, 248, 240, 0.72);
}

.signature-copy .eyebrow,
.signature-copy .menu-row > span,
.pickup-form .eyebrow {
  color: var(--kiln-light);
}

.signature-heading h2 {
  max-width: 560px;
  font-size: clamp(3rem, 4.5vw, 5rem);
}

.signature-heading > p:last-child {
  margin: 1.35rem 0 3rem;
  color: rgba(242, 239, 231, 0.68);
}

.menu-list {
  border-top: 1px solid var(--light-line);
}

.menu-row {
  display: grid;
  min-height: 86px;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.2rem;
  border-bottom: 1px solid var(--light-line);
}

.menu-row > span {
  color: var(--kiln);
  font-family: var(--serif);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.menu-row div {
  display: grid;
  gap: 0.2rem;
}

.menu-row strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
}

.menu-row small {
  color: rgba(242, 239, 231, 0.54);
  font-size: 12px;
}

.menu-row > b {
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.menu-extra {
  display: block;
}

.menu-toggle {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  align-self: flex-start;
  gap: 1.25rem;
  margin-top: 1.5rem;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--butter);
  background: transparent;
  font-size: 14px;
  font-weight: 800;
}

.menu-toggle svg {
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] svg {
  transform: rotate(45deg);
}

.craft {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.craft-media {
  min-height: 700px;
  overflow: hidden;
}

.craft-media img {
  height: 100%;
  object-fit: cover;
}

.craft-heading h2 {
  font-size: clamp(3rem, 4.7vw, 5.2rem);
}

.craft-heading > p:last-child {
  max-width: 620px;
  margin: 1.5rem 0 0;
  color: var(--muted);
}

.craft-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.craft-facts span {
  padding: 1.15rem 0;
  text-align: center;
  font-size: 13px;
  font-weight: 750;
}

.craft-facts span + span {
  border-left: 1px solid var(--line);
}

.craft-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 3.25rem 0 0;
  padding: 0;
  list-style: none;
}

.craft-steps li {
  min-width: 0;
  padding: 0 1.5rem;
}

.craft-steps li:first-child {
  padding-left: 0;
}

.craft-steps li + li {
  border-left: 1px solid var(--line);
}

.craft-steps li > span {
  display: block;
  margin-bottom: 2rem;
  color: var(--kiln);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4vw, 4.4rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.craft-steps strong {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
}

.craft-steps p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 13px;
}

.pickup {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  color: var(--paper);
  background: var(--forest);
}

.pickup-media {
  min-height: 940px;
  overflow: hidden;
}

.pickup-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pickup-form {
  display: grid;
  align-content: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 2rem;
  padding: var(--section-pad) clamp(1.5rem, 5vw, 6rem);
}

.pickup-form .wide {
  grid-column: 1 / -1;
}

.form-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 0.52fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.form-heading h2 {
  font-size: clamp(2.8rem, 4.2vw, 4.6rem);
}

.form-heading > p {
  margin: 0 0 0.4rem;
  color: rgba(242, 239, 231, 0.64);
  font-size: 13px;
}

.form-field {
  display: grid;
  min-width: 0;
  gap: 0.55rem;
}

.form-field > span {
  font-size: 13px;
  font-weight: 750;
}

.form-field em,
.consent em {
  color: #efb39f;
  font-style: normal;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 0.8rem 0;
  border: 0;
  border-bottom: 1px solid rgba(242, 239, 231, 0.34);
  border-radius: 0;
  color: var(--paper-clear);
  background: transparent;
  font-size: 15px;
  outline: none;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.form-field textarea {
  min-height: 112px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(242, 239, 231, 0.42);
}

.form-field select {
  color-scheme: dark;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--butter);
  background: rgba(251, 248, 240, 0.035);
}

.form-submit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  margin-top: 0.75rem;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(242, 239, 231, 0.72);
  font-size: 12px;
}

.consent input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin: 0.1rem 0 0;
  accent-color: var(--kiln);
}

.form-button {
  min-width: 220px;
  color: var(--paper-clear);
  background: var(--kiln);
}

.form-button:disabled {
  cursor: wait;
  opacity: 0.6;
}

.form-feedback {
  min-height: 24px;
  margin: 0;
  color: var(--butter);
  font-size: 13px;
}

.news {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 6vw, 8rem);
}

.news-heading h2 {
  font-size: clamp(3rem, 4.3vw, 4.8rem);
}

.news-list {
  border-top: 1px solid var(--line);
}

.news-list a {
  display: grid;
  min-height: 104px;
  grid-template-columns: 74px 100px minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
  transition: color 180ms ease, background-color 180ms ease;
}

.news-list a:hover {
  color: var(--kiln);
  background: rgba(181, 58, 42, 0.035);
}

.news-list time {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-variant-numeric: tabular-nums;
}

.news-list span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.news-list strong {
  font-size: 15px;
}

.news-list svg {
  font-size: 18px;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(420px, 0.78fr);
  background: var(--paper-clear);
}

.visit-media {
  min-height: 700px;
  overflow: hidden;
}

.visit-media img {
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
}

.visit-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-pad) clamp(1.5rem, 3vw, 3.5rem);
}

.visit-copy h2 {
  font-size: clamp(2.8rem, 3.4vw, 4rem);
}

.visit-copy h2 span {
  display: block;
  white-space: nowrap;
}

.visit-copy dl {
  margin: 3rem 0 0;
  border-top: 1px solid var(--line);
}

.visit-copy dl > div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 1rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line);
}

.visit-copy dt {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.visit-copy dd {
  margin: 0;
  font-size: 14px;
  font-weight: 650;
}

.location-link {
  align-self: flex-start;
  margin-top: 2rem;
  color: var(--kiln);
}

.final {
  position: relative;
  min-height: min(900px, 100svh);
  overflow: hidden;
  color: var(--paper-clear);
  background: var(--forest-deep);
}

.final-media,
.final-shade {
  position: absolute;
  inset: 0;
}

.final-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.final-shade {
  background: linear-gradient(90deg, rgba(9, 28, 20, 0.96) 0%, rgba(9, 28, 20, 0.82) 32%, rgba(9, 28, 20, 0.15) 63%, rgba(9, 28, 20, 0.04) 100%);
}

.final-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: min(780px, calc(100svh - 116px));
  max-width: 680px;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-pad) clamp(1.5rem, 5vw, 5.5rem) 9rem;
}

.final-copy .eyebrow {
  color: var(--butter);
}

.final-copy h2 {
  font-size: clamp(3.1rem, 5vw, 5.4rem);
}

.final-copy > p:not(.eyebrow):not(.section-index) {
  max-width: 520px;
  margin: 1.5rem 0 0;
  color: rgba(251, 248, 240, 0.72);
}

.site-footer {
  position: absolute;
  z-index: 3;
  right: clamp(1.5rem, 4vw, 4.5rem);
  bottom: 0;
  left: clamp(1.5rem, 4vw, 4.5rem);
  display: grid;
  min-height: 96px;
  grid-template-columns: auto auto auto auto auto 1fr;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  border-top: 1px solid rgba(251, 248, 240, 0.25);
  color: rgba(251, 248, 240, 0.65);
  font-size: 12px;
}

.site-footer strong {
  color: var(--paper-clear);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.site-footer strong small {
  margin-left: 0.35rem;
  font-family: var(--sans);
  font-size: 8px;
}

.site-footer > small {
  justify-self: end;
}

.reveal {
  opacity: 1;
  transform: none;
}

@keyframes hero-drift {
  from { transform: translate3d(-0.45%, 0.2%, 0) scale(1.025); }
  to { transform: translate3d(0.65%, -0.3%, 0) scale(1.05); }
}

@media (max-width: 1180px) {
  .site-header[data-navigation-pattern="centered-masthead"] {
    gap: 1.25rem;
    padding-inline: 1.5rem;
  }

  .site-header .nav-left,
  .site-header .nav-right {
    gap: 1.25rem;
  }

  .bakes {
    grid-template-columns: minmax(190px, 0.6fr) minmax(450px, 1.5fr);
  }

  .bakes-media {
    min-height: 360px;
    grid-column: 1 / -1;
  }

  .bakes-media img {
    object-position: center 58%;
  }

  .hero-batch {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .hero-batch > small {
    display: none;
  }

  .news-list a {
    grid-template-columns: 64px 88px minmax(0, 1fr) auto;
    gap: 1rem;
  }
}

@media (max-width: 900px) {
  :root {
    --section-pad: 5.5rem;
  }

  main > section[id] {
    scroll-margin-top: 78px;
  }

  .site-header[data-navigation-pattern="centered-masthead"] {
    position: sticky;
    min-height: 68px;
    grid-template-columns: 1fr auto 1fr !important;
    padding: 0 1rem;
  }

  .site-header[data-navigation-pattern="centered-masthead"].is-scrolled {
    min-height: 64px;
  }

  .site-header .brand {
    min-width: 92px;
    min-height: 54px;
    grid-column: 2;
    justify-self: center;
  }

  .site-header .brand strong {
    font-size: 22px;
  }

  .site-header .brand small {
    font-size: 7px;
  }

  .site-header .mh-customer-nav-toggle {
    width: 44px;
    height: 44px;
    grid-column: 3;
    border-radius: 6px;
  }

  .mh-customer-nav-layer[data-navigation-pattern="centered-masthead"] {
    align-items: stretch;
    padding: 0;
    background: rgba(15, 37, 28, 0.4);
  }

  .mh-customer-nav-layer[data-navigation-pattern="centered-masthead"] .mh-customer-nav-panel {
    display: grid;
    max-height: none;
    align-content: start;
    padding: max(1.25rem, env(safe-area-inset-top)) 1.5rem max(2rem, env(safe-area-inset-bottom));
    border: 0;
    border-radius: 0;
    color: var(--forest);
    background: var(--paper-clear);
    box-shadow: none;
    transform: none;
  }

  .mh-customer-nav-layer[data-navigation-pattern="centered-masthead"].is-open .mh-customer-nav-panel {
    transform: none;
  }

  .mh-customer-nav-layer[data-navigation-pattern="centered-masthead"] .mh-customer-nav-panel-head strong {
    font-family: var(--serif);
    font-size: 24px;
  }

  .mh-customer-nav-layer[data-navigation-pattern="centered-masthead"] .mh-customer-nav-mobile {
    margin-top: 8vh;
  }

  .mh-customer-nav-layer[data-navigation-pattern="centered-masthead"] .mh-customer-nav-mobile > a {
    min-height: 74px;
    grid-template-columns: 42px minmax(0, 1fr);
    border-color: var(--line);
    font-family: var(--serif);
    font-size: clamp(1.35rem, 6vw, 1.8rem);
    font-weight: 600;
  }

  .mh-customer-nav-layer[data-navigation-pattern="centered-masthead"] .mh-customer-nav-mobile > a small {
    color: var(--kiln);
    font-family: var(--sans);
    font-size: 9px;
  }

  .mh-customer-nav-layer[data-navigation-pattern="centered-masthead"] .mh-customer-nav-mobile .mh-customer-nav-action {
    min-height: 58px;
    margin-top: 2rem;
    color: var(--kiln);
    background: transparent;
    border-bottom: 1px solid var(--kiln);
    border-radius: 0;
    font-family: var(--sans);
    font-size: 16px;
  }

  .hero {
    min-height: calc(100svh - 68px);
    max-height: none;
  }

  .hero-media {
    inset: -1%;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(6, 20, 15, 0.12) 0%, rgba(6, 20, 15, 0.18) 28%, rgba(6, 20, 15, 0.82) 72%, rgba(6, 20, 15, 0.96) 100%);
  }

  .hero-copy {
    right: 1.5rem;
    bottom: 9.4rem;
    left: 1.5rem;
    max-width: 560px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 8vw, 4.1rem);
  }

  .hero-batch {
    min-height: 116px;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding: 1rem 1.5rem;
  }

  .batch-rail {
    display: flex;
    gap: 1.75rem;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    scrollbar-width: none;
  }

  .batch-rail::-webkit-scrollbar {
    display: none;
  }

  .batch-rail span {
    flex: 0 0 auto;
  }

  .bakes,
  .craft,
  .news {
    grid-template-columns: 1fr;
  }

  .bakes {
    gap: 3rem;
  }

  .section-intro > p:last-child {
    max-width: 480px;
    margin-top: 1.5rem;
  }

  .bakes-media {
    min-height: 420px;
  }

  .signatures,
  .pickup,
  .visit {
    grid-template-columns: 1fr;
  }

  .signature-media {
    min-height: 560px;
  }

  .signature-copy {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .craft-media {
    min-height: 560px;
  }

  .pickup-media {
    min-height: 560px;
    max-height: 720px;
  }

  .pickup-form {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .form-heading {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .news {
    gap: 3rem;
  }

  .visit-media {
    min-height: 540px;
  }

  .final {
    min-height: 860px;
  }

  .final-media img {
    object-position: 58% center;
  }

  .final-copy {
    min-height: 730px;
    padding-bottom: 10rem;
  }

  .site-footer {
    min-height: 126px;
    grid-template-columns: repeat(3, minmax(0, auto));
    align-content: center;
    justify-content: start;
    gap: 0.45rem 1.2rem;
  }

  .site-footer span:nth-of-type(2),
  .site-footer > a,
  .site-footer > small {
    display: none;
  }
}

@media (max-width: 620px) {
  :root {
    --section-pad: 4.75rem;
  }

  body {
    font-size: 15px;
  }

  .hero-copy {
    bottom: 9.2rem;
  }

  .hero .eyebrow {
    margin-bottom: 0.8rem;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 11vw, 3.1rem);
    line-height: 1.17;
  }

  .hero-copy > p:not(.eyebrow) {
    margin-top: 1rem;
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.45rem;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 54px;
  }

  .hero-actions .text-link {
    justify-self: start;
    min-height: 40px;
  }

  .hero-batch {
    min-height: 110px;
    padding-inline: 1.5rem;
  }

  .section-shell {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .section-intro h2,
  .signature-heading h2,
  .craft-heading h2,
  .news-heading h2,
  .visit-copy h2,
  .form-heading h2,
  .final-copy h2 {
    font-size: clamp(2.45rem, 11vw, 3.2rem);
  }

  .bake-timeline article {
    min-height: 132px;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 1.25rem;
    padding: 1.25rem 0;
  }

  .timeline-progress {
    left: 95px;
  }

  .bake-timeline article::before {
    left: 89px;
  }

  .bake-timeline time {
    font-size: 2rem;
  }

  .bake-state {
    grid-column: 2;
    margin: -0.5rem 0 0;
  }

  .bakes-media {
    min-height: 310px;
  }

  .signature-media {
    min-height: 440px;
  }

  .signature-copy {
    padding: 4.75rem 1.25rem;
  }

  .menu-row {
    min-height: 82px;
    grid-template-columns: 30px minmax(0, 1fr) auto;
    gap: 0.8rem;
  }

  .menu-row strong {
    font-size: 1rem;
  }

  .menu-row small {
    font-size: 11px;
  }

  .menu-row > b {
    font-size: 13px;
  }

  .craft {
    gap: 3.5rem;
  }

  .craft-media {
    min-height: 430px;
  }

  .craft-facts {
    grid-template-columns: 1fr;
  }

  .craft-facts span {
    text-align: left;
  }

  .craft-facts span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .craft-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .craft-steps li,
  .craft-steps li:first-child {
    display: grid;
    min-height: 140px;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    padding: 1.5rem 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .craft-steps li > span {
    margin: 0;
    font-size: 2.5rem;
  }

  .pickup-media {
    min-height: 430px;
  }

  .pickup-form {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 4.75rem 1.25rem;
  }

  .pickup-form .wide {
    grid-column: auto;
  }

  .form-submit {
    grid-template-columns: 1fr;
  }

  .form-button {
    width: 100%;
    min-width: 0;
    min-height: 56px;
  }

  .news-list a {
    min-height: 116px;
    grid-template-columns: 56px minmax(0, 1fr) auto;
    gap: 0.8rem;
    padding: 1rem 0;
  }

  .news-list a span {
    grid-column: 2;
    align-self: end;
  }

  .news-list a strong {
    grid-column: 2;
    align-self: start;
    font-size: 14px;
  }

  .news-list a svg {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .visit-media {
    min-height: 400px;
  }

  .visit-copy {
    padding: 4.75rem 1.25rem;
  }

  .visit-copy h2 span {
    white-space: normal;
  }

  .visit-copy dl > div {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .final {
    min-height: 820px;
  }

  .final-shade {
    background: linear-gradient(180deg, rgba(9, 28, 20, 0.12) 0%, rgba(9, 28, 20, 0.32) 35%, rgba(9, 28, 20, 0.94) 73%, rgba(9, 28, 20, 0.98) 100%);
  }

  .final-copy {
    min-height: 680px;
    justify-content: flex-end;
    padding: 5rem 1.25rem 10.5rem;
  }

  .final-actions {
    display: grid;
    gap: 0.8rem;
  }

  .final-actions .button {
    width: 100%;
  }

  .final-actions .text-link {
    justify-self: start;
  }

  .site-footer {
    right: 1.25rem;
    left: 1.25rem;
    min-height: 132px;
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .site-footer span:nth-of-type(1) {
    font-size: 11px;
  }
}

@media (max-width: 390px) and (max-height: 760px) {
  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-copy > p:not(.eyebrow) {
    display: none;
  }

  .hero-actions {
    margin-top: 1rem;
  }
}

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

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

  .hero-media img {
    animation: none;
    transform: scale(1.025);
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .timeline-progress {
    transform: scaleY(1);
  }
}
