:root {
  --ink: #144680;
  --ink-soft: #315f91;
  --paper: #fff7ec;
  --paper-deep: #fea844;
  --white: #fffdf8;
  --accent: #fd3917;
  --accent-dark: #b70612;
  --sage: #b70612;
  --line: rgba(20, 70, 128, 0.18);
  --shadow: 0 28px 80px rgba(20, 70, 128, 0.16);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 40px;
  --container: 1180px;
  --font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

::selection {
  color: var(--white);
  background: var(--accent);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  left: 20px;
  top: 20px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.site-frame {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.site-header {
  position: relative;
  z-index: 50;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 clamp(22px, 4vw, 54px);
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.smilepos-logo {
  display: block;
  width: auto;
  height: 42px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
}

.site-nav a:not(.nav-order)::after {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

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

.nav-order {
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 200ms ease;
}

.hero {
  position: relative;
  display: grid;
  height: calc(100svh - 76px);
  min-height: 620px;
  max-height: 860px;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(58px, 8vh, 86px) 24px 76px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.44)),
    radial-gradient(circle at 50% 20%, #fffdf8 0%, #fff0d8 46%, #ffd79e 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.28;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E");
  content: "";
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  width: min(720px, 82vw);
  text-align: center;
}

.eyebrow {
  margin: 0 0 22px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.story h2,
.experience h2,
.visit h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.85rem, 5.7vw, 5.8rem);
}

.hero h1 span {
  display: block;
}

.hero-copy {
  max-width: 620px;
  margin: 22px auto 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 22px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 14px 30px rgba(20, 70, 128, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 3px;
  font-size: 0.9rem;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  width: clamp(250px, 31vw, 510px);
  aspect-ratio: 1;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 28px 70px rgba(20, 70, 128, 0.20);
  opacity: 0;
  will-change: transform, opacity;
}

.hero-orbit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-orbit-left {
  top: -14%;
  left: -8%;
  transform: translate3d(-90px, -30px, 0) rotate(-12deg) scale(0.92);
  animation: heroFoodLeft 900ms 180ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-orbit-left img {
  object-position: 50% 58%;
}

.hero-orbit-right {
  right: -9%;
  bottom: -17%;
  transform: translate3d(90px, 40px, 0) rotate(9deg) scale(0.92);
  animation: heroFoodRight 950ms 280ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-orbit-right img {
  object-position: 50% 63%;
}

@keyframes heroFoodLeft {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-12deg) scale(1);
  }
}

@keyframes heroFoodRight {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(9deg) scale(1);
  }
}

.hero-note {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.hero-note i {
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

.section {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
  padding-block: clamp(88px, 11vw, 150px);
}

.section-heading {
  display: grid;
  max-width: 830px;
  gap: 24px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading .eyebrow {
  margin: 0;
}

.section-heading h2,
.story h2,
.experience h2,
.visit h2 {
  font-size: clamp(2.3rem, 5.1vw, 5.2rem);
}

.section-heading > p:last-child {
  max-width: 680px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.order-gateway {
  padding-top: 110px;
}

.order-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.order-step {
  min-height: 260px;
  padding: 34px;
}

.order-step + .order-step {
  border-left: 1px solid var(--line);
}

.step-number {
  display: block;
  margin-bottom: 50px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.order-step h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.order-step p {
  margin: 0;
  color: var(--ink-soft);
}


.gallery {
  padding-top: 104px;
}

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

.gallery-card {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.gallery-image {
  height: 330px;
  overflow: hidden;
  background: var(--paper-deep);
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-card:nth-child(1) .gallery-image img { object-position: 55% 53%; }
.gallery-card:nth-child(2) .gallery-image img { object-position: 55% 50%; }
.gallery-card:nth-child(3) .gallery-image img { object-position: 50% 55%; }

.gallery-card:hover .gallery-image img {
  transform: scale(1.045);
}

.gallery-caption {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
}

.gallery-caption span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.gallery-caption h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.order-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 36px;
  padding: clamp(30px, 5vw, 54px);
  color: var(--white);
  background: var(--accent);
  border-radius: var(--radius-md);
}

.order-banner .eyebrow {
  margin-bottom: 12px;
  opacity: 0.8;
}

.order-banner h3 {
  max-width: 680px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
}

.story.section {
  padding-top: clamp(52px, 5vw, 76px);
  padding-bottom: clamp(52px, 5vw, 76px);
}

.story-photo {
  position: relative;
}

.story-photo img {
  width: 100%;
  height: clamp(420px, 54vh, 520px);
  min-height: 0;
  object-fit: cover;
  object-position: center 48%;
  border-radius: var(--radius-lg);
}

.photo-stamp {
  position: absolute;
  right: -22px;
  bottom: 36px;
  padding: 13px 20px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  transform: rotate(-3deg);
}

.story-copy .eyebrow,
.experience-copy .eyebrow,
.visit-info .eyebrow {
  margin-bottom: 18px;
}

.story-copy .lead {
  margin: 22px 0 12px;
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  line-height: 1.42;
}

.story-copy > p:not(.eyebrow):not(.lead) {
  color: var(--ink-soft);
}

.signature {
  margin-top: 24px;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 1.7rem;
  font-style: normal;
  transform: none;
  transform-origin: left center;
}

/* Keep decorative labels readable and level. */
.photo-stamp { transform: none; }

.experience {
  display: grid;
  grid-template-columns: 1fr 0.9fr 0.62fr;
  min-height: 760px;
  background: var(--ink);
}

.experience-media,
.experience-detail {
  min-width: 0;
  overflow: hidden;
}

.experience-media img,
.experience-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-media img {
  object-position: 50% 30%;
}

.experience-detail img {
  object-position: 48% 55%;
}

.experience-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(42px, 7vw, 90px);
  color: var(--white);
}

.experience-copy h2 {
  margin-bottom: 26px;
}

.experience-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.feature-list {
  width: 100%;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-list span {
  color: #fd3917;
  font-size: 0.72rem;
}

.reviews.section {
  padding-top: clamp(48px, 4.5vw, 68px);
  padding-bottom: clamp(58px, 5vw, 78px);
}

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

.visit.section {
  padding-top: clamp(48px, 4.5vw, 68px);
  padding-bottom: clamp(58px, 5vw, 78px);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  display: flex;
  min-height: 300px;
  justify-content: space-between;
  flex-direction: column;
  margin: 0;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.review-card-featured {
  color: var(--white);
  background: var(--sage);
  border-color: transparent;
  transform: translateY(-10px);
}

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

.review-card-featured .review-stars {
  color: #fea844;
}

.review-card blockquote {
  margin: 34px 0 22px;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.review-card figcaption {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  gap: clamp(38px, 7vw, 90px);
  align-items: stretch;
}

.visit-map {
  min-height: 540px;
  overflow: hidden;
  background: var(--paper-deep);
  border-radius: var(--radius-lg);
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 540px;
  border: 0;
  filter: grayscale(1) contrast(0.88) sepia(0.12);
}

.visit-info {
  align-self: center;
}

.visit-details {
  display: grid;
  gap: 18px;
  margin: 28px 0;
}

.visit-details > div {
  display: grid;
  grid-template-columns: 92px 1fr;
  column-gap: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.detail-label {
  grid-row: 1 / span 3;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visit address {
  font-style: normal;
}

.visit-details a + a,
.hours-list div + div {
  margin-top: 4px;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.site-footer {
  padding: 64px clamp(26px, 6vw, 80px) 34px;
  color: rgba(255, 255, 255, 0.72);
  background: #144680;
}

.footer-brand {
  color: var(--white);
  font-size: 1.1rem;
}

.site-footer > p {
  margin: 18px 0 52px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  font-size: 0.74rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

.floating-order {
  position: fixed;
  z-index: 90;
  right: 30px;
  bottom: 30px;
  display: flex;
  min-width: 168px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 15px 20px;
  color: var(--white);
  background: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(183, 6, 18, 0.34);
  transition: transform 180ms ease, background-color 180ms ease, opacity 180ms ease;
}


.floating-order.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
}

.floating-order:hover,
.floating-order:focus-visible {
  background: var(--accent-dark);
  transform: translateY(-4px);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.error-page {
  display: grid;
  min-height: calc(100vh - 130px);
  place-items: center;
  padding: 60px 24px;
  text-align: center;
}

.error-page h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 13rem);
  line-height: 0.85;
  letter-spacing: -0.08em;
}

.error-page p {
  max-width: 540px;
  margin: 26px auto;
  color: var(--ink-soft);
}

@media (max-width: 1040px) {
  .hero {
    min-height: 600px;
  }

  .hero-orbit {
    width: 320px;
  }

  .hero-orbit-left {
    top: -12%;
    left: -14%;
  }

  .hero-orbit-right {
    right: -14%;
    bottom: -13%;
  }

  .experience {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .experience-detail {
    display: none;
  }

  .reviews.section {
  padding-top: clamp(48px, 4.5vw, 68px);
  padding-bottom: clamp(58px, 5vw, 78px);
}

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

.visit.section {
  padding-top: clamp(48px, 4.5vw, 68px);
  padding-bottom: clamp(58px, 5vw, 78px);
}

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

  .review-card:last-child {
    grid-column: 1 / -1;
  }

  .review-card-featured {
    transform: none;
  }
}

@media (max-width: 820px) {
  .site-frame {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }

  .site-header {
    min-height: 68px;
    padding-inline: 20px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 0;
    display: flex;
    width: 100%;
    height: calc(100vh - 76px);
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 34px 22px;
    background: var(--white);
    transform: translateY(-120%);
    visibility: hidden;
    opacity: 0;
    transition: transform 260ms ease, opacity 200ms ease, visibility 260ms;
  }

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

  .site-nav a {
    width: 100%;
    padding: 18px 0;
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: -0.04em;
    border-bottom: 1px solid var(--line);
  }

  .nav-order {
    margin-top: 20px;
    padding-inline: 20px !important;
    text-align: center;
    border: 0 !important;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(1) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .hero {
    height: calc(100svh - 68px);
    min-height: 560px;
    max-height: none;
    padding: 78px 20px 72px;
  }

  .hero-orbit {
    width: 250px;
  }

  .hero-orbit-left {
    top: -8%;
    left: -28%;
  }

  .hero-orbit-right {
    right: -25%;
    bottom: -10%;
  }

  .order-steps,
  .gallery-grid,
  .story,
  .experience,
  .visit {
    grid-template-columns: 1fr;
  }

  .order-step + .order-step {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .order-step {
    min-height: 0;
  }

  .step-number {
    margin-bottom: 28px;
  }

  .story-photo img {
    height: 440px;
    min-height: 0;
  }

  .photo-stamp {
    right: 18px;
  }

  .experience {
    min-height: auto;
  }

  .experience-media {
    height: 520px;
  }

  .experience-copy {
    padding: 70px 28px;
  }

  .visit-map,
  .visit-map iframe {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .hero {
    height: calc(100svh - 68px);
    min-height: 540px;
    padding: 68px 18px 64px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 9.8vw, 3.2rem);
  }

  .hero-copy {
    font-size: 0.98rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    align-self: center;
  }

  .hero-note {
    display: none;
  }

  .section {
    width: min(100% - 32px, var(--container));
    padding-block: 86px;
  }

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

  .section-heading h2,
  .story h2,
  .experience h2,
  .visit h2 {
    font-size: clamp(2.2rem, 12vw, 3.7rem);
  }

  .gallery-image {
    height: 300px;
  }

  .gallery-caption {
    min-height: 82px;
  }

  .order-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .story-photo img {
    height: 360px;
    min-height: 0;
  }

  .story.section,
  .reviews.section,
  .visit.section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .reviews .section-heading {
    gap: 14px;
    margin-bottom: 30px;
  }

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

  .review-card:last-child {
    grid-column: auto;
  }

  .review-card {
    min-height: 300px;
  }

  .visit-details > div {
    grid-template-columns: 1fr;
  }

  .detail-label {
    grid-row: auto;
    margin-bottom: 9px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-order {
    right: 18px;
    bottom: 18px;
    min-width: 172px;
    padding: 16px 22px;
    font-size: 1rem;
  }
}

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

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

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

  .hero-orbit-left {
    opacity: 1;
    transform: rotate(-12deg);
  }

  .hero-orbit-right {
    opacity: 1;
    transform: rotate(9deg);
  }
}

/* Requested type scale and clean directions link. */
.hero h1 { font-size: clamp(2.35rem, 4.7vw, 4.85rem); }
.visit [data-map-link] {
  padding-bottom: 0;
  border-bottom: 0;
  text-decoration: none;
}
@media (max-width: 720px) {
  .hero h1 { font-size: clamp(2.2rem, 11vw, 3.7rem); }
}
