/* MDNT reference pass: after-dark event-site rhythm for busanroom.xyz. */
:root {
  --color-bg: #050505;
  --color-text: #f4efe8;
  --color-dark: #050505;
  --color-dark-2: #0c0b09;
  --color-dark-3: #17110d;
  --color-muted: #b7aea3;
  --color-light-muted: #d1c7ba;
  --color-gold: #ff3b1f;
  --color-gold-soft: #ffb000;
  --color-ivory: #f3eadc;
  --color-card: #11100e;
  --color-line: rgba(255, 91, 31, .34);
  --color-glass: rgba(255, 255, 255, .07);
  --color-cyan: #ff3b1f;
  --color-blue-flame: #ff3b1f;
  --container: min(1440px, calc(100% - 48px));
  --container-narrow: min(1180px, calc(100% - 48px));
  --fs-hero: clamp(4.3rem, 12.5vw, 12.8rem);
  --fs-h1: clamp(3.4rem, 8vw, 8rem);
  --fs-h2: clamp(2.55rem, 5.8vw, 5.8rem);
  --fs-h3: clamp(1.22rem, 1.7vw, 1.85rem);
  --fs-body: clamp(.98rem, 1.02vw, 1.08rem);
  --space-section: clamp(5rem, 10vw, 10rem);
  --header-height: 78px;
  --radius-card: 0;
  --radius-lg: 0;
  --shadow-soft: none;
  --shadow-dark: none;
}

html,
body,
body.home,
body.front-page,
#page,
.site,
.site-content,
#content,
.site-main,
#primary,
.inside-article,
.entry-content {
  color: var(--color-text);
  background: #050505 !important;
}

body {
  font-family: "Arial Narrow", "Pretendard", "Segoe UI", sans-serif;
  letter-spacing: -.015em;
}

.container {
  width: var(--container);
}

.site-header {
  background: rgba(5, 5, 5, .86);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(10px);
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, .96);
  box-shadow: none;
}

.header-inner {
  height: var(--header-height);
  text-transform: uppercase;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  color: #050505;
  background: var(--color-gold);
  box-shadow: none;
}

.brand-text strong {
  font-size: .92rem;
  letter-spacing: .1em;
}

.brand-text small,
.primary-nav a {
  color: rgba(244, 239, 232, .74);
}

.primary-nav ul {
  gap: clamp(18px, 2.2vw, 34px);
}

.primary-nav a,
.header-cta {
  font-size: .72rem;
  letter-spacing: .16em;
}

.primary-nav a:hover,
.mobile-nav a:hover {
  color: var(--color-gold-soft);
}

.header-cta {
  border-radius: 999px;
}

.header-cta-primary,
.btn-gold {
  color: #050505;
  border-color: var(--color-gold);
  background: var(--color-gold);
  box-shadow: none;
}

.header-cta-secondary,
.btn-outline {
  color: var(--color-text);
  border-color: rgba(244, 239, 232, .42);
  background: transparent;
}

.btn {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--color-gold-soft);
  border-color: var(--color-gold-soft);
  color: #050505;
}

.hero-section {
  min-height: calc(100svh - var(--header-height));
  display: block;
  overflow: hidden;
  isolation: isolate;
  background: #050505;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 59, 31, .34), transparent 28rem),
    radial-gradient(circle at 20% 82%, rgba(255, 176, 0, .16), transparent 24rem),
    linear-gradient(180deg, rgba(5, 5, 5, .42), #050505 92%);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, .88) 0%, rgba(5, 5, 5, .36) 48%, rgba(5, 5, 5, .82) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 12.5vw);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: #050505;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .74;
  filter: grayscale(.18) contrast(1.18) saturate(1.2);
}

.hero-content {
  min-height: calc(100svh - var(--header-height));
  max-width: none;
  padding: clamp(58px, 7vw, 110px) 0 44px;
  display: grid;
  align-content: end;
}

.hero-title {
  max-width: 1120px;
  margin: .06em 0 .14em;
  font-size: var(--fs-hero);
  line-height: .8;
  font-weight: 950;
  letter-spacing: -.095em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-sub {
  max-width: 900px;
  margin-bottom: 12px;
  color: var(--color-gold-soft);
  font-size: clamp(1.28rem, 2.15vw, 2.45rem);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -.05em;
}

.hero-description {
  max-width: 620px;
  color: rgba(244, 239, 232, .78);
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 30px;
}

.hero-chips {
  margin-top: clamp(42px, 7vw, 82px);
  padding: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(244, 239, 232, .24);
}

.hero-chips li {
  list-style: none;
  padding: 0 18px 0 0;
  color: rgba(244, 239, 232, .86);
  font-size: clamp(1rem, 1.7vw, 1.7rem);
  font-weight: 900;
  text-transform: uppercase;
}

.repeat-rail {
  width: 100%;
  margin: 0 0 clamp(18px, 3vw, 34px);
  display: flex;
  gap: 16px;
  overflow: hidden;
  white-space: nowrap;
  color: var(--color-gold);
  font-size: clamp(1.3rem, 4vw, 4.6rem);
  line-height: .8;
  font-weight: 950;
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.repeat-rail span {
  flex: 0 0 auto;
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--color-gold);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.front-main > section {
  position: relative;
  padding: clamp(84px, 10vw, 150px) 0;
  border-top: 1px solid rgba(244, 239, 232, .16);
  background: #050505 !important;
}

.front-main > section:nth-of-type(even) {
  background: #0d0b09 !important;
}

.section-heading {
  max-width: 1060px;
  margin-bottom: clamp(34px, 5vw, 72px);
}

.section-heading h2,
.price-intro h2,
.location-copy h2 {
  color: var(--color-text);
  font-size: var(--fs-h2);
  line-height: .92;
  font-weight: 950;
  letter-spacing: -.08em;
  text-transform: uppercase;
  text-wrap: balance;
}

.section-heading p,
.price-intro p,
.location-copy p,
.brand-intro p,
.scale-section p,
.faq-section p,
.contact-section p {
  color: rgba(244, 239, 232, .72);
}

.memo-intro,
.price-layout,
.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .82fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: stretch;
}

.memo-image,
.gallery-card,
.map-frame-wrap,
.contact-cta-card,
.price-panel,
.mdnt-lanes,
.faq-list details,
.post-card a,
.contact-panel,
.single-cta-panel {
  overflow: hidden;
  border: 1px solid rgba(244, 239, 232, .18);
  border-radius: 0;
  background: #11100e;
  box-shadow: none;
}

.memo-image {
  min-height: clamp(360px, 50vw, 720px);
}

.memo-image img,
.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: grayscale(.08) contrast(1.12) saturate(1.12);
}

.card-grid.four,
.info-cards .card-grid.four {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-areas: none;
  gap: 0;
  border-top: 1px solid rgba(244, 239, 232, .18);
  border-left: 1px solid rgba(244, 239, 232, .18);
}

.card-grid article,
.info-cards .card-grid article,
.info-cards .card-grid article:nth-child(1),
.info-cards .card-grid article:nth-child(2),
.info-cards .card-grid article:nth-child(3),
.info-cards .card-grid article:nth-child(4) {
  min-height: clamp(280px, 26vw, 430px);
  padding: clamp(22px, 2.8vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  grid-area: auto;
  color: var(--color-text);
  border: 0;
  border-right: 1px solid rgba(244, 239, 232, .18);
  border-bottom: 1px solid rgba(244, 239, 232, .18);
  background: #050505;
}

.card-grid article:nth-child(odd) {
  background: #15110e;
}

.card-kicker {
  width: auto;
  height: auto;
  margin-bottom: 42px;
  justify-content: flex-start;
  border: 0;
  border-radius: 0;
  color: var(--color-gold);
  background: transparent;
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .18em;
}

.card-grid article h3 {
  margin-bottom: 20px;
  color: var(--color-text);
  font-size: clamp(1.72rem, 2.65vw, 3.15rem);
  line-height: .96;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.card-grid article p,
.info-cards .card-grid article:nth-child(1) p {
  margin: 0;
  color: rgba(244, 239, 232, .7);
}

.mdnt-price-layout {
  grid-template-columns: .92fr 1.08fr;
}

.price-note-label,
.lane-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  color: #050505;
  border: 1px solid var(--color-gold);
  border-radius: 999px;
  background: var(--color-gold);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.mdnt-lanes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: #050505;
}

.mdnt-lane {
  padding: clamp(28px, 4vw, 58px);
}

.mdnt-lane + .mdnt-lane {
  border-left: 1px solid rgba(244, 239, 232, .18);
}

.mdnt-lane h3,
.location-card h3,
.contact-cta-card h2 {
  color: var(--color-text);
  font-size: clamp(1.9rem, 3.25vw, 3.95rem);
  line-height: .96;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.route-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
  border-top: 1px solid rgba(244, 239, 232, .18);
}

.route-list li {
  display: grid;
  grid-template-columns: minmax(120px, .35fr) 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(244, 239, 232, .14);
}

.route-list strong {
  color: var(--color-gold-soft);
  font-size: .86rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.route-list span {
  color: rgba(244, 239, 232, .72);
}

.mdnt-lane p,
.mdnt-lane li,
.location-card,
.location-card address {
  color: rgba(244, 239, 232, .72);
}

.step-grid,
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(244, 239, 232, .18);
  border-left: 1px solid rgba(244, 239, 232, .18);
}

.step-grid article,
.stat-grid article {
  min-height: 280px;
  padding: clamp(24px, 3vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 0;
  border-right: 1px solid rgba(244, 239, 232, .18);
  border-bottom: 1px solid rgba(244, 239, 232, .18);
  border-radius: 0;
  color: var(--color-text);
  background: #0d0b09;
}

.step-grid article:nth-child(even),
.stat-grid article:nth-child(even) {
  background: #15110e;
}

.step-grid article span,
.stat-grid article strong {
  color: var(--color-gold);
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .16em;
}

.step-grid article h3,
.stat-grid article h3 {
  margin: 28px 0 16px;
  color: var(--color-text);
  font-size: clamp(1.45rem, 2.2vw, 2.6rem);
  line-height: 1;
  letter-spacing: -.06em;
}

.step-grid article p,
.stat-grid article p {
  margin: 0;
  color: rgba(244, 239, 232, .7);
}

.mdnt-lane ul {
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
  border-top: 1px solid rgba(244, 239, 232, .2);
}

.mdnt-lane li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(244, 239, 232, .16);
}

.mdnt-lane strong {
  color: var(--color-gold-soft);
  text-align: right;
}

.price-cta {
  grid-column: 2;
  width: fit-content;
  margin-top: 24px;
}

.map-frame-wrap {
  min-height: 520px;
  padding: clamp(28px, 4vw, 58px);
  display: grid;
  gap: clamp(20px, 2.6vw, 34px);
  background:
    linear-gradient(rgba(5, 5, 5, .5), rgba(5, 5, 5, .9)),
    var(--cta-bg-image, none),
    #11100e;
  background-size: cover;
  background-position: center;
}

.location-map-frame {
  position: relative;
  min-height: clamp(260px, 34vw, 440px);
  overflow: hidden;
  border: 1px solid rgba(244, 239, 232, .18);
  background: #050505;
}

.location-map-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(244, 239, 232, .08), inset 0 -90px 120px rgba(5, 5, 5, .42);
}

.location-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  border: 0;
  filter: grayscale(.1) contrast(1.05) saturate(.9);
}

.location-card {
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(244, 239, 232, .18);
  border-left: 1px solid rgba(244, 239, 232, .18);
}

.gallery-card {
  min-height: clamp(340px, 38vw, 660px);
  border-top: 0;
  border-left: 0;
}

.gallery-card:nth-child(2),
.gallery-card:nth-child(5) {
  transform: translateY(42px);
}

.gallery-card:nth-child(1) {
  grid-row: span 2;
}

.faq-list details {
  padding: 26px 0;
  border-width: 1px 0 0;
  background: transparent;
}

.faq-list summary {
  color: var(--color-text);
  font-size: clamp(1.18rem, 1.55vw, 1.62rem);
  font-weight: 950;
  letter-spacing: -.04em;
}

.faq-list details p {
  max-width: 920px;
  color: rgba(244, 239, 232, .72);
}

.contact-cta-card {
  padding: clamp(38px, 7vw, 92px);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, .92), rgba(5, 5, 5, .56)),
    var(--cta-bg-image),
    #11100e;
  background-size: cover;
  background-position: center;
}

.site-footer {
  background: #050505;
  border-top: 1px solid rgba(244, 239, 232, .18);
}

.footer-cta-inner,
.footer-cta-block {
  border-radius: 0;
  border-color: rgba(244, 239, 232, .18);
  background: #0d0b09;
  box-shadow: none;
}

.footer-logo,
.footer-links h2,
.footer-contact h2 {
  color: var(--color-gold);
}

@media (max-width: 980px) {
  :root {
    --fs-hero: clamp(3.7rem, 15vw, 7rem);
    --fs-h2: clamp(2.5rem, 10vw, 5rem);
  }

  .memo-intro,
  .price-layout,
  .location-layout,
  .mdnt-price-layout {
    grid-template-columns: 1fr;
  }

  .price-cta {
    grid-column: auto;
  }

  .card-grid.four,
  .info-cards .card-grid.four,
  .mdnt-lanes,
  .step-grid,
  .stat-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .mdnt-lane + .mdnt-lane {
    border-left: 0;
    border-top: 1px solid rgba(244, 239, 232, .18);
  }

  .gallery-card:nth-child(1) {
    grid-row: auto;
  }

  .gallery-card:nth-child(2),
  .gallery-card:nth-child(5) {
    transform: none;
  }

  .hero-chips {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 28px, 1440px);
  }

  .hero-content {
    padding-top: 46px;
  }

  .hero-title {
    letter-spacing: -.08em;
  }

  .route-list li {
    grid-template-columns: 1fr;
  }

  .front-main > section {
    padding: 72px 0;
  }

  .card-grid article,
  .info-cards .card-grid article {
    min-height: 240px;
  }
}

/* Korean content stability pass. Keeps the MDNT-inspired frame without breaking Hangul. */
.front-main h1,
.front-main h2,
.front-main h3,
.front-main summary,
.front-main p,
.front-main li,
.hero-chips li {
  word-break: keep-all;
  overflow-wrap: normal;
}

.hero-content {
  align-content: center;
}

.hero-title {
  max-width: 980px;
  font-size: clamp(3.9rem, 10vw, 10.8rem);
  line-height: .84;
}

.hero-sub {
  max-width: 820px;
  font-size: clamp(1.18rem, 1.75vw, 2rem);
  line-height: 1.22;
}

.hero-description {
  max-width: 760px;
  font-size: clamp(.98rem, 1vw, 1.1rem);
}

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

.hero-chips li {
  font-size: clamp(.95rem, 1.18vw, 1.25rem);
  line-height: 1.35;
}

.section-heading h2,
.price-intro h2,
.location-copy h2 {
  max-width: 1080px;
  font-size: clamp(2.25rem, 4.6vw, 4.75rem);
  line-height: 1;
  letter-spacing: -.065em;
}

.memo-intro,
.price-layout,
.location-layout,
.mdnt-price-layout {
  grid-template-columns: minmax(0, 1fr) minmax(420px, .82fr);
}

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

.info-cards .card-grid article {
  min-height: 300px;
}

.card-grid article h3 {
  font-size: clamp(1.55rem, 2.05vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -.055em;
}

.card-grid article p,
.mdnt-lane p,
.mdnt-lane li,
.step-grid article p,
.stat-grid article p,
.faq-list details p {
  font-size: clamp(.95rem, .98vw, 1.04rem);
  line-height: 1.75;
}

.mdnt-lanes {
  grid-template-columns: 1fr;
}

.mdnt-lane + .mdnt-lane {
  border-left: 0;
  border-top: 1px solid rgba(244, 239, 232, .18);
}

.mdnt-lane h3,
.location-card h3,
.contact-cta-card h2 {
  font-size: clamp(1.65rem, 2.7vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -.06em;
}

.mdnt-lane li {
  align-items: flex-start;
}

.mdnt-lane li span {
  min-width: 118px;
}

.mdnt-lane strong {
  min-width: 150px;
}

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

.step-grid article,
.stat-grid article {
  min-height: 260px;
}

.step-grid article h3,
.stat-grid article h3 {
  font-size: clamp(1.38rem, 1.85vw, 2.2rem);
  line-height: 1.08;
}

.gallery-card:nth-child(2),
.gallery-card:nth-child(5) {
  transform: none;
}

.faq-list summary {
  line-height: 1.35;
}

@media (max-width: 1180px) {
  .memo-intro,
  .price-layout,
  .location-layout,
  .mdnt-price-layout,
  .info-cards .card-grid.four,
  .step-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(3.5rem, 13vw, 8rem);
  }
}

@media (max-width: 640px) {
  .hero-content {
    align-content: end;
    min-height: calc(92svh - var(--header-height));
  }

  .hero-title {
    font-size: clamp(3rem, 17vw, 5.6rem);
    line-height: .88;
  }

  .section-heading h2,
  .price-intro h2,
  .location-copy h2 {
    font-size: clamp(2rem, 10vw, 3.4rem);
  }

  .mdnt-lane li {
    display: grid;
  }

  .mdnt-lane strong {
    min-width: 0;
    text-align: left;
  }
}

/* Responsive hardening pass: real tablet/mobile layouts, not just scaled desktop. */
html,
body {
  overflow-x: clip;
}

.front-main *,
.site-header * {
  min-width: 0;
}

@media (max-width: 1180px) {
  :root {
    --container: min(100% - 40px, 980px);
    --header-height: 72px;
  }

  .primary-nav,
  .header-actions {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: inline-flex !important;
  }

  .header-inner {
    width: var(--container);
    gap: 14px;
  }

  .site-brand {
    min-width: 0;
  }

  .brand-text {
    min-width: 0;
  }

  .brand-text strong,
  .brand-text small {
    max-width: 52vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-drawer {
    position: fixed;
    top: var(--header-height);
    right: 0;
    width: min(88vw, 380px);
    max-width: 100vw;
    height: calc(100svh - var(--header-height));
    display: block;
    padding: 22px;
    border-top: 0;
    border-left: 1px solid rgba(244, 239, 232, .18);
    background: rgba(5, 5, 5, .98);
    transform: translateX(108%);
    transition: transform .28s ease;
    z-index: 1001;
    overflow-y: auto;
  }

  .mobile-drawer.is-open {
    transform: translateX(0);
  }

  .mobile-drawer-backdrop {
    position: fixed;
    inset: var(--header-height) 0 0;
    display: block;
    border: 0;
    padding: 0;
    margin: 0;
    background: rgba(0, 0, 0, .62);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    z-index: 1000;
  }

  .mobile-drawer-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .hero-content {
    min-height: auto;
    padding: clamp(92px, 14vw, 150px) 0 clamp(54px, 8vw, 92px);
  }

  .hero-title {
    max-width: 760px;
    font-size: clamp(4rem, 13vw, 7.8rem);
  }

  .hero-sub,
  .hero-description {
    max-width: 720px;
  }

  .hero-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
  }

  .front-main > section {
    padding: clamp(72px, 10vw, 110px) 0;
  }

  .memo-intro,
  .price-layout,
  .location-layout,
  .mdnt-price-layout,
  .two-column {
    grid-template-columns: 1fr !important;
  }

  .memo-image,
  .map-frame-wrap,
  .gallery-card {
    min-height: clamp(300px, 56vw, 520px);
  }

  .info-cards .card-grid.four,
  .card-grid.four,
  .step-grid,
  .stat-grid,
  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .gallery-card:nth-child(1) {
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 28px, 720px);
    --header-height: 66px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
  }

  .brand-text strong {
    font-size: .78rem;
  }

  .brand-text small {
    display: none;
  }

  .mobile-drawer {
    width: 100vw;
    border-left: 0;
  }

  .hero-content {
    min-height: calc(88svh - var(--header-height));
    align-content: end;
    padding: 64px 0 36px;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(3rem, 17vw, 5.8rem);
    line-height: .9;
    letter-spacing: -.075em;
  }

  .hero-sub {
    font-size: clamp(1.06rem, 5vw, 1.55rem);
  }

  .hero-description {
    font-size: .96rem;
    line-height: 1.65;
  }

  .hero-actions,
  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .button-row .btn,
  .price-cta,
  .section-cta {
    width: 100%;
  }

  .hero-chips {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .hero-chip.mobile-hide {
    display: list-item;
  }

  .repeat-rail {
    font-size: clamp(1.35rem, 9vw, 3.2rem);
    line-height: .9;
  }

  .section-heading h2,
  .price-intro h2,
  .location-copy h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -.055em;
  }

  .section-heading,
  .price-intro,
  .location-copy {
    margin-bottom: 28px;
  }

  .info-cards .card-grid.four,
  .card-grid.four,
  .step-grid,
  .stat-grid,
  .post-grid,
  .gallery-grid,
  .mdnt-lanes {
    grid-template-columns: 1fr !important;
  }

  .info-cards .card-grid article,
  .card-grid article,
  .step-grid article,
  .stat-grid article {
    min-height: 0;
    padding: 24px 20px;
  }

  .card-grid article h3,
  .step-grid article h3,
  .stat-grid article h3,
  .mdnt-lane h3,
  .location-card h3,
  .contact-cta-card h2 {
    font-size: clamp(1.45rem, 7vw, 2.35rem);
    line-height: 1.08;
  }

  .memo-image,
  .map-frame-wrap,
  .gallery-card,
  .contact-cta-card {
    min-height: 280px;
  }

  .mdnt-lane,
  .location-card,
  .contact-cta-card {
    padding: 24px 20px;
  }

  .mdnt-lane li,
  .route-list li {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .mdnt-lane li span,
  .mdnt-lane strong {
    min-width: 0;
    text-align: left;
  }

  .faq-list details {
    padding: 20px 0;
  }

  .faq-list summary {
    font-size: clamp(1.06rem, 4.5vw, 1.35rem);
  }
}

@media (max-width: 420px) {
  :root {
    --container: min(100% - 22px, 420px);
  }

  .hero-title {
    font-size: clamp(2.7rem, 18vw, 4.8rem);
  }

  .front-main > section {
    padding: 58px 0;
  }

  .btn {
    min-height: 44px;
    padding-inline: 16px;
    font-size: .72rem;
  }

  .memo-image,
  .map-frame-wrap,
  .gallery-card,
  .contact-cta-card {
    min-height: 230px;
  }
}

/* Ultra-narrow mobile QA pass. */
@media (max-width: 480px) {
  :root {
    --container: min(100% - 20px, 480px);
    --header-height: 62px;
  }

  .front-main > section {
    padding: 46px 0;
  }

  .hero-content {
    min-height: auto;
    padding: 54px 0 36px;
  }

  .hero-title {
    font-size: clamp(2.55rem, 16vw, 4.2rem);
    line-height: .92;
    letter-spacing: -.065em;
  }

  .hero-sub {
    font-size: 1.08rem;
    line-height: 1.35;
    letter-spacing: -.025em;
  }

  .hero-description,
  .section-heading p,
  .price-intro p,
  .location-copy p,
  .brand-intro p,
  .scale-section p,
  .faq-section p,
  .contact-section p {
    font-size: .92rem;
    line-height: 1.72;
  }

  .repeat-rail {
    gap: 10px;
    margin-bottom: 18px;
    font-size: clamp(1rem, 7vw, 1.9rem);
    line-height: 1;
    letter-spacing: -.04em;
  }

  .section-heading h2,
  .price-intro h2,
  .location-copy h2 {
    font-size: clamp(1.75rem, 8.8vw, 2.75rem);
    line-height: 1.12;
    letter-spacing: -.045em;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: .68rem;
    letter-spacing: .14em;
  }

  .price-note-label,
  .lane-kicker,
  .card-kicker {
    font-size: .66rem;
    letter-spacing: .1em;
  }

  .memo-intro,
  .price-layout,
  .location-layout,
  .mdnt-price-layout,
  .two-column {
    gap: 24px;
  }

  .info-cards .card-grid article,
  .card-grid article,
  .step-grid article,
  .stat-grid article,
  .mdnt-lane,
  .location-card,
  .contact-cta-card {
    padding: 20px 16px;
  }

  .card-grid article h3,
  .step-grid article h3,
  .stat-grid article h3,
  .mdnt-lane h3,
  .location-card h3,
  .contact-cta-card h2 {
    margin-bottom: 12px;
    font-size: clamp(1.28rem, 6.5vw, 1.9rem);
    line-height: 1.14;
    letter-spacing: -.035em;
  }

  .card-grid article p,
  .mdnt-lane p,
  .mdnt-lane li,
  .step-grid article p,
  .stat-grid article p,
  .faq-list details p {
    font-size: .9rem;
    line-height: 1.68;
  }

  .mdnt-lane ul,
  .route-list {
    margin-top: 22px;
  }

  .mdnt-lane li,
  .route-list li {
    padding: 14px 0;
  }

  .hero-chips li {
    font-size: .9rem;
  }

  .btn {
    width: 100%;
    min-height: 42px;
  }

  .memo-image,
  .map-frame-wrap,
  .gallery-card,
  .contact-cta-card {
    min-height: 220px;
  }
}

@media (max-width: 360px) {
  :root {
    --container: min(100% - 16px, 360px);
  }

  .section-heading h2,
  .price-intro h2,
  .location-copy h2 {
    font-size: 1.72rem;
  }

  .card-grid article h3,
  .step-grid article h3,
  .stat-grid article h3,
  .mdnt-lane h3,
  .location-card h3,
  .contact-cta-card h2 {
    font-size: 1.28rem;
  }

  .repeat-rail {
    font-size: 1rem;
  }
}

/* Final global title scale. Applies to every section, including gallery/blog/brand/contact. */
.front-main section h2,
.front-main section .section-heading h2,
.front-main section .price-intro h2,
.front-main section .location-copy h2,
.front-main section .contact-cta-card h2 {
  max-width: min(100%, 1060px);
  font-size: clamp(2rem, 4.1vw, 4.2rem);
  line-height: 1.06;
  letter-spacing: -.055em;
  word-break: keep-all;
  overflow-wrap: normal;
}

.front-main section h3,
.front-main section .card-grid article h3,
.front-main section .step-grid article h3,
.front-main section .stat-grid article h3,
.front-main section .mdnt-lane h3,
.front-main section .location-card h3,
.front-main section .post-card h3 {
  max-width: 100%;
  font-size: clamp(1.35rem, 1.85vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: -.04em;
  word-break: keep-all;
  overflow-wrap: normal;
}

.front-main section .faq-list summary {
  font-size: clamp(1.08rem, 1.35vw, 1.45rem);
  line-height: 1.42;
  letter-spacing: -.025em;
  word-break: keep-all;
  overflow-wrap: normal;
}

.front-main section .repeat-rail {
  font-size: clamp(1.1rem, 3.1vw, 3.4rem);
}

.front-main section .eyebrow,
.front-main section .card-kicker,
.front-main section .lane-kicker,
.front-main section .price-note-label {
  line-height: 1.25;
  word-break: keep-all;
  overflow-wrap: normal;
}

.front-main section .post-card a {
  min-height: 0;
}

@media (max-width: 1180px) {
  .front-main section h2,
  .front-main section .section-heading h2,
  .front-main section .price-intro h2,
  .front-main section .location-copy h2,
  .front-main section .contact-cta-card h2 {
    font-size: clamp(1.9rem, 5.8vw, 3.6rem);
    line-height: 1.08;
  }

  .front-main section h3,
  .front-main section .card-grid article h3,
  .front-main section .step-grid article h3,
  .front-main section .stat-grid article h3,
  .front-main section .mdnt-lane h3,
  .front-main section .location-card h3,
  .front-main section .post-card h3 {
    font-size: clamp(1.28rem, 3.2vw, 2rem);
  }
}

@media (max-width: 760px) {
  .front-main section h2,
  .front-main section .section-heading h2,
  .front-main section .price-intro h2,
  .front-main section .location-copy h2,
  .front-main section .contact-cta-card h2 {
    font-size: clamp(1.72rem, 8vw, 2.65rem);
    line-height: 1.12;
    letter-spacing: -.04em;
  }

  .front-main section h3,
  .front-main section .card-grid article h3,
  .front-main section .step-grid article h3,
  .front-main section .stat-grid article h3,
  .front-main section .mdnt-lane h3,
  .front-main section .location-card h3,
  .front-main section .post-card h3 {
    font-size: clamp(1.22rem, 5.6vw, 1.72rem);
    line-height: 1.18;
    letter-spacing: -.025em;
  }

  .front-main section .faq-list summary {
    font-size: clamp(1.02rem, 4.6vw, 1.25rem);
  }

  .front-main section .repeat-rail {
    font-size: clamp(.96rem, 6.2vw, 1.8rem);
  }
}

@media (max-width: 420px) {
  .front-main section h2,
  .front-main section .section-heading h2,
  .front-main section .price-intro h2,
  .front-main section .location-copy h2,
  .front-main section .contact-cta-card h2 {
    font-size: clamp(1.48rem, 7.5vw, 2.15rem);
    line-height: 1.16;
  }

  .front-main section h3,
  .front-main section .card-grid article h3,
  .front-main section .step-grid article h3,
  .front-main section .stat-grid article h3,
  .front-main section .mdnt-lane h3,
  .front-main section .location-card h3,
  .front-main section .post-card h3 {
    font-size: clamp(1.08rem, 5.4vw, 1.38rem);
    line-height: 1.22;
  }

  .front-main section .faq-list summary {
    font-size: 1rem;
  }

  .front-main section .repeat-rail {
    font-size: .96rem;
  }
}

/* Haeundae Goguryeo hero identity: Korean brand title and required facts. */
.hero-title {
  max-width: 860px;
  font-size: clamp(4.2rem, 9vw, 9rem);
  line-height: .95;
  letter-spacing: -.08em;
  text-transform: none;
}

.hero-chips {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.hero-chips li {
  padding: 10px 12px 0 0;
  border-top: 1px solid rgba(244, 239, 232, .18);
  font-size: clamp(.86rem, .95vw, 1.05rem);
  line-height: 1.45;
}

.post-card a {
  padding: 0;
  overflow: hidden;
}

.post-card-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(244, 239, 232, .18);
  background: #050505;
}

.post-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(.08) contrast(1.08) saturate(1.08);
  transition: transform .55s ease, filter .55s ease;
}

.post-card a:hover .post-card-thumb img {
  transform: scale(1.035);
  filter: grayscale(0) contrast(1.12) saturate(1.14);
}

.post-card-body {
  min-height: 240px;
  padding: clamp(22px, 2.6vw, 38px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

@media (max-width: 1180px) {
  .hero-title {
    max-width: 760px;
    font-size: clamp(3.8rem, 11vw, 7.2rem);
  }

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

@media (max-width: 760px) {
  .hero-title {
    font-size: clamp(3.1rem, 14vw, 5.2rem);
    line-height: 1;
    letter-spacing: -.065em;
  }

  .hero-chips {
    grid-template-columns: 1fr;
  }

  .post-card-body {
    min-height: 0;
    padding: 22px 16px;
  }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: clamp(2.75rem, 13vw, 4.2rem);
  }
}
