/* HoCo Homes — original responsive design system */
:root {
  --navy-950: #06262f;
  --navy-900: #0b3441;
  --navy-800: #124755;
  --teal-700: #087e78;
  --teal-600: #14948c;
  --teal-100: #dff1ed;
  --mint-200: #b8ddd5;
  --cream-100: #fbf8f1;
  --cream-200: #f3ecdf;
  --paper: #ffffff;
  --gold-500: #d6a64a;
  --gold-100: #f7e9bf;
  --coral-500: #d46b5c;
  --ink: #183b45;
  --muted: #586c72;
  --border: #d6e1df;
  --focus: #f1c14f;
  --success: #246b52;
  --danger: #a33b37;
  --shadow-sm: 0 6px 24px rgba(8, 45, 55, 0.08);
  --shadow-md: 0 16px 50px rgba(8, 45, 55, 0.13);
  --shadow-lg: 0 28px 70px rgba(3, 30, 37, 0.22);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --radius-pill: 999px;
  --shell: 1240px;
  --text: clamp(1rem, 0.96rem + 0.16vw, 1.08rem);
  --h1: clamp(2.55rem, 1.75rem + 3.8vw, 5.25rem);
  --h2: clamp(1.95rem, 1.58rem + 1.8vw, 3.1rem);
  --h3: clamp(1.24rem, 1.1rem + 0.5vw, 1.58rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 130px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-100);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
  font-size: var(--text);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.lang-ko { word-break: keep-all; overflow-wrap: anywhere; }
img, svg { display: block; max-width: 100%; }
a { color: var(--teal-700); text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
a:hover { color: var(--navy-900); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
::selection { color: var(--navy-950); background: var(--gold-100); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy-950); line-height: 1.1; letter-spacing: -0.025em; }
h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }
p { margin-bottom: 1.15em; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.shell.narrow { width: min(calc(100% - 40px), 940px); }
.section { padding: clamp(72px, 8vw, 120px) 0; }
.section-tight { padding: clamp(56px, 6vw, 90px) 0; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 12px 18px;
  color: var(--navy-950);
  background: var(--paper);
  border: 2px solid var(--navy-900);
  border-radius: var(--radius-sm);
  transform: translateY(-170%);
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }

svg[aria-hidden="true"] {
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--teal-700);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}
.lang-ko .eyebrow { letter-spacing: 0.07em; }
.eyebrow.light { color: var(--gold-100); }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 21px;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--navy-950); background: var(--gold-500); box-shadow: 0 8px 26px rgba(214, 166, 74, 0.28); }
.button-primary:hover { color: var(--navy-950); background: #e2b75f; box-shadow: 0 11px 30px rgba(214, 166, 74, 0.36); }
.button-secondary { color: var(--navy-900); background: var(--paper); border-color: var(--border); }
.button-secondary:hover { color: var(--navy-950); border-color: var(--teal-700); }
.button-light { color: var(--navy-950); background: var(--paper); }
.button-light:hover { color: var(--navy-950); background: var(--gold-100); }
.button-ghost-light { color: var(--paper); background: transparent; border-color: rgba(255,255,255,0.48); }
.button-ghost-light:hover { color: var(--navy-950); background: var(--paper); border-color: var(--paper); }
.button-small { min-height: 44px; padding: 10px 17px; font-size: 0.88rem; }
.button-block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 248, 241, 0.97);
  border-bottom: 1px solid rgba(11, 52, 65, 0.1);
  box-shadow: 0 8px 24px rgba(11, 52, 65, 0.04);
  backdrop-filter: blur(16px);
}
.topline { color: #dbe9e7; background: var(--navy-950); font-size: 0.78rem; }
.topline-inner { display: flex; min-height: 34px; align-items: center; justify-content: space-between; gap: 20px; }
.topline-inner > span { font-weight: 650; }
.topline-links { display: flex; align-items: center; gap: 20px; }
.topline-links a { display: inline-flex; align-items: center; gap: 7px; color: #e9f3f2; text-decoration: none; }
.topline-links a:hover { color: var(--gold-100); }
.header-main { display: grid; min-height: 84px; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--navy-950); text-decoration: none; }
.brand img { width: 46px; height: 46px; flex: 0 0 auto; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.08; }
.brand-copy strong { font-size: 1.12rem; letter-spacing: -0.02em; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: 0.67rem; font-weight: 750; letter-spacing: 0.08em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: 5px; }
.nav-direct, .nav-group > summary {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  padding: 10px 11px;
  color: var(--navy-900);
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 760;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}
.nav-direct:hover, .nav-direct.is-current, .nav-group.nav-current-group > summary, .nav-group > summary:hover { color: var(--navy-950); background: var(--teal-100); }
.nav-group { position: relative; }
.nav-group > summary { list-style: none; cursor: pointer; }
.nav-group > summary::-webkit-details-marker { display: none; }
.nav-chevron { width: 7px; height: 7px; border-right: 1.7px solid; border-bottom: 1.7px solid; transform: rotate(45deg) translateY(-2px); transition: transform 0.18s ease; }
.nav-group[open] .nav-chevron { transform: rotate(225deg) translate(-1px, -1px); }
.nav-submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 20;
  display: grid;
  width: min(350px, 86vw);
  padding: 10px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transform: translateX(-50%);
}
.nav-sub-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 13px;
  color: var(--ink);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 680;
  text-decoration: none;
}
.nav-sub-link svg { width: 15px; transition: transform 0.18s ease; }
.nav-sub-link:hover, .nav-sub-link.is-current { color: var(--navy-950); background: var(--cream-100); }
.nav-sub-link:hover svg { transform: translateX(3px); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.language-link { display: inline-flex; min-height: 42px; align-items: center; gap: 7px; padding: 8px 10px; color: var(--navy-900); font-size: 0.82rem; font-weight: 780; text-decoration: none; white-space: nowrap; }
.language-link:hover { color: var(--teal-700); }
.nav-toggle { display: none; align-items: center; gap: 9px; padding: 9px 12px; color: var(--navy-900); background: transparent; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 0.86rem; font-weight: 750; }
.nav-toggle-lines { display: grid; gap: 4px; }
.nav-toggle-lines i { display: block; width: 20px; height: 2px; background: currentColor; border-radius: 2px; }

/* Breadcrumbs */
.breadcrumbs { padding-block: 16px; font-size: 0.79rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; padding: 0; margin: 0; list-style: none; }
.breadcrumbs li { display: inline-flex; align-items: center; gap: 9px; color: var(--muted); }
.breadcrumbs li:not(:last-child)::after { content: "/"; color: #9babae; }
.breadcrumbs a { color: var(--teal-700); font-weight: 700; text-decoration: none; }

/* Hero */
.hero { position: relative; overflow: hidden; color: var(--paper); background: var(--navy-950); }
.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 15% 15%, rgba(20,148,140,0.28), transparent 32%), linear-gradient(135deg, rgba(11,52,65,0.15), rgba(6,38,47,0.92));
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: radial-gradient(rgba(255,255,255,0.7) 1.2px, transparent 1.2px);
  background-size: 28px 28px;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
}
.hero-grid { position: relative; display: grid; min-height: 670px; grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr); align-items: center; gap: clamp(48px, 7vw, 100px); padding-block: clamp(70px, 8vw, 120px); }
.hero h1 { max-width: 900px; margin-bottom: 25px; color: var(--paper); font-weight: 800; }
.hero-lead { max-width: 770px; margin-bottom: 30px; color: #dce9e8; font-size: clamp(1.08rem, 0.98rem + 0.48vw, 1.34rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 28px; color: #c7d9d7; font-size: 0.82rem; font-weight: 700; }
.hero-meta span { display: inline-flex; align-items: center; gap: 7px; }
.hero-art { position: relative; margin: 0; }
.hero-art::before { position: absolute; inset: 8% -4% -7% 8%; z-index: -1; content: ""; background: var(--teal-600); border-radius: 42px; transform: rotate(4deg); opacity: 0.42; }
.hero-art-frame { overflow: hidden; background: var(--cream-100); border: 1px solid rgba(255,255,255,0.25); border-radius: 34px; box-shadow: var(--shadow-lg); transform: rotate(-1.2deg); }
.hero-art img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; }
.hero-art figcaption { margin-top: 12px; color: #b7ccca; font-size: 0.7rem; text-align: right; }

/* Stats */
.stats-band { position: relative; z-index: 5; padding: 30px 0 38px; color: var(--paper); background: var(--navy-900); }
.section-kicker { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; color: #cadcda; font-size: 0.78rem; font-weight: 750; letter-spacing: 0.06em; text-transform: uppercase; }
.section-kicker span { width: 45px; height: 3px; background: var(--gold-500); border-radius: 3px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.stat-card { min-height: 120px; padding: 22px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.13); border-radius: var(--radius-md); }
.stat-card strong { display: block; margin-bottom: 5px; color: var(--gold-100); font-size: clamp(1.62rem, 1.35rem + 1.2vw, 2.5rem); line-height: 1.05; }
.stat-card span { color: #d9e6e4; font-size: 0.82rem; font-weight: 650; }

/* Section headings and cards */
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 36px; }
.section-heading h2 { max-width: 800px; margin-bottom: 0; }
.section-heading.compact { margin-bottom: 28px; }
.section-heading.centered { justify-content: center; text-align: center; }
.highlight-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.highlight-card { position: relative; min-height: 250px; padding: 30px; overflow: hidden; background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.highlight-card::after { position: absolute; right: -20px; bottom: -35px; width: 120px; height: 120px; content: ""; background: var(--teal-100); border-radius: 50%; opacity: 0.75; }
.highlight-number { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; margin-bottom: 26px; color: var(--paper); background: var(--teal-700); border-radius: 50%; font-size: 0.75rem; font-weight: 800; }
.highlight-card:nth-child(2) .highlight-number { color: var(--navy-950); background: var(--gold-500); }
.highlight-card:nth-child(3) .highlight-number { background: var(--coral-500); }
.highlight-card h2 { position: relative; z-index: 1; margin-bottom: 13px; font-size: 1.35rem; }
.highlight-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: 0.94rem; }

/* Main article */
.article-wrap { background: var(--paper); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.article-grid { display: grid; grid-template-columns: minmax(0, 1fr) 390px; align-items: start; gap: clamp(45px, 7vw, 90px); }
.article-content { min-width: 0; }
.article-intro { margin-bottom: 42px; }
.article-intro > h2 { max-width: 760px; margin-bottom: 28px; }
.toc { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; padding: 20px; background: var(--cream-100); border: 1px solid var(--border); border-radius: var(--radius-md); }
.toc > strong { grid-column: 1 / -1; margin-bottom: 5px; color: var(--navy-950); font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; }
.toc a { display: flex; min-height: 48px; align-items: center; gap: 10px; padding: 8px 10px; color: var(--ink); border-radius: 9px; font-size: 0.86rem; font-weight: 650; line-height: 1.35; text-decoration: none; }
.toc a:hover { color: var(--navy-950); background: var(--paper); }
.toc a > span { display: inline-flex; width: 30px; height: 30px; align-items: center; justify-content: center; flex: 0 0 auto; color: var(--teal-700); background: var(--teal-100); border-radius: 50%; font-size: 0.67rem; font-weight: 800; }
.article-section { display: grid; grid-template-columns: 54px minmax(0, 1fr); gap: 22px; padding: 42px 0; border-top: 1px solid var(--border); }
.article-section:first-of-type { border-top: 0; }
.article-section-index { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; color: var(--navy-950); background: var(--gold-100); border-radius: 50%; font-size: 0.72rem; font-weight: 850; }
.article-section h2 { margin: 3px 0 22px; font-size: clamp(1.62rem, 1.4rem + 0.8vw, 2.2rem); }
.article-section p { color: #38565e; }
.check-list { display: grid; gap: 10px; padding: 18px 22px; margin: 24px 0 0; background: var(--teal-100); border-left: 4px solid var(--teal-700); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--navy-900); font-size: 0.91rem; font-weight: 650; }
.check-list svg { width: 20px; height: 20px; margin-top: 3px; color: var(--teal-700); stroke-width: 2.6; }
.share-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 28px; margin-top: 20px; border-top: 1px solid var(--border); }
.share-row span { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 0.82rem; font-weight: 700; }
.share-row button { padding: 8px 14px; color: var(--teal-700); background: transparent; border: 1px solid var(--border); border-radius: var(--radius-pill); font-size: 0.78rem; font-weight: 760; }
.share-row button:hover { color: var(--navy-950); background: var(--teal-100); }

/* Lead form */
.lead-form { position: sticky; top: 145px; padding: 28px; background: var(--cream-100); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.form-heading { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 22px; }
.form-icon { display: inline-flex; width: 46px; height: 46px; align-items: center; justify-content: center; flex: 0 0 auto; color: var(--paper); background: var(--teal-700); border-radius: 50%; }
.form-icon svg { width: 23px; height: 23px; }
.form-heading h2 { margin-bottom: 7px; font-size: 1.42rem; }
.form-heading p { margin: 0; color: var(--muted); font-size: 0.84rem; line-height: 1.45; }
.lead-form form { display: grid; gap: 14px; }
.lead-form label { display: grid; gap: 7px; color: var(--navy-900); font-size: 0.8rem; font-weight: 750; }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #bdcdca;
  border-radius: var(--radius-sm);
  outline: none;
}
.lead-form textarea { min-height: 118px; resize: vertical; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--teal-700); box-shadow: 0 0 0 3px rgba(8,126,120,0.14); }
.form-row { display: grid; gap: 12px; }
.form-row.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-required { margin: -4px 0 0; color: var(--muted); font-size: 0.71rem; }
.consent { display: grid !important; grid-template-columns: 20px 1fr; align-items: start; gap: 10px !important; color: var(--muted) !important; font-size: 0.73rem !important; font-weight: 550 !important; line-height: 1.45; }
.consent input { width: 18px; min-height: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--teal-700); }
.privacy-warning { display: flex; align-items: flex-start; gap: 8px; padding: 10px 11px; margin: 0; color: #6d5a25; background: var(--gold-100); border-radius: 9px; font-size: 0.69rem; line-height: 1.45; }
.privacy-warning svg { width: 17px; height: 17px; margin-top: 1px; flex: 0 0 auto; }
.privacy-warning a { color: #62501e; font-weight: 780; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { padding: 10px 12px; margin-bottom: 12px; color: #fff; background: var(--danger); border-radius: 9px; font-size: 0.78rem; font-weight: 700; }
.full-form { position: relative; top: auto; }

/* FAQ */
.faq-section { background: var(--cream-200); }
.faq-list { display: grid; gap: 12px; }
.faq-item { overflow: hidden; background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: 0 5px 18px rgba(11,52,65,0.04); }
.faq-item summary { display: grid; grid-template-columns: 42px minmax(0, 1fr) 24px; align-items: center; gap: 15px; padding: 20px 23px; list-style: none; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary > span { display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center; color: var(--teal-700); background: var(--teal-100); border-radius: 50%; font-size: 0.68rem; font-weight: 850; }
.faq-item summary strong { color: var(--navy-950); font-size: 1rem; line-height: 1.4; }
.faq-item summary i { position: relative; width: 20px; height: 20px; }
.faq-item summary i::before, .faq-item summary i::after { position: absolute; top: 9px; left: 2px; width: 16px; height: 2px; content: ""; background: var(--teal-700); border-radius: 2px; transition: transform 0.2s ease; }
.faq-item summary i::after { transform: rotate(90deg); }
.faq-item[open] summary i::after { transform: rotate(0); }
.faq-answer { padding: 0 23px 21px 80px; }
.faq-answer p { margin: 0; color: var(--muted); }

/* Related and sources */
.related-section { background: var(--paper); }
.related-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.related-card { display: flex; min-height: 285px; flex-direction: column; padding: 25px; color: var(--ink); background: var(--cream-100); border: 1px solid var(--border); border-radius: var(--radius-md); text-decoration: none; transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
.related-card:hover { color: var(--ink); border-color: var(--mint-200); box-shadow: var(--shadow-md); transform: translateY(-5px); }
.related-group { margin-bottom: 23px; color: var(--teal-700); font-size: 0.68rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.related-card h3 { margin-bottom: 11px; font-size: 1.23rem; }
.related-card p { display: -webkit-box; margin-bottom: 24px; overflow: hidden; color: var(--muted); font-size: 0.82rem; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 4; }
.card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; color: var(--teal-700); font-size: 0.79rem; font-weight: 800; }
.card-link svg { width: 16px; transition: transform 0.18s ease; }
.related-card:hover .card-link svg { transform: translateX(4px); }
.sources-section { padding: 0 0 clamp(74px, 8vw, 120px); background: var(--paper); }
.sources-box { padding: 28px; background: #eff6f4; border: 1px solid var(--border); border-radius: var(--radius-md); }
.sources-heading { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 18px; }
.sources-heading > svg { width: 26px; height: 26px; flex: 0 0 auto; color: var(--teal-700); }
.sources-heading h2 { margin-bottom: 6px; font-size: 1.2rem; }
.sources-heading p { margin: 0; color: var(--muted); font-size: 0.78rem; }
.sources-box ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 20px; padding: 0; margin: 0; list-style: none; }
.sources-box a { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; padding: 8px 0; color: var(--navy-900); border-bottom: 1px solid rgba(11,52,65,0.1); font-size: 0.78rem; font-weight: 700; text-decoration: none; }
.sources-box a:hover { color: var(--teal-700); }
.sources-box a svg { width: 16px; margin-top: 3px; flex: 0 0 auto; }

/* Footer */
.site-footer { color: #dbe7e6; background: var(--navy-950); }
.footer-cta { background: var(--teal-700); }
.footer-cta-inner { display: flex; min-height: 280px; align-items: center; justify-content: space-between; gap: 50px; padding-block: 48px; }
.footer-cta h2 { max-width: 700px; margin-bottom: 10px; color: var(--paper); }
.footer-cta p { margin: 0; color: #e2f0ee; }
.footer-cta .eyebrow { color: var(--gold-100); }
.footer-cta-actions { display: flex; flex-direction: column; gap: 10px; flex: 0 0 auto; }
.footer-main { display: grid; grid-template-columns: 1.8fr repeat(4, 1fr); gap: 45px; padding-block: 68px 48px; }
.brand-footer { color: var(--paper); }
.brand-footer img { width: 52px; height: 52px; }
.brand-footer .brand-copy strong { color: var(--paper); }
.brand-footer .brand-copy small { color: #bcd0ce; }
.footer-brand > p { max-width: 340px; margin: 20px 0 0; color: #bcd0ce; font-size: 0.85rem; }
.fair-housing { display: flex; align-items: flex-start; gap: 9px; }
.fair-housing svg { width: 20px; margin-top: 3px; flex: 0 0 auto; color: var(--gold-500); }
.footer-column h3 { margin: 5px 0 18px; color: var(--paper); font-size: 0.84rem; letter-spacing: 0.06em; text-transform: uppercase; }
.footer-column ul { display: grid; gap: 10px; padding: 0; margin: 0; list-style: none; }
.footer-column a { color: #c6d8d6; font-size: 0.82rem; text-decoration: none; }
.footer-column a:hover { color: var(--gold-100); }
.footer-contact li { color: #c6d8d6; font-size: 0.82rem; overflow-wrap: anywhere; }
.footer-contact strong { color: var(--paper); }
.prelaunch-notice { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 20px; color: #fbecc4; background: rgba(214,166,74,0.12); border: 1px solid rgba(214,166,74,0.38); border-radius: var(--radius-sm); font-size: 0.7rem; line-height: 1.45; }
.prelaunch-notice code { padding: 5px 8px; color: var(--navy-950); background: var(--gold-100); border-radius: 5px; font-size: 0.64rem; white-space: nowrap; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 25px 90px; border-top: 1px solid rgba(255,255,255,0.11); }
.footer-bottom p { margin: 0; color: #9eb7b4; font-size: 0.7rem; }
.mobile-contact-bar { display: none; }

/* Utility pages */
.utility-page { min-height: 100vh; background: linear-gradient(145deg, var(--cream-100), var(--teal-100)); }
.utility-main { display: grid; min-height: 70vh; place-items: center; padding: 80px 0; }
.utility-card { max-width: 820px; padding: clamp(38px, 7vw, 80px); text-align: center; background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.utility-card h1 { margin-bottom: 20px; font-size: clamp(2.3rem, 1.6rem + 3vw, 4.4rem); }
.utility-card > p { max-width: 650px; margin-inline: auto; color: var(--muted); }
.utility-card .hero-actions { justify-content: center; margin-top: 28px; }
.utility-icon { display: inline-flex; width: 84px; height: 84px; align-items: center; justify-content: center; margin-bottom: 25px; color: var(--paper); background: var(--teal-700); border-radius: 50%; }
.utility-icon svg { width: 42px; height: 42px; stroke-width: 2.5; }
.utility-code { color: var(--gold-500); font-size: clamp(4rem, 14vw, 9rem); font-weight: 900; line-height: 0.9; }
.utility-note { margin-top: 25px !important; font-size: 0.8rem; }

@media (min-width: 1081px) {
  .nav-group:hover > .nav-submenu { display: grid; }
  .nav-group:not([open]) > .nav-submenu { display: none; }
}

@media (max-width: 1180px) {
  .header-main { gap: 18px; }
  .brand-copy small { display: none; }
  .nav-direct, .nav-group > summary { padding-inline: 8px; font-size: 0.78rem; }
  .header-actions .button span { display: none; }
  .header-actions .button { width: 44px; padding: 0; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(370px, .8fr); gap: 48px; }
  .footer-main { grid-template-columns: 1.6fr repeat(2, 1fr); }
  .footer-column:nth-of-type(4), .footer-column:nth-of-type(5) { margin-top: -12px; }
}

@media (max-width: 980px) {
  html { scroll-padding-top: 95px; }
  .topline { display: none; }
  .header-main { min-height: 74px; grid-template-columns: auto auto 1fr; }
  .nav-toggle { display: inline-flex; justify-self: end; }
  .site-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    max-height: calc(100vh - 95px);
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 14px;
    overflow-y: auto;
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow-md);
  }
  .site-nav.is-open { display: flex; }
  .nav-direct, .nav-group > summary { width: 100%; justify-content: space-between; padding: 11px 13px; font-size: 0.9rem; }
  .nav-group { width: 100%; }
  .nav-submenu { position: static; width: 100%; padding: 5px 7px 9px; border: 0; box-shadow: none; transform: none; }
  .header-actions { justify-self: end; }
  .header-actions .button { display: none; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; padding-block: 70px; }
  .hero-copy { max-width: 850px; }
  .hero-art { width: min(100%, 720px); }
  .hero-art::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .highlight-grid { grid-template-columns: 1fr; }
  .highlight-card { min-height: 0; }
  .article-grid { grid-template-columns: 1fr; }
  .lead-form { position: relative; top: auto; max-width: 700px; }
  .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-cta-actions { flex-direction: row; flex-wrap: wrap; }
  .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand > p { max-width: 620px; }
}

@media (max-width: 680px) {
  .shell, .shell.narrow { width: min(calc(100% - 28px), var(--shell)); }
  .header-main { min-height: 68px; grid-template-columns: auto 1fr auto; gap: 10px; }
  .brand img { width: 40px; height: 40px; }
  .brand-copy strong { font-size: 1rem; }
  .nav-toggle { grid-column: 3; grid-row: 1; }
  .header-actions { grid-column: 2; grid-row: 1; }
  .language-link { padding: 7px; font-size: 0.75rem; }
  .site-nav { right: 10px; left: 10px; }
  .breadcrumbs { display: none; }
  .hero-grid { gap: 40px; padding-block: 58px; }
  .hero h1 { font-size: clamp(2.45rem, 12vw, 4rem); }
  .hero-lead { font-size: 1.04rem; }
  .hero-actions .button { width: 100%; }
  .hero-meta { display: grid; gap: 8px; }
  .hero-art-frame { border-radius: 21px; }
  .hero-art figcaption { font-size: 0.62rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-card { min-height: 105px; padding: 18px; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .toc { grid-template-columns: 1fr; }
  .article-section { grid-template-columns: 1fr; gap: 12px; padding: 34px 0; }
  .article-section-index { width: 38px; height: 38px; }
  .form-row.two-col { grid-template-columns: 1fr; }
  .lead-form { padding: 22px; border-radius: var(--radius-md); }
  .faq-item summary { grid-template-columns: 34px minmax(0,1fr) 20px; gap: 11px; padding: 17px; }
  .faq-item summary > span { width: 32px; height: 32px; }
  .faq-answer { padding: 0 17px 18px 62px; }
  .related-grid, .sources-box ul { grid-template-columns: 1fr; }
  .related-card { min-height: 245px; }
  .sources-box { padding: 22px; }
  .footer-cta-inner { min-height: 0; padding-block: 50px; }
  .footer-cta-actions { width: 100%; }
  .footer-cta-actions .button { width: 100%; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 35px 25px; padding-bottom: 35px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }
  .prelaunch-notice { align-items: flex-start; flex-direction: column; }
  .prelaunch-notice code { white-space: normal; overflow-wrap: anywhere; }
  .footer-bottom { align-items: flex-start; flex-direction: column; padding-bottom: 96px; }
  .mobile-contact-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    display: grid;
    grid-template-columns: 1fr 1.35fr 1fr;
    min-height: 66px;
    padding-bottom: env(safe-area-inset-bottom);
    background: var(--paper);
    border-top: 1px solid var(--border);
    box-shadow: 0 -12px 30px rgba(8,45,55,0.13);
  }
  .mobile-contact-bar a { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 3px; color: var(--navy-900); font-size: 0.69rem; font-weight: 800; text-decoration: none; }
  .mobile-contact-bar svg { width: 20px; height: 20px; }
  .mobile-contact-bar .mobile-primary { color: var(--navy-950); background: var(--gold-500); }
  .utility-main { padding: 40px 0; }
  .utility-card { padding: 36px 22px; }
}

@media (max-width: 430px) {
  .brand-copy { display: none; }
  .header-actions { justify-self: end; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-card { min-height: 90px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-column, .footer-contact { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}

@media print {
  .site-header, .hero-actions, .lead-form, .share-row, .footer-cta, .mobile-contact-bar, .prelaunch-notice { display: none !important; }
  body { color: #000; background: #fff; font-size: 11pt; }
  .hero { color: #000; background: #fff; }
  .hero::before, .hero-pattern, .hero-art { display: none; }
  .hero-grid { min-height: 0; grid-template-columns: 1fr; padding: 20px 0; }
  .hero h1, h1, h2, h3 { color: #000; }
  .hero-lead, .hero-meta { color: #222; }
  .article-grid { grid-template-columns: 1fr; }
  .section { padding: 25px 0; }
  a { color: #000; text-decoration: underline; }
}
