:root {
  --ink: #171713;
  --ink-soft: #282820;
  --paper: #f4efe5;
  --paper-light: #fffdf8;
  --rust: #b7442b;
  --rust-dark: #8f2e1c;
  --gold: #d3a747;
  --leaf: #3f5940;
  --sage: #c7cfbf;
  --white: #fff;
  --line: rgba(23, 23, 19, 0.18);
  --line-light: rgba(255, 255, 255, 0.22);
  --shadow: 0 18px 50px rgba(23, 23, 19, 0.16);
  --shell: 1180px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-light);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.shell {
  width: min(var(--shell), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding-block: 120px;
}

.eyebrow,
.mini-label {
  margin: 0 0 14px;
  color: var(--rust);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #f5c860;
}

h1,
h2,
h3,
h4,
h5,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Rye", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 1.02;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button svg,
.text-link svg {
  width: 17px;
  height: 17px;
}

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

.button-primary:hover {
  background: var(--rust-dark);
  border-color: var(--rust-dark);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(23, 23, 19, 0.18);
}

.button-ghost:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.button-dark:hover {
  background: var(--leaf);
  border-color: var(--leaf);
}

.button-outline {
  border-color: var(--ink);
  background: transparent;
}

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

.icon-button {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
}

.icon-button svg {
  width: 20px;
  height: 20px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--rust-dark);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  color: var(--leaf);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 12px max(24px, calc((100vw - var(--shell)) / 2));
  color: var(--white);
  border-bottom: 1px solid var(--line-light);
  transition: min-height 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.97);
  border-color: var(--line);
  box-shadow: 0 5px 24px rgba(23, 23, 19, 0.08);
  backdrop-filter: blur(12px);
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
}

.wordmark-main {
  font-family: "Rye", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1;
}

.wordmark-sub {
  margin-top: 5px;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:not(.nav-order):hover {
  color: var(--gold);
}

.site-header.is-scrolled .site-nav a:not(.nav-order):hover {
  color: var(--rust);
}

.nav-order {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 17px;
  color: var(--white);
  background: var(--rust);
  border-radius: 2px;
}

.nav-order:hover {
  background: var(--rust-dark);
}

.nav-toggle {
  display: none;
  color: inherit;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 88svh;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background: url("../img/paniolo-landing.png") center 42% / cover no-repeat;
  transform: scale(1.015);
}

.hero-shade {
  z-index: -1;
  background: rgba(18, 18, 13, 0.55);
}

.hero-content {
  display: flex;
  min-height: 88svh;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: calc(var(--header-height) + 70px) 160px;
}

.hero h1 {
  max-width: 950px;
  font-size: clamp(4rem, 10.5vw, 9.5rem);
  line-height: 0.84;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

.hero h1 span {
  display: block;
  margin-top: 22px;
  color: #f5c860;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 0.19em;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 570px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-hours {
  position: absolute;
  right: max(24px, calc((100vw - var(--shell)) / 2));
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  width: min(355px, calc(100% - 48px));
  min-height: 102px;
  align-items: center;
  padding: 20px 24px;
  color: var(--ink);
  background: #f5c860;
  text-decoration: none;
}

.hero-hours span,
.hero-hours strong {
  grid-column: 1;
}

.hero-hours span {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-hours strong {
  font-size: 1rem;
}

.hero-hours svg {
  grid-column: 2;
  grid-row: 1 / 3;
  width: 22px;
  height: 22px;
}

.visit-strip {
  color: var(--white);
  background: var(--ink);
}

.visit-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.strip-item {
  display: flex;
  min-width: 0;
  min-height: 98px;
  align-items: center;
  gap: 14px;
  padding: 20px 30px;
  border-right: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  text-decoration: none;
}

.strip-item:first-child {
  border-left: 1px solid var(--line-light);
}

.strip-item svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--gold);
}

.strip-item strong {
  display: block;
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

a.strip-item:hover span {
  color: var(--gold);
}

.story {
  overflow: hidden;
  background: var(--paper-light);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
}

.story-copy h2 {
  max-width: 620px;
}

.story-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 22px 0 0;
  color: #59594f;
}

.story-copy .story-lede {
  color: var(--ink);
  font-size: 1.14rem;
  line-height: 1.75;
}

.story-copy .text-link {
  margin-top: 32px;
}

.story-images {
  position: relative;
  min-height: 650px;
}

.story-image {
  position: absolute;
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-image-main {
  inset: 0 9% 5% 20%;
}

.story-image-secondary {
  left: 0;
  bottom: 0;
  width: 45%;
  aspect-ratio: 1;
  border: 9px solid var(--paper-light);
}

.image-note {
  position: absolute;
  top: 8%;
  left: 4%;
  margin: 0;
  padding: 13px 16px;
  color: var(--white);
  background: var(--rust);
  font-family: "Rye", Georgia, serif;
  font-size: 1rem;
  line-height: 1.35;
  transform: rotate(-4deg);
}

.menu-section {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 50px;
  align-items: end;
}

.section-heading > p {
  margin: 0 0 8px;
  color: #5b5a50;
  font-size: 1.02rem;
}

.menu-tabs {
  position: sticky;
  top: 78px;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 55px;
  padding: 6px;
  background: var(--ink);
  box-shadow: 0 8px 28px rgba(23, 23, 19, 0.18);
}

.menu-tabs button {
  min-height: 48px;
  padding: 8px 12px;
  border: 0;
  border-radius: 2px;
  color: rgba(255, 255, 255, 0.68);
  background: transparent;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.menu-tabs button:hover {
  color: var(--white);
}

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

.menu-panels {
  margin-top: 62px;
}

.menu-panel[hidden] {
  display: none;
}

.menu-panel.is-active {
  animation: reveal-panel 260ms ease both;
}

@keyframes reveal-panel {
  from { opacity: 0; transform: translateY(9px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-intro {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 3px solid var(--ink);
}

.menu-number {
  color: var(--rust);
  font-family: "Rye", Georgia, serif;
  font-size: 2.3rem;
  line-height: 1;
}

.menu-intro .eyebrow {
  margin-bottom: 5px;
}

.menu-intro h3 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
}

.menu-category {
  margin-top: 58px;
}

.menu-category > h4,
.category-heading h4,
.split-category h4 {
  margin: 0 0 26px;
  font-family: "Rye", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 400;
}

.category-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 26px;
}

.category-heading h4 {
  margin: 0;
}

.category-heading p,
.category-note {
  max-width: 590px;
  margin: 0;
  color: #666459;
  font-size: 0.86rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 62px;
}

.menu-item {
  display: flex;
  min-width: 0;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.menu-item h5,
.stacked-list h5,
.wine-item h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.menu-item p,
.stacked-list p,
.wine-item p {
  margin: 5px 0 0;
  color: #69675b;
  font-size: 0.83rem;
  line-height: 1.55;
}

.menu-item > span,
.price-list > div > span {
  flex: 0 0 auto;
  color: var(--rust-dark);
  font-family: "Rye", Georgia, serif;
  font-size: 1.08rem;
}

.menu-item sup {
  color: var(--rust);
}

.menu-item .mini-label {
  margin: 0 0 5px;
  font-size: 0.62rem;
}

.menu-item .item-note {
  color: var(--rust-dark);
  font-weight: 700;
}

.menu-feature {
  padding-inline: 18px;
  background: var(--sage);
  border-color: transparent;
}

.split-category {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 90px;
}

.split-category > div {
  min-width: 0;
}

.category-note {
  margin: -18px 0 20px;
  color: var(--rust-dark);
  font-weight: 700;
}

.stacked-list > div {
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.price-list > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.menu-callout {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 24px 0 0;
  padding: 16px 18px;
  color: var(--white);
  background: var(--leaf);
  font-size: 0.86rem;
}

.menu-callout svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.wine-key,
.wine-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px 58px;
  gap: 12px;
  align-items: baseline;
}

.wine-key {
  margin-top: 38px;
  color: var(--rust-dark);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.wine-key span:first-child {
  grid-column: 2;
}

.wine-item {
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.wine-item > span {
  color: var(--rust-dark);
  font-family: "Rye", Georgia, serif;
  text-align: center;
}

.menu-footer-note {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 70px;
  padding-top: 22px;
  border-top: 3px solid var(--ink);
  color: #6c695d;
  font-size: 0.75rem;
}

.menu-footer-note p {
  max-width: 540px;
  margin: 0;
}

.music-section {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
}

.music-image,
.music-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.music-image {
  background: url("../img/Paniolo_Sign.jpg") center 50% / cover no-repeat;
}

.music-overlay {
  z-index: -1;
  background: rgba(23, 23, 19, 0.62);
}

.music-content {
  padding-block: 110px;
}

.music-content h2 {
  max-width: 900px;
}

.music-content > p:not(.eyebrow) {
  max-width: 600px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 1.08rem;
}

.events-section {
  color: var(--white);
  background: var(--leaf);
}

.events-heading {
  margin-bottom: 48px;
}

.events-heading h2 {
  color: var(--white);
}

.events-heading .light-link {
  justify-self: end;
  color: #f5c860;
}

.events-heading .light-link:hover {
  color: var(--white);
}

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

.event-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  min-height: 130px;
  padding: 22px 8px;
  border-top: 1px solid var(--line-light);
}

.event-date {
  display: flex;
  flex-direction: column;
  color: #f5c860;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.25;
  text-transform: uppercase;
}

.event-date strong {
  margin-top: 5px;
  color: var(--white);
  font-family: "Rye", Georgia, serif;
  font-size: 1.32rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.event-name .mini-label {
  margin-bottom: 5px;
  color: #f5c860;
}

.event-name h3 {
  color: var(--white);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: clamp(1.2rem, 2.6vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
}

.event-location {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
}

.event-time {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  text-align: right;
  white-space: nowrap;
}

.events-status {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
}

.catering {
  background: var(--gold);
}

.catering-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.catering-image {
  margin: 0;
  box-shadow: var(--shadow);
}

.catering-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.catering-copy .eyebrow {
  color: var(--rust-dark);
}

.catering-copy h2 {
  font-size: clamp(2.5rem, 5.3vw, 4.8rem);
}

.catering-copy > p:not(.eyebrow) {
  margin: 24px 0 30px;
  font-size: 1.03rem;
}

.visit {
  background: var(--paper-light);
}

.visit-heading {
  margin-bottom: 52px;
}

.visit-heading .text-link {
  justify-self: end;
}

.visit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, 0.55fr);
  min-height: 560px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.map-wrap {
  min-height: 520px;
  background: #ddd9cf;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
  filter: grayscale(0.3) contrast(0.95);
}

.visit-details {
  padding: 44px;
  border-left: 1px solid var(--line);
}

.visit-block {
  padding: 0 0 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.visit-block p {
  margin: 0;
}

.visit-block .mini-label {
  margin-bottom: 10px;
}

.hours-list {
  margin: 0;
}

.hours-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 5px 0;
}

.hours-list dt,
.hours-list dd {
  margin: 0;
}

.hours-list dd {
  color: #5d5b51;
  text-align: right;
}

.visit-contact a {
  color: var(--rust-dark);
  font-family: "Rye", Georgia, serif;
  font-size: 1.25rem;
  text-decoration: none;
}

.visit-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.site-footer {
  padding: 72px 0 26px;
  color: var(--white);
  background: var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 60px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand .wordmark-main {
  font-size: 2.2rem;
}

.footer-brand p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.86rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 30px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links .icon-button {
  color: var(--white);
  border-color: var(--line-light);
}

.social-links .icon-button:hover {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 58px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid var(--line-light);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 980px) {
  :root {
    --header-height: 72px;
  }

  .section {
    padding-block: 90px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: none;
    max-height: calc(100svh - var(--header-height));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 24px 28px;
    overflow-y: auto;
    color: var(--ink);
    background: var(--paper-light);
    border-top: 1px solid var(--line);
    box-shadow: 0 18px 34px rgba(23, 23, 19, 0.16);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-order {
    justify-content: center;
    margin-top: 18px;
    padding: 0 17px;
    border-bottom: 0;
  }

  .story-grid,
  .catering-grid {
    grid-template-columns: 1fr;
  }

  .story-copy {
    max-width: 720px;
  }

  .story-images {
    min-height: 620px;
  }

  .catering-copy {
    max-width: 720px;
  }

  .visit-layout {
    grid-template-columns: 1fr;
  }

  .visit-details {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 32px, var(--shell));
  }

  .section {
    padding-block: 74px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .hero {
    min-height: 91svh;
  }

  .hero-media {
    background-position: 58% center;
  }

  .hero-content {
    min-height: 91svh;
    padding-block: 130px 150px;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 20vw, 5.9rem);
  }

  .hero h1 span {
    margin-top: 16px;
    font-size: 0.18em;
    letter-spacing: 0.11em;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1 1 190px;
  }

  .hero-hours {
    right: 16px;
    width: calc(100% - 32px);
    min-height: 90px;
  }

  .visit-strip-inner {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .strip-item,
  .strip-item:first-child {
    min-height: 76px;
    padding: 16px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
    border-left: 0;
  }

  .story-grid {
    gap: 50px;
  }

  .story-images {
    min-height: 470px;
  }

  .story-image-main {
    inset: 0 0 8% 13%;
  }

  .story-image-secondary {
    width: 49%;
    border-width: 6px;
  }

  .image-note {
    top: 5%;
    left: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .menu-tabs {
    top: 68px;
    grid-template-columns: repeat(5, minmax(96px, 1fr));
    margin-inline: -16px;
    padding-inline: 16px;
    overflow-x: auto;
    box-shadow: 0 8px 20px rgba(23, 23, 19, 0.16);
    scrollbar-width: none;
  }

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

  .menu-grid,
  .split-category {
    grid-template-columns: 1fr;
  }

  .split-category {
    gap: 55px;
  }

  .category-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .menu-footer-note {
    flex-direction: column;
    gap: 10px;
  }

  .music-section {
    min-height: 580px;
  }

  .music-image {
    background-position: center 50%;
  }

  .music-content {
    padding-block: 80px;
  }

  .visit-heading .text-link {
    justify-self: start;
  }

  .events-heading .light-link {
    justify-self: start;
  }

  .event-item {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 20px;
    min-height: 112px;
  }

  .event-time {
    grid-column: 2;
    margin-top: -14px;
    text-align: left;
  }

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

  .visit-details {
    padding: 34px 24px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-links {
    max-width: 340px;
  }
}

@media (max-width: 460px) {
  h2 {
    font-size: 2.5rem;
  }

  .wordmark-main {
    font-size: 1.45rem;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 19vw, 4.7rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .story-images {
    min-height: 390px;
  }

  .image-note {
    font-size: 0.82rem;
  }

  .menu-intro {
    align-items: flex-start;
    gap: 15px;
  }

  .menu-number {
    font-size: 1.7rem;
  }

  .menu-intro h3 {
    font-size: 1.9rem;
  }

  .menu-item {
    gap: 12px;
  }

  .wine-key,
  .wine-item {
    grid-template-columns: minmax(0, 1fr) 44px 44px;
    gap: 8px;
  }

  .visit-actions {
    grid-template-columns: 1fr;
  }

  .event-item {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }
}

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

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