:root {
  --ink: #201f1b;
  --muted: #625f57;
  --line: #dcd7cd;
  --paper: #f7f5ef;
  --sand: #eee8dc;
  --green: #233a31;
  --green-light: #dce5df;
  --moss: #466151;
  --gold: #a88450;
  --white: #fff;
  --line-green: #06c755;
  --danger: #9a3429;
  --serif: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  --sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
  --shadow: 0 18px 48px rgba(33, 39, 33, .1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
body, button, input, select, textarea { font-family: var(--sans); }
body > main { overflow: clip; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-underline-offset: .2em; }
button, input, select, textarea { font-size: 16px; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #d99d34; outline-offset: 3px; }
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 20000;
  padding: 10px 14px;
  color: #fff;
  background: var(--green);
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }
.container { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.container--narrow { width: min(860px, calc(100% - 40px)); }
.section { padding: 92px 0; }
.section--paper { background: var(--paper); }
.section--sand { background: var(--sand); }
.section--green { color: #fff; background: var(--green); }
.section--contact { background: #ebe5d9; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; }
h1 { margin-bottom: 22px; font-size: clamp(38px, 5vw, 65px); line-height: 1.3; letter-spacing: .025em; }
h2 { margin-bottom: 18px; font-size: clamp(29px, 3.5vw, 44px); line-height: 1.48; letter-spacing: .02em; }
h3 { line-height: 1.5; }
.section-heading { margin-bottom: 42px; }
.section-heading > p:last-child,
.section-heading > div > p:last-child { max-width: 48em; margin-bottom: 0; color: var(--muted); }
.section-heading--split { display: grid; grid-template-columns: 190px minmax(0, 740px); gap: 54px; align-items: start; }
.section-heading--split > .eyebrow { padding-top: 12px; }

/* Existing-site header compatibility */
.uf-header-v2 {
  position: sticky !important;
  top: 0 !important;
  z-index: 10000 !important;
  width: 100% !important;
  height: 64px !important;
  color: var(--ink) !important;
  border-bottom: 1px solid #e6e2da !important;
  background: rgba(255, 255, 255, .96) !important;
  backdrop-filter: blur(12px) !important;
}
.uf-header-v2 * { box-sizing: border-box; }
.uf-header-inner { width: min(1180px, 100%) !important; height: 64px !important; margin: 0 auto !important; padding: 0 24px !important; align-items: center !important; }
.uf-brand-v2 { color: var(--ink) !important; text-decoration: none !important; font-size: 13px !important; font-weight: 600 !important; letter-spacing: .18em !important; }
.uf-header-actions { display: flex !important; align-items: center !important; gap: 8px !important; }
.uf-header-actions a { min-height: 38px; padding: 0 15px; display: inline-flex; align-items: center; text-decoration: none; font-size: 12px; letter-spacing: .06em; }
.uf-shop-link { color: var(--muted); border: 1px solid var(--line); background: #fff; }
.uf-contact-link { color: #fff; border: 1px solid var(--green); background: var(--green); }
.uf-drawer-social a[aria-label="LINE"] { background-color: #fff; }

.hero { min-height: calc(100svh - 64px); display: grid; grid-template-columns: minmax(0, 1fr) minmax(440px, .92fr); background: #fff; }
.hero__content { max-width: 720px; padding: clamp(54px, 8vw, 108px) 24px 72px max(24px, calc((100vw - 1180px) / 2)); align-self: center; }
.hero h1 { font-size: clamp(38px, 4.6vw, 56px); letter-spacing: .015em; }
.hero__lead { max-width: 39em; margin-bottom: 0; color: var(--muted); font-family: var(--serif); font-size: clamp(17px, 1.55vw, 21px); line-height: 1.9; }
.hero__points { margin-top: 25px; display: flex; flex-wrap: wrap; gap: 8px; }
.hero__points span { padding: 7px 11px; color: var(--green); border: 1px solid #b8c8bf; background: #f4f8f5; font-size: 12px; font-weight: 700; }
.hero__actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; }
.button {
  min-height: 52px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .04em;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button--primary { color: #fff; background: var(--green); border-color: var(--green); }
.button--phone { color: var(--green); background: #fff; border-color: var(--green); }
.button--line { color: #fff; background: #058f42; border-color: #058f42; }
.button--light { color: var(--green); background: #fff; border-color: #fff; }
.microcopy { max-width: 49em; margin: 17px 0 0; color: #77736b; font-size: 12px; line-height: 1.7; }
.hero__visual { position: relative; min-height: 620px; overflow: hidden; background: var(--sand); }
.hero__visual > img { width: 100%; height: 100%; object-fit: cover; }
.hero__caption { position: absolute; right: 0; bottom: 0; left: 0; padding: 24px 30px; color: #fff; background: linear-gradient(180deg, transparent, rgba(20, 29, 25, .9)); }
.hero__caption strong, .hero__caption span { display: block; }
.hero__caption strong { margin-bottom: 3px; font-family: var(--serif); font-size: 20px; }
.hero__caption span { font-size: 12px; }

.contract-alert { color: #fff; background: #9b3e2e; }
.contract-alert__inner { min-height: 110px; padding-block: 20px; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 22px; align-items: center; }
.contract-alert__badge { width: 52px; height: 52px; display: grid; place-items: center; flex: 0 0 auto; color: #9b3e2e; border-radius: 50%; background: #fff; font-size: 13px; font-weight: 800; }
.contract-alert h2 { margin: 0 0 3px; font-family: var(--sans); font-size: 19px; font-weight: 800; line-height: 1.4; }
.contract-alert p { margin: 0; font-size: 13px; line-height: 1.65; }
.contract-alert a { padding: 9px 0; font-size: 13px; font-weight: 700; white-space: nowrap; }

.check-grid { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 26px; list-style: none; }
.check-grid li { min-height: 58px; padding: 13px 16px 13px 49px; position: relative; display: flex; align-items: center; border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, .6); }
.check-grid li::before { content: "✓"; position: absolute; left: 17px; color: var(--moss); font-size: 18px; font-weight: 800; }

.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 250px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.service-card > span { color: var(--gold); font-family: var(--serif); font-size: 24px; }
.service-card h3 { margin: 34px 0 11px; font-size: 22px; }
.service-card p { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.legal-split { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.legal-split > div { padding: 25px 28px; border-left: 4px solid var(--gold); background: var(--paper); }
.legal-split strong { font-family: var(--serif); font-size: 18px; }
.legal-split p { margin: 7px 0 0; color: var(--muted); font-size: 13px; }

.section--green .eyebrow { color: #d9bd8e; }
.subsidy-header { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 58px; align-items: end; }
.subsidy-header h2 { margin-bottom: 0; }
.subsidy-lead { margin-bottom: 9px; padding: 22px; border: 1px solid rgba(255,255,255,.3); font-family: var(--serif); font-size: 18px; line-height: 1.6; }
.subsidy-caution { margin: 28px 0; padding: 14px 18px; color: #312b22; background: #f5dfb7; font-size: 13px; font-weight: 700; }
.table-wrap { overflow-x: auto; border: 1px solid rgba(255,255,255,.25); }
table { width: 100%; border-collapse: collapse; background: rgba(255,255,255,.04); }
th, td { padding: 16px 18px; border-bottom: 1px solid rgba(255,255,255,.17); text-align: left; vertical-align: top; }
tr:last-child th, tr:last-child td { border-bottom: 0; }
th { width: 175px; color: #ecd4aa; font-size: 13px; }
td { font-size: 14px; }
.official-box { margin-top: 26px; padding: 28px; display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center; color: var(--ink); background: #fff; }
.official-box strong { font-family: var(--serif); font-size: 20px; }
.official-box p { margin: 6px 0 0; color: var(--muted); font-size: 13px; }
.official-box__actions { display: grid; gap: 10px; text-align: center; }
.official-box__actions .button { color: #fff; background: var(--green); border-color: var(--green); }
.official-box__actions > a:last-child { color: var(--green); font-size: 13px; font-weight: 700; }
.government-note { margin: 18px 0 0; color: #ddd8cd; font-size: 12px; }

.flow-list { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); counter-reset: flow; list-style: none; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.flow-list li { min-height: 205px; padding: 25px; position: relative; counter-increment: flow; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.flow-list li::before { content: counter(flow, decimal-leading-zero); display: block; margin-bottom: 29px; color: var(--gold); font-family: var(--serif); font-size: 23px; }
.flow-list strong { font-family: var(--serif); font-size: 18px; }
.flow-list p { margin: 7px 0 0; color: var(--muted); font-size: 13px; }
.flow-list__important { color: #fff; background: #9b3e2e !important; }
.flow-list__important::before, .flow-list__important p { color: #fff !important; }
.deadline-note { margin-top: 24px; padding: 22px 26px; display: grid; grid-template-columns: 190px 1fr; gap: 20px; border: 1px solid var(--line); background: #fff; }
.deadline-note strong { font-family: var(--serif); font-size: 18px; }
.deadline-note p { margin: 0; color: var(--muted); font-size: 13px; }

.category-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.category-grid span { min-height: 76px; padding: 16px; display: grid; place-items: center; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; font-family: var(--serif); font-size: 15px; }
.record-card { margin-top: 42px; display: grid; grid-template-columns: .9fr 1.1fr; border: 1px solid var(--line); background: var(--paper); }
.record-card img { width: 100%; height: 100%; max-height: 360px; object-fit: cover; }
.record-card > div { padding: clamp(28px, 5vw, 54px); align-self: center; }
.record-card h3 { margin: 0 0 12px; font-size: clamp(23px, 2.5vw, 32px); }
.record-card p:not(.eyebrow) { color: var(--muted); }
.record-card a { color: var(--green); font-weight: 700; }

.remote-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 74px; align-items: center; }
.remote-grid > div > p:last-child { margin-bottom: 0; color: var(--muted); }
.remote-grid ul { margin: 0; padding: 28px 34px; list-style: none; background: rgba(255,255,255,.7); box-shadow: var(--shadow); }
.remote-grid li { padding: 13px 0 13px 30px; position: relative; border-bottom: 1px solid var(--line); }
.remote-grid li:last-child { border-bottom: 0; }
.remote-grid li::before { content: "●"; position: absolute; left: 2px; color: var(--gold); font-size: 9px; }

.faq-list { display: grid; gap: 10px; }
.faq-list details { border: 1px solid var(--line); background: #fff; }
.faq-list summary { padding: 21px 58px 21px 24px; position: relative; cursor: pointer; font-family: var(--serif); font-size: 17px; font-weight: 600; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 50%; right: 23px; color: var(--gold); font-family: var(--sans); font-size: 24px; font-weight: 300; transform: translateY(-50%); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0; padding: 0 24px 23px; color: var(--muted); font-size: 14px; }

.contact-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(480px, 1.15fr); gap: 64px; align-items: start; }
.contact-copy { position: sticky; top: 100px; }
.contact-copy > p:not(.eyebrow) { color: var(--muted); }
.contact-direct { margin-top: 32px; display: grid; gap: 9px; }
.contact-direct a { min-height: 76px; padding: 13px 18px; display: flex; align-items: center; justify-content: space-between; color: #fff; background: var(--green); text-decoration: none; }
.contact-direct a:nth-child(2) { background: #058f42; }
.contact-direct span { font-size: 12px; }
.contact-direct strong { font-size: 18px; }
.contact-note { margin-top: 15px; font-size: 12px; }
.contact-form { padding: clamp(25px, 5vw, 46px); background: #fff; box-shadow: var(--shadow); }
.field, .field-row, .consent { margin-bottom: 23px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field-row .field { margin-bottom: 0; }
.field label, fieldset legend { display: block; margin-bottom: 7px; color: #302f2b; font-size: 13px; font-weight: 700; }
.field label em { padding: 2px 6px; color: #fff; background: var(--danger); font-size: 10px; font-style: normal; }
.field label span, fieldset legend span { color: var(--muted); font-size: 11px; font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  color: var(--ink);
  border: 1px solid #bdb8ae;
  border-radius: 0;
  background: #fff;
}
.field textarea { min-height: 145px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(35,58,49,.12); outline: 0; }
.field [aria-invalid="true"] { border-color: var(--danger); }
.field-help { margin: -15px 0 23px; color: var(--muted); font-size: 11px; }
fieldset.field { padding: 0; border: 0; }
.checkbox-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.checkbox-grid label { margin: 0; }
.checkbox-grid input { width: 1px; height: 1px; min-height: 0; position: absolute; opacity: 0; pointer-events: none; }
.checkbox-grid span { min-height: 47px; padding: 10px 12px 10px 39px; position: relative; display: flex; align-items: center; border: 1px solid var(--line); background: var(--paper); font-size: 13px; font-weight: 500; cursor: pointer; }
.checkbox-grid span::before { content: ""; width: 17px; height: 17px; position: absolute; left: 12px; border: 1px solid #99958d; background: #fff; }
.checkbox-grid input:checked + span { color: var(--green); border-color: var(--green); background: var(--green-light); }
.checkbox-grid input:checked + span::before { content: "✓"; display: grid; place-items: center; color: #fff; border-color: var(--green); background: var(--green); font-size: 11px; font-weight: 900; }
.checkbox-grid input:focus-visible + span { outline: 3px solid #d99d34; outline-offset: 2px; }
.consent { display: flex; gap: 9px; align-items: flex-start; font-size: 13px; }
.consent input { width: 18px; height: 18px; margin-top: 5px; flex: 0 0 auto; accent-color: var(--green); }
.button--submit { width: 100%; color: #fff; border-color: var(--green); background: var(--green); }
.form-footnote { margin: 12px 0 0; color: var(--muted); font-size: 11px; text-align: center; }
.form-status { margin-bottom: 22px; padding: 13px 15px; border-left: 4px solid var(--danger); background: #fff1ee; color: #6d281f; font-size: 13px; }
.hp-field { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; }

.site-footer { padding: 68px 0 116px; color: #e8e3d9; background: #191d1a; }
.site-footer__grid { display: grid; grid-template-columns: 1.2fr 1fr 1.2fr .8fr; gap: 38px; }
.site-footer__brand { display: inline-block; margin-bottom: 16px; color: #fff; text-decoration: none; font-family: var(--serif); font-size: 24px; letter-spacing: .15em; }
.site-footer strong { display: block; margin-bottom: 10px; color: #cdbf9f; font-size: 12px; letter-spacing: .08em; }
.site-footer p, .site-footer address, .site-footer a, .site-footer small { color: #b6b9b5; font-size: 12px; font-style: normal; line-height: 1.9; }
.site-footer nav { display: grid; align-content: start; }
.site-footer nav a { padding: 3px 0; }
.site-footer__notice { margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); }
.site-footer__notice p { margin: 3px 0; font-size: 11px; }

.fixed-cta { position: fixed; right: 18px; bottom: 18px; z-index: 9990; display: grid; grid-template-columns: repeat(3, auto); box-shadow: 0 10px 36px rgba(20,28,23,.26); }
.fixed-cta a { min-width: 116px; min-height: 58px; padding: 8px 15px; display: grid; align-content: center; color: #fff; border-right: 1px solid rgba(255,255,255,.25); background: var(--green); text-decoration: none; text-align: center; }
.fixed-cta a:nth-child(2) { background: #058f42; }
.fixed-cta a:last-child { border-right: 0; background: #9b3e2e; }
.fixed-cta span, .fixed-cta strong { display: block; line-height: 1.35; }
.fixed-cta span { font-size: 9px; }
.fixed-cta strong { font-size: 13px; }

.legal-back { color: var(--muted); text-decoration: none; font-size: 12px; justify-self: start; }
.legal-main { padding: 76px 0 96px; background: var(--paper); }
.legal-main h1 { margin-bottom: 26px; font-size: clamp(37px, 5vw, 55px); }
.legal-lead { margin-bottom: 48px; color: var(--muted); font-family: var(--serif); font-size: 18px; }
.legal-main section { margin: 0 0 17px; padding: 28px 30px; border: 1px solid var(--line); background: #fff; }
.legal-main section h2 { margin-bottom: 10px; font-family: var(--sans); font-size: 18px; font-weight: 700; }
.legal-main section p, .legal-main section li, .legal-main address { color: var(--muted); font-size: 14px; }
.legal-main section p:last-child, .legal-main section ul { margin-bottom: 0; }
.legal-main address { font-style: normal; }
.legal-date { margin: 28px 0; color: var(--muted); font-size: 12px; }
.legal-footer { padding: 32px 0; }
.thanks-main { min-height: calc(100svh - 64px); padding: 64px 20px; display: grid; place-items: center; background: var(--paper); }
.thanks-card { width: min(720px, 100%); padding: clamp(34px, 7vw, 72px); border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); text-align: center; }
.thanks-card h1 { font-size: clamp(31px, 5vw, 48px); }
.thanks-card > p:not(.eyebrow) { color: var(--muted); }
.thanks-actions { margin-top: 30px; display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; }

@media (max-width: 980px) {
  .hero { min-height: 0; grid-template-columns: 1fr; }
  .hero__content { max-width: none; padding: 60px max(24px, calc((100vw - 760px) / 2)) 44px; }
  .hero__visual { min-height: 480px; }
  .service-grid, .flow-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .subsidy-header { grid-template-columns: 1fr; gap: 20px; }
  .subsidy-lead { max-width: 480px; }
  .category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-copy { position: static; }
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 72px; }
  body { font-size: 15px; padding-bottom: 66px; }
  .container, .container--narrow { width: min(100% - 30px, 600px); }
  .section { padding: 64px 0; }
  .uf-header-v2, .uf-header-inner { height: 58px !important; }
  .uf-header-inner { padding: 0 14px !important; }
  .uf-header-actions { display: none !important; }
  h1 { font-size: clamp(34px, 10.5vw, 46px); line-height: 1.34; }
  h2 { font-size: clamp(27px, 8vw, 35px); }
  .section-heading { margin-bottom: 30px; }
  .section-heading--split { grid-template-columns: 1fr; gap: 5px; }
  .section-heading--split > .eyebrow { padding-top: 0; }
  .hero__content { padding: 48px 20px 36px; }
  .hero__lead { font-size: 17px; }
  .hero__actions { display: grid; grid-template-columns: 1fr 1fr; }
  .hero__actions .button:first-child { grid-column: 1 / -1; }
  .hero__actions .button { min-height: 50px; padding-inline: 10px; font-size: 13px; }
  .hero__visual { min-height: 360px; }
  .hero__caption { padding: 50px 20px 17px; }
  .contract-alert__inner { padding-block: 19px; grid-template-columns: auto 1fr; gap: 14px; }
  .contract-alert__badge { width: 42px; height: 42px; }
  .contract-alert h2 { font-size: 16px; }
  .contract-alert p { font-size: 12px; }
  .contract-alert a { grid-column: 2; justify-self: start; }
  .check-grid, .legal-split, .remote-grid, .record-card { grid-template-columns: 1fr; }
  .service-grid, .flow-list { grid-template-columns: 1fr; }
  .service-card { min-height: 0; padding: 25px; }
  .service-card h3 { margin-top: 20px; }
  .legal-split > div { padding: 22px; }
  .table-wrap { margin-right: -15px; }
  table { min-width: 640px; }
  th { width: 150px; }
  .official-box { padding: 23px; grid-template-columns: 1fr; gap: 20px; }
  .deadline-note { grid-template-columns: 1fr; gap: 6px; }
  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-grid span { min-height: 68px; font-size: 14px; }
  .record-card img { max-height: 270px; }
  .record-card > div { padding: 25px; }
  .remote-grid { gap: 28px; }
  .remote-grid ul { padding: 20px 23px; }
  .contact-form { padding: 25px 18px; }
  .field-row, .checkbox-grid { grid-template-columns: 1fr; }
  .field-row { gap: 20px; }
  .site-footer { padding: 52px 0 32px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .fixed-cta { right: 0; bottom: 0; left: 0; grid-template-columns: repeat(3, 1fr); box-shadow: 0 -5px 22px rgba(20,28,23,.22); }
  .fixed-cta a { min-width: 0; min-height: 66px; padding: 7px 5px calc(7px + env(safe-area-inset-bottom)); }
  .legal-main { padding: 52px 0 64px; }
  .legal-main section { padding: 23px 20px; }
  .legal-back { font-size: 11px; }
  .thanks-main { min-height: calc(100svh - 58px); padding: 36px 15px; }
  .thanks-actions { display: grid; }
}

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

@media print {
  .uf-header-v2, .uf-drawer-overlay, .uf-left-drawer, .fixed-cta, .hero__actions, .contact-direct, .contact-form { display: none !important; }
  body { color: #000; background: #fff; }
  .section { padding: 28px 0; }
  .hero { min-height: 0; grid-template-columns: 1fr; }
  .hero__visual { min-height: 260px; }
}
