:root {
  --blue: #2f6dff;
  --blue-dark: #1d4ed8;
  --ink: #212121;
  --muted: #5c5c5c;
  --line: #e7e7e7;
  --bg: #f9f9f9;
  --section: #f7f9fc;
  --white: #fff;
  --top: #363636;
  --header: 72px;
  --max: 1280px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header) + 8px);
}
body {
  margin: 0;
  font-family: "Pretendard Variable", Pretendard, "Apple SD Gothic Neo", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
.wrap { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.wrap.narrow { width: min(760px, calc(100% - 48px)); }
.center { text-align: center; margin-top: 40px; }
.eyebrow { color: var(--blue); font-weight: 700; letter-spacing: .04em; margin: 0 0 12px; }
.section-lead { color: var(--muted); font-size: 18px; margin: 12px 0 40px; }

h2 {
  font-size: clamp(28px, 3.2vw, 36px);
  line-height: 1.35;
  letter-spacing: -1px;
  margin: 0 0 24px;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 12px 32px;
  border-radius: 4px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn.pill { border-radius: 9999px; padding: 20px 50px; font-size: 18px; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: #fff; color: var(--blue); border-color: var(--blue); }
.btn-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.29); }
.btn-light:hover { background: #fff; color: #5e5e5e; border-color: #fff; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-white { background: #fff; color: var(--blue); }
.btn-outline-white { background: transparent; color: #fff; border-color: #fff; }
.btn-ghost-dark { background: #fff; color: var(--ink); border-color: #d3d3d3; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: #111;
}
.navbar {
  height: var(--header);
  background: #fff;
  border-bottom: 1px solid rgba(17,17,17,.06);
}
.navbar-inner {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .04em;
  color: inherit;
  flex-shrink: 0;
}
.logo img {
  width: auto;
  height: 46px;
  object-fit: contain;
  background: transparent;
}
.logo-name {
  padding-left: 12px;
  border-left: 1px solid currentColor;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .12em;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: 2px;
  font-size: 14px;
  font-weight: 600;
  color: inherit;
}
.main-nav a {
  padding: 8px 10px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] { color: var(--blue); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  border-radius: 9999px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--blue-dark); color: #fff; }
.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px 8px;
  color: inherit;
  cursor: pointer;
  flex-shrink: 0;
}
.menu-btn span {
  display: block;
  height: 2px;
  background: currentColor;
  margin: 6px 0;
  border-radius: 2px;
}

.site-header.is-scrolled .navbar {
  background: #fff;
}

.drawer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 60;
}
.drawer-backdrop.is-open { display: block; }
.mobile-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 86vw);
  background: #fff;
  z-index: 70;
  transform: translateX(100%);
  transition: transform .3s ease;
  padding: 72px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-drawer.is-open { transform: none; }
.mobile-drawer a {
  padding: 14px 8px;
  border-bottom: 1px solid #f3f3f3;
  font-size: 15px;
}
.drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: 0;
  background: none;
  font-size: 28px;
  line-height: 1;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-media, .hero-dim {
  position: absolute;
  inset: 0;
}
.hero-media {
  background-color: #1a2744;
  background-size: cover;
  background-position: center;
}
.hero-dim {
  background: linear-gradient(90deg, rgba(10,18,36,.78) 0%, rgba(10,18,36,.42) 46%, rgba(10,18,36,.12) 100%);
}
.hero-media { background-position: 72% center; }
.hero-copy { position: relative; z-index: 1; padding: 132px 0 88px; max-width: min(680px, 100%); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 22px;
  padding: 8px 14px;
  border-radius: 9999px;
  background: rgba(47,109,255,.38);
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 700;
}
.hero-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: #7ad3ff;
}
.hero h1 {
  font-size: clamp(34px, 4.8vw, 54px);
  margin: 0 0 18px;
  letter-spacing: -1.4px;
  line-height: 1.28;
  font-weight: 800;
}
.hero-lead { font-size: 17px; margin: 0 0 28px; max-width: 520px; opacity: .92; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-hero-primary {
  background: #fff;
  color: var(--blue);
  border-radius: 9999px;
  min-height: 52px;
  padding: 12px 22px;
}
.btn-hero-primary:hover { background: #eef4ff; }
.btn-hero-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.55);
  border-radius: 9999px;
  min-height: 52px;
  padding: 12px 22px;
}
.btn-hero-ghost:hover { background: rgba(255,255,255,.12); }
.hero-meta { margin: 18px 0 0; font-size: 13px; opacity: .8; }
.hero-stats {
  display: flex;
  margin-top: 40px;
  max-width: 560px;
}
.hero-stats div {
  flex: 1;
  padding: 0 24px;
  border-left: 1px solid rgba(255,255,255,.28);
}
.hero-stats div:first-child { padding-left: 0; border-left: 0; }
.hero-stats b {
  display: block;
  font-size: 30px;
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
  min-width: 5.5ch;
}
.hero-stats span { display: block; margin-top: 4px; font-size: 13px; opacity: .78; }
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 2;
  transform: translateX(-50%);
  color: #fff;
  font-size: 11px;
  letter-spacing: .18em;
  font-weight: 700;
  opacity: .8;
}
.hero-scroll::after {
  content: "↓";
  display: block;
  text-align: center;
  margin-top: 4px;
  letter-spacing: 0;
}

.highlights {
  background: var(--section);
  padding: 28px 0;
}
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.highlight-grid article {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}
.hi-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: #e8f0fe;
  color: var(--blue);
  display: grid;
  place-items: center;
}
.highlight-grid h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 800;
}
.highlight-grid p {
  margin: 0;
  color: #7a8494;
  font-size: 13px;
}

/* Intro */
.intro { padding: 150px 0; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.intro p { font-size: 18px; font-weight: 300; line-height: 2; }
.intro-meta { color: var(--muted); font-size: 15px !important; }
.intro-photo img { width: 100%; height: auto; min-height: 280px; background: #e8eef8; }

/* Places */
.places { background: #fff; padding: 96px 0 80px; }
.places h2 { margin-bottom: 12px; }
.place-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.place-grid article {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  min-height: 210px;
  background: #1a2436;
}
.place-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: saturate(.86) contrast(1.04);
}
@media (max-width: 991px) {
  .place-grid img { height: 180px; }
}
.place-grid h3 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 36px 16px 16px;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.03em;
  background: linear-gradient(transparent, rgba(10,16,28,.78));
}

/* Before / After */
.ba-section { padding: 96px 0 80px; text-align: center; background: #fff; }
.ba-section h2 { margin-bottom: 40px; }
.ba-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  text-align: left;
}
.ba-card {
  background: #fff;
  border: 1px solid #e8edf4;
  border-radius: 18px;
  overflow: hidden;
}
.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ba-pair figure { position: relative; margin: 0; }
.ba-pair img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  background: #e8eef5;
}
.ba-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  min-width: 68px;
  padding: 5px 10px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
}
.ba-tag.before {
  background: #fff;
  color: #111;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .22);
}
.ba-tag.after { background: var(--blue); }
.ba-cap {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 16px 18px 18px;
}
.ba-cap h3 { margin: 0; font-size: 17px; }
.ba-cap p { margin: 0; color: var(--muted); font-size: 13px; }

/* Stories */
.stories {
  padding: 96px 0 80px;
  text-align: center;
  background: var(--section);
}
.stories h2 { margin-bottom: 40px; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px 40px;
  margin: 50px 0 40px;
}
.story-photo {
  width: min(100%, 420px);
  aspect-ratio: 1;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
}
.story-photo { background: #dbe6ff; }
.story-photo img { width: 100%; height: 100%; object-fit: cover; }
.story-card { text-align: center; }
.story-card h3 { font-size: 18px; margin: 0 0 16px; }
.story-card p { font-weight: 300; margin: 0 0 12px; }
.story-card span { color: #888; font-size: 13px; }
.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 0;
  text-align: left;
}
.review-item {
  border: 1px solid var(--line);
  padding: 22px;
  background: #fff;
}
.review-item .who { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.review-item i {
  width: 44px; height: 44px; border-radius: 50%;
  background: #eef3ff; color: var(--blue);
  display: grid; place-items: center; font-style: normal; font-weight: 800;
}
.review-item b { display: block; }
.review-item span { color: #888; font-size: 13px; }
.review-item p { margin: 0; font-weight: 300; }

/* SERVICE cards */
.svc-types { padding: 96px 0 80px; text-align: center; }
.svc-kicker {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
}
.svc-types h2 { margin-bottom: 12px; }
.svc-lead { margin: 0 auto 48px; max-width: 640px; }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: left;
}
.svc-grid > *,
.book-card,
.ba-card,
.review-item { min-width: 0; }
.svc-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #eceff5;
  border-radius: 18px;
  overflow: hidden;
  padding: 0 0 18px;
  box-shadow: 0 10px 28px rgba(17, 24, 39, .04);
}
.svc-photo { position: relative; }
.svc-photo img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #eef2f7;
}
.svc-photo span {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,.94);
  border-radius: 9999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 800;
  color: #111;
}
.svc-card h3 {
  margin: 16px 18px 10px;
  font-size: 20px;
}
.svc-card ul {
  margin: 0 18px 16px;
  padding: 0;
  list-style: none;
  flex: 1;
}
.svc-card li {
  position: relative;
  padding: 5px 0 5px 22px;
  color: #555;
  font-size: 14px;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.svc-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 12px;
  background: var(--blue);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9.2 16.6 4.8 12.2l1.4-1.4 3 3 8.6-8.6 1.4 1.4z'/></svg>") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9.2 16.6 4.8 12.2l1.4-1.4 3 3 8.6-8.6 1.4 1.4z'/></svg>") center / contain no-repeat;
}
.svc-book {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 18px;
  min-height: 48px;
  padding: 0 8px 0 18px;
  border-radius: 9999px;
  background: #171717;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
.svc-book i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 14px;
}
.svc-book:hover { background: var(--blue); }

/* Trust */
.trust { background: var(--bg); padding: 150px 0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.trust-grid article { text-align: center; }
.trust-grid img {
  width: 140px; height: 140px;
  object-fit: cover; border-radius: 16px;
  margin: 0 auto 16px;
  background: #e8eef8;
}
.trust-grid p { font-weight: 300; margin: 0; }

/* PROCESS split */
.process-split {
  background: var(--section);
  padding: 96px 0 80px;
}
.process-split-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}
.process-copy { text-align: left; }
.process-copy .svc-kicker {
  margin-bottom: 10px;
  color: var(--blue);
}
.process-copy h2 { margin-bottom: 12px; }
.process-copy > p:not(.svc-kicker) {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 16px;
  max-width: 480px;
  line-height: 1.75;
}
.process-cta {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  border-radius: 9999px;
  min-height: 52px;
  padding: 12px 28px;
  font-size: 15px;
  gap: 8px;
}
.process-cta:hover {
  background: var(--blue-dark);
  color: #fff;
  border-color: var(--blue-dark);
}
.process-photo {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #e8eef5;
  border: 1px solid #e8edf4;
}
.process-photo img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}
.process-steps {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.process-steps li {
  position: relative;
  background: #fff;
  border: 1px solid #eef1f6;
  border-radius: 16px;
  padding: 18px 12px 20px;
  text-align: center;
}
.process-steps li > span {
  position: absolute;
  top: 14px;
  left: 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
}
.step-icon {
  width: 48px;
  height: 48px;
  margin: 10px auto 12px;
  border-radius: 12px;
  background: #f1f4f8;
  color: var(--blue);
  display: grid;
  place-items: center;
}
.process-steps h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 800;
}
.process-steps p {
  margin: 0;
  color: #888;
  font-size: 13px;
  line-height: 1.45;
}
.steps {
  list-style: none;
  padding: 0;
  margin: 50px 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}
.steps li { flex: 1; text-align: center; }
.steps img {
  width: 100px; height: 100px;
  object-fit: cover; border-radius: 50%;
  margin: 0 auto 16px;
  background: #e8eef8;
}
.steps .arrow {
  flex: 0 0 40px;
  align-self: center;
  font-size: 32px;
  color: #777;
  padding-top: 24px;
}

/* CTA */
.cta-banner {
  position: relative;
  isolation: isolate;
  color: #fff;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #0b1a36 url("../images/cta-room.png") center / cover no-repeat;
  filter: brightness(.62) saturate(.75);
}
.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(16, 42, 88, .78), rgba(8, 22, 52, .9));
}
.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-banner h2 {
  color: #fff;
  text-align: center;
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 16px;
  letter-spacing: -1.2px;
}
.cta-lead {
  margin: 0 0 36px;
  font-size: 16px;
  opacity: .92;
  font-weight: 500;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Price / BA / FAQ / Branch */
.price {
  padding: 96px 0 80px;
  background: var(--section);
  text-align: center;
}
.price h2 { margin-bottom: 10px; }
.price .section-lead {
  margin: 0 auto 40px;
  font-size: 16px;
  color: #8a8a8a;
}
.price .table-wrap {
  overflow: hidden;
  overflow-x: auto;
  background: #fff;
  border: 1px solid #eceff5;
  border-radius: 18px;
  box-shadow: 0 12px 36px rgba(17, 24, 39, .06);
  max-width: 920px;
  margin: 0 auto;
}
.price table { width: 100%; border-collapse: collapse; table-layout: fixed; min-width: 640px; }
.price th, .price td {
  padding: 20px 24px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #eee;
}
.price th {
  background: #171717;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
.price th:nth-child(1),
.price td:nth-child(1) { width: 22%; }
.price th:nth-child(2),
.price td:nth-child(2) { width: 56%; }
.price th:nth-child(3),
.price td:nth-child(3) { width: 22%; }
.price td:first-child { font-weight: 800; }
.price td:nth-child(2) {
  color: #8a8a8a;
  font-size: 13px;
  font-weight: 400;
  white-space: normal;
  line-height: 1.5;
}
.price-num {
  text-align: center;
  color: var(--blue);
  font-weight: 800;
  font-size: 20px;
  white-space: nowrap;
}
.price tbody tr:last-child td { border-bottom: 0; }
.price-book {
  display: inline-flex;
  margin-top: 36px;
  background: #171717;
  color: #fff;
  border-radius: 9999px;
  min-height: 52px;
  padding: 12px 28px;
  font-size: 15px;
}
.price-book:hover { background: var(--blue); color: #fff; }
.price-note {
  margin: 28px auto 0;
  max-width: 640px;
  font-size: 12px;
  line-height: 1.7;
  color: #b4b4b4;
  font-weight: 400;
}
.faq {
  padding: 96px 0 80px;
  text-align: center;
  background: #fff;
}
.faq h2 { margin-bottom: 40px; }
.faq-list {
  width: min(860px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.faq-item {
  background: #eef2f7;
  border-radius: 14px;
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 20px 52px 20px 22px;
  min-height: 52px;
  font-size: 16px;
  font-weight: 700;
  color: #2a2a2a;
  position: relative;
  cursor: pointer;
  display: block;
}
.faq-item button::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .2s ease;
}
.faq-item.is-open button::after {
  transform: translateY(-20%) rotate(225deg);
}
.faq-item .a {
  display: none;
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.faq-item.is-open .a { display: block; }
.branch { padding: 0 0 80px; }
.branch-card {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  background: var(--bg);
  padding: 48px;
  align-items: center;
}
.branch-card ul { padding-left: 18px; margin: 0; }
.branch-cta { display: flex; flex-direction: column; gap: 10px; min-width: 200px; }

/* Footer */
.site-footer {
  background: #eef3f9;
  border-top: 1px solid #e2eaf4;
  padding: 56px 0 28px;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr .95fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.footer-brand p { margin: 14px 0 0; max-width: 280px; }
.footer-col h3 {
  margin: 0 0 16px;
  font-size: 16px;
  color: #111;
  font-weight: 800;
}
.footer-col p { margin: 0 0 6px; }
.footer-branch + .footer-branch { margin-top: 16px; }
.footer-who { color: #333; font-weight: 600; }
.footer-tel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  color: var(--blue);
  font-weight: 700;
}
.logo.dark { color: #111; margin-bottom: 4px; }
.footer-bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid #d7e0ee;
}
.copy { margin: 0; color: #9aa3b2; font-size: 12px; font-weight: 600; }

.fab-stack {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.fab-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 9999px;
  background: var(--blue);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.02em;
  box-shadow: 0 10px 24px rgba(47, 109, 255, .38);
}
.fab-pill:hover { background: var(--blue-dark); }
.to-top {
  display: none;
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: calc(80px + env(safe-area-inset-bottom));
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  z-index: 40;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.to-top.is-visible { display: grid; place-items: center; }

/* 예약 페이지 */
.page-book {
  background: #f5f7fb;
}
.page-book .site-header { color: #111; }
.page-book .navbar {
  background: #fff;
  border-bottom-color: rgba(17,17,17,.06);
}
.page-book .nav-cta { background: var(--blue); color: #fff; }
.page-book .nav-cta:hover { background: var(--blue-dark); color: #fff; }
.page-book .main-nav a:hover { color: var(--blue); }
.page-book main {
  padding-top: var(--header);
}

.book-hero {
  padding: 72px 0 48px;
  text-align: center;
}
.book-pin {
  margin: 0 0 16px;
  color: var(--blue);
  font-weight: 700;
  font-size: 15px;
}
.book-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.35;
  letter-spacing: -1px;
  font-weight: 800;
}
.book-hero h1 em {
  font-style: normal;
  color: var(--blue);
}
.book-lead {
  margin: 0 auto 48px;
  color: var(--muted);
  font-size: 16px;
  max-width: 520px;
}
.book-cards {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(2, minmax(300px, 400px));
  gap: 24px;
}
.book-card {
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(17, 24, 39, .06);
  text-align: center;
}
.book-card-top {
  padding: 36px 28px 18px;
  background: #fff;
  color: #111;
}
.book-branch {
  display: block;
  margin: 0 0 18px;
  padding: 0;
  background: none;
  color: #111;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: .28em;
  line-height: 1.4;
}
.book-rule {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 78%;
  margin: 0 auto;
}
.book-rule span {
  flex: 1;
  height: 1px;
  background: #2f6dff;
}
.book-card-body {
  padding: 6px 28px 28px;
}
.book-role {
  margin: 0 0 6px;
  color: #111;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .04em;
}
.book-engineer {
  margin: 0 0 22px;
  font-size: 26px;
  font-weight: 800;
  color: #111;
}
.book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 48px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 15px;
}
.book-btn + .book-btn { margin-top: 10px; }
.book-btn-tel { background: #34c759; color: #fff; }
.book-btn-tel:hover { background: #2db350; }
.book-btn-kakao { background: #fee500; color: #191919; }
.book-btn-kakao:hover { background: #f5d800; }

.howto {
  padding: 24px 0 88px;
  text-align: center;
}
.howto-kicker {
  margin: 0 0 8px;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: .08em;
  font-size: 13px;
}
.howto h2 {
  margin-bottom: 36px;
}
.howto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: left;
}
.howto-card {
  position: relative;
  background: #fff;
  border: 1px solid #eceff5;
  border-radius: 18px;
  padding: 28px 24px 32px;
  min-height: 240px;
}
.howto-card span {
  color: var(--blue);
  font-weight: 800;
  font-size: 13px;
}
.howto-icon {
  width: 64px;
  height: 64px;
  margin: 18px 0 16px;
  border-radius: 50%;
  background: #e8f0fe;
  color: var(--blue);
  display: grid;
  place-items: center;
}
.howto-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.howto-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.howto-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 28px auto 0;
  max-width: 820px;
  padding: 16px 24px;
  border-radius: 9999px;
  background: #e8f0fe;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
}

/* ========== Responsive ========== */
@media (max-width: 1100px) {
  .main-nav { display: none; }
  .menu-btn { display: block; }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .highlight-grid { grid-template-columns: 1fr 1fr; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 991px) {
  .wrap { width: min(var(--max), calc(100% - 40px)); }
  .intro, .stories, .svc-types, .trust, .process, .process-split, .places, .ba-section, .price, .faq {
    padding: 72px 0;
  }
  .cta-banner { padding: 80px 0; }
  .intro-grid,
  .story-grid,
  .footer-grid,
  .ba-grid,
  .review-grid,
  .process-split-inner,
  .ba-cards {
    grid-template-columns: 1fr;
  }
  .place-grid,
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .steps { flex-direction: column; align-items: center; }
  .steps .arrow { transform: rotate(90deg); padding: 0; }
  .hero { min-height: 100svh; }
  .hero-copy { padding: 112px 0 72px; }
  .hero-lead { font-size: 16px; }
  .hero-lead br { display: none; }
  .hero-stats { max-width: 100%; }
  .hero-stats b { font-size: 22px; min-width: 0; }
  .hero-stats div { padding: 0 12px; }
  .branch-card { flex-direction: column; padding: 32px 24px; }
  .process-photo img { height: 280px; }
  .ba-pair img { height: 200px; }
  .howto-grid { grid-template-columns: 1fr; }
  .howto-card { min-height: 0; }
  .book-hero { padding: 48px 0 32px; }
  .book-lead { margin-bottom: 32px; }
  .logo img { height: 40px; }
  .section-lead { font-size: 16px; }
}

@media (max-width: 768px) {
  :root { --header: 64px; }
  .navbar { height: var(--header); }
  .logo { font-size: 16px; gap: 8px; }
  .logo img { height: 36px; }
  .logo-name { padding-left: 10px; letter-spacing: .08em; }
  .nav-cta { font-size: 13px; padding: 8px 14px; min-height: 40px; }
  .hero-copy { padding: 92px 0 56px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-scroll { display: none; }
  .cta-lead { font-size: 14px; }
  .cta-actions { flex-direction: column; width: min(360px, 100%); }
  .cta-actions .btn { width: 100%; }
  .branch-cta { width: 100%; min-width: 0; }
  .fab-pill { min-height: 48px; padding: 0 16px; font-size: 15px; }
  .site-footer { padding: 48px 0 108px; }
  .book-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .book-branch { font-size: 24px; letter-spacing: .18em; }
  .book-engineer { font-size: 22px; }
  .howto-note {
    align-items: flex-start;
    text-align: left;
    border-radius: 16px;
    padding: 14px 16px;
  }
  .price table { min-width: 0; }
  .price thead { display: none; }
  .price table,
  .price tbody { display: block; width: 100%; }
  .price tbody tr {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px 16px;
    padding: 18px 16px;
    border-bottom: 1px solid #eee;
  }
  .price tbody tr:last-child { border-bottom: 0; }
  .price th,
  .price td {
    width: auto;
    padding: 0;
    border: 0;
    text-align: left;
  }
  .price td:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  .price td:nth-child(3),
  .price-num {
    grid-column: 2;
    grid-row: 1;
    text-align: right;
    font-size: 18px;
  }
  .price td:nth-child(2) {
    grid-column: 1 / -1;
    text-align: left;
    font-size: 13px;
  }
  .ba-cap { flex-direction: column; gap: 4px; }
  .faq-item button { font-size: 15px; padding: 18px 48px 18px 18px; }
}

@media (max-width: 640px) {
  .wrap { width: calc(100% - 24px); }
  .svc-grid,
  .highlight-grid,
  .trust-grid { grid-template-columns: 1fr; }
  .place-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .place-grid article { min-height: 140px; }
  .place-grid img { height: 140px; }
  .place-grid h3 { font-size: 14px; padding: 24px 10px 12px; }
  .hero-stats { flex-wrap: wrap; gap: 16px 0; }
  .hero-stats div {
    flex: 1 1 33%;
    border-left: 0;
    padding: 0 8px;
    text-align: center;
  }
  .hero-stats div:first-child { padding-left: 8px; }
  h2 { font-size: 24px; }
  .btn.pill { padding: 16px 28px; font-size: 16px; width: 100%; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .svc-card h3 { font-size: 18px; }
  .svc-card li { font-size: 13px; }
  .book-card-top,
  .book-card-body { padding-left: 20px; padding-right: 20px; }
  .footer-brand p { max-width: none; }
}

@media (max-width: 480px) {
  .logo-name { display: none; }
  .process-steps { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
  .book-hero h1 { font-size: 26px; }
  .book-branch { font-size: 22px; letter-spacing: .12em; }
  .ba-pair img { height: 150px; }
  .highlight-grid article { align-items: flex-start; }
}

@media (max-width: 360px) {
  .place-grid { grid-template-columns: 1fr; }
  .hero-stats div { flex: 1 1 100%; padding: 8px 0; }
}
