:root {
  --paper: #f2ece4;
  --paper-soft: #e7ddd1;
  --surface: #faf7f2;
  --ink: #1c261a;
  --muted: #5b594c;
  --accent: #2c532a;
  --accent-dark: #1c3618;
  --leaf-light: #5b8c60;
  --sign-warm: #c4ae95;
  --line: #cbbba9;
  --white: #fffdf8;
  --radius: 4px;
  --header-height: 72px;
  --shell: min(1200px, calc(100vw - 40px));
  --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);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.lightbox-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

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

button,
.button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid #d8a748;
  outline-offset: 4px;
}

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: var(--header-height);
  color: var(--white);
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  color: var(--ink);
  background: rgb(242 236 228 / 0.96);
  border-bottom: 1px solid rgb(44 83 42 / 0.24);
  backdrop-filter: blur(16px) saturate(1.15);
}

.site-nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.wordmark span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.wordmark small {
  margin-top: 5px;
  font-size: 0.67rem;
  letter-spacing: 0.09em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.86rem;
  font-weight: 650;
}

.nav-links > a:not(.social-link) {
  position: relative;
  text-decoration: none;
}

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

.nav-toggle {
  display: none;
  min-width: 72px;
  padding: 8px 12px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: transform 140ms var(--ease-out), background-color 180ms ease;
}

.social-link {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  transition: transform 180ms var(--ease-out), background-color 180ms ease;
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

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

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

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: 50% 44%;
  will-change: transform;
}

.hero-scrim {
  z-index: -1;
  background: linear-gradient(to top, rgb(0 0 0 / 0.30), rgb(0 0 0 / 0.08) 64%, rgb(0 0 0 / 0.10));
}

.hero-content {
  padding: 0 0 clamp(48px, 9vh, 88px);
}

.hero h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  text-wrap: balance;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.1rem, 8vw, 6.7rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-shadow: 0 2px 16px rgb(0 0 0 / 0.25);
}

.hero-content > p {
  max-width: 550px;
  margin: 22px 0 0;
  font-size: clamp(1rem, 2vw, 1.28rem);
  line-height: 1.45;
  text-shadow: 0 1px 10px rgb(0 0 0 / 0.28);
}

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

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 160ms var(--ease-out), background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgb(255 255 255 / 0.16);
  clip-path: inset(0 100% 0 0);
  pointer-events: none;
  transition: clip-path 280ms var(--ease-out);
}

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

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

.button-outline-light {
  border-color: rgb(255 253 248 / 0.8);
  background: rgb(0 0 0 / 0.18);
  color: var(--white);
}

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

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

.button-secondary {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.section {
  padding: clamp(76px, 11vw, 148px) 0;
}

.section h2,
.visit-copy h2 {
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.section-heading {
  max-width: 710px;
  margin-bottom: 44px;
}

.section-heading p {
  max-width: 52ch;
  margin: 18px 0 0;
  color: var(--muted);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.72fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}

.story {
  position: relative;
  isolation: isolate;
  overflow: visible;
  background: var(--surface);
  padding-top: clamp(190px, 24vw, 330px);
}

.story::before {
  content: "";
  position: absolute;
  top: clamp(-82px, -5.5vw, -42px);
  right: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 33.333vw;
  background: url("assets/leaf-canopy.png") center top / contain no-repeat;
  opacity: 0.96;
  pointer-events: none;
}

.story-grid {
  position: relative;
  z-index: 1;
}

.story-copy p {
  max-width: 62ch;
  margin: 28px 0 0;
  color: var(--muted);
}

.portrait-media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  display: block;
  margin: 0;
  border-radius: var(--radius);
  background: var(--paper-soft);
}

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

.story-media img {
  object-position: 50% 48%;
}

.menu-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--paper-soft);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.1vw, 28px);
}

.menu-panel {
  min-width: 0;
  border-top: 2px solid var(--accent);
  padding-top: 16px;
  transform-origin: 50% 100%;
  transition: transform 280ms var(--ease-out), border-color 180ms ease;
}

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

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

.menu-afternoon-media img {
  object-position: 50% 50%;
}

.menu-panel-copy {
  padding-top: 24px;
}

.menu-panel h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.1;
}

.menu-panel-copy > p {
  min-height: 3.2em;
  margin: 12px 0 20px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.menu-items {
  margin: 0;
}

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

.menu-items dt,
.menu-items dd {
  margin: 0;
}

.menu-items dt {
  font-weight: 650;
}

.menu-items dd {
  color: var(--accent-dark);
  font-variant-numeric: tabular-nums;
}

.allergen-note {
  max-width: 660px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 0.87rem;
}

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

.gallery-item {
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  cursor: zoom-in;
  position: relative;
  overflow: hidden;
  transition: transform 200ms var(--ease-out);
}

.gallery-item::after {
  content: "View";
  position: absolute;
  right: 16px;
  bottom: 16px;
  min-width: 54px;
  padding: 8px 11px;
  border-radius: var(--radius);
  background: rgb(249 250 246 / 0.94);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1;
  opacity: 0;
  transform: translateY(10px) scale(0.94);
  transform-origin: right bottom;
  transition: opacity 180ms ease, transform 220ms var(--ease-out);
  pointer-events: none;
}

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

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

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

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

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

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

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

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

.reviews-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 52px;
}

.reviews-heading p {
  margin: 0 0 5px;
  color: var(--muted);
}

.reviews-heading strong {
  color: var(--ink);
  font-size: 1.35rem;
}

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

.review {
  min-width: 0;
  padding: 8px clamp(20px, 3vw, 42px) 4px;
  border-left: 1px solid var(--line);
  transition: transform 240ms var(--ease-out);
}

.review:first-child {
  padding-left: 0;
  border-left: 0;
}

.stars {
  margin: 0 0 22px;
  color: var(--accent);
  letter-spacing: 0.12em;
}

.review blockquote {
  min-height: 4.8em;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.1vw, 1.7rem);
  line-height: 1.4;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.review-avatar {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 50%;
  background: var(--paper-soft);
  object-fit: cover;
  transition: transform 240ms var(--ease-out);
}

.review-author {
  margin: 0 0 4px;
  font-size: 0.93rem;
  font-weight: 750;
}

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

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

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, 0.7fr);
  min-height: 650px;
}

.map-wrap {
  min-height: 650px;
  background: #d5dbd4;
}

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

.visit-copy {
  align-self: center;
  padding: clamp(56px, 7vw, 100px);
}

.visit-copy address {
  margin-top: 30px;
  font-style: normal;
}

.phone-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent-dark);
  font-size: 1.25rem;
  font-weight: 750;
}

.hours-list {
  margin: 32px 0 0;
}

.hours-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  padding: 8px 0;
}

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

.hours-list dt {
  font-weight: 650;
}

.hours-list dd {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.site-footer {
  position: relative;
  padding: 72px 0 28px;
  background: var(--accent-dark);
  color: var(--white);
  border-top: 8px solid var(--sign-warm);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr auto;
  gap: 48px;
  align-items: start;
}

.footer-wordmark {
  margin-bottom: 22px;
}

.footer-grid p {
  max-width: 360px;
  margin: 0 0 6px;
  color: rgb(255 253 248 / 0.8);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  width: fit-content;
}

.footer-social {
  justify-self: end;
}

.footer-bottom {
  margin-top: 54px;
  padding-top: 20px;
  border-top: 1px solid rgb(255 253 248 / 0.24);
  font-size: 0.8rem;
  color: rgb(255 253 248 / 0.72);
}

.footer-bottom p {
  margin: 0;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(90px, 1fr) minmax(0, 900px) minmax(90px, 1fr);
  align-items: center;
  gap: 18px;
  padding: 28px;
  background: rgb(11 14 12 / 0.94);
  color: var(--white);
  opacity: 1;
  transition: opacity 220ms var(--ease-out);
}

.lightbox figure {
  max-width: 900px;
  max-height: calc(100svh - 100px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  justify-items: center;
  gap: 12px;
  margin: 0;
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transition: opacity 220ms ease, transform 260ms var(--ease-out), filter 220ms ease;
}

.lightbox[data-closing] {
  opacity: 0;
}

.lightbox[data-closing] figure {
  opacity: 0;
  transform: translateY(14px) scale(0.975);
  filter: blur(3px);
}

.lightbox[data-instant],
.lightbox[data-instant] figure {
  transition-duration: 0ms;
}

@starting-style {
  .lightbox:not([data-instant]) {
    opacity: 0;
  }

  .lightbox:not([data-instant]) figure {
    opacity: 0;
    transform: translateY(24px) scale(0.94);
    filter: blur(5px);
  }
}

.lightbox figure img {
  max-width: 100%;
  max-height: calc(100svh - 150px);
  object-fit: contain;
}

.lightbox figcaption {
  max-width: 70ch;
  font-size: 0.86rem;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  border: 1px solid rgb(255 253 248 / 0.7);
  border-radius: var(--radius);
  background: rgb(0 0 0 / 0.3);
  color: var(--white);
  cursor: pointer;
  transition: transform 140ms var(--ease-out), background-color 180ms ease;
}

.lightbox-close:active,
.lightbox-nav:active {
  transform: scale(0.96);
}

@media (hover: hover) and (pointer: fine) {
  .nav-links > a:not(.social-link):hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .social-link:hover,
  .nav-toggle:hover {
    transform: translateY(-2px) scale(1.03);
    background: rgb(255 255 255 / 0.1);
  }

  .button:hover {
    transform: translateY(-3px) scale(1.015);
  }

  .button:hover::after {
    clip-path: inset(0 0 0 0);
  }

  .menu-panel:hover {
    transform: translateY(-9px) rotate(0.25deg);
  }

  .menu-panel:hover .portrait-media img {
    transform: scale(1.045);
    filter: saturate(1.06) contrast(1.03);
  }

  .gallery-item:hover::after {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

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

  .review:hover {
    transform: translateY(-7px);
  }

  .lightbox-close:hover,
  .lightbox-nav:hover {
    transform: translateY(-2px);
    background: rgb(255 255 255 / 0.14);
  }
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  min-width: 72px;
  padding: 9px 12px;
}

.lightbox-nav {
  min-height: 46px;
  padding: 10px 14px;
}

.lightbox-prev {
  justify-self: end;
}

.lightbox-next {
  justify-self: start;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-image {
    animation: hero-image-enter 1400ms both var(--ease-out);
  }

  .hero h1 {
    animation: hero-copy-enter 820ms 90ms both var(--ease-out);
  }

  .hero-content > p {
    animation: hero-copy-enter 760ms 190ms both var(--ease-out);
  }

  .hero-actions {
    animation: hero-copy-enter 700ms 280ms both var(--ease-out);
  }

  @keyframes hero-image-enter {
    from {
      transform: scale(1.075) translateY(1.5%);
      filter: saturate(0.82) contrast(1.05);
    }
    to {
      transform: scale(1) translateY(0);
      filter: none;
    }
  }

  @keyframes hero-copy-enter {
    from {
      opacity: 0;
      transform: translateY(34px);
      filter: blur(7px);
    }
    to {
      opacity: 1;
      transform: none;
      filter: blur(0);
    }
  }
}

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

}

@media (max-width: 1023px) {
  :root {
    --shell: min(100% - 32px, 900px);
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: grid;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--ink);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.965);
    transform-origin: top right;
    transition: opacity 150ms ease, transform 210ms var(--ease-drawer), visibility 0s linear 210ms;
  }

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

  .site-header[data-instant-menu] .nav-links {
    transition-duration: 0ms;
  }

  .nav-links > a:not(.social-link) {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 6px 8px;
  }

  .nav-links .social-link {
    margin: 8px;
  }

  .story-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
    gap: 48px;
  }

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

  .visit-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  }

  .visit-copy {
    padding: 48px 32px;
  }
}

@media (max-width: 719px) {
  :root {
    --header-height: 64px;
    --shell: calc(100% - 28px);
  }

  body {
    font-size: 16px;
  }

  .site-header {
    height: var(--header-height);
  }

  .wordmark span {
    font-size: 1.08rem;
  }

  .wordmark small {
    font-size: 0.59rem;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-image {
    object-position: 49% 43%;
  }

  .hero-content {
    padding-bottom: max(38px, env(safe-area-inset-bottom));
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.45rem);
    line-height: 0.92;
  }

  .hero-content > p {
    max-width: 330px;
    margin-top: 18px;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .button {
    min-height: 46px;
  }

  .section {
    padding: 76px 0;
  }

  .section h2,
  .visit-copy h2 {
    font-size: clamp(2.4rem, 12vw, 3.45rem);
  }

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

  .story-grid,
  .menu-grid,
  .reviews-grid,
  .visit-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .story-grid {
    gap: 34px;
  }

  .story {
    overflow: visible;
    padding-top: 148px;
  }

  .story::before {
    top: -28px;
    left: auto;
    right: -22vw;
    width: 144vw;
    height: 48vw;
    opacity: 0.94;
  }

  .story-media {
    order: -1;
  }

  .story-copy p {
    margin-top: 22px;
  }

  .menu-grid {
    gap: 48px;
  }

  .menu-panel-copy > p {
    min-height: auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .reviews-heading {
    display: block;
    margin-bottom: 30px;
  }

  .reviews-heading p {
    margin-top: 16px;
  }

  .reviews-grid {
    gap: 36px;
  }

  .review,
  .review:first-child {
    padding: 28px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .review blockquote {
    min-height: 0;
  }

  .review-meta {
    margin-top: 20px;
  }

  .visit-grid,
  .map-wrap,
  .map-wrap iframe {
    min-height: 0;
  }

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

  .visit-copy {
    padding: 62px 16px 72px;
    width: var(--shell);
    margin-inline: auto;
  }

  .visit-actions .button {
    width: 100%;
  }

  .footer-grid {
    gap: 38px;
  }

  .footer-social {
    justify-self: start;
  }

  .lightbox {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 70px 14px 18px;
  }

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

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

  .lightbox-prev,
  .lightbox-next {
    justify-self: stretch;
  }

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

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

@media (max-width: 380px) {
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions .button {
    padding-inline: 13px;
  }
}
