:root {
  --background: 39 48% 94%;
  --surface: 35 38% 89%;
  --foreground: 21 21% 12%;
  --muted-foreground: 24 11% 39%;
  --primary: 13 63% 30%;
  --primary-hover: 13 67% 24%;
  --primary-foreground: 39 48% 94%;
  --accent: 20 53% 51%;
  --olive: 72 17% 33%;
  --line: 24 20% 29%;
  --dark: 18 23% 11%;
  --dark-soft: 19 22% 15%;
  --dark-foreground: 38 42% 90%;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Karla", Arial, sans-serif;
  --page-gutter: clamp(22px, 4.5vw, 72px);
  --content-width: 1420px;
  --shadow-image: 0 32px 70px hsl(var(--foreground) / 0.17);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 12%, hsl(var(--surface) / 0.72), transparent 28%),
    hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  content: "";
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

img,
svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: hsl(var(--foreground));
  color: hsl(var(--background));
  transform: translateY(-150%);
}

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

.section-shell {
  width: min(100% - (var(--page-gutter) * 2), var(--content-width));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 100;
  inset: 0 0 auto;
  padding: 22px var(--page-gutter);
  transition: background-color 250ms ease, transform 250ms ease;
}

.site-header.is-scrolled {
  position: fixed;
  padding-block: 12px;
  background: hsl(var(--background) / 0.92);
  border-bottom: 1px solid hsl(var(--line) / 0.12);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(100%, var(--content-width));
  min-height: 48px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  position: relative;
  z-index: 102;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-family: var(--font-display);
  font-size: 21px;
  font-style: italic;
  line-height: 1;
}

.brand-word {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 52px);
  font-size: 14px;
  font-weight: 500;
}

.primary-nav > a:not(.nav-cta) {
  position: relative;
}

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease-out);
}

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

.nav-cta {
  padding: 10px 15px;
  border: 1px solid hsl(var(--foreground) / 0.45);
  transition: background-color 180ms ease, color 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: hsl(var(--foreground));
  color: hsl(var(--background));
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: hsl(var(--foreground));
  transition: transform 220ms ease;
}

.hero {
  width: min(100% - (var(--page-gutter) * 2), var(--content-width));
  min-height: 760px;
  max-height: 900px;
  margin-inline: auto;
  padding-top: 100px;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: center;
  gap: clamp(36px, 5vw, 88px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 18px;
}

.eyebrow,
.section-kicker,
.origin-index,
.origin-label,
.detail-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: hsl(var(--muted-foreground));
}

.eyebrow span {
  width: 33px;
  height: 1px;
  background: hsl(var(--accent));
}

.hero h1 {
  max-width: 620px;
  margin: 25px 0 26px;
  font-family: var(--font-display);
  font-size: clamp(58px, 5vw, 82px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.hero h1 em,
.intro h2 em,
.menu-heading h2 em,
.origin-content h2 em,
.visit h2 em {
  color: hsl(var(--primary));
  font-weight: 500;
}

.hero-lede {
  max-width: 490px;
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  margin-top: 35px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  min-height: 50px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 180ms ease, transform 180ms ease;
}

.button-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.button-primary:hover,
.button-primary:focus-visible {
  background: hsl(var(--primary-hover));
  transform: translateY(-2px);
}

.text-link,
.arrow-link,
.copy-button {
  position: relative;
  padding-bottom: 3px;
  border-bottom: 1px solid hsl(var(--foreground) / 0.4);
  font-size: 14px;
  font-weight: 600;
}

.text-link span,
.arrow-link span,
.copy-button span {
  display: inline-block;
  transition: transform 180ms var(--ease-out);
}

.text-link:hover span,
.arrow-link:hover span,
.copy-button:hover span {
  transform: translate(3px, -3px);
}

.hero-meta {
  margin-top: 42px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: hsl(var(--muted-foreground));
  font-size: 13px;
  line-height: 1.45;
}

.hero-meta strong {
  color: hsl(var(--foreground));
  font-weight: 600;
}

.open-dot {
  width: 7px;
  height: 7px;
  margin-top: 5px;
  border-radius: 50%;
  background: hsl(var(--olive));
  box-shadow: 0 0 0 4px hsl(var(--olive) / 0.12);
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 620px;
  display: flex;
  align-items: center;
}

.image-frame {
  position: relative;
  width: 100%;
  height: min(70vh, 660px);
  min-height: 560px;
  overflow: hidden;
  border-radius: 180px 18px 180px 18px;
  box-shadow: var(--shadow-image);
}

.image-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 62%, hsl(var(--foreground) / 0.14));
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
  transition: transform 1.1s var(--ease-out);
}

.hero-visual:hover .image-frame img {
  transform: scale(1.018);
}

.roast-stamp {
  position: absolute;
  z-index: 3;
  top: 13%;
  left: -57px;
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: hsl(var(--background));
  box-shadow: 0 10px 34px hsl(var(--foreground) / 0.12);
}

.roast-stamp svg {
  width: 100px;
  height: 100px;
  overflow: visible;
}

.roast-stamp text {
  fill: hsl(var(--primary));
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.stamp-bean {
  fill: none;
  stroke: hsl(var(--primary));
  stroke-width: 2;
}

.image-note {
  position: absolute;
  right: 24px;
  bottom: 34px;
  z-index: 3;
  margin: 0;
  color: hsl(var(--primary-foreground));
  font-size: 12px;
  line-height: 1.4;
  text-align: right;
}

.image-note span {
  display: block;
  margin-bottom: 4px;
  opacity: 0.7;
}

.marquee {
  padding: 19px 0 17px;
  overflow: hidden;
  border-top: 1px solid hsl(var(--line) / 0.22);
  border-bottom: 1px solid hsl(var(--line) / 0.22);
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 42px;
  animation: marquee 28s linear infinite;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.marquee-track i {
  color: hsl(var(--accent));
  font-style: normal;
}

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

.intro {
  padding-top: clamp(100px, 11vw, 168px);
  padding-bottom: clamp(100px, 10vw, 150px);
}

.section-kicker {
  padding-bottom: 17px;
  display: flex;
  justify-content: space-between;
  color: hsl(var(--muted-foreground));
  border-bottom: 1px solid hsl(var(--line) / 0.25);
}

.intro-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(280px, 4fr);
  align-items: end;
  gap: 9vw;
}

.intro h2,
.menu-heading h2,
.visit h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(49px, 5.1vw, 76px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.intro h2 {
  max-width: 900px;
}

.intro-copy {
  max-width: 410px;
}

.intro-copy p {
  margin: 0 0 27px;
  color: hsl(var(--muted-foreground));
}

.values-row {
  margin-top: 96px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid hsl(var(--line) / 0.28);
}

.values-row article {
  padding: 25px 48px 0 0;
}

.values-row article + article {
  padding-left: 38px;
  border-left: 1px solid hsl(var(--line) / 0.28);
}

.values-row span {
  color: hsl(var(--accent));
  font-family: var(--font-display);
  font-style: italic;
}

.values-row h3 {
  margin: 22px 0 10px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
}

.values-row p {
  max-width: 320px;
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-size: 15px;
}

.menu-section {
  background: hsl(var(--dark));
  color: hsl(var(--dark-foreground));
}

.menu-inner {
  padding-top: clamp(88px, 9vw, 138px);
  padding-bottom: clamp(88px, 9vw, 138px);
}

.eyebrow-light {
  color: hsl(var(--dark-foreground) / 0.62);
}

.menu-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
}

.menu-heading h2 {
  margin-top: 25px;
}

.menu-heading h2 em,
.visit h2 em {
  color: hsl(var(--accent));
}

.menu-tabs {
  display: flex;
  gap: 5px;
  padding: 4px;
  border: 1px solid hsl(var(--dark-foreground) / 0.2);
}

.menu-tab {
  min-width: 94px;
  padding: 10px 15px;
  border: 0;
  background: transparent;
  color: hsl(var(--dark-foreground) / 0.65);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

.menu-tab.is-active {
  background: hsl(var(--dark-foreground));
  color: hsl(var(--dark));
}

.menu-list {
  margin-top: 70px;
  border-top: 1px solid hsl(var(--dark-foreground) / 0.2);
}

.menu-item {
  min-height: 112px;
  padding: 23px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid hsl(var(--dark-foreground) / 0.2);
  transition: padding 220ms var(--ease-out), background-color 220ms ease;
}

.menu-item:hover {
  padding-inline: 18px;
  background: hsl(var(--dark-soft));
}

.menu-item h3 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.1;
}

.menu-item p {
  margin: 0;
  color: hsl(var(--dark-foreground) / 0.6);
  font-size: 14px;
}

.menu-item > span {
  font-family: var(--font-display);
  font-size: 26px;
  font-style: italic;
}

.menu-item > span::before {
  content: "$";
  font-size: 13px;
  vertical-align: super;
}

.menu-footnote {
  margin: 24px 0 0;
  color: hsl(var(--dark-foreground) / 0.5);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.origin {
  position: relative;
  min-height: 760px;
  padding-top: clamp(90px, 9vw, 140px);
  padding-bottom: clamp(90px, 9vw, 140px);
  display: grid;
  grid-template-columns: 2fr 6fr 4fr;
  align-items: center;
  gap: 40px;
  overflow: hidden;
}

.origin-index {
  align-self: start;
  padding-top: 10px;
  color: hsl(var(--muted-foreground));
}

.origin-content {
  position: relative;
  z-index: 2;
}

.origin-label {
  color: hsl(var(--primary));
}

.origin-content h2 {
  margin: 26px 0;
  font-family: var(--font-display);
  font-size: clamp(64px, 7.4vw, 110px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.77;
}

.origin-description {
  max-width: 520px;
  color: hsl(var(--muted-foreground));
  font-size: 17px;
}

.coffee-facts {
  max-width: 560px;
  margin: 45px 0 0;
  border-top: 1px solid hsl(var(--line) / 0.3);
}

.coffee-facts div {
  padding: 13px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid hsl(var(--line) / 0.3);
  font-size: 14px;
}

.coffee-facts dt {
  color: hsl(var(--muted-foreground));
}

.coffee-facts dd {
  margin: 0;
}

.origin-art {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.origin-art svg {
  position: relative;
  z-index: 2;
  width: min(100%, 340px);
  fill: hsl(var(--background));
  stroke: hsl(var(--primary));
  stroke-width: 2;
}

.sun-ring {
  position: absolute;
  width: min(32vw, 430px);
  aspect-ratio: 1;
  border: 1px solid hsl(var(--accent) / 0.35);
  border-radius: 50%;
}

.sun-ring::before,
.sun-ring::after {
  position: absolute;
  inset: 11%;
  content: "";
  border: 1px solid hsl(var(--accent) / 0.23);
  border-radius: inherit;
}

.sun-ring::after {
  inset: 23%;
  background: hsl(var(--accent) / 0.08);
}

.quote-section {
  padding: clamp(100px, 12vw, 180px) var(--page-gutter);
  background: hsl(var(--surface));
  text-align: center;
}

.quote-section blockquote {
  max-width: 960px;
  margin: 0 auto 28px;
  font-family: var(--font-display);
  font-size: clamp(42px, 5.2vw, 76px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.quote-section p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visit {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.visit-inner {
  padding-top: clamp(90px, 10vw, 150px);
  padding-bottom: clamp(90px, 10vw, 150px);
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(340px, 5fr);
  align-items: end;
  gap: 9vw;
}

.visit .eyebrow-light {
  color: hsl(var(--primary-foreground) / 0.67);
}

.visit .eyebrow span {
  background: hsl(var(--primary-foreground) / 0.55);
}

.visit h2 {
  margin-top: 25px;
}

.visit h2 em {
  color: hsl(var(--primary-foreground));
}

.visit-details {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 42px;
}

.detail-label {
  display: block;
  margin-bottom: 20px;
  color: hsl(var(--primary-foreground) / 0.6);
}

.visit address,
.visit-details p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 27px;
  font-style: normal;
  line-height: 1.25;
}

.copy-button {
  margin-top: 26px;
  padding: 0 0 3px;
  border-width: 0 0 1px;
  border-color: hsl(var(--primary-foreground) / 0.5);
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.site-footer {
  padding: 42px 0;
  background: hsl(var(--dark));
  color: hsl(var(--dark-foreground));
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.brand-footer .brand-mark {
  background: hsl(var(--dark-foreground));
  color: hsl(var(--dark));
}

.footer-inner > p {
  margin: 0;
  color: hsl(var(--dark-foreground) / 0.55);
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  font-size: 13px;
}

.footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.toast {
  position: fixed;
  z-index: 1000;
  right: 24px;
  bottom: 24px;
  padding: 12px 18px;
  background: hsl(var(--foreground));
  color: hsl(var(--background));
  font-size: 14px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms var(--ease-out), opacity 280ms ease;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}

.reveal-delay {
  transition-delay: 120ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero {
    min-height: 700px;
    grid-template-columns: minmax(0, 5.3fr) minmax(0, 6.7fr);
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(54px, 6vw, 70px);
  }

  .image-frame {
    height: 610px;
  }

  .roast-stamp {
    left: -45px;
    width: 98px;
    height: 98px;
  }

  .roast-stamp svg {
    width: 86px;
    height: 86px;
  }

  .intro-grid {
    gap: 6vw;
  }

  .origin {
    grid-template-columns: 1.5fr 6.5fr 4fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding-block: 16px;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(3) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    padding: 120px var(--page-gutter) 50px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;
    background: hsl(var(--background));
    font-family: var(--font-display);
    font-size: 40px;
    transform: translateY(-100%);
    transition: transform 420ms var(--ease-out);
  }

  .primary-nav.is-open {
    transform: translateY(0);
  }

  .nav-cta {
    margin-top: 15px;
    font-family: var(--font-body);
    font-size: 14px;
  }

  .hero {
    max-height: none;
    min-height: 0;
    padding-top: 116px;
    padding-bottom: 70px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero h1 {
    max-width: 650px;
    font-size: clamp(54px, 10vw, 70px);
  }

  .hero-visual {
    min-height: 0;
  }

  .image-frame {
    height: min(78vw, 650px);
    min-height: 480px;
    border-radius: 120px 12px 120px 12px;
  }

  .roast-stamp {
    top: -36px;
    left: auto;
    right: 24px;
  }

  .intro-grid,
  .visit-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .intro-copy {
    max-width: 590px;
  }

  .values-row {
    margin-top: 70px;
    grid-template-columns: 1fr;
  }

  .values-row article,
  .values-row article + article {
    padding: 28px 0;
    border-left: 0;
    border-bottom: 1px solid hsl(var(--line) / 0.28);
  }

  .menu-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .menu-tabs {
    width: max-content;
    margin-top: 18px;
  }

  .origin {
    min-height: 0;
    grid-template-columns: 1fr 1fr;
  }

  .origin-index {
    grid-column: 1 / -1;
  }

  .origin-content h2 {
    font-size: clamp(58px, 10vw, 86px);
  }

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

  .sun-ring {
    width: 43vw;
  }

  .visit-details {
    max-width: 600px;
  }
}

@media (max-width: 560px) {
  :root {
    --page-gutter: 20px;
  }

  body {
    font-size: 16px;
  }

  .brand-word {
    font-size: 24px;
  }

  .hero {
    padding-top: 105px;
    padding-bottom: 60px;
    gap: 62px;
  }

  .hero h1 {
    margin: 21px 0;
    font-size: clamp(50px, 15.2vw, 62px);
    line-height: 0.92;
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-actions {
    margin-top: 27px;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-meta {
    margin-top: 30px;
  }

  .image-frame {
    height: 108vw;
    min-height: 420px;
    max-height: 520px;
    border-radius: 92px 8px 92px 8px;
  }

  .image-frame img {
    object-position: 55% center;
  }

  .roast-stamp {
    right: 10px;
  }

  .image-note {
    right: 17px;
    bottom: 22px;
  }

  .marquee-track {
    gap: 28px;
  }

  .intro h2,
  .menu-heading h2,
  .visit h2 {
    font-size: clamp(45px, 13vw, 57px);
  }

  .intro-grid {
    margin-top: 38px;
  }

  .menu-list {
    margin-top: 48px;
  }

  .menu-item {
    min-height: 100px;
  }

  .menu-item h3 {
    font-size: 26px;
  }

  .origin {
    display: block;
  }

  .origin-content {
    margin-top: 60px;
  }

  .origin-content h2 {
    font-size: 66px;
  }

  .origin-art {
    min-height: 380px;
    margin-top: 34px;
  }

  .sun-ring {
    width: min(86vw, 390px);
  }

  .quote-section blockquote {
    font-size: 43px;
  }

  .visit-details {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .visit address,
  .visit-details p {
    font-size: 25px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

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