:root {
  --bg: #faf7f0;
  --bg-elevated: #f6f0e3;
  --panel: #f2ecdd;
  --text: #1b1b1b;
  --muted: #5d5a52;
  --primary: #4f5f46;
  --accent: #5a3e2b;
  --line: rgba(27, 27, 27, 0.12);
  --line-strong: rgba(27, 27, 27, 0.2);
  --radius-xl: 1.6rem;
  --radius-lg: 1.2rem;
  --radius-md: 0.9rem;
  --shadow-sm: 0 8px 24px rgba(20, 18, 14, 0.08);
  --shadow-md: 0 16px 38px rgba(20, 18, 14, 0.12);
  --shadow-lg: 0 24px 64px rgba(20, 18, 14, 0.18);
  --nav-offset: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "DM Sans", sans-serif;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(circle at 100% 0%, #f3ead9 0, transparent 38%),
    radial-gradient(circle at 0% 100%, #f1e8d8 0, transparent 36%),
    linear-gradient(180deg, #fdfaf4 0%, var(--bg) 72%);
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.08;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(circle at 15% 15%, rgba(0, 0, 0, 0.24) 0.45px, transparent 0.75px),
    radial-gradient(circle at 70% 35%, rgba(0, 0, 0, 0.22) 0.45px, transparent 0.75px),
    radial-gradient(circle at 40% 80%, rgba(0, 0, 0, 0.22) 0.45px, transparent 0.75px);
  background-size: 3px 3px, 4px 4px, 5px 5px;
}

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

header {
  position: relative;
  z-index: 70;
}

main,
footer,
.back-to-top,
.lightbox {
  position: relative;
  z-index: 2;
}

[hidden] {
  display: none !important;
}

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

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

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.35rem, 8vw, 5rem);
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(1.6rem, 5vw, 2.85rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1rem;
  font-weight: 700;
}

.skip-link {
  position: absolute;
  top: -120px;
  left: 1rem;
  z-index: 120;
  background: var(--accent);
  color: #fff;
  border-radius: 0.5rem;
  padding: 0.6rem 0.9rem;
}

.skip-link:focus-visible {
  top: 1rem;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: clamp(3.9rem, 8vw, 6rem) 0;
}

section[id] {
  scroll-margin-top: var(--nav-offset);
}

.kicker {
  margin-bottom: 0.8rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-shell {
  background: linear-gradient(165deg, #f6f0e5 0%, var(--panel) 100%);
  border: 1px solid rgba(27, 27, 27, 0.1);
  border-radius: var(--radius-xl);
  padding: clamp(1.2rem, 3.3vw, 2.3rem);
  box-shadow: var(--shadow-sm);
}

.section-shell h2 + p,
.section-shell p + p {
  margin-top: 0.95rem;
}

.button-row {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.74rem 1.28rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease,
    border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fffdf9;
  background: var(--accent);
  box-shadow: 0 10px 24px rgba(90, 62, 43, 0.24);
}

.btn-primary:hover {
  background: #4f3425;
}

.btn-outline {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(90, 62, 43, 0.45);
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(90, 62, 43, 0.08);
}

.site-nav {
  position: fixed;
  top: max(0.85rem, env(safe-area-inset-top));
  left: 50%;
  transform: translateX(-50%);
  overflow: visible;
  width: min(1120px, calc(100% - 1rem));
  border-radius: 999px;
  border: 1px solid rgba(79, 95, 70, 0.26);
  background: rgba(250, 247, 240, 0.74);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.46rem 0.6rem;
  z-index: 120;
  transition: padding 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.site-nav.is-scrolled {
  padding: 0.4rem 0.55rem;
  box-shadow: var(--shadow-md);
  background: rgba(250, 247, 240, 0.92);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  border-radius: 999px;
  color: var(--primary);
  padding: 0.3rem 0.5rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-logo-image {
  display: none;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

body.logo-ready .brand-logo-image {
  display: block;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(79, 95, 70, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  display: inline-grid;
  place-items: center;
  gap: 0.18rem;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.site-nav.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-nav.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0.4rem;
  display: grid;
  gap: 0.22rem;
  position: absolute;
  top: calc(100% + 0.58rem);
  left: 0.45rem;
  right: 0.45rem;
  border-radius: 1rem;
  border: 1px solid rgba(79, 95, 70, 0.25);
  background: rgba(245, 239, 226, 0.98);
  box-shadow: var(--shadow-md);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px) scale(0.99);
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease, max-height 0.24s ease;
}

.site-nav.is-open .nav-menu {
  max-height: 70vh;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.nav-menu a {
  display: block;
  border-radius: 0.72rem;
  padding: 0.62rem 0.74rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #2d2b27;
}

.nav-menu a:hover {
  background: rgba(79, 95, 70, 0.13);
}

.nav-menu a.is-active {
  color: var(--primary);
  background: rgba(79, 95, 70, 0.18);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(6.4rem, 10vw, 9.2rem);
  min-height: clamp(620px, 92svh, 920px);
  display: grid;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(60px, 12vw, 130px);
  background: linear-gradient(180deg, rgba(250, 247, 240, 0), rgba(250, 247, 240, 0.84));
  z-index: 1;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(0.8rem, 2.2vw, 1.5rem);
  align-items: end;
  min-height: clamp(500px, 76svh, 760px);
}

.hero-copy {
  max-width: min(820px, 100%);
  padding: clamp(1rem, 2.4vw, 1.9rem);
  border-radius: 1.5rem;
  border: 0;
  background:
    linear-gradient(110deg, rgba(20, 22, 19, 0.58) 0%, rgba(20, 22, 19, 0.4) 45%, rgba(20, 22, 19, 0.08) 100%);
  box-shadow: 0 14px 40px rgba(14, 14, 14, 0.22);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.35rem 0.78rem;
  color: #f7f2e8;
  background: rgba(250, 247, 240, 0.14);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-subtag {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(247, 242, 232, 0.88);
}

.hero-copy h1 {
  color: #fcf8f1;
  font-size: clamp(2.65rem, 8.6vw, 5.1rem);
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.36);
}

.hero-copy p {
  margin-top: 0.95rem;
  color: rgba(248, 243, 234, 0.9);
  max-width: 56ch;
  font-size: clamp(1rem, 2.4vw, 1.08rem);
  text-wrap: balance;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #31372d;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.018);
  filter: saturate(0.92) contrast(0.96) brightness(0.9);
}

.hero-video-desktop {
  display: none;
}

.video-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 34%, rgba(250, 247, 240, 0.08) 0%, rgba(250, 247, 240, 0) 36%),
    linear-gradient(
      105deg,
      rgba(22, 24, 21, 0.56) 0%,
      rgba(22, 24, 21, 0.34) 42%,
      rgba(22, 24, 21, 0.18) 62%,
      rgba(22, 24, 21, 0.3) 100%
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.1));
}

.hero .btn-outline {
  color: #f8f2e9;
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.08);
}

.hero .btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.16);
}

.about-layout {
  display: grid;
  gap: 1.1rem;
}

.about-copy p + .chip-row {
  margin-top: 1.25rem;
}

.about-carousel {
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(27, 27, 27, 0.11);
  border-radius: var(--radius-lg);
  padding: 0.75rem;
  box-shadow: var(--shadow-sm);
}

.about-carousel-track {
  position: relative;
  border-radius: calc(var(--radius-lg) - 0.2rem);
  overflow: hidden;
  min-height: 360px;
  background: linear-gradient(145deg, rgba(79, 95, 70, 0.17), rgba(90, 62, 43, 0.2));
}

.about-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.42s ease, transform 0.42s ease;
  pointer-events: none;
}

.about-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.about-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-slide .image-fallback {
  display: none;
}

.about-carousel .about-slide.is-fallback {
  min-height: 360px;
  background: linear-gradient(145deg, rgba(79, 95, 70, 0.24), rgba(90, 62, 43, 0.28));
}

.about-carousel .about-slide.is-fallback img {
  display: none;
}

.about-carousel .about-slide.is-fallback .image-fallback {
  min-height: 360px;
  display: grid;
  place-items: center;
  color: #fff8ee;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 1rem;
}

.about-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.7rem;
}

.carousel-btn {
  min-width: 74px;
  border: 1px solid rgba(90, 62, 43, 0.42);
  border-radius: 999px;
  padding: 0.48rem 0.82rem;
  background: rgba(255, 255, 255, 0.65);
  color: var(--accent);
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.carousel-btn:hover {
  background: rgba(90, 62, 43, 0.12);
  border-color: rgba(90, 62, 43, 0.68);
}

.carousel-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.34rem;
  flex: 1;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: rgba(79, 95, 70, 0.28);
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.carousel-dot.is-active {
  transform: scale(1.2);
  background: var(--accent);
}

.chip-row {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.chip {
  border-radius: 999px;
  border: 1px solid rgba(79, 95, 70, 0.26);
  background: rgba(255, 255, 255, 0.58);
  color: var(--primary);
  padding: 0.48rem 0.82rem;
  font-size: 0.82rem;
  font-weight: 700;
}

#hours h2 + .hours-list {
  margin-top: 1.2rem;
}

.hours-list {
  display: grid;
  gap: 0.66rem;
}

.hours-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.92rem 1rem;
  background: #fff;
}

.hours-row p {
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-align: right;
}

.hours-row.is-closed {
  border-color: rgba(90, 62, 43, 0.34);
  background: rgba(90, 62, 43, 0.08);
}

.hours-row.is-closed p {
  color: var(--accent);
  font-weight: 700;
}

.closed-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.16rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
}

.location-grid {
  display: grid;
  gap: 1rem;
}

.location-grid > :first-child {
  background: linear-gradient(165deg, #f6f0e5 0%, var(--panel) 100%);
  border: 1px solid rgba(27, 27, 27, 0.1);
  border-radius: var(--radius-xl);
  padding: clamp(1.2rem, 3.2vw, 2.2rem);
  box-shadow: var(--shadow-sm);
}

address {
  margin: 0 0 1.2rem;
  color: var(--muted);
  font-style: normal;
  max-width: 54ch;
}

.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(27, 27, 27, 0.1);
  box-shadow: var(--shadow-sm);
  min-height: 290px;
  background: var(--bg-elevated);
}

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

.gallery-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.gallery-item {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(27, 27, 27, 0.09);
  border-radius: 1rem;
  overflow: hidden;
  padding: 0;
  margin: 0;
  position: relative;
  cursor: zoom-in;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 28%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.12));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item.is-fallback {
  min-height: 0;
}

.gallery-item.is-fallback .image-fallback {
  min-height: 100%;
}

.image-fallback {
  display: none;
}

[data-image-card].is-fallback {
  background: linear-gradient(145deg, rgba(79, 95, 70, 0.24), rgba(90, 62, 43, 0.28));
}

[data-image-card].is-fallback img {
  display: none;
}

[data-image-card].is-fallback .image-fallback {
  display: grid;
  place-items: center;
  min-height: 220px;
  color: #fff8ee;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  padding: 1rem;
}

.instagram-embed {
  margin: 1.25rem 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(79, 95, 70, 0.22);
  padding: 0.55rem;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-sm);
}

.instagram-media {
  margin: 0 auto !important;
  width: 100%;
  min-width: 220px;
  max-width: 540px;
  border-radius: 0.75rem;
  border: 1px solid rgba(27, 27, 27, 0.08);
  background: #fff;
}

.instagram-media a {
  display: block;
  color: var(--accent);
  font-weight: 700;
  text-align: center;
  padding: 1rem;
}

.instagram-profile-embed {
  width: 100%;
  min-height: clamp(460px, 70vw, 680px);
  border: 0;
  border-radius: 0.92rem;
  background: #fff;
}

.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: 1.8rem;
  padding: clamp(2.3rem, 5vw, 3rem) 0 1.2rem;
  border-top: 1px solid rgba(27, 27, 27, 0.1);
  background:
    radial-gradient(circle at 12% -10%, rgba(79, 95, 70, 0.14) 0%, rgba(79, 95, 70, 0) 46%),
    linear-gradient(180deg, #efe7d7 0%, #e9ddca 100%);
}

.footer-grid {
  display: grid;
  gap: 0.9rem;
}

.footer-col {
  border: 1px solid rgba(27, 27, 27, 0.09);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.44);
  padding: 0.95rem 1rem;
}

.footer-col p + p {
  margin-top: 0.28rem;
}

.footer-brand {
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.footer-address {
  color: #4f4a42;
  max-width: 34ch;
  line-height: 1.55;
}

.footer-title {
  margin-bottom: 0.45rem;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5b564d;
}

.footer-hours-list p {
  font-size: 0.94rem;
}

.footer-grid p {
  color: #403d37;
}

.footer-grid a {
  color: var(--accent);
  font-weight: 700;
}

.footer-meta {
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(27, 27, 27, 0.09);
  color: #555149;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
}

.footer-copyright,
.footer-credit {
  color: #59544b;
}

.footer-credit a {
  color: var(--accent);
  font-weight: 700;
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 60;
  border: 1px solid rgba(90, 62, 43, 0.4);
  border-radius: 999px;
  background: rgba(250, 247, 240, 0.95);
  color: var(--accent);
  font-weight: 700;
  padding: 0.56rem 0.86rem;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(5, 5, 5, 0.82);
  display: grid;
  place-items: center;
  padding: 1rem;
}

.lightbox-dialog {
  width: min(860px, 94vw);
}

.lightbox-close {
  margin-left: auto;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 0.42rem 0.74rem;
  display: inline-flex;
  cursor: pointer;
}

.lightbox-image {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #181818;
}

.lightbox-caption {
  margin-top: 0.65rem;
  color: #f5f5f5;
  font-size: 0.92rem;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.66s ease, transform 0.66s ease;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (max-width: 540px) {
  .container {
    width: calc(100% - 1.2rem);
  }

  .btn {
    width: 100%;
  }

  .button-row {
    flex-direction: column;
  }

  .hours-row {
    grid-template-columns: 1fr;
    justify-items: flex-start;
  }

  .hours-row p {
    text-align: left;
    flex-wrap: wrap;
  }

  .hero-copy {
    border-radius: var(--radius-lg);
  }

  .about-carousel-track {
    min-height: 320px;
  }

  .about-carousel .about-slide.is-fallback,
  .about-carousel .about-slide.is-fallback .image-fallback {
    min-height: 320px;
  }
}

@media (min-width: 460px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 760px) {
  .hero-copy {
    padding: 1.35rem 1.6rem;
  }

  .hero-video-mobile {
    display: none;
  }

  .hero-video-desktop {
    display: block;
  }

  .about-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    align-items: stretch;
  }

  .about-carousel {
    padding: 0.88rem;
  }

  .about-carousel-track {
    min-height: 410px;
  }

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

  .footer-col {
    padding: 1.05rem 1.1rem;
  }

  .footer-meta {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 860px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    min-height: min(830px, calc(100svh - 5.5rem));
  }

  .location-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: stretch;
  }

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

@media (min-width: 1024px) {
  .site-nav {
    width: min(1120px, calc(100% - 2rem));
    padding-inline: 0.75rem;
  }

  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    border: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
    pointer-events: auto;
    transform: none;
    opacity: 1;
    max-height: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.16rem;
  }

  .nav-menu a {
    border-radius: 999px;
    padding: 0.5rem 0.72rem;
    font-size: 0.9rem;
  }
}

@media (min-width: 1220px) {
  .hero {
    padding-top: 8.9rem;
  }

  .section {
    padding: 6.3rem 0;
  }
}

@media (min-width: 1024px) {
  .back-to-top {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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