:root {
  color-scheme: light;
  --cream: #f3e7d6;
  --cream-light: #fbf7f0;
  --paper: #f8f1e7;
  --ink: #2b170f;
  --ink-soft: #644f43;
  --forest: #1d2926;
  --forest-light: #2d3b36;
  --terracotta: #b95132;
  --terracotta-dark: #8e3824;
  --gold: #e2ac3d;
  --line: rgba(43, 23, 15, 0.18);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --shell: min(1180px, calc(100% - 48px));
  --radius: 1.4rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  transition: transform 180ms ease;
}

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

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

.section {
  padding-block: clamp(5.5rem, 10vw, 9rem);
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(43, 23, 15, 0.13);
}

.header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.8rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.brand-mark svg {
  width: 1.8rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.03rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-copy small {
  margin-top: 0.28rem;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.27em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.2rem);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.main-nav a {
  position: relative;
  text-decoration: none;
}

.main-nav a:not(.nav-accent)::after,
.site-footer nav a::after {
  position: absolute;
  bottom: -0.3rem;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  content: "";
  transition: transform 200ms ease;
}

.main-nav a:hover::after,
.site-footer nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-accent {
  padding: 0.7rem 1rem;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.hero {
  overflow: hidden;
  padding-top: 88px;
  background: var(--cream);
}

.hero-grid {
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
  padding-block: clamp(4.5rem, 9vw, 7rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-index {
  margin: 0 0 1.6rem;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.eyebrow > span {
  width: 1.9rem;
  height: 1px;
  background: currentColor;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

h1 {
  max-width: 760px;
  margin-bottom: 1.7rem;
  font-size: clamp(4rem, 7.5vw, 7.7rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(3.2rem, 6.3vw, 6.2rem);
}

h1 em,
h2 em {
  color: var(--terracotta);
  font-weight: 400;
}

.hero-lead {
  max-width: 34rem;
  margin-bottom: 2.2rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  background: var(--ink);
  color: #fff;
}

.button-primary:hover {
  background: var(--terracotta-dark);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 800;
}

.text-link span {
  font-size: 1.2em;
  transition: transform 180ms ease;
}

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

.hero-note {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 4rem;
}

.hero-note-icon {
  display: grid;
  width: 2.4rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
}

.hero-note p {
  margin: 0;
  font-family: var(--serif);
  font-size: 0.92rem;
  line-height: 1.3;
}

.hero-visual {
  position: relative;
  margin: 0;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 48% 48% 1.5rem 1.5rem;
  background: #d2b99c;
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(34, 18, 10, 0.2));
  content: "";
  pointer-events: none;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 1.5rem;
  bottom: 1.4rem;
  color: #fff;
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
}

.hero-stamp {
  position: absolute;
  z-index: 3;
  top: 12%;
  left: -3.2rem;
  display: grid;
  width: 6.5rem;
  aspect-ratio: 1;
  place-items: center;
  transform: rotate(-10deg);
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--gold);
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.05;
  text-align: center;
}

.hero-ticker {
  overflow: hidden;
  border-top: 1px solid rgba(43, 23, 15, 0.14);
  border-bottom: 1px solid rgba(43, 23, 15, 0.14);
  background: var(--cream-light);
}

.hero-ticker > div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 2.3rem;
  padding-block: 1rem;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-style: italic;
  white-space: nowrap;
}

.hero-ticker i {
  color: var(--terracotta);
  font-family: var(--sans);
  font-size: 0.58rem;
  font-style: normal;
}

.intro {
  background: var(--cream-light);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.intro-copy {
  padding-top: 2.6rem;
}

.lead-serif {
  margin-bottom: 1.8rem;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.35;
}

.intro-copy > p:not(.lead-serif),
.season-copy > p:not(.lead-serif) {
  color: var(--ink-soft);
}

.text-link-dark {
  margin-top: 1rem;
}

.essentials {
  background: #e8c46f;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.42fr);
  align-items: end;
  gap: 4rem;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.section-heading > p {
  margin-bottom: 0;
  padding-bottom: 0.6rem;
  color: rgba(43, 23, 15, 0.75);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.product-card {
  overflow: hidden;
  border: 1px solid rgba(43, 23, 15, 0.12);
  border-radius: var(--radius);
  background: var(--cream-light);
}

.product-art {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.product-card-bread .product-art {
  background: #b95234;
}

.loaf {
  position: absolute;
  display: block;
  width: 13rem;
  height: 7rem;
  transform: rotate(-13deg);
  border: 2px solid #f3d399;
  border-radius: 55% 55% 43% 43%;
  background: #9b3b26;
}

.loaf::after {
  position: absolute;
  inset: 1.2rem 1.6rem;
  border-top: 2px solid #f3d399;
  border-bottom: 2px solid #f3d399;
  border-radius: 50%;
  content: "";
}

.loaf-one {
  right: -2rem;
  bottom: 1.5rem;
}

.loaf-two {
  top: 1.2rem;
  left: -4rem;
  transform: rotate(20deg) scale(0.82);
  opacity: 0.7;
}

.flour-line {
  position: absolute;
  right: 2.4rem;
  bottom: 3rem;
  width: 8rem;
  height: 1px;
  transform: rotate(-20deg);
  background: rgba(255, 240, 206, 0.55);
  box-shadow: 0 8px rgba(255, 240, 206, 0.28), 0 16px rgba(255, 240, 206, 0.16);
}

.product-card-viennoiserie .product-art {
  background: #e5a734;
}

.sun-disc {
  position: absolute;
  top: -5rem;
  left: -4rem;
  width: 17rem;
  aspect-ratio: 1;
  border: 1px solid rgba(43, 23, 15, 0.24);
  border-radius: 50%;
}

.croissant-shape,
.croissant-shape::after {
  position: absolute;
  border-radius: 50%;
}

.croissant-shape {
  right: 2.6rem;
  bottom: 1.6rem;
  width: 14rem;
  height: 11rem;
  transform: rotate(-14deg);
  background: var(--ink);
}

.croissant-shape::after {
  top: -1.8rem;
  left: 1.9rem;
  width: 10rem;
  height: 9rem;
  background: #e5a734;
  content: "";
}

.product-card-pastry .product-art {
  background: var(--forest);
}

.pastry-plate {
  position: absolute;
  right: 2.5rem;
  bottom: 3rem;
  width: 14rem;
  height: 1.2rem;
  border: 1px solid #e2c37d;
  border-radius: 50%;
}

.pastry-dome {
  position: absolute;
  right: 5rem;
  bottom: 3.8rem;
  width: 9rem;
  height: 8rem;
  border: 1px solid #e2c37d;
  border-radius: 50% 50% 42% 42%;
  background: var(--forest-light);
}

.pastry-dome::after {
  position: absolute;
  top: 1.1rem;
  left: 1rem;
  width: 6.7rem;
  height: 0.7rem;
  border-top: 1px solid #e2c37d;
  border-radius: 50%;
  content: "";
}

.pastry-dot {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: var(--terracotta);
}

.pastry-dot-one {
  top: 2.2rem;
  left: 2.2rem;
  width: 2.2rem;
  aspect-ratio: 1;
}

.pastry-dot-two {
  top: 5.1rem;
  left: 5.2rem;
  width: 0.75rem;
  aspect-ratio: 1;
  background: var(--gold);
}

.product-content {
  position: relative;
  min-height: 245px;
  padding: 2rem;
}

.product-number {
  position: absolute;
  top: 2.2rem;
  right: 2rem;
  font-size: 0.72rem;
  font-weight: 800;
}

.product-content h3 {
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 500;
}

.product-content p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.craft {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  color: var(--cream-light);
}

.craft::before {
  position: absolute;
  top: -12rem;
  left: -10rem;
  width: 34rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.craft-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(4rem, 9vw, 9rem);
}

.section-index-light {
  color: #c4d0ca;
}

.craft h2 em {
  color: var(--gold);
}

.craft-title-wrap > p:last-child {
  max-width: 31rem;
  margin-top: 2rem;
  color: #bdc8c3;
}

.craft-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.craft-list li {
  display: grid;
  grid-template-columns: 2.2rem 1fr auto;
  gap: 1.3rem;
  padding-block: 2.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.craft-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.craft-list > li > span {
  padding-top: 0.5rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
}

.craft-list h3 {
  margin-bottom: 0.6rem;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.craft-list p {
  max-width: 34rem;
  margin-bottom: 0;
  color: #bdc8c3;
  font-size: 0.93rem;
}

.craft-list i {
  color: var(--gold);
  font-size: 1.25rem;
  font-style: normal;
}

.season {
  background: var(--cream-light);
}

.season-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) 1fr;
  align-items: center;
  gap: clamp(4rem, 9vw, 9rem);
}

.season-art {
  position: relative;
  display: grid;
  min-height: 610px;
  place-items: center;
  overflow: hidden;
  border-radius: 50% 50% 1.5rem 1.5rem;
  background: var(--terracotta);
}

.season-art svg {
  position: absolute;
  z-index: 2;
  bottom: -3rem;
  left: 50%;
  width: 70%;
  transform: translateX(-50%);
  fill: none;
  stroke: #f4ce7b;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.season-circle {
  position: absolute;
  top: 4rem;
  left: 50%;
  width: 20rem;
  aspect-ratio: 1;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 235, 190, 0.35);
  border-radius: 50%;
}

.season-word {
  position: absolute;
  z-index: 1;
  top: 7rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 235, 190, 0.83);
  font-family: var(--serif);
  font-size: clamp(4.5rem, 9vw, 8rem);
  font-style: italic;
  letter-spacing: -0.07em;
}

.season-copy .lead-serif {
  margin-top: 2.2rem;
}

.button-outline {
  margin-top: 1.1rem;
  border-color: var(--ink);
}

.button-outline:hover {
  background: var(--ink);
  color: #fff;
}

.location {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  color: var(--cream-light);
}

.location::before {
  position: absolute;
  top: -12rem;
  right: -10rem;
  width: 34rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.location-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.42fr);
  align-items: end;
  gap: 4rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.location-heading h2 em {
  color: var(--gold);
}

.location-heading > p {
  margin-bottom: 0.7rem;
  color: #bdc8c3;
}

.location-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.28fr);
  gap: 1rem;
}

.location-card,
.map-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.location-card {
  display: flex;
  min-height: 510px;
  flex-direction: column;
  padding: clamp(2rem, 4vw, 3.2rem);
  background: var(--forest-light);
}

.location-kicker {
  margin-bottom: 3rem;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-style: italic;
}

.contact-list {
  display: grid;
  gap: 1.9rem;
  margin: 0 0 2.5rem;
  font-style: normal;
}

.contact-item {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: 1rem;
  align-items: start;
}

.contact-icon {
  display: grid;
  width: 2.75rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--gold);
}

.contact-icon svg {
  width: 1.4rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.contact-label {
  display: block;
  margin-bottom: 0.3rem;
  color: #96a69f;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.contact-item p,
.contact-item a {
  margin: 0;
  color: var(--cream-light);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.35;
}

.contact-item a {
  text-decoration-color: rgba(255, 255, 255, 0.4);
}

.button-map {
  align-self: flex-start;
  margin-top: auto;
  background: var(--gold);
  color: var(--ink);
}

.button-map:hover {
  background: var(--cream-light);
}

.location-source {
  margin: 1rem 0 0;
  color: #96a69f;
  font-size: 0.72rem;
  line-height: 1.45;
}

.map-frame {
  min-height: 510px;
  background: #d8cbb6;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 510px;
  filter: saturate(0.82) contrast(0.96);
}

.closing {
  padding-block: clamp(5rem, 9vw, 8rem);
  background: var(--gold);
  text-align: center;
}

.closing-inner {
  max-width: 980px;
}

.eyebrow-light {
  justify-content: center;
}

.closing h2 {
  font-size: clamp(3.5rem, 7vw, 7rem);
}

.closing h2 em {
  color: var(--terracotta-dark);
}

.closing > .closing-inner > p:last-child {
  max-width: 42rem;
  margin: 2rem auto 0;
  font-family: var(--serif);
  font-size: 1.25rem;
}

.site-footer {
  padding-block: 3.5rem;
  background: var(--ink);
  color: var(--cream-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.7fr auto;
  align-items: start;
  gap: 2.5rem;
}

.brand-footer {
  color: var(--cream-light);
}

.site-footer p {
  margin: 0;
  color: #cdbeb2;
  font-size: 0.83rem;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}

.site-footer nav a {
  position: relative;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.copyright {
  text-align: right;
}

.not-found-page {
  min-height: 100vh;
  background: var(--forest);
}

.not-found {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  overflow: hidden;
  padding: 2rem;
  background: var(--forest);
  color: var(--cream-light);
}

.not-found::before,
.not-found::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.not-found::before {
  top: -16rem;
  right: -12rem;
  width: 40rem;
  aspect-ratio: 1;
}

.not-found::after {
  bottom: -10rem;
  left: -7rem;
  width: 25rem;
  aspect-ratio: 1;
}

.not-found-inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
  text-align: center;
}

.brand-not-found {
  margin-bottom: clamp(4rem, 10vh, 8rem);
}

.not-found-code {
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.not-found h1 {
  margin-bottom: 1.5rem;
  color: var(--cream-light);
  font-size: clamp(4.5rem, 12vw, 9rem);
}

.not-found-inner > p:not(.not-found-code) {
  max-width: 32rem;
  margin: 0 auto 2rem;
  color: #bdc8c3;
}

.button-light {
  background: var(--gold);
  color: var(--ink);
}

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

.not-found-mark {
  position: absolute;
  z-index: 0;
  right: -2vw;
  bottom: -10vw;
  color: rgba(255, 255, 255, 0.028);
  font-family: var(--serif);
  font-size: 45vw;
  font-weight: 700;
  letter-spacing: -0.12em;
  line-height: 0.7;
}

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

  .header-inner {
    min-height: 82px;
  }

  .main-nav a:not(.nav-accent) {
    display: none;
  }

  .hero {
    padding-top: 82px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr 0.84fr;
    gap: 2rem;
  }

  h1 {
    font-size: clamp(3.7rem, 8.6vw, 5.8rem);
  }

  .hero-stamp {
    left: -2rem;
    width: 5rem;
    font-size: 0.78rem;
  }

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

  .product-card:last-child {
    grid-column: 1 / -1;
  }

  .craft-grid,
  .season-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .craft-title-wrap {
    max-width: 660px;
  }

  .season-art {
    width: min(100%, 520px);
    min-height: 640px;
    margin-inline: auto;
  }

  .season-copy {
    max-width: 660px;
  }

  .location-card {
    min-height: 460px;
  }

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

  .copyright {
    text-align: left;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(100% - 28px, 560px);
  }

  .section {
    padding-block: 5.5rem;
  }

  .header-inner {
    gap: 1rem;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .nav-accent {
    padding: 0.6rem 0.82rem;
    font-size: 0.72rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 4rem;
  }

  h1 {
    font-size: clamp(3.6rem, 16vw, 5.5rem);
  }

  h2 {
    font-size: clamp(3rem, 13vw, 4.6rem);
  }

  .hero-note {
    margin-top: 2.6rem;
  }

  .hero-visual {
    width: min(100%, 480px);
    margin-top: 1rem;
    margin-inline: auto;
  }

  .hero-image-wrap {
    aspect-ratio: 4 / 4.7;
  }

  .hero-stamp {
    top: 7%;
    left: -0.75rem;
  }

  .hero-ticker > div {
    gap: 1.5rem;
  }

  .intro-grid,
  .section-heading,
  .location-heading {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .intro-copy {
    padding-top: 0;
  }

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

  .product-card:last-child {
    grid-column: auto;
  }

  .product-art {
    height: 240px;
  }

  .product-content {
    min-height: 220px;
  }

  .craft-grid {
    gap: 3rem;
  }

  .craft-list li {
    grid-template-columns: 1.8rem 1fr;
  }

  .craft-list i {
    display: none;
  }

  .season-art {
    min-height: 520px;
  }

  .season-word {
    top: 5.5rem;
  }

  .location-card {
    min-height: 430px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 420px;
  }

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

@media (max-width: 420px) {
  .brand-mark {
    width: 2.4rem;
  }

  .brand-copy small {
    letter-spacing: 0.2em;
  }

  .nav-accent {
    padding: 0.55rem 0.7rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-stamp {
    width: 4.7rem;
  }

  .season-art {
    min-height: 440px;
  }

  .not-found {
    padding-inline: 1.25rem;
  }
}

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

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