:root {
  --ink: #163d35;
  --ink-2: #274d45;
  --muted: #68726d;
  --coral: #ef684f;
  --coral-dark: #d9533e;
  --sage: #eef3ef;
  --paper: #f7f3ec;
  --white: #ffffff;
  --line: #d9ded9;
  --line-strong: #bdc9c2;
  --shadow: 0 18px 50px rgba(22, 61, 53, 0.1);
  --max: 1180px;
  --radius: 8px;
  --media-radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

:focus-visible {
  outline: 3px solid rgba(239, 104, 79, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 6px;
}

.skip-link:focus { transform: none; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid rgba(217, 222, 217, 0.85);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 21px;
  font-weight: 850;
  letter-spacing: -0.05em;
}

.brand-mark {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  position: relative;
  border: 2px solid var(--ink);
  border-radius: 7px 7px 10px 7px;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: var(--coral);
  border-radius: 2px;
}

.brand-mark::before { width: 10px; height: 2px; }
.brand-mark::after { width: 2px; height: 10px; }

.desktop-nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 700; }
.desktop-nav a:not(.button) { min-height: 44px; display: inline-flex; align-items: center; }
.desktop-nav a:not(.button):hover { color: var(--coral-dark); }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--coral);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.button:hover { transform: translateY(-2px); background: var(--coral-dark); box-shadow: 0 10px 24px rgba(239, 104, 79, 0.2); }
.button.secondary { background: transparent; color: var(--ink); border-color: var(--line-strong); box-shadow: none; }
.button.secondary:hover { background: var(--sage); border-color: var(--ink); }
.button.dark { background: var(--ink); }
.button.dark:hover { background: #0c2e27; }
.button.small { min-height: 42px; padding-inline: 16px; font-size: 14px; }
.button.full { width: 100%; }
.text-link { min-height: 44px; display: inline-flex; align-items: center; gap: 8px; font-weight: 800; border-bottom: 1px solid var(--ink); }
.text-link::after { content: "→"; transition: transform .18s ease; }
.text-link:hover::after { transform: translateX(4px); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 76px 0 auto;
  z-index: 99;
  padding: 22px 20px 28px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mobile-nav.open { display: grid; gap: 4px; }
.mobile-nav a:not(.button) { padding: 13px 6px; font-weight: 750; border-bottom: 1px solid var(--line); }
.mobile-nav .button { margin-top: 14px; }

.hero { padding: 54px 0 66px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); align-items: start; gap: 58px; }
.hero-copy { padding-top: 54px; }
.hero-copy h1 { max-width: 590px; margin: 0 0 22px; font-size: clamp(44px, 5vw, 70px); line-height: 1.12; letter-spacing: -0.055em; }
.hero-copy p { max-width: 520px; margin: 0 0 30px; color: var(--muted); font-size: 19px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 23px; flex-wrap: wrap; }
.hero-media { position: relative; margin: 0; }
.hero-media img { width: 100%; aspect-ratio: 8 / 5; object-fit: cover; border-radius: var(--media-radius); }
.hero-media::after { content: ""; position: absolute; left: -10px; bottom: 54px; width: 6px; height: 44px; background: var(--coral); border-radius: 4px; }

.rail-section { position: relative; padding: 92px 0; }
.rail-section::before { content: ""; position: absolute; top: 0; bottom: 0; left: max(20px, calc((100% - var(--max)) / 2)); width: 1px; background: var(--line); }
.rail-section::after { content: ""; position: absolute; top: 112px; left: max(17px, calc((100% - var(--max)) / 2 - 3px)); width: 7px; height: 34px; border-radius: 4px; background: var(--coral); }
.rail-content { padding-left: 38px; }
.section-heading { margin: 0 0 14px; font-size: clamp(32px, 3.4vw, 49px); line-height: 1.2; letter-spacing: -0.045em; }
.section-copy { max-width: 650px; margin: 0; color: var(--muted); font-size: 17px; }
.section-top { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 42px; }

.process { padding-top: 10px; border-top: 1px solid var(--line); }
.process-intro { display: grid; grid-template-columns: .9fr 1.6fr; gap: 80px; align-items: center; }
.process-intro h2 { margin: 0; font-size: clamp(28px, 3vw, 43px); line-height: 1.25; letter-spacing: -0.045em; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.step { min-height: 190px; padding: 30px 30px 28px; border-left: 1px solid var(--line); }
.step-number { color: var(--coral); font-size: 13px; font-weight: 850; letter-spacing: .08em; }
.step-icon { width: 50px; height: 50px; display: grid; place-items: center; margin: 22px 0 17px; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--ink); }
.step-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.step h3 { margin: 0 0 6px; font-size: 18px; }
.step p { margin: 0; color: var(--muted); font-size: 14px; }

.finder-band { background: var(--sage); }
.finder-panel { padding: 50px; border: 1px solid #d5e0d8; border-radius: 18px; background: rgba(255,255,255,.45); }
.filter-form { display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 12px; margin-bottom: 28px; }
.field { display: grid; gap: 8px; }
.field label, .field-label { color: var(--ink-2); font-size: 13px; font-weight: 800; }
.field select, .field input, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  color: var(--ink);
  background: var(--white);
}
.field textarea { min-height: 130px; resize: vertical; }
.field small { color: var(--muted); }
.file-summary { min-height: 20px; color: var(--ink-2); font-size: 13px; font-weight: 750; }
.filter-actions { align-self: end; display: flex; gap: 8px; }
.result-meta { display: flex; justify-content: space-between; gap: 20px; padding: 15px 0; border-top: 1px solid var(--line-strong); color: var(--muted); font-size: 14px; }
.result-count { color: var(--ink); font-weight: 850; }
.reset-button { min-height: 44px; padding: 0 6px; border: 0; background: transparent; color: var(--ink); font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }

.mate-list { border-top: 1px solid var(--line-strong); }
.mate-row { display: grid; grid-template-columns: 124px 1.15fr 1.3fr auto; gap: 28px; align-items: center; padding: 24px 0; border-bottom: 1px solid var(--line-strong); }
.mate-photo { width: 124px; aspect-ratio: 1; border-radius: 16px; background: url("images/mates-triptych.png") no-repeat; background-size: 300% 100%; }
.mate-photo.p1 { background-position: 0 center; }
.mate-photo.p2 { background-position: 50% center; }
.mate-photo.p3 { background-position: 100% center; }
.mate-name { display: flex; align-items: baseline; gap: 7px; margin: 0 0 6px; font-size: 20px; }
.mate-name small { color: var(--muted); font-size: 12px; font-weight: 650; }
.mate-location, .mate-intro { margin: 0; color: var(--muted); font-size: 14px; }
.mate-facts { display: grid; grid-template-columns: 90px 1fr; gap: 4px 12px; margin: 0; font-size: 13px; }
.mate-facts dt { color: var(--muted); }
.mate-facts dd { margin: 0; font-weight: 700; }
.mate-row .text-link { white-space: nowrap; font-size: 14px; }
.empty-state { padding: 46px 20px; text-align: center; border-bottom: 1px solid var(--line-strong); }
.empty-state h3 { margin: 0 0 8px; }
.empty-state p { margin: 0 0 20px; color: var(--muted); }

.services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.service-card { min-width: 0; }
.service-image { aspect-ratio: 4 / 3; border-radius: 12px; background-repeat: no-repeat; background-color: var(--paper); overflow: hidden; }
.service-image.guide { background-image: url("images/guides-triptych.png"); background-size: 300% 100%; }
.service-image.duo { background-image: url("images/services-duo.png"); background-size: 200% 100%; }
.service-image.wardrobe { background-position: 0 center; }
.service-image.kitchen { background-position: 50% center; }
.service-image.moving { background-position: 100% center; }
.service-image.kids { background-position: 0 center; }
.service-image.paper { background-position: 100% center; }
.service-card h3 { margin: 16px 0 5px; font-size: 17px; }
.service-card p { margin: 0; color: var(--muted); font-size: 13px; }

.trust-band { background: var(--paper); }
.trust-grid { display: grid; grid-template-columns: .8fr repeat(3, 1fr); gap: 38px; align-items: start; }
.trust-grid > h2 { margin: 0; font-size: 37px; line-height: 1.25; letter-spacing: -.04em; }
.trust-item { padding-left: 22px; border-left: 1px solid #d9cfc1; }
.trust-icon { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 17px; color: var(--ink); }
.trust-icon svg { width: 36px; height: 36px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.trust-item h3 { margin: 0 0 7px; font-size: 18px; }
.trust-item p { margin: 0; color: var(--muted); font-size: 14px; }

.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.guide-card { border-bottom: 1px solid var(--line-strong); padding-bottom: 21px; }
.guide-image { aspect-ratio: 16 / 9; border-radius: 14px; background: url("images/guides-triptych.png") no-repeat; background-size: 300% 100%; }
.guide-image.g1 { background-position: 0 center; }
.guide-image.g2 { background-position: 50% center; }
.guide-image.g3 { background-position: 100% center; }
.guide-card h3 { margin: 18px 0 8px; font-size: 20px; line-height: 1.4; }
.guide-card p { margin: 0 0 16px; color: var(--muted); font-size: 14px; }

.faq-list { border-top: 1px solid var(--line-strong); }
.faq-list details { border-bottom: 1px solid var(--line-strong); }
.faq-list summary { list-style: none; position: relative; padding: 22px 48px 22px 0; font-weight: 800; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 8px; top: 18px; color: var(--coral); font-size: 24px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 800px; margin: 0; padding: 0 40px 22px 0; color: var(--muted); }

.cta-band { padding: 30px 0; background: var(--sage); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-inner h2 { margin: 0 0 5px; font-size: 28px; letter-spacing: -.035em; }
.cta-inner p { margin: 0; color: var(--muted); }

.site-footer { padding: 40px 0 32px; border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 40px; padding-bottom: 34px; }
.footer-top h3 { margin: 0 0 13px; font-size: 14px; }
.footer-top p, .footer-top a { color: var(--muted); font-size: 13px; }
.footer-links { display: grid; gap: 7px; }
.footer-links a { min-height: 40px; display: flex; align-items: center; }
.footer-note { display: flex; justify-content: space-between; gap: 30px; padding-top: 25px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }

.page-hero { padding: 72px 0 58px; border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 760px; margin: 0 0 18px; font-size: clamp(42px, 5vw, 66px); line-height: 1.13; letter-spacing: -.055em; }
.page-hero p { max-width: 700px; margin: 0; color: var(--muted); font-size: 18px; }
.page-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

.mates-page { padding: 60px 0 100px; }
.mates-layout { display: grid; grid-template-columns: 250px 1fr; gap: 56px; }
.filter-sidebar { align-self: start; position: sticky; top: 104px; padding: 24px; background: var(--sage); border-radius: 14px; }
.filter-sidebar h2 { margin: 0 0 18px; font-size: 20px; }
.filter-sidebar .field + .field { margin-top: 16px; }
.filter-sidebar .button { margin-top: 18px; }
.mates-page .mate-row { grid-template-columns: 112px 1fr 1.1fr auto; }
.mates-page .mate-photo { width: 112px; }
.demo-notice { margin: 0 0 22px; padding: 12px 16px; background: var(--paper); border-left: 4px solid var(--coral); color: var(--muted); font-size: 13px; }

.form-page { padding: 68px 0 100px; }
.form-shell { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.form-aside { position: sticky; top: 105px; }
.form-aside h1 { margin: 0 0 18px; font-size: clamp(38px, 4vw, 58px); line-height: 1.16; letter-spacing: -.05em; }
.form-aside p { color: var(--muted); }
.form-card { padding: 34px; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
.progress { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 30px; }
.progress span { height: 4px; border-radius: 4px; background: var(--line); }
.progress span.active { background: var(--coral); }
.form-step[hidden] { display: none; }
.form-step h2 { margin: 0 0 8px; font-size: 26px; letter-spacing: -.035em; }
.form-step > p { margin: 0 0 24px; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
.field.full-span { grid-column: 1 / -1; }
.option-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.option { position: relative; }
.option input { position: absolute; opacity: 0; pointer-events: none; }
.option span { min-height: 52px; display: flex; align-items: center; padding: 12px 14px; border: 1px solid var(--line-strong); border-radius: 8px; background: var(--white); font-size: 14px; font-weight: 700; cursor: pointer; }
.option input:checked + span { border-color: var(--ink); background: var(--sage); box-shadow: inset 0 0 0 1px var(--ink); }
.option input:focus-visible + span { outline: 3px solid rgba(239,104,79,.3); outline-offset: 2px; }
.form-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 28px; }
.form-error { min-height: 22px; margin: 12px 0 0; color: #b13d2d; font-size: 13px; font-weight: 700; }
.success-state { text-align: center; padding: 38px 10px; }
.success-icon { width: 64px; height: 64px; display: grid; place-items: center; margin: 0 auto 20px; border-radius: 50%; background: var(--sage); color: var(--ink); font-size: 29px; }
.success-state h2 { margin: 0 0 10px; font-size: 30px; }
.success-state p { margin: 0 auto 24px; max-width: 470px; color: var(--muted); }
.privacy-note { margin-top: 20px; padding: 15px; background: var(--paper); color: var(--muted); font-size: 12px; }
.privacy-note strong { display: block; margin-bottom: 6px; color: var(--ink); }
.consent-field { margin-top: 4px; }
.consent-check { display: grid; grid-template-columns: auto 1fr; gap: 11px; align-items: start; padding: 15px; border: 1px solid var(--line); border-radius: 8px; background: var(--paper); cursor: pointer; }
.consent-check input { width: 19px; min-height: 19px; margin-top: 2px; accent-color: var(--coral); }
.consent-check span { display: grid; gap: 6px; }
.consent-check strong { color: var(--ink); font-size: 14px; }
.consent-check small { line-height: 1.55; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.button:disabled, .text-button:disabled { opacity: .6; cursor: wait; }
.receipt { max-width: 430px; margin: 22px auto; border-top: 1px solid var(--line); }
.receipt div { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--line); text-align: left; }
.receipt dt { color: var(--muted); }
.receipt dd { margin: 0; color: var(--ink); font-weight: 850; }
.receipt-note { font-size: 13px; }
.success-actions { display: flex; justify-content: center; align-items: center; gap: 18px; flex-wrap: wrap; }
.text-button { min-height: 44px; padding: 0; border: 0; background: transparent; color: var(--muted); font: inherit; font-size: 13px; font-weight: 750; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }

.guide-page { padding: 70px 0 100px; }
.article-list { display: grid; gap: 70px; }
.article-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.article-feature:nth-child(even) .article-media { order: 2; }
.article-media { aspect-ratio: 16 / 10; border-radius: var(--media-radius); background: url("images/guides-triptych.png") no-repeat; background-size: 300% 100%; }
.article-media.a1 { background-position: 0 center; }
.article-media.a2 { background-position: 50% center; }
.article-media.a3 { background-position: 100% center; }
.article-copy h2 { margin: 0 0 13px; font-size: 34px; line-height: 1.3; letter-spacing: -.04em; }
.article-copy p { color: var(--muted); }
.article-copy ol { padding-left: 20px; }

.content-category { display: inline-flex; align-items: center; min-height: 28px; color: var(--coral-dark); font-size: 12px; font-weight: 850; letter-spacing: .02em; }
.content-hub { padding: 82px 0 100px; }
.content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.content-card { min-width: 0; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); transition: transform .18s ease, box-shadow .18s ease; }
.content-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.content-card-media { aspect-ratio: 16 / 9; margin: -18px -18px 16px; overflow: hidden; border-radius: 15px 15px 0 0; background: var(--sage); }
.content-card-media img { width: 100%; height: 100%; object-fit: cover; }
.content-card h2, .content-card h3 { margin: 7px 0 10px; font-size: 21px; line-height: 1.4; letter-spacing: -.035em; }
.content-card p { margin: 0 0 18px; color: var(--muted); font-size: 14px; }
.content-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 14px; color: var(--muted); font-size: 12px; }
.editorial-principles { padding: 66px 0; background: var(--paper); }
.editorial-article { padding-bottom: 90px; }
.article-hero { padding: 68px 0 48px; background: var(--paper); border-bottom: 1px solid #e8dfd2; }
.breadcrumbs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; color: var(--muted); font-size: 13px; }
.breadcrumbs a { text-decoration: underline; text-underline-offset: 3px; }
.article-hero h1 { max-width: 780px; margin: 8px 0 18px; font-size: clamp(42px, 5vw, 67px); line-height: 1.13; letter-spacing: -.055em; }
.article-deck { max-width: 720px; margin: 0; color: var(--muted); font-size: 19px; }
.article-meta { display: flex; gap: 10px 18px; flex-wrap: wrap; margin-top: 26px; color: var(--muted); font-size: 13px; }
.article-meta span + span::before { content: "·"; margin-right: 18px; }
.article-lead-image { margin: 52px 0 42px; }
.article-lead-image img { width: 100%; max-height: 520px; object-fit: cover; border-radius: var(--media-radius); }
.article-lead-image figcaption { margin-top: 10px; color: var(--muted); font-size: 12px; }
.quick-summary { margin: 0 0 52px; padding: 28px 30px; border-left: 5px solid var(--coral); background: var(--sage); }
.quick-summary h2 { margin: 0 0 12px; font-size: 23px; }
.quick-summary ul, .tool-list { margin: 0; padding-left: 20px; }
.article-section { padding: 34px 0; border-top: 1px solid var(--line); }
.article-section h2, .checklist-box h2, .article-faq > h2 { margin: 0 0 18px; font-size: 31px; line-height: 1.3; letter-spacing: -.04em; }
.article-section p { margin: 0 0 16px; color: #354e47; font-size: 17px; line-height: 1.9; }
.action-steps { margin: 0; padding: 0; list-style: none; counter-reset: action-step; }
.action-steps li { counter-increment: action-step; position: relative; min-height: 46px; padding: 11px 0 11px 58px; border-bottom: 1px solid var(--line); }
.action-steps li::before { content: counter(action-step, decimal-leading-zero); position: absolute; left: 0; top: 10px; color: var(--coral); font-size: 13px; font-weight: 850; }
.checklist-box { margin: 44px 0; padding: 32px; border: 1px solid var(--line-strong); border-radius: 16px; background: var(--paper); }
.checklist-box ul { display: grid; gap: 9px; margin: 0 0 24px; padding: 0; list-style: none; }
.checklist-box li { display: flex; gap: 10px; }
.checklist-box li span { color: var(--coral-dark); font-weight: 900; }
.article-faq { padding: 38px 0; }
.editorial-note { margin-top: 30px; padding: 20px 22px; border-radius: 10px; background: var(--sage); color: var(--muted); font-size: 14px; }
.editorial-note strong { color: var(--ink); }
.editorial-note p { margin: 5px 0 0; }
.related-content { padding: 72px 0; border-top: 1px solid var(--line); }
.related-content .content-card { padding-top: 24px; }

@media print {
  .site-header, .mobile-nav, .article-hero, .article-lead-image, .quick-summary, .article-section, .article-faq, .editorial-note, .related-content, .cta-band, .site-footer, .print-checklist { display: none !important; }
  .editorial-article { padding: 0; }
  .checklist-box { display: block; margin: 0; border: 0; }
}

.legal-box { margin-top: 42px; padding: 24px; background: var(--paper); border-radius: 12px; color: var(--muted); font-size: 13px; }

.tips-intro { padding: 76px 0 62px; background: var(--paper); border-bottom: 1px solid #e8dfd2; }
.tips-intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: end; }
.tips-intro h1 { margin: 0; font-size: clamp(46px, 6vw, 76px); line-height: 1.08; letter-spacing: -.06em; }
.tips-intro p { max-width: 570px; margin: 0 0 20px; color: var(--muted); font-size: 18px; line-height: 1.75; }
.tips-body { padding: 64px 0 100px; }
.tip-toolbar { display: grid; grid-template-columns: .72fr 1.28fr; gap: 44px; align-items: end; padding-bottom: 28px; border-bottom: 2px solid var(--ink); }
.tip-toolbar h2 { margin: 0 0 8px; font-size: 30px; letter-spacing: -.04em; }
.tip-toolbar p { margin: 0; color: var(--muted); }
.tip-filters { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 9px; }
.tip-filters button { min-height: 42px; padding: 9px 16px; border: 1px solid #cfc5b8; border-radius: 999px; background: transparent; color: var(--ink); font: inherit; font-weight: 700; cursor: pointer; }
.tip-filters button[aria-pressed="true"] { border-color: var(--ink); background: var(--ink); color: #fff; }
.tip-filters button:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }
.tips-list { display: grid; }
.tip-row { display: grid; grid-template-columns: 105px minmax(0, 1fr); gap: 32px; padding: 38px 0 42px; border-bottom: 1px solid var(--line); }
.tip-row[hidden] { display: none; }
.tip-index { display: flex; flex-direction: column; justify-content: space-between; color: var(--muted); font-size: 13px; font-weight: 700; }
.tip-index span:first-child { color: var(--coral); font-size: 24px; letter-spacing: -.03em; }
.tip-copy { max-width: 840px; }
.tip-copy h2 { max-width: 720px; margin: 8px 0 12px; font-size: clamp(25px, 3vw, 34px); line-height: 1.25; letter-spacing: -.045em; }
.tip-copy > p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.8; }
.tip-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin: 26px 0 0; padding-top: 22px; border-top: 1px dashed #d4c9bb; }
.tip-details div { min-width: 0; }
.tip-details dt { margin-bottom: 7px; color: var(--coral); font-size: 13px; font-weight: 800; }
.tip-details dd { margin: 0; color: var(--ink); line-height: 1.65; }
.tip-empty { padding: 80px 0; text-align: center; }
.tip-empty h2 { margin: 0 0 18px; }
.tip-empty .text-link { border: 0; background: transparent; font: inherit; cursor: pointer; }
.home-tips { background: var(--paper); }
.home-tip-list { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 2px solid var(--ink); }
.home-tip { min-width: 0; padding: 28px 24px 10px 0; }
.home-tip + .home-tip { padding-left: 24px; border-left: 1px solid var(--line); }
.home-tip span { color: var(--coral); font-size: 13px; font-weight: 800; }
.home-tip h3 { margin: 10px 0 12px; font-size: 23px; line-height: 1.35; letter-spacing: -.035em; }
.home-tip p { margin: 0 0 20px; color: var(--muted); line-height: 1.7; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-copy { max-width: 720px; padding-top: 0; }
  .hero-media { width: 100%; }
  .process-intro { grid-template-columns: 1fr; gap: 35px; }
  .steps { border-top: 1px solid var(--line); }
  .filter-form { grid-template-columns: repeat(2, 1fr); }
  .filter-actions { grid-column: 1 / -1; }
  .mate-row, .mates-page .mate-row { grid-template-columns: 100px 1fr auto; gap: 20px; }
  .mate-photo, .mates-page .mate-photo { width: 100px; }
  .mate-facts { grid-column: 2 / -1; }
  .services-grid { grid-template-columns: repeat(3, 1fr); row-gap: 28px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > h2 { grid-column: 1 / -1; }
  .mates-layout { grid-template-columns: 1fr; gap: 28px; }
  .filter-sidebar { position: static; display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 12px; align-items: end; }
  .filter-sidebar h2 { grid-column: 1 / -1; margin: 0; }
  .filter-sidebar .field + .field { margin-top: 0; }
  .filter-sidebar .button { margin-top: 0; }
  .form-shell { grid-template-columns: 1fr; gap: 36px; }
  .form-aside { position: static; }
  .tips-intro-grid, .tip-toolbar { grid-template-columns: 1fr; gap: 26px; }
  .tip-filters { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .container, .narrow { width: min(calc(100% - 32px), var(--max)); }
  .header-inner { min-height: 68px; }
  .mobile-nav { inset-block-start: 68px; }
  .hero { padding: 40px 0 54px; }
  .hero-copy h1 { font-size: clamp(40px, 11vw, 54px); }
  .hero-copy p { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { align-self: flex-start; }
  .hero-media img { aspect-ratio: 4 / 3; }
  .rail-section { padding: 70px 0; }
  .rail-section::before { left: 16px; }
  .rail-section::after { left: 13px; top: 87px; }
  .rail-content { padding-left: 20px; }
  .section-top { align-items: flex-start; flex-direction: column; margin-bottom: 30px; }
  .section-heading { font-size: 35px; }
  .process { padding-top: 0; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 0; display: grid; grid-template-columns: auto 54px 1fr; align-items: center; gap: 12px; padding: 22px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .step-icon { margin: 0; }
  .step p { grid-column: 3; }
  .finder-panel { padding: 25px 18px; border-radius: 14px; }
  .filter-form { grid-template-columns: 1fr; }
  .filter-actions { grid-column: auto; }
  .filter-actions .button { flex: 1; }
  .mate-row, .mates-page .mate-row { grid-template-columns: 76px 1fr; gap: 14px; }
  .mate-photo, .mates-page .mate-photo { width: 76px; border-radius: 12px; }
  .mate-name { font-size: 18px; }
  .mate-facts { grid-column: 1 / -1; }
  .mate-row .text-link { grid-column: 1 / -1; justify-self: start; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:last-child { grid-column: 1 / -1; width: calc(50% - 7px); }
  .trust-grid { grid-template-columns: 1fr; gap: 28px; }
  .trust-item { padding: 0 0 25px; border-left: 0; border-bottom: 1px solid #d9cfc1; }
  .guide-grid { grid-template-columns: 1fr; gap: 34px; }
  .cta-inner { align-items: stretch; flex-direction: column; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > div:first-child { grid-column: 1 / -1; }
  .footer-note { flex-direction: column; gap: 8px; }
  .page-hero { padding: 52px 0 44px; }
  .page-hero h1 { font-size: 44px; }
  .filter-sidebar { grid-template-columns: 1fr; }
  .form-page { padding-top: 46px; }
  .form-card { padding: 25px 18px; }
  .form-grid, .option-grid { grid-template-columns: 1fr; }
  .article-feature { grid-template-columns: 1fr; gap: 24px; }
  .article-feature:nth-child(even) .article-media { order: 0; }
  .content-grid { grid-template-columns: 1fr; }
  .content-hub { padding: 60px 0 76px; }
  .article-hero { padding: 44px 0 36px; }
  .article-hero h1 { font-size: 42px; }
  .article-deck { font-size: 17px; }
  .article-meta span + span::before { content: none; margin: 0; }
  .article-lead-image { margin: 30px 0; }
  .quick-summary, .checklist-box { padding: 23px 20px; }
  .article-section h2, .checklist-box h2, .article-faq > h2 { font-size: 27px; }
  .article-section p { font-size: 16px; }
  .content-card-footer { align-items: flex-start; flex-direction: column; }
  .tips-intro { padding: 48px 0 42px; }
  .tips-intro h1 { font-size: 44px; }
  .tips-body { padding: 44px 0 72px; }
  .tip-filters { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tip-filters button { width: 100%; }
  .tip-row { grid-template-columns: 1fr; gap: 16px; padding: 30px 0 34px; }
  .tip-index { flex-direction: row; }
  .tip-details { grid-template-columns: 1fr; gap: 18px; }
  .home-tip-list { grid-template-columns: 1fr; }
  .home-tip, .home-tip + .home-tip { padding: 26px 0; border-left: 0; border-bottom: 1px solid var(--line); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
