@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400 600;
  font-display: block;
  src: url('assets/fonts/cormorant-garamond-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400 600;
  font-display: block;
  src: url('assets/fonts/cormorant-garamond-italic-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: block;
  src: url('assets/fonts/dm-sans-latin.woff2') format('woff2');
}

:root {
  --cream: #f8f5ee;
  --paper: #fdfbf7;
  --soft: #eee8de;
  --espresso: #2e2119;
  --ink: #302923;
  --muted: #776e64;
  --bronze: #a36b43;
  --gold: #d9b891;
  --line: #ded6c9;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', Arial, sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
  scrollbar-gutter: stable;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.modal-open {
  overflow: hidden;
}
#main-content {
  animation: page-content-arrival 150ms ease-out both;
}
@keyframes page-content-arrival {
  from {
    opacity: 0.95;
  }
  to {
    opacity: 1;
  }
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}
svg {
  display: inline-block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  vertical-align: middle;
}
figure,
blockquote {
  margin: 0;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.06;
}
h1 {
  font-size: 64px;
  letter-spacing: -0.05em;
}
h2 {
  font-size: 44px;
  letter-spacing: -0.035em;
}
h3 {
  font-size: 26px;
  letter-spacing: -0.025em;
}
h1 em,
h2 em {
  color: var(--bronze);
  font-weight: 400;
}
p + p {
  margin-top: 16px;
}
::selection {
  background: #e3c9a9;
  color: var(--espresso);
}
:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 5px;
}
[hidden] {
  display: none !important;
}
.container {
  /* Preserve the 1200px desktop content cap and 30px minimum side gutters. */
  width: calc(100% - 60px);
  max-width: 1200px;
  margin-inline: auto;
}
.section {
  padding-block: 92px;
}
.section-soft {
  background: var(--soft);
}
.eyebrow {
  color: var(--bronze);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.19em;
  line-height: 1.8;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow-line {
  display: inline-block;
  width: 24px;
  height: 1px;
  margin: 0 10px 3px 0;
  background: var(--bronze);
}
.button {
  display: inline-flex;
  min-height: 48px;
  padding: 13px 25px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.button span,
.text-link span {
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
}
.button:hover {
  transform: translateY(-2px);
}
.button-dark {
  background: var(--espresso);
  color: var(--cream);
}
.button-dark:hover {
  background: #513829;
}
.button-outline {
  border-color: #b9aa99;
  color: var(--espresso);
  background: transparent;
}
.button-outline:hover {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
}
.button-cream {
  background: var(--cream);
  color: var(--espresso);
}
.button-cream:hover {
  background: var(--gold);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 500;
  padding-block: 8px;
  border-bottom: 1px solid #bba893;
  transition:
    color 0.2s,
    gap 0.2s;
  white-space: nowrap;
}
.text-link:hover {
  color: var(--bronze);
  gap: 25px;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: -70px;
  left: 20px;
  padding: 12px 22px;
  background: var(--cream);
  box-shadow: 0 4px 18px #0002;
}
.skip-link:focus {
  top: 12px;
}

/* A single, quiet identity across every page. */
#site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 89px;
  background: var(--espresso);
}
.site-header {
  background: var(--espresso);
  color: var(--cream);
  border-bottom: 1px solid #ffffff12;
}
.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-mark {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid #b798716e;
  border-radius: 50%;
  color: var(--gold);
  font: italic 25px var(--serif);
  letter-spacing: -5px;
  padding-right: 4px;
  position: relative;
}
.site-header .brand,
.footer-brand .brand {
  gap: 0;
}
.brand-portrait {
  display: block;
  width: 45px;
  height: 45px;
  margin-left: -9px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-mark::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid #b7987136;
  border-radius: 50%;
}
.brand-name {
  display: block;
  font: 28px/1.1 var(--serif);
  letter-spacing: -0.035em;
}
.brand-tagline {
  display: block;
  font-size: 12px;
  line-height: 2.3;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #cebaa4;
}
.main-nav {
  display: flex;
  gap: 34px;
  align-items: center;
}
.main-nav a {
  font-size: 14px;
  color: #e0d7ce;
  padding: 10px 0 5px;
  position: relative;
  white-space: nowrap;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  height: 1px;
  left: 0;
  right: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
.main-nav a[aria-current='page'],
.main-nav a:hover {
  color: #fff;
}
.main-nav a[aria-current='page']::after,
.main-nav a:hover::after {
  transform: scaleX(1);
}
.header-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  height: 36px;
  background: var(--gold);
  color: var(--espresso);
  padding: 4px 19px;
  border-radius: 3px;
  font-size: 14px;
  transition: background 0.2s;
  white-space: nowrap;
}
.header-order:hover {
  background: #ebcfad;
}
.header-order svg {
  width: 16px;
  height: 16px;
}
.header-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}
.cart-count,
[data-cart-count] {
  font: 12px var(--sans);
  background: var(--espresso);
  color: var(--cream);
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
}
.nav-toggle {
  display: none;
  color: var(--cream);
  border: 0;
  background: transparent;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
}

/* The split hero keeps the photography expansive and the text readable. */
.home-hero {
  min-height: 640px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #ede4d4;
}
.hero-photo {
  position: absolute;
  right: 0;
  top: 0;
  width: 68%;
  height: 100%;
  z-index: -3;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-position: 54% 57%;
}
.hero-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--cream) 0%,
    var(--cream) 36%,
    #f8f5eee6 42%,
    #f8f5ee80 49%,
    #f8f5ee00 61%
  );
  z-index: -2;
}
.hero-inner {
  min-height: 640px;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-copy {
  padding-block: 70px 34px;
  width: 590px;
}
.hero-copy .eyebrow {
  font-size: 12px;
  margin-bottom: 25px;
}
.hero-copy h1 {
  font-size: 64px;
  line-height: 0.99;
  letter-spacing: -0.055em;
}
.hero-copy h1 em {
  font-style: italic;
}
.hero-description {
  font-size: 14px;
  line-height: 1.9;
  color: #6f6458;
  margin-top: 27px;
}
.hero-actions {
  display: flex;
  gap: 31px;
  align-items: center;
  margin-top: 29px;
}
.hero-actions .text-link {
  border: 0;
  gap: 15px;
}
.scroll-cue {
  display: flex;
  gap: 13px;
  width: fit-content;
  margin-top: 63px;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.14em;
}
.scroll-cue > svg {
  width: 24px;
  height: 27px;
  flex-shrink: 0;
  color: var(--espresso);
}
.hero-photo-caption {
  position: absolute;
  bottom: 34px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #faf1e7;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-shadow: 0 1px 5px #21170e;
}
.small-spark {
  font-size: 24px;
}
.brand-values {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.values-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 30px;
}
.brand-value {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  padding-inline: 20px;
  border-right: 1px solid var(--line);
}
.brand-value:first-child {
  justify-content: flex-start;
  padding-left: 0;
}
.brand-value:last-child {
  border: 0;
}
.brand-value > svg {
  color: var(--bronze);
  width: 30px;
  height: 30px;
}
.brand-value h3 {
  font-size: 21px;
  margin-bottom: 6px;
}
.brand-value p {
  font-size: 14px;
  color: var(--muted);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 36px;
}
.section-heading .eyebrow {
  margin-bottom: 10px;
}
.section-heading .text-link {
  margin-bottom: 3px;
}
.section-description {
  color: var(--muted);
  max-width: 310px;
  font-size: 14px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 27px;
}
.product-card {
  min-width: 0;
}
.product-image-wrap {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1.05;
  overflow: hidden;
  background: #ded3c5;
  border-radius: 4px;
}
.product-image-wrap img {
  width: 100%;
  height: 100%;
}
.product-tag {
  position: absolute;
  left: 13px;
  top: 13px;
  padding: 4px 9px;
  background: #faf7efef;
  color: var(--espresso);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.product-info {
  padding-top: 20px;
}
.product-name-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
}
.product-name-row h3 {
  font-size: 24px;
}
.product-price {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.product-description {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 9px;
}
.product-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}
.product-card-bottom > span {
  font-size: 12px;
  color: var(--muted);
}
.product-add {
  display: inline-flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
  background: transparent;
  padding: 0;
  width: 40px;
  height: 40px;
  flex: none;
  min-width: 40px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 10px;
  color: var(--bronze);
  font-weight: 500;
}
.product-add:hover {
  color: var(--espresso);
}
.product-add svg {
  width: 15px;
  height: 15px;
}
.product-add span {
  font-size: 18px;
}
.home-story {
  padding-block: 85px;
}
.home-story-layout {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  align-items: center;
  gap: 110px;
}
.home-story-visual {
  position: relative;
  padding-bottom: 23px;
}
.home-story-visual > img {
  height: 460px;
  width: 100%;
  border-radius: 3px;
}
.image-note {
  display: flex;
  align-items: center;
  gap: 20px;
  position: absolute;
  bottom: 0;
  right: -38px;
  padding: 22px 28px;
  background: var(--cream);
  box-shadow: 0 5px 30px #2e211907;
  font: italic 23px/1.18 var(--serif);
}
.note-star {
  color: var(--bronze);
  font: 40px var(--serif);
}
.home-story-copy {
  padding-block: 20px;
}
.home-story-copy h2 {
  margin-bottom: 25px;
}
.home-story-copy > p:not(.eyebrow) {
  max-width: 390px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}
.home-story-copy .button {
  margin-top: 28px;
}
.story-signature {
  margin-top: 31px;
  font: italic 26px var(--serif);
  color: #957b61;
}
.sweet-section {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  align-items: center;
  gap: 70px;
  padding-block: 100px 120px;
}
.sweet-copy > p:not(.eyebrow) {
  margin: 25px 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.sweet-images {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  padding-bottom: 30px;
}
.sweet-image-main {
  width: 58%;
  position: relative;
}
.sweet-image-main img {
  width: 100%;
  height: 320px;
  border-radius: 3px;
}
.sweet-image-main figcaption {
  position: absolute;
  top: calc(100% + 14px);
  font: italic 18px var(--serif);
  color: var(--muted);
}
.sweet-image-small {
  width: 42%;
  transform: translateY(30px);
}
.sweet-image-small img {
  width: 100%;
  height: 240px;
  border-radius: 3px;
}
.home-order-banner {
  background: #493528;
  color: var(--cream);
  padding-block: 62px;
  position: relative;
  overflow: hidden;
}
.order-banner-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.home-order-banner .eyebrow {
  color: var(--gold);
}
.home-order-banner h2 em {
  color: #d7b590;
}
.home-order-banner p:not(.eyebrow) {
  color: #d1bfae;
  font-size: 14px;
  margin-top: 18px;
}
.banner-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  border: 1px solid #e1c19924;
  border-radius: 50%;
  right: 7%;
  top: -150px;
}
.banner-circle::before,
.banner-circle::after {
  content: '';
  position: absolute;
  border: 1px solid #e1c19918;
  inset: 35px;
  transform: rotate(30deg);
}
.banner-circle::after {
  inset: -70px;
  border-radius: 50%;
}

/* Menu and editorial pages. */
.page-intro {
  padding-block: 70px 54px;
  position: relative;
  overflow: hidden;
}
.page-intro .container {
  position: relative;
}
.page-intro h1 {
  font-size: 64px;
}
.intro-text {
  max-width: 560px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}
.drafting-art {
  position: absolute;
  right: 35px;
  top: -14px;
  width: 185px;
  height: 185px;
  border: 1px solid #ac845d35;
  border-radius: 50%;
  transform: rotate(-16deg);
  pointer-events: none;
}
.drafting-art::before {
  content: '';
  position: absolute;
  inset: 23px;
  border: 1px solid #ac845d40;
  transform: rotate(31deg);
}
.drafting-art::after {
  content: '';
  position: absolute;
  inset: 43px -18px;
  border-top: 1px solid #ac845d35;
  border-bottom: 1px solid #ac845d35;
  transform: rotate(-30deg);
}
.menu-jump-nav {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.menu-jump-nav .container {
  display: flex;
  gap: 36px;
  align-items: center;
  min-height: 67px;
}
.menu-jump-nav a {
  font-size: 14px;
  padding-block: 20px;
}
.menu-jump-nav a:hover {
  color: var(--bronze);
}
.menu-jump-nav a:first-child {
  color: var(--bronze);
}
.menu-about-link {
  display: none;
}
.menu-note {
  margin-left: auto;
  font-size: 12px;
  color: var(--muted);
}
body[data-page='menu'] .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px 30px;
}
body[data-page='menu'] .product-image-wrap {
  aspect-ratio: 1.4;
}
body[data-page='menu'] .section {
  padding-block: 64px;
}
body[data-page='menu'] .section-soft .product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
}
body[data-page='menu'] .section-soft .product-image-wrap {
  aspect-ratio: 1;
}
.menu-guidance {
  padding-block: 38px;
  border-bottom: 1px solid var(--line);
}
.guidance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.guidance-number {
  display: block;
  font: italic 18px var(--serif);
  color: var(--bronze);
  margin-bottom: 15px;
}
.menu-guidance h3 {
  font-size: 25px;
  margin-bottom: 10px;
}
.menu-guidance p {
  color: var(--muted);
  font-size: 14px;
}
.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding-block: 60px;
}
.cta-band p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 12px;
}
.menu-editorial {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.menu-editorial-content {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 72px;
  padding-block: 80px;
  position: relative;
  z-index: 1;
}
.menu-editorial-copy {
  min-width: 0;
}
.menu-editorial-intro {
  max-width: 470px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
  margin-top: 24px;
}
.menu-editorial-copy .button {
  margin-top: 32px;
}
.menu-editorial-notes {
  display: grid;
  gap: 34px;
  border-left: 1px solid var(--line);
  padding: 8px 0 8px 48px;
}
.menu-editorial-note {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.menu-note-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid #b7987180;
  border-radius: 50%;
  color: var(--espresso);
}
.menu-editorial-note h3 {
  font-size: 25px;
  margin-bottom: 10px;
}
.menu-editorial-note p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
}
.menu-editorial-botanical {
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 280px;
  height: 430px;
  color: var(--bronze);
  opacity: 0.09;
  pointer-events: none;
}
@media (min-width: 1600px) {
  .hero-photo {
    width: 67%;
  }
}
@media (max-width: 1200px) {
  .menu-editorial-content {
    gap: 48px;
    padding-block: 68px;
  }
  .menu-editorial-notes {
    padding-left: 32px;
  }
}
@media (max-width: 900px) {
  .site-header .brand-tagline {
    display: none;
  }
  .menu-editorial-content {
    gap: 32px;
  }
  .menu-editorial-notes {
    padding-left: 24px;
  }
  .menu-editorial-note {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 16px;
  }
  .menu-note-icon {
    width: 40px;
    height: 40px;
  }
  .menu-note-icon svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 700px) {
  .menu-editorial-content {
    grid-template-columns: 1fr;
    padding-block: 48px;
    gap: 36px;
  }
  .menu-editorial-notes {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 32px 0 0;
    gap: 26px;
  }
}
.about-hero {
  padding-bottom: 0;
}
.about-hero-image {
  position: relative;
}
.about-hero-crop {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
  overflow: hidden;
  border-radius: 3px;
}
.about-hero-image img {
  /* Keep the photograph at a fixed scale; only its frame changes with the screen. */
  width: 1200px;
  max-width: none;
  height: 480px;
  flex: none;
  border-radius: 3px;
  object-position: center -190px;
}
.about-hero-image figcaption,
.image-caption {
  color: var(--muted);
  font-size: 12px;
  margin-top: 14px;
}
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.story-copy h2 {
  margin-bottom: 25px;
}
.story-copy > p:not(.eyebrow) {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.9;
}
.story-image img {
  height: 450px;
  width: 100%;
  border-radius: 3px;
}
.story-copy .text-link {
  margin-top: 24px;
}
.quote-section {
  padding-block: 68px;
  background: var(--soft);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-section blockquote {
  max-width: 820px;
  margin-inline: auto;
  font: italic 45px/1.2 var(--serif);
  letter-spacing: -0.025em;
}
.quote-section cite {
  display: block;
  margin-top: 23px;
  font: 12px var(--sans);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
}
.quote-section .eyebrow {
  margin-bottom: 23px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 40px;
}
.value-card {
  padding-top: 25px;
  border-top: 1px solid var(--line);
}
.value-number {
  font: italic 22px var(--serif);
  color: var(--bronze);
}
.value-card h3 {
  margin-block: 20px 13px;
  font-size: 25px;
}
.value-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}
.visit-section {
  padding-block: 70px;
  background: var(--soft);
}
.visit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
  align-items: center;
}
.visit-image {
  display: flex;
  justify-content: center;
  height: 373px;
  overflow: hidden;
  border-radius: 3px;
}
.visit-layout img {
  width: 560px;
  max-width: none;
  height: 373px;
  flex: none;
  border-radius: 3px;
  object-position: center;
}
.visit-copy h2 {
  margin-bottom: 22px;
}
.visit-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
}
.visit-copy .button,
.visit-copy .text-link {
  margin-top: 25px;
  margin-right: 18px;
}
.visit-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

/* Ordering: small choices, a clear basket, and honest preview checkout. */
body[data-page='order'] .page-intro {
  padding-block: 51px 36px;
}
body[data-page='order'] .page-intro h1 {
  font-size: 64px;
}
body[data-page='order'] .page-intro .intro-text {
  margin-top: 15px;
}
.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 345px;
  gap: 42px;
  align-items: start;
  padding-bottom: 85px;
}
.order-catalog {
  min-width: 0;
}
.order-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 15px 0 26px;
}
.category-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.category-tabs button {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 30px;
  padding: 9px 19px;
  font-size: 14px;
  color: var(--muted);
  min-height: 38px;
}
.category-tabs button:hover {
  border-color: var(--espresso);
  color: var(--espresso);
}
.category-tabs button.is-active,
.category-tabs button[aria-pressed='true'] {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
}
.order-search {
  width: 170px;
  position: relative;
}
.order-search input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: transparent;
  font-size: 16px;
}
.order-search svg {
  position: absolute;
  left: 10px;
  top: 12px;
  height: 16px;
  width: 16px;
  color: var(--muted);
}
.order-search:has(svg) input {
  padding-left: 34px;
}
.order-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.order-card {
  border: 1px solid var(--line);
  border-radius: 5px;
  overflow: hidden;
  background: var(--paper);
}
.order-card > img,
.order-card-image {
  width: 400px;
  min-width: 400px;
  max-width: none;
  height: 300px;
  flex: none;
  margin-inline: calc(50% - 200px);
}
.order-card-image img {
  width: 100%;
  height: 100%;
}
.order-card > img:is(
  [src$='espresso-tiramisu.webp'],
  [src$='caramel-cheesecake-v2.jpg'],
  [src$='strawberry-cheesecake-new.webp'],
  [src$='chocolate-fudge.jpg']
) {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin-inline: 0;
}
.order-card > img[src$='cappuccino-v5.png'] {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin-inline: 0;
  /* Preserve the 10px upward shift and crop within the image area. */
  object-position: 50% calc(50% - 7.142857px);
  scale: 1.4;
  clip-path: inset(14.285714%);
}
.order-card > img[src$='espresso-v3.webp'] {
  scale: 1.2;
  clip-path: inset(8.333333%);
}
.order-card > img[src$='americano-v8.webp'] {
  object-position: calc(50% - 7.272727px) 50%;
  scale: 1.1;
  clip-path: inset(4.545455%);
}
.order-card > img[src$='latte-v5.png'] {
  /* Offsets become 5px up and 8px left with the 1.5x zoom. */
  object-position: calc(50% - 5.333333px) calc(50% - 3.333333px);
  scale: 1.5;
  clip-path: inset(16.666667%);
}
.order-card > img[src$='mocha-v12.webp'] {
  object-position: 50% calc(50% + 4.347826px);
  scale: 1.15;
  clip-path: inset(6.521739%);
}
body[data-page='home'] .product-image-wrap img[src$='iced-latte-long.webp'] {
  object-position: 50% 50%;
}
body[data-page='menu'] .product-image-wrap img[src$='espresso-new.jpg'] {
  scale: 1.2;
  clip-path: inset(8.333333%);
}
.order-card > img[src$='ice-latte-v5.webp'] {
  object-position: 50% calc(50% - 12.666667px);
  scale: 1.5;
  clip-path: inset(16.666667%);
}
.order-card-content {
  padding: 18px;
}
.order-card-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.order-card-heading h3 {
  font-size: 24px;
}
.order-card-heading .product-price {
  font-size: 14px;
}
.order-card-description {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin-top: 8px;
  min-height: 44px;
}
.order-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
}
.order-card-bottom > span {
  color: var(--muted);
  font-size: 12px;
}
.add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid #c6b7a4;
  border-radius: 3px;
  padding: 7px 13px;
  background: transparent;
  font-size: 14px;
  min-height: 36px;
  color: var(--espresso);
}
.add-button:hover {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
}
.add-button svg {
  width: 14px;
  height: 14px;
}
.order-summary {
  position: sticky;
  top: 111px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 25px;
  margin-top: 15px;
}
.summary-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 10px;
  align-items: center;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
}
.summary-heading > .eyebrow {
  grid-column: 1 / -1;
}
.summary-heading h2 {
  font-size: 30px;
}
.summary-heading > span {
  color: var(--muted);
  font-size: 12px;
  /* Optically centre the sans-serif count against the serif title. */
  transform: translateY(3px);
}
.pickup-info,
.pickup-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  font-size: 12px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.pickup-info svg,
.pickup-banner svg {
  width: 17px;
  height: 17px;
  color: var(--bronze);
}
.cart-items {
  max-height: 390px;
  overflow-y: auto;
  overscroll-behavior: auto;
  scrollbar-width: thin;
  padding-right: 12px;
}
.cart-item {
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item-main {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}
.cart-item-main h3,
.cart-item-main h4 {
  font: 600 24px var(--serif);
  margin: 0;
}
.cart-item-main p,
.cart-item-options {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  margin-top: 4px;
}
.cart-item-main > strong,
.cart-item-price {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.cart-item-controls {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 12px;
}
.quantity-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 3px;
}
.quantity-control button {
  width: 30px;
  height: 29px;
  border: 0;
  background: transparent;
  color: var(--espresso);
  font-size: 16px;
}
.quantity-control button:hover {
  background: var(--soft);
}
.quantity-control > span,
.quantity-control output {
  min-width: 24px;
  text-align: center;
  font-size: 12px;
}
.order-summary .quantity-control > span,
.order-summary .quantity-control output {
  font-size: 12px;
}
.remove-item,
.cart-remove {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  padding: 5px 5px 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.summary-totals {
  padding-top: 18px;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 9px;
  font-size: 12px;
  color: var(--muted);
}
.summary-line.total {
  padding-top: 14px;
  margin-top: 15px;
  border-top: 1px solid var(--line);
  color: var(--espresso);
  font-size: 16px;
  font-weight: 600;
}
.order-summary .checkout-button {
  width: 100%;
  margin-top: 16px;
  background: var(--espresso);
  color: var(--cream);
  padding: 14px;
  border: 0;
  border-radius: 3px;
  min-height: 48px;
  font-size: 14px;
}
.checkout-button:hover:not(:disabled) {
  background: #523a2a;
}
.order-note {
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
  text-align: center;
  margin-top: 13px;
}
.empty-cart {
  text-align: center;
  padding: 35px 10px;
  color: var(--muted);
}
.empty-cart svg {
  width: 35px;
  height: 35px;
  color: #bca58d;
  margin-bottom: 14px;
}
.empty-cart h3 {
  font-size: 25px;
  color: var(--ink);
  margin-bottom: 9px;
}
.empty-cart p {
  font-size: 14px;
  max-width: 220px;
  margin-inline: auto;
}
.order-empty {
  grid-column: 1/-1;
  color: var(--muted);
  padding: 50px 0;
  text-align: center;
}
.catalog-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.mobile-cart-link {
  display: none;
}
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #21191191;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
}
.modal-overlay:not([hidden]) {
  animation: modal-overlay-in 140ms ease-out both;
}
.modal-dialog {
  position: relative;
  width: min(100%, 500px);
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  background: var(--cream);
  border-radius: 6px;
  padding: 35px;
  box-shadow: 0 24px 90px #0003;
}
.modal-overlay:not([hidden]) .modal-dialog {
  animation: modal-dialog-in 140ms cubic-bezier(0.22, 0.7, 0.3, 1) both;
}
@keyframes modal-overlay-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modal-dialog-in {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.modal-dialog h2 {
  font-size: 36px;
  margin-bottom: 12px;
  padding-right: 20px;
}
.modal-dialog > p,
.modal-description {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 22px;
}
.modal-close {
  position: absolute;
  right: 15px;
  top: 14px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--espresso);
  font-size: 23px;
}
.modal-close:hover {
  background: var(--soft);
}
.modal-close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
}
.modal-overlay.legal-overlay {
  overflow: hidden;
}
.modal-dialog.legal-dialog {
  width: min(100%, 570px);
  max-height: min(820px, calc(100dvh - 48px));
  overflow: hidden;
  padding: 0;
  border-radius: 12px;
  background: var(--paper);
}
.legal-dialog .modal-close {
  z-index: 1;
  top: 16px;
  right: 17px;
  width: 42px;
  height: 42px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 3px 12px #2e211914;
}
.legal-dialog .modal-close:hover {
  background: var(--soft);
}
.legal-scroll {
  max-height: min(820px, calc(100dvh - 48px));
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 46px 37px 52px;
  scrollbar-gutter: stable;
}
.legal-dialog .legal-title {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 30px;
  padding-right: 50px;
}
.legal-dialog .legal-section-heading {
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 22px;
}
.legal-dialog .legal-section + .legal-section {
  margin-top: 45px;
}
.legal-dialog .legal-subheading {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0;
  margin-top: 24px;
  margin-bottom: 0;
}
.legal-dialog .legal-subheading:first-of-type {
  margin-top: 0;
}
.legal-dialog .legal-section p {
  color: var(--muted);
  font-size: 14px;
  line-height: 23px;
  margin-top: 6px;
}
.modal-overlay.is-closing {
  animation: modal-overlay-in 160ms ease-in reverse both;
}
.modal-overlay.is-closing .modal-dialog {
  animation: modal-dialog-in 160ms ease-in reverse both;
}
@media (max-width: 700px) {
  .modal-dialog.legal-dialog,
  .legal-scroll {
    max-height: calc(100dvh - 32px);
  }
  .modal-overlay.legal-overlay {
    padding: 16px;
  }
  .legal-scroll {
    padding: 36px 27px 42px;
  }
}
.checkout-dialog .modal-close {
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  z-index: 2;
}
.checkout-dialog .modal-close svg {
  width: 24px;
  height: 24px;
}
.field {
  margin-top: 18px;
}
.field > label,
.field-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #cbbfaa;
  border-radius: 3px;
  padding: 10px 12px;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
}
.pickup-control {
  position: relative;
  min-width: 0;
}
.pickup-trigger::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 16px;
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--bronze);
  border-bottom: 1px solid var(--bronze);
  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
}
.pickup-trigger {
  position: relative;
  width: 100%;
  min-height: 44px;
  border: 1px solid #bda98f;
  border-radius: 3px;
  padding: 10px 36px 10px 12px;
  color: var(--espresso);
  font: inherit;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  background: linear-gradient(180deg, var(--paper), #f4eee4);
  box-shadow:
    inset 0 1px 0 #ffffffb8,
    0 1px 0 #6e51301a;
}
.pickup-trigger:hover {
  border-color: var(--bronze);
}
#pickup-form .field input:focus,
#pickup-form .field textarea:focus,
#pickup-form .pickup-trigger:focus {
  border-color: var(--bronze);
  outline: none;
  box-shadow: inset 0 0 0 1px var(--bronze);
}
.pickup-options {
  position: absolute;
  z-index: 2;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 4px;
  list-style: none;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid #bda98f;
  border-radius: 3px;
  background: var(--paper);
  color: var(--espresso);
  box-shadow: 0 6px 18px #2e21191f;
  font-size: 16px;
}
.pickup-options [role='option'] {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 8px;
  border-radius: 2px;
  cursor: pointer;
  overflow-wrap: anywhere;
}
.pickup-options [aria-selected='true'] {
  background: #eee3d4;
}
.pickup-options [role='option']:hover,
.pickup-options .is-active {
  background: var(--soft);
  box-shadow: inset 0 0 0 1px #bda98f;
}
#pickup-form .field {
  min-width: 0;
}
@media (max-width: 700px) {
  .pickup-trigger,
  .pickup-options {
    font-size: 16px;
  }
  #pickup-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.field textarea {
  min-height: 80px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.modal-dialog .button {
  margin-top: 24px;
  width: 100%;
}
.customize-image {
  width: 100%;
  height: 170px;
  border-radius: 3px;
  margin-bottom: 22px;
}
.option-group {
  border: 0;
  padding: 0;
  margin: 22px 0;
}
.option-group legend {
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 600;
}
.option-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.option-choices label {
  position: relative;
  display: flex;
  gap: 8px;
  align-items: center;
  border: 1px solid var(--line);
  padding: 9px 12px;
  border-radius: 3px;
  font-size: 14px;
  cursor: pointer;
}
.option-choices label:has(input:checked) {
  border-color: var(--bronze);
  background: #eadac65c;
}
input[type='radio'],
input[type='checkbox'] {
  accent-color: var(--bronze);
}
.customize-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  gap: 20px;
}
.customize-footer .button {
  width: auto;
  margin: 0;
  flex: 1;
}
.checkout-review {
  background: var(--soft);
  padding: 16px;
  margin-top: 22px;
  border-radius: 3px;
  font-size: 14px;
}
.checkout-review p {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.checkout-review p + p {
  margin-top: 8px;
}
.success-icon {
  color: var(--bronze);
  font-size: 35px;
  margin-bottom: 20px;
}
.order-confirmation {
  text-align: center;
  padding-block: 12px;
}
.order-confirmation h2 {
  padding: 0;
}
.order-confirmation p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 15px;
}
.confirmation-reference {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--espresso);
  margin-block: 20px;
}
.site-toast,
#site-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(calc(-50% + var(--toast-drag-x, 0px)), 15px);
  z-index: 150;
  background: rgb(46 33 25 / 80%);
  color: var(--cream);
  padding: 10px 17px;
  border: 1px solid #b596724a;
  border-radius: 4px;
  font-size: 14px;
  box-shadow: 0 5px 30px #0002;
  opacity: 0;
  pointer-events: none;
  touch-action: pan-y;
  user-select: none;
  transition:
    opacity 0.2s,
    transform 0.2s;
  max-width: calc(100% - 32px);
  text-align: center;
}
.site-toast.is-visible,
#site-toast.is-visible,
#site-toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(calc(-50% + var(--toast-drag-x, 0px)), 0);
}
.site-toast.is-dragging,
#site-toast.is-dragging {
  cursor: grabbing;
  transition: none;
}
.site-toast.is-auto-dismissing,
#site-toast.is-auto-dismissing {
  transform: translate(-50%, 0);
}

/* Shared footer. */
.site-footer {
  background: var(--espresso);
  color: #e8ded3;
  padding-top: 57px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.6fr 1fr 1.1fr;
  gap: 55px;
  padding-bottom: 45px;
}
.footer-brand p {
  color: #b8a695;
  font-size: 14px;
  max-width: 230px;
  margin-top: 20px;
  line-height: 1.8;
}
.footer-brand .brand {
  max-width: 100%;
}
.footer-brand .brand-wordmark {
  min-width: 0;
}
.footer-grid h3 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: #c8b5a1;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-grid nav,
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
}
.footer-grid nav a:hover,
.footer-links a:hover {
  color: var(--gold);
}
.footer-invitation h3,
.footer-cta h3 {
  font-family: var(--serif);
  font-size: 30px;
  text-transform: none;
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.footer-invitation p,
.footer-cta p {
  color: #b8a695;
  font-size: 14px;
}
.footer-invitation .text-link,
.footer-cta .text-link {
  margin-top: 12px;
  border-color: #9b82684f;
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid #b798712b;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding-block: 20px;
  color: #ae9986;
  font-size: 12px;
}
.footer-bottom p + p {
  margin: 0;
}
.footer-bottom p a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-credit {
  justify-self: center;
}
.footer-legal {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}
.footer-legal span:first-child {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-legal:hover {
  color: var(--gold);
}

/* Detail styles shared by the page templates and interactive components. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.brand-mark > span {
  position: absolute;
  bottom: -5px;
  left: 15px;
  font: 10px var(--serif);
  letter-spacing: 0;
  background: var(--espresso);
  padding-inline: 3px;
}
.brand-wordmark {
  display: block;
}
.nav-toggle {
  position: relative;
}
.nav-toggle > span {
  width: 21px;
  height: 1px;
  background: currentColor;
  display: block;
  position: absolute;
  top: 16px;
  left: 12px;
  transform: rotate(0deg);
  transition:
    top 0.16s ease 0.16s,
    transform 0.16s ease,
    opacity 0.12s ease 0.16s;
}
.nav-toggle > span:nth-child(2) {
  top: 22px;
}
.nav-toggle > span:nth-child(3) {
  top: 28px;
}
.nav-toggle[aria-expanded='true'] > span {
  top: 22px;
  transition:
    top 0.16s ease,
    transform 0.16s ease 0.16s,
    opacity 0.12s ease;
}
.nav-toggle[aria-expanded='true'] > span:nth-child(1) {
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded='true'] > span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded='true'] > span:nth-child(3) {
  transform: rotate(-45deg);
}
.footer-heading {
  font: 500 12px var(--sans);
  color: #c8b5a1;
  letter-spacing: 0.15em;
  margin-bottom: 15px;
}
.footer-hours > p + p {
  color: #b8a695;
  font-size: 14px;
  line-height: 2.1;
}
.footer-cta > p {
  font: 30px/1.1 var(--serif);
  color: var(--cream);
}
.footer-cta > p em {
  color: var(--gold);
}
.footer-cta .text-link {
  font-size: 14px;
  gap: 13px;
}
.page-intro-menu .page-intro-grid {
  background: var(--cream);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  align-items: center;
  gap: 40px;
}
.page-intro-menu .drafting-art {
  position: relative;
  width: 220px;
  height: auto;
  aspect-ratio: 1;
  mix-blend-mode: multiply;
  right: 0;
  top: 0;
  border: 0;
  border-radius: 0;
  transform: none;
  opacity: 1;
}
.page-intro-menu .drafting-art::before,
.page-intro-menu .drafting-art::after {
  display: none;
}
.drafting-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: 1;
}
.drafting-art > span {
  position: absolute;
  bottom: -17px;
  right: 34px;
  font: italic 19px var(--serif);
  color: #9b7a59;
}
.story-image figcaption {
  font: italic 18px var(--serif);
  color: var(--muted);
  margin-top: 13px;
}
.story-image img {
  object-position: 50% 70%;
}
.quote-ornament {
  display: block;
  font: 35px var(--serif);
  color: var(--bronze);
  margin-bottom: 18px;
}
.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 5px;
}
img[src$='latte.jpg'] {
  object-position: 50% 62%;
}
img[src$='chocolate-tart.jpg'] {
  object-position: 50% 75%;
}
img[src$='cornetto.jpg'] {
  object-position: 50% 58%;
}
.pickup-indicator {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  color: var(--muted);
  font-size: 12px;
  margin-top: 24px;
}
.pickup-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #708268;
}
.product-search {
  position: relative;
  width: 173px;
  display: block;
}
.product-search input {
  width: 100%;
  padding: 10px 10px 10px 32px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: transparent;
  font-size: 16px;
  color: var(--ink);
  min-height: 39px;
}
.product-search svg {
  position: absolute;
  width: 15px;
  height: 15px;
  top: 12px;
  left: 10px;
  color: var(--muted);
}
.category-tabs button > span {
  font-size: 12px;
  opacity: 0.65;
  margin-left: 5px;
}
.order-catalog-caption {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 16px;
  font-size: 12px;
  color: var(--muted);
}
.order-card-bottom > .product-price {
  color: var(--espresso);
  font-size: 14px;
  font-weight: 600;
}
.summary-line [data-cart-subtotal] {
  font-size: 14px;
}
.modal-actions [data-custom-total] {
  font-size: 14px;
}
.order-card-bottom .add-button > span {
  font-size: 17px;
  line-height: 1;
}
.catalog-allergen-note {
  color: var(--muted);
  font-size: 14px;
  margin-top: 25px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.summary-heading .eyebrow {
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-bottom: 7px;
}
.summary-heading > span {
  white-space: nowrap;
}
.summary-pickup {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-block: 17px;
  border-bottom: 1px solid var(--line);
}
.summary-pickup svg {
  width: 20px;
  height: 20px;
  color: var(--bronze);
}
.summary-pickup strong {
  display: block;
  font-size: 12px;
  font-weight: 500;
}
.summary-pickup span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  margin-top: 3px;
}
.tax-note {
  font-size: 12px;
  color: var(--muted);
  text-align: right;
}
.clear-cart {
  display: block;
  margin: 16px auto 0;
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
  padding: 6px;
}
.order-bottom-note {
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 20px;
  padding-block: 28px 44px;
}
.order-bottom-note > span {
  font: 35px var(--serif);
  color: var(--bronze);
}
.order-bottom-note > p {
  font: 23px/1.3 var(--serif);
}
.order-bottom-note > p > span {
  color: var(--muted);
  font: 12px var(--sans);
}
.order-bottom-note > a {
  margin-left: auto;
}
.no-products {
  grid-column: 1/-1;
  text-align: center;
  padding: 70px 20px;
}
.no-products h3 {
  font-size: 30px;
}
.no-products p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 15px;
}
.no-products button {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  margin-top: 15px;
}
.modal-product-header {
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding-top: 6px;
  margin-bottom: 23px;
}
.modal-product-image {
  width: 105px;
  height: 120px;
  object-fit: cover;
  border-radius: 3px;
}
.modal-product-header .eyebrow {
  font-size: 12px;
  margin-bottom: 5px;
}
.modal-dialog .modal-product-header h2 {
  font-size: 24px;
  padding: 0;
  margin-bottom: 10px;
}
.modal-product-header .modal-description {
  font-size: 14px;
  margin-bottom: 0;
}
.customize-options {
  padding: 0;
  margin: 23px 0;
  border: 0;
}
.customize-options legend {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}
.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.option-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.option-button {
  padding: 11px 9px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-size: 14px;
}
.option-button small {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}
.option-button.is-selected {
  background: #e9d9c354;
  border-color: var(--bronze);
}
.allergen-note {
  font-size: 14px;
  color: var(--muted);
}
.modal-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 25px;
}
.modal-actions .button {
  margin-top: 0;
  flex: 1;
  gap: 18px;
  justify-content: space-between;
}
.modal-actions .button > span {
  font: 14px var(--sans);
}
.modal-actions .quantity-control button {
  width: 33px;
  height: 40px;
}
.review-items {
  padding-block: 10px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-height: 210px;
  overflow-y: auto;
}
.review-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding-block: 8px;
  font-size: 14px;
}
.review-line strong {
  font-weight: 500;
}
.review-line > div > strong {
  font-size: 24px;
}
.review-line > span {
  flex-shrink: 0;
}
.review-line small {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}
.review-total {
  font-size: 16px;
  padding-top: 15px;
  margin-top: 8px;
  border-top: 1px solid var(--line);
}
.optional {
  font-weight: 400;
  color: var(--muted);
}
.checkout-disclaimer {
  text-align: left;
  margin-top: 19px;
  padding: 13px;
  background: var(--soft);
}
.confirmation-content {
  text-align: center;
}
.confirmation-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  background: var(--soft);
  color: var(--bronze);
  border-radius: 50%;
  margin: 10px auto 24px;
}
.confirmation-icon svg {
  width: 33px;
  height: 33px;
}
.confirmation-content h2 {
  overflow-wrap: anywhere;
  padding: 0;
}
.confirmation-content .modal-description {
  margin-block: 18px;
}
.confirmation-content .order-note {
  font-size: 12px;
  padding: 17px;
  background: var(--soft);
}
.mobile-cart-link small {
  display: inline-block;
  margin-left: 8px;
  font-size: 12px;
  color: #d2beaa;
}

@media (max-width: 1200px) {
  .product-card {
    display: flex;
    flex-direction: column;
  }
  .product-image-wrap {
    flex-shrink: 0;
  }
  .product-info {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .product-description {
    flex: 1;
  }
}
@media (max-width: 1150px) {
  .hero-copy {
    width: 530px;
  }
  .home-story-layout {
    gap: 70px;
  }
  .product-grid {
    gap: 20px;
  }
  .order-layout {
    grid-template-columns: minmax(0, 1fr) 315px;
    gap: 27px;
  }
  .order-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .order-search {
    width: 100%;
  }
  .product-search {
    width: 100%;
  }
  .order-card-content {
    padding: 15px;
  }
  .order-card-heading {
    flex-wrap: wrap;
    gap: 6px;
  }
  .order-card-description {
    min-height: 54px;
  }
  .order-summary {
    padding: 22px;
  }
  .story-layout {
    gap: 60px;
  }
  .footer-grid {
    gap: 50px;
  }
}
@media (max-width: 900px) {
  #site-header {
    min-height: 80px;
  }
  .container {
    width: calc(100% - 48px);
  }
  .header-inner {
    min-height: 79px;
    gap: 15px;
  }
  .brand-name {
    font-size: 25px;
  }
  .brand-mark {
    width: 39px;
    height: 39px;
    font-size: 23px;
  }
  .brand-tagline {
    font-size: 12px;
  }
  .main-nav {
    gap: 19px;
  }
  .main-nav a {
    font-size: 14px;
  }
  .header-order {
    padding: 4px 13px;
  }
  .home-hero,
  .hero-inner {
    min-height: 575px;
  }
  .hero-copy h1 {
    font-size: 64px;
  }
  .page-intro-menu h1,
  .page-intro-about h1 {
    font-size: 52px;
  }
  h2 {
    font-size: 40px;
  }
  .hero-copy {
    width: 480px;
  }
  .hero-photo {
    width: 72%;
  }
  .hero-wash {
    background: linear-gradient(
      90deg,
      var(--cream) 0%,
      var(--cream) 26%,
      #f8f5eef2 40%,
      #f8f5ee80 55%,
      #f8f5ee00 72%
    );
  }
  .hero-copy .eyebrow {
    font-size: 12px;
  }
  .hero-description {
    font-size: 14px;
  }
  .brand-value {
    gap: 13px;
    padding-inline: 15px;
  }
  .brand-value h3 {
    font-size: 19px;
  }
  .brand-value p {
    font-size: 14px;
  }
  .brand-value > svg {
    width: 25px;
    height: 25px;
  }
  .section {
    padding-block: 68px;
  }
  .product-grid {
    gap: 18px;
  }
  .product-name-row {
    flex-wrap: wrap;
    gap: 7px;
  }
  .home-story {
    padding-block: 60px;
  }
  .home-story-layout {
    gap: 55px;
    grid-template-columns: 1fr 1fr;
  }
  .home-story-visual > img {
    height: 420px;
  }
  .image-note {
    right: -25px;
    padding: 18px;
    font-size: 20px;
    gap: 12px;
  }
  .home-story-copy > p:not(.eyebrow) {
    font-size: 16px;
  }
  .sweet-section {
    gap: 36px;
    padding-block: 75px 95px;
  }
  .sweet-images {
    gap: 16px;
  }
  .sweet-image-main img {
    height: 280px;
  }
  .sweet-image-small img {
    height: 200px;
  }
  .page-intro {
    padding-block: 52px 40px;
  }
  .drafting-art {
    opacity: 0.55;
    right: 15px;
  }
  .page-intro-menu .drafting-art {
    width: 180px;
    right: 0;
    opacity: 1;
  }
  .page-intro-menu .page-intro-grid {
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: 24px;
  }
  .intro-text {
    max-width: 490px;
    font-size: 14px;
  }
  .menu-note {
    max-width: 270px;
    font-size: 12px;
  }
  body[data-page='menu'] .product-grid {
    gap: 30px 20px;
  }
  body[data-page='menu'] .section-soft .product-grid {
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
  body[data-page='menu'] .section-soft .product-image-wrap {
    aspect-ratio: 1.4;
  }
  .story-layout {
    gap: 45px;
  }
  .story-copy > p:not(.eyebrow) {
    font-size: 16px;
  }
  .story-image img {
    height: 390px;
  }
  .about-hero-crop {
    height: 380px;
  }
  .values-grid {
    gap: 30px;
  }
  .value-card h3 {
    font-size: 25px;
  }
  .value-card p {
    font-size: 14px;
  }
  .visit-layout {
    gap: 45px;
  }
  .order-layout {
    grid-template-columns: minmax(0, 1fr) 285px;
    gap: 22px;
  }
  .order-product-grid {
    gap: 16px;
  }
  .order-card-content {
    padding: 13px;
  }
  .order-card-heading h3 {
    font-size: 24px;
  }
  .order-card-bottom {
    gap: 6px;
    flex-wrap: wrap;
  }
  .order-card-bottom > span {
    font-size: 12px;
  }
  .order-summary {
    padding: 19px;
  }
  .footer-grid {
    grid-template-columns: 1.2fr 0.6fr 1fr;
    gap: 35px;
  }
  .footer-hours {
    display: none;
  }
}
@media (max-width: 700px) {
  #site-header {
    min-height: 74px;
  }
  html {
    scroll-padding-top: 88px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .header-inner {
    min-height: 73px;
    gap: 12px;
  }
  .brand {
    gap: 9px;
  }
  .brand-mark {
    width: 35px;
    height: 35px;
    font-size: 21px;
  }
  .brand-name {
    font-size: 23px;
  }
  .brand-tagline {
    font-size: 12px;
    letter-spacing: 0.15em;
  }
  .header-actions {
    gap: 6px;
  }
  .header-order {
    font-size: 14px;
    padding: 4px 12px;
    gap: 8px;
  }
  .header-order svg {
    width: 14px;
    height: 14px;
  }
  .nav-toggle {
    display: grid;
    place-items: center;
    margin-right: -10px;
  }
  .nav-toggle svg {
    width: 22px;
    height: 22px;
  }
  .main-nav {
    position: absolute;
    display: flex;
    top: 100%;
    left: 0;
    right: 0;
    padding: 15px 24px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--espresso);
    border-top: 1px solid #b7987133;
    box-shadow: 0 15px 20px #23191120;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition:
      opacity 0.22s ease,
      transform 0.22s ease,
      visibility 0s linear 0.22s;
  }
  .main-nav.is-open,
  .main-nav[data-open='true'] {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0s;
  }
  .main-nav a {
    font-size: 14px;
    padding: 13px 0;
  }
  .main-nav a::after {
    bottom: 4px;
    transform-origin: left;
    right: auto;
    width: 30px;
  }
  .home-hero {
    display: flex;
    flex-direction: column;
    background: var(--cream);
  }
  .hero-inner {
    min-height: auto;
    order: -1;
    display: block;
    width: calc(100% - 40px);
  }
  .hero-copy {
    width: 100%;
    padding-block: 48px 29px;
    position: relative;
  }
  .hero-copy .eyebrow {
    font-size: 12px;
    margin-bottom: 19px;
  }
  .hero-copy h1 {
    font-size: 58px;
    line-height: 1;
  }
  .hero-description {
    font-size: 14px;
    margin-top: 21px;
    line-height: 1.9;
  }
  .hero-actions {
    gap: 25px;
    margin-top: 24px;
  }
  .button {
    min-height: 45px;
    padding: 12px 20px;
    font-size: 14px;
    gap: 20px;
  }
  .text-link {
    font-size: 14px;
  }
  .scroll-cue {
    margin-top: 30px;
  }
  .hero-photo {
    position: relative;
    width: 100%;
    height: 355px;
    z-index: 0;
    margin-top: -12px;
  }
  .hero-photo img {
    object-position: 50% 62%;
  }
  .hero-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, var(--cream), #f8f5ee00 23%),
      linear-gradient(90deg, #f8f5eef2 0%, #f8f5eec4 12%, #f8f5ee00 34%);
  }
  .hero-wash {
    display: none;
  }
  .hero-photo-caption {
    display: none;
  }
  .values-strip {
    padding-block: 24px;
    gap: 12px;
  }
  .brand-value {
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding-inline: 8px;
  }
  .brand-value:first-child {
    padding-left: 0;
  }
  .brand-value:last-child {
    padding-right: 0;
  }
  .brand-value h3 {
    font-size: 18px;
    margin-bottom: 0;
    line-height: 1.1;
  }
  .brand-value p {
    display: none;
  }
  .brand-value > svg {
    width: 24px;
    height: 24px;
  }
  .section {
    padding-block: 53px;
  }
  .eyebrow {
    font-size: 12px;
    letter-spacing: 0.16em;
    margin-bottom: 12px;
  }
  h2 {
    font-size: 38px;
  }
  .section-heading {
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 28px;
  }
  .favourites-section .section-heading {
    flex-direction: column;
    gap: 10px;
  }
  section[aria-labelledby='values-heading'] .section-heading {
    flex-direction: column;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 16px;
  }
  .product-image-wrap {
    aspect-ratio: 0.95;
  }
  .product-info {
    padding-top: 15px;
  }
  .product-description {
    margin-top: 7px;
  }
  .product-tag {
    font-size: 12px;
    left: 9px;
    top: 9px;
    padding: 4px 7px;
  }
  .product-card-bottom {
    margin-top: 7px;
  }
  .product-add {
    min-height: 40px;
  }
  .home-story {
    padding-block: 49px;
  }
  .home-story-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .home-story-visual {
    padding: 0 21px 23px 0;
  }
  .home-story-visual > img {
    height: 350px;
  }
  .image-note {
    right: 0;
    padding: 20px 24px;
    font-size: 24px;
  }
  .home-story-copy {
    padding-block: 10px 0;
  }
  .home-story-copy > p:not(.eyebrow) {
    max-width: none;
    font-size: 16px;
  }
  .story-signature {
    margin-top: 25px;
  }
  .sweet-section {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-block: 52px 76px;
  }
  .sweet-copy p:not(.eyebrow) {
    margin-block: 20px 15px;
  }
  .sweet-images {
    gap: 19px;
  }
  .sweet-image-main img {
    height: 280px;
  }
  .sweet-image-small img {
    height: 220px;
  }
  .sweet-image-main figcaption {
    font-size: 16px;
    white-space: nowrap;
  }
  .home-order-banner {
    padding-block: 44px;
  }
  .order-banner-inner {
    flex-direction: column;
    gap: 27px;
    align-items: flex-start;
  }
  .home-order-banner p:not(.eyebrow) {
    font-size: 14px;
    max-width: 270px;
  }
  .banner-circle {
    width: 320px;
    height: 320px;
    right: -130px;
    top: 10px;
  }
  .page-intro {
    padding-block: 44px 34px;
  }
  .page-intro h1 {
    font-size: 48px;
    max-width: 500px;
  }
  .intro-text {
    font-size: 14px;
    margin-top: 18px;
  }
  .drafting-art {
    width: 110px;
    height: 110px;
    right: -60px;
    top: -20px;
    opacity: 0.4;
  }
  .page-intro-menu .drafting-art {
    display: none;
  }
  .page-intro-menu .page-intro-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
  .drafting-art > span {
    display: none;
  }
  .menu-jump-nav .container {
    min-height: 60px;
    gap: 28px;
    flex-wrap: wrap;
    padding-block: 0 14px;
  }
  .menu-jump-nav a {
    padding-block: 16px 0;
    font-size: 14px;
  }
  .menu-jump-nav .menu-about-link {
    display: inline;
  }
  .menu-note {
    display: none;
  }
  body[data-page='menu'] .section {
    padding-block: 44px;
  }
  body[data-page='menu'] .section-heading {
    flex-direction: column;
    gap: 13px;
  }
  .section-description {
    max-width: 400px;
    font-size: 14px;
  }
  body[data-page='menu'] .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 27px 16px;
  }
  body[data-page='menu'] .product-image-wrap,
  body[data-page='menu'] .section-soft .product-image-wrap {
    aspect-ratio: 1;
  }
  body[data-page='menu'] .product-image-wrap img[src$='iced-latte-clean-table.png'] {
    scale: 1.08;
  }
  body[data-page='menu'] .section-soft .product-grid {
    gap: 27px 16px;
  }
  .menu-guidance {
    padding-block: 33px;
  }
  .guidance-grid {
    grid-template-columns: 1fr;
    gap: 23px;
  }
  .menu-guidance h3 {
    font-size: 25px;
  }
  .menu-guidance p {
    font-size: 14px;
  }
  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    gap: 23px;
    padding-block: 43px;
  }
  .cta-band p {
    font-size: 14px;
  }
  .about-hero-crop {
    height: 420px;
    justify-content: flex-start;
  }
  .about-hero-image figcaption {
    font-size: 12px;
  }
  .story-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .story-copy > p:not(.eyebrow) {
    font-size: 16px;
  }
  .story-image img {
    height: 340px;
  }
  .quote-section {
    padding-block: 46px;
  }
  .quote-section blockquote {
    font-size: 34px;
  }
  .quote-section cite {
    font-size: 12px;
  }
  .values-grid {
    grid-template-columns: 1fr;
    gap: 27px;
    margin-top: 28px;
  }
  .value-card {
    padding-top: 20px;
  }
  .value-card h3 {
    margin-block: 13px 10px;
    font-size: 25px;
  }
  .visit-section {
    padding-block: 45px;
  }
  .visit-layout {
    grid-template-columns: 1fr;
    gap: 31px;
  }
  .visit-copy p:not(.eyebrow) {
    font-size: 14px;
  }
  body[data-page='order'] .page-intro {
    padding-block: 35px 15px;
  }
  body[data-page='order'] .page-intro h1 {
    font-size: 53px;
  }
  .order-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 45px;
  }
  .order-toolbar {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    padding-bottom: 20px;
  }
  .category-tabs {
    gap: 7px;
  }
  .category-tabs button {
    padding: 8px 17px;
    font-size: 14px;
  }
  .order-search {
    width: 100%;
  }
  .order-product-grid {
    gap: 16px;
  }
  .order-card {
    display: flex;
    flex-direction: column;
  }
  .order-card > img,
  .order-card-image {
    height: 190px;
  }
  .order-card-content {
    padding: 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .order-card-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }
  .order-card-heading h3 {
    font-size: 24px;
  }
  .order-card-description {
    font-size: 14px;
    line-height: 1.55;
    min-height: 48px;
    flex: 1;
  }
  .order-card-bottom {
    margin-top: 11px;
  }
  .add-button {
    padding: 7px 12px;
    gap: 10px;
    min-height: 40px;
  }
  .order-summary {
    position: static;
    margin-top: 0;
    padding: 23px;
    scroll-margin-top: 90px;
  }
  .product-search {
    width: 100%;
  }
  .order-bottom-note {
    flex-wrap: wrap;
    gap: 15px;
    padding-block: 22px 34px;
  }
  .order-bottom-note > p {
    font-size: 21px;
  }
  .order-bottom-note > a {
    margin-left: 44px;
  }
  .modal-product-header {
    grid-template-columns: 85px minmax(0, 1fr);
    gap: 16px;
  }
  .modal-product-image {
    width: 85px;
    height: 110px;
  }
  .modal-dialog .modal-product-header h2 {
    font-size: 24px;
  }
  .option-button {
    font-size: 14px;
  }
  .modal-actions {
    gap: 12px;
  }
  .modal-actions .button {
    padding-inline: 15px;
  }
  .cart-items {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }
  .quantity-control button {
    min-width: 35px;
    height: 34px;
  }
  .mobile-cart-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 14px;
    background: var(--espresso);
    color: var(--cream);
    border: 1px solid rgb(248 245 238 / 42%);
    padding: 14px 20px;
    border-radius: 4px;
    margin-top: 20px;
    z-index: 20;
    font-size: 14px;
    box-shadow: 0 5px 20px #0002;
  }
  body[data-page='order']:has(.mobile-cart-link:not([hidden]):not(.is-over-summary)) #site-toast {
    bottom: 94px;
  }
  .modal-overlay {
    padding: 14px;
  }
  .modal-dialog {
    padding: 29px 23px;
    max-height: calc(100dvh - 28px);
  }
  .checkout-dialog .modal-close {
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
  }
  .checkout-dialog .modal-close svg {
    width: 20px;
    height: 20px;
  }
  .modal-dialog h2 {
    font-size: 34px;
  }
  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
  }
  .site-footer {
    padding-top: 43px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
    padding-bottom: 35px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-brand p {
    max-width: 300px;
    font-size: 14px;
    margin-top: 16px;
  }
  .footer-invitation h3,
  .footer-cta h3 {
    font-size: 29px;
  }
  .footer-bottom {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    font-size: 12px;
    padding-block: 17px;
  }
  .footer-bottom > p:first-child {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }
  .footer-credit {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
  }
  .footer-legal {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
}
@media (max-width: 600px) {
  .product-name-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
@media (max-width: 500px) {
  .about-hero-image img {
    transform: translateX(-60px);
  }
}
@media (max-width: 380px) {
  .site-header .brand-name {
    font-size: 21px;
  }
  .brand-values .brand-value {
    padding-inline: 8px;
  }
  .container {
    width: calc(100% - 32px);
  }
  .brand-mark {
    display: none;
  }
  .brand-name {
    font-size: 24px;
  }
  .hero-copy h1 {
    font-size: 50px;
  }
  .page-intro-menu h1,
  .page-intro-about h1 {
    font-size: 44px;
  }
  h2 {
    font-size: 36px;
  }
  .hero-copy .eyebrow {
    letter-spacing: 0.1em;
    font-size: 12px;
  }
  .hero-actions {
    gap: 20px;
  }
  .hero-photo {
    height: 305px;
  }
  .order-card-heading h3 {
    font-size: 24px;
  }
  .order-card-content {
    padding: 11px;
  }
  .order-card-description {
    min-height: 65px;
  }
  .order-card-bottom > span:not(.product-price) {
    display: none;
  }
  .sweet-image-main img {
    height: 240px;
  }
  .sweet-image-small img {
    height: 185px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media (max-width: 330px) {
  .site-header .brand-name {
    font-size: 18px;
  }
  .site-header .brand-tagline {
    font-size: 12px;
  }
  .brand-values .brand-value {
    padding-inline: 6px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  #main-content {
    animation: none;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
