/* =========================================================
   엄궁역 트라비스 하늘채 — Base Styles
   ========================================================= */

:root {
  --bg: #FFFFFF;
  --surface: #F5F4F0;
  --surface-2: #EBE9E2;
  --ink: #0E1013;
  --ink-2: #3B3F45;
  --muted: #6E7177;
  --line: #DCDAD2;
  --line-2: #C7C4B9;
  --accent: #243240;
  --accent-2: #8A7960;
  --alert: #B0492A;

  --container: 1280px;
  --gutter: clamp(20px, 4vw, 40px);

  --font-kr: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont,
             system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo',
             'Noto Sans KR', 'Malgun Gothic', sans-serif;
  --font-en: 'Inter', var(--font-kr);
  --font-mono: ui-monospace, 'SF Mono', Menlo, Monaco, 'Cascadia Mono', monospace;

  --header-h: 76px;
  --bottombar-h: 96px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-kr);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.01em;
  padding-bottom: var(--bottombar-h);
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Eyebrow caption */
.eyebrow {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.eyebrow .num {
  color: var(--ink);
  font-weight: 600;
  margin-right: 14px;
}

/* Headings */
h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.025em; }
h1 { font-size: clamp(40px, 6vw, 72px); line-height: 1.05; }
h2 { font-size: clamp(28px, 3.8vw, 44px); line-height: 1.15; }
h3 { font-size: clamp(20px, 2vw, 24px); line-height: 1.3; }

p { margin: 0; color: var(--ink-2); }
.lede { font-size: 18px; line-height: 1.7; color: var(--ink-2); max-width: 60ch; }

/* =========================================================
   Utility bar + Header
   ========================================================= */
.utilbar {
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
  background: var(--bg);
}
.utilbar .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 36px;
}
.utilbar .left { display: flex; gap: 18px; white-space: nowrap; }
.utilbar .right { display: flex; gap: 16px; align-items: center; white-space: nowrap; }
.utilbar a { white-space: nowrap; }
.utilbar a:hover { color: var(--ink); }
.utilbar .phone { font-family: var(--font-en); color: var(--ink); font-weight: 600; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 600; letter-spacing: -0.02em;
  flex-shrink: 0;
  white-space: nowrap;
}
.brand .name { white-space: nowrap; }
.brand .name small { white-space: nowrap; }
.brand .mark {
  width: 32px; height: 32px;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-en); font-size: 14px; font-weight: 700;
}
.brand .name { font-size: 16px; }
.brand .name small { display: block; font-size: 11px; color: var(--muted); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }

.nav-primary {
  display: flex; gap: 28px; align-items: center;
}
.nav-primary a {
  font-size: 14px;
  color: var(--ink-2);
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}
.nav-primary a:hover { color: var(--ink); }
.nav-primary a.has-sub::after {
  content: '';
  width: 4px; height: 4px;
  background: var(--muted);
  display: inline-block;
  border-radius: 999px;
  margin-left: 6px;
  vertical-align: middle;
}

.header-cta {
  display: flex; align-items: center; gap: 8px;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px; padding: 0 22px;
  font-size: 14px; font-weight: 500;
  border: 1px solid var(--ink); background: var(--ink); color: #fff;
  border-radius: 0;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}
.btn:hover { background: #000; }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn.ghost:hover { border-color: var(--ink); }
.btn.lg { height: 56px; padding: 0 32px; font-size: 15px; }
.btn.sm { height: 36px; padding: 0 16px; font-size: 13px; }
.btn.accent { background: var(--accent); border-color: var(--accent); }
.btn .arrow { margin-left: 10px; transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(4px); }

.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  background: transparent; border: 0;
  flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
}
.menu-toggle span {
  width: 22px; height: 1.5px; background: var(--ink);
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(64px, 8vw, 120px) 0 clamp(80px, 9vw, 140px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero .grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
}
.hero .copy h1 {
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.hero .copy h1 em {
  font-style: normal;
  color: var(--accent-2);
  font-weight: 500;
}
.hero .tagline {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 14px;
}
.hero .tagline::before {
  content: ''; width: 32px; height: 1px; background: var(--ink);
}
.hero .sub {
  margin-top: 28px;
  font-size: 20px; line-height: 1.6;
  color: var(--ink-2);
  max-width: 36ch;
}
.hero .meta {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border-top: 1px solid var(--line);
}
.hero .meta .item {
  padding: 24px 24px 0 0;
}
.hero .meta .label {
  font-family: var(--font-en);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.hero .meta .value {
  font-size: 22px; font-weight: 600; letter-spacing: -0.02em;
}
.hero .meta .value .unit { font-size: 14px; color: var(--muted); margin-left: 4px; font-weight: 400; }

/* Hero side card — quick inquiry */
.hero .side {
  background: var(--surface);
  padding: 36px 32px;
  border: 1px solid var(--line);
}
.hero .side h3 {
  font-size: 18px;
  margin-bottom: 6px;
}
.hero .side p.tiny {
  font-size: 13px; color: var(--muted); margin-bottom: 28px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: transparent;
  border: 0; border-bottom: 1px solid var(--line-2);
  padding: 8px 0;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  border-radius: 0;
  outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--ink);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkbox {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 12px; color: var(--muted); line-height: 1.5;
  margin-bottom: 12px;
}
.checkbox input { margin-top: 3px; accent-color: var(--ink); }
.checkbox a { text-decoration: underline; }

.hero .side .btn { width: 100%; margin-top: 8px; }

/* =========================================================
   Section base
   ========================================================= */
.section {
  padding: clamp(80px, 10vw, 140px) 0;
  border-bottom: 1px solid var(--line);
}
.section.tinted { background: var(--surface); }
.section-head {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 72px;
}
.section-head .right p { max-width: 50ch; }

/* =========================================================
   Stats strip
   ========================================================= */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats .cell {
  padding: 40px 28px;
  border-right: 1px solid var(--line);
}
.stats .cell:last-child { border-right: 0; }
.stats .label {
  font-family: var(--font-en);
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 18px;
}
.stats .value {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600; letter-spacing: -0.02em;
  line-height: 1;
}
.stats .value .unit { font-size: 16px; color: var(--muted); margin-left: 6px; font-weight: 400; }
.stats .note { font-size: 12px; color: var(--muted); margin-top: 10px; }

/* =========================================================
   Image placeholder
   ========================================================= */
.imgph {
  position: relative;
  background:
    repeating-linear-gradient(
      135deg,
      var(--surface) 0 12px,
      var(--surface-2) 12px 24px
    );
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-2);
  letter-spacing: 0.05em;
  text-align: center;
  padding: 24px;
  min-height: 240px;
}
.imgph .tag {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 6px 12px;
  color: var(--muted);
}

/* =========================================================
   Location
   ========================================================= */
.location-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
}
.location-grid .map { min-height: 520px; }
.location-grid .points {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--line);
}
.point {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 20px;
  align-items: baseline;
}
.point .idx {
  font-family: var(--font-en);
  font-size: 12px; color: var(--muted);
  letter-spacing: 0.1em;
}
.point .title { font-size: 17px; font-weight: 600; }
.point .desc { color: var(--muted); font-size: 14px; margin-top: 4px; }
.point .dist {
  font-family: var(--font-en);
  font-size: 13px; color: var(--ink); font-weight: 500;
}
.point .dist em { color: var(--muted); font-style: normal; font-size: 11px; margin-left: 4px; }

/* =========================================================
   Development / 개발호재
   ========================================================= */
.dev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dev-card {
  border: 1px solid var(--line);
  padding: 32px;
  background: var(--bg);
  display: flex; flex-direction: column;
  min-height: 280px;
}
.dev-card .kicker {
  font-family: var(--font-en);
  font-size: 11px; color: var(--muted); letter-spacing: 0.16em;
  text-transform: uppercase; margin-bottom: 20px;
}
.dev-card h3 { font-size: 22px; margin-bottom: 12px; }
.dev-card p { font-size: 14px; color: var(--ink-2); }
.dev-card .foot { margin-top: auto; padding-top: 24px; font-size: 12px; color: var(--muted); display: flex; gap: 14px; flex-wrap: wrap; }
.dev-card .foot span { white-space: nowrap; }
.dev-card .foot .status {
  background: var(--ink); color: #fff;
  padding: 3px 8px; font-family: var(--font-en);
  font-size: 10px; letter-spacing: 0.08em;
}

/* =========================================================
   Premium
   ========================================================= */
.premium-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.prem {
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 36px;
  display: flex; flex-direction: column;
  min-height: 320px;
}
.prem.big { grid-column: span 7; min-height: 480px; }
.prem.tall { grid-column: span 5; min-height: 480px; }
.prem.wide { grid-column: span 12; min-height: 360px; flex-direction: row; gap: 40px; }
.prem.sm { grid-column: span 4; min-height: 280px; }
.prem .num {
  font-family: var(--font-en);
  font-size: 11px; color: var(--muted); letter-spacing: 0.16em;
  text-transform: uppercase; margin-bottom: 20px;
}
.prem h3 {
  font-size: 28px; line-height: 1.2; margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.prem .big h3 { font-size: 36px; }
.prem p { font-size: 14px; line-height: 1.7; color: var(--ink-2); max-width: 44ch; }
.prem .image { margin-top: auto; }

/* =========================================================
   Unit / 평면
   ========================================================= */
.unit-tabs {
  display: flex; gap: 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
}
.unit-tab {
  padding: 18px 28px;
  border-right: 1px solid var(--line);
  background: transparent;
  border-top: 0; border-bottom: 0; border-left: 0;
  font-size: 14px; letter-spacing: -0.01em;
  color: var(--muted);
  cursor: pointer;
}
.unit-tab.active {
  color: var(--ink);
  background: var(--ink); color: #fff;
}
.unit-tab .type-name {
  font-family: var(--font-en);
  font-weight: 600; margin-right: 8px;
}

.unit-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
}
.unit-body .plan { min-height: 520px; }
.unit-meta {
  display: flex; flex-direction: column;
}
.unit-meta h3 {
  font-size: 40px; font-weight: 600; line-height: 1; margin-bottom: 8px;
  font-family: var(--font-en);
  letter-spacing: -0.03em;
}
.unit-meta .type-label { font-size: 14px; color: var(--muted); margin-bottom: 32px; }

.spec {
  display: grid; grid-template-columns: 120px 1fr;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.spec .k { color: var(--muted); }
.spec .v { color: var(--ink); }

.unit-meta .btn { margin-top: 32px; align-self: flex-start; }

/* =========================================================
   News
   ========================================================= */
.news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.news-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding-right: 32px; padding-left: 32px;
}
.news-item:nth-child(3n) { border-right: 0; padding-right: 0; }
.news-item:first-child { padding-left: 0; }
.news-item .meta {
  display: flex; gap: 14px; font-size: 12px; color: var(--muted);
  letter-spacing: 0.04em; margin-bottom: 14px;
}
.news-item .meta .tag {
  background: var(--surface-2); padding: 3px 8px; color: var(--ink-2);
  font-family: var(--font-en); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase;
}
.news-item h4 { font-size: 18px; line-height: 1.4; font-weight: 600; }
.news-item p { font-size: 13px; color: var(--muted); margin-top: 8px; }

/* =========================================================
   Inquiry section (full form)
   ========================================================= */
.inquiry {
  background: var(--ink); color: #fff;
  padding: clamp(80px, 10vw, 140px) 0;
}
.inquiry .container { display: grid; grid-template-columns: 1fr 1.2fr; gap: 96px; align-items: start; }
.inquiry h2 { color: #fff; letter-spacing: -0.025em; }
.inquiry .lede { color: #BFC2C7; }
.inquiry .eyebrow { color: #7E838B; }
.inquiry .eyebrow .num { color: #fff; }
.inquiry .contact-list { margin-top: 56px; border-top: 1px solid #2B3036; }
.inquiry .contact-row { display: grid; grid-template-columns: 120px 1fr; padding: 18px 0; border-bottom: 1px solid #2B3036; font-size: 14px; }
.inquiry .contact-row .k { color: #7E838B; }
.inquiry .contact-row .v { color: #fff; font-family: var(--font-en); font-weight: 500; }

.inquiry .form-wrap {
  background: rgba(255,255,255,0.03);
  border: 1px solid #2B3036;
  padding: 40px;
}
.inquiry .field label { color: #7E838B; }
.inquiry .field input,
.inquiry .field select,
.inquiry .field textarea {
  color: #fff; border-bottom-color: #3A4047;
}
.inquiry .field input:focus,
.inquiry .field select:focus,
.inquiry .field textarea:focus { border-color: #fff; }
.inquiry .field input::placeholder { color: #565B62; }
.inquiry .checkbox { color: #9498A0; }
.inquiry .btn { background: #fff; color: var(--ink); border-color: #fff; }
.inquiry .btn:hover { background: #f0f0f0; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 64px 0 80px;
  font-size: 13px; color: var(--muted);
}
.site-footer .top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.site-footer h5 { font-size: 13px; color: var(--ink); margin: 0 0 16px; font-weight: 600; letter-spacing: 0.02em; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { padding: 4px 0; }
.site-footer ul a:hover { color: var(--ink); }
.site-footer .legal {
  padding-top: 32px; line-height: 1.7;
}
.site-footer .legal strong { color: var(--ink-2); font-weight: 500; }

/* =========================================================
   Floating CTA + bottom bar
   ========================================================= */
.floating {
  position: fixed;
  right: 28px;
  bottom: calc(var(--bottombar-h) + 24px);
  z-index: 80;
  display: flex; flex-direction: column; gap: 12px;
  align-items: flex-end;
}
.fab {
  background: var(--ink);
  color: #fff;
  border: 0;
  height: 64px;
  padding: 0 28px;
  font-size: 14px;
  letter-spacing: -0.01em;
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 12px;
  box-shadow: 0 10px 30px rgba(14,16,19,0.2);
  border-radius: 999px;
  transition: transform 0.15s;
}
.fab:hover { transform: translateY(-2px); }
.fab .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #5BD089;
  box-shadow: 0 0 0 4px rgba(91, 208, 137, 0.2);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.7; }
}
.fab-mini {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink);
  font-size: 18px;
}

.bottombar {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 70;
  background: rgba(14,16,19,0.96);
  backdrop-filter: blur(10px);
  color: #fff;
  height: var(--bottombar-h);
  display: flex; align-items: center;
  border-top: 1px solid #2B3036;
}
.bottombar .container {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr auto; gap: 32px; align-items: center;
}
.bottombar .brand-mini {
  display: flex; flex-direction: column;
}
.bottombar .brand-mini .n { font-weight: 600; font-size: 15px; }
.bottombar .brand-mini .t { font-size: 12px; color: #9498A0; margin-top: 2px; letter-spacing: 0.04em; }
.bottombar .col .k { font-size: 11px; color: #7E838B; letter-spacing: 0.14em; text-transform: uppercase; font-family: var(--font-en); margin-bottom: 4px; }
.bottombar .col .v { font-family: var(--font-en); font-weight: 500; font-size: 16px; letter-spacing: -0.01em; }
.bottombar .col .v.phone { font-size: 20px; font-weight: 600; }
.bottombar .actions { display: flex; gap: 8px; }
.bottombar .btn { background: #fff; color: var(--ink); border-color: #fff; }
.bottombar .btn.ghost { background: transparent; color: #fff; border-color: #3A4047; }

/* =========================================================
   Modal
   ========================================================= */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(14,16,19,0.6);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: #fff;
  width: 100%; max-width: 560px;
  padding: 48px;
  max-height: 90vh; overflow: auto;
  position: relative;
}
.modal .close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px;
  background: transparent; border: 0;
  display: grid; place-items: center;
  font-size: 18px; color: var(--muted);
}
.modal h2 { font-size: 28px; margin-bottom: 8px; }
.modal p.tiny { font-size: 13px; color: var(--muted); margin-bottom: 28px; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .menu-toggle { display: flex; }
  .nav-primary { display: none; }
  .header-cta .btn:not(.menu-toggle) { display: none; }
  .utilbar .left a:not(.phone) { display: none; }
  .hero .grid { grid-template-columns: 1fr; gap: 48px; }
  .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 48px; }
  .premium-grid > * { grid-column: span 12 !important; min-height: 320px !important; }
  .prem.wide { flex-direction: column; gap: 24px; }
  .unit-body { grid-template-columns: 1fr; gap: 32px; }
  .location-grid { grid-template-columns: 1fr; }
  .inquiry .container { grid-template-columns: 1fr; gap: 48px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats .cell:nth-child(2) { border-right: 0; }
  .stats .cell:nth-child(1), .stats .cell:nth-child(2) { border-bottom: 1px solid var(--line); }
  .dev-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .news-item { border-right: 0; padding-left: 0 !important; padding-right: 0 !important; }
  .site-footer .top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  :root { --bottombar-h: 76px; }
  .hero .meta { grid-template-columns: 1fr 1fr; gap: 0; }
  .hero .meta .item { border-bottom: 1px solid var(--line); }
  .stats { grid-template-columns: 1fr 1fr; }
  .bottombar .container { grid-template-columns: 1fr auto; gap: 12px; }
  .bottombar .col:not(:last-child) { display: none; }
  .bottombar .brand-mini .t { display: none; }
  .bottombar .brand-mini .n { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .floating { right: 16px; bottom: calc(var(--bottombar-h) + 14px); }
  .fab { height: 56px; padding: 0 20px; font-size: 13px; }
  .site-footer .top { grid-template-columns: 1fr; }
  .inquiry .form-wrap { padding: 28px; }
  .modal { padding: 28px; }
  .field-row { grid-template-columns: 1fr; }
}

/* Mobile menu drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: #fff;
  display: none; flex-direction: column;
  padding: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .mm-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mobile-menu .mm-list { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu .mm-list a { font-size: 22px; padding: 16px 0; border-bottom: 1px solid var(--line); font-weight: 500; }
