:root {
  --bg: #f4efe6;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --surface-dark: #132238;
  --line: rgba(19, 34, 56, 0.12);
  --line-strong: rgba(19, 34, 56, 0.22);
  --text: #172332;
  --muted: #5a6779;
  --accent: #0f63ff;
  --accent-deep: #0b43ad;
  --accent-soft: rgba(15, 99, 255, 0.12);
  --mint: #167d63;
  --sand: #e7d7bc;
  --warning: #d97706;
  --radius: 24px;
  --radius-sm: 16px;
  --shadow: 0 24px 60px rgba(19, 34, 56, 0.10);
  --container: min(1120px, calc(100vw - 32px));
  --measure-reading: 620px;
  --measure-medium: 760px;
  --app-viewport-height: 100dvh;
  --site-header-height: 88px;
  --home-scene-padding-total: clamp(32px, 7.2vh, 64px);
  --home-scene-padding-top: calc(var(--home-scene-padding-total) * 0.3333);
  --home-scene-padding-bottom: calc(var(--home-scene-padding-total) * 0.6667);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 106.25%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "SUIT Variable", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(15, 99, 255, 0.10), transparent 32%),
    radial-gradient(circle at right 18%, rgba(22, 125, 99, 0.10), transparent 26%),
    linear-gradient(180deg, #fbf7ef 0%, #f2ece2 100%);
  line-height: 1.7;
}

html:has(body[data-page="home"]),
body[data-page="home"] {
  scroll-snap-type: y mandatory;
  scroll-padding-top: var(--site-header-height);
}

html:has(body[data-page="home"].home-scene-free-scroll),
body[data-page="home"].home-scene-free-scroll {
  scroll-snap-type: none;
}

body[data-page="home"] {
  overscroll-behavior-y: contain;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(19, 34, 56, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 34, 56, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 78%);
  pointer-events: none;
  z-index: -1;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--surface-dark);
  color: #fff;
  z-index: 100;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 247, 239, 0.82);
  border-bottom: 1px solid rgba(19, 34, 56, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(15, 99, 255, 0.95), rgba(22, 125, 99, 0.88));
  color: #fff;
  box-shadow: 0 12px 24px rgba(15, 99, 255, 0.22);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.main-nav a,
.nav-dropdown-trigger {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
}

.nav-dropdown-trigger::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 0.15s ease;
}

.nav-dropdown-trigger[aria-expanded="true"]::after {
  transform: rotate(-135deg);
  margin-top: 2px;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  padding: 10px;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 32px rgba(19, 34, 56, 0.12);
  z-index: 30;
}

.nav-dropdown-menu.is-open {
  display: flex;
  flex-direction: column;
}

.nav-dropdown-menu a {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.92rem;
  white-space: nowrap;
  transition: background 0.12s ease;
}

.nav-dropdown-menu a:hover {
  background: var(--accent-soft);
}

.main-nav .button {
  color: #fff;
}

.main-nav .button.button-secondary {
  color: var(--text);
}

.main-nav a[aria-current="page"] {
  color: var(--text);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font: inherit;
  cursor: pointer;
}

.nav-toggle-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
}

.nav-toggle-icon span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(15, 99, 255, 0.18);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  border-color: var(--line);
  box-shadow: none;
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
}

main {
  padding-bottom: 96px;
}

.hero,
.page-hero {
  padding: 64px 0 40px;
}

body[data-page="home"] .hero,
body[data-page="home"] main > .section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

body[data-page="home"].home-scene-free-scroll .hero,
body[data-page="home"].home-scene-free-scroll main > .section {
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}

body[data-page="home"] .hero {
  min-height: calc(var(--app-viewport-height) - var(--site-header-height));
  padding: clamp(10px, 1.9vh, 20px) 0 clamp(24px, 4.8vh, 46px);
  display: flex;
  align-items: center;
}

body[data-page="home"] main > .section {
  min-height: calc(var(--app-viewport-height) - var(--site-header-height));
  display: flex;
  align-items: center;
  padding: var(--home-scene-padding-top) 0 var(--home-scene-padding-bottom);
}

body[data-page="home"] main > .section > .container,
body[data-page="home"] .hero > .container {
  width: var(--container);
}

.hero-grid,
.hero-scene-layout,
.hero-principles-layout,
.article-layout,
.profile-layout,
.contact-layout,
.footer-grid {
  display: grid;
  gap: 32px;
}

.hero-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
}

.hero-scene-layout,
.hero-principles-layout {
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  gap: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--accent-deep);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.03em;
  line-height: 1.18;
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: normal;
}

h1 {
  font-size: clamp(1.82rem, 2.95vw, 2.72rem);
  line-height: 1.14;
}

h2 {
  font-size: clamp(1.34rem, 1.95vw, 1.82rem);
  line-height: 1.22;
}

h3 {
  font-size: clamp(1.04rem, 1.05vw, 1.18rem);
  line-height: 1.3;
}

p {
  margin: 0;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: pretty;
}

.lead {
  margin-top: 18px;
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(0.98rem, 0.95vw, 1.04rem);
  line-height: 1.78;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: pretty;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.profile-actions {
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}

.profile-action-link {
  font-weight: 800;
  text-decoration: none;
}

.card,
.summary-card,
.stat-card,
.content-card,
.faq-item,
.contact-card,
.quote-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-panel,
.hero-card,
.section,
.cta-panel,
.contact-form,
.sidebar-card,
.footer-block {
  position: relative;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  min-height: 526px;
  padding: 34px 34px 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.58));
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.hero h1 {
  max-width: none;
  font-size: clamp(1.54rem, 1.76vw, 1.98rem);
  line-height: 1.18;
}

.hero .lead {
  max-width: 50ch;
}

.hero-copy-stack,
.profile-text-stack {
  display: grid;
  gap: 12px;
  max-width: 50ch;
}

.hero-copy-stack p,
.profile-text-stack p,
.contact-scene-copy p {
  margin: 0;
  line-height: 1.72;
}

.profile-heading {
  display: grid;
  gap: 8px;
}

.profile-heading h2 {
  margin: 0;
}

.profile-facts {
  display: grid;
  gap: 2px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
  word-break: keep-all;
  overflow-wrap: normal;
}

.page-hero h1 {
  max-width: none;
}

.page-hero .lead {
  max-width: min(100%, var(--measure-reading));
}

.page-hero .lead,
.section-note,
.article-intro,
.cta-panel .lead,
.statement-card .lead,
body[data-page="home"] .contact-scene-copy .lead {
  max-width: none;
  line-height: 1.72;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: pretty;
}

.hero-bullets,
.chip-list,
.bullet-list,
.contact-list,
.link-list,
.meta-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-bullets {
  margin-top: auto;
  padding-top: 24px;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bullet-list li,
.contact-list li {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(15, 99, 255, 0.07);
  border: 1px solid rgba(15, 99, 255, 0.08);
  font-weight: 650;
}

.hero-bullets li {
  min-height: 144px;
  padding: 16px 14px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  display: grid;
  align-content: start;
  gap: 8px;
  text-align: left;
  white-space: normal;
  font-size: clamp(1.02rem, 1.08vw, 1.14rem);
  letter-spacing: -0.02em;
  line-height: 1.24;
  font-weight: 800;
}

.hero-bullets li strong {
  display: block;
  font-size: 1rem;
  line-height: 1.34;
  letter-spacing: 0.005em;
}

.hero-bullets li span {
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.5;
  font-weight: 650;
  letter-spacing: 0;
}

.hero-card {
  display: flex;
  flex-direction: column;
  min-height: 526px;
  padding: 34px 34px 30px;
  overflow: hidden;
}

.hero-card h2 {
  max-width: none;
  margin-top: 8px;
  font-size: clamp(1.42rem, 1.7vw, 1.78rem);
  font-weight: 800;
  line-height: 1.38;
}

.hero-card .lead {
  max-width: 36ch;
  font-size: 0.98rem;
  line-height: 1.8;
}

.hero-card .mini-grid {
  margin-top: auto !important;
}

.hero-card .mini-card {
  padding: 16px 14px;
  border-radius: 22px;
  min-height: 144px;
  display: grid;
  align-content: center;
}

.hero-card .mini-card strong {
  margin-bottom: 4px;
  font-size: 0.98rem;
}

.hero-card .mini-card p {
  font-size: 0.96rem;
  line-height: 1.62;
}

body[data-page="home"] .hero-grid {
  gap: 20px;
}

body[data-page="home"] .hero-scene-layout,
body[data-page="home"] .hero-principles-layout {
  gap: 20px;
}

body[data-page="home"] .hero-panel,
body[data-page="home"] .hero-card {
  min-height: 468px;
  padding: 42px 44px 36px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

body[data-page="home"] .eyebrow {
  margin-bottom: 20px;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

body[data-page="home"] .eyebrow::before {
  width: 42px;
}

body[data-page="home"] .hero-principles-section {
  align-items: center;
}

body[data-page="home"] .hero-principles-card {
  min-height: 468px;
}

body[data-page="home"] .hero h1 {
  max-width: none;
  font-size: clamp(2rem, 2.44vw, 2.42rem);
  line-height: 1.05;
  letter-spacing: -0.028em;
  white-space: nowrap;
  text-wrap: nowrap;
}

body[data-page="home"] .hero-card h2 {
  max-width: none;
  margin-top: 10px;
  font-size: clamp(1.76rem, 2.08vw, 2.04rem);
  line-height: 1.1;
  letter-spacing: -0.024em;
  white-space: nowrap;
  text-wrap: nowrap;
}

body[data-page="home"] .hero .lead,
body[data-page="home"] .hero-card > .lead {
  max-width: min(100%, 74ch);
  margin-top: 16px;
  font-size: 1.02rem;
  line-height: 1.72;
  letter-spacing: 0.01em;
  white-space: normal;
  text-wrap: pretty;
}

body[data-page="home"] .hero-copy-stack {
  max-width: min(100%, 74ch);
  gap: 20px;
}

body[data-page="home"] .hero-copy-stack > p,
body[data-page="home"] .hero-card > p:not(.lead) {
  max-width: min(100%, 74ch);
  font-size: 0.98rem;
  line-height: 1.68;
  letter-spacing: 0.01em;
  white-space: normal;
  text-wrap: pretty;
}

body[data-page="home"] .hero-actions {
  gap: 14px;
  margin-top: 38px;
}

body[data-page="home"] .mini-grid {
  gap: 12px;
}

body[data-page="home"] .hero-bullets {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 28px;
}

body[data-page="home"] .hero-bullets li,
body[data-page="home"] .hero-card .mini-card {
  min-height: 148px;
  padding: 22px 18px;
}

body[data-page="home"] .hero-card .mini-card {
  align-content: start;
  text-align: left;
}

body[data-page="home"] .hero-bullets li {
  place-items: start;
  align-content: start;
  text-align: left;
  white-space: normal;
  font-size: clamp(0.98rem, 1.06vw, 1.06rem);
  line-height: 1.42;
  letter-spacing: 0.01em;
}

body[data-page="home"] .hero-bullets li strong {
  font-size: 1rem;
}

body[data-page="home"] .hero-bullets li span {
  font-size: 0.88rem;
  line-height: 1.48;
}

body[data-page="home"] .hero-card .mini-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px !important;
  padding-top: 0;
}

body[data-page="home"] .hero-principles-card .mini-grid {
  margin-top: 54px !important;
}

body[data-page="home"] .hero-principles-card > p + p {
  margin-top: 8px;
}

body[data-page="home"] .hero-card .mini-card strong {
  margin-bottom: 6px;
  font-size: 1.02rem;
  line-height: 1.34;
  letter-spacing: 0.01em;
}

body[data-page="home"] .hero-card .mini-card p {
  font-size: 0.92rem;
  line-height: 1.56;
  letter-spacing: 0.01em;
  white-space: normal;
  text-wrap: pretty;
}

body[data-page="home"] .section-head h2,
body[data-page="home"] .contact-scene-copy h2 {
  white-space: nowrap;
  text-wrap: nowrap;
  letter-spacing: -0.028em;
}

body[data-page="home"] .section-head h2 {
  font-size: clamp(1.34rem, 1.66vw, 1.7rem);
  line-height: 1.18;
}

body[data-page="home"] .contact-scene-copy h2 {
  font-size: clamp(1.28rem, 1.58vw, 1.56rem);
  line-height: 1.2;
}

.tag,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 99, 255, 0.12);
  background: rgba(15, 99, 255, 0.08);
  color: var(--accent-deep);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.mini-grid,
.grid-two,
.grid-three,
.grid-four,
.service-grid,
.guide-grid,
.faq-grid,
.contact-grid,
.check-grid {
  display: grid;
  gap: 20px;
}

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

.grid-three,
.guide-grid,
.faq-grid,
.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.mini-card,
.service-card,
.guide-card,
.step-card,
.contact-card,
.summary-card,
.quote-card,
.check-card {
  padding: 22px;
  display: grid;
  gap: 10px;
}

.mini-card strong,
.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.summary-card h3,
.guide-card h3,
.service-card h3,
.check-card h3,
.step-list h3,
.sidebar-card h2,
.faq-item summary {
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: pretty;
}

.summary-card h3,
.guide-card h3,
.service-card h3,
.check-card h3 {
  max-width: none;
}

.step-list h3 {
  max-width: none;
}

.sidebar-card h2 {
  max-width: none;
  font-size: clamp(1.22rem, 1.45vw, 1.48rem);
}

.faq-item summary {
  font-size: 1rem;
  line-height: 1.5;
}

.mini-card p,
.service-card p,
.guide-card p,
.summary-card p,
.step-card p,
.contact-card p,
.quote-card p,
.check-card p {
  color: var(--muted);
}

.section {
  padding: 24px 0 0;
}

.section + .section {
  margin-top: 22px;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.section-head > div {
  max-width: min(100%, var(--measure-medium));
}

.section-head h2 {
  max-width: none;
}

.section-kicker {
  margin-bottom: 10px;
  color: var(--accent-deep);
  font-weight: 800;
}

.section-note {
  color: var(--muted);
  max-width: min(100%, 76ch);
}

.section-note-inline {
  max-width: none;
  white-space: normal;
  letter-spacing: -0.02em;
  line-height: 1.72;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: pretty;
}

.service-card,
.guide-card,
.contact-card,
.sidebar-card,
.cta-panel,
.summary-card,
.quote-card {
  transition: transform 160ms ease, border-color 160ms ease;
}

.service-card:hover,
.guide-card:hover,
.contact-card:hover,
.sidebar-card:hover,
.summary-card:hover,
.quote-card:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 99, 255, 0.22);
}

.service-card a,
.guide-card a,
.text-link {
  color: var(--accent-deep);
  font-weight: 800;
  text-decoration: none;
}

.service-grid .service-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.service-card h3,
.guide-card h3,
.summary-card h3,
.check-card h3 {
  line-height: 1.28;
}

.statement-card {
  width: min(100%, 860px);
  margin: 0 auto;
  padding: 32px;
}

.statement-card h2 {
  max-width: min(100%, 20ch);
  margin-top: 10px;
}

.article-layout {
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
}

body:not([data-page="home"]) .page-hero {
  padding: 56px 0 28px;
}

body:not([data-page="home"]) .page-hero .container {
  display: grid;
  gap: 14px;
}

body:not([data-page="home"]) .page-hero .breadcrumb {
  margin-bottom: 0;
}

body:not([data-page="home"]) .page-hero h1 {
  max-width: none;
  font-size: clamp(1.7rem, 2.16vw, 2.1rem);
  line-height: 1.18;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

body:not([data-page="home"]) .page-hero .lead {
  margin-top: 0;
  max-width: min(100%, 74ch);
  font-size: 1rem;
  line-height: 1.76;
}

body:not([data-page="home"]) .page-hero .grid-three {
  margin-top: 8px !important;
  gap: 16px;
}

body:not([data-page="home"]) .page-hero .summary-card {
  min-height: 142px;
  padding: 20px;
  gap: 8px;
  align-content: start;
}

body:not([data-page="home"]) .page-hero .meta-strip {
  margin-top: 6px;
}

body:not([data-page="home"]) .section {
  padding: 20px 0 0;
}

body:not([data-page="home"]) .section + .section {
  margin-top: 18px;
}

body:not([data-page="home"]) .article-layout,
body:not([data-page="home"]) .contact-layout {
  gap: 32px;
}

body:not([data-page="home"]) .article-layout {
  grid-template-columns: minmax(0, 1fr) 348px;
}

body:not([data-page="home"]) .article-stack {
  gap: 18px;
}

body:not([data-page="home"]) .content-card,
body:not([data-page="home"]) .sidebar-card,
body:not([data-page="home"]) .cta-panel,
body:not([data-page="home"]) .contact-form {
  padding: 26px;
  border-radius: 26px;
}

body:not([data-page="home"]) .sidebar-card {
  min-height: 332px;
  display: grid;
  align-content: start;
  gap: 18px;
}

body:not([data-page="home"]) .content-card > * + *,
body:not([data-page="home"]) .sidebar-card > * + *,
body:not([data-page="home"]) .cta-panel > * + * {
  margin-top: 16px;
}

body:not([data-page="home"]) .content-card h2,
body:not([data-page="home"]) .cta-panel h2,
body:not([data-page="home"]) .sidebar-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.18rem, 1.34vw, 1.4rem);
  white-space: nowrap;
  text-wrap: nowrap;
}

body:not([data-page="home"]) .content-card h3,
body:not([data-page="home"]) .summary-card h3,
body:not([data-page="home"]) .check-card h3,
body:not([data-page="home"]) .step-list h3,
body:not([data-page="home"]) .contact-card h3 {
  font-size: clamp(0.98rem, 1.02vw, 1.08rem);
  line-height: 1.26;
  white-space: nowrap;
  text-wrap: nowrap;
}

body:not([data-page="home"]) .content-card p,
body:not([data-page="home"]) .sidebar-card p,
body:not([data-page="home"]) .contact-form p,
body:not([data-page="home"]) .notice,
body:not([data-page="home"]) .article-intro {
  line-height: 1.72;
}

body:not([data-page="home"]) .sidebar-card .button {
  min-height: 44px;
}

body:not([data-page="home"]) .sidebar-card .link-list {
  gap: 10px;
  margin-top: auto;
}

body:not([data-page="home"]) .sidebar-card .link-list li {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(19, 34, 56, 0.08);
}

body:not([data-page="home"]) .bullet-list {
  gap: 10px;
}

body:not([data-page="home"]) .bullet-list li {
  padding: 13px 15px;
}

body:not([data-page="home"]) .step-list {
  gap: 12px;
}

body:not([data-page="home"]) .step-list li {
  padding: 16px;
}

body:not([data-page="home"]) .faq-grid {
  grid-template-columns: 1fr;
  gap: 12px;
}

body:not([data-page="home"]) .faq-item summary {
  padding: 18px 20px;
  font-size: 0.98rem;
  line-height: 1.48;
}

body:not([data-page="home"]) .faq-item p {
  padding: 0 20px 18px;
  line-height: 1.68;
}

body:not([data-page="home"]) .check-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

body:not([data-page="home"]) .check-card,
body:not([data-page="home"]) .contact-card,
body:not([data-page="home"]) .summary-card {
  align-content: start;
}

body[data-page="author-kim-minjun"] .page-hero h1 {
  max-width: none;
}

body[data-page="author-kim-minjun"] .profile-layout {
  grid-template-columns: minmax(232px, 292px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

body[data-page="author-kim-minjun"] .author-stack {
  gap: 20px;
}

body[data-page="author-kim-minjun"] .profile-frame {
  border-radius: 26px;
}

body[data-page="contact"] .contact-layout {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
}

body[data-page="contact"] .contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

body[data-page="contact"] .contact-card {
  min-height: 136px;
  padding: 20px;
  gap: 10px;
  align-content: start;
  text-align: left;
}

body[data-page="contact"] .contact-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

body[data-page="contact"] .contact-card h3 {
  margin-bottom: 2px;
}

body[data-page="contact"] .contact-card p:first-of-type {
  font-size: 1.02rem;
  line-height: 1.46;
  color: var(--text);
}

body[data-page="contact"] .contact-card p:first-of-type .text-link {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
}

body[data-page="contact"] .contact-card p:last-of-type {
  line-height: 1.56;
}

body[data-page="home"] .service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

body[data-page="home"] .section {
  padding-top: 12px;
}

body[data-page="home"] .service-grid .service-card:last-child:nth-child(odd) {
  grid-column: auto;
}

body[data-page="home"] .section-head {
  display: grid;
  justify-content: start;
  gap: 14px;
  margin-bottom: 24px;
}

body[data-page="home"] .section-head > div {
  max-width: none;
}

body[data-page="home"] .section-note-inline {
  max-width: none;
  white-space: normal;
}

body[data-page="home"] .section.scene-centered {
  align-items: center;
}

body[data-page="home"] .guide-grid,
body[data-page="home"] .step-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-page="home"] .step-list li {
  min-height: 184px;
}

body[data-page="home"] .profile-layout {
  gap: clamp(20px, 2.8vw, 28px);
  align-items: end;
  grid-template-columns: minmax(232px, 296px) minmax(0, 1fr);
}

body[data-page="home"] .profile-section {
  display: grid;
  width: min(1180px, calc(100vw - 32px));
  margin-inline: auto;
  gap: 0;
  margin-top: 0;
}

body[data-page="home"] .profile-frame {
  height: 100%;
  overflow: visible;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  background: transparent;
}

body[data-page="home"] .profile-frame img {
  width: min(100%, 268px);
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  transform: none;
  mix-blend-mode: normal;
  filter: none;
}

body[data-page="home"] .service-card,
body[data-page="home"] .guide-card,
body[data-page="home"] .check-card,
body[data-page="home"] .faq-item {
  height: 100%;
}

body[data-page="home"] .service-card,
body[data-page="home"] .guide-card,
body[data-page="home"] .faq-summary-grid .mini-card,
body[data-page="home"] .contact-link,
body[data-page="home"] .contact-scene-note {
  align-content: start;
  gap: 12px;
}

body[data-page="home"] .service-card,
body[data-page="home"] .guide-card,
body[data-page="home"] .check-card,
body[data-page="home"] .step-list li {
  padding: 24px;
}

body[data-page="home"] .service-card {
  min-height: 160px;
  padding: 18px;
  gap: 10px;
}

body[data-page="home"] .guide-card {
  min-height: 192px;
}

body[data-page="home"] .check-card {
  min-height: 192px;
}

body[data-page="home"] .profile-copy {
  gap: 14px;
  width: min(100%, 748px);
  justify-self: start;
  justify-items: start;
}

body[data-page="home"] .profile-copy .lead,
body[data-page="home"] .profile-text-stack p {
  margin-top: 0;
  max-width: none;
  line-height: 1.76;
  text-wrap: pretty;
}

body[data-page="home"] .profile-text-stack {
  width: 100%;
  max-width: min(100%, 72ch);
  gap: 10px;
}

body[data-page="home"] .profile-text-stack > p {
  line-height: 1.72;
}

body[data-page="home"] .profile-heading {
  gap: 10px;
}

body[data-page="home"] .profile-heading h2 {
  font-size: clamp(1.56rem, 2.18vw, 2.14rem);
  line-height: 1.1;
}

body[data-page="home"] .profile-facts {
  display: grid;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 0.96rem;
}

body[data-page="home"] .profile-facts li {
  position: relative;
  padding-left: 14px;
}

body[data-page="home"] .profile-facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-deep);
}

body[data-page="home"] .profile-copy .bullet-list {
  gap: 10px;
  width: 100%;
}

body[data-page="home"] .profile-copy .inline-actions {
  width: 100%;
  justify-content: flex-start;
  margin-top: 4px;
}

body[data-page="home"] .profile-actions {
  margin-top: 0;
  justify-content: flex-start;
  align-self: start;
}

body[data-page="home"] .profile-copy .quote-card {
  margin-top: 0;
  padding: 18px;
  width: 100%;
}

body[data-page="home"] .service-card p,
body[data-page="home"] .guide-card p,
body[data-page="home"] .check-card p,
body[data-page="home"] .step-list p {
  font-size: 0.97rem;
  line-height: 1.62;
}

body[data-page="home"] .service-card p {
  line-height: 1.5;
}

body[data-page="home"] .service-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

body[data-page="home"] .service-card a::after {
  content: "→";
}

body[data-page="home"] .statement-card {
  padding: 30px;
}

body[data-page="home"] .service-grid .service-card p {
  white-space: normal;
}

body[data-page="home"] .faq-scene-layout {
  display: grid;
  width: min(100%, 980px);
  margin-inline: auto;
  gap: 30px;
  grid-template-columns: 1fr;
  align-items: start;
}

body[data-page="home"] .faq-scene-copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

body[data-page="home"] .faq-scene-copy .section-head {
  margin-bottom: 0;
}

body[data-page="home"] .faq-scene-copy .section-head h2,
body[data-page="home"] .faq-scene-copy .section-note,
body[data-page="home"] .faq-summary-grid .mini-card strong,
body[data-page="home"] .faq-summary-grid .mini-card p,
body[data-page="home"] .faq-scene-list .faq-item summary,
body[data-page="home"] .faq-scene-list .faq-item p {
  letter-spacing: -0.01em;
}

body[data-page="home"] .faq-summary-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

body[data-page="home"] .faq-summary-grid .mini-card {
  min-height: 118px;
  padding: 18px 18px 16px;
  gap: 8px;
  align-content: start;
}

body[data-page="home"] .faq-scene-list {
  grid-template-columns: 1fr;
  gap: 12px;
}

body[data-page="home"] .faq-scene-list .faq-item {
  height: auto;
}

body[data-page="home"] .faq-scene-list .faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  font-size: 1.04rem;
  line-height: 1.56;
}

body[data-page="home"] .faq-scene-list .faq-item summary::after {
  content: "+";
  flex: none;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--accent-deep);
}

body[data-page="home"] .faq-scene-list .faq-item[open] summary::after {
  content: "-";
}

body[data-page="home"] .faq-scene-list .faq-item p {
  padding: 0 22px 20px;
  max-width: none;
  line-height: 1.72;
}

body[data-page="home"] .contact-scene-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1.16fr);
  align-items: stretch;
}

body[data-page="home"] .contact-scene-copy {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: auto;
  padding: 24px;
}

body[data-page="home"] .contact-scene-copy > * + * {
  margin-top: 0;
}

body[data-page="home"] .contact-scene-meta {
  gap: 12px 14px;
  margin-top: 6px;
}

body[data-page="home"] .contact-scene-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(15, 99, 255, 0.08);
  border: 1px solid rgba(15, 99, 255, 0.1);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}

body[data-page="home"] .contact-scene-actions {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
}

body[data-page="home"] .contact-scene-actions > * {
  height: 100%;
}

body[data-page="home"] .contact-link {
  min-height: 152px;
  padding: 22px;
  align-content: start;
  text-decoration: none;
}

body[data-page="home"] .contact-link h3 {
  font-size: 1.08rem;
  line-height: 1.32;
}

body[data-page="home"] .contact-link p {
  color: var(--muted);
  line-height: 1.62;
}

body[data-page="home"] .contact-scene-note {
  min-height: 152px;
  padding: 22px;
  align-content: start;
}

body[data-page="home"] .contact-scene-note p {
  font-size: 0.92rem;
  line-height: 1.62;
}

body[data-page="home"] .contact-inline {
  display: block;
  color: var(--accent-deep);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

body[data-page="home"] .step-list li > div {
  display: grid;
  gap: 8px;
}

.article-stack {
  display: grid;
  gap: 20px;
}

.content-card,
.sidebar-card,
.cta-panel,
.contact-form {
  padding: 28px;
}

.content-card h2,
.cta-panel h2 {
  margin-bottom: 14px;
}

.content-card h3 {
  margin-bottom: 10px;
}

.content-card > * + *,
.sidebar-card > * + *,
.cta-panel > * + * {
  margin-top: 14px;
}

.article-intro {
  font-size: 1.08rem;
}

.cta-panel h2 {
  max-width: min(100%, var(--measure-medium));
}

.bullet-list li {
  background: rgba(22, 125, 99, 0.08);
  border-color: rgba(22, 125, 99, 0.08);
}

.step-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: step;
}

.step-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.52);
}

.step-list li::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  font-weight: 800;
}

.faq-open-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 40px;
}

.faq-open-item h3 {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--accent-deep);
  margin-bottom: 8px;
  line-height: 1.4;
}

.faq-open-item p {
  color: var(--muted);
  line-height: 1.72;
}

.faq-grid {
  align-items: start;
}

.faq-item {
  padding: 0;
  overflow: hidden;
  scroll-margin-top: calc(var(--site-header-height) + 16px);
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 22px 22px;
  color: var(--muted);
}

.breadcrumb {
  margin-bottom: 24px;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.94rem;
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: rgba(90, 103, 121, 0.7);
}

.breadcrumb a {
  text-decoration: none;
}

.meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.96rem;
}

.sidebar-card {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
}

.sidebar-card .button {
  width: 100%;
}

.profile-layout {
  grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
  align-items: center;
}

.profile-frame {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.profile-frame img {
  width: 100%;
  height: auto;
}

.profile-copy {
  display: grid;
  gap: 16px;
}

.profile-copy .quote-card {
  margin-top: 6px;
}

.author-stack {
  gap: 24px;
}

.author-profile-layout {
  align-items: start;
}

.author-profile-card {
  height: 100%;
}

.author-bullet-list li {
  padding: 12px 14px;
}

.author-detail-grid {
  align-items: start;
}

.author-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.contact-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
}

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

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

label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 148px;
  resize: vertical;
}

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 4px 0 0;
}

.notice {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(217, 119, 6, 0.10);
  color: #7c4700;
}

.site-footer {
  border-top: 1px solid rgba(19, 34, 56, 0.08);
  background: rgba(255, 255, 255, 0.44);
}

.footer-grid {
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1fr;
  padding: 36px 0 24px;
}

.footer-block {
  display: grid;
  gap: 12px;
}

.footer-block a {
  color: var(--muted);
  text-decoration: none;
}

.footer-block .brand + p {
  line-height: 1.9;
}

.footer-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 18px 0 32px;
  color: var(--muted);
  font-size: 0.95rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  .hero-grid,
  .article-layout,
  .contact-layout,
  .faq-grid,
  .faq-open-grid,
  .form-grid.two {
    grid-template-columns: 1fr;
  }

  .hero-bullets,
  .mini-grid,
  .grid-two,
  .grid-three,
  .grid-four,
  .service-grid,
  .guide-grid,
  .contact-grid,
  .check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-layout {
    grid-template-columns: minmax(112px, 132px) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 24px 0 18px;
  }

  .sidebar-card {
    position: static;
  }

  .hero,
  .page-hero {
    padding: 34px 0 18px;
  }

  .hero-panel,
  .hero-card,
  .content-card,
  .sidebar-card,
  .cta-panel,
  .contact-form {
    padding: 22px;
  }

  body:not([data-page="home"]) .page-hero {
    padding: 32px 0 16px;
  }

  body:not([data-page="home"]) .page-hero .container {
    gap: 12px;
  }

  body:not([data-page="home"]) .page-hero h1 {
    max-width: none;
    font-size: clamp(1.48rem, 5vw, 1.82rem);
    line-height: 1.14;
    white-space: normal;
    text-wrap: balance;
  }

  body:not([data-page="home"]) .page-hero .lead {
    font-size: 0.94rem;
    line-height: 1.64;
  }

  body:not([data-page="home"]) .grid-three,
  body:not([data-page="home"]) .contact-grid,
  body:not([data-page="home"]) .check-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body:not([data-page="home"]) .article-layout,
  body:not([data-page="home"]) .contact-layout,
  body[data-page="author-kim-minjun"] .profile-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body:not([data-page="home"]) .article-stack {
    gap: 14px;
  }

  body:not([data-page="home"]) .content-card,
  body:not([data-page="home"]) .sidebar-card,
  body:not([data-page="home"]) .cta-panel,
  body:not([data-page="home"]) .contact-form {
    padding: 20px;
    border-radius: 22px;
  }

  body:not([data-page="home"]) .sidebar-card {
    min-height: auto;
    gap: 14px;
  }

  body:not([data-page="home"]) .step-list li {
    grid-template-columns: 36px 1fr;
    gap: 10px;
    padding: 14px;
  }

  body:not([data-page="home"]) .content-card h2,
  body:not([data-page="home"]) .cta-panel h2,
  body:not([data-page="home"]) .sidebar-card h2,
  body:not([data-page="home"]) .content-card h3,
  body:not([data-page="home"]) .summary-card h3,
  body:not([data-page="home"]) .check-card h3,
  body:not([data-page="home"]) .step-list h3,
  body:not([data-page="home"]) .contact-card h3 {
    white-space: normal;
    text-wrap: balance;
  }

  body:not([data-page="home"]) .faq-item summary {
    padding: 16px 18px;
  }

  body:not([data-page="home"]) .faq-item p {
    padding: 0 18px 18px;
  }

  body[data-page="contact"] .contact-card {
    min-height: auto;
    padding: 18px;
  }

  body[data-page="author-kim-minjun"] .profile-frame {
    max-width: 220px;
  }

  .hero-panel,
  .hero-card {
    min-height: auto;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(1.42rem, 4.8vw, 1.72rem);
    line-height: 1.16;
  }

  .hero-card h2 {
    font-size: clamp(1.18rem, 3.9vw, 1.42rem);
    line-height: 1.3;
  }

  .hero .lead,
  .hero-card .lead,
  .page-hero .lead {
    max-width: none;
    font-size: 0.94rem;
    line-height: 1.66;
  }

  .hero-bullets,
  .mini-grid {
    gap: 14px;
    padding-top: 18px;
  }

  .hero-bullets li,
  .hero-card .mini-card {
    min-height: 112px;
    padding: 14px 12px;
  }

  .hero-bullets li {
    font-size: clamp(0.92rem, 2.8vw, 1rem);
    line-height: 1.18;
  }

  .hero-card .mini-card strong {
    font-size: 0.93rem;
  }

  .hero-card .mini-card p {
    font-size: 0.87rem;
    line-height: 1.48;
  }

  .service-card,
  .guide-card,
  .contact-card,
  .summary-card,
  .quote-card,
  .check-card,
  .step-card {
    padding: 18px;
    gap: 8px;
  }

  .service-grid .service-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .grid-three > :last-child:nth-child(odd),
  .contact-grid > :last-child:nth-child(odd),
  .check-grid > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .service-grid .service-card h3,
  .service-grid .service-card p {
    white-space: normal;
  }

  .service-card p,
  .guide-card p,
  .summary-card p,
  .check-card p,
  .contact-card p {
    font-size: 0.92rem;
    line-height: 1.52;
  }

  .section {
    padding: 16px 0 0;
  }

  .section + .section {
    margin-top: 14px;
  }

  .section-head {
    gap: 10px;
    margin-bottom: 18px;
  }

  .section-kicker {
    margin-bottom: 6px;
    font-size: 0.82rem;
  }

  .section-note {
    max-width: none;
    font-size: 0.92rem;
  }

  .meta-strip {
    gap: 6px 10px;
    margin-top: 14px;
    font-size: 0.9rem;
  }

  .breadcrumb {
    margin-bottom: 16px;
  }

  .step-list {
    gap: 10px;
  }

  .step-list li {
    grid-template-columns: 40px 1fr;
    gap: 10px;
    padding: 14px;
  }

  .step-list li::before {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .faq-item summary {
    padding: 16px 18px;
  }

  .faq-item p {
    padding: 0 18px 18px;
  }

  .profile-frame {
    max-width: 132px;
    border-radius: 22px;
  }

  .profile-copy {
    gap: 12px;
  }

  .tag,
  .badge {
    padding: 6px 10px;
    font-size: 0.82rem;
  }

  .footer-bar {
    padding: 14px 0 24px;
  }

  html:has(body[data-page="home"]),
  body[data-page="home"] {
    scroll-padding-top: 74px;
  }

  body[data-page="home"] main > .section {
    min-height: calc(var(--app-viewport-height) - var(--site-header-height));
    align-items: center;
    padding: var(--home-scene-padding-top) 0 var(--home-scene-padding-bottom);
  }

  body[data-page="home"] .section.scene-centered {
    align-items: center;
  }

  body[data-page="home"] .service-grid,
  body[data-page="home"] .guide-grid,
  body[data-page="home"] .step-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] .service-grid .service-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  body[data-page="home"] .faq-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .step-list li {
    min-height: 120px;
  }

  body[data-page="home"] .service-card,
  body[data-page="home"] .guide-card,
  body[data-page="home"] .check-card {
    min-height: auto;
  }

  body[data-page="home"] .section {
    padding-top: 8px;
  }

  body[data-page="home"] .section-head {
    gap: 8px;
    margin-bottom: 14px;
  }

  body[data-page="home"] .section-note {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  body[data-page="home"] .section-note-inline {
    white-space: normal;
    letter-spacing: normal;
  }

  body[data-page="home"] .hero-panel,
  body[data-page="home"] .hero-card {
    padding: 24px 20px 20px;
  }

  body[data-page="home"] .hero h1 {
    max-width: none;
    font-size: clamp(1.58rem, 5vw, 1.96rem);
    line-height: 1.12;
    white-space: normal;
    text-wrap: balance;
  }

  body[data-page="home"] .hero-card h2 {
    max-width: none;
    font-size: clamp(1.38rem, 4.3vw, 1.68rem);
    line-height: 1.22;
    white-space: normal;
    text-wrap: balance;
  }

  body[data-page="home"] .hero-copy-stack {
    max-width: none;
  }

  body[data-page="home"] .section-head h2,
  body[data-page="home"] .contact-scene-copy h2 {
    white-space: normal;
    text-wrap: balance;
  }

  body[data-page="home"] .hero-actions .button,
  body[data-page="home"] .profile-copy .inline-actions .button {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  body[data-page="home"] .hero-actions {
    margin-top: 28px;
  }

  body[data-page="home"] .hero-bullets,
  body[data-page="home"] .mini-grid,
  body[data-page="home"] .service-grid,
  body[data-page="home"] .guide-grid,
  body[data-page="home"] .check-grid,
  body[data-page="home"] .step-list,
  body[data-page="home"] .contact-action-grid,
  body[data-page="home"] .faq-summary-grid,
  body[data-page="home"] .contact-scene-actions {
    gap: 10px;
  }

  body[data-page="home"] .faq-open-grid {
    gap: 20px;
  }

  body[data-page="home"] .hero-bullets,
  body[data-page="home"] .hero-card .mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] .hero-principles-card .mini-grid {
    margin-top: 24px !important;
  }

  body[data-page="home"] .hero-principles-card > p + p {
    margin-top: 8px;
  }

  body[data-page="home"] .hero-bullets li,
  body[data-page="home"] .hero-card .mini-card {
    min-height: 96px;
    padding: 12px;
  }

  body[data-page="home"] .hero-bullets li {
    place-items: start;
    align-content: start;
    text-align: left;
    white-space: normal;
    font-size: 0.92rem;
    line-height: 1.34;
  }

  body[data-page="home"] .hero-bullets li strong {
    font-size: 0.92rem;
  }

  body[data-page="home"] .hero-bullets li span {
    font-size: 0.8rem;
    line-height: 1.42;
  }

  body[data-page="home"] .hero-card .mini-card p {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  body[data-page="home"] .hero-copy-stack p,
  body[data-page="home"] .hero-card p {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  body[data-page="home"] .service-card,
  body[data-page="home"] .guide-card,
  body[data-page="home"] .check-card,
  body[data-page="home"] .step-list li,
  body[data-page="home"] .contact-scene-copy,
  body[data-page="home"] .contact-link,
  body[data-page="home"] .profile-copy .quote-card {
    padding: 14px;
    border-radius: 20px;
  }

  body[data-page="home"] .service-card h3,
  body[data-page="home"] .guide-card h3,
  body[data-page="home"] .check-card h3,
  body[data-page="home"] .step-list h3,
  body[data-page="home"] .contact-link h3,
  body[data-page="home"] .contact-scene-copy h3 {
    font-size: 0.96rem;
    line-height: 1.24;
  }

  body[data-page="home"] .service-card p,
  body[data-page="home"] .guide-card p,
  body[data-page="home"] .check-card p,
  body[data-page="home"] .step-list p,
  body[data-page="home"] .contact-link p {
    font-size: 0.84rem;
    line-height: 1.4;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  body[data-page="home"] .service-card a,
  body[data-page="home"] .guide-card a {
    font-size: 0.84rem;
  }

  body[data-page="home"] .statement-card {
    padding: 20px;
  }

  body[data-page="home"] .statement-card h2 {
    max-width: none;
  }

  body[data-page="home"] .statement-card .lead {
    font-size: 0.9rem;
    line-height: 1.52;
  }

  body[data-page="home"] .faq-scene-layout,
  body[data-page="home"] .contact-scene-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body[data-page="home"] .faq-scene-copy,
  body[data-page="home"] .faq-scene-list,
  body[data-page="home"] .contact-scene-actions {
    gap: 10px;
  }

  body[data-page="home"] .faq-summary-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .faq-summary-grid .mini-card {
    min-height: auto;
  }

  body[data-page="home"] .faq-scene-list .faq-item summary {
    padding: 14px 16px;
    font-size: 0.92rem;
    line-height: 1.38;
  }

  body[data-page="home"] .faq-scene-list .faq-item p {
    padding: 0 16px 16px;
    font-size: 0.85rem;
    line-height: 1.5;
  }

  body[data-page="home"] .contact-scene-copy {
    gap: 10px;
  }

  body[data-page="home"] .contact-scene-copy .lead {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  body[data-page="home"] .contact-scene-meta {
    gap: 8px;
    margin-top: 0;
  }

  body[data-page="home"] .contact-scene-meta span,
  body[data-page="home"] .profile-copy .bullet-list li {
    min-height: 0;
    padding: 10px 12px;
    font-size: 0.84rem;
    line-height: 1.4;
  }

  body[data-page="home"] .contact-scene-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] .contact-link {
    padding: 14px;
    min-height: 112px;
  }

  body[data-page="home"] .contact-scene-note {
    min-height: 112px;
  }

  body[data-page="home"] .profile-frame {
    height: auto;
    max-width: 112px;
  }

  body[data-page="home"] .profile-frame img {
    height: auto;
    object-fit: cover;
  }

  body[data-page="home"] .profile-section {
    gap: 8px;
    margin-top: 0;
  }

  body[data-page="home"] .profile-layout {
    grid-template-columns: minmax(96px, 112px) minmax(0, 1fr);
    gap: 14px;
  }

  body[data-page="home"] .profile-copy {
    gap: 10px;
    width: 100%;
  }

  body[data-page="home"] .profile-copy .lead,
  body[data-page="home"] .profile-text-stack p {
    font-size: 0.89rem;
    line-height: 1.52;
  }

  body[data-page="home"] .profile-facts {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  body[data-page="home"] .profile-copy .bullet-list {
    gap: 8px;
  }

  body[data-page="home"] .profile-actions {
    gap: 10px;
    margin-top: 2px;
  }

  body[data-page="home"] .profile-action-link {
    font-size: 0.88rem;
  }

  body[data-page="author-kim-minjun"] .author-detail-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .step-list li {
    min-height: 108px;
  }

  body[data-page="home"] .service-card {
    min-height: 128px;
  }

  body[data-page="home"] .guide-card {
    min-height: 146px;
  }
}

@media (max-width: 1260px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: none;
  }

  .hero h1 {
    max-width: none;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav .button {
    width: 100%;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-trigger {
    display: none;
  }

  .nav-dropdown-menu {
    display: flex;
    flex-direction: column;
    position: static;
    transform: none;
    min-width: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: none;
    backdrop-filter: none;
    box-shadow: none;
  }

  .nav-dropdown-menu a {
    padding: 10px 0;
    font-size: inherit;
  }

  .hero,
  .page-hero {
    padding-top: 42px;
  }

  .hero h1,
  .page-hero h1 {
    max-width: none;
  }

  .section-head h2 {
    max-width: none;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
