:root {
  --accent: #f04452;
  --accent-soft: color-mix(in srgb, var(--accent) 16%, transparent);
  --bg: #090a0c;
  --bg-deep: #050607;
  --panel: #111318;
  --panel-2: #171a20;
  --line: #252932;
  --text: #f7f8fa;
  --muted: #9aa0aa;
  --muted-2: #9298a3;
  --shell: 1240px;
  --radius: 22px;
  --header: 76px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

section[id] {
  scroll-margin-top: calc(var(--header) + 34px);
}

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

.adult-bar {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--bg-deep);
  color: var(--muted);
  font-size: 11px;
}

.adult-bar strong {
  color: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(9, 10, 12, .9);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--accent);
  color: #090a0c;
  font-size: 20px;
  font-weight: 900;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy b {
  font-size: 17px;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted-2);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.main-nav > a {
  text-decoration: none;
}

.main-nav > a:hover {
  color: var(--text);
}

.nav-regions {
  position: relative;
}

.nav-regions > button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: var(--accent);
  font: inherit;
  cursor: pointer;
}

.nav-regions > button span {
  transition: transform .2s ease;
}

.nav-regions.is-open > button span {
  transform: rotate(180deg);
}

.region-mega {
  position: fixed;
  top: calc(30px + var(--header) - 1px);
  right: 20px;
  left: 20px;
  max-width: var(--shell);
  max-height: calc(100dvh - var(--header) - 50px);
  margin: 0 auto;
  overflow-y: auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 0 0 var(--radius) var(--radius);
  background: rgba(13, 15, 18, .99);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .55);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-regions:hover .region-mega,
.nav-regions:focus-within .region-mega,
.nav-regions.is-open .region-mega {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.region-mega-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.region-mega-head div {
  display: flex;
  flex-direction: column;
}

.region-mega-head b {
  color: var(--text);
  font-size: 19px;
}

.region-mega-head span {
  color: var(--muted-2);
  font-size: 11px;
}

.region-mega-head > a {
  color: var(--accent);
  text-decoration: none;
}

.region-groups,
.home-region-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.region-group h3 {
  margin-bottom: 9px;
  color: var(--muted-2);
  font-size: 11px;
}

.region-group > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.region-group a {
  padding: 7px 9px;
  border-radius: 8px;
  background: var(--panel);
  color: var(--muted);
  font-size: 11px;
  text-decoration: none;
}

.region-group a:hover,
.region-group a[aria-current="page"] {
  background: var(--accent-soft);
  color: var(--accent);
}

.header-call {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 9px 14px;
  border-radius: 14px;
  background: var(--accent-soft);
  text-decoration: none;
  line-height: 1.15;
  white-space: nowrap;
}

.header-call span {
  color: var(--muted);
  font-size: 9px;
}

.header-call b {
  color: var(--accent);
  font-size: 13px;
}

.menu-toggle {
  position: relative;
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
}

.menu-toggle span {
  position: absolute;
  left: 11px;
  width: 18px;
  height: 2px;
  display: block;
  margin: 0;
  border-radius: 10px;
  background: var(--text);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle span:nth-child(1) {
  top: 13px;
}

.menu-toggle span:nth-child(2) {
  top: 20px;
}

.menu-toggle span:nth-child(3) {
  top: 27px;
}

.menu-toggle.is-open span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

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

.menu-toggle.is-open span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100dvh - var(--header) - 30px);
  overflow: hidden;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(5, 6, 7, .98) 0%, rgba(5, 6, 7, .86) 38%, rgba(5, 6, 7, .18) 75%), linear-gradient(180deg, transparent 60%, var(--bg));
}

.hero-content {
  position: relative;
  min-height: calc(100dvh - var(--header) - 30px);
  display: flex;
  align-items: center;
  padding: 64px 0;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
}

.hero h1,
.region-hero h1,
.directory-hero h1 {
  margin-top: 14px;
  font-size: clamp(48px, 6.5vw, 88px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -.055em;
}

.hero h1 span,
.region-hero h1 span,
.directory-hero h1 span {
  color: var(--accent);
}

.hero-lead {
  max-width: 610px;
  margin-top: 24px;
  color: #c4c8cf;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

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

.btn.primary {
  background: var(--accent);
  color: #08090b;
}

.btn.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, .04);
  color: var(--text);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 44px;
}

.hero-facts div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  background: rgba(15, 17, 21, .72);
  backdrop-filter: blur(14px);
}

.hero-facts dt {
  color: var(--muted);
  font-size: 11px;
}

.hero-facts dd {
  margin-top: 6px;
  font-size: 19px;
  font-weight: 900;
}

.quick-strip {
  border-bottom: 1px solid var(--line);
  background: var(--bg-deep);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quick-grid a {
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  border-right: 1px solid var(--line);
  text-decoration: none;
}

.quick-grid a:last-child {
  border-right: 0;
}

.quick-grid span {
  color: var(--muted-2);
  font-size: 11px;
}

.quick-grid b {
  margin-top: 5px;
  font-size: 17px;
}

.section {
  padding: 112px 0;
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-head h2,
.section-copy h2,
.system-layout h2,
.staff-layout h2,
.pickup-layout h2,
.answer-layout h2 {
  margin-top: 9px;
  font-size: clamp(32px, 4.6vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.04em;
}

.section-head > p:not(.eyebrow),
.section-copy > p:not(.eyebrow),
.staff-layout > div > p:not(.eyebrow),
.pickup-layout > div > p:not(.eyebrow),
.answer-layout p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
}

.about {
  background: var(--bg);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 80px;
}

.principle-list {
  display: grid;
}

.principle-list article {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.principle-list article:first-child {
  border-top: 1px solid var(--line);
}

.principle-list b {
  color: var(--accent);
}

.principle-list p {
  color: var(--muted);
}

.price-section,
.rooms-section,
.region-price,
.faq-section,
.directory-list {
  background: var(--bg-deep);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.price-card {
  min-height: 300px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.price-card.featured {
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
  background: linear-gradient(145deg, var(--accent-soft), var(--panel));
}

.price-card > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.price-card strong {
  display: block;
  margin-top: 34px;
  font-size: clamp(43px, 6vw, 72px);
  font-weight: 900;
  line-height: 1;
}

.price-card small {
  margin-left: 7px;
  color: var(--muted);
  font-size: 14px;
}

.price-card p {
  margin-top: 26px;
  color: var(--muted);
}

.included {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.included div {
  padding: 22px;
  border-radius: 16px;
  background: var(--panel);
}

.included dt {
  color: var(--muted-2);
  font-size: 11px;
}

.included dd {
  margin-top: 7px;
  font-weight: 800;
}

.system-layout,
.staff-layout,
.pickup-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 70px;
}

.system-layout figure,
.staff-layout figure,
.pickup-layout figure {
  overflow: hidden;
  border-radius: var(--radius);
}

.system-layout img,
.staff-layout img,
.pickup-layout img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.step-list,
.simple-steps {
  display: grid;
  gap: 12px;
  margin-top: 32px;
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  background: var(--panel);
}

.step-list li > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 900;
}

.step-list p,
.simple-steps span {
  color: var(--muted);
  font-size: 13px;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.room-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.room-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.room-grid article > div {
  padding: 26px;
}

.room-grid span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
}

.room-grid h3 {
  margin-top: 4px;
  font-size: 24px;
}

.room-grid p {
  margin-top: 7px;
  color: var(--muted);
}

.staff-section {
  background: var(--panel);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: var(--accent);
  font-weight: 900;
  text-decoration: none;
}

.pickup-section,
.region-pickup {
  background: var(--bg);
}

.pickup-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}

.pickup-steps span {
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--panel);
  font-size: 12px;
  font-weight: 800;
}

.pickup-steps i {
  color: var(--accent);
  font-style: normal;
}

.region-section {
  background: var(--panel);
}

.home-region-groups .region-group {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg);
}

.regions-all {
  margin-top: 30px;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 880px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
}

.faq-list summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  font-size: 16px;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::after {
  color: var(--accent);
  content: "+";
  font-size: 23px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  padding: 0 22px 22px;
  color: var(--muted);
}

.final-cta {
  padding: 110px 0;
  background: var(--accent);
  color: #08090b;
  text-align: center;
}

.final-cta p {
  font-weight: 800;
}

.final-cta h2 {
  margin-top: 8px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.12;
}

.final-cta a {
  display: inline-block;
  margin-top: 24px;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  text-decoration: none;
}

.site-footer {
  padding: 62px 0 110px;
  background: var(--bg-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px 50px;
  align-items: start;
}

.footer-brand {
  font-size: 20px;
  font-weight: 900;
  text-decoration: none;
}

.footer-brand span {
  color: var(--accent);
}

.footer-grid > div > p {
  color: var(--muted-2);
  font-size: 12px;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-grid nav a {
  color: var(--muted);
  font-size: 12px;
  text-decoration: none;
}

.footer-phone {
  color: var(--accent);
  font-weight: 900;
  text-decoration: none;
}

.disclaimer,
.copyright {
  grid-column: 1 / -1;
  max-width: 880px;
  color: var(--muted-2);
  font-size: 11px;
}

.floating-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 10px 15px;
  border-radius: 16px;
  background: var(--accent);
  color: #08090b;
  text-decoration: none;
  line-height: 1.15;
  box-shadow: 0 16px 45px color-mix(in srgb, var(--accent) 35%, transparent);
}

.floating-call span {
  font-size: 9px;
}

.floating-call b {
  font-size: 13px;
}

/* Regional pages */
.region-hero {
  padding: 76px 0;
  background: radial-gradient(circle at 80% 10%, var(--accent-soft), transparent 40%), var(--bg);
}

.region-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(440px, 1.12fr);
  align-items: center;
  gap: 70px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  color: var(--muted-2);
  font-size: 12px;
}

.breadcrumb a {
  text-decoration: none;
}

.region-copy > p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
}

.region-hero figure {
  height: 570px;
  overflow: hidden;
  border-radius: var(--radius);
}

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

.region-metrics {
  background: var(--panel);
}

.region-metrics .shell {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.region-metrics .shell > div {
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.region-metrics .shell > div:last-child {
  border-right: 0;
}

.region-metrics span {
  color: var(--muted-2);
  font-size: 11px;
}

.region-metrics b {
  margin-top: 6px;
  font-size: 20px;
}

.simple-steps li {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.simple-steps b {
  color: var(--accent);
}

.local-answer {
  background: var(--panel);
}

.answer-layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 80px;
}

.answer-layout p + p {
  margin-top: 16px;
}

.other-regions {
  background: var(--bg);
}

.region-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.region-card-grid a,
.directory-main-card {
  min-width: 0;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.region-card-grid a:hover,
.directory-main-card:hover {
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
  background: var(--accent-soft);
  transform: translateY(-2px);
}

.region-card-grid span,
.region-card-grid small,
.directory-main-card span,
.directory-main-card small {
  overflow: hidden;
  color: var(--muted-2);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.region-card-grid b,
.directory-main-card b {
  margin: 5px 0;
  overflow: hidden;
  color: var(--text);
  font-size: 17px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.directory-hero {
  padding: 110px 0 90px;
  background: linear-gradient(135deg, var(--accent-soft), transparent 55%), var(--bg);
}

.directory-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: 18px;
}

.directory-main-card {
  min-height: 170px;
  margin-bottom: 54px;
  border-color: color-mix(in srgb, var(--accent) 58%, var(--line));
  background: linear-gradient(135deg, var(--accent-soft), var(--panel));
}

.directory-main-card b {
  font-size: 28px;
}

.directory-group + .directory-group {
  margin-top: 58px;
}

.directory-group h2 {
  margin-bottom: 18px;
  font-size: 28px;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 12px;
  }

  .header-call {
    display: none;
  }

  .region-groups,
  .home-region-groups,
  .region-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  :root {
    --header: 68px;
  }

  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .menu-toggle {
    display: grid;
  }

  .main-nav {
    position: fixed;
    top: calc(30px + var(--header));
    right: 14px;
    left: 14px;
    display: none;
    max-height: calc(100dvh - var(--header) - 44px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 0 0 20px 20px;
    background: rgba(12, 14, 17, .99);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .58);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav > a,
  .nav-regions > button {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
  }

  .region-mega {
    position: static;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0 8px;
    border: 0;
    background: transparent;
    box-shadow: none;
    visibility: visible;
    opacity: 1;
    transform: none;
    transition: max-height .25s ease, padding .25s ease;
  }

  .nav-regions:hover .region-mega,
  .nav-regions:focus-within .region-mega {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-regions.is-open .region-mega {
    max-height: 2400px;
    padding-top: 10px;
    padding-bottom: 12px;
  }

  .region-mega-head {
    position: sticky;
    top: 0;
    z-index: 1;
    padding: 10px;
    background: #0d0f12;
  }

  .region-groups,
  .home-region-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-layout,
  .system-layout,
  .staff-layout,
  .pickup-layout,
  .region-hero-layout,
  .answer-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .region-hero figure {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .region-metrics .shell,
  .included {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .region-metrics .shell > div:nth-child(2) {
    border-right: 0;
  }

  .region-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .brand-copy b {
    font-size: 15px;
  }

  .hero-content {
    align-items: flex-end;
    padding: 70px 0 44px;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(5, 6, 7, .18), rgba(5, 6, 7, .96) 55%, var(--bg));
  }

  .hero h1,
  .region-hero h1,
  .directory-hero h1 {
    font-size: 39px;
  }

  .hero-lead,
  .region-copy > p:not(.eyebrow),
  .directory-hero p:not(.eyebrow) {
    font-size: 15px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-facts,
  .quick-grid,
  .price-grid,
  .room-grid,
  .region-groups,
  .home-region-groups,
  .region-metrics .shell,
  .included,
  .region-card-grid {
    grid-template-columns: 1fr;
  }

  .quick-grid a,
  .region-metrics .shell > div {
    min-height: 88px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 74px 0;
  }

  .section-head h2,
  .section-copy h2,
  .system-layout h2,
  .staff-layout h2,
  .pickup-layout h2,
  .answer-layout h2 {
    font-size: 32px;
  }

  .principle-list article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .price-card {
    min-height: 250px;
    padding: 25px;
  }

  .price-card strong {
    font-size: 45px;
  }

  .region-group {
    padding: 15px;
  }

  .region-mega-head b {
    font-size: 15px;
  }

  .region-hero,
  .directory-hero {
    padding: 58px 0;
  }

  .region-copy h1 {
    margin-top: 10px;
  }

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

  .disclaimer,
  .copyright {
    grid-column: auto;
  }

  .floating-call {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
