/* ===== LAX 慵懶 Maokong Panorama Restaurant ===== */

:root {
  --ink: #17160f;
  --brown: #2a2119;
  --text: #3a362d;
  --cream: #f7f4ec;
  --cream-2: #eee7d6;
  --sage: #57705f;
  --sage-dark: #3d5245;
  --sage-light: #7c9484;
  --gold: #ba8c52;
  --gold-dark: #93683a;
  --ig: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
  --shadow: 0 14px 34px rgba(23, 22, 15, 0.14);
  --radius: 14px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

body {
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.8;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Noto Serif TC", "Microsoft JhengHei", serif;
  color: var(--ink);
  line-height: 1.4;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 110px 0;
}

.section-alt {
  background: var(--cream-2);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-dark);
  letter-spacing: 0.28em;
  font-family: "Jost", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-bottom: 18px;
  text-wrap: balance;
}

.section-desc {
  max-width: 680px;
  color: #5a5648;
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.section-head .section-desc {
  margin: 0 auto;
}

.divider {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

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

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  box-shadow: 0 12px 26px rgba(147, 104, 58, 0.35);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-sage {
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  color: #fff;
  box-shadow: 0 12px 26px rgba(61, 82, 69, 0.35);
}

/* ===== Reveal on scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: var(--cream);
  box-shadow: 0 2px 18px rgba(23, 22, 15, 0.08);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.nav-links a {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-cta .btn {
  padding: 10px 22px;
  font-size: 0.88rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
  background: var(--cream);
  box-shadow: 0 12px 20px rgba(23, 22, 15, 0.1);
  padding: 16px 24px 30px;
  z-index: 998;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu > a {
  display: block;
  padding: 13px 0;
  font-weight: 700;
  font-size: 1.02rem;
  text-align: center;
  border-bottom: 1px solid rgba(23, 22, 15, 0.08);
}

.mobile-menu-actions {
  margin-top: 18px;
}

.mobile-menu-actions .btn {
  width: 100%;
  justify-content: center;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  aspect-ratio: 1568 / 715;
  display: flex;
  align-items: center;
  background: url("../images/banner.webp") right center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 24px 80px;
  color: #fff;
  width: 100%;
}

.hero-glass {
  max-width: clamp(260px, 30vw, 620px);
  margin: 0 20vw 0 auto;
  text-align: left;
  background: rgba(23, 22, 15, 0.22);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  padding: clamp(16px, 3vw, 34px) clamp(20px, 4vw, 38px);
  box-shadow: 0 16px 40px rgba(10, 9, 6, 0.18);
}

.hero-glass .hero-actions {
  justify-content: flex-start;
}

.hero-eyebrow {
  color: var(--gold);
  letter-spacing: 0.32em;
  font-family: "Jost", sans-serif;
  font-size: clamp(0.56rem, 1vw, 0.85rem);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: clamp(8px, 1.6vw, 20px);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
  white-space: nowrap;
}

.hero h1 {
  color: #fff;
  font-size: clamp(1.25rem, 3.1vw, 2.3rem);
  margin-bottom: clamp(10px, 2vw, 24px);
  max-width: 720px;
  text-wrap: balance;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65), 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.8rem, 1.3vw, 1.02rem);
  margin-bottom: clamp(14px, 3vw, 36px);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6), 0 1px 4px rgba(0, 0, 0, 0.45);
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(6px, 1.4vw, 16px);
}

.hero-glass .btn {
  white-space: nowrap;
  padding: clamp(7px, 1.4vw, 14px) clamp(12px, 2.6vw, 30px);
  font-size: clamp(0.68rem, 1vw, 0.98rem);
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  font-family: "Jost", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.2em;
}

.scroll-cue::after {
  content: "";
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.8), transparent);
  animation: scrollDown 1.8s infinite;
}

@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ===== Triptych scroll reveal ===== */
.triptych-section {
  position: relative;
  background: var(--ink);
  padding: 2px 0;
}

.triptych-dots {
  display: none;
}

.triptych {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1400px;
  margin: 0 auto;
}

.triptych figure {
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.triptych figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.triptych figure:nth-child(1) { transition-delay: 0s; }
.triptych figure:nth-child(2) { transition-delay: 0.25s; }
.triptych figure:nth-child(3) { transition-delay: 0.5s; }

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.about-text p {
  margin-bottom: 18px;
  color: #4a4636;
}

.about-text p:first-of-type {
  font-size: 1.06rem;
  color: var(--text);
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.philosophy-quote {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 34px 36px;
  margin: 44px 0;
}

.philosophy-quote p.lead {
  font-family: "Noto Serif TC", serif;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 20px;
}

.philosophy-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 30px;
  margin-bottom: 16px;
}

.philosophy-list li {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.philosophy-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.philosophy-quote p.philosophy-final {
  color: #e0a83e;
  font-weight: 700;
  font-size: 0.98rem;
}

/* ===== Reserve CTA (fixed bg) ===== */
.reserve {
  position: relative;
  background: url("../images/parallax-scrolling.jpg") center/cover;
  background-attachment: fixed;
  color: #fff;
  text-align: center;
  padding: 110px 0;
}

@media (max-width: 760px) {
  .reserve {
    background-attachment: scroll;
  }
}

.reserve h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  margin-bottom: 16px;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.85), 0 2px 6px rgba(0, 0, 0, 0.75), 0 1px 2px rgba(0, 0, 0, 0.9);
}

.reserve p {
  color: rgba(255,255,255,0.97);
  max-width: 560px;
  margin: 0 auto 34px;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.8), 0 1px 5px rgba(0, 0, 0, 0.7), 0 1px 2px rgba(0, 0, 0, 0.85);
}

.reserve-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Scenery masonry ===== */
.scenery-grid {
  column-count: 3;
  column-gap: 16px;
}

.scenery-grid figure {
  break-inside: avoid;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
}

.scenery-grid img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.scenery-grid figure:hover img {
  transform: scale(1.06);
}

.scenery-grid figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23, 22, 15, 0);
  transition: background 0.3s ease;
}

.scenery-grid figure:hover::before {
  background: rgba(23, 22, 15, 0.18);
}

/* ===== Lightbox ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 14, 10, 0.94);
  z-index: 1200;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 88vw;
  max-height: 84vh;
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

@media (max-width: 600px) {
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { top: 12px; right: 12px; }
}

/* ===== Slideshow (menu / bookout / directions) ===== */
.slideshow {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--brown);
}

.slideshow-track {
  display: flex;
  transition: transform 0.45s ease;
}

.slide {
  flex: 0 0 100%;
}

.slide img {
  width: 100%;
  display: block;
}

#menu .slide img,
#bookout .slide img {
  cursor: zoom-in;
}

.slide-prev,
.slide-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(23, 22, 15, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 3;
}

.slide-prev:hover,
.slide-next:hover {
  background: rgba(23, 22, 15, 0.75);
}

.slide-prev { left: 12px; }
.slide-next { right: 12px; }

.slide-counter {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(23, 22, 15, 0.55);
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  padding: 5px 14px;
  border-radius: 100px;
  z-index: 3;
}

/* ===== Directions grid ===== */
.directions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.directions-grid figure {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.directions-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.directions-list a,
.directions-list span {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.98rem;
  margin-bottom: 18px;
  color: var(--text);
}

.directions-list svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold-dark);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
  margin-top: 2px;
}

.directions-list a:hover {
  color: var(--gold-dark);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  min-height: 280px;
  box-shadow: var(--shadow);
}

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

/* ===== Events (latest activity) ===== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.event-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.event-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  cursor: zoom-in;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-image:hover img {
  transform: scale(1.05);
}

.event-body {
  padding: 26px 28px 30px;
}

.event-quote {
  color: var(--gold-dark);
  font-family: "Noto Serif TC", serif;
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 10px;
}

.event-body h3 {
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.event-text {
  font-size: 0.92rem;
  color: #5a5648;
  white-space: pre-line;
}

.event-period {
  display: inline-block;
  margin-top: 16px;
  background: var(--cream-2);
  color: var(--sage-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
}

/* ===== Footer / Contact ===== */
.footer {
  background: var(--ink);
  color: rgba(247, 244, 236, 0.82);
  padding-top: 80px;
  border-top: 1px solid rgba(186, 140, 82, 0.25);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(247, 244, 236, 0.14);
}

.footer-logo {
  height: 58px;
  width: 58px;
  margin-bottom: 18px;
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
}

.footer-logo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.footer p {
  font-size: 0.92rem;
  margin-bottom: 10px;
}

.footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}

.footer-list a,
.footer-list span {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  margin-bottom: 14px;
  color: rgba(247, 244, 236, 0.82);
}

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

.footer-list svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
  margin-top: 2px;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-row a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(247, 244, 236, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.social-row a:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.social-row svg {
  width: 18px;
  height: 18px;
  stroke: #f7f4ec;
  fill: none;
  stroke-width: 1.8;
}

.footer-map .map-wrap {
  min-height: 220px;
  filter: grayscale(0.25) contrast(1.05);
}

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

.footer-bottom {
  padding: 26px 0 34px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(247, 244, 236, 0.5);
}

/* ===== Floating buttons ===== */
.fab-group {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 950;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.fab {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.fab-top {
  width: 54px;
  height: 54px;
  background: var(--ink);
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, box-shadow 0.2s ease;
}

.fab-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fab-top svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}

.fab-char {
  font-family: "Noto Serif TC", serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1;
}

.fab-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.fab-ig {
  background: var(--ig);
}

.fab-ig svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
}

@media (max-width: 760px) {
  .fab-group {
    right: 18px;
    bottom: 18px;
    gap: 10px;
  }

  .fab {
    width: 48px;
    height: 48px;
  }

  .fab-top {
    width: 48px;
    height: 48px;
  }

  .fab-char {
    font-size: 1.25rem;
  }
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: 0.86rem;
  }
}

@media (max-width: 1000px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .scenery-grid {
    column-count: 2;
  }

  .directions-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .directions-info {
    grid-template-columns: 1fr;
  }

  .events-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .nav-links,
  .nav-cta .btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 76px 0;
  }

  .hero {
    aspect-ratio: auto;
    min-height: 100vh;
    background-position: 30% center;
  }

  .hero-content {
    padding: 100px 16px 56px;
  }

  .hero-glass {
    width: fit-content;
    max-width: 92vw;
    margin: 0 auto;
    padding: 24px 22px;
    border-radius: 16px;
  }

  .hero-eyebrow {
    font-size: 0.72rem;
    margin-bottom: 12px;
  }

  .hero h1 {
    font-size: 1.85rem;
    margin-bottom: 14px;
  }

  .hero p {
    font-size: 0.92rem;
    margin-bottom: 20px;
  }

  .philosophy-quote {
    padding: 24px 22px;
    margin: 28px 0;
  }


  .triptych {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 9%;
    gap: 1px;
    touch-action: pan-x;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .triptych::-webkit-scrollbar {
    display: none;
  }

  .triptych figure {
    flex: 0 0 82%;
    scroll-snap-align: center;
  }

  .triptych figure:nth-child(1),
  .triptych figure:nth-child(2),
  .triptych figure:nth-child(3) {
    transition-delay: 0s;
  }

  .triptych-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    z-index: 3;
    pointer-events: none;
  }

  .triptych-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
    transition: background 0.25s ease, transform 0.25s ease;
  }

  .triptych-dots .dot.active {
    background: #fff;
    transform: scale(1.25);
  }

  .philosophy-list {
    grid-template-columns: 1fr;
  }

  .scenery-grid {
    column-count: 2;
    column-gap: 10px;
  }

  .scenery-grid figure {
    margin-bottom: 10px;
  }

  .directions-grid {
    grid-template-columns: 1fr;
  }


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