:root {
  --espresso: #2c221e;
  --espresso-soft: #5f514a;
  --cream: #fdfbf7;
  --cream-deep: #f4eee5;
  --terracotta: #e06d53;
  --terracotta-dark: #bd4f39;
  --green: #7ca37f;
  --green-dark: #476d50;
  --white: #fffefb;
  --line: rgba(44, 34, 30, 0.17);
  --serif: "Iowan Old Style", "Palatino Linotype", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --sans: "Avenir Next", Avenir, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --page: min(calc(100% - 40px), 1240px);
  --header-height: 76px;
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--espresso);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.025em;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

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

button {
  color: inherit;
  font: inherit;
}

[hidden] {
  display: none !important;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--espresso);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(253, 251, 247, 0.94);
  backdrop-filter: blur(12px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 26px rgba(44, 34, 30, 0.05);
}

.header-inner {
  display: flex;
  width: var(--page);
  height: 100%;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  z-index: 2;
  align-items: center;
  gap: 10px;
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  width: 39px;
  height: 39px;
  fill: none;
  stroke: var(--espresso);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-text {
  display: grid;
  gap: 5px;
  letter-spacing: 0.08em;
}

.brand-text strong {
  font-family: var(--serif);
  font-size: 0.92rem;
  font-weight: 600;
}

.brand-text span {
  color: var(--terracotta-dark);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.26em;
}

.menu-toggle {
  display: grid;
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0;
  place-content: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--espresso);
  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: var(--header-height) 0 auto;
  display: grid;
  max-height: 0;
  overflow: hidden;
  background: var(--cream);
  opacity: 0;
  visibility: hidden;
  transition: max-height 240ms ease, opacity 180ms ease, visibility 180ms ease;
}

.nav-open .primary-nav {
  max-height: calc(100vh - var(--header-height));
  border-bottom: 1px solid var(--line);
  opacity: 1;
  visibility: visible;
}

.nav-links {
  display: grid;
  width: var(--page);
  margin: 0 auto;
  padding: 18px 0 4px;
}

.nav-links a {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.35rem;
  text-decoration: none;
}

.nav-actions {
  display: flex;
  width: var(--page);
  margin: 0 auto;
  padding: 20px 0 28px;
  align-items: center;
  gap: 12px;
}

.instagram-link {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.instagram-link svg,
.instagram-heading svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.takeout-link {
  display: flex;
  min-height: 46px;
  padding: 8px 18px;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: var(--terracotta);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}

.hero {
  display: grid;
  min-height: 100svh;
  padding-top: var(--header-height);
  background: var(--cream);
}

.hero-copy {
  width: var(--page);
  margin: 0 auto;
  padding: 58px 0 42px;
}

.eyebrow {
  display: flex;
  margin: 0 0 18px;
  align-items: center;
  gap: 11px;
  color: var(--terracotta-dark);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.15rem, 10.4vw, 3.3rem);
  line-height: 1.43;
}

h2 {
  font-size: clamp(2.55rem, 11vw, 4.4rem);
  line-height: 1.08;
}

.hero-lead {
  max-width: 34rem;
  margin: 26px 0 28px;
  color: var(--espresso-soft);
  line-height: 2;
}

.button {
  display: inline-flex;
  min-width: 210px;
  min-height: 54px;
  padding: 12px 18px 12px 22px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

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

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

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

.hero-meta {
  display: flex;
  margin: 38px 0 0;
  gap: 28px;
}

.hero-meta div {
  display: grid;
  gap: 2px;
}

.hero-meta dt {
  color: var(--green-dark);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-meta dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 62svh;
  overflow: hidden;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(28, 20, 16, 0.42));
  content: "";
}

.hero-visual img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-stamp,
.hero-caption {
  position: absolute;
  z-index: 1;
  margin: 0;
  color: var(--white);
}

.hero-stamp {
  top: 24px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero-stamp b {
  color: var(--terracotta);
}

.hero-caption {
  right: 20px;
  bottom: 20px;
  font-family: var(--serif);
  font-size: 0.78rem;
  font-style: italic;
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: 96px 0;
  scroll-margin-top: var(--header-height);
}

.story {
  display: grid;
  gap: 46px;
}

.story-copy {
  max-width: 40rem;
  color: var(--espresso-soft);
}

.story-copy p {
  margin: 0 0 1.3em;
}

.story-copy .story-lead {
  margin-bottom: 1.5em;
  color: var(--espresso);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.75;
}

.story-image {
  position: relative;
  margin: 6px 0 0;
}

.story-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.story-image figcaption {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 0.88rem;
}

.story-image figcaption span {
  margin-right: 9px;
  color: var(--terracotta-dark);
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.menu-section {
  width: 100%;
  padding-right: max(20px, calc((100% - 1240px) / 2));
  padding-left: max(20px, calc((100% - 1240px) / 2));
  color: var(--cream);
  background: var(--espresso);
}

.menu-section .eyebrow {
  color: #f4a28f;
}

.menu-intro {
  display: grid;
  gap: 28px;
}

.menu-intro > p {
  max-width: 38rem;
  margin: 0;
  color: rgba(253, 251, 247, 0.7);
}

.menu-tabs {
  display: flex;
  margin: 48px -20px 0;
  padding: 0 20px 14px;
  overflow-x: auto;
  gap: 8px;
  scrollbar-width: none;
}

.menu-tabs::-webkit-scrollbar {
  display: none;
}

.menu-tabs button {
  min-height: 45px;
  padding: 9px 15px;
  flex: 0 0 auto;
  border: 1px solid rgba(253, 251, 247, 0.22);
  border-radius: 999px;
  color: rgba(253, 251, 247, 0.68);
  background: transparent;
  font-size: 0.76rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.menu-tabs button[aria-selected="true"] {
  border-color: var(--terracotta);
  color: var(--white);
  background: var(--terracotta);
}

.menu-panels {
  min-height: 590px;
  margin-top: 15px;
}

.menu-panel {
  border-top: 1px solid rgba(253, 251, 247, 0.2);
}

.menu-item {
  display: grid;
  padding: 27px 0 26px;
  border-bottom: 1px solid rgba(253, 251, 247, 0.16);
  gap: 13px;
}

.menu-item > p {
  margin: 0;
  color: rgba(253, 251, 247, 0.62);
  font-size: 0.9rem;
  line-height: 1.8;
}

.menu-item h3,
.menu-item .item-en {
  margin: 0;
}

.menu-item .item-en {
  margin-bottom: 5px;
  color: #d9cfc7;
  font-family: var(--serif);
  font-size: 0.8rem;
  font-style: italic;
}

.menu-item h3 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

.signature {
  position: relative;
  margin: 0 -13px;
  padding-right: 13px;
  padding-left: 13px;
  background: rgba(224, 109, 83, 0.08);
}

.signature-label {
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 8px;
  color: var(--espresso);
  background: #f4a28f;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bakery-banner {
  position: relative;
  margin: 56px 0 0;
  overflow: hidden;
}

.bakery-banner::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20, 13, 10, 0.6));
  content: "";
}

.bakery-banner img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.bakery-banner figcaption {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 14px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 0.82rem;
  font-style: italic;
}

.features {
  display: grid;
  gap: 50px;
}

.feature-grid {
  display: grid;
  border-top: 1px solid var(--line);
}

.feature-card {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--cream-deep);
  font-size: 1.2rem;
}

.feature-en {
  margin: 0 0 5px;
  color: var(--green-dark);
  font-family: var(--serif);
  font-size: 0.8rem;
  font-style: italic;
}

.feature-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.feature-card > p:last-child {
  margin: 14px 0 0;
  color: var(--espresso-soft);
  font-size: 0.9rem;
}

.social {
  width: 100%;
  padding-right: max(20px, calc((100% - 1240px) / 2));
  padding-left: max(20px, calc((100% - 1240px) / 2));
  background: var(--cream-deep);
}

.social-intro {
  display: grid;
  gap: 28px;
}

.social-intro > p {
  max-width: 38rem;
  margin: 0;
  color: var(--espresso-soft);
}

.social-cards {
  display: grid;
  margin-top: 50px;
  gap: 18px;
}

.social-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  color: var(--white);
  text-decoration: none;
}

.social-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 21, 17, 0.05), rgba(28, 21, 17, 0.78));
  content: "";
  transition: background 220ms ease;
}

.social-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.social-card:first-child img {
  object-position: center 68%;
}

.social-card:hover img {
  transform: scale(1.035);
}

.social-overlay {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 23px;
  left: 24px;
  display: grid;
}

.social-platform {
  margin-bottom: 10px;
  color: #f4a28f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.social-overlay strong {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.45;
}

.social-cta {
  margin-top: 18px;
  font-size: 0.75rem;
  font-weight: 700;
}

.instagram-block {
  margin-top: 72px;
}

.instagram-heading {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  justify-content: space-between;
}

.instagram-heading > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.instagram-heading > div span {
  display: grid;
  line-height: 1.3;
}

.instagram-heading strong {
  font-family: var(--serif);
  font-size: 1.05rem;
}

.instagram-heading small {
  color: var(--espresso-soft);
  font-size: 0.68rem;
}

.instagram-heading a {
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.insta-tile {
  aspect-ratio: 1;
  overflow: hidden;
  background: #ded5ca;
}

.insta-tile img {
  height: 100%;
  object-fit: cover;
}

.insta-placeholder {
  display: grid;
  place-content: center;
  color: var(--cream);
  background: var(--terracotta);
  text-align: center;
}

.insta-placeholder.green {
  background: var(--green-dark);
}

.insta-placeholder span {
  font-family: var(--serif);
  font-size: 2rem;
}

.insta-placeholder small {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.access {
  display: grid;
  gap: 52px;
}

.access-content {
  display: grid;
  gap: 45px;
}

.access-details h3 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.access-details dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.access-details dl > div {
  display: grid;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 78px 1fr;
  gap: 13px;
}

.access-details dt {
  color: var(--green-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.access-details dd {
  margin: 0;
  font-size: 0.9rem;
}

.access-details dd small {
  color: var(--espresso-soft);
  font-size: 0.72rem;
}

.access-details dd span {
  margin-left: 6px;
  color: var(--espresso-soft);
  font-size: 0.72rem;
}

.map-placeholder {
  position: relative;
  display: grid;
  min-height: 390px;
  overflow: hidden;
  place-items: center;
  background: #dfe8db;
}

.map-lines,
.map-lines::before,
.map-lines::after {
  position: absolute;
  inset: -20%;
  content: "";
  transform: rotate(-9deg);
}

.map-lines {
  background: repeating-linear-gradient(40deg, transparent 0 62px, rgba(71, 109, 80, 0.12) 63px 68px, transparent 69px 114px);
}

.map-lines::before {
  border: 30px solid rgba(253, 251, 247, 0.55);
  border-right-width: 90px;
  transform: rotate(54deg) scale(0.8);
}

.map-lines::after {
  border: 8px solid rgba(224, 109, 83, 0.18);
  border-radius: 50%;
  transform: rotate(18deg) scale(0.65);
}

.map-pin {
  position: absolute;
  z-index: 1;
  top: 39%;
  left: 54%;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50% 50% 50% 0;
  background: var(--terracotta);
  box-shadow: 0 11px 24px rgba(44, 34, 30, 0.2);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.map-pin span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cream);
}

.map-label {
  position: absolute;
  z-index: 2;
  bottom: 18px;
  left: 18px;
  display: grid;
  min-width: 185px;
  padding: 15px 18px;
  background: rgba(253, 251, 247, 0.94);
  box-shadow: 0 8px 28px rgba(44, 34, 30, 0.12);
}

.map-label span,
.map-label small {
  color: var(--green-dark);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-label strong {
  margin: 2px 0;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.site-footer {
  display: grid;
  padding: 54px 20px 28px;
  color: var(--cream);
  background: var(--espresso);
  text-align: center;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-decoration: none;
}

.footer-brand span {
  color: #f4a28f;
  font-size: 0.72rem;
}

.site-footer > p {
  margin: 8px 0 0;
  color: rgba(253, 251, 247, 0.58);
  font-family: var(--serif);
  font-size: 0.72rem;
  font-style: italic;
}

.site-footer .copyright {
  margin-top: 35px;
  color: rgba(253, 251, 247, 0.45);
  font-family: var(--sans);
  font-size: 0.61rem;
  font-style: normal;
  letter-spacing: 0.08em;
}

@media (min-width: 620px) {
  :root {
    --page: min(calc(100% - 72px), 1240px);
  }

  .hero-copy {
    padding-top: 76px;
    padding-bottom: 58px;
  }

  h1 {
    font-size: clamp(2.9rem, 7.5vw, 4.6rem);
  }

  .section {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .story-image img,
  .bakery-banner img {
    aspect-ratio: 16 / 9;
  }

  .menu-section,
  .social {
    padding-right: max(36px, calc((100% - 1240px) / 2));
    padding-left: max(36px, calc((100% - 1240px) / 2));
  }

  .menu-tabs {
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
  }

  .menu-item {
    grid-template-columns: minmax(230px, 0.8fr) 1fr;
    align-items: center;
    gap: 35px;
  }

  .menu-item.simple {
    grid-template-columns: 1fr;
  }

  .menu-panels {
    min-height: 520px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card:nth-child(odd) {
    padding-right: 28px;
    border-right: 1px solid var(--line);
  }

  .feature-card:nth-child(even) {
    padding-left: 28px;
  }

  .social-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .map-placeholder {
    min-height: 480px;
  }
}

@media (min-width: 960px) {
  :root {
    --header-height: 90px;
  }

  body.nav-open {
    overflow: auto;
  }

  .menu-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: flex;
    max-height: none;
    overflow: visible;
    align-items: center;
    gap: clamp(24px, 3vw, 48px);
    background: transparent;
    opacity: 1;
    visibility: visible;
  }

  .nav-links {
    display: flex;
    width: auto;
    padding: 0;
    gap: clamp(19px, 2.2vw, 34px);
  }

  .nav-links a {
    position: relative;
    padding: 12px 0;
    border: 0;
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 600;
  }

  .nav-links a::after {
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 1px;
    background: var(--terracotta);
    content: "";
    transform: scaleX(0);
    transition: transform 180ms ease;
  }

  .nav-links a:hover::after {
    transform: scaleX(1);
  }

  .nav-actions {
    width: auto;
    margin: 0;
    padding: 0;
  }

  .instagram-link {
    width: 40px;
    height: 40px;
  }

  .takeout-link {
    min-width: 155px;
    min-height: 44px;
    padding: 8px 15px;
    gap: 20px;
    font-size: 0.76rem;
  }

  .hero {
    grid-template-columns: minmax(420px, 0.88fr) minmax(520px, 1.12fr);
    min-height: 770px;
  }

  .hero-copy {
    width: auto;
    max-width: none;
    margin-right: clamp(30px, 3vw, 48px);
    margin-left: max(42px, calc((100vw - 1240px) / 2));
    padding: 90px 0 60px;
    align-self: center;
  }

  h1 {
    font-size: clamp(2.8rem, 3.45vw, 3.65rem);
    line-height: 1.5;
  }

  .hero-visual {
    height: calc(100svh - var(--header-height));
    min-height: 680px;
  }

  .hero-stamp {
    top: 34px;
    right: 34px;
  }

  .hero-caption {
    right: 34px;
    bottom: 28px;
  }

  .story {
    grid-template-columns: 0.65fr 1fr;
    grid-template-areas: "heading copy" "image image";
    gap: 55px 9vw;
  }

  .story-heading {
    grid-area: heading;
  }

  .story-copy {
    grid-area: copy;
    padding-top: 35px;
  }

  .story-image {
    grid-area: image;
    width: 86%;
    margin: 25px 0 0 auto;
  }

  .story-image img {
    aspect-ratio: 16 / 8.1;
  }

  .menu-intro,
  .social-intro {
    grid-template-columns: 1fr 0.8fr;
    align-items: end;
    gap: 80px;
  }

  .menu-tabs {
    margin-top: 70px;
    gap: 11px;
  }

  .menu-tabs button {
    padding-right: 24px;
    padding-left: 24px;
  }

  .menu-item {
    grid-template-columns: minmax(340px, 0.85fr) 1fr;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .menu-panels {
    min-height: 515px;
  }

  .bakery-banner {
    width: 82%;
    margin: 70px 0 0 auto;
  }

  .bakery-banner img {
    aspect-ratio: 16 / 7.5;
  }

  .features {
    grid-template-columns: 0.72fr 1.28fr;
    align-items: start;
    gap: 9vw;
  }

  .feature-heading {
    position: sticky;
    top: calc(var(--header-height) + 40px);
  }

  .feature-card {
    min-height: 275px;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .feature-card:nth-child(odd) {
    padding-right: 36px;
  }

  .feature-card:nth-child(even) {
    padding-left: 36px;
  }

  .social-cards {
    margin-top: 72px;
    gap: 24px;
  }

  .social-card {
    min-height: 560px;
  }

  .social-card:first-child {
    margin-top: 70px;
  }

  .social-overlay {
    right: 34px;
    bottom: 32px;
    left: 34px;
  }

  .social-overlay strong {
    font-size: 2.1rem;
  }

  .instagram-block {
    margin-top: 110px;
  }

  .instagram-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
  }

  .access {
    grid-template-columns: 0.82fr 1.18fr;
    align-items: center;
    gap: 8vw;
  }

  .access-content {
    gap: 64px;
  }

  .map-placeholder {
    min-height: 610px;
  }

  .site-footer {
    padding: 70px 40px 32px;
  }
}

@media (min-width: 1250px) {
  .brand-text strong {
    font-size: 1.02rem;
  }

  .brand-mark {
    width: 43px;
    height: 43px;
  }

  .story-image {
    width: 80%;
  }
}

@media (max-width: 390px) {
  :root {
    --page: min(calc(100% - 30px), 1240px);
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-text strong {
    font-size: 0.8rem;
  }

  .brand-text span {
    font-size: 0.5rem;
  }

  .hero-copy {
    padding-top: 48px;
  }

  h1 {
    font-size: 2rem;
  }

  .hero-meta {
    gap: 21px;
  }

  .section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .menu-section,
  .social {
    padding-right: 15px;
    padding-left: 15px;
  }

  .menu-tabs {
    margin-right: -15px;
    margin-left: -15px;
    padding-right: 15px;
    padding-left: 15px;
  }
}

@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;
  }
}
