/* ========================================
   이로담 세무회계 — Premium refined styles
   Tone: tone-down beige · charcoal · ivory
   ======================================== */

:root {
  /* Refined palette */
  --c-ivory: #FBF8F3;        /* page bg */
  --c-paper: #F4EFE7;        /* alt section bg */
  --c-paper-2: #EDE6DA;      /* card bg accents */
  --c-line: #E5DDD0;         /* hairlines */
  --c-line-soft: #EFE9DD;    /* very soft */

  --c-beige: #B6A88E;        /* primary accent */
  --c-beige-deep: #8E7E62;   /* hover/deep */
  --c-beige-soft: #D9CFB9;
  --c-stone: #6F6859;        /* secondary text on light */

  --c-charcoal: #2A2722;     /* primary text / dark surfaces */
  --c-charcoal-2: #3A352D;
  --c-text: #2A2722;
  --c-text-2: #5A554C;
  --c-text-3: #8A8478;

  --c-leaf: #7E9A78;         /* subtle natural green accent */

  --c-naver: #03C75A;
  --c-kakao: #FAE100;
  --c-kakao-text: #3C1E1E;

  --serif: "Noto Serif KR", "Apple SD Gothic Neo", serif;
  --sans: "Pretendard Variable", Pretendard, "Apple SD Gothic Neo", -apple-system, BlinkMacSystemFont, sans-serif;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(45, 38, 28, 0.04), 0 1px 3px rgba(45, 38, 28, 0.04);
  --shadow-md: 0 6px 24px -8px rgba(45, 38, 28, 0.10), 0 2px 6px rgba(45, 38, 28, 0.04);
  --shadow-lg: 0 24px 60px -24px rgba(45, 38, 28, 0.18), 0 6px 16px rgba(45, 38, 28, 0.05);

  --container: 1200px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--c-text);
  background: var(--c-ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: -0.01em;
  word-break: keep-all;
}

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

::selection { background: var(--c-beige-soft); color: var(--c-charcoal); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: all .22s ease;
  cursor: pointer;
}
.btn-lg { padding: 16px 28px; font-size: 14.5px; }
.btn-primary {
  background: var(--c-charcoal);
  color: var(--c-ivory);
}
.btn-primary:hover {
  background: var(--c-charcoal-2);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--c-charcoal);
  border-color: var(--c-charcoal);
}
.btn-outline:hover {
  background: var(--c-charcoal);
  color: var(--c-ivory);
}
.btn-ghost {
  background: var(--c-ivory);
  color: var(--c-charcoal);
  border: 1px solid var(--c-line);
}
.btn-ghost:hover { border-color: var(--c-beige); color: var(--c-beige-deep); }
.btn-naver {
  background: var(--c-naver);
  color: #fff;
}
.btn-naver:hover { background: #02b551; }
.btn-kakao {
  background: var(--c-kakao);
  color: var(--c-kakao-text);
}
.btn-kakao:hover { background: #F2D900; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(251, 248, 243, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: all .25s ease;
}
.site-header.scrolled {
  background: rgba(251, 248, 243, 0.96);
  border-bottom-color: var(--c-line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.brand-logo {
  height: 40px;
  width: auto;
  display: block;
  user-select: none;
}
.brand-logo-footer {
  height: 44px;
  opacity: 0.96;
}
.brand-text {
  display: flex; flex-direction: column; line-height: 1.1;
}
.brand-text .ko {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--c-charcoal);
  letter-spacing: -0.02em;
}
.brand-text .ko .light { font-weight: 400; color: var(--c-stone); margin-left: 1px; }
.brand-text .en {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: var(--c-text-3);
  font-weight: 600;
  margin-top: 4px;
}
.nav-desktop {
  display: flex; gap: 36px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--c-text-2);
}
.nav-desktop a {
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav-desktop a:hover { color: var(--c-charcoal); }
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--c-beige-deep);
  transition: all .25s ease;
  transform: translateX(-50%);
}
.nav-desktop a:hover::after { width: 100%; }
.header-cta {
  display: flex; align-items: center; gap: 14px;
}
.header-tel {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-charcoal);
  display: inline-flex; align-items: center; gap: 7px;
  letter-spacing: 0.01em;
}
.menu-toggle {
  display: none;
  background: none; border: none;
  width: 36px; height: 36px;
  position: relative;
  padding: 0;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 8px;
  width: 20px; height: 1.6px;
  background: var(--c-charcoal);
  transition: all .25s ease;
}
.menu-toggle span { top: 50%; transform: translateY(-50%); }
.menu-toggle span::before { top: -6px; left: 0; }
.menu-toggle span::after { top: 6px; left: 0; }
.menu-toggle.open span { background: transparent; }
.menu-toggle.open span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.open span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Mobile nav ---------- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: var(--c-ivory);
  border-bottom: 1px solid var(--c-line);
  padding: 8px 0 24px;
  z-index: 99;
  max-height: calc(100vh - 76px);
  overflow-y: auto;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: all .25s ease;
}
.mobile-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
  font-size: 16px;
  color: var(--c-text-2);
  border-top: 1px solid var(--c-line-soft);
}
.mobile-nav a:first-child { border-top: none; }
.mobile-nav .mobile-cta {
  display: flex; flex-direction: column; gap: 10px;
  padding: 24px 28px 0;
}

/* ---------- Hero ---------- */
.hero {
  padding: 168px 0 112px;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(217,207,185,.35) 0%, transparent 60%),
    linear-gradient(180deg, var(--c-ivory) 0%, var(--c-paper) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 200px; right: -200px;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(182,168,142,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 88px;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--c-beige-deep);
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 18px;
  background: rgba(182, 168, 142, 0.10);
  border-radius: 999px;
  margin-bottom: 32px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--c-leaf);
  border-radius: 50%;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.22;
  color: var(--c-charcoal);
  margin: 0 0 28px;
}
.hero h1 .em {
  font-style: italic;
  font-weight: 500;
  color: var(--c-beige-deep);
}
.hero-sub {
  font-size: 17px;
  color: var(--c-text-2);
  line-height: 1.75;
  margin: 0 0 18px;
  max-width: 540px;
  letter-spacing: -0.005em;
}
.hero-sub-2 { margin-bottom: 22px; font-size: 15.5px; color: var(--c-text-2); }
.hero-note {
  display: inline-block;
  margin: 0 0 28px;
  padding: 12px 18px;
  background: rgba(182, 168, 142, 0.10);
  border-left: 2px solid var(--c-beige);
  border-radius: 4px;
  font-size: 13.5px;
  color: var(--c-stone);
  line-height: 1.65;
  max-width: 540px;
  letter-spacing: -0.005em;
}
.hero-meta {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 36px;
  font-size: 13px;
  color: var(--c-text-3);
}
.hero-meta-item { font-weight: 500; }
.hero-meta-divider {
  width: 1px; height: 12px;
  background: var(--c-line);
}
.hero-cta {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-meta { margin-bottom: 0; }

/* Hero photo card */
.hero-photo-card {
  background: var(--c-ivory);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 18px;
  box-shadow: var(--shadow-lg);
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}
.hero-photo-card::before {
  content: "";
  position: absolute;
  top: -10px; left: -10px;
  width: 60px; height: 60px;
  border-top: 1px solid var(--c-beige);
  border-left: 1px solid var(--c-beige);
  border-top-left-radius: var(--r-lg);
  pointer-events: none;
}
.hero-photo-card::after {
  content: "";
  position: absolute;
  bottom: -10px; right: -10px;
  width: 60px; height: 60px;
  border-bottom: 1px solid var(--c-beige);
  border-right: 1px solid var(--c-beige);
  border-bottom-right-radius: var(--r-lg);
  pointer-events: none;
}
.hero-photo-frame {
  aspect-ratio: 4/5;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-paper-2);
  position: relative;
}
.hero-photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.hero-photo-card .meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 18px 6px 4px;
  gap: 16px;
}
.hero-photo-card .meta .name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--c-charcoal);
}
.hero-photo-card .meta .role {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--c-text-3);
  font-weight: 600;
  margin-top: 4px;
}
.hero-photo-card .meta .seal {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12.5px;
  color: var(--c-beige-deep);
  text-align: right;
  line-height: 1.4;
  max-width: 130px;
}

.hero-emph {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  color: var(--c-beige-deep);
  margin: -10px 0 24px;
  letter-spacing: -0.015em;
  line-height: 1.4;
}

/* ---------- Sections ---------- */
.section {
  padding: 120px 0;
}
.section-tight { padding: 100px 0; }
.bg-white { background: var(--c-ivory); }
.bg-paper { background: var(--c-paper); }

.section-head {
  margin-bottom: 64px;
  max-width: 720px;
}
.section-head.center {
  margin-left: auto; margin-right: auto;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--c-beige-deep);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-left: 28px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 20px; height: 1px;
  background: var(--c-beige);
}
.eyebrow.center {
  padding-left: 0;
}
.eyebrow.center::before {
  display: none;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.28;
  color: var(--c-charcoal);
  margin: 0;
}
.section-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--c-beige-deep);
}
.section-sub {
  margin-top: 20px;
  font-size: 16px;
  color: var(--c-text-2);
  line-height: 1.75;
  max-width: 620px;
}

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.services-grid-6 {
  grid-template-columns: repeat(3, 1fr);
}
.service-disclaimer {
  margin-top: 36px;
  font-size: 13px;
  color: var(--c-text-3);
  text-align: center;
  letter-spacing: -0.005em;
  line-height: 1.65;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- About — career list ---------- */
.career-block {
  margin: 32px 0 12px;
  padding: 24px 26px;
  background: var(--c-ivory);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
}
.career-title {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--c-charcoal);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.career-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.career-list li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: var(--c-text-2);
  line-height: 1.55;
  letter-spacing: -0.005em;
}
.career-list .period {
  flex: 0 0 auto;
  font-family: var(--serif);
  font-size: 13px;
  color: var(--c-beige-deep);
  font-weight: 600;
  min-width: 22px;
}
.career-list .title {
  flex: 1;
  color: var(--c-charcoal);
  font-weight: 500;
}
.career-list .note {
  color: var(--c-text-3);
  font-weight: 400;
  font-size: 13.5px;
}

/* ---------- Form helpers ---------- */
.form-hint {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--c-text-3);
  letter-spacing: -0.005em;
  line-height: 1.55;
}
.inline-link {
  color: var(--c-beige-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.inline-link:hover { color: var(--c-charcoal); }
.form-success-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 22px;
  flex-wrap: wrap;
}
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--c-ivory);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 40px 36px 36px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--c-beige);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover {
  border-color: var(--c-beige);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .num {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-beige-deep);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--c-charcoal);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.service-card .desc {
  font-size: 14.5px;
  color: var(--c-text-2);
  line-height: 1.7;
  margin: 0 0 24px;
  letter-spacing: -0.005em;
}
.service-card .items {
  list-style: none;
  margin: 0 0 28px;
  padding: 20px 0 0;
  border-top: 1px solid var(--c-line-soft);
  flex-grow: 1;
}
.service-card .items li {
  font-size: 13.5px;
  color: var(--c-text-2);
  padding: 7px 0 7px 18px;
  position: relative;
  line-height: 1.55;
}
.service-card .items li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 8px; height: 1px;
  background: var(--c-beige);
}
.service-card .more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-charcoal);
  letter-spacing: -0.005em;
  transition: gap .25s ease, color .25s ease;
}
.service-card:hover .more {
  color: var(--c-beige-deep);
  gap: 10px;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.about-photo-wrap {
  position: relative;
  position: sticky;
  top: 100px;
}
.about-photo {
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-paper-2);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.about-photo-badge {
  position: absolute;
  bottom: -28px; left: -28px;
  right: 60px;
  background: var(--c-ivory);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 16px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-md);
}
.about-photo-badge .name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--c-charcoal);
  letter-spacing: -0.01em;
}
.about-photo-badge .role {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: var(--c-text-3);
  font-weight: 600;
  margin-top: 3px;
}
.about-photo-badge .stamp {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 500;
  color: var(--c-beige-deep);
  letter-spacing: 0.06em;
  text-align: right;
  line-height: 1.45;
  border-left: 1px solid var(--c-line);
  padding-left: 14px;
}

.about-body p {
  font-size: 15.5px;
  color: var(--c-text-2);
  line-height: 1.85;
  margin: 0 0 18px;
  letter-spacing: -0.005em;
}
.about-quote {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  font-style: italic;
  color: var(--c-charcoal);
  line-height: 1.6;
  padding: 26px 0 26px 26px;
  border-left: 2px solid var(--c-beige);
  margin: 32px 0 40px;
  letter-spacing: -0.015em;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--c-line);
}
.value-item .num {
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--c-beige-deep);
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}
.value-item h4 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--c-charcoal);
  margin: 0 0 8px;
  letter-spacing: -0.015em;
}
.value-item p {
  font-size: 13.5px;
  color: var(--c-text-2);
  line-height: 1.7;
  margin: 0;
  letter-spacing: -0.005em;
}

/* ---------- Process ---------- */
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.process-step {
  padding: 44px 32px;
  border-right: 1px solid var(--c-line);
  position: relative;
  transition: background .3s ease;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--c-paper); }
.process-step .num {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-beige-deep);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 16px;
}
.process-step h4 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--c-charcoal);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.process-step p {
  font-size: 13.5px;
  color: var(--c-text-2);
  line-height: 1.7;
  margin: 0;
  letter-spacing: -0.005em;
}

/* ---------- Notices ---------- */
.notice-tabs {
  display: flex; gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.notice-tab {
  border: 1px solid var(--c-line);
  background: transparent;
  color: var(--c-text-2);
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: all .2s ease;
}
.notice-tab:hover {
  border-color: var(--c-beige);
  color: var(--c-charcoal);
}
.notice-tab.active {
  background: var(--c-charcoal);
  color: var(--c-ivory);
  border-color: var(--c-charcoal);
}

.notices-grid {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--c-line);
}
.notice-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 22px 4px;
  border-bottom: 1px solid var(--c-line);
  cursor: pointer;
  transition: padding .25s ease;
}
.notice-row:hover { padding-left: 16px; padding-right: 16px; background: rgba(255,255,255,0.5); }
.notice-row .date {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--c-text-3);
  letter-spacing: 0.02em;
}
.notice-row .body { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.notice-row .tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--c-beige-deep);
  background: var(--c-paper-2);
  padding: 4px 10px;
  border-radius: 4px;
}
.notice-row h4 {
  font-size: 15.5px;
  font-weight: 500;
  color: var(--c-charcoal);
  margin: 0;
  letter-spacing: -0.01em;
}
.notice-row .arrow {
  color: var(--c-text-3);
  transition: all .25s ease;
}
.notice-row:hover .arrow { color: var(--c-beige-deep); transform: translateX(4px); }

.notices-empty {
  text-align: center;
  padding: 80px 20px;
  border-top: 1px solid var(--c-line);
}
.notices-empty h4 {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--c-charcoal);
  margin: 0 0 8px;
}
.notices-empty p {
  font-size: 14px;
  color: var(--c-text-3);
  margin: 0;
}

/* ---------- Contact ---------- */
.contact-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  margin-bottom: 56px;
}
.contact-info-item {
  display: flex; flex-direction: column; gap: 6px;
  text-align: center;
}
.contact-info-item .label {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--c-text-3);
  text-transform: uppercase;
  font-weight: 700;
}
.contact-info-item .val {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--c-charcoal);
  letter-spacing: -0.005em;
}

.contact-card {
  background: var(--c-ivory);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 48px 44px;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

/* Stepper */
.contact-stepper {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 36px;
  font-size: 13px;
  flex-wrap: wrap;
}
.stepper-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-paper-2);
  color: var(--c-text-3);
  font-weight: 600;
  font-size: 13px;
  font-family: var(--serif);
  transition: all .3s ease;
}
.stepper-dot.active {
  background: var(--c-charcoal);
  color: var(--c-ivory);
}
.stepper-dot.done {
  background: var(--c-beige);
  color: var(--c-ivory);
}
.stepper-label {
  font-size: 13px;
  color: var(--c-text-3);
  font-weight: 500;
}
.stepper-label.active {
  color: var(--c-charcoal);
  font-weight: 600;
}
.stepper-line {
  flex: 1;
  height: 1px;
  background: var(--c-line);
  min-width: 30px;
}

/* Form */
.form-step { display: none; }
.form-step.active { display: block; animation: fade .3s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; margin-bottom: 24px; }
.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-charcoal);
  margin-bottom: 12px;
  letter-spacing: -0.005em;
}
.form-field .req { color: var(--c-beige-deep); margin-left: 3px; }
.form-field input,
.form-field textarea {
  font-family: var(--sans);
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  background: var(--c-ivory);
  color: var(--c-charcoal);
  transition: all .2s ease;
  letter-spacing: -0.005em;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--c-beige-deep);
  background: #fff;
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field .err {
  color: #B5462A;
  font-size: 12px;
  margin-top: 6px;
  font-weight: 500;
}

.chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip label {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--c-line);
  background: var(--c-ivory);
  color: var(--c-text-2);
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s ease;
  letter-spacing: -0.005em;
}
.chip label:hover { border-color: var(--c-beige); }
.chip input:checked + label {
  background: var(--c-charcoal);
  color: var(--c-ivory);
  border-color: var(--c-charcoal);
}

.checkbox {
  display: flex; gap: 12px;
  font-size: 12.5px;
  color: var(--c-text-2);
  line-height: 1.7;
  margin-bottom: 28px;
  cursor: pointer;
  letter-spacing: -0.005em;
}
.checkbox input {
  margin-top: 3px;
  accent-color: var(--c-charcoal);
  flex-shrink: 0;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.form-back {
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text-2);
  letter-spacing: -0.005em;
  padding: 10px 0;
  transition: color .2s ease;
}
.form-back:hover { color: var(--c-charcoal); }

.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success .ok-mark {
  width: 68px; height: 68px;
  margin: 0 auto 24px;
  background: var(--c-beige);
  color: var(--c-ivory);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.form-success h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--c-charcoal);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.form-success p {
  font-size: 14.5px;
  color: var(--c-text-2);
  line-height: 1.7;
  margin: 0;
}

.quick-contact {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.quick-contact .label {
  font-size: 13px;
  color: var(--c-text-3);
  font-weight: 500;
  margin-right: 8px;
  letter-spacing: -0.005em;
}

/* ---------- Map ---------- */
.map-block {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.map-canvas {
  position: relative;
  background:
    linear-gradient(135deg, #EDE6DA 0%, #E8E0D2 100%);
  border-radius: var(--r-lg);
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--c-line);
}
.map-canvas::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(143, 132, 110, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 132, 110, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: -1px -1px;
}
.map-canvas::after {
  content: "";
  position: absolute;
  top: 30%; left: 0; right: 0;
  height: 3px;
  background: var(--c-beige);
  opacity: 0.4;
}
.map-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -100%);
}
.map-pin-label {
  background: var(--c-charcoal);
  color: var(--c-ivory);
  padding: 8px 16px;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  margin-bottom: 8px;
  font-family: var(--serif);
  letter-spacing: -0.005em;
  position: relative;
}
.map-pin-label::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--c-charcoal);
}
.map-pin-dot {
  width: 18px; height: 18px;
  background: var(--c-beige-deep);
  border: 3px solid var(--c-ivory);
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.map-info {
  background: var(--c-ivory);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.map-info h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--c-charcoal);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.map-info .addr {
  font-size: 14.5px;
  color: var(--c-text-2);
  line-height: 1.7;
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.map-info .transit {
  font-size: 13px;
  color: var(--c-text-3);
  padding: 12px 0;
  border-top: 1px solid var(--c-line-soft);
  border-bottom: 1px solid var(--c-line-soft);
  margin-bottom: 24px;
}
.map-buttons { display: flex; gap: 8px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-charcoal);
  color: rgba(251, 248, 243, 0.7);
  padding: 80px 0 40px;
  font-size: 13.5px;
  letter-spacing: -0.005em;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(251, 248, 243, 0.08);
}
.footer-brand .brand-text .ko { color: #EFEAE2; }
.footer-brand .brand-text .ko .light { color: rgba(239, 234, 226, 0.6); }
.footer-brand .brand-text .en { color: rgba(239, 234, 226, 0.45); }
.footer-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: rgba(239, 234, 226, 0.55);
  margin: 22px 0 28px;
  letter-spacing: 0.01em;
}
.footer-info {
  display: flex; flex-direction: column; gap: 8px;
}
.footer-info-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  font-size: 13px;
  line-height: 1.6;
}
.footer-info-row .key {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(239, 234, 226, 0.4);
  text-transform: uppercase;
  padding-top: 2px;
}
.footer-info-row .val { color: rgba(251, 248, 243, 0.75); }
.footer-col h5 {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(239, 234, 226, 0.5);
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 22px;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  color: rgba(251, 248, 243, 0.7);
  font-size: 13.5px;
  transition: color .2s ease;
}
.footer-col a:hover { color: var(--c-ivory); }

.footer-disclaimer {
  margin-top: 32px;
  padding: 24px 0;
  font-size: 12px;
  color: rgba(239, 234, 226, 0.4);
  line-height: 1.7;
  border-bottom: 1px solid rgba(251, 248, 243, 0.06);
  letter-spacing: -0.005em;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  font-size: 12.5px;
  color: rgba(239, 234, 226, 0.45);
}

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta-bar {
  display: none;
  padding-bottom: env(safe-area-inset-bottom);
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--c-ivory);
  border-top: 1px solid var(--c-line);
  box-shadow: 0 -8px 24px rgba(45, 38, 28, 0.06);
}
.mobile-cta-bar .row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.mobile-cta-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 8px 14px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-right: 1px solid var(--c-line-soft);
}
.mobile-cta-bar a:last-child { border-right: none; }
.mobile-cta-bar .check { color: var(--c-kakao-text); background: var(--c-kakao); }
.mobile-cta-bar .tel { color: var(--c-charcoal); background: var(--c-ivory); }
.mobile-cta-bar .map { color: #fff; background: var(--c-naver); }

/* ---------- Problem ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.problem-card {
  background: var(--c-ivory);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 36px 30px 32px;
  position: relative;
  transition: border-color .25s ease, transform .25s ease;
}
.problem-card:hover { border-color: var(--c-beige); transform: translateY(-2px); }
.problem-card .num {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-beige-deep);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  display: block;
}
.problem-card h4 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--c-charcoal);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  line-height: 1.4;
}
.problem-card p {
  font-size: 14px;
  color: var(--c-text-2);
  line-height: 1.7;
  margin: 0;
  letter-spacing: -0.005em;
}

/* ---------- 5-min process foot ---------- */
.five-min-foot {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.five-min-note {
  font-size: 13.5px;
  color: var(--c-text-3);
  line-height: 1.7;
  margin: 0;
  letter-spacing: -0.005em;
}

/* ---------- Risk Quiz ---------- */
.quiz-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  justify-content: center;
}
.quiz-tab {
  position: relative;
  border: 1px solid var(--c-line);
  background: var(--c-ivory);
  color: var(--c-text-2);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: all .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.quiz-tab:hover {
  border-color: var(--c-beige);
  color: var(--c-charcoal);
}
.quiz-tab.active {
  background: var(--c-charcoal);
  color: var(--c-ivory);
  border-color: var(--c-charcoal);
}
.quiz-tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--c-beige);
  color: var(--c-ivory);
  font-size: 11px;
  font-weight: 700;
  font-family: var(--serif);
}
.quiz-tab.active .quiz-tab-count { background: var(--c-ivory); color: var(--c-charcoal); }

.quiz-card {
  background: var(--c-ivory);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 32px 36px;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}
.quiz-card-head {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--c-line-soft);
  margin-bottom: 8px;
}
.quiz-cat-label {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c-beige-deep);
}
.quiz-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.quiz-list li { border-bottom: 1px solid var(--c-line-soft); }
.quiz-list li:last-child { border-bottom: none; }

.quiz-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 4px;
  cursor: pointer;
  transition: padding .2s ease, background .2s ease;
}
.quiz-item:hover { padding-left: 12px; padding-right: 12px; background: rgba(182, 168, 142, 0.04); }
.quiz-item input { position: absolute; opacity: 0; pointer-events: none; }
.quiz-checkbox {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--c-line);
  border-radius: 5px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: all .2s ease;
  margin-top: 2px;
}
.quiz-item:hover .quiz-checkbox { border-color: var(--c-beige); }
.quiz-item.on .quiz-checkbox {
  background: var(--c-charcoal);
  border-color: var(--c-charcoal);
  color: var(--c-ivory);
}
.quiz-q {
  font-size: 14.5px;
  color: var(--c-text-2);
  line-height: 1.65;
  letter-spacing: -0.005em;
  flex: 1;
}
.quiz-item.on .quiz-q { color: var(--c-charcoal); font-weight: 500; }

.quiz-result {
  max-width: 820px;
  margin: 24px auto 0;
  padding: 28px 32px;
  background: var(--c-ivory);
  border: 1px dashed var(--c-line);
  border-radius: var(--r-lg);
  text-align: center;
  opacity: 0.7;
  transition: all .3s ease;
}
.quiz-result.visible {
  background: var(--c-charcoal);
  border: 1px solid var(--c-charcoal);
  opacity: 1;
}
.quiz-result-hint {
  margin: 0;
  font-size: 13.5px;
  color: var(--c-text-3);
  letter-spacing: -0.005em;
}
.quiz-result-msg {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--c-ivory);
  margin: 0 0 22px;
  line-height: 1.6;
  letter-spacing: -0.015em;
}
.quiz-result-msg strong {
  color: var(--c-beige);
  font-weight: 600;
}
.quiz-result-msg em {
  font-style: italic;
  color: var(--c-beige-soft);
  font-weight: 500;
}
.quiz-result-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.quiz-result.visible .btn-primary {
  background: var(--c-ivory);
  color: var(--c-charcoal);
}
.quiz-result.visible .btn-primary:hover {
  background: #fff;
}
.quiz-result-note {
  font-size: 12px;
  color: rgba(251, 248, 243, 0.5);
  margin: 0;
  line-height: 1.6;
  letter-spacing: -0.005em;
}

/* ---------- Final CTA ---------- */
.final-cta {
  background:
    linear-gradient(180deg, var(--c-charcoal-2) 0%, var(--c-charcoal) 100%);
  color: var(--c-ivory);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(182,168,142,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.final-cta-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.final-cta-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.32;
  color: var(--c-ivory);
  margin: 0 0 22px;
}
.final-cta-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--c-beige);
}
.final-cta-body {
  font-size: 16px;
  color: rgba(251, 248, 243, 0.75);
  line-height: 1.75;
  margin: 0 0 36px;
  letter-spacing: -0.005em;
}
.final-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.btn-primary-light {
  background: var(--c-ivory);
  color: var(--c-charcoal);
}
.btn-primary-light:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn-outline-light {
  background: transparent;
  color: var(--c-ivory);
  border: 1px solid rgba(251, 248, 243, 0.4);
}
.btn-outline-light:hover {
  background: rgba(251, 248, 243, 0.08);
  border-color: var(--c-ivory);
}
.final-cta-disclaimer {
  font-size: 12.5px;
  color: rgba(251, 248, 243, 0.5);
  margin: 0;
  letter-spacing: -0.005em;
}

/* ---------- Form success prep ---------- */
.form-success-prep {
  margin: 24px auto 0;
  max-width: 480px;
  padding: 22px 26px;
  background: var(--c-paper);
  border-radius: var(--r-md);
  text-align: left;
}
.form-success-prep h4 {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-charcoal);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.form-success-prep ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-success-prep li {
  font-size: 13px;
  color: var(--c-text-2);
  line-height: 1.6;
  padding-left: 14px;
  position: relative;
  letter-spacing: -0.005em;
}
.form-success-prep li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 6px; height: 1px;
  background: var(--c-beige);
}

/* ---------- 5분 리스크 체크 위젯 ---------- */
.risk-step { animation: fade .3s ease; }
.risk-step-head { margin-bottom: 24px; }
.risk-step-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--c-charcoal);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.risk-step-desc {
  font-size: 14px;
  color: var(--c-text-2);
  margin: 0;
  letter-spacing: -0.005em;
}
.risk-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.risk-cat-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  border: 1px solid var(--c-line);
  background: var(--c-ivory);
  border-radius: var(--r-md);
  text-align: left;
  cursor: pointer;
  transition: all .2s ease;
  color: var(--c-charcoal);
}
.risk-cat-btn:hover {
  border-color: var(--c-beige-deep);
  background: rgba(182, 168, 142, 0.06);
  transform: translateY(-1px);
}
.risk-cat-label {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.risk-hint {
  font-size: 12.5px;
  color: var(--c-text-3);
  line-height: 1.7;
  margin: 8px 0 0;
  letter-spacing: -0.005em;
}
.risk-cat-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--c-beige-deep);
  background: var(--c-paper-2);
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.risk-cat-tag.light {
  background: rgba(217, 207, 185, 0.18);
  color: var(--c-beige);
}
.risk-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  border-top: 1px solid var(--c-line-soft);
}
.risk-list li { border-bottom: 1px solid var(--c-line-soft); }
.risk-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 4px;
  cursor: pointer;
  transition: padding .2s ease, background .2s ease;
}
.risk-item:hover { padding-left: 12px; padding-right: 12px; background: rgba(182, 168, 142, 0.04); }
.risk-item input { position: absolute; opacity: 0; pointer-events: none; }
.risk-checkbox {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--c-line);
  border-radius: 5px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: all .2s ease;
  margin-top: 1px;
}
.risk-item:hover .risk-checkbox { border-color: var(--c-beige); }
.risk-item.on .risk-checkbox {
  background: var(--c-charcoal);
  border-color: var(--c-charcoal);
  color: var(--c-ivory);
}
.risk-q {
  font-size: 14.5px;
  color: var(--c-text-2);
  line-height: 1.65;
  letter-spacing: -0.005em;
  flex: 1;
}
.risk-item.on .risk-q { color: var(--c-charcoal); font-weight: 500; }
.risk-step-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.risk-step-count {
  font-size: 13.5px;
  color: var(--c-text-2);
  letter-spacing: -0.005em;
}
.risk-step-count strong {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--c-charcoal);
  font-weight: 600;
  margin: 0 2px;
}
.risk-step-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

/* 결과 카드 */
.risk-result-card {
  background: linear-gradient(180deg, var(--c-charcoal-2) 0%, var(--c-charcoal) 100%);
  color: var(--c-ivory);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  text-align: center;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
}
.risk-result-count {
  font-size: 13px;
  color: rgba(251, 248, 243, 0.65);
  margin: 0 0 14px;
  letter-spacing: -0.005em;
}
.risk-result-count strong {
  color: var(--c-beige);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  margin: 0 2px;
}
.risk-result-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: var(--c-ivory);
}
.risk-result-body {
  font-size: 14.5px;
  color: rgba(251, 248, 243, 0.8);
  line-height: 1.7;
  margin: 0 0 20px;
  letter-spacing: -0.005em;
}
.risk-result-disclaimer {
  font-size: 12px;
  color: rgba(251, 248, 243, 0.5);
  line-height: 1.7;
  margin: 0 0 24px;
  padding: 12px 18px;
  border-top: 1px solid rgba(251, 248, 243, 0.1);
  border-bottom: 1px solid rgba(251, 248, 243, 0.1);
  letter-spacing: -0.005em;
}
.risk-result-cta {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.risk-result-examples {
  text-align: left;
  background: rgba(251, 248, 243, 0.06);
  border-radius: var(--r-md);
  padding: 16px 18px;
  margin-bottom: 14px;
}
.risk-examples-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--c-beige-soft);
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.risk-result-examples p {
  font-size: 13px;
  color: rgba(251, 248, 243, 0.78);
  line-height: 1.7;
  margin: 0 0 4px;
  letter-spacing: -0.005em;
}
.risk-result-examples p:last-child { margin-bottom: 0; }
.risk-result-kakao {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(251, 248, 243, 0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.risk-result-kakao:hover { color: var(--c-ivory); }

/* 옵션 — 연락처 남기기 */
.risk-leave-form {
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  background: var(--c-paper);
  margin-top: 8px;
}
.risk-leave-form > summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-charcoal);
  letter-spacing: -0.005em;
}
.risk-leave-form > summary::-webkit-details-marker { display: none; }
.risk-leave-form > summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 22px;
  color: var(--c-beige-deep);
  font-weight: 400;
  margin-left: auto;
}
.risk-leave-form[open] > summary::after { content: "−"; }
.risk-leave-hint {
  font-size: 12.5px;
  color: var(--c-text-3);
  font-weight: 400;
}
.risk-leave-form > .form {
  padding: 0 22px 22px;
  border-top: 1px solid var(--c-line-soft);
  margin-top: 4px;
  padding-top: 22px;
}

/* ---------- 정적 지도 ---------- */
.map-image-wrap {
  position: relative;
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-line);
  background: var(--c-paper-2);
  min-height: 360px;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}
.map-image-wrap:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.map-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}
.map-image-overlay {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-charcoal);
  color: var(--c-ivory);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  box-shadow: var(--shadow-md);
}
.transit-block {
  display: flex;
  flex-direction: column;
  margin: 16px 0 24px;
  border-top: 1px solid var(--c-line-soft);
}
.transit-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-line-soft);
  font-size: 13.5px;
  line-height: 1.65;
  letter-spacing: -0.005em;
}
.transit-row .key {
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--c-text-3);
  text-transform: uppercase;
  padding-top: 3px;
}
.transit-row .val { color: var(--c-text-2); }
.transit-row .val a { color: var(--c-charcoal); font-weight: 600; }

.final-cta-body {
  font-size: 15px;
  color: rgba(251, 248, 243, 0.78);
  line-height: 1.75;
  margin: 0 auto 28px;
  max-width: 540px;
  letter-spacing: -0.005em;
}
/* ---------- final cta checklist ---------- */
.final-cta-checklist {
  list-style: none;
  margin: 0 auto 32px;
  padding: 0;
  max-width: 540px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.final-cta-checklist li {
  font-size: 14.5px;
  color: rgba(251, 248, 243, 0.85);
  line-height: 1.65;
  padding: 10px 18px 10px 38px;
  background: rgba(251, 248, 243, 0.06);
  border-radius: var(--r-sm);
  position: relative;
  letter-spacing: -0.005em;
}
.final-cta-checklist li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 5px;
  border-right: 2px solid var(--c-beige);
  border-bottom: 2px solid var(--c-beige);
  transform-origin: center;
  transform: translateY(-65%) rotate(45deg);
}

/* ---------- Animations ---------- */
.fade-up { will-change: transform, opacity; }
.fade-up.pre-anim {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.fade-up.pre-anim.in {
  opacity: 1;
  transform: none;
}
.fade-up.d1 { transition-delay: 0s; }
.fade-up.d2 { transition-delay: .12s; }
.fade-up.d3 { transition-delay: .24s; }
.fade-up.d4 { transition-delay: .36s; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .services-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-photo-card { max-width: 360px; }
  .about-grid { grid-template-columns: 1fr; gap: 80px; }
  .about-photo-wrap { position: static; max-width: 480px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid-6 { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(1), .process-step:nth-child(2) { border-bottom: 1px solid var(--c-line); }
  .map-block { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .nav-desktop, .header-tel { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav { display: block; }
  .header-cta .btn-primary { display: none; }
  .section { padding: 88px 0; }
  .section-tight { padding: 72px 0; }
  .hero { padding: 132px 0 80px; }
  .container { padding: 0 22px; }
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
  .mobile-cta-bar { display: block; }
  .contact-info { grid-template-columns: 1fr 1fr; gap: 24px; }
  .contact-card { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .values-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-photo-badge { left: 0; right: 0; bottom: -20px; }
  .hero-meta { flex-wrap: wrap; }
}
@media (max-width: 720px) {
  .risk-cat-grid { grid-template-columns: 1fr; }
  .risk-result-card { padding: 28px 22px; }
  .risk-result-title { font-size: 19px; }
  .risk-step-foot { flex-direction: column; align-items: stretch; }
  .risk-step-actions { justify-content: space-between; }
  .map-image, .map-image-wrap { min-height: 260px; }
  .transit-row { grid-template-columns: 70px 1fr; }
}
@media (max-width: 520px) {
  .process-list { grid-template-columns: 1fr; }
  .process-step { border-right: none !important; border-bottom: 1px solid var(--c-line); }
  .process-step:last-child { border-bottom: none; }
  .notice-row { grid-template-columns: 1fr; gap: 8px; }
  .notice-row .date { order: 2; font-size: 12px; }
  .notice-row .arrow { display: none; }
  .hero h1 { font-size: 34px; }
  .section-title { font-size: 26px; }
  .contact-stepper { gap: 8px; }
  .stepper-label { font-size: 12px; }
}


/* ---------- Snapshot (At a glance) ---------- */
.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--c-line);
  border-left: 1px solid var(--c-line);
}
.snapshot-card {
  padding: 32px 30px;
  border-right: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  background: var(--c-ivory);
}
.snapshot-card .num {
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--c-beige-deep);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.snapshot-card h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--c-charcoal);
  margin: 0 0 10px;
  letter-spacing: -0.015em;
}
.snapshot-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text-2);
  margin: 0;
  letter-spacing: -0.005em;
}

/* ---------- FAQ ---------- */
.faq-list {
  margin-top: 48px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid var(--c-line);
}
.faq-item {
  border-bottom: 1px solid var(--c-line);
  background: var(--c-ivory);
}
.faq-item.open { background: #fff; }
.faq-q {
  width: 100%;
  display: grid;
  grid-template-columns: 56px 1fr 32px;
  align-items: center;
  gap: 16px;
  padding: 26px 28px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: var(--c-charcoal);
  transition: background .2s;
}
.faq-q:hover { background: rgba(142, 126, 98, 0.04); }
.faq-q-num {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--c-beige-deep);
  font-weight: 500;
}
.faq-q-text {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.5;
}
.faq-q-icon {
  font-size: 22px;
  color: var(--c-beige-deep);
  text-align: right;
  font-weight: 300;
  line-height: 1;
}
.faq-a {
  display: grid;
  grid-template-columns: 56px 1fr 32px;
  gap: 16px;
  padding: 0 28px 28px;
}
.faq-a-num {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--c-text-3);
  font-weight: 500;
}
.faq-a p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.78;
  color: var(--c-text-2);
  letter-spacing: -0.005em;
}
.faq-foot {
  margin-top: 40px;
  text-align: center;
}
.faq-foot p {
  font-size: 13.5px;
  color: var(--c-text-3);
  margin: 0 0 16px;
}

@media (max-width: 760px) {
  .snapshot-grid { grid-template-columns: 1fr; }
  .faq-q, .faq-a {
    grid-template-columns: 44px 1fr 24px;
    gap: 10px;
    padding-left: 18px;
    padding-right: 18px;
  }
  .faq-q-text { font-size: 14.5px; }
  .faq-a p { font-size: 13.5px; }
}
