:root {
  --linen: #ebe3d6;
  --linen-soft: #f7f1e8;
  --paper: #fffaf0;
  --paper-deep: #f2e8da;
  --ink: #2b332f;
  --text: #3f4741;
  --muted: #6d766f;
  --berry: #2f4858;
  --berry-2: #3f6674;
  --clay: #b47b5d;
  --moss: #697a60;
  --line: rgba(47, 72, 88, 0.16);
  --shadow: 0 24px 70px rgba(47, 39, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(63, 102, 116, 0.13), transparent 26rem),
    radial-gradient(circle at 92% 20%, rgba(180, 123, 93, 0.16), transparent 26rem),
    linear-gradient(180deg, var(--linen-soft), var(--linen) 48%, #f3eadc);
  font-family: "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(90deg, rgba(47, 39, 31, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(47, 39, 31, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
}

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

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

#playfield {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 16px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 250, 240, 0.82);
  border-radius: 999px;
  background: rgba(247, 241, 232, 0.88);
  box-shadow: 0 14px 40px rgba(47, 39, 31, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 16px 20px 15px 18px;
  color: #fff;
  background: var(--berry);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 15px;
  font-weight: 800;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #4c574f;
  font-size: 14px;
  font-weight: 750;
}

.nav a:hover {
  color: var(--berry);
}

.header-action {
  justify-self: end;
  font-size: 14px;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.82fr);
  gap: 44px;
  align-items: center;
  width: min(1280px, calc(100% - 40px));
  min-height: calc(100vh - 82px);
  padding: 74px 0 70px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--berry);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.04;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(42px, 5.4vw, 72px);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4.2vw, 58px);
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.18;
}

p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.62;
}

.hero-copy {
  min-width: 0;
}

.hero-subtitle {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--berry);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.25;
}

.lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: #566158;
  font-size: clamp(18px, 1.7vw, 21px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid rgba(47, 72, 88, 0.13);
  border-radius: 20px 24px 19px 22px;
  font: inherit;
  font-size: 15px;
  font-weight: 850;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  color: #fff;
  background: var(--berry);
  box-shadow: 0 16px 30px rgba(47, 72, 88, 0.22);
}

.secondary {
  background: rgba(255, 250, 240, 0.72);
}

.compact {
  min-height: 44px;
  padding: 11px 16px;
  font-size: 14px;
}

.small {
  min-height: 38px;
  padding: 9px 12px;
  border-radius: 16px 20px 15px 18px;
  font-size: 13px;
}

.light {
  color: var(--berry);
  background: #fffaf0;
}

.light-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.mini-proof,
.materials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.mini-proof span,
.materials-list span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #4d5a52;
  background: rgba(255, 250, 240, 0.68);
  font-size: 14px;
  font-weight: 800;
}

.hero-media,
.safety-media {
  margin: 0;
}

.hero-media {
  padding: 14px 18px 18px;
  border: 1px solid rgba(255, 250, 240, 0.86);
  border-radius: 40px 78px 34px 118px;
  background: rgba(255, 250, 240, 0.64);
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: hero-media-bottom-reveal 0.74s cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  max-height: 560px;
  border-radius: 30px 66px 26px 104px;
  object-fit: cover;
}

.hero-media figcaption,
.safety-media figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.hero-media figcaption {
  width: calc(100% - 30px);
  max-width: none;
  margin: 4px 4px 0 26px;
  padding: 0;
  color: #3d4842;
  background: transparent;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.34;
  text-align: center;
  text-wrap: normal;
  animation: caption-slide-up 0.74s cubic-bezier(0.2, 0.72, 0.2, 1) 0.2s both;
}

@keyframes hero-media-bottom-reveal {
  from {
    padding-bottom: 2px;
  }

  to {
    padding-bottom: 18px;
  }
}

@keyframes caption-slide-up {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head.compact {
  max-width: 880px;
}

.concern-strip,
.approach,
.safety,
.route,
.contact {
  border: 1px solid rgba(255, 250, 240, 0.82);
  border-radius: 12px;
  background: rgba(255, 250, 240, 0.68);
  box-shadow: 0 20px 55px rgba(47, 39, 31, 0.08);
}

.concern-strip {
  padding: 56px;
}

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

.slot-card,
.route-steps article {
  border: 1px solid rgba(47, 72, 88, 0.14);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 0 16px 40px rgba(47, 39, 31, 0.08);
}

.approach {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(340px, 1.07fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 110px;
  padding: 18px;
}

.approach-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 470px;
  padding: 42px;
  border-radius: 10px;
}

.approach-card.dark {
  color: #fff;
  background: linear-gradient(135deg, var(--berry), var(--berry-2));
}

.approach-card.dark .eyebrow,
.approach-card.dark p {
  color: rgba(255, 255, 255, 0.82);
}

.materials-card {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 16px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(255, 250, 240, 0.64);
}

.materials-card img {
  width: 100%;
  height: 420px;
  border-radius: 8px;
  object-fit: cover;
}

.formats,
.schedule,
.reviews {
  padding: 104px 0;
}

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

.safety {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: 24px;
  align-items: center;
  padding: 18px;
}

.safety-copy {
  padding: 38px;
}

.safety-points {
  display: grid;
  gap: 12px;
}

.safety-points p {
  margin: 0;
  padding: 16px 18px;
  border-left: 4px solid var(--clay);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.72);
}

.safety-media {
  padding: 12px;
  border-radius: 10px;
  background: var(--paper);
}

.safety-media img {
  width: 100%;
  height: 430px;
  border-radius: 8px;
  object-fit: cover;
}

.schedule-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
}

.filter {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #4d5a52;
  background: rgba(255, 250, 240, 0.72);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.filter.active {
  color: #fff;
  border-color: var(--berry);
  background: var(--berry);
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.slot-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 22px;
}

.slot-card time {
  margin-bottom: 16px;
  color: var(--clay);
  font-size: 14px;
  font-weight: 900;
}

.slot-card p {
  margin-bottom: 20px;
}

.slot-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}

.slot-card button:disabled {
  color: #7a837d;
  background: #d8cebf;
  box-shadow: none;
}

.status {
  color: #4d5a52;
  font-size: 13px;
  font-weight: 900;
}

.status::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--moss);
}

.status.wait::before {
  background: var(--berry-2);
}

.status.busy::before {
  background: var(--clay);
}

.slot-card.muted {
  opacity: 0.72;
}

.slot-card.is-hidden {
  display: none;
}

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

.route {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 34px;
  align-items: center;
  padding: 48px;
}

.route-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.route-steps article {
  padding: 20px;
}

.route-steps p {
  margin-bottom: 0;
  font-weight: 750;
}

.contact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  margin-top: 70px;
  margin-bottom: 44px;
  padding: 50px;
  color: #fff;
  background: linear-gradient(135deg, var(--berry), var(--berry-2));
}

.contact .eyebrow,
.contact p {
  color: rgba(255, 255, 255, 0.82);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0 42px;
  color: var(--muted);
  font-size: 14px;
}

/* Scroll reveal system */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.95s cubic-bezier(0.2, 0.72, 0.2, 1),
    transform 0.95s cubic-bezier(0.2, 0.72, 0.2, 1),
    filter 0.95s cubic-bezier(0.2, 0.72, 0.2, 1);
  will-change: opacity, transform, filter;
}

[data-animate="section"] {
  transform: translateY(34px);
}

[data-animate="tile"] {
  transform: translateY(26px) scale(0.985);
  filter: blur(5px);
}

[data-animate="media"] {
  transform: translateY(32px) scale(0.975);
  filter: saturate(0.88) blur(6px);
}

[data-animate="fade-right"] {
  transform: translateX(-30px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  filter: none;
}

.reveal-grid > [data-animate]:nth-child(2),
.slot-grid > [data-animate]:nth-child(2),
.route-steps > [data-animate]:nth-child(2),
.safety-points > [data-animate]:nth-child(2) {
  transition-delay: 0.08s;
}

.reveal-grid > [data-animate]:nth-child(3),
.slot-grid > [data-animate]:nth-child(3),
.route-steps > [data-animate]:nth-child(3),
.safety-points > [data-animate]:nth-child(3) {
  transition-delay: 0.16s;
}

.slot-grid > [data-animate]:nth-child(4) {
  transition-delay: 0.24s;
}

/* Interactive tile layout */
.reveal-grid {
  align-items: start;
  gap: 22px;
}

.number-badge {
  display: grid;
  place-items: center;
  width: var(--number-size, 64px);
  height: var(--number-size, 64px);
  margin: 0;
  padding: 0 0 4px;
  border-radius: 42% 58% 48% 52%;
  color: rgba(255, 250, 240, 0.96);
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.24), transparent 28px),
    var(--number-color, var(--berry));
  font-family: Georgia, "Times New Roman", serif;
  font-size: calc(var(--number-size, 64px) * 0.53);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transform: rotate(var(--number-rotate, -7deg));
  box-shadow: 0 14px 24px rgba(47, 72, 88, 0.2);
  user-select: none;
}

.tile-card:nth-child(2),
.route-steps article:nth-child(2) {
  --number-color: var(--clay);
  --number-rotate: 5deg;
}

.tile-card:nth-child(3),
.route-steps article:nth-child(3) {
  --number-color: var(--moss);
  --number-rotate: -3deg;
}

.format-card,
.review-card,
.concern-card {
  min-height: unset;
  padding: 0;
}

.route-steps article {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  border-radius: 24px 30px 22px 28px;
  background:
    linear-gradient(145deg, rgba(255, 250, 240, 0.82), rgba(255, 250, 240, 0.54)),
    var(--paper);
}

.route-steps .bubble-number {
  --number-size: 56px;
  margin-bottom: 18px;
}

/* Main matte accordion tiles */
.tile-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 178px;
  overflow: hidden;
  isolation: isolate;
  padding: 0;
  border: 1px solid rgba(255, 250, 240, 0.82);
  border-radius: 30px 40px 28px 36px;
  background:
    linear-gradient(145deg, rgba(255, 250, 240, 0.78), rgba(255, 250, 240, 0.44)),
    rgba(255, 250, 240, 0.48);
  box-shadow:
    0 18px 52px rgba(47, 39, 31, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
}

.tile-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: -1;
  border: 1px solid rgba(47, 72, 88, 0.08);
  border-radius: 22px 32px 20px 28px;
}

.tile-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  z-index: -1;
  width: 138px;
  height: 138px;
  border-radius: 45% 55% 52% 48%;
  background:
    radial-gradient(circle at 35% 35%, rgba(47, 72, 88, 0.08) 0 3px, transparent 4px),
    radial-gradient(circle at 70% 62%, rgba(180, 123, 93, 0.1) 0 4px, transparent 5px),
    rgba(180, 123, 93, 0.1);
  background-size: 34px 34px, 46px 46px, auto;
}

.tile-card.is-open {
  box-shadow:
    0 28px 78px rgba(47, 39, 31, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.tile-ghost {
  --number-size: 58px;
  position: absolute;
  right: 14px;
  top: 24px;
  bottom: auto;
  z-index: 2;
  pointer-events: none;
}

.tile-toggle {
  position: relative;
  display: block;
  width: 100%;
  min-height: 136px;
  padding: 30px 196px 30px 30px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
  min-width: 0;
}

.tile-toggle > * {
  min-width: 0;
}

.tile-toggle > span:first-child:not(.tile-kicker) {
  display: grid;
  gap: 7px;
}

.tile-kicker {
  display: block;
  margin-bottom: 7px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tile-title {
  display: inline-block;
  max-width: 100%;
  color: var(--ink);
  font-size: 23px;
  font-weight: 900;
  line-height: 1.12;
}

.format-card.featured .tile-title,
.format-card.featured .tile-kicker {
  color: #fff;
}

.tile-icon {
  position: absolute;
  top: 50%;
  right: 76px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(47, 72, 88, 0.11);
  transform: translateY(-50%);
}

.tile-icon::before,
.tile-icon::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 3px;
  border-radius: 999px;
  background: var(--berry);
  transition: transform 0.22s ease;
}

.tile-icon::after {
  transform: rotate(90deg);
}

.tile-card.is-open .tile-icon::after {
  transform: rotate(0deg);
}

.tile-panel {
  display: block;
  max-height: 0;
  overflow: hidden;
  padding: 0 96px 0 30px;
  opacity: 0;
  transition: max-height 0.28s ease, opacity 0.2s ease, padding 0.2s ease;
}

.tile-card.is-open .tile-panel {
  max-height: 460px;
  padding: 0 96px 30px 30px;
  opacity: 1;
}

.tile-panel p {
  margin-bottom: 18px;
  padding-left: 18px;
  border-left: 3px solid rgba(180, 123, 93, 0.64);
}

.tile-panel a {
  width: fit-content;
}

.format-card.featured.tile-card {
  background:
    linear-gradient(145deg, rgba(47, 72, 88, 0.95), rgba(63, 102, 116, 0.86)),
    var(--berry);
}

.format-card.featured .tile-title,
.format-card.featured .tile-kicker,
.format-card.featured .tile-panel p {
  color: #fff;
}

.format-card.featured .tile-icon {
  background: rgba(255, 255, 255, 0.16);
}

.format-card.featured .tile-icon::before,
.format-card.featured .tile-icon::after {
  background: #fff;
}

.format-card.featured .tile-panel a {
  color: var(--berry);
  background: #fffaf0;
}

.buy-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.buy-row strong {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(47, 72, 88, 0.14);
  border-radius: 999px;
  color: var(--berry);
  background: rgba(255, 250, 240, 0.78);
  font-weight: 950;
}

.review-card .tile-panel b {
  display: inline-block;
  width: fit-content;
  margin-bottom: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--berry);
  font-size: 12px;
  text-transform: uppercase;
}

.mini-tile {
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.72);
  border-radius: 20px 26px 19px 24px;
  background: rgba(255, 250, 240, 0.66);
  box-shadow: 0 12px 28px rgba(47, 39, 31, 0.08);
}

.mini-toggle {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 17px 18px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-align: left;
}

.mini-toggle span {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(47, 72, 88, 0.1);
}

.mini-toggle span::before,
.mini-toggle span::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 16px;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--berry);
}

.mini-toggle span::after {
  transform: rotate(90deg);
}

.mini-tile.is-open .mini-toggle span::after {
  transform: rotate(0deg);
}

.mini-panel {
  display: block;
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  opacity: 0;
  transition: max-height 0.24s ease, opacity 0.2s ease, padding 0.2s ease;
}

.mini-tile.is-open .mini-panel {
  max-height: 180px;
  padding: 0 18px 18px;
  opacity: 1;
}

.mini-panel p {
  margin: 0;
  padding: 0 0 0 16px;
  border-left: 3px solid rgba(180, 123, 93, 0.62);
  background: transparent;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .approach,
  .safety,
  .route,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .concern-grid,
  .format-grid,
  .review-row,
  .slot-grid,
  .route-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .site-header,
  .section,
  .footer {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    margin-top: 10px;
    border-radius: 24px;
  }

  .brand small,
  .header-action {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  p,
  .lead {
    font-size: 16px;
  }

  .hero {
    gap: 32px;
    padding: 44px 0 50px;
  }

  .hero-media img,
  .materials-card img,
  .safety-media img {
    height: auto;
    max-height: none;
  }

  .hero-media img {
    aspect-ratio: 1 / 1;
  }

  .materials-card img,
  .safety-media img {
    aspect-ratio: 1.1 / 1;
  }

  .concern-strip,
  .approach-card,
  .safety-copy,
  .route,
  .contact {
    padding: 28px;
  }

  .approach,
  .safety {
    padding: 10px;
  }

  .concern-grid,
  .format-grid,
  .review-row,
  .slot-grid,
  .route-steps {
    grid-template-columns: 1fr;
  }

  .concern-grid article,
  .format-card,
  .slot-card {
    min-height: auto;
  }

  .tile-ghost {
    --number-size: 48px;
    top: 18px;
    right: 18px;
  }

  .tile-toggle {
    min-height: 126px;
    padding: 26px 144px 26px 24px;
  }

  .tile-icon {
    right: 76px;
    width: 42px;
    height: 42px;
  }

  .tile-card.is-open .tile-panel,
  .tile-panel {
    padding-right: 24px;
    padding-left: 24px;
  }

  .formats,
  .schedule,
  .reviews {
    padding: 54px 0;
  }

  .contact-actions {
    width: 100%;
  }

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

  .footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
