:root {
  --color-ink: #1f211b;
  --color-muted: #6d6254;
  --color-paper: #fff8ec;
  --color-rice: #f8ead3;
  --color-green: #163f2e;
  --color-green-soft: #dce8d3;
  --color-soy: #6d2f1d;
  --color-tea: #ba7a2a;
  --color-orange: #ee8c24;
  --color-red: #9e251f;
  --color-line: rgba(44, 35, 24, 0.14);
  --shadow-soft: 0 20px 60px rgba(61, 36, 15, 0.14);
  --shadow-card: 0 14px 38px rgba(61, 36, 15, 0.12);
  --radius: 8px;
  --container: 1180px;
  --header-height: 70px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  line-height: 1.75;
  background:
    radial-gradient(circle at 12px 12px, rgba(109, 47, 29, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, #fff9ef 0%, #f6e6ca 100%);
  background-size: 24px 24px, auto;
}

body.menu-open {
  overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--color-orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: #fff;
  background: var(--color-green);
  border-radius: var(--radius);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(255, 248, 236, 0.92);
  border-bottom: 1px solid rgba(64, 45, 25, 0.12);
  backdrop-filter: blur(18px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 36px, var(--container));
  min-height: var(--header-height);
  margin: 0 auto;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--color-green);
  font-size: 22px;
  font-weight: 700;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 22px rgba(61, 36, 15, 0.16);
}

.brand span {
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  gap: 6px;
  list-style: none;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #2a3327;
  font-size: 18px;
  font-weight: 500;
}

.nav-menu a:hover {
  color: var(--color-soy);
  background: rgba(186, 122, 42, 0.13);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--color-green);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 999px;
}

.site-search {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  order: 2;
}

.site-search-toggle {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(44, 35, 24, 0.12);
  border-radius: 999px;
  color: var(--color-green);
  background: #fff7e8;
  font-size: 1.34rem;
  font-weight: 950;
  line-height: 1;
  cursor: pointer;
}

.site-search-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 110;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  gap: 8px;
  width: min(420px, calc(100vw - 28px));
  padding: 10px;
  background: rgba(255, 248, 236, 0.98);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
}

.site-search.is-open .site-search-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-search-input {
  width: 100%;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid rgba(44, 35, 24, 0.2);
  border-radius: var(--radius);
  color: var(--color-ink);
  background: #fff;
  font: inherit;
}

.site-search-submit {
  min-height: 42px;
  padding: 8px 14px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--color-green);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.site-search-message {
  grid-column: 1 / -1;
  min-height: 1.3em;
  margin: 0;
  color: var(--color-red);
  font-size: 0.92rem;
  font-weight: 800;
}

.search-highlight {
  color: var(--color-ink);
  background: #ffe28f;
  border-radius: 4px;
  box-shadow: 0 0 0 2px #ffe28f;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  background: var(--color-green);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(20, 44, 31, 0.88) 0%, rgba(20, 44, 31, 0.68) 38%, rgba(20, 44, 31, 0.2) 100%),
    linear-gradient(0deg, rgba(22, 63, 46, 0.72) 0%, rgba(22, 63, 46, 0.06) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 36px, var(--container));
  margin: 0 auto;
  padding: clamp(86px, 13vw, 150px) 0 clamp(64px, 9vw, 110px);
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--color-tea);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd59a;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(2.65rem, 8vw, 6.2rem);
  line-height: 1.02;
  font-weight: 950;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

h2 {
  margin: 0;
  color: var(--color-green);
  font-size: clamp(1.75rem, 3.4vw, 3.2rem);
  line-height: 1.18;
  font-weight: 950;
}

h3 {
  margin: 0 0 8px;
  color: var(--color-green);
  font-size: 1.22rem;
  line-height: 1.35;
}

.hero-subtitle {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.08rem, 2.2vw, 1.5rem);
  font-weight: 800;
}

.hero-actions,
.contact-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.2;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--color-red), var(--color-orange));
  box-shadow: 0 14px 28px rgba(149, 52, 24, 0.28);
}

.btn-secondary {
  color: var(--color-green);
  background: #fff7e8;
}

.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.intro-band {
  position: relative;
  z-index: 2;
  width: min(100% - 36px, var(--container));
  margin: 0 auto;
  padding: clamp(70px, 8vw, 112px) 0 0;
}

.intro-heading {
  margin-bottom: 24px;
}

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

.menu-highlights {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.intro-item,
.food-card,
.menu-card {
  overflow: hidden;
  background: rgba(255, 252, 244, 0.96);
  border: 1px solid rgba(186, 122, 42, 0.18);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(84, 49, 22, 0.1);
}

.intro-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  min-height: 238px;
  padding: 28px 26px;
}

.intro-media {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  padding: 10px;
  background: #fffdf7;
  border-radius: 50%;
}

.intro-item img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 50%;
}

.intro-item h2 {
  font-size: 1.18rem;
}

.intro-item p,
.card-body p,
.section-heading p,
.story-copy p,
.tea-copy p,
.location-copy p,
.contact-inner p,
.menu-intro p {
  color: var(--color-muted);
}

.visit-card {
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.96), rgba(255, 243, 220, 0.92)),
    radial-gradient(circle at 8% 12%, rgba(238, 140, 36, 0.12), transparent 30%);
  border: 1px solid rgba(186, 122, 42, 0.2);
  border-radius: 18px;
  box-shadow: 0 22px 58px rgba(84, 49, 22, 0.12);
}

.visit-copy {
  font-size: 1.12rem;
  font-weight: 800;
}

.visit-tags,
.contact-mini-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.visit-tags span,
.contact-mini-cards span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  color: var(--color-green);
  background: #fff7e8;
  border: 1px solid rgba(186, 122, 42, 0.26);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 900;
}

.section,
.tea-section {
  padding: clamp(78px, 9vw, 128px) 0;
}

.section-inner {
  width: min(100% - 36px, var(--container));
  margin: 0 auto;
}

.story-grid,
.tea-grid,
.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(34px, 6vw, 76px);
}

.story-photos {
  position: relative;
  min-height: 500px;
}

.story-photos img,
.store-gallery img,
.tea-image img {
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.photo-main {
  width: 82%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 8px solid var(--color-paper);
}

.signature-section,
.menu-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(238, 140, 36, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 248, 236, 0.85), rgba(220, 232, 211, 0.36));
}

.section-heading,
.menu-intro {
  max-width: 760px;
  margin-bottom: 34px;
}

.signature-gallery {
  display: grid;
  gap: 22px;
}

.signature-feature {
  overflow: hidden;
  margin: 0;
  background: rgba(255, 252, 244, 0.96);
  border: 1px solid rgba(186, 122, 42, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(84, 49, 22, 0.12);
}

.signature-feature img {
  width: 100%;
  max-height: 560px;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  object-position: center 48%;
}

.signature-thumbs {
  gap: 18px;
}

.food-card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.card-body,
.menu-card {
  padding: 20px;
}

.menu-layout {
  display: grid;
  gap: 26px;
}

.menu-split {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: start;
  gap: clamp(22px, 4vw, 44px);
}

.menu-split .menu-image-wrap {
  position: sticky;
  top: calc(var(--header-height) + 22px);
}

.menu-split .menu-highlights {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-image-wrap {
  width: min(100%, 1100px);
  margin: 0 auto;
}

.menu-image {
  width: 100%;
  height: auto;
  max-height: 780px;
  object-fit: contain;
  background: #fffaf1;
  border: 1px solid rgba(186, 122, 42, 0.28);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(70, 43, 18, 0.15);
}

.menu-note {
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 0.94rem;
  text-align: center;
}

.menu-card-title {
  display: inline-block;
  margin: 0 0 14px;
  padding: 4px 12px 6px;
  color: #fff8ec;
  background: linear-gradient(90deg, var(--color-red), #0e4164);
  border-radius: 999px 12px 999px 12px;
  font-size: 1.05rem;
}

.menu-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: baseline;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(109, 47, 29, 0.18);
}

.menu-item-name {
  font-weight: 800;
}

.menu-item-price {
  color: var(--color-red);
  font-weight: 950;
  white-space: nowrap;
}

.tea-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(22, 63, 46, 0.96), rgba(63, 89, 45, 0.92)),
    linear-gradient(45deg, rgba(255, 248, 236, 0.06) 25%, transparent 25%, transparent 75%, rgba(255, 248, 236, 0.06) 75%);
  background-size: auto, 34px 34px;
}

.tea-section h2,
.tea-section .eyebrow {
  color: #ffe2ad;
}

.tea-section p {
  color: rgba(255, 255, 255, 0.86);
}

.hours-panel {
  display: grid;
  grid-template-columns: 32% 68%;
  overflow: hidden;
  background: #fffaf1;
  border: 1px solid rgba(186, 122, 42, 0.2);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(70, 43, 18, 0.14);
}

.hours-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 320px;
  padding: clamp(32px, 4.6vw, 54px);
  color: #fff;
  background: linear-gradient(145deg, rgba(22, 63, 46, 0.97), rgba(38, 79, 55, 0.94));
}

.hours-brand h2 {
  color: #fff8ec;
}

.hours-brand .eyebrow {
  color: #ffdca8;
}

.hours-schedule {
  display: grid;
  align-content: center;
  padding: clamp(30px, 5vw, 58px);
}

.hours-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  gap: 16px;
  padding: clamp(28px, 4.6vw, 52px);
}

.info-card {
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 20px;
  background: #fffdf7;
  border: 1px solid rgba(186, 122, 42, 0.22);
  border-radius: 8px;
}

.info-card span {
  color: var(--color-tea);
  font-size: 0.92rem;
  font-weight: 900;
}

.info-card strong {
  color: var(--color-green);
  font-size: 1.08rem;
  line-height: 1.55;
}

.hours-info-grid .hours-call {
  grid-column: 1 / -1;
  justify-self: start;
}

.hours-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.9fr) minmax(150px, 1fr) minmax(150px, 1fr);
  align-items: center;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px dashed rgba(109, 47, 29, 0.22);
}

.hours-day strong,
.hours-slot span {
  color: var(--color-green);
  font-weight: 950;
}

.hours-slot-wide {
  grid-column: span 2;
}

.store-gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 14px;
  align-items: stretch;
}

.map-card {
  overflow: hidden;
  min-height: 430px;
  background: #fffaf1;
  border: 1px solid rgba(186, 122, 42, 0.2);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

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

.store-gallery img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.lively-gallery {
  padding: 8px;
}

.lively-gallery .gallery-main {
  transform: rotate(-1.5deg);
}

.lively-gallery .gallery-side {
  transform: translateY(28px) rotate(2deg);
}

.gallery-badge {
  position: absolute;
  right: 20px;
  top: 18px;
  z-index: 2;
  padding: 8px 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--color-red), var(--color-orange));
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(84, 49, 22, 0.2);
  font-weight: 950;
}

.contact-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 6vw, 78px) 18px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(238, 140, 36, 0.28), transparent 28%),
    radial-gradient(circle at 86% 36%, rgba(255, 213, 154, 0.16), transparent 24%),
    linear-gradient(135deg, var(--color-soy), #2a3327);
  text-align: center;
}

.contact-inner {
  width: min(100%, 920px);
  margin: 0 auto;
}

.contact-inner h2 {
  color: #fff;
}

.contact-inner .eyebrow {
  color: #ffd59a;
}

.contact-inner p {
  color: rgba(255, 255, 255, 0.86);
}

.contact-actions {
  justify-content: center;
}

.contact-mini-cards {
  justify-content: center;
}

.contact-mini-cards span {
  color: #fff8ec;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 226, 173, 0.35);
}

.site-footer {
  padding: 44px 0 28px;
  color: rgba(255, 255, 255, 0.85);
  background: #16231d;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  gap: 32px;
  width: min(100% - 36px, var(--container));
  margin: 0 auto;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 10px;
  color: #fff1cf;
  font-size: 1.2rem;
  font-weight: 950;
}

address {
  display: grid;
  gap: 6px;
  font-style: normal;
}

address a {
  color: #ffd59a;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.copyright {
  width: min(100% - 36px, var(--container));
  margin: 28px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: var(--color-green);
  border: 0;
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

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

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

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

@media (max-width: 1020px) {
  .nav-toggle {
    display: block;
    order: 3;
  }

  .nav-menu {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    max-height: calc(100svh - var(--header-height));
    padding: 18px;
    overflow-y: auto;
    background: rgba(255, 248, 236, 0.98);
    border-bottom: 1px solid var(--color-line);
    box-shadow: var(--shadow-soft);
    transform: translateY(-120%);
    visibility: hidden;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .nav-menu a {
    justify-content: center;
    min-height: 50px;
    border-radius: var(--radius);
    background: rgba(22, 63, 46, 0.06);
  }

  .site-search {
    order: 2;
    margin-left: auto;
  }

  .intro-grid,
  .menu-highlights,
  .food-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-split {
    grid-template-columns: 1fr;
  }

  .menu-split .menu-image-wrap {
    position: static;
  }

  .story-grid,
  .tea-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .hours-panel {
    grid-template-columns: 1fr;
  }

  .store-gallery img {
    min-height: 320px;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 70px;
  }

  .navbar,
  .section-inner,
  .intro-band,
  .footer-inner,
  .copyright {
    width: min(100% - 28px, var(--container));
  }

  .navbar {
    gap: 10px;
  }

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

  .brand span {
    max-width: 11em;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .site-search-panel {
    right: -56px;
    grid-template-columns: 1fr;
  }

  .site-search-submit {
    width: 100%;
  }

  .hero {
    min-height: 610px;
  }

  .hero-content {
    width: min(100% - 28px, var(--container));
    padding-top: 70px;
    padding-bottom: 42px;
  }

  .hero-actions,
  .contact-actions,
  .location-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    min-height: 52px;
  }

  .intro-band {
    padding-top: 56px;
  }

  .intro-grid,
  .menu-highlights,
  .food-grid {
    grid-template-columns: 1fr;
  }

  .menu-split .menu-highlights {
    grid-template-columns: 1fr;
  }

  .intro-item {
    grid-template-columns: 88px minmax(0, 1fr);
    min-height: 0;
    gap: 18px;
    padding: 20px;
  }

  .intro-media {
    width: 88px;
    height: 88px;
  }

  .intro-item img {
    width: 72px;
    height: 72px;
  }

  .section,
  .tea-section {
    padding: 72px 0;
  }

  .story-photos {
    min-height: 0;
  }

  .photo-main,
  .photo-small {
    position: static;
    width: 100%;
    border: 0;
  }

  .photo-small {
    margin-top: 14px;
    aspect-ratio: 4 / 3;
  }

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

  .hours-slot-wide {
    grid-column: auto;
  }

  .hours-info-grid {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .info-card {
    min-height: 0;
    padding: 18px;
  }

  .store-gallery,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .store-gallery img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .visit-card {
    padding: 20px;
  }

  .lively-gallery .gallery-main,
  .lively-gallery .gallery-side {
    transform: none;
  }

  .gallery-badge {
    right: 14px;
    top: 14px;
  }

  .signature-feature img {
    max-height: none;
    aspect-ratio: 4 / 3;
  }

  .map-card,
  .map-card iframe {
    min-height: 330px;
  }
}
