:root {
  --ink: #303729;
  --ink-soft: #515747;
  --green: #59674a;
  --green-dark: #3f4c35;
  --green-light: #8d9b78;
  --cream: #f7f3eb;
  --ivory: #fdfbf7;
  --paper: #eee7da;
  --gold: #aa8951;
  --line: #d9d0bf;
  --white: #fff;
  --shadow: 0 20px 55px rgba(57, 52, 40, 0.13);
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", Georgia, serif;
  --sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.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;
}
.skip-link {
  position: fixed; left: 1rem; top: -5rem; z-index: 1000; padding: .75rem 1rem;
  color: #fff; background: var(--green-dark); border-radius: .25rem;
}
.skip-link:focus { top: 1rem; }
:where(a, button, summary):focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.container { width: min(1120px, calc(100% - 3rem)); margin-inline: auto; }
.container.narrow { width: min(880px, calc(100% - 3rem)); }
.section { padding: clamp(5.5rem, 9vw, 8.5rem) 0; }
.section-kicker {
  margin: 0 0 1rem; color: var(--green); font-size: .75rem; font-weight: 700;
  letter-spacing: .19em; text-transform: uppercase;
}
.section-kicker.light { color: #dfe6d5; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; }
h2 {
  margin-bottom: 1.5rem; color: var(--ink); font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.5; letter-spacing: .045em;
}
h3 { font-size: 1.35rem; line-height: 1.55; }
.section-intro {
  max-width: 730px; margin-bottom: 3.5rem; color: var(--ink-soft); font-size: 1.05rem;
}

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100; height: 78px;
  border-bottom: 1px solid rgba(118, 108, 88, .16); background: rgba(253, 251, 247, .9);
  backdrop-filter: blur(16px); transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { background: rgba(253, 251, 247, .97); box-shadow: 0 8px 30px rgba(54, 52, 42, .08); }
.header-inner { width: min(1240px, calc(100% - 3rem)); height: 100%; margin-inline: auto; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand-mark { width: 34px; height: 34px; fill: none; stroke: var(--green); stroke-width: 2; stroke-linecap: round; }
.brand span { display: grid; line-height: 1.2; }
.brand small { color: var(--green); font-size: .69rem; letter-spacing: .13em; }
.brand strong { font-family: var(--serif); font-size: 1rem; font-weight: 600; letter-spacing: .07em; }
.desktop-nav { display: flex; align-items: center; gap: 1.7rem; }
.desktop-nav a { font-size: .84rem; font-weight: 600; letter-spacing: .04em; text-decoration: none; }
.desktop-nav a:not(.nav-cta):hover { color: var(--green); }
.nav-cta { padding: .7rem 1.25rem; color: #fff !important; background: var(--green); border-radius: 100px; }
.menu-button { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; }
.menu-button > span:not(.sr-only) { display: block; width: 27px; height: 2px; margin: 6px auto; background: var(--green); transition: transform .2s, opacity .2s; }
.menu-button[aria-expanded="true"] > span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-button[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.mobile-nav { position: fixed; inset: 78px 0 auto; padding: 1.25rem 1.5rem 2rem; background: var(--ivory); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
.mobile-nav a { display: block; padding: .7rem 0; text-decoration: none; border-bottom: 1px solid rgba(217, 208, 191, .6); }
.mobile-nav .nav-cta { margin-top: 1rem; padding: .85rem 1rem; text-align: center; border: 0; }

.hero {
  position: relative; min-height: 100svh; padding-top: 78px; overflow: hidden;
  background: #f5f0e7;
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .46; pointer-events: none;
  background-image: radial-gradient(circle at 12% 14%, rgba(94, 109, 77, .11), transparent 24%),
    repeating-linear-gradient(115deg, rgba(73, 66, 48, .025) 0 1px, transparent 1px 7px);
}
.hero-paper { position: absolute; inset: 0; background: linear-gradient(90deg, #f8f4ec 0 50%, transparent 72%); }
.hero-inner {
  position: relative; z-index: 1; width: min(1240px, calc(100% - 3rem)); min-height: calc(100svh - 78px);
  margin-inline: auto; display: grid; grid-template-columns: minmax(0, .95fr) minmax(420px, .8fr); align-items: center; gap: 4rem;
}
.hero-copy { padding: 3.2rem 0 5rem; }
.eyebrow { margin-bottom: 1.6rem; color: var(--green); font-weight: 700; font-size: .8rem; letter-spacing: .13em; }
.hero h1 { margin: 0; font-size: clamp(2.25rem, 3.5vw, 3.35rem); line-height: 1.48; letter-spacing: .06em; word-break: keep-all; }
.hero h1 span { font-size: .78em; word-break: normal; }
.ornament { display: flex; align-items: center; width: 220px; margin: 1.5rem 0 1.25rem; }
.ornament::before { content: "◇"; color: var(--gold); font-size: .6rem; }
.ornament span { width: 100%; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
.hero-lead { margin-bottom: 1.3rem; color: var(--green); font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.8; letter-spacing: .08em; }
.hero-body { max-width: 700px; margin-bottom: 1.7rem; color: var(--ink-soft); }
.hero-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: .65rem; margin: 0 0 1.5rem; padding: 0; list-style: none; }
.hero-points li {
  min-height: 78px; padding: .85rem; display: flex; align-items: center; justify-content: center; gap: .65rem;
  background: rgba(255,255,255,.62); border: 1px solid rgba(191, 175, 147, .6); border-radius: 15px;
}
.hero-points svg { width: 28px; height: 28px; fill: none; stroke: var(--green-light); stroke-width: 1.6; }
.point-icon { width: 30px; height: 30px; display: grid; place-items: center; color: var(--green); border: 1px solid var(--green-light); border-radius: 50%; font: 700 .72rem/1 var(--serif); }
.hero-points li > span:last-child { display: grid; line-height: 1.35; }
.hero-points strong { font-family: var(--serif); font-size: .95rem; font-weight: 600; }
.hero-points small { font-size: .78rem; }
.button { min-height: 60px; padding: 1rem 1.7rem; border: 0; display: inline-flex; align-items: center; justify-content: center; gap: 1.25rem; border-radius: 999px; font-weight: 700; letter-spacing: .035em; text-decoration: none; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.button-primary { color: #fff; background: linear-gradient(135deg, #69785a, #4c5b40); box-shadow: 0 10px 28px rgba(63, 76, 53, .25); }
.hero-button { min-width: min(100%, 390px); }
.hero-visual { position: relative; height: min(76vh, 770px); border-radius: 260px 260px 20px 20px; overflow: hidden; box-shadow: var(--shadow); }
.hero-visual::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.45); border-radius: inherit; pointer-events: none; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 46%; }
.paper-note {
  position: absolute; left: 52%; bottom: 15%; transform: translateX(-50%) rotate(-1.5deg); width: 230px; min-height: 130px;
  padding: 1.5rem; display: grid; place-content: center; gap: .15rem; text-align: center; color: #725b3f; background: rgba(252,249,241,.93);
  border: 1px solid #cab999; box-shadow: 0 5px 15px rgba(64, 48, 29, .12); font-family: var(--serif);
}
.paper-note::before { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(170,137,81,.46); }
.paper-note small, .paper-note strong, .paper-note span { position: relative; }
.paper-note strong { font-size: 1.18rem; font-weight: 500; }
.paper-note span { font-size: .75rem; }
.scroll-cue { position: absolute; z-index: 3; left: 50%; bottom: 1.25rem; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; color: var(--ink-soft); font-family: var(--serif); font-size: .82rem; letter-spacing: .1em; text-decoration: none; }
.scroll-cue svg { width: 20px; height: 20px; margin-top: .15rem; fill: none; stroke: currentColor; stroke-width: 1.4; animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 50% { transform: translateY(5px); } }

.concerns { background: var(--ivory); }
.concerns h2, .concerns .section-kicker { text-align: center; }
.concerns .section-intro { margin-inline: auto; text-align: center; }
.concern-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.concern-grid article { padding: 1.5rem; display: grid; grid-template-columns: 46px 1fr; align-items: start; gap: 1rem; background: #f7f3ea; border-left: 2px solid var(--green-light); }
.concern-grid span { color: var(--gold); font-family: var(--serif); font-size: .8rem; }
.concern-grid p { margin: 0; line-height: 1.75; }
blockquote { position: relative; margin: 4rem 0 0; padding: 2.4rem 3rem; text-align: center; background: var(--green); color: #fff; }
blockquote::before { content: "“"; position: absolute; left: 1.3rem; top: -.45rem; color: rgba(255,255,255,.16); font-family: Georgia, serif; font-size: 7rem; line-height: 1; }
blockquote p { margin-bottom: .35rem; font-family: var(--serif); font-size: 1.2rem; }
blockquote strong { display: block; font-family: var(--serif); font-weight: 500; font-size: 1.35rem; }

.check-section { background: #f2ede3; }
.split-heading { display: grid; grid-template-columns: .9fr 1fr; gap: 6rem; align-items: end; margin-bottom: 3.5rem; }
.split-heading h2 { margin-bottom: 0; }
.split-heading > p { margin-bottom: .5rem; color: var(--ink-soft); }
.check-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; list-style: none; background: var(--ivory); border: 1px solid var(--line); }
.check-grid li { position: relative; min-height: 180px; padding: 2rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .75rem; text-align: center; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.check-grid li:nth-child(3n) { border-right: 0; }
.check-grid li:nth-child(n+4) { border-bottom: 0; }
.check-grid span { position: absolute; left: 1rem; top: .75rem; color: #b4a98f; font: .76rem/1 var(--serif); }
.check-grid svg { width: 40px; height: 40px; fill: none; stroke: var(--green); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.check-grid strong { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; }
.section-note { margin: 2rem 0 0; text-align: center; color: var(--ink-soft); }

.choice-section { background: var(--ivory); }
.choice-section > .container > h2, .choice-section > .container > .section-kicker, .choice-section > .container > .section-intro { text-align: center; margin-inline: auto; }
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; align-items: stretch; }
.choice-grid article { padding: 2.3rem; border: 1px solid var(--line); background: #fbf8f2; }
.choice-grid article.featured { transform: translateY(-12px); color: #fff; background: var(--green); border-color: var(--green); box-shadow: var(--shadow); }
.choice-number { color: var(--gold); font-family: var(--serif); font-size: .78rem; }
.choice-grid h3 { margin: .7rem 0 1rem; }
.choice-grid p { margin-bottom: 0; color: var(--ink-soft); }
.choice-grid .featured p { color: #f1f4ed; }

.support-section { color: #fff; background: var(--green-dark); }
.support-layout { display: grid; grid-template-columns: .85fr 1fr; gap: 6rem; align-items: center; }
.support-copy h2 { color: #fff; }
.support-copy > p:not(.section-kicker) { color: #e6eadf; }
.support-quote { margin-top: 2rem; padding: 1.3rem 1.5rem; border-top: 1px solid rgba(255,255,255,.25); border-bottom: 1px solid rgba(255,255,255,.25); font-family: var(--serif); font-size: 1.14rem; letter-spacing: .04em; }
.support-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.23); }
.support-list li { padding: 1.15rem 0; display: grid; grid-template-columns: 50px 1fr; align-items: center; border-bottom: 1px solid rgba(255,255,255,.23); }
.support-list span { color: #c8b48b; font: .76rem/1 var(--serif); }
.support-list strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 500; letter-spacing: .035em; }

.services-section { background: #f5f1e8; }
.services-section > .container > h2, .services-section > .container > .section-kicker, .services-section > .container > .section-intro { text-align: center; margin-inline: auto; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.service-card { position: relative; min-height: 245px; padding: 2.4rem; overflow: hidden; background: var(--ivory); border: 1px solid var(--line); }
.service-card::after { content: ""; position: absolute; right: -45px; bottom: -55px; width: 140px; height: 140px; border: 1px solid rgba(89,103,74,.18); border-radius: 50%; box-shadow: 0 0 0 20px rgba(89,103,74,.035), 0 0 0 40px rgba(89,103,74,.025); }
.service-card.primary-service { border-top: 4px solid var(--green); }
.service-card.related-service { background: #ebe5d8; }
.service-label { display: inline-block; margin-bottom: 1.2rem; padding: .25rem .65rem; color: var(--green); background: #e9eddf; font-size: .76rem; font-weight: 700; }
.service-card h3 { margin-bottom: 1rem; font-size: 1.5rem; }
.service-card p { max-width: 85%; margin-bottom: 0; color: var(--ink-soft); }
.caution { margin: 1.5rem 0 0; color: var(--ink-soft); font-size: .88rem; text-align: center; }

.credentials-section { background: var(--ivory); }
.credentials-layout { display: grid; grid-template-columns: .9fr 1fr; gap: 6rem; align-items: center; }
.credentials-layout > div > p:last-child { color: var(--ink-soft); }
.credential-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.credential-list li { padding: 1.2rem 0; display: grid; grid-template-columns: 110px 1fr; align-items: center; border-bottom: 1px solid var(--line); }
.credential-list span { color: var(--green); font-size: .8rem; font-weight: 700; letter-spacing: .12em; }
.credential-list strong { font-family: var(--serif); font-size: 1.07rem; font-weight: 500; }

.fees-section { background: #f2ede3; }
.fees-section > .container > h2, .fees-section > .container > .section-kicker, .fees-section > .container > .section-intro { text-align: center; margin-inline: auto; }
.fees-layout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr); gap: 1.5rem; align-items: start; }
.fee-table-wrap { padding: 2.2rem; background: var(--ivory); border: 1px solid var(--line); }
.fee-table-wrap table { width: 100%; border-collapse: collapse; }
.fee-table-wrap caption { padding: 0 0 1.1rem; text-align: left; font-family: var(--serif); font-size: 1.35rem; }
.fee-table-wrap th, .fee-table-wrap td { padding: 1rem .8rem; text-align: left; border-bottom: 1px solid var(--line); }
.fee-table-wrap thead th { color: var(--green); background: #f0ede5; font-size: .8rem; }
.fee-table-wrap th { font-weight: 500; }
.fee-table-wrap td { text-align: right; white-space: nowrap; }
.fee-table-wrap td small { display: block; color: var(--ink-soft); font-size: .75rem; }
.fee-table-wrap .highlight-row { background: #eef1e7; }
.fee-table-wrap > p { margin: 1rem 0 0; color: var(--ink-soft); font-size: .8rem; }
.area-card { padding: 2.2rem; color: #fff; background: var(--green); }
.area-label { margin-bottom: .25rem; color: #dce4d2; font-size: .78rem; letter-spacing: .12em; }
.area-card h3 { margin-bottom: 1.5rem; font-size: 2.2rem; }
.area-card dl { margin: 0; }
.area-card dl div { padding: 1.2rem 0; border-top: 1px solid rgba(255,255,255,.25); }
.area-card dt { margin-bottom: .35rem; color: #dce4d2; font-size: .8rem; }
.area-card dd { margin: 0; font-family: var(--serif); font-size: 1.05rem; }
.area-note { margin: 1rem 0 0; color: #e2e8dc; font-size: .78rem; }

.flow-section { background: var(--ivory); }
.flow-section > .container > h2, .flow-section > .container > .section-kicker, .flow-section > .container > .section-intro { text-align: center; margin-inline: auto; }
.flow-list { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; counter-reset: flow; }
.flow-list li { position: relative; min-height: 195px; padding: 1.5rem; border: 1px solid var(--line); margin: -1px 0 0 -1px; background: #fbf9f4; }
.flow-list li::after { content: ""; position: absolute; right: -5px; top: 43px; z-index: 2; width: 9px; height: 9px; background: var(--gold); border-radius: 50%; }
.flow-list li:nth-child(4n)::after, .flow-list li:last-child::after { display: none; }
.flow-list span { color: var(--gold); font: .78rem/1 var(--serif); }
.flow-list h3 { margin: .65rem 0 .6rem; font-size: 1.08rem; }
.flow-list p { margin: 0; color: var(--ink-soft); font-size: .9rem; line-height: 1.7; }

.faq-section { background: #f5f1e8; }
.faq-section h2, .faq-section .section-kicker { text-align: center; }
.accordion { margin-top: 3rem; border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { position: relative; padding: 1.55rem 3.5rem 1.55rem 3.2rem; cursor: pointer; list-style: none; font-family: var(--serif); font-size: 1.08rem; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::before { content: "Q"; position: absolute; left: .8rem; color: var(--green); font-family: Georgia, serif; font-size: 1.3rem; }
.accordion summary::after { content: "+"; position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); color: var(--green); font-family: var(--sans); font-size: 1.35rem; }
.accordion details[open] summary::after { content: "−"; }
.accordion details p { margin: 0; padding: 0 3rem 1.6rem 3.2rem; color: var(--ink-soft); }

.contact-section { padding: clamp(5.5rem, 9vw, 8rem) 0; color: #fff; text-align: center; background: var(--green-dark); }
.contact-inner { width: min(790px, calc(100% - 3rem)); }
.contact-inner h2 { color: #fff; }
.contact-lead { font-family: var(--serif); font-size: 1.24rem; }
.contact-inner > p:not(.section-kicker, .contact-status, .contact-lead) { color: #e6eadf; }
.button-light { margin-top: 1.2rem; color: var(--green-dark); background: #fff; box-shadow: 0 12px 30px rgba(0,0,0,.16); }
.contact-status { margin: 1rem 0 0; color: #dce4d3; font-size: .8rem; }
.contact-methods { display: flex; justify-content: center; flex-wrap: wrap; gap: .75rem 1.5rem; margin: 1.3rem 0 0; padding: 0; color: #dce4d3; font-size: .83rem; list-style: none; }

footer { padding: 3rem 0 6rem; background: #252d22; color: #dce4d3; }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center; }
.footer-brand { color: #fff; }
.footer-brand .brand-mark { stroke: #abb99a; }
.footer-brand small { color: #abb99a; }
.footer-inner > p { grid-column: 1; margin: 0; font-size: .83rem; }
.footer-inner > small { grid-column: 2; grid-row: 1 / span 2; color: #99a38f; }
.mobile-fixed-cta { display: none; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .hero-inner { grid-template-columns: 1fr .72fr; gap: 2.5rem; }
  .hero h1 { font-size: clamp(2rem, 4.4vw, 3rem); }
  .hero-visual { height: 67vh; }
  .hero-points { grid-template-columns: 1fr; max-width: 420px; }
  .hero-points li { min-height: 60px; justify-content: flex-start; }
  .paper-note { width: 185px; min-height: 110px; padding: 1rem; }
  .split-heading, .support-layout, .credentials-layout { gap: 3rem; }
  .flow-list { grid-template-columns: repeat(2, 1fr); }
  .flow-list li:nth-child(4n)::after { display: block; }
  .flow-list li:nth-child(2n)::after { display: none; }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 4.4rem; }
  body { padding-bottom: 68px; font-size: 1rem; }
  .container, .container.narrow { width: min(100% - 2rem, 620px); }
  .section { padding: 5rem 0; }
  h2 { font-size: clamp(1.75rem, 7vw, 2.35rem); line-height: 1.55; }
  .site-header { height: 68px; }
  .header-inner { width: calc(100% - 2rem); }
  .brand-mark { width: 29px; height: 29px; }
  .brand small { font-size: .58rem; }
  .brand strong { font-size: .86rem; }
  .mobile-nav { inset: 68px 0 auto; }

  .hero { min-height: auto; padding-top: 68px; }
  .hero-paper { background: linear-gradient(180deg, #f8f4ec 0 54%, transparent 78%); }
  .hero-inner { width: 100%; min-height: auto; display: flex; flex-direction: column; gap: 0; }
  .hero-copy { width: min(100% - 2rem, 580px); padding: 3.1rem 0 1.5rem; text-align: center; }
  .eyebrow { margin-bottom: 1.35rem; font-size: .7rem; }
  .hero h1 { font-size: clamp(1.6rem, 8vw, 2.8rem); line-height: 1.55; letter-spacing: .045em; }
  .hero h1 span { font-size: .76em; }
  .ornament { width: 170px; margin: 1.3rem auto 1rem; }
  .hero-lead { font-size: 1.18rem; line-height: 1.75; }
  .hero-body { font-size: .94rem; text-align: left; }
  .hero-points { grid-template-columns: repeat(3, 1fr); max-width: none; gap: .45rem; }
  .hero-points li { min-height: 86px; padding: .55rem .3rem; display: flex; flex-direction: column; justify-content: center; gap: .3rem; }
  .hero-points li > span:last-child { display: grid; text-align: center; }
  .hero-points strong { font-size: .78rem; }
  .hero-points small { font-size: .68rem; }
  .hero-points svg, .point-icon { width: 24px; height: 24px; }
  .hero-button { display: none; }
  .hero-visual { width: 100%; height: 68vh; min-height: 520px; border-radius: 0; box-shadow: none; }
  .hero-visual img { object-position: 53% 57%; }
  .paper-note { bottom: 15%; }
  .scroll-cue { display: none; }

  .concern-grid, .choice-grid, .services-grid { grid-template-columns: 1fr; }
  .concern-grid article { grid-template-columns: 38px 1fr; }
  blockquote { padding: 2rem 1.25rem; }
  blockquote p { font-size: 1.02rem; }
  blockquote strong { font-size: 1.1rem; }

  .split-heading, .support-layout, .credentials-layout { grid-template-columns: 1fr; gap: 2rem; }
  .split-heading { margin-bottom: 2.5rem; }
  .check-grid { grid-template-columns: repeat(2, 1fr); }
  .check-grid li { min-height: 160px; padding: 1.5rem .75rem; }
  .check-grid li:nth-child(3n) { border-right: 1px solid var(--line); }
  .check-grid li:nth-child(2n) { border-right: 0; }
  .check-grid li:nth-child(n+4) { border-bottom: 1px solid var(--line); }
  .check-grid li:nth-child(n+5) { border-bottom: 0; }
  .check-grid strong { font-size: .92rem; }
  .choice-grid article.featured { transform: none; }

  .support-section { padding: 5rem 0; }
  .support-list strong { font-size: 1rem; }
  .service-card { min-height: auto; padding: 2rem; }
  .service-card p { max-width: 100%; }
  .credential-list li { grid-template-columns: 78px 1fr; }
  .fees-layout { grid-template-columns: 1fr; }
  .fee-table-wrap { padding: 1rem; overflow-x: auto; }
  .fee-table-wrap th, .fee-table-wrap td { padding: .85rem .55rem; font-size: .88rem; }
  .flow-list { grid-template-columns: 1fr; }
  .flow-list li { min-height: auto; display: grid; grid-template-columns: 45px 1fr; }
  .flow-list li::after { right: auto; left: 29px; top: auto; bottom: -5px; }
  .flow-list li:nth-child(2n)::after, .flow-list li:nth-child(4n)::after { display: block; }
  .flow-list li:last-child::after { display: none; }
  .flow-list h3 { margin-top: 0; }
  .accordion summary { padding-left: 2.6rem; padding-right: 2.5rem; font-size: 1rem; }
  .accordion details p { padding-left: 2.6rem; padding-right: .5rem; }
  .accordion summary::before { left: .35rem; }
  .contact-inner { width: min(100% - 2rem, 620px); }
  .button-light { width: 100%; }
  .footer-inner { display: flex; flex-direction: column; align-items: flex-start; }
  .footer-inner > small { margin-top: .7rem; }
  .mobile-fixed-cta { position: fixed; z-index: 90; left: 12px; right: 12px; bottom: 10px; min-height: 54px; display: flex; align-items: center; justify-content: center; gap: 1rem; color: #fff; background: linear-gradient(135deg, #718061, #4d5d41); border: 1px solid rgba(255,255,255,.55); border-radius: 999px; box-shadow: 0 8px 28px rgba(44,53,37,.33); font-family: var(--serif); font-size: .95rem; text-decoration: none; }
  .mobile-fixed-cta span { font-size: 1.55rem; line-height: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media print {
  .site-header, .mobile-fixed-cta, .scroll-cue { display: none !important; }
  .hero { padding-top: 0; }
  body { padding: 0; }
}
