:root {
  --ink: #172320;
  --ink-deep: #0c1512;
  --text: #48544f;
  --muted: #6f7975;
  --paper: #ffffff;
  --soft: #f5f7f4;
  --warm: #faf7f1;
  --line: #dce2de;
  --line-strong: #c9d2cc;
  --accent: #a13a31;
  --accent-dark: #7d2721;
  --green: #275b4c;
  --gold: #c29a52;
  --shadow: 0 18px 46px rgba(12, 21, 18, 0.11);
  --content: 1220px;
  --page-pad: 72px;
}

* { 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.58;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 12px max(var(--page-pad), calc((100vw - var(--content)) / 2));
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(23, 35, 32, 0.1);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease, min-height 180ms ease;
}
.site-header.scrolled {
  min-height: 70px;
  box-shadow: 0 10px 28px rgba(12, 21, 18, 0.07);
}
.brand { display: inline-flex; align-items: center; min-width: 0; }
.brand img { display: block; width: min(270px, 36vw); height: auto; }
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.82rem;
  font-weight: 750;
}
.nav > a:not(.nav-cta) { position: relative; opacity: 0.84; }
.nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: currentColor;
  transition: right 160ms ease;
}
.nav > a:hover { opacity: 1; }
.nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.nav-cta,
.primary-action { color: #fff; background: var(--accent); border-color: var(--accent); }
.primary-action:hover,
.nav-cta:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-1px); }
.secondary-action { color: #fff; border-color: rgba(255,255,255,.58); background: rgba(255,255,255,.08); }
.secondary-action:hover { border-color: #fff; background: rgba(255,255,255,.14); transform: translateY(-1px); }
.icon-button { display: none; border: 0; background: transparent; color: currentColor; cursor: pointer; }
.menu-button {
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  place-items: center;
  align-content: center;
  overflow: visible;
}
.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0;
  flex: 0 0 2px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}
.menu-button { display: none; flex-direction: column; gap: 4px; }
.menu-button[aria-expanded="true"] span:first-child { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  display: grid;
  min-height: 690px;
  height: 88vh;
  max-height: 820px;
  padding-top: 80px;
  overflow: hidden;
  color: #fff;
}
.hero-media,
.hero-shade,
.hero-content { grid-area: 1 / 1; }
.hero-media {
  z-index: 0;
  background-image: url("./assets/office-hero.jpg");
  background-position: 58% center;
  background-size: cover;
  filter: grayscale(.35) contrast(.96) brightness(.72);
  transform: scale(1.012);
}
.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8,16,13,.98) 0%, rgba(8,16,13,.94) 43%, rgba(8,16,13,.48) 74%, rgba(8,16,13,.2) 100%),
    linear-gradient(0deg, rgba(8,16,13,.66), transparent 52%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(var(--content), calc(100% - (var(--page-pad) * 2)));
  margin: 0 auto;
  padding: 104px 0 58px;
}
.eyebrow {
  margin: 0 0 15px;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-eyebrow { display: flex; align-items: center; gap: 12px; color: #f0d0be; }
.hero-eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); }
h1 { max-width: 840px; margin-bottom: 24px; font-size: 5.35rem; line-height: 0.95; }
h2 { margin-bottom: 16px; font-size: 3.15rem; line-height: 1.04; }
h3 { margin-bottom: 8px; font-size: 1.13rem; line-height: 1.26; }
.hero-copy {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255,255,255,.86);
  font-size: 1.04rem;
  line-height: 1.72;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  width: min(650px, 100%);
  margin-top: 56px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
}
.hero-proof span {
  flex: 1 1 140px;
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 12px;
  color: rgba(255,255,255,.82);
  background: rgba(8,16,13,.28);
  font-size: .77rem;
  font-weight: 800;
}

.section {
  max-width: var(--content);
  margin: 0 auto;
  padding: 104px 0;
}
.section-tight { padding-top: 88px; }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .75fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 46px;
}
.section-heading p:not(.eyebrow),
.testimonial-head > p,
.contact-copy > p:not(.eyebrow) { color: var(--text); }

.service-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.service-lead {
  position: sticky;
  top: 104px;
  padding: 26px;
  border-left: 4px solid var(--accent);
  background: var(--soft);
}
.service-lead span {
  display: block;
  margin-bottom: 18px;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
}
.service-lead p { margin: 0; color: var(--text); font-size: .9rem; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}
.service-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  min-height: 154px;
  padding: 18px 20px;
  background: #fff;
  transition: background 160ms ease, box-shadow 160ms ease;
}
.service-card:hover { background: #fbfcfa; box-shadow: 0 14px 28px rgba(12,21,18,.06); }
.service-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--green);
  border: 1px solid #afc1b8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .96rem;
}
.service-category {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.service-card p:not(.service-category) { margin-bottom: 9px; color: var(--text); font-size: .84rem; line-height: 1.48; }
.service-details {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 11px;
}
.service-details span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 8px;
  color: var(--green);
  border: 1px solid #d5ddd8;
  background: #f8faf8;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .02em;
  white-space: nowrap;
}
.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
  font-size: .75rem;
  font-weight: 850;
}
.service-card a span { transition: transform 160ms ease; }
.service-card a:hover span { transform: translateX(3px); }

.split-section {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0,.82fr) minmax(0,1.18fr);
  gap: 94px;
  padding-left: max(var(--page-pad), calc((100vw - var(--content)) / 2));
  padding-right: max(var(--page-pad), calc((100vw - var(--content)) / 2));
  background: var(--warm);
}
.split-section > div:first-child { max-width: 520px; }
.belief-lead {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.52;
}
.belief-list { display: grid; margin-top: 34px; border-bottom: 1px solid var(--line); }
.belief-list div { display: flex; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); }
.belief-list span { color: var(--accent); font-weight: 900; }
.belief-list p { margin: 0; color: var(--text); font-size: .9rem; }

.muted {
  max-width: none;
  padding-left: max(var(--page-pad), calc((100vw - var(--content)) / 2));
  padding-right: max(var(--page-pad), calc((100vw - var(--content)) / 2));
  background: var(--soft);
}
.registration-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.registration-item {
  display: flex;
  flex-direction: column;
  min-height: 232px;
  padding: 22px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--green);
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.registration-item:hover { border-color: var(--line-strong); box-shadow: 0 14px 30px rgba(12,21,18,.08); transform: translateY(-3px); }
.registration-number { display: block; margin-bottom: 30px; color: var(--accent); font-size: .67rem; font-weight: 900; letter-spacing: .12em; }
.registration-item h3 { color: var(--green); font-size: 1.18rem; }
.registration-item p { margin-bottom: 22px; color: var(--text); font-size: .82rem; }
.registration-item a { margin-top: auto; color: var(--accent); font-size: .74rem; font-weight: 850; }
.registration-item a::after { content: "\2192"; margin-left: 8px; }

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}
.timeline::before { content: ""; position: absolute; top: 21px; left: 22px; right: 22px; height: 1px; background: var(--line-strong); }
.timeline li { position: relative; min-height: 190px; padding: 0 34px 0 0; }
.timeline li:last-child { padding-right: 0; }
.timeline-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  margin-bottom: 30px;
  color: #fff;
  border: 7px solid #fff;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 1px var(--green);
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.timeline h3 { margin-bottom: 10px; color: var(--green); font-size: 1.25rem; }
.timeline p { color: var(--text); font-size: .84rem; }

.testimonials {
  max-width: none;
  padding-left: max(var(--page-pad), calc((100vw - var(--content)) / 2));
  padding-right: max(var(--page-pad), calc((100vw - var(--content)) / 2));
  background: var(--ink);
  color: #fff;
}
.testimonial-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .58fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 42px;
}
.testimonial-head .eyebrow { color: #e4bc78; }
.testimonial-head > p { color: rgba(255,255,255,.66); }
.testimonial-shell {
  display: block;
}
.testimonial-area { min-width: 0; }
.testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 14px) / 2);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  min-height: 316px;
  margin: 0;
  padding: 30px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255,255,255,.08);
  border-top: 4px solid var(--gold);
}
.quote-mark {
  display: block;
  height: 34px;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.6rem;
  line-height: .8;
}
.testimonial-card blockquote {
  margin: 24px 0 32px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  line-height: 1.55;
}
.testimonial-card figcaption {
  display: grid;
  gap: 3px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.testimonial-card figcaption strong { color: var(--green); font-size: .78rem; }
.testimonial-card figcaption span { color: var(--muted); font-size: .72rem; }
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  color: rgba(255,255,255,.7);
  font-size: .76rem;
  font-weight: 800;
}
.testimonial-progress { color: rgba(255,255,255,.52); font-weight: 650; }
.testimonial-progress [data-testimonial-count] { margin-right: 5px; color: #fff; font-weight: 850; }
.testimonial-controls > div { display: flex; gap: 8px; }
.icon-control {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}
.icon-control:hover { background: rgba(255,255,255,.1); }
.icon-control:disabled { opacity: .34; cursor: default; }
.icon-control:disabled:hover { background: transparent; }

.contact-section {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(360px,.72fr);
  gap: 84px;
  align-items: start;
}
.contact-copy { max-width: 650px; padding-top: 18px; }
.contact-lines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}
.contact-line { min-height: 98px; padding: 20px 22px 16px 0; border-bottom: 1px solid var(--line); }
.contact-line:nth-child(even) { padding-left: 22px; border-left: 1px solid var(--line); }
.contact-line > span { display: block; margin-bottom: 6px; color: var(--muted); font-size: .63rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.contact-line p, .contact-line a { margin: 0; color: var(--green); font-size: .84rem; font-weight: 800; line-height: 1.55; }
.contact-address p { color: var(--text); font-weight: 600; }
.contact-form {
  display: grid;
  gap: 16px;
  padding: 34px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  background: #fff;
  box-shadow: var(--shadow);
}
.form-heading { margin-bottom: 6px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.form-heading span { display: block; margin-bottom: 5px; color: var(--accent); font-size: .64rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.form-heading h3 { margin: 0; color: var(--green); font-size: 1.45rem; }
.contact-form label { display: grid; gap: 7px; color: var(--text); font-size: .76rem; font-weight: 850; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 0;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: #fff;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--green); }
.contact-form textarea { resize: vertical; }
.contact-form ::placeholder { color: #9aa29f; opacity: 1; }
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.form-status { min-height: 22px; margin: 0; color: var(--green); font-size: .82rem; font-weight: 850; }
.form-status[data-state="pending"] { color: var(--muted); }
.form-status[data-state="error"] { color: #b24b42; }
.contact-form button[disabled] { opacity: .7; cursor: wait; }

.consultation-modal[hidden] { display: none; }
.consultation-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 28px;
}
.consultation-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 21, 18, .74);
  backdrop-filter: blur(8px);
}
.consultation-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(360px, 1fr);
  width: min(980px, 100%);
  max-height: calc(100svh - 56px);
  overflow: auto;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 1.28rem;
  line-height: 1;
}
.modal-close:hover { border-color: var(--line-strong); background: var(--soft); }
.consultation-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 42px;
  color: #fff;
  background:
    linear-gradient(160deg, rgba(39,91,76,.96), rgba(12,21,18,.98)),
    url("./assets/office-hero.jpg") center/cover;
}
.consultation-copy .eyebrow { color: #e4bc78; }
.consultation-copy h2 { margin-bottom: 18px; font-size: 2.46rem; }
.consultation-copy p:not(.eyebrow) { color: rgba(255,255,255,.78); }
.consultation-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 44px;
}
.consultation-points span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.24);
  color: rgba(255,255,255,.84);
  font-size: .7rem;
  font-weight: 850;
}
.consultation-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  border: 0;
  border-top: 0;
  box-shadow: none;
  padding: 42px;
}
.consultation-form .form-heading,
.consultation-form .full-field,
.consultation-form .primary-action,
.consultation-form .form-status {
  grid-column: 1 / -1;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(300px,1.4fr) minmax(150px,.55fr) minmax(260px,.85fr);
  gap: 68px;
  padding: 62px max(var(--page-pad), calc((100vw - var(--content)) / 2)) 0;
  color: rgba(255,255,255,.7);
  background: var(--ink-deep);
  font-size: .8rem;
}
.footer-brand {
  display: inline-flex;
  justify-self: start;
  width: max-content;
  max-width: 100%;
  padding: 0;
  background: transparent;
}
.footer-brand img {
  width: min(242px, calc(100vw - 56px));
  filter: brightness(0) invert(1);
  opacity: .95;
}
.footer-main p { max-width: 470px; margin: 24px 0 0; line-height: 1.75; }
.footer-column { display: grid; align-content: start; gap: 10px; }
.footer-column strong { margin-bottom: 8px; color: #fff; font-family: Georgia, "Times New Roman", serif; font-size: 1.02rem; font-weight: 500; }
.footer-column a { color: rgba(255,255,255,.88); }
.footer-column a:hover { color: #fff; }
.footer-office span { line-height: 1.65; }
.footer-bottom {
  grid-column: 1/-1;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.52);
  font-size: .72rem;
}
.footer-credit strong { color: rgba(255,255,255,.92); font-weight: 850; }

@media (max-width: 1320px) {
  :root { --page-pad: 42px; }
  .section { max-width: none; padding-left: var(--page-pad); padding-right: var(--page-pad); }
}

@media (max-width: 1060px) {
  :root { --page-pad: 28px; }
  .icon-button { display: inline-flex; }
  .nav {
    position: absolute;
    top: 76px;
    right: var(--page-pad);
    display: none;
    min-width: 255px;
    padding: 12px;
    color: var(--ink);
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
  }
  .nav.open { display: grid; }
  .nav a { padding: 10px 12px; }
  .nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { color: #fff; }
  h1 { font-size: 4.45rem; }
  h2 { font-size: 2.72rem; }
  .section-heading,
  .testimonial-head { gap: 38px; }
  .service-layout,
  .split-section { grid-template-columns: 1fr; gap: 36px; }
  .service-lead { position: static; }
  .registration-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .contact-section { grid-template-columns: 1fr; gap: 52px; }
  .site-footer { grid-template-columns: 1.2fr .6fr 1fr; gap: 38px; }
}

@media (max-width: 720px) {
  :root { --page-pad: 18px; }
  .site-header { min-height: 70px; padding-top: 12px; padding-bottom: 12px; }
  .brand img { width: min(230px, 66vw); }
  .nav { top: 70px; left: var(--page-pad); right: var(--page-pad); }
  .hero { min-height: 640px; height: 90svh; }
  .hero-media { background-position: 63% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(8,16,13,.96) 0%, rgba(8,16,13,.76) 62%, rgba(8,16,13,.28) 100%); }
  .hero-content { justify-content: flex-end; width: calc(100% - (var(--page-pad) * 2)); padding: 104px 0 42px; }
  h1 { max-width: 520px; font-size: 3.28rem; line-height: 1; }
  h2 { font-size: 2.28rem; }
  .hero-copy { font-size: .96rem; line-height: 1.64; }
  .hero-actions { margin-top: 22px; }
  .hero-proof { margin-top: 30px; }
  .section { padding-top: 62px; padding-bottom: 62px; }
  .section-heading,
  .testimonial-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 34px; }
  .service-grid,
  .timeline { grid-template-columns: 1fr; }
  .service-layout { gap: 26px; }
  .service-lead { padding: 20px 22px; }
  .service-lead span { margin-bottom: 10px; font-size: 1.24rem; }
  .service-card { min-height: 0; padding: 18px; }
  .registration-grid { grid-template-columns: 1fr; gap: 10px; }
  .registration-item { display: grid; grid-template-columns: 34px 1fr; min-height: 0; padding: 18px; border-top-width: 1px; border-left: 3px solid var(--green); }
  .registration-number { grid-row: 1 / span 2; margin: 3px 0 0; }
  .registration-item p { margin-bottom: 12px; font-size: .78rem; }
  .registration-item a { grid-column: 2; }
  .timeline { grid-template-columns: 1fr; }
  .timeline::before { top: 22px; bottom: 22px; left: 21px; right: auto; width: 1px; height: auto; }
  .timeline li {
    position: relative;
    min-height: 0;
    padding: 0 0 30px 64px;
  }
  .timeline li:last-child { padding: 0 0 0 64px; }
  .timeline-number { position: absolute; top: 0; left: 0; margin: 0; }
  .timeline h3 { margin-bottom: 5px; }
  .timeline p { margin-bottom: 0; }
  .testimonial-track { grid-auto-columns: 100%; }
  .testimonial-card { min-height: 286px; padding: 24px; }
  .testimonial-card blockquote { font-size: 1.12rem; }
  .testimonial-controls { justify-content: space-between; }
  .contact-lines { grid-template-columns: 1fr; }
  .contact-line:nth-child(even) { padding-left: 0; border-left: 0; }
  .contact-form { padding: 22px; }
  .consultation-modal { padding: 14px; align-items: end; }
  .consultation-dialog {
    grid-template-columns: 1fr;
    max-height: calc(100svh - 28px);
  }
  .consultation-copy { min-height: 0; padding: 32px 22px 24px; }
  .consultation-copy h2 { max-width: 330px; font-size: 2rem; }
  .consultation-points { margin-top: 24px; }
  .consultation-form { grid-template-columns: 1fr; padding: 22px; }
  .site-footer { grid-template-columns: 1fr; gap: 26px; padding-top: 46px; }
  .footer-main p { margin-top: 17px; }
  .footer-column { gap: 8px; }
  .footer-column strong { margin-bottom: 4px; }
  .footer-bottom { grid-column: 1; flex-direction: column; gap: 8px; }
}

@media (max-width: 430px) {
  .brand img { width: min(212px, 68vw); }
  h1 { font-size: 2.76rem; }
  h2 { font-size: 2.06rem; }
  .primary-action,
  .secondary-action { flex: 1 1 145px; }
  .service-card { grid-template-columns: 38px minmax(0, 1fr); gap: 14px; }
  .service-icon { width: 36px; height: 36px; }
}

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