:root {
  --ink: #18332b;
  --deep: #112b24;
  --night: #17211e;
  --paper: #f6f2e9;
  --sand: #e4d9c9;
  --line: rgba(24, 51, 43, .2);
  --clay: #a35f3d;
  --clay-dark: #7d442c;
  --gold: #c5a36a;
  --white: #fffdf8;
  --serif: "Noto Serif TC", "Songti TC", "PMingLiU", serif;
  --sans: "Noto Sans TC", "Microsoft JhengHei UI", "Microsoft JhengHei", sans-serif;
  --latin: "Avenir Next", "Segoe UI", Arial, sans-serif;
  --max: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: .025em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .18;
  background-image: radial-gradient(rgba(24, 51, 43, .18) .55px, transparent .55px);
  background-size: 5px 5px;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 8px 14px;
  color: var(--white);
  background: var(--deep);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 88px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(246, 242, 233, .95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-right: 28px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 19px;
  border: 1px solid var(--ink);
}

.brand strong,
.brand small { display: block; line-height: 1.35; }

.brand strong {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: .12em;
}

.brand small {
  margin-top: 3px;
  font-size: 8px;
  letter-spacing: .18em;
}

.desktop-nav { display: flex; }

.desktop-nav a {
  min-width: 110px;
  display: grid;
  place-items: center;
  padding: 0 20px;
  font-size: 12px;
  letter-spacing: .12em;
  border-left: 1px solid var(--line);
  transition: color .25s, background .25s;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible { background: var(--sand); }

.desktop-nav .nav-cta {
  color: var(--white);
  background: var(--clay);
}

.desktop-nav .nav-cta:hover,
.desktop-nav .nav-cta:focus-visible { background: var(--clay-dark); }

.mobile-menu { display: none; }

.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 52%) minmax(0, 48%);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(32px, 7vw, 140px) 68px max(32px, calc((100vw - var(--max)) / 2));
}

.eyebrow {
  margin: 0 0 26px;
  color: var(--clay);
  font-family: var(--latin), var(--sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 42px;
  margin: 0 12px 3px 0;
  border-top: 1px solid currentColor;
}

.hero h1,
.hero-statement,
.section h2,
.subsidy h2,
.process h2,
.consult h2 {
  font-family: var(--serif);
  font-weight: 500;
}

.hero h1 {
  margin: 0;
  font-size: clamp(50px, 3.3vw, 62px);
  line-height: 1.3;
  letter-spacing: .025em;
}

.hero h1 span { display: inline-block; white-space: nowrap; }

.hero-statement {
  margin: 27px 0 0;
  padding-left: 20px;
  color: var(--clay);
  font-family: var(--sans);
  font-size: clamp(20px, 1.45vw, 27px);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: .1em;
  border-left: 2px solid rgba(163, 95, 61, .45);
}

.hero-lead {
  max-width: 540px;
  margin: 30px 0 0;
  color: rgba(24, 51, 43, .78);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: .045em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.button {
  min-height: 53px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  border: 1px solid var(--ink);
  transition: transform .2s, background .2s, color .2s;
}

.button:hover,
.button:focus-visible { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--deep); }
.button-primary:hover { background: var(--clay); border-color: var(--clay); }
.button-ghost:hover { color: var(--white); background: var(--ink); }

.hero-note {
  max-width: 590px;
  margin: 25px 0 0;
  color: rgba(24, 51, 43, .56);
  font-size: 11px;
}

.hero-visual {
  position: relative;
  min-height: 720px;
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--deep);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 5%;
  border: 1px solid rgba(255, 253, 248, .35);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 88px);
  padding: 6%;
  object-fit: contain;
  filter: saturate(.78) contrast(1.02);
}

.hero-visual figcaption {
  position: absolute;
  right: 8%;
  bottom: 7%;
  display: grid;
  gap: 4px;
  padding: 17px 20px;
  color: var(--white);
  text-align: right;
  background: rgba(17, 43, 36, .84);
  backdrop-filter: blur(6px);
}

.hero-visual figcaption span { font-size: 8px; letter-spacing: .22em; }
.hero-visual figcaption strong { font-family: var(--serif); font-size: 18px; font-weight: 500; }

.numbers {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 24px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.numbers article {
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.numbers article:nth-child(3) { border-right: 0; }
.numbers strong { font-family: var(--serif); font-size: clamp(42px, 4vw, 64px); font-weight: 500; line-height: 1; }
.numbers strong span { font-size: .45em; }
.numbers sup { color: var(--clay); font-size: .34em; vertical-align: top; }
.numbers article > span { color: rgba(24, 51, 43, .62); font-size: 12px; line-height: 1.7; }
.numbers > p { grid-column: 1 / -1; margin: 0; padding: 13px 24px; color: rgba(24, 51, 43, .55); font-size: 10px; text-align: center; border-top: 1px solid var(--line); }

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 140px 24px;
}

.section-heading {
  max-width: 650px;
  margin-bottom: 66px;
}

.section-heading h2,
.subsidy-intro h2,
.service-story h2,
.process h2,
.consult h2 {
  margin: 0;
  font-size: clamp(38px, 3.7vw, 56px);
  line-height: 1.42;
  letter-spacing: .045em;
}

.section-heading > p:last-child,
.subsidy-intro > p:last-child {
  color: rgba(24, 51, 43, .67);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 2;
  letter-spacing: .035em;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.check-grid article {
  min-height: 260px;
  padding: 31px 27px;
  border-right: 1px solid var(--line);
}

.check-grid article:last-child { border-right: 0; }
.check-grid span,
.service-grid span { color: var(--clay); font-family: var(--latin), var(--sans); font-size: 11px; font-weight: 700; letter-spacing: .2em; }
.check-grid h3,
.service-grid h3 { margin: 43px 0 14px; font-family: var(--sans); font-size: 18px; font-weight: 700; line-height: 1.55; letter-spacing: .055em; }
.check-grid p,
.service-grid p { margin: 0; color: rgba(24, 51, 43, .68); font-family: var(--sans); font-size: 14px; line-height: 1.95; letter-spacing: .025em; }

.eligibility-note {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 42px;
  align-items: start;
  margin-top: 34px;
  padding: 28px 32px;
  color: var(--white);
  background: var(--clay);
}

.eligibility-note strong { font-family: var(--sans); font-size: 17px; font-weight: 700; letter-spacing: .08em; }
.eligibility-note p { margin: 0; font-size: 14px; line-height: 1.95; }

.subsidy {
  padding: 140px max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--night);
}

.subsidy-intro {
  max-width: 690px;
  margin-bottom: 66px;
}

.subsidy-intro > p:last-child { color: rgba(255, 253, 248, .66); }

.subsidy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 253, 248, .23);
}

.subsidy-grid article {
  min-height: 510px;
  display: flex;
  flex-direction: column;
  padding: 38px 32px;
  border-right: 1px solid rgba(255, 253, 248, .23);
}

.subsidy-grid article:last-child { border-right: 0; }
.card-index { margin: 0 0 44px; color: var(--gold); font-family: var(--latin), var(--sans); font-size: 10px; font-weight: 700; letter-spacing: .18em; }
.subsidy-grid h3 { min-height: 100px; margin: 0; font-family: var(--sans); font-size: 22px; font-weight: 600; line-height: 1.65; letter-spacing: .045em; }
.subsidy-grid ul { margin: 31px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255, 253, 248, .16); }
.subsidy-grid li { display: grid; gap: 4px; padding: 16px 0; border-bottom: 1px solid rgba(255, 253, 248, .16); }
.subsidy-grid li span { color: rgba(255, 253, 248, .62); font-family: var(--sans); font-size: 12px; letter-spacing: .05em; }
.subsidy-grid li strong { font-family: var(--sans); font-size: 15px; font-weight: 700; letter-spacing: .03em; }
.card-note { margin: auto 0 0; padding-top: 28px; color: rgba(255, 253, 248, .56); font-family: var(--sans); font-size: 12px; line-height: 1.9; }

.assessment-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 31px;
  color: var(--night);
  background: var(--gold);
}

.assessment-strip > span { font-size: 11px; font-weight: 700; letter-spacing: .14em; }
.assessment-strip p { margin: 0; font-family: var(--sans); font-size: 14px; letter-spacing: .035em; }
.assessment-strip b { margin: 0 14px; font-weight: 400; }

.service { padding-bottom: 120px; }

.service-story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: stretch;
  margin-bottom: 80px;
  background: var(--white);
  border: 1px solid var(--line);
}

.service-story figure {
  min-height: 680px;
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--sand);
}

.service-story figure img {
  width: 100%;
  height: 100%;
  flex: 1;
  padding: 20px;
  object-fit: contain;
}

.service-story figcaption {
  padding: 13px 20px;
  color: var(--white);
  font-size: 9px;
  letter-spacing: .22em;
  background: var(--deep);
}

.service-story > div {
  align-self: center;
  padding: clamp(44px, 7vw, 86px);
}

.story-lead { margin: 28px 0 24px; padding-left: 18px; color: var(--clay); font-family: var(--sans); font-size: 18px; font-weight: 500; line-height: 1.85; letter-spacing: .06em; border-left: 2px solid rgba(163, 95, 61, .42); }
.service-story h2 { font-size: clamp(36px, 3.8vw, 54px); }
.service-story h2 span { display: inline-block; white-space: nowrap; }
.service-story > div > p:not(.eyebrow):not(.story-lead) { color: rgba(24, 51, 43, .68); font-family: var(--sans); font-size: 14px; line-height: 2; letter-spacing: .025em; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-grid article {
  min-height: 290px;
  padding: 28px 23px;
  border-right: 1px solid var(--line);
}

.service-grid article:last-child { border-right: 0; }
.service-grid h3 { margin-top: 37px; }
.service-disclaimer { margin: 20px 0 0; color: rgba(24, 51, 43, .53); font-size: 10px; text-align: right; }

.process {
  padding: 130px max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--clay-dark);
}

.process .section-heading > p:last-child { color: rgba(255, 253, 248, .67); }
.process .eyebrow { color: var(--gold); }
.process ol { display: grid; grid-template-columns: repeat(5, 1fr); margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255, 253, 248, .3); }
.process li { min-height: 250px; padding: 26px 22px; border-right: 1px solid rgba(255, 253, 248, .3); }
.process li:last-child { border-right: 0; }
.process li span { display: block; margin-bottom: 46px; color: var(--gold); font-family: var(--latin), var(--sans); font-size: 11px; font-weight: 700; letter-spacing: .18em; }
.process li strong { display: block; margin-bottom: 12px; font-family: var(--sans); font-size: 17px; font-weight: 700; line-height: 1.6; letter-spacing: .045em; }
.process li p { margin: 0; color: rgba(255, 253, 248, .65); font-family: var(--sans); font-size: 13px; line-height: 1.9; }

.faq { padding-bottom: 130px; }
.faq .section-heading { margin-bottom: 50px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 29px 60px 29px 0; cursor: pointer; font-family: var(--sans); font-size: 17px; font-weight: 700; line-height: 1.7; letter-spacing: .045em; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 24px; right: 4px; color: var(--clay); font-family: var(--sans); font-size: 26px; font-weight: 300; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 780px; margin: 0; padding: 0 0 29px; color: rgba(24, 51, 43, .68); font-family: var(--sans); font-size: 14px; line-height: 2; }
.official-links { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 42px; }
.official-links p { margin: 0 20px 0 0; font-family: var(--serif); font-size: 17px; }
.official-links a { padding: 10px 14px; font-size: 11px; border: 1px solid var(--line); }
.official-links a:hover { color: var(--white); background: var(--ink); }

.consult {
  display: grid;
  grid-template-columns: minmax(330px, .8fr) minmax(520px, 1.2fr);
  gap: clamp(50px, 8vw, 120px);
  padding: 130px max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--night);
}

.consult-intro > p:not(.eyebrow) { color: rgba(255, 253, 248, .68); font-family: var(--sans); font-size: 14px; line-height: 2; }
.consult-contact { display: grid; gap: 5px; margin-top: 45px; padding-top: 25px; border-top: 1px solid rgba(255, 253, 248, .24); }
.consult-contact span { color: var(--gold); font-size: 9px; letter-spacing: .18em; }
.consult-contact a:first-of-type { margin: 9px 0; font-family: var(--serif); font-size: 28px; }
.consult-contact a:last-child { font-size: 11px; }

.consult-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 18px;
  align-self: start;
}

.form-field { display: grid; gap: 8px; }
.form-wide { grid-column: 1 / -1; }
.form-field label { color: rgba(255, 253, 248, .8); font-size: 10px; font-weight: 700; letter-spacing: .08em; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 253, 248, .28);
  border-radius: 0;
  outline: none;
}

.form-field select { color-scheme: dark; }
.form-field textarea { min-height: 145px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.form-field ::placeholder { color: rgba(255, 253, 248, .34); }
.agreement { display: flex; gap: 10px; align-items: flex-start; color: rgba(255, 253, 248, .68); font-size: 10px; }
.agreement input { margin-top: 7px; accent-color: var(--clay); }
.submit-button { min-height: 58px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; color: var(--night); font-size: 12px; font-weight: 700; letter-spacing: .1em; cursor: pointer; background: var(--gold); border: 0; transition: background .2s; }
.submit-button:hover { background: var(--white); }
.form-status { min-height: 24px; margin: -10px 0 0; color: var(--gold); font-size: 11px; }
.trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

footer {
  max-width: var(--max);
  min-height: 190px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 40px 24px;
}

.footer-brand { font-family: var(--serif); font-size: 20px; }
footer p { margin: 5px 0 0; color: rgba(24, 51, 43, .58); font-size: 11px; }
.footer-meta { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 20px; color: rgba(24, 51, 43, .62); font-size: 10px; }
.mobile-actions { display: none; }

@media (max-width: 1060px) {
  .desktop-nav a { min-width: auto; padding: 0 15px; }
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-copy { padding-right: 42px; }
  .hero h1 { font-size: clamp(43px, 4.4vw, 50px); }
  .check-grid { grid-template-columns: 1fr 1fr; }
  .check-grid article:nth-child(2) { border-right: 0; }
  .check-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .service-grid article:nth-child(3) { border-right: 0; }
  .service-grid article:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .process ol { grid-template-columns: repeat(3, 1fr); }
  .process li:nth-child(3) { border-right: 0; }
  .process li:nth-child(-n+3) { border-bottom: 1px solid rgba(255, 253, 248, .3); }
  .consult { grid-template-columns: .75fr 1.25fr; gap: 50px; }
}

@media (max-width: 820px) {
  .site-header { min-height: 72px; padding-left: 20px; }
  .brand { padding-right: 10px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand strong { font-size: 14px; }
  .brand small { display: none; }
  .desktop-nav { display: none; }
  .mobile-menu { position: relative; display: block; }
  .mobile-menu summary { height: 72px; display: grid; place-items: center; padding: 0 22px; cursor: pointer; font-size: 11px; list-style: none; border-left: 1px solid var(--line); }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu nav { position: absolute; top: 72px; right: 0; width: min(78vw, 300px); display: grid; background: var(--paper); border: 1px solid var(--line); box-shadow: 0 16px 38px rgba(17, 43, 36, .13); }
  .mobile-menu nav a { padding: 15px 20px; font-size: 12px; border-bottom: 1px solid var(--line); }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { padding: 78px 24px 60px; }
  .hero h1 { font-size: clamp(48px, 9vw, 66px); }
  .hero-visual { min-height: 620px; }
  .hero-visual img { max-height: none; padding: 42px 8%; }
  .numbers { grid-template-columns: 1fr; padding: 0; border-left: 0; border-right: 0; }
  .numbers article { min-height: 132px; justify-content: flex-start; padding: 25px 40px; border-right: 0; border-bottom: 1px solid var(--line); }
  .numbers > p { padding: 13px 25px; }
  .section { padding: 96px 24px; }
  .section-heading { margin-bottom: 48px; }
  .eligibility-note { grid-template-columns: 1fr; gap: 10px; }
  .subsidy { padding: 96px 24px; }
  .subsidy-grid { grid-template-columns: 1fr; }
  .subsidy-grid article { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(255, 253, 248, .23); }
  .subsidy-grid article:last-child { border-bottom: 0; }
  .subsidy-grid h3 { min-height: auto; }
  .card-note { margin-top: 28px; }
  .assessment-strip { align-items: flex-start; flex-direction: column; }
  .service-story { grid-template-columns: 1fr; }
  .service-story figure { min-height: 580px; }
  .service-story > div { padding: 48px 34px; }
  .process { padding: 96px 24px; }
  .consult { grid-template-columns: 1fr; padding: 96px 24px; }
  footer { flex-direction: column; align-items: flex-start; padding-bottom: 95px; }
  .footer-meta { justify-content: flex-start; }
  .mobile-actions { position: fixed; right: 0; bottom: 0; left: 0; z-index: 45; display: grid; grid-template-columns: 1fr 1fr; min-height: 58px; padding-bottom: env(safe-area-inset-bottom); background: var(--deep); }
  .mobile-actions a { display: grid; place-items: center; color: var(--white); font-size: 12px; font-weight: 700; letter-spacing: .1em; border-right: 1px solid rgba(255, 253, 248, .25); }
  .mobile-actions a:last-child { color: var(--night); background: var(--gold); border-right: 0; }
}

@media (max-width: 560px) {
  body { letter-spacing: .025em; }
  .brand { gap: 10px; }
  .brand strong { font-size: 13px; letter-spacing: .07em; }
  .hero-copy { padding: 60px 20px; }
  .hero h1 { font-size: clamp(34px, 10.25vw, 40px); letter-spacing: .02em; }
  .hero h1 span { display: inline-block; white-space: nowrap; }
  .hero .eyebrow::before { display: block; margin: 0 0 12px; }
  .hero-statement { padding-left: 15px; font-size: 20px; line-height: 1.8; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-visual { min-height: 500px; }
  .hero-visual figcaption { right: 6%; bottom: 5%; }
  .section-heading h2,
  .subsidy-intro h2,
  .service-story h2,
  .process h2,
  .consult h2 { font-size: 36px; }
  .check-grid { grid-template-columns: 1fr; }
  .check-grid article { min-height: 220px; border-right: 0; border-bottom: 1px solid var(--line); }
  .check-grid article:nth-child(3) { border-bottom: 1px solid var(--line); }
  .check-grid article:last-child { border-bottom: 0; }
  .eligibility-note { padding: 25px; }
  .assessment-strip p { display: grid; gap: 6px; }
  .assessment-strip b { display: none; }
  .service-story figure { min-height: 480px; }
  .service-story figure img { padding: 12px; }
  .service-story > div { padding: 40px 25px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid article { min-height: 215px; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-grid article:nth-child(3) { border-bottom: 1px solid var(--line); }
  .service-grid article:last-child { border-bottom: 0; }
  .service-disclaimer { text-align: left; }
  .process ol { grid-template-columns: 1fr; }
  .process li { min-height: 190px; border-right: 0; border-bottom: 1px solid rgba(255, 253, 248, .3); }
  .process li:nth-child(3) { border-bottom: 1px solid rgba(255, 253, 248, .3); }
  .process li:last-child { border-bottom: 0; }
  .process li span { margin-bottom: 26px; }
  .official-links { align-items: stretch; flex-direction: column; }
  .official-links p { margin-bottom: 5px; }
  .consult-form { grid-template-columns: 1fr; }
  .form-wide { grid-column: 1; }
  .footer-meta { flex-direction: column; gap: 7px; }
}

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