:root {
  --ink: #17343a;
  --ink-soft: #4e686b;
  --cream: #f8f3e9;
  --paper: #fffdf8;
  --clay: #c9634f;
  --clay-dark: #9e493b;
  --sage: #7b9e88;
  --sage-pale: #e3ece5;
  --sky: #dce9ea;
  --line: #d9d7cf;
  --shadow: 0 24px 70px rgba(23, 52, 58, .13);
  --radius: 22px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.65; }
img { max-width: 100%; display: block; }
a { color: var(--ink); text-underline-offset: 3px; }
a:hover { color: var(--clay-dark); }
button, input, textarea { font: inherit; }
:focus-visible { outline: 3px solid #25747d; outline-offset: 4px; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; padding: 12px 18px; background: var(--ink); color: white; border-radius: 8px; }
.skip-link:focus { top: 16px; }
.wrap { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.eyebrow { margin: 0 0 13px; color: var(--clay-dark); font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
h1, h2, h3, h4 { font-family: Georgia, "Times New Roman", serif; line-height: 1.08; letter-spacing: -.025em; text-wrap: balance; }
h1 { font-size: clamp(2.65rem, 5.3vw, 5.6rem); margin: 0 0 22px; }
h2 { font-size: clamp(2rem, 3.4vw, 3.55rem); margin: 0 0 20px; }
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); margin: 0 0 12px; }
h4 { font-size: 1.1rem; margin: 0 0 8px; }
p { margin: 0 0 1.1em; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); max-width: 66ch; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255, 253, 248, .94); border-bottom: 1px solid rgba(217, 215, 207, .85); backdrop-filter: blur(14px); }
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: block; width: min(280px, 58vw); flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav a { font-size: .93rem; font-weight: 720; text-decoration: none; white-space: nowrap; }
.nav-cta { padding: 11px 18px; border-radius: 10px; color: white !important; background: var(--ink); }
.menu-button { display: none; border: 1px solid var(--line); background: white; color: var(--ink); padding: 10px 13px; border-radius: 10px; font-weight: 800; }
.hero { position: relative; min-height: 700px; height: min(760px, calc(100svh - 76px)); display: grid; align-items: center; overflow: hidden; background: var(--ink); }
.hero::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(8,29,34,.86) 0%, rgba(8,29,34,.72) 32%, rgba(8,29,34,.2) 61%, rgba(8,29,34,.04) 100%); }
.hero-copy { position: relative; z-index: 2; width: min(calc(100% - 40px), var(--max)); margin-inline: auto; padding: 72px 0; color: white; }
.hero-copy h1 { max-width: 760px; font-size: clamp(3.25rem, 5.3vw, 5.35rem); line-height: .98; letter-spacing: -.04em; }
.hero-copy p { max-width: 550px; }
.hero-copy .eyebrow { color: #f4ba92; }
.hero-copy .lead { color: #edf4f2; font-size: clamp(1.05rem, 1.45vw, 1.22rem); }
.hero-copy .button-secondary { color: white; border-color: rgba(255,255,255,.72); background: rgba(8,29,34,.18); }
.hero-media { position: absolute; inset: 0; display: block; z-index: 0; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center bottom; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 13px 21px; border-radius: 11px; border: 1px solid var(--ink); text-decoration: none; font-weight: 800; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--clay); border-color: var(--clay); }
.button-primary:hover { color: white; background: var(--clay-dark); }
.button-secondary { background: transparent; }
.hero-note { margin-top: 24px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.28); color: #e3ecea; font-size: .92rem; }
.section { padding: clamp(76px, 9vw, 126px) 0; }
.section-tight { padding: 68px 0; }
.section-sage { background: var(--sage-pale); }
.section-ink { color: white; background: var(--ink); }
.section-ink .lead, .section-ink p { color: #d9e5e4; }
.section-head { display: grid; grid-template-columns: minmax(0, .8fr) minmax(280px, .55fr); gap: 50px; align-items: end; margin-bottom: 48px; }
.section-head > * { margin-bottom: 0; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: step; }
.step { counter-increment: step; background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; min-height: 270px; box-shadow: 0 14px 40px rgba(23,52,58,.05); }
.step::before { content: "0" counter(step); display: block; margin-bottom: 28px; color: var(--clay); font-weight: 900; letter-spacing: .08em; }
.region-filter { display: flex; flex-wrap: wrap; gap: 9px; margin: 0 0 28px; }
.filter-button { border: 1px solid #b9c7c5; background: white; color: var(--ink); border-radius: 999px; padding: 9px 16px; font-weight: 800; cursor: pointer; }
.filter-button[aria-pressed="true"] { background: var(--ink); color: white; border-color: var(--ink); }
.city-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.city-card { position: relative; display: flex; flex-direction: column; min-height: 220px; padding: 24px; border-radius: 18px; background: white; border: 1px solid var(--line); text-decoration: none; overflow: hidden; }
.city-card::after { content: ""; position: absolute; width: 94px; height: 94px; right: -26px; bottom: -28px; border: 18px solid var(--sage-pale); border-radius: 50%; }
.city-card small { color: var(--clay-dark); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.city-card strong { margin-top: auto; font-family: Georgia, serif; font-size: 1.55rem; line-height: 1.12; }
.city-card span { margin-top: 8px; color: var(--ink-soft); font-size: .92rem; }
.split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); gap: clamp(36px, 6vw, 84px); align-items: center; }
.split-media { border-radius: 30px; overflow: hidden; box-shadow: var(--shadow); background: #dfe4df; }
.split-media img { width: 100%; height: auto; object-fit: contain; }
.check-list { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 32px; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .45em; width: 13px; height: 13px; border: 3px solid var(--clay); border-radius: 50%; }
.profile-preview { display: grid; gap: 16px; padding: clamp(28px, 5vw, 52px); color: white; background: var(--ink); border-radius: 26px; box-shadow: var(--shadow); }
.profile-preview blockquote { margin: 0; font-family: Georgia, serif; font-size: clamp(1.65rem, 3vw, 2.6rem); line-height: 1.2; }
.profile-preview p { margin: 0; color: #c9d8d6; }
.profile-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 10px; }
.profile-tags span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; color: #edf4f2; font-size: .84rem; }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.plan-card { padding: 26px; border: 1px solid rgba(255,255,255,.22); border-radius: 18px; }
.plan-card b { display: block; margin-bottom: 12px; color: #f0bd92; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.faq-list { display: grid; gap: 12px; max-width: 900px; }
.faq-list details { background: white; border: 1px solid var(--line); border-radius: 14px; padding: 0 22px; }
.faq-list summary { cursor: pointer; padding: 20px 32px 20px 0; font-weight: 850; position: relative; }
.faq-list summary::after { content: "+"; position: absolute; right: 0; color: var(--clay); font-size: 1.4rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding-bottom: 20px; color: var(--ink-soft); }
.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.blog-card { display: flex; flex-direction: column; background: white; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; text-decoration: none; }
.blog-card img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
.blog-card-body { display: flex; flex-direction: column; flex: 1; padding: 24px; }
.blog-card small { color: var(--clay-dark); font-weight: 850; }
.blog-card h3 { margin-top: 9px; }
.blog-card p { color: var(--ink-soft); }
.blog-card .read { margin-top: auto; font-weight: 850; }
.page-hero { padding: clamp(80px, 10vw, 140px) 0 80px; background: var(--cream); }
.page-hero .lead { max-width: 760px; }
.page-hero h1 { max-width: 1040px; }
.article-meta { margin: 24px 0 0; color: var(--ink-soft); font-size: .9rem; font-weight: 700; }
.breadcrumb { margin-bottom: 30px; font-size: .9rem; color: var(--ink-soft); }
.breadcrumb a { color: inherit; }
.blog-hero { position: relative; min-height: 600px; height: min(760px, calc(100svh - 76px)); overflow: hidden; background: var(--ink); }
.blog-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 48%; }
.blog-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,29,34,.84) 0%, rgba(8,29,34,.58) 33%, rgba(8,29,34,.08) 62%, rgba(8,29,34,0) 100%); }
.blog-hero-card { position: absolute; z-index: 1; left: max(20px, calc((100vw - var(--max)) / 2)); bottom: clamp(44px, 7vh, 72px); width: min(720px, calc(100% - 40px)); color: white; }
.blog-hero-card .eyebrow { color: #f4ba92; }
.blog-hero-card .lead { color: #edf4f2; }
.blog-hero-card h1 { max-width: 700px; font-size: clamp(2.8rem, 4vw, 4.55rem); line-height: .98; }
.article { padding: 46px 0 110px; }
.article-layout { display: grid; grid-template-columns: minmax(0, 760px) 260px; justify-content: center; gap: 68px; align-items: start; }
.article-body { min-width: 0; }
.article-body h2 { margin-top: 1.95em; font-size: clamp(1.75rem, 2.7vw, 2.42rem); }
.article-body h3 { margin-top: 1.55em; font-size: clamp(1.28rem, 1.8vw, 1.65rem); }
.article-body h4 { margin-top: 1.35em; font-family: inherit; font-size: 1.05rem; letter-spacing: .01em; }
.article-body p, .article-body li { font-size: 1.04rem; line-height: 1.78; }
.article-body a { font-weight: 700; }
.article-cover { margin: 0 0 28px; border-radius: 20px; overflow: hidden; }
.article-cover img { width: 100%; height: auto; }
.toc { position: sticky; top: 108px; padding: 22px; border-left: 3px solid var(--clay); background: var(--cream); border-radius: 0 14px 14px 0; }
.toc strong { display: block; margin-bottom: 10px; }
.toc a { display: block; margin: 9px 0; color: var(--ink-soft); font-size: .9rem; }
.quick-answer { margin: 0 0 34px; padding: 26px; background: var(--sage-pale); border-radius: 18px; }
.quick-answer h2 { margin-top: 0; }
.table-wrap { overflow-x: auto; margin: 28px 0; border: 1px solid var(--line); border-radius: 14px; }
table { width: 100%; border-collapse: collapse; min-width: 620px; }
th, td { padding: 15px 18px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
th { background: var(--cream); font-size: .88rem; text-transform: uppercase; letter-spacing: .05em; }
tr:last-child td { border-bottom: 0; }
.note { margin: 28px 0; padding: 22px 24px; border-left: 4px solid var(--sage); background: #f3f7f3; }
.city-hero { padding: 50px 0 58px; background: linear-gradient(130deg, var(--cream), var(--sage-pale)); }
.city-hero-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr); gap: clamp(34px, 5vw, 64px); align-items: center; }
.city-cover { margin: 0; overflow: hidden; border-radius: 24px; background: #dfe4df; box-shadow: var(--shadow); }
.city-cover img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
.city-ideas { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 26px 0 34px; }
.city-idea { padding: 20px; border: 1px solid var(--line); border-radius: 13px; background: white; }
.join-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: 26px; overflow: hidden; background: white; box-shadow: var(--shadow); }
.join-copy, .join-steps { padding: clamp(28px, 5vw, 56px); }
.join-steps { background: var(--ink); color: white; }
.join-steps ol { margin: 0; padding-left: 1.3em; }
.join-steps li { margin: 0 0 20px; padding-left: 8px; }
.home-scene { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); overflow: hidden; border-radius: 28px; background: var(--cream); box-shadow: var(--shadow); }
.home-scene-media { display: flex; min-width: 0; align-items: center; background: var(--cream); }
.home-scene-media img { width: 100%; height: auto; object-fit: contain; }
.home-scene-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(34px, 4vw, 54px); }
.home-scene-copy .check-list { margin-bottom: 28px; }
.blog-next-panel { grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr); }
.blog-guide-links { display: grid; gap: 12px; margin-top: 22px; }
.blog-guide-link { display: grid; grid-template-columns: 34px 1fr; gap: 14px; align-items: start; padding: 15px 16px; color: white; border: 1px solid rgba(255,255,255,.2); border-radius: 13px; text-decoration: none; }
.blog-guide-link:hover { color: white; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.05); }
.blog-guide-link > span { color: #f0bd92; font-size: .78rem; font-weight: 900; letter-spacing: .08em; }
.blog-guide-link strong { display: block; margin-bottom: 2px; font-size: 1rem; }
.blog-guide-link small { display: block; color: #c7d6d5; line-height: 1.45; }
.site-footer { padding: 70px 0 32px; color: #dbe5e4; background: #102a30; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) .65fr .65fr; gap: 64px; align-items: start; }
.footer-brand { max-width: 520px; }
.footer-logo { width: 285px; opacity: .98; }
.site-footer p { color: #b9c9c8; }
.site-footer h2 { margin: 0 0 16px; color: white; font-family: inherit; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; }
.site-footer a { display: block; margin: 8px 0; color: #dbe5e4; text-decoration: none; font-size: .92rem; }
.footer-city-block { margin-top: 44px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.16); }
.footer-cities { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px 28px; }
.footer-cities a { white-space: nowrap; }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; margin-top: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.16); color: #9fb3b2; font-size: .86rem; }
.article-page .page-hero { padding: 54px 0 42px; }
.article-page .page-hero h1 { max-width: 980px; font-size: clamp(2.55rem, 4.3vw, 4.35rem); line-height: 1.02; }
.article-page .page-hero .lead { max-width: 760px; }
.legal { max-width: 820px; }
.legal h2 { margin-top: 1.75em; font-size: 2rem; }
.utility-page .page-hero { padding: clamp(68px, 7vw, 96px) 0 56px; }
.utility-page .section { padding-top: 58px; }
.utility-page .legal > :first-child { margin-top: 0; }
.status-strip { padding: 12px 0; background: var(--ink); color: white; text-align: center; font-size: .9rem; }
@media (max-width: 980px) {
  .site-nav { position: absolute; left: 20px; right: 20px; top: 68px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 14px; background: white; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
  .site-nav[data-open="true"] { display: flex; }
  .site-nav a { padding: 12px; }
  .menu-button { display: inline-flex; }
  .hero-copy h1 { max-width: 660px; font-size: clamp(3.1rem, 7vw, 4.7rem); }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .article-layout { grid-template-columns: minmax(0, 760px); }
  .toc { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-cities { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .hero { height: auto; min-height: 0; display: flex; flex-direction: column; background: var(--ink); }
  .hero::after { display: none; }
  .hero-media { position: static; order: -1; width: 100%; height: auto; overflow: visible; }
  .hero-media img { width: 100%; height: auto; object-fit: contain; object-position: center; }
  .hero-copy { width: min(calc(100% - 40px), var(--max)); padding: 52px 0 62px; }
  .city-hero-grid { grid-template-columns: 1fr; }
  .home-scene, .blog-next-panel { grid-template-columns: 1fr; }
  .home-scene-media img { height: auto; min-height: 0; object-fit: contain; }
  .blog-hero { min-height: 0; height: auto; display: flex; flex-direction: column; overflow: visible; background: var(--ink); }
  .blog-hero::after { display: none; }
  .blog-hero > img { position: static; width: 100%; height: auto; object-fit: contain; object-position: center; }
  .blog-hero-card { position: static; width: auto; margin: 0; padding: 38px 20px 46px; }
  .blog-hero-card h1 { font-size: clamp(2.55rem, 8vw, 3.6rem); }
}
@media (max-width: 720px) {
  .wrap { width: min(calc(100% - 28px), var(--max)); }
  .header-inner { min-height: 68px; }
  .brand { width: 220px; }
  .hero-copy { width: min(calc(100% - 28px), var(--max)); padding: 42px 0 52px; }
  .hero-copy h1 { font-size: clamp(2.65rem, 12.4vw, 3.8rem); line-height: 1; }
  .button { width: 100%; }
  .section-head, .split, .city-hero-grid, .join-panel { grid-template-columns: 1fr; }
  .steps, .plan-grid, .blog-grid { grid-template-columns: 1fr; }
  .step { min-height: 0; }
  .city-grid { grid-template-columns: 1fr; }
  .city-card { min-height: 160px; }
  .split-media { border-radius: 18px; }
  .split-media img { aspect-ratio: auto; object-fit: contain; }
  .blog-hero-card { padding: 34px 14px 42px; }
  .blog-hero-card h1 { font-size: clamp(2.35rem, 11.5vw, 3.25rem); }
  .page-hero { padding-top: 66px; }
  .page-hero h1 { font-size: clamp(2.25rem, 10.5vw, 2.75rem); line-height: 1.04; }
  .city-cover { order: -1; border-radius: 18px; }
  .city-cover img { aspect-ratio: auto; object-fit: contain; }
  .city-ideas { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-cities { grid-template-columns: 1fr; gap: 2px; }
  .footer-bottom { flex-direction: column; }
  .article { padding-top: 42px; }
  .article-page .page-hero { padding: 48px 0 36px; }
  .article-page .page-hero h1 { font-size: clamp(2.08rem, 9.6vw, 2.45rem); line-height: 1.05; }
  .article-body p, .article-body li { font-size: 1rem; }
  .utility-page .page-hero { padding: 48px 0 38px; }
  .utility-page .section { padding-top: 42px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
