:root {
  color-scheme: dark;
  --bg-deep: #08080a;
  --bg: #111111;
  --surface: #17171b;
  --surface-alt: #2e2d35;
  --border: #26262c;
  --accent: #4078f9;
  --accent-soft: #5597fc;
  --hot: #ff4d4f;
  --text-high: #ffffff;
  --text-80: rgba(255, 255, 255, 0.8);
  --text-65: rgba(255, 255, 255, 0.65);
  --text-55: rgba(255, 255, 255, 0.55);
  --text-40: rgba(255, 255, 255, 0.4);
  --gutter: 20px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --content-width: 468px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg-deep);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--bg-deep);
  color: var(--text-high);
  font-family: "Pretendard Variable", Pretendard, -apple-system,
    BlinkMacSystemFont, system-ui, "Apple SD Gothic Neo", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

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

.material-symbols-rounded {
  font-size: 20px;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 20;
}

.site-shell {
  position: relative;
  width: min(100%, var(--content-width));
  min-height: 100vh;
  margin: 0 auto;
  overflow: clip;
  background: var(--bg);
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
  height: 56px;
  padding-top: env(safe-area-inset-top);
  background: #000;
}

.top-bar--home {
  grid-template-columns: 56px 1fr 56px;
}

.top-bar__title {
  overflow: hidden;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.4px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top-bar__action {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--text-high);
  cursor: pointer;
}

.top-bar__action .material-symbols-rounded {
  font-size: 21px;
}

.hero {
  position: relative;
  height: 430px;
  overflow: hidden;
  background: #0a0c12;
}

.hero__image,
.photo-band {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.1) 24%,
    rgba(0, 0, 0, 0.7) 52%,
    rgba(16, 16, 16, 0.95) 82%,
    var(--bg) 100%
  );
}

.hero__content {
  position: absolute;
  z-index: 1;
  right: var(--gutter);
  bottom: 26px;
  left: var(--gutter);
}

.hero__eyebrow {
  margin: 0 0 12px;
  color: var(--text-80);
  font-size: 13px;
  line-height: 1.4;
}

.hero__eyebrow strong {
  color: var(--accent-soft);
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.32;
}

.hero__description {
  margin: 12px 0 22px;
  color: var(--text-65);
  font-size: 13.5px;
  line-height: 1.6;
}

.button-row {
  display: flex;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 700;
  transition: transform 120ms ease, background-color 120ms ease;
}

.button:active {
  transform: scale(0.985);
}

.button--grow {
  flex: 1;
}

.button--primary {
  background: var(--accent);
  color: #fff;
}

.button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-high);
  font-weight: 600;
}

.button--outline {
  border: 1px solid var(--surface-alt);
  background: transparent;
  color: var(--text-80);
  font-weight: 600;
}

.section-gap {
  height: 10px;
  background: var(--bg-deep);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px var(--gutter) 14px;
}

.section-header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.section-header__link {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  color: var(--text-65);
  font-size: 13px;
  font-weight: 500;
}

.event-banner {
  position: relative;
  display: block;
  height: 108px;
  margin: 0 var(--gutter);
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--surface);
}

.event-banner__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 50%);
  mask-image: linear-gradient(to right, transparent, #000 50%);
}

.event-banner__copy {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  align-items: center;
  padding: 0 18px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.35;
}

.event-banner__copy strong {
  color: var(--accent-soft);
}

.event-banner__copy small {
  color: var(--text-65);
  font-size: 13px;
  font-weight: 500;
}

.event-banner__count {
  position: absolute;
  right: 12px;
  bottom: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: var(--text-80);
  font-size: 11px;
}

.price-peek {
  padding: 16px 0 24px;
}

.chip-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 var(--gutter);
  scrollbar-width: none;
}

.chip-row::-webkit-scrollbar,
.review-strip::-webkit-scrollbar {
  display: none;
}

.chip {
  flex: none;
  min-height: 40px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--text-65);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.chip[aria-pressed="true"],
.chip.is-active {
  background: var(--accent);
  color: #fff;
}

.price-peek__card,
.card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.price-peek__card {
  display: block;
  margin: 12px var(--gutter) 0;
  padding: 18px;
}

.price-peek__title-row,
.price-peek__bottom {
  display: flex;
  align-items: center;
}

.price-peek__title-row h3 {
  flex: 1;
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.availability {
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(64, 120, 249, 0.16);
  color: var(--accent-soft);
  font-size: 10px;
  font-weight: 700;
}

.price-peek__sub {
  margin: 6px 0 22px;
  color: var(--text-55);
  font-size: 12px;
}

.price-peek__price {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.price-peek__from {
  margin-left: 8px;
  color: var(--text-40);
  font-size: 12px;
}

.price-peek__link {
  margin-left: auto;
  color: var(--accent-soft);
  font-size: 13px;
  font-weight: 600;
}

.quick-links {
  display: grid;
  gap: 12px;
  padding: 0 var(--gutter) 24px;
}

.quick-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.quick-card--pricing {
  min-height: 174px;
  padding: 22px 20px;
  border-color: rgba(85, 151, 252, 0.42);
  background:
    radial-gradient(circle at 92% 0%, rgba(64, 120, 249, 0.28), transparent 44%),
    var(--surface);
  box-shadow: inset 0 0 0 1px rgba(64, 120, 249, 0.05);
}

.quick-card--pricing::after {
  position: absolute;
  right: -30px;
  bottom: -78px;
  width: 160px;
  height: 160px;
  border: 24px solid rgba(85, 151, 252, 0.08);
  border-radius: 50%;
  content: "";
}

.quick-card__eyebrow {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--accent-soft);
  font-size: 12px;
  font-weight: 700;
}

.quick-card__headline {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 8px;
  font-size: 27px;
  font-weight: 850;
  letter-spacing: -1px;
  line-height: 1.2;
}

.quick-card__description {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 8px;
  color: var(--text-55);
  font-size: 12.5px;
}

.quick-card__cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--text-80);
  font-size: 13px;
  font-weight: 700;
}

.quick-card__cta .material-symbols-rounded {
  font-size: 17px;
}

.quick-card__photos {
  display: grid;
  height: 146px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quick-card__photo {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #09090b;
}

.quick-card__photo + .quick-card__photo {
  border-left: 1px solid rgba(255, 255, 255, 0.48);
}

.quick-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-card__photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.68), transparent 45%);
  content: "";
}

.quick-card__photo small {
  position: absolute;
  z-index: 1;
  bottom: 10px;
  left: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.quick-card__photo--after small {
  color: #fff;
}

.quick-card__body {
  display: block;
  padding: 17px 18px 18px;
}

.quick-card__title {
  display: block;
  margin-top: 6px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.quick-card--gallery .quick-card__cta {
  margin-top: 12px;
  color: var(--accent-soft);
}

.consult-card {
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 14px;
  padding: 17px 16px;
  border-radius: var(--radius-md);
  background: var(--surface);
}

.consult-card__copy {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  gap: 8px;
}

.consult-card__copy strong {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.consult-card__copy small {
  color: var(--text-55);
  font-size: 12px;
  line-height: 1.45;
}

.icon-tile {
  display: grid;
  width: 34px;
  height: 34px;
  flex: none;
  place-items: center;
  border-radius: 10px;
  background: rgba(64, 120, 249, 0.14);
  color: var(--accent-soft);
}

.icon-tile .material-symbols-rounded {
  font-size: 18px;
}

.review-strip {
  display: flex;
  gap: 10px;
  height: 250px;
  overflow-x: auto;
  padding: 0 var(--gutter);
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.review-card {
  display: flex;
  width: 200px;
  flex: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  scroll-snap-align: start;
}

.review-card img {
  width: 100%;
  min-height: 0;
  flex: 1;
  object-fit: cover;
  object-position: top;
  background: #050609;
}

.review-card__caption {
  padding: 10px 12px 12px;
}

.review-card__caption strong {
  display: block;
  color: var(--text-80);
  font-size: 12px;
  font-weight: 600;
}

.review-card__caption small {
  display: block;
  margin-top: 4px;
  color: var(--text-40);
  font-size: 11px;
}

.spacer-26 {
  height: 26px;
}

.brand-copy,
.capacity,
.steps,
.bottom-cta {
  padding-right: var(--gutter);
  padding-left: var(--gutter);
  background: var(--bg);
}

.brand-copy {
  padding-top: 34px;
  padding-bottom: 26px;
  text-align: center;
}

.eyebrow {
  margin: 0;
  color: var(--text-40);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
}

.brand-copy h2,
.capacity h2 {
  margin: 14px 0 12px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.4;
}

.brand-copy p,
.capacity__intro {
  margin: 0;
  color: var(--text-55);
  font-size: 13px;
  line-height: 1.6;
}

.brand-photo {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.capacity {
  padding-top: 34px;
  padding-bottom: 30px;
  text-align: center;
}

.capacity h2 {
  margin-top: 0;
  font-size: 23px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
  text-align: left;
}

.stat-card {
  min-width: 0;
  padding: 16px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.stat-card__eyebrow {
  color: var(--accent-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.1px;
}

.stat-card strong {
  display: block;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.stat-card strong.is-small {
  font-size: 15px;
}

.stat-card small {
  display: block;
  margin-top: 4px;
  color: var(--text-40);
  font-size: 12px;
}

.finish-note {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  text-align: left;
}

.finish-note strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.finish-note p {
  margin: 6px 0 0;
  color: var(--text-55);
  font-size: 12.5px;
  line-height: 1.6;
}

.steps {
  padding-top: 32px;
  padding-bottom: 30px;
  text-align: center;
}

.steps h2,
.bottom-cta h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.7px;
}

.steps__sub {
  margin: 8px 0 20px;
  color: var(--text-55);
  font-size: 13px;
}

.step-card {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  text-align: left;
}

.step-card + .step-card {
  margin-top: 10px;
}

.step-card--primary {
  border-color: var(--accent);
  background: var(--accent);
}

.step-card__index,
.step-card__title {
  font-size: 15px;
  font-weight: 800;
}

.step-card__detail {
  text-align: right;
}

.step-card__detail strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.step-card__detail small {
  display: block;
  margin-top: 4px;
  color: var(--text-40);
  font-size: 11px;
  line-height: 1.4;
}

.step-card--primary .step-card__detail small {
  color: rgba(255, 255, 255, 0.75);
}

.owner-reviews {
  padding: 0 var(--gutter) 26px;
}

.owner-review {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.owner-review + .owner-review {
  margin-top: 10px;
}

.owner-review p {
  margin: 0;
  color: var(--text-80);
  font-size: 13px;
  line-height: 1.6;
}

.owner-review__meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 14px;
  color: var(--text-40);
  font-size: 12px;
}

.owner-review__tag {
  color: var(--hot);
  font-weight: 700;
  text-align: right;
}

.bottom-cta {
  padding-top: 36px;
  padding-bottom: 34px;
  text-align: center;
}

.bottom-cta h2 {
  line-height: 1.4;
}

.bottom-cta address {
  margin-top: 12px;
  color: var(--text-55);
  font-size: 13px;
  font-style: normal;
  line-height: 1.6;
}

.bottom-cta__buttons {
  display: grid;
  width: 200px;
  gap: 10px;
  margin: 22px auto 0;
}

.closing-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.footer {
  padding: 30px var(--gutter) 40px;
  background: var(--bg);
  color: var(--text-55);
  font-size: 12px;
  line-height: 1.9;
}

.footer__logo {
  width: auto;
  height: 34px;
  object-fit: contain;
  object-position: left center;
}

.footer h2 {
  margin: 20px 0 14px;
  color: var(--text-80);
  font-size: 13px;
  font-weight: 700;
}

.footer p {
  margin: 0;
}

.footer__copyright {
  margin-top: 18px !important;
  color: var(--text-40);
  font-size: 11px;
}

.floating-inquiry {
  position: fixed;
  z-index: 40;
  right: max(16px, calc((100vw - var(--content-width)) / 2 + 16px));
  bottom: max(20px, env(safe-area-inset-bottom));
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--surface-alt);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  color: var(--text-high);
  font-size: 13px;
  font-weight: 700;
}

.subpage-main {
  min-height: calc(100vh - 56px);
  padding: 20px var(--gutter) 40px;
}

.reviews-page {
  display: grid;
  gap: 14px;
}

.reviews-page img {
  width: 100%;
  border-radius: var(--radius-md);
  background: #050609;
}

.gallery-list {
  display: grid;
  gap: 16px;
}

.gallery-card {
  padding: 18px;
}

.gallery-card h2 {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.gallery-card > p {
  margin: 8px 0 16px;
  color: var(--text-55);
  font-size: 13px;
  line-height: 1.55;
}

.gallery-shot + .gallery-shot {
  margin-top: 12px;
}

.gallery-shot {
  margin: 0;
}

.gallery-shot img {
  width: 100%;
  height: 220px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.gallery-shot figcaption {
  margin-top: 8px;
  color: var(--text-55);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.gallery-shot--after figcaption {
  color: var(--accent-soft);
}

.pricing-main {
  padding-right: 0;
  padding-left: 0;
}

.pricing-main .chip-row {
  margin-bottom: 16px;
}

.classification {
  margin: 0 var(--gutter) 8px;
  overflow: hidden;
}

.classification__toggle {
  display: flex;
  width: 100%;
  min-height: 49px;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border: 0;
  background: transparent;
  color: var(--text-80);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}

.classification__toggle .material-symbols-rounded:first-child {
  color: var(--accent-soft);
  font-size: 18px;
}

.classification__toggle .classification__chevron {
  margin-left: auto;
  color: var(--text-55);
}

.classification__body {
  display: grid;
  gap: 12px;
  padding: 0 16px 16px;
}

.classification__row {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 0;
}

.classification__row strong {
  color: var(--accent-soft);
  font-size: 13px;
}

.classification__row span {
  color: var(--text-65);
  font-size: 13px;
  line-height: 1.5;
}

.price-list {
  display: grid;
  gap: 10px;
  padding: 0 var(--gutter) 40px;
}

.price-card {
  padding: 20px;
}

.price-card h2 {
  margin: 0 0 14px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.price-card hr {
  height: 1px;
  margin: 0 0 14px;
  border: 0;
  background: var(--border);
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
}

.price-row__label {
  overflow: hidden;
  color: var(--text-65);
  font-size: 13px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.price-row__label.is-highlight {
  color: var(--accent-soft);
  font-weight: 700;
}

.recommend {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  vertical-align: 1px;
}

.price-row__value {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.price-row__value.is-highlight {
  color: var(--accent-soft);
}

.caution {
  margin-top: 8px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text-40);
  font-size: 11px;
  line-height: 1.5;
}

.inquiry-main {
  padding-top: 24px;
  padding-bottom: 48px;
}

.inquiry-intro h1 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.45;
}

.inquiry-intro p {
  margin: 8px 0 26px;
  color: var(--text-55);
  font-size: 13px;
}

.inquiry-form {
  display: grid;
  gap: 16px;
}

.form-field {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  min-height: 58px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: border-color 120ms ease;
}

.form-field:focus-within {
  border-color: var(--accent);
}

.form-field__icon {
  display: grid;
  place-items: center;
  color: var(--text-55);
}

.form-field__icon .material-symbols-rounded {
  font-size: 19px;
}

.form-field__body {
  display: grid;
  gap: 3px;
  padding: 8px 12px 8px 0;
}

.form-field__body > span {
  color: var(--text-55);
  font-size: 12px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text-high);
  font-size: 14px;
}

.form-field select {
  min-height: 25px;
  color-scheme: dark;
}

.form-field textarea {
  min-height: 70px;
  resize: vertical;
  line-height: 1.5;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-40);
}

.privacy-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  color: var(--text-80);
  cursor: pointer;
  font-size: 13px;
}

.privacy-row input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--accent);
}

.submit-button {
  min-height: 52px;
  margin-top: 4px;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
}

.submit-button:disabled {
  background: var(--surface-alt);
  color: var(--text-40);
  cursor: wait;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: max(20px, env(safe-area-inset-bottom));
  left: 20px;
  max-width: 428px;
  margin: auto;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  background: var(--surface-alt);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.48);
  color: var(--text-high);
  font-size: 13px;
  line-height: 1.45;
}

.toast[hidden] {
  display: none;
}

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

@media (hover: hover) {
  .button:hover,
  .chip:hover,
  .quick-card:hover,
  .consult-card:hover,
  .price-peek__card:hover,
  .section-header__link:hover,
  .floating-inquiry:hover {
    filter: brightness(1.08);
  }
}

@media (max-width: 370px) {
  :root {
    --gutter: 16px;
  }

  .hero h1 {
    font-size: 27px;
  }

  .quick-card--pricing {
    padding-right: 18px;
    padding-left: 18px;
  }

  .stat-card strong {
    font-size: 16px;
  }

  .step-card {
    grid-template-columns: auto 1fr;
  }

  .step-card__detail {
    grid-column: 1 / -1;
    text-align: left;
  }
}

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

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