:root {
  --paper: #f3ece4;
  --surface: #fffaf5;
  --ink: #251c17;
  --muted: #6f6056;
  --forest: #a54e37;
  --forest-deep: #211915;
  --line: #d8c9bd;
  --white: #fffdf9;
  --accent-soft: #e2a05f;
  --section-space: clamp(5rem, 10vw, 9rem);
  --shell: min(1200px, calc(100% - 2rem));
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
  color-scheme: light;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

html.is-locked,
body.is-locked {
  overflow: hidden;
}

img { max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
  padding: 0.65rem 1rem;
  text-decoration: none;
  transition: transform 180ms var(--ease-out);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  min-height: 4.75rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem clamp(1rem, 3vw, 2.75rem);
  color: var(--white);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: var(--forest-deep);
  border-bottom-color: rgb(255 255 255 / 0.16);
  box-shadow: 0 6px 18px rgb(24 12 8 / 0.16);
}

.wordmark {
  justify-self: start;
  display: inline-grid;
  align-content: center;
  min-height: 2.75rem;
  line-height: 0.95;
  font-weight: 750;
  letter-spacing: -0.035em;
  text-decoration: none;
  transition: transform 180ms var(--ease-out), opacity 180ms ease;
}

.wordmark span:last-child { font-size: 0.79rem; letter-spacing: 0.02em; }

.desktop-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.desktop-nav a,
.site-footer nav a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-footer nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
}

.desktop-nav a { position: relative; padding: 0.45rem 0; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.25rem;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease-out);
}

.menu-toggle {
  justify-self: end;
  display: none;
  align-items: center;
  gap: 0.65rem;
  min-width: 4.75rem;
  min-height: 2.75rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid rgb(255 255 255 / 0.5);
  border-radius: 999px;
  background: rgb(31 22 18 / 0.18);
  color: inherit;
  cursor: pointer;
  transition: transform 140ms var(--ease-out), background-color 180ms ease, border-color 180ms ease;
}

.menu-toggle-label { font-size: 0.78rem; font-weight: 750; }
.menu-toggle-lines { display: grid; gap: 4px; width: 16px; }
.menu-toggle-lines i { height: 1px; background: currentColor; transition: transform 220ms var(--ease-out); }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines i:first-child { transform: translateY(2.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines i:last-child { transform: translateY(-2.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 25;
  display: grid;
  place-items: center;
  background: var(--forest-deep);
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
  transition: opacity 260ms ease, clip-path 520ms var(--ease-drawer), visibility 520ms;
}

.mobile-menu.is-open { opacity: 1; visibility: visible; clip-path: inset(0 0 0 0); }
.mobile-menu.is-instant,
.mobile-menu.is-instant a { transition-duration: 0ms !important; transition-delay: 0ms !important; }
.mobile-menu nav { display: grid; gap: 1.1rem; text-align: center; }
.mobile-menu a {
  font-size: clamp(2rem, 9vw, 3.4rem);
  line-height: 1;
  font-weight: 760;
  letter-spacing: -0.04em;
  text-decoration: none;
  opacity: 0;
  transform: translateY(70%);
  transition: transform 520ms var(--ease-out), opacity 260ms ease, color 180ms ease;
}
.mobile-menu.is-open a { opacity: 1; transform: translateY(0); transition-delay: calc(120ms + var(--menu-index, 0) * 55ms); }

.hero { 
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #38251f;
  color: var(--white);
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  display: block;
  object-fit: cover;
  object-position: 50% 62%;
}

.js .hero-image { animation: hero-settle 1400ms var(--ease-out) both; }

.hero-scrim {
  z-index: -1;
  background: linear-gradient(90deg, rgb(0 0 0 / 0.30), rgb(0 0 0 / 0.10));
}

.hero-content {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 6.5rem 0 clamp(2.25rem, 7vh, 5rem);
}

.js .hero-content > * { animation: hero-content-in 780ms var(--ease-out) both; }
.js .hero-content > :nth-child(1) { animation-delay: 140ms; }
.js .hero-content > :nth-child(2) { animation-delay: 210ms; }
.js .hero-content > :nth-child(3) { animation-delay: 300ms; }
.js .hero-content > :nth-child(4) { animation-delay: 390ms; }

@keyframes hero-settle {
  from { transform: scale(1.1); }
  to { transform: scale(1); }
}

@keyframes hero-content-in {
  from { opacity: 0; transform: translateY(45%) scale(0.96); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

.eyebrow {
  margin: 0 0 0.8rem;
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 10ch;
  margin-bottom: 1.1rem;
  font-size: clamp(3.6rem, 9vw, 7.7rem);
  line-height: 0.82;
  letter-spacing: -0.04em;
  font-weight: 780;
}

h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.35rem, 5vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  font-weight: 760;
}

h3 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-copy {
  max-width: 34rem;
  margin-bottom: 1.6rem;
  font-size: clamp(1rem, 2vw, 1.23rem);
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 780;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: transform 140ms var(--ease-out), background-color 180ms ease, color 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(255 255 255 / 0.2);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 260ms var(--ease-out);
  pointer-events: none;
}
.button:active { transform: scale(0.965); }
.button:active::after { clip-path: inset(0 0 0 0); transition-duration: 120ms; }
.button-light { background: var(--white); color: var(--ink); }
.button-light:hover { background: #f0e5d8; }
.button-ghost { border-color: rgb(255 255 255 / 0.62); background: rgb(31 20 16 / 0.18); color: var(--white); }
.button-ghost:hover { background: rgb(31 20 16 / 0.34); }
.button-dark { background: var(--forest); color: var(--white); }
.button-dark:hover { background: var(--forest-deep); }

.section { padding-block: var(--section-space); }
.section-shell { width: var(--shell); margin-inline: auto; }

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(2.5rem, 8vw, 8rem);
  align-items: center;
}

.intro-copy p {
  max-width: 42rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding-block: 0.45rem;
  position: relative;
  color: var(--forest);
  font-weight: 750;
  text-decoration: none;
}

.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.35rem;
  left: 0;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  transition: transform 220ms var(--ease-out);
}
.text-link:hover { color: var(--forest-deep); }
.text-link:active { transform: scale(0.97); }

.media-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
  position: relative;
  transform: translateZ(0);
  transition: transform 160ms var(--ease-out);
}

.media-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 25%, rgb(255 255 255 / 0.2) 48%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 720ms var(--ease-out);
  pointer-events: none;
}
.media-button:active { transform: scale(0.985); }

.portrait-media,
.menu-media,
.gallery-item {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 2px;
}

.portrait-media img,
.menu-media img,
.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 720ms var(--ease-out), filter 420ms ease;
}

.menu-section { background: var(--surface); }
.section-heading { max-width: 52rem; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section-heading p { max-width: 40rem; color: var(--muted); font-size: 1.05rem; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.menu-card { min-width: 0; }
.menu-card-copy { padding: 1.35rem 0.25rem 0; }
.menu-card-copy p { color: var(--muted); max-width: 31rem; margin-bottom: 0; }

.features { padding-block: 0; background: var(--forest); color: var(--white); }
.feature-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.feature-band p {
  min-height: 10.5rem;
  margin: 0;
  padding: 2.2rem clamp(1rem, 2.4vw, 2rem);
  border-left: 1px solid rgb(255 255 255 / 0.22);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: rgb(255 255 255 / 0.74);
  font-size: 0.83rem;
}

.feature-band p:last-child { border-right: 1px solid rgb(255 255 255 / 0.22); }
.feature-band strong { color: var(--white); font-size: clamp(1rem, 1.8vw, 1.3rem); line-height: 1.2; }
.feature-band p { transition: background-color 220ms ease, transform 220ms var(--ease-out); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.reviews-section { background: var(--surface); }
.reviews-heading { margin-bottom: 2.5rem; }
.reviews-heading h2 { margin-bottom: 0.75rem; }
.rating-summary { display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: baseline; color: var(--muted); }
.rating-summary strong { color: var(--ink); font-size: 2rem; }
.rating-summary span[aria-label] { color: var(--forest); letter-spacing: 0.08em; }

.reviews-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.review {
  min-width: 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.review-author img { transition: transform 260ms var(--ease-out); }

.review-featured { padding-right: clamp(0rem, 3vw, 2rem); }
.review-author { display: flex; gap: 0.8rem; align-items: center; }
.review-author img { width: 3rem; height: 3rem; border-radius: 50%; object-fit: cover; background: var(--line); }
.review-author div { display: grid; }
.review-author strong { line-height: 1.1; }
.review-author span { color: var(--forest); font-size: 0.72rem; letter-spacing: 0.08em; }
.review blockquote { margin: 1.4rem 0; font-size: clamp(1.05rem, 2vw, 1.35rem); line-height: 1.42; letter-spacing: -0.015em; }
.review-featured blockquote { font-size: clamp(1.35rem, 2.6vw, 2.15rem); line-height: 1.25; }
.review .text-link { margin-top: auto; }

.visit-section { padding-bottom: 0; }
.visit-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  min-height: 42rem;
}

.visit-copy {
  padding: clamp(3rem, 8vw, 7rem) max(1rem, calc((100vw - 1200px) / 2));
  padding-right: clamp(2rem, 6vw, 5rem);
  background: var(--forest-deep);
  color: var(--white);
}

.visit-copy h2 { max-width: 9ch; }
.visit-copy address { margin-bottom: 2rem; font-style: normal; font-size: 1.08rem; }
.visit-details { margin: 0 0 2.25rem; }
.visit-details div { padding: 1rem 0; border-top: 1px solid rgb(255 255 255 / 0.2); }
.visit-details dt { color: rgb(255 255 255 / 0.64); font-size: 0.78rem; }
.visit-details dd { margin: 0.1rem 0 0; font-weight: 700; }
.visit-copy .button-dark { background: var(--white); color: var(--ink); }
.visit-copy .text-link { color: var(--white); }
.fsa-note { display: grid; gap: 0.2rem; }
.fsa-note span { color: rgb(255 255 255 / 0.62); font-size: 0.74rem; }

.map-wrap { min-height: 36rem; background: #ded2c8; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 36rem; display: block; border: 0; }

.site-footer { padding-block: 3rem; background: var(--forest-deep); color: var(--white); border-top: 1px solid rgb(255 255 255 / 0.18); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 2rem; align-items: start; }
.footer-wordmark { max-width: 10ch; min-height: 2.75rem; display: inline-flex; align-items: center; font-size: 1.8rem; line-height: 0.95; letter-spacing: -0.04em; font-weight: 780; text-decoration: none; }
.site-footer address { font-style: normal; color: rgb(255 255 255 / 0.72); }
.site-footer nav { display: grid; gap: 0.7rem; }

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: #17110f;
  color: var(--white);
  opacity: 0;
  transition: opacity 240ms ease;
}

.lightbox[open].is-active { opacity: 1; }

.lightbox::backdrop { background: rgb(0 0 0 / 0.76); }
.lightbox-bar { height: 4.5rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 0.75rem 1rem; border-bottom: 1px solid rgb(255 255 255 / 0.18); transform: translateY(-100%); transition: transform 420ms var(--ease-out); }
.lightbox-bar p { margin: 0; max-width: 70%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lightbox-close,
.lightbox-nav { border: 1px solid rgb(255 255 255 / 0.35); border-radius: 999px; background: transparent; color: var(--white); cursor: pointer; }
.lightbox-close { min-width: 4rem; min-height: 2.6rem; padding: 0.6rem 0.9rem; }
.lightbox-stage { height: calc(100dvh - 4.5rem); display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 1rem; align-items: center; padding: 1rem; transform: translateY(2%) scale(0.94); filter: blur(10px); transition: transform 520ms var(--ease-out), filter 360ms ease; }
.lightbox-image { width: 100%; height: 100%; display: block; object-fit: contain; }
.lightbox-nav { min-width: 5.5rem; min-height: 2.75rem; padding: 0.6rem 0.8rem; }
.lightbox.is-active .lightbox-bar { transform: translateY(0); }
.lightbox.is-active .lightbox-stage { transform: translateY(0) scale(1); filter: blur(0); }
.lightbox-close,
.lightbox-nav { transition: transform 140ms var(--ease-out), background-color 180ms ease, border-color 180ms ease; }
.lightbox-close:active,
.lightbox-nav:active { transform: scale(0.94); }

.js .reveal {
  opacity: 1;
  transform: none;
  filter: none;
}

.js .reveal.is-visible {
  animation: reveal-in 760ms var(--ease-out) both;
  animation-delay: var(--reveal-delay, 0ms);
}

@keyframes reveal-in {
  from { opacity: 1; transform: translateY(2.5rem) scale(0.985); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@media (hover: hover) and (pointer: fine) {
  .wordmark:hover { transform: translateY(-2px) scale(1.025); }
  .desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
  .menu-toggle:hover { transform: scale(1.04); background: rgb(31 22 18 / 0.34); border-color: rgb(255 255 255 / 0.8); }
  .mobile-menu a:hover { color: var(--accent-soft); transform: translateX(0.16em); }
  .button:hover { transform: translateY(-3px); }
  .text-link:hover::after { transform: scaleX(0.38); transform-origin: right; }
  .media-button:hover img { transform: scale(1.07) rotate(0.45deg); filter: saturate(1.08) contrast(1.02); }
  .media-button:hover::after { transform: translateX(130%); }
  .feature-band p:hover { background: rgb(255 255 255 / 0.08); transform: translateY(-5px); }
  .review:hover .review-author img { transform: scale(1.1) rotate(-3deg); }
  .lightbox-close:hover,
  .lightbox-nav:hover { background: var(--white); color: var(--ink); border-color: var(--white); transform: translateY(-2px); }
}

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .menu-toggle { display: inline-flex; }
  .intro-grid { grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr); gap: 2.5rem; }
  .feature-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-band p:nth-child(3) { border-top: 1px solid rgb(255 255 255 / 0.22); }
  .feature-band p:nth-child(4) { border-top: 1px solid rgb(255 255 255 / 0.22); }
  .reviews-grid { grid-template-columns: 1.2fr 1fr; }
  .review:last-child { grid-column: 2; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-copy { padding: 5rem max(1rem, calc((100vw - 760px) / 2)); }
  .map-wrap, .map-wrap iframe { min-height: 30rem; }
}

@media (max-width: 767px) {
  :root { --section-space: 4.75rem; --shell: min(100% - 2rem, 42rem); }
  .site-header { min-height: 4.25rem; }
  .hero { min-height: 100svh; }
  .hero-image { object-position: 60% 62%; }
  .hero-scrim { background: linear-gradient(0deg, rgb(0 0 0 / 0.30), rgb(0 0 0 / 0.10)); }
  .hero-content { width: calc(100% - 2rem); padding: 6rem 0 max(2rem, env(safe-area-inset-bottom)); }
  h1 { font-size: clamp(3.35rem, 18vw, 5.25rem); }
  h2 { font-size: clamp(2.25rem, 12vw, 3.6rem); }
  .hero-copy { max-width: 29rem; font-size: 1rem; }
  .intro-grid,
  .menu-grid,
  .gallery-grid,
  .reviews-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .intro-grid { gap: 2.5rem; }
  .intro-copy { order: 1; }
  .portrait-media { order: 2; }
  .menu-grid,
  .gallery-grid { gap: 1rem; }
  .menu-card { padding-bottom: 2rem; }
  .menu-card:last-child { padding-bottom: 0; }
  .feature-band p { min-height: 8.5rem; padding: 1.5rem 1rem; }
  .feature-band p:nth-child(even) { border-right: 1px solid rgb(255 255 255 / 0.22); }
  .reviews-grid { gap: 2rem; }
  .review:last-child { grid-column: auto; }
  .review-featured { padding-right: 0; }
  .review-featured blockquote { font-size: 1.4rem; }
  .visit-copy { padding: 4.5rem 1rem; }
  .visit-copy h2 { max-width: 10ch; }
  .map-wrap, .map-wrap iframe { min-height: 28rem; }
  .footer-grid { gap: 1.5rem; }
  .site-footer nav { grid-auto-flow: column; justify-content: start; gap: 1.25rem; }
  .lightbox-stage { grid-template-columns: 1fr 1fr; grid-template-rows: minmax(0, 1fr) auto; gap: 0.75rem; }
  .lightbox-image { grid-column: 1 / -1; grid-row: 1; }
  .lightbox-nav { width: 100%; min-width: 0; }
  .lightbox-prev { grid-column: 1; grid-row: 2; }
  .lightbox-next { grid-column: 2; grid-row: 2; }
}

@media (max-width: 420px) {
  .hero-actions { align-items: stretch; }
  .hero-actions .button { flex: 1 1 8.75rem; }
  .feature-band { grid-template-columns: 1fr; }
  .feature-band p { border-right: 1px solid rgb(255 255 255 / 0.22); border-top: 1px solid rgb(255 255 255 / 0.22); }
  .feature-band p:first-child { border-top: 0; }
  .visit-actions { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 120ms !important; transition-delay: 0ms !important; }
  .js .reveal.is-visible { animation-name: reduced-fade; }
  .js .hero-content > * { animation-name: reduced-fade; }
  .js .hero-image { animation: none; }
  .mobile-menu { clip-path: none; }
  .mobile-menu a { transform: none; }
  .lightbox-stage,
  .lightbox-bar { transform: none; filter: none; }
}

@keyframes reduced-fade { from { opacity: 1; } to { opacity: 1; } }

@media (prefers-reduced-transparency: reduce) {
  .site-header { background: rgb(33 25 21 / 0.96); backdrop-filter: none; -webkit-backdrop-filter: none; }
}
