:root {
  color-scheme: dark;
  --ink: oklch(95% 0.025 55);
  --ink-soft: oklch(78% 0.035 55);
  --paper: oklch(12% 0.012 55);
  --paper-deep: oklch(17% 0.016 55);
  --surface: oklch(15% 0.014 55);
  --orange: #ea5b1e;
  --surface-warm: #111111;
  --surface-amber: var(--orange);
  --copper-deep: var(--orange);
  --accent: var(--orange);
  --accent-dark: var(--orange);
  --accent-soft: var(--orange);
  --orange-deep: var(--orange);
  --line-accent: var(--orange);
  --line: oklch(100% 0 0 / 0.18);
  --white: oklch(98% 0.015 70);
  --black: oklch(9% 0.01 55);
  --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);
  --radius: 10px;
  --header-height: 72px;
  --content: min(1180px, calc(100vw - 40px));
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--white);
  color: var(--black);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  color: var(--white);
  transition: background-color 220ms ease, color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-solid,
.site-header.is-open {
  background: oklch(12% 0.012 55 / 0.96);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line-accent);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: inherit;
  font-size: 0.86rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  white-space: nowrap;
}

.site-nav > a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

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

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

.site-nav > a:hover,
.site-nav > a:focus-visible {
  color: var(--accent-dark);
}

.site-nav > a[aria-current="location"] {
  color: var(--orange);
}

.site-nav > a[aria-current="location"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.social-links a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: inherit;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms var(--ease-out);
}

.social-links a:active {
  transform: scale(0.92);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-links a:nth-child(2) svg {
  width: 11px;
  height: 20px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  transition: transform 160ms var(--ease-out), background-color 180ms ease;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 1.5px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 220ms var(--ease-drawer);
}

.menu-toggle:active {
  transform: scale(0.94);
}

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

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

.hero-image {
  z-index: -2;
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
  animation: hero-enter 1400ms var(--ease-out) both;
}

.hero-shade {
  z-index: -1;
  background: rgba(0, 0, 0, 0.22);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: var(--content);
  margin: 0 auto;
  padding: calc(var(--header-height) + 40px) 0 clamp(44px, 8vh, 88px);
  text-align: left;
}

.hero-content > * {
  animation: hero-copy-item 820ms var(--ease-out) both;
}

.hero-content > :nth-child(1) {
  animation-delay: 140ms;
}

.hero-content > :nth-child(2) {
  animation-delay: 210ms;
}

.hero-content > :nth-child(3) {
  animation-delay: 290ms;
}

.hero-content > :nth-child(4) {
  animation-delay: 370ms;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  text-shadow: 0 2px 6px rgb(0 0 0 / 82%);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 6.5vw, 5.6rem);
  font-weight: 760;
  letter-spacing: -0.015em;
  line-height: 1.07;
  text-shadow: 0 3px 10px rgb(0 0 0 / 78%);
  text-wrap: balance;
}

.hero-copy {
  max-width: 440px;
  margin: 24px 0 0;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 550;
  line-height: 1.64;
  text-shadow: 0 2px 7px rgb(0 0 0 / 82%);
}

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

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms var(--ease-out), background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:active {
  transform: translateY(1px) scale(0.96);
}

.button-light {
  background: var(--accent);
  color: var(--black);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(20, 24, 26, 0.18);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button-dark {
  background: var(--accent);
  color: var(--black);
}

.section {
  padding: clamp(76px, 10vw, 136px) 0;
}

.section-shell {
  width: var(--content);
  margin: 0 auto;
}

.section h2,
.visit-section h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5.5vw, 5.4rem);
  font-weight: 730;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.section-kicker {
  color: var(--accent-dark);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading p {
  max-width: 600px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.ratio-3x4 {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.ratio-3x4 > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-section {
  background: var(--surface-warm);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.68fr);
  gap: clamp(48px, 9vw, 126px);
  align-items: center;
}

.about-copy h2 {
  max-width: 700px;
}

.about-copy > p:not(.section-kicker) {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.7vw, 1.16rem);
}

.about-image {
  margin: 0;
  border-radius: var(--radius);
  background: var(--surface-amber);
}

.about-copy h2,
.menu-section h2,
.coffee-story h2,
.gallery-section h2,
.reviews-section h2 {
  color: var(--accent-soft);
}

.about-image img {
  object-position: 50% 52%;
}

.trust-line {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 620px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line-accent);
}

.trust-line a {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  text-decoration: none;
}

.trust-line strong {
  color: var(--accent);
  font-size: 1.85rem;
}

.hygiene-rating-link {
  align-items: center;
}

.hygiene-badge {
  display: block;
  width: min(100%, 240px);
  height: auto;
}

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

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

.menu-panel {
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line-accent);
  background: var(--orange);
  color: var(--black);
  transform-origin: 50% 100%;
  transition: transform 340ms var(--ease-out), box-shadow 340ms var(--ease-out), border-color 180ms ease;
}

.menu-image {
  background: var(--surface-amber);
}

.menu-image img {
  transition: transform 700ms var(--ease-out), filter 300ms ease;
}

.menu-panel:nth-child(1) .menu-image img {
  object-position: 49% 55%;
}

.menu-panel:nth-child(2) .menu-image img {
  object-position: 50% 32%;
}

.menu-panel:nth-child(3) .menu-image img {
  object-position: 50% 50%;
}

.menu-panel-body {
  padding: 26px 24px 28px;
}

.menu-panel h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.15;
}

.menu-panel-body > p {
  min-height: 3.2em;
  margin: 12px 0 24px;
  color: var(--black);
  font-size: 0.93rem;
  line-height: 1.5;
}

.menu-panel dl {
  margin: 0;
}

.menu-panel dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.menu-panel dl div:last-child {
  border-bottom: 0;
}

.menu-panel dt,
.menu-panel dd {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.35;
}

.menu-panel dt {
  color: var(--black);
  font-weight: 650;
}

.menu-panel dd {
  color: var(--black);
  font-weight: 800;
}

.menu-action {
  margin-top: 34px;
  text-align: right;
}

.text-link {
  color: var(--orange);
  font-weight: 800;
}

.menu-panel .text-link {
  color: var(--black);
}

.menu-panel .text-link::after {
  content: " ↗";
  display: inline-block;
  transition: transform 180ms var(--ease-out);
}

.coffee-section {
  background: var(--surface-warm);
}

.coffee-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr 0.7fr;
  grid-template-areas: "primary story secondary";
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
}

.coffee-photo {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-deep);
}

.coffee-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.primary-photo {
  grid-area: primary;
  height: min(68vw, 680px);
}

.primary-photo img {
  object-position: 56% 50%;
}

.secondary-photo {
  grid-area: secondary;
  height: min(44vw, 440px);
}

.secondary-photo img {
  object-position: 50% 52%;
}

.coffee-story {
  grid-area: story;
  padding: clamp(24px, 3vw, 38px);
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--black);
}

.coffee-story h2 {
  color: var(--black);
  font-size: clamp(2.4rem, 4.8vw, 4.8rem);
}

.coffee-story > p {
  margin: 24px 0 30px;
  color: var(--black);
}

.coffee-story ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.coffee-story li {
  padding-left: 22px;
  position: relative;
  font-size: 0.92rem;
  font-weight: 650;
}

.coffee-story li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 12px;
  height: 1px;
  background: var(--black);
}

.gallery-section {
  background: var(--orange);
  color: var(--black);
}

.gallery-section h2 {
  color: var(--black);
}

.gallery-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.gallery-heading p {
  margin-left: auto;
  margin-right: auto;
  color: var(--black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--black);
  outline: 1px solid var(--black);
  outline-offset: -1px;
  cursor: zoom-in;
  transition: transform 320ms var(--ease-out), outline-color 180ms ease, box-shadow 320ms var(--ease-out);
}

.gallery-item img {
  transition: transform 700ms var(--ease-out), filter 300ms ease;
}

.gallery-item::after {
  content: "+";
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--black);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  opacity: 0;
  transform: translate(-50%, -42%) scale(0.88);
  transition: opacity 180ms ease, transform 260ms var(--ease-out);
  pointer-events: none;
}

.gallery-item:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.gallery-item:active {
  transform: scale(0.985);
}

.gallery-item:nth-child(1) img {
  object-position: 50% 45%;
}

.gallery-item:nth-child(2) img {
  object-position: 52% 50%;
}

.gallery-item:nth-child(3) img {
  object-position: 50% 50%;
}

.gallery-item:nth-child(4) img {
  object-position: 50% 54%;
}

.gallery-item:nth-child(5) img {
  object-position: 50% 50%;
}

.gallery-item:nth-child(6) img {
  object-position: 50% 52%;
}

.reviews-section {
  background: var(--surface-warm);
}

.reviews-section h2 {
  margin-bottom: 52px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-accent);
  border-bottom: 1px solid var(--line-accent);
}

.review {
  padding: 34px clamp(20px, 3vw, 42px) 12px 0;
  transition: transform 260ms var(--ease-out), background-color 220ms ease;
}

.review + .review {
  padding-left: clamp(20px, 3vw, 42px);
  border-left: 1px solid var(--line-accent);
}

.stars {
  color: var(--accent);
  letter-spacing: 0.08em;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.review-avatar {
  display: block;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--paper-deep);
  transition: transform 260ms var(--ease-out), box-shadow 260ms ease;
}

.review-author-name {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 750;
  transition: color 180ms ease;
}

.review blockquote {
  margin: 22px 0;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  font-weight: 620;
  line-height: 1.5;
}

.review a {
  color: var(--accent-dark);
  font-size: 0.84rem;
  font-weight: 750;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1.28fr);
  min-height: 720px;
  background: var(--orange);
  color: var(--black);
}

.visit-copy .phone-link,
.visit-copy .hours p,
.visit-copy .hours strong {
  color: var(--black);
}

.visit-copy .hours {
  border-top-color: var(--black);
}

.visit-copy .button-dark {
  background: var(--black);
  color: var(--orange);
}

.visit-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(70px, 8vw, 120px) clamp(28px, 7vw, 100px);
}

.visit-copy address {
  margin-top: 34px;
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 650;
}

.visit-copy address a,
.phone-link {
  text-decoration: none;
}

.phone-link {
  margin-top: 10px;
  color: var(--accent-dark);
  font-size: 1.05rem;
  font-weight: 800;
}

.hours {
  width: min(100%, 390px);
  margin: 34px 0;
  padding-top: 24px;
  border-top: 1px solid var(--line-accent);
}

.hours h3 {
  margin: 0 0 14px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hours p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 8px 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.hours strong {
  color: var(--ink);
  white-space: nowrap;
}

.map-wrap {
  min-height: 520px;
  background: var(--paper-deep);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 36px;
  align-items: end;
  padding: 56px max(20px, calc((100vw - 1180px) / 2));
  background: var(--black);
  color: var(--white);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand p {
  margin: 0;
  font-weight: 800;
}

.footer-details p {
  margin: 0 0 8px;
  color: rgba(251, 251, 248, 0.72);
  font-size: 0.88rem;
}

.footer-details a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-links > a {
  font-size: 0.88rem;
  font-weight: 700;
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 72px 84px 48px;
  border: 0;
  background: rgba(18, 22, 24, 0.96);
  color: var(--white);
  opacity: 0;
  transform: scale(0.975);
  transition: opacity 260ms ease, transform 360ms var(--ease-out);
}

.lightbox::backdrop {
  background: rgba(18, 22, 24, 0.72);
}

.lightbox[open] {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 80px;
  align-items: center;
  opacity: 1;
  transform: scale(1);
}

.lightbox.is-instant,
.lightbox.is-instant[open] {
  transition: none;
}

@starting-style {
  .lightbox[open] {
    opacity: 0;
    transform: scale(0.975);
  }
}

.lightbox figure {
  display: grid;
  min-width: 0;
  height: 100%;
  max-height: calc(100dvh - 120px);
  margin: 0;
  place-items: center;
}

.lightbox figure img {
  display: block;
  max-width: 100%;
  max-height: calc(100dvh - 160px);
  object-fit: contain;
  will-change: transform, opacity, filter;
}

.lightbox figcaption {
  margin-top: 14px;
  color: rgba(251, 251, 248, 0.76);
  font-size: 0.88rem;
}

.lightbox button {
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  transition: transform 160ms var(--ease-out), background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.lightbox button:active {
  transform: scale(0.94);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  min-width: 74px;
  min-height: 44px;
  padding: 8px 14px;
}

.lightbox-control {
  width: 68px;
  min-height: 48px;
  padding: 8px;
  font-size: 0.78rem;
}

.js .reveal {
  opacity: 0;
  scale: 0.985;
  translate: 0 38px;
}

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

@keyframes hero-enter {
  from { opacity: 0.58; transform: scale(1.065); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes hero-copy-item {
  from {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes reveal-in {
  from {
    opacity: 0;
    scale: 0.985;
    translate: 0 38px;
  }
  to {
    opacity: 1;
    scale: 1;
    translate: 0 0;
  }
}

@media (hover: hover) and (pointer: fine) {
  .social-links a:hover {
    background: var(--orange);
    color: var(--black);
    transform: translateY(-4px) rotate(-4deg);
  }

  .button:hover:not(:active) {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 0 rgb(0 0 0 / 24%);
  }

  .button-light:hover,
  .button-dark:hover {
    background: var(--accent-dark);
  }

  .visit-copy .button-dark:hover {
    background: var(--black);
    color: var(--orange);
  }

  .button-ghost:hover {
    border-color: var(--accent);
    background: rgba(20, 24, 26, 0.42);
    color: var(--accent-dark);
  }

  .menu-panel:hover {
    border-color: var(--black);
    box-shadow: 0 12px 0 var(--black);
    transform: translateY(-10px);
  }

  .menu-panel:hover .menu-image img {
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.065);
  }

  .menu-panel:hover .text-link::after {
    transform: translate(4px, -4px);
  }

  .gallery-item:hover:not(:active) {
    outline-color: var(--orange);
    box-shadow: 0 12px 0 var(--black);
    transform: translateY(-8px) rotate(-0.6deg);
  }

  .gallery-item:nth-child(even):hover:not(:active) {
    transform: translateY(-8px) rotate(0.6deg);
  }

  .gallery-item:hover img {
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.07);
  }

  .gallery-item:hover::after,
  .gallery-item:focus-visible::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .review:hover {
    background: rgb(234 91 30 / 8%);
    transform: translateY(-6px);
  }

  .review:hover .review-avatar {
    box-shadow: 0 0 0 3px var(--orange);
    transform: scale(1.08) rotate(-3deg);
  }

  .review:hover .review-author-name {
    color: var(--orange);
  }

  .lightbox button:hover {
    border-color: var(--orange);
    background: var(--orange);
    color: var(--black);
    transform: translateY(-2px);
  }
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    max-height: calc(100dvh - var(--header-height));
    overflow-x: hidden;
    overflow-y: auto;
    justify-items: start;
    gap: 0;
    padding: 18px 20px 28px;
    background: oklch(15% 0.014 55 / 0.98);
    color: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px) scale(0.985);
    transform-origin: top right;
    visibility: hidden;
    transition: opacity 180ms ease, transform 320ms var(--ease-drawer), visibility 0s linear 320ms;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    visibility: visible;
    transition-delay: 0ms;
  }

  .site-nav > a {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.08rem;
    opacity: 0;
    transform: translateY(-8px);
    transition: color 180ms ease, opacity 180ms ease, transform 260ms var(--ease-out);
  }

  .site-nav.is-open > a {
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav.is-open > a:nth-child(1) { transition-delay: 40ms; }
  .site-nav.is-open > a:nth-child(2) { transition-delay: 80ms; }
  .site-nav.is-open > a:nth-child(3) { transition-delay: 120ms; }
  .site-nav.is-open > a:nth-child(4) { transition-delay: 160ms; }

  .site-nav .social-links {
    margin-top: 18px;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 260ms var(--ease-out);
  }

  .site-nav.is-open .social-links {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 200ms;
  }

  .site-header.is-open .menu-toggle span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }

  .site-header.is-open .menu-toggle span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .about-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
    gap: 44px;
  }

  .menu-grid {
    gap: 14px;
  }

  .menu-panel-body {
    padding: 22px 18px;
  }

  .menu-panel h3 {
    font-size: 1.24rem;
  }

  .menu-panel-body > p {
    min-height: 4.6em;
  }

  .coffee-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "story story" "primary secondary";
  }

  .coffee-story {
    max-width: 650px;
  }

  .primary-photo,
  .secondary-photo {
    height: 58vw;
    max-height: 560px;
  }

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

@media (max-width: 767px) {
  :root {
    --content: calc(100vw - 36px);
    --header-height: 68px;
  }

  .site-header {
    padding: 0 18px;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .hero-content {
    padding-bottom: max(42px, calc(env(safe-area-inset-bottom) + 28px));
  }

  .hero-image {
    object-position: 55% 50%;
  }

  .hero h1 {
    max-width: 340px;
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .hero-copy {
    max-width: 320px;
  }

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

  .button {
    min-width: 0;
    padding-inline: 16px;
  }

  .section {
    padding: 76px 0;
  }

  .section h2,
  .visit-section h2 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .about-grid,
  .menu-grid,
  .gallery-grid,
  .reviews-grid,
  .visit-section,
  .coffee-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 40px;
  }

  .about-image {
    width: 100%;
  }

  .trust-line {
    grid-template-columns: 1fr;
    gap: 10px;
    justify-items: center;
  }

  .trust-line a {
    justify-content: center;
  }

  .menu-grid {
    gap: 18px;
  }

  .menu-panel-body > p {
    min-height: 0;
  }

  .menu-action {
    text-align: left;
  }

  .coffee-grid {
    grid-template-areas: "story" "primary" "secondary";
    gap: 18px;
  }

  .primary-photo,
  .secondary-photo {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .secondary-photo {
    aspect-ratio: 3 / 4;
  }

  .gallery-heading {
    text-align: left;
  }

  .gallery-grid {
    gap: 14px;
  }

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

  .review,
  .review + .review {
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .review blockquote {
    max-width: 33ch;
  }

  .visit-section {
    min-height: 0;
  }

  .visit-copy {
    padding: 76px 18px 58px;
  }

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

  .site-footer {
    gap: 30px;
    align-items: start;
    padding: 44px 18px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .lightbox {
    padding: 72px 14px 24px;
  }

  .lightbox[open] {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    gap: 14px;
  }

  .lightbox figure {
    grid-column: 1 / -1;
    grid-row: 1;
    max-height: calc(100dvh - 160px);
  }

  .lightbox figure img {
    max-height: calc(100dvh - 210px);
  }

  .lightbox-control {
    width: 100%;
  }

  .lightbox-prev {
    grid-column: 1;
  }

  .lightbox-next {
    grid-column: 2;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .js .reveal {
    opacity: 1;
    scale: 1;
    translate: none;
    transform: none;
  }

  .hero-image,
  .hero-content > * {
    animation: none !important;
    filter: none;
    opacity: 1;
    transform: none;
  }

  .lightbox,
  .lightbox[open] {
    transform: none;
  }
}
