:root {
  --bg: #030303;
  --surface: #0e0e0e;
  --surface-strong: #171717;
  --surface-soft: #1f1f1f;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f7f3ef;
  --muted: #b6b0aa;
  --muted-strong: #8f8a84;
  --accent: #de1111;
  --accent-strong: #ff3b30;
  --danger: #de1111;
  --white-card: #f8f5f1;
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(100% - 32px, 460px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(222, 17, 17, 0.13), transparent 28%),
    linear-gradient(180deg, #000 0%, #050505 22%, #040404 100%);
  font-family: "Pretendard", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  word-break: keep-all;
}

body.is-lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button {
  font: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 95%);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 3px;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  margin: 0 auto;
  padding: 16px 0 0;
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 8px -12px auto;
  height: calc(100% + 12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
  z-index: -1;
}

.brand {
  display: grid;
  gap: 4px;
}

.brand__en {
  font-family: "Anton", sans-serif;
  letter-spacing: 0.06em;
  font-size: 1.2rem;
}

.brand__kr,
.eyebrow,
.section-head__eyebrow,
.difference-card__eyebrow,
.location__tag {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-strong);
}

.topbar__cta {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
}

main {
  overflow: clip;
}

.section {
  width: var(--container);
  margin: 0 auto;
}

.hero {
  padding: 72px 0 52px;
}

.hero__copy {
  display: grid;
  justify-items: center;
  padding: 10px 0 2px;
  text-align: center;
}

.hero__title {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-size: clamp(3.4rem, 15vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: 0.04em;
}

.hero__title span {
  display: inline-block;
  text-shadow:
    0 0 30px rgba(222, 17, 17, 0.12),
    0 20px 40px rgba(0, 0, 0, 0.5);
}

.hero__reveal {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.hero__eyebrow {
  color: rgba(255, 255, 255, 0.46);
}

.hero__lead {
  margin: 0;
  font-size: clamp(1.28rem, 5.2vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  font-weight: 900;
  white-space: nowrap;
}

.hero__sublead {
  max-width: none;
  margin: 0;
  color: var(--muted);
  line-height: 1.04;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.hero__carousel {
  position: relative;
  overflow: hidden;
  height: clamp(360px, 96vw, 500px);
  margin-top: 24px;
}

.hero__carousel.is-paused .hero__card:hover,
.gallery__grid.is-carousel.is-paused .gallery__card:hover {
  transform: translateY(-8px) scale(1.08);
  box-shadow: 0 36px 70px rgba(0, 0, 0, 0.5);
}

.hero__carousel.is-dragging .hero__viewport,
.gallery__grid.is-carousel.is-dragging .gallery__viewport {
  cursor: grabbing;
}

.hero__carousel::before,
.hero__carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: 14%;
  pointer-events: none;
}

.hero__carousel::before {
  left: 0;
  background: linear-gradient(90deg, rgba(3, 3, 3, 0.98), rgba(3, 3, 3, 0));
}

.hero__carousel::after {
  right: 0;
  background: linear-gradient(270deg, rgba(3, 3, 3, 0.98), rgba(3, 3, 3, 0));
}

.hero__viewport {
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 18px 44px;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.hero__track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  min-width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.hero__card {
  position: relative;
  flex: 0 0 clamp(190px, 58vw, 240px);
  aspect-ratio: 0.67;
  overflow: hidden;
  border-radius: 30px;
  background: #0f0f0f;
  box-shadow: var(--shadow);
  transform: translateY(0) scale(1);
  transition:
    transform 260ms cubic-bezier(0.2, 0.65, 0.2, 1),
    box-shadow 260ms ease,
    filter 260ms ease;
  pointer-events: auto;
  will-change: transform;
}

.media-link {
  display: block;
  width: 100%;
  height: 100%;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(16px);
}

.lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1080px);
  margin: 0;
}

.lightbox__image {
  width: 100%;
  max-height: min(82vh, 980px);
  height: auto;
  border-radius: 28px;
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.5);
  object-fit: contain;
  background: #080808;
}

.lightbox__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.72);
  color: #fff;
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition: transform 220ms ease, background-color 220ms ease;
}

.lightbox__close:hover,
.lightbox__close:focus-visible {
  transform: scale(1.04);
  background: rgba(18, 18, 18, 0.9);
}

.lightbox__close span {
  font-size: 1.6rem;
  line-height: 1;
}

.lightbox__caption {
  margin-top: 14px;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.45;
}

.hero__card-link {
  position: relative;
}

.hero__card::after,
.proof__poster::after,
.story__media::after,
.difference-card__image::after,
.gallery__item::after,
.location__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.58)),
    linear-gradient(0deg, rgba(222, 17, 17, 0.09), transparent 28%);
}

.hero__card img,
.proof__poster img,
.story__media img,
.difference-card__image img,
.gallery__item img,
.location__visual img {
  filter: brightness(0.74) saturate(0.88);
  transform: scale(1.08);
}

.hero__card-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  font-family: "Anton", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.09em;
  color: rgba(255, 255, 255, 0.88);
  opacity: 0.72;
  transform: translateY(8px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.hero__carousel.is-paused .hero__card:hover .hero__card-label,
.hero__card:focus-within .hero__card-label {
  opacity: 1;
  transform: translateY(0);
}

.hero__arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.72);
  color: #fff;
  backdrop-filter: blur(16px);
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    opacity 220ms ease;
  cursor: pointer;
}

.hero__carousel:hover .hero__arrow {
  opacity: 1;
  pointer-events: auto;
}

.hero__arrow:hover,
.hero__arrow:focus-visible {
  transform: translateY(-50%) scale(1.04);
  background: rgba(26, 26, 26, 0.88);
}

.hero__arrow--prev {
  left: 4px;
}

.hero__arrow--next {
  right: 4px;
}

.hero__actions,
.cta__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}

.branch-belt {
  position: relative;
  width: 100vw;
  margin: 22px calc(50% - 50vw) 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    linear-gradient(90deg, rgba(222, 17, 17, 0.08), transparent 28%, transparent 72%, rgba(222, 17, 17, 0.08));
}

.branch-belt::before,
.branch-belt::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 10%;
  pointer-events: none;
}

.branch-belt::before {
  left: 0;
  background: linear-gradient(90deg, rgba(3, 3, 3, 0.98), rgba(3, 3, 3, 0));
}

.branch-belt::after {
  right: 0;
  background: linear-gradient(270deg, rgba(3, 3, 3, 0.98), rgba(3, 3, 3, 0));
}

.branch-belt__marquee {
  display: flex;
  width: max-content;
  animation: branchBeltMove 28s linear infinite;
}

.branch-belt__group {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 14px 22px;
  white-space: nowrap;
}

.branch-belt__group span {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(247, 243, 239, 0.9);
}

.branch-belt__group span::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 14px rgba(255, 59, 48, 0.36);
}

.action-pill {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 18px 36px rgba(222, 17, 17, 0.24);
  transition: transform 220ms ease, filter 220ms ease;
  white-space: nowrap;
}

.action-pill--ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.action-pill:hover,
.action-pill:focus-visible,
.topbar__cta:hover,
.topbar__cta:focus-visible,
.pricing__cta:hover,
.pricing__cta:focus-visible,
.sticky-cta a:hover,
.sticky-cta a:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.section-head {
  display: grid;
  gap: 10px;
}

.section-head__title,
.proof__intro h2,
.cta__stack h2 {
  margin: 0;
  font-size: clamp(2rem, 8vw, 3.2rem);
  line-height: 1.98;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.section-head__title span {
  display: block;
  color: var(--accent-strong);
}

.cta__stack h2 {
  line-height: 1.12;
}

.cta__stack h2 span {
  display: block;
}

.pricing {
  padding: 28px 0 68px;
}

.pricing__cards {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.scarcity-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 18px 0 0;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(222, 17, 17, 0.12);
  border: 1px solid rgba(255, 72, 72, 0.28);
  color: #ffd8d8;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.scarcity-inline--center {
  margin-inline: auto;
}

.scarcity-inline__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4b4b;
  box-shadow: 0 0 0 0 rgba(255, 75, 75, 0.44);
  animation: urgencyPulse 1.9s ease-out infinite;
}

.offer-card {
  position: relative;
  overflow: visible;
  padding: 28px 24px 24px;
  border-radius: 34px;
  background: var(--white-card);
  color: #090909;
}

.offer-card__badge {
  position: absolute;
  top: -20px;
  left: 0;
  padding: 10px 16px;
  background: var(--danger);
  color: #fff;
  font-family: "Anton", sans-serif;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 0.03em;
}

.offer-card__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 16px;
  align-items: end;
}

.offer-card__index {
  margin: 20px 0 10px;
  color: var(--danger);
  font-size: 1rem;
  font-weight: 800;
}

.offer-card h3 {
  margin: 0;
  font-size: clamp(2.2rem, 7vw, 3.4rem);
  line-height: 0.96;
  font-weight: 900;
}

.offer-card__meta {
  margin: 22px 0 0;
  color: #c8c4c7;
  font-size: 0.98rem;
  font-weight: 600;
}

.offer-card__right {
  justify-self: end;
  text-align: right;
}

.offer-card__right strong,
.offer-card__right span {
  display: block;
  font-size: clamp(2rem, 7vw, 3.6rem);
  line-height: 1.02;
  font-weight: 900;
}

.offer-card__right span {
  color: var(--danger);
}

.offer-card--secondary {
  padding-top: 24px;
}

.offer-card--secondary .offer-card__index {
  margin-top: 0;
}

.offer-card--secondary h3 {
  font-size: clamp(1.7rem, 6vw, 2.5rem);
}

.offer-card--secondary .offer-card__right strong,
.offer-card--secondary .offer-card__right span {
  font-size: clamp(1.45rem, 5vw, 2.2rem);
}

.pricing__cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--danger), #d91515);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 24px 48px rgba(222, 17, 17, 0.26);
  white-space: nowrap;
}

.pricing__cta strong {
  font-size: 1rem;
  line-height: 1.1;
}

.pricing__cta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 226, 0, 0.18);
  color: #f9f363;
  font-size: 0.82rem;
}

.proof,
.difference,
.faq,
.location,
.cta,
.visit {
  padding: 0 0 68px;
}

.proof__intro,
.story__quote,
.cta__stack {
  text-align: center;
}

.proof__intro p:not(.eyebrow),
.story__quote p,
.difference-card__body p,
.location__body p,
.cta__stack p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.responsive-lines span {
  display: block;
}

.proof__headline span {
  display: block;
}

.proof__subcopy {
  line-height: 0.92;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.proof__poster {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.82;
  margin-top: 22px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.proof__stats {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.proof__stats article,
.faq-item,
.location__card,
.difference-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(10px);
}

.proof__stats article {
  padding: 20px;
  border-radius: var(--radius-md);
}

.proof__stats span {
  color: var(--accent-strong);
  font-family: "Anton", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.04em;
}

.proof__stats strong {
  display: block;
  margin-top: 10px;
  font-size: 1.6rem;
}

.proof__stats p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.24;
}

.story {
  display: grid;
  gap: 20px;
}

.story__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.78;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.story__quote blockquote {
  margin: 10px 0 0;
  font-size: clamp(1.55rem, 6vw, 2.5rem);
  line-height: 1.32;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.story__cite {
  margin-top: 18px;
}

.difference__stack {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.difference-card {
  display: grid;
  gap: 18px;
  padding: 20px;
  border-radius: 30px;
}

.difference-card__index {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: "Anton", sans-serif;
  font-size: 1.4rem;
}

.difference-card__body h3,
.location__body h3 {
  margin: 10px 0 10px;
  font-size: clamp(1.5rem, 6vw, 2.2rem);
  line-height: 1.24;
  letter-spacing: -0.04em;
}

.difference-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.08;
  border-radius: 22px;
}

.gallery__grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.gallery__strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery__strip::-webkit-scrollbar {
  display: none;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.96;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.gallery__strip .gallery__item {
  flex: 0 0 clamp(168px, 46vw, 220px);
}

.gallery__item--wide {
  grid-column: 1 / -1;
  aspect-ratio: 1.28;
}

.gallery__grid.is-carousel {
  position: relative;
  display: block;
  overflow: hidden;
  height: clamp(280px, 78vw, 360px);
}

.gallery__grid.is-carousel::before,
.gallery__grid.is-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: 14%;
  pointer-events: none;
}

.gallery__grid.is-carousel::before {
  left: 0;
  background: linear-gradient(90deg, rgba(3, 3, 3, 0.98), rgba(3, 3, 3, 0));
}

.gallery__grid.is-carousel::after {
  right: 0;
  background: linear-gradient(270deg, rgba(3, 3, 3, 0.98), rgba(3, 3, 3, 0));
}

.gallery__viewport {
  height: 100%;
  overflow-x: auto;
  overflow-y: visible;
  padding: 14px 44px;
  cursor: grab;
  touch-action: pan-y;
  scrollbar-width: none;
  -ms-overflow-style: none;
  user-select: none;
}

.gallery__viewport::-webkit-scrollbar {
  display: none;
}

.gallery__track {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  min-width: 100%;
  height: 100%;
}

.gallery__grid.is-carousel .gallery__item,
.gallery__card {
  position: relative;
  flex: 0 0 clamp(212px, 60vw, 278px);
  aspect-ratio: 0.76;
  overflow: hidden;
  border-radius: 28px;
  background: #0f0f0f;
  box-shadow: var(--shadow);
  transform: translateY(0) scale(1);
  transition:
    transform 260ms cubic-bezier(0.2, 0.65, 0.2, 1),
    box-shadow 260ms ease,
    filter 260ms ease;
  will-change: transform;
}

.gallery__arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.72);
  color: #fff;
  backdrop-filter: blur(16px);
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    opacity 220ms ease;
  cursor: pointer;
}

.gallery__grid.is-carousel:hover .gallery__arrow {
  opacity: 1;
  pointer-events: auto;
}

.gallery__arrow:hover,
.gallery__arrow:focus-visible {
  transform: translateY(-50%) scale(1.04);
  background: rgba(26, 26, 26, 0.88);
}

.gallery__arrow--prev {
  left: 4px;
}

.gallery__arrow--next {
  right: 4px;
}

.gallery__feature-video {
  position: relative;
  width: 100vw;
  margin: 18px calc(50% - 50vw) 0;
  overflow: hidden;
  background: #000;
  aspect-ratio: 1280 / 704;
}

.gallery__feature-video::before,
.gallery__feature-video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.gallery__feature-video::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.48)),
    linear-gradient(0deg, rgba(222, 17, 17, 0.08), transparent 42%);
}

.gallery__feature-video::after {
  background: radial-gradient(circle at center, transparent 42%, rgba(0, 0, 0, 0.44) 100%);
}

.gallery__feature-media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.68) saturate(0.9);
}

.faq__list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.faq-item {
  overflow: hidden;
  border-radius: 22px;
}

.faq-item__button {
  position: relative;
  width: 100%;
  padding: 20px 56px 20px 20px;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
}

.faq-item__button::after,
.faq-item__button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 14px;
  height: 2px;
  background: var(--accent-strong);
  transform: translateY(-50%);
  transition: transform 220ms ease;
}

.faq-item__button::before {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item__button[aria-expanded="true"]::before {
  transform: translateY(-50%) rotate(0deg);
}

.faq-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
}

.faq-item__panel p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item.is-open .faq-item__panel {
  max-height: 280px;
}

.location__card {
  display: grid;
  gap: 20px;
  overflow: hidden;
  margin-top: 24px;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.location__visual {
  position: relative;
  aspect-ratio: 1.15;
  overflow: hidden;
}

.location__body {
  padding: 0 20px 24px;
}

.location__chips {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.location__chips::-webkit-scrollbar {
  display: none;
}

.location__chips span {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(235, 231, 228, 0.9);
}

.location__chips span::before {
  content: "#";
  margin-right: 2px;
  color: var(--accent-strong);
}

.cta__stack {
  padding: 36px 22px 22px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top, rgba(222, 17, 17, 0.24), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.visit {
  padding-bottom: 118px;
}

.visit__stack {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.visit__map,
.visit__station,
.visit__rows {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.visit__map {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.22;
  border-radius: 30px;
}

.visit__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.15) contrast(1.02);
}

.visit__station {
  display: grid;
  gap: 10px;
  padding: 26px 22px;
  border-radius: 28px;
}

.visit__eyebrow {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-strong);
}

.visit__station strong {
  font-size: clamp(2rem, 9vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.visit__station span {
  color: var(--muted);
  line-height: 1.35;
}

.visit__rows {
  overflow: hidden;
  margin-top: 16px;
  border-radius: 28px;
}

.inquiry-panel {
  display: grid;
  gap: 20px;
  margin-top: 16px;
  padding: 24px 20px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
  scroll-margin-top: 92px;
}

.inquiry-panel__head {
  display: grid;
  gap: 10px;
}

.inquiry-panel__head strong {
  font-size: clamp(1.8rem, 7vw, 2.7rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.inquiry-panel__head span {
  max-width: 28ch;
  color: var(--muted);
  line-height: 1.45;
}

.inquiry-panel__offer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: fit-content;
  margin: 0;
  margin-inline: auto;
  padding: 12px 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 16% 50%, rgba(255, 255, 255, 0.32), transparent 18%),
    linear-gradient(135deg, rgba(222, 17, 17, 0.96), rgba(118, 0, 0, 0.96) 58%, rgba(255, 59, 48, 0.95));
  border: 1px solid rgba(255, 168, 168, 0.54);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    0 0 0 1px rgba(255, 45, 45, 0.18),
    0 0 24px rgba(255, 34, 34, 0.4),
    0 18px 42px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.36);
  animation: inquiryAlarmBadge 1.15s ease-in-out infinite;
}

.inquiry-panel__offer::before {
  content: "";
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.14),
    0 0 16px rgba(255, 255, 255, 0.86),
    0 0 28px rgba(255, 49, 49, 0.96);
  animation: inquiryAlarmDot 0.72s steps(2, end) infinite;
}

.inquiry-panel__offer::after {
  content: "";
  position: absolute;
  inset: -36% auto -36% -60%;
  z-index: 0;
  width: 44%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  filter: blur(1px);
  animation: inquiryAlarmSweep 1.45s ease-in-out infinite;
}

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

.inquiry-form__grid {
  display: grid;
  gap: 12px;
}

.inquiry-field {
  display: grid;
  gap: 8px;
}

.inquiry-field span {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-strong);
}

.inquiry-field input,
.inquiry-field select,
.inquiry-field textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font: inherit;
  outline: none;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.inquiry-field input::placeholder,
.inquiry-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.inquiry-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.72) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 2px),
    calc(100% - 16px) calc(50% - 2px);
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

.inquiry-field select:invalid {
  color: rgba(255, 255, 255, 0.38);
}

.inquiry-field select option {
  color: #121212;
  background: #ffffff;
}

.inquiry-field select option[disabled] {
  color: #7a7a7a;
}

.inquiry-field textarea {
  min-height: 120px;
  resize: vertical;
}

.inquiry-field input:focus,
.inquiry-field select:focus,
.inquiry-field textarea:focus {
  border-color: rgba(255, 91, 91, 0.72);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 4px rgba(255, 79, 79, 0.12);
}

.inquiry-form__actions {
  display: grid;
  gap: 10px;
}

.inquiry-form__submit {
  min-height: 56px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition:
    transform 220ms ease,
    filter 220ms ease,
    opacity 220ms ease;
}

.inquiry-form__submit:hover,
.inquiry-form__submit:focus-visible {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.inquiry-form__submit:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.inquiry-form__meta,
.inquiry-form__status {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.45;
}

.inquiry-form__meta {
  color: var(--muted);
}

.inquiry-form__status {
  color: #ffd4d4;
}

.visit__row {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
}

.visit__row + .visit__row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.visit__row span {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-strong);
}

.visit__row strong {
  font-size: 1.05rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.site-footer {
  width: var(--container);
  margin: 0 auto;
  padding: 30px 0 104px;
  color: var(--muted-strong);
  text-align: center;
}

.site-footer p {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-decoration-color: rgba(255, 59, 48, 0.72);
  text-underline-offset: 4px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
  text-decoration-color: #fff;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 12px;
  z-index: 45;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 8px;
  width: min(calc(100% - 20px), 460px);
  padding: 8px;
  border-radius: 22px;
  background: rgba(5, 5, 5, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transform: translate(-50%, 120%);
  transition: transform 320ms ease;
}

.sticky-cta.is-visible {
  transform: translate(-50%, 0);
}

.sticky-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 16px;
  font-size: 0.92rem;
  font-weight: 900;
  white-space: nowrap;
}

.sticky-cta a:first-child {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
}

.sticky-cta a:last-child {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

@keyframes inquiryAlarmBadge {
  0%,
  100% {
    filter: brightness(1);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.36),
      0 0 0 1px rgba(255, 45, 45, 0.18),
      0 0 24px rgba(255, 34, 34, 0.4),
      0 18px 42px rgba(0, 0, 0, 0.34);
  }

  45% {
    filter: brightness(1.22);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.44),
      0 0 0 1px rgba(255, 168, 168, 0.56),
      0 0 34px rgba(255, 49, 49, 0.78),
      0 0 58px rgba(255, 0, 0, 0.36),
      0 18px 42px rgba(0, 0, 0, 0.34);
  }
}

@keyframes inquiryAlarmDot {
  0%,
  48% {
    opacity: 1;
    transform: scale(1.24);
  }

  50%,
  100% {
    opacity: 0.45;
    transform: scale(0.82);
  }
}

@keyframes inquiryAlarmSweep {
  0% {
    left: -62%;
    opacity: 0;
  }

  24% {
    opacity: 0.9;
  }

  64%,
  100% {
    left: 118%;
    opacity: 0;
  }
}

@keyframes urgencyPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 75, 75, 0.44);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 75, 75, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 75, 75, 0);
  }
}

@keyframes branchBeltMove {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 720ms cubic-bezier(0.2, 0.65, 0.2, 1),
    transform 720ms cubic-bezier(0.2, 0.65, 0.2, 1);
}

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

.parallax-media img {
  transform: translate3d(0, calc(var(--parallax-offset, 0px) * -1), 0) scale(1.08);
  transition: transform 90ms linear;
}

@media (min-width: 768px) {
  :root {
    --container: min(100% - 48px, 1120px);
  }

  .topbar {
    padding-top: 18px;
  }

  .hero {
    min-height: 100svh;
    display: grid;
    align-content: center;
    padding-top: 88px;
  }

  .hero__copy,
  .proof__intro,
  .story__quote,
  .cta__stack,
  .section-head {
    max-width: 760px;
    margin-inline: auto;
  }

  .hero__carousel {
    height: 520px;
    margin-top: 28px;
  }

  .hero__viewport {
    padding-inline: 60px;
  }

  .hero__card {
    flex-basis: clamp(220px, 24vw, 300px);
  }

  .hero__arrow,
  .gallery__arrow {
    width: 48px;
    height: 48px;
  }

  .hero__actions,
  .cta__actions {
    max-width: 540px;
    margin-inline: auto;
    margin-top: 22px;
  }

  .pricing__cards,
  .difference__stack,
  .faq__list {
    max-width: 860px;
    margin-inline: auto;
    margin-top: 28px;
  }

  .proof__poster {
    max-width: 860px;
    margin-inline: auto;
    aspect-ratio: 1.5;
    margin-top: 28px;
  }

  .proof__stats {
    grid-template-columns: repeat(3, 1fr);
    max-width: 860px;
    margin-inline: auto;
    margin-top: 18px;
  }

  .story {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 28px;
  }

  .story__media {
    aspect-ratio: 1.18;
  }

  .difference-card {
    grid-template-columns: 80px 1fr 0.9fr;
    align-items: center;
  }

  .gallery__grid {
    gap: 16px;
  }

  .gallery__grid.is-carousel {
    height: 420px;
  }

  .gallery__viewport {
    padding-inline: 60px;
  }

  .gallery__grid.is-carousel .gallery__item,
  .gallery__card {
    flex-basis: clamp(260px, 26vw, 320px);
  }

  .location__card {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    max-width: 920px;
    margin-inline: auto;
    margin-top: 28px;
  }

  .location__visual {
    aspect-ratio: auto;
    min-height: 100%;
  }

  .location__body {
    padding: 34px 32px;
  }

  .visit__stack,
  .visit__rows {
    max-width: 920px;
    margin-inline: auto;
  }

  .visit__stack {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
  }

  .visit__stack--map-only {
    grid-template-columns: 1fr;
  }

  .visit__map {
    aspect-ratio: auto;
    min-height: 100%;
  }

  .visit__station {
    align-content: center;
    padding: 36px 32px;
  }

  .visit__rows {
    margin-top: 18px;
  }

  .visit__row {
    grid-template-columns: 180px 1fr;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
  }

  .inquiry-panel {
    max-width: 920px;
    margin-inline: auto;
    padding: 32px 28px;
  }

  .inquiry-form__grid {
    grid-template-columns: 1fr 1fr;
  }

  .inquiry-field--full {
    grid-column: 1 / -1;
  }

  .sticky-cta {
    width: min(calc(100% - 32px), 680px);
    grid-template-columns: 1.2fr 0.8fr;
  }

  .lightbox {
    padding: 30px 32px;
  }

  .lightbox__close {
    top: 18px;
    right: 18px;
  }
}

@media (min-width: 520px) {
  .responsive-lines span {
    display: inline;
  }

  .responsive-lines span + span::before {
    content: " ";
  }
}

@media (hover: none) {
  .hero__reveal {
    max-height: 180px;
    margin-top: 18px;
    opacity: 1;
    transform: translateY(0);
  }

  .gallery__arrow {
    opacity: 1;
    pointer-events: auto;
  }
}

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

  .reveal,
  .parallax-media img,
  .scroll-progress,
  .sticky-cta,
  .action-pill,
  .topbar__cta,
  .pricing__cta,
  .inquiry-form__submit,
  .inquiry-panel__offer,
  .inquiry-panel__offer::before,
  .inquiry-panel__offer::after,
  .site-footer a,
  .lightbox {
    animation: none;
    transition: none;
  }
}
