@font-face {
  font-family: "Sinhala MN";
  src: url("/assets/fonts/sinhala-mn.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Darker Grotesque";
  src: url("/assets/fonts/darker-grotesque-variable.woff2") format("woff2");
  font-display: swap;
}

:root {
  --green: #1f3826;
  --green-soft: rgba(31, 56, 38, 0.95);
  --green-panel: rgba(31, 56, 38, 0.92);
  --gold: #be9663;
  --gold-bright: #dab680;
  --paper: #ffffff;
  --ink: #152018;
  --muted-light: rgba(255, 255, 255, 0.80);
  --muted-dark: #5d685f;
  --line-light: rgba(255, 255, 255, 0.17);
  --line-dark: rgba(31, 56, 38, 0.20);
  --max: 1160px;
  --outer-gap: 32px;
  --inner-gap: 24px;
  --major-panel-gap: 16px;
  --section-gap: var(--major-panel-gap);
  --panel-pad: 28px;
  --sticky-offset: 150px;
  --sticky-gap: var(--major-panel-gap);
  --header-stack-height: 96px;
  --footer-lockup-height: 111px;
  --panel-radius: 0;
}

* {
  box-sizing: border-box;
}

html {
  color: var(--paper);
  font-family: "Darker Grotesque", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.38;
  scroll-behavior: smooth;
  scroll-padding-top: var(--sticky-offset);
}

body {
  background-color: var(--green);
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
  margin: 0;
  min-height: 100dvh;
  padding-top: var(--major-panel-gap);
  position: relative;
}

body::before {
  background-image:
    linear-gradient(rgba(31, 56, 38, 0.15), rgba(31, 56, 38, 0.38)),
    image-set(
      url("/assets/images/palouse-landscape-900.webp") 1x,
      url("/assets/images/palouse-landscape-1600.webp") 2x
    );
  background-position: center 24%;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  inset: 0;
  position: fixed;
  z-index: -1;
}

body,
button,
input,
textarea {
  font: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 3px;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.skip-link {
  background: var(--paper);
  color: var(--green);
  font-weight: 800;
  left: var(--outer-gap);
  padding: 10px 14px;
  position: fixed;
  top: 8px;
  transform: translateY(-160%);
  z-index: 100;
}

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

.temporary-panel,
.sticky-region,
.panel-shell,
.card-row,
.site-footer {
  margin: 0 auto;
  max-width: var(--max);
  width: calc(100% - (var(--outer-gap) * 2));
}

.temporary-panel {
  background: var(--green-soft);
  border: 1px solid var(--line-light);
  border-radius: var(--panel-radius);
  color: var(--paper);
}

.panel-inner {
  margin: 0 auto;
  max-width: 920px;
  padding: 18px 24px;
  text-align: center;
}

.panel-inner p,
p {
  margin: 0;
}

.sticky-region {
  padding-bottom: var(--sticky-gap);
  position: sticky;
  top: 0;
  z-index: 10;
}

.sticky-region::after {
  bottom: 0;
  content: "";
  height: var(--sticky-gap);
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
}

.site-header {
  background: var(--green);
  border: 1px solid var(--line-light);
  border-radius: var(--panel-radius);
  color: var(--paper);
}

.masthead-grid {
  align-items: center;
  display: grid;
  column-gap: clamp(18px, 3vw, 44px);
  grid-template-columns: minmax(430px, 1fr) minmax(260px, auto);
  grid-template-areas:
    "logo actions"
    "nav nav";
  padding: 12px var(--inner-gap);
  row-gap: 8px;
}

.brand-horizontal {
  align-self: center;
  align-items: center;
  display: grid;
  gap: 16px;
  grid-area: logo;
  grid-template-columns: auto minmax(0, 1fr);
  justify-self: start;
  max-width: min(560px, 100%);
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  height: auto;
  width: 104px;
}

.brand-copy {
  align-self: end;
  color: var(--paper);
  display: grid;
  gap: 0;
  justify-items: start;
  line-height: 1;
  min-width: 0;
  min-height: 88px;
  place-content: center start;
}

.brand-name {
  display: inline-block;
  font-family: "Darker Grotesque", system-ui, sans-serif;
  font-size: 3.25rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.82;
}

.brand-subname {
  color: rgba(255, 255, 255, 0.88);
  display: inline-block;
  font-size: 1.54rem;
  font-weight: 500;
  line-height: 0.96;
}

.brand-tagline {
  color: rgba(255, 255, 255, 0.78);
  display: inline-block;
  font-size: 0.5rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 3px;
  white-space: nowrap;
}

.desktop-nav,
.header-actions,
.button-row,
.radio-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}

.desktop-nav {
  gap: 0;
  grid-area: nav;
  justify-content: space-between;
  justify-self: center;
  min-width: 0;
  width: min(92%, 1000px);
}

.desktop-nav a,
.header-actions a,
.mobile-nav a {
  color: var(--paper);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.desktop-nav a {
  align-items: center;
  display: inline-flex;
  min-height: 36px;
  padding: 0 4px;
  position: relative;
}

.nav-separator {
  background: rgba(218, 182, 128, 0.82);
  border-radius: 999px;
  height: 4px;
  margin: 0 7px;
  width: 4px;
}

.desktop-nav a:hover,
.header-actions a:hover,
.mobile-nav a:hover,
.footer-directory a:hover {
  color: var(--gold-bright);
}

.facebook-link {
  align-items: center;
  display: inline-flex;
  min-height: 44px;
}

.facebook-link svg {
  fill: var(--gold-bright);
  height: 23px;
  width: 23px;
}

.header-actions {
  grid-area: actions;
  justify-content: flex-end;
}

.header-actions-top {
  align-items: center;
  align-self: center;
  flex-direction: row-reverse;
  gap: 14px;
  justify-content: flex-end;
  min-height: 0;
}

.header-actions-mobile {
  display: none;
}

.phone-link {
  align-items: center;
  display: inline-flex;
  font-size: 0.94rem;
  font-weight: 800;
  justify-content: center;
  line-height: 1;
  min-height: 20px;
}

.button {
  align-items: center;
  border: 1px solid currentColor;
  display: inline-flex;
  font-size: 0.96rem;
  font-weight: 800;
  justify-content: center;
  min-height: 44px;
  padding: 9px 15px 10px;
  text-align: center;
  text-decoration: none;
}

.button.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green);
}

.button.secondary {
  background: transparent;
  color: var(--paper);
}

.header-cta {
  align-items: center;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--green);
  display: inline-grid;
  gap: 2px;
  justify-items: center;
  line-height: 1;
  min-height: 54px;
  min-width: 112px;
  padding: 8px 11px;
  text-align: center;
  text-decoration: none;
}

.action-prefix {
  color: rgba(31, 56, 38, 0.84);
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
}

.action-main {
  font-size: 1rem;
  font-weight: 900;
  max-width: 6.4em;
}

.mobile-label {
  display: none;
}

.mobile-nav {
  display: none;
}

main {
  display: grid;
  flex: 1;
  gap: var(--section-gap);
}

.panel-shell {
  background: var(--green-panel);
  border: 1px solid var(--line-light);
  border-radius: var(--panel-radius);
  color: var(--paper);
  padding: var(--panel-pad);
  scroll-margin-top: var(--sticky-offset);
}

.hero-v3 {
  align-items: center;
  display: grid;
  gap: clamp(24px, 4vw, 46px);
  grid-template-columns: minmax(0, 1fr) minmax(270px, 360px);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow,
.section-descriptor {
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 8px;
  text-transform: uppercase;
}

h1,
h2,
h3,
summary {
  font-family: "Sinhala MN", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
}

h1 {
  color: var(--paper);
  font-size: 2.6rem;
}

h2 {
  color: var(--paper);
  font-size: 1.85rem;
}

h3 {
  color: var(--paper);
  font-size: 1.2rem;
}

.lead,
.hero-summary,
.credential-note,
.care-intro p,
.clinic-panel p,
.form-intro,
.emergency-panel p,
.event-card p,
.event-detail p,
.legal-document p,
.legal-document li,
.legal-directory p,
.not-found p {
  color: var(--muted-light);
}

.hero-subtitle {
  color: var(--paper);
  font-size: 1.22rem;
  margin-top: 12px;
  max-width: 650px;
}

.hero-summary {
  font-size: 1rem;
  margin-top: 12px;
  max-width: 690px;
}

.credential-note {
  border-left: 3px solid var(--gold);
  font-size: 0.92rem;
  margin-top: 13px;
  max-width: 620px;
  padding-left: 12px;
}

.credential-list {
  align-items: start;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  margin: 14px 0 0;
  max-width: 620px;
}

.credential-list div {
  border-left: 1px solid rgba(218, 182, 128, 0.45);
  display: grid;
  gap: 2px;
  padding: 0 14px;
}

.credential-list div:first-child {
  border-left: 0;
  padding-left: 0;
}

.credential-list dt {
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.credential-list dd {
  color: var(--paper);
  font-family: "Darker Grotesque", system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  margin: 2px 0 0;
  overflow-wrap: anywhere;
}

.credential-list a {
  text-decoration: none;
}

.credential-list a:hover {
  color: var(--gold-bright);
}

.button-row {
  gap: 12px;
  margin-top: 18px;
}

.hero-media {
  display: grid;
  gap: 12px;
  justify-self: end;
  max-width: 358px;
  width: 100%;
}

.hero-image-wrap {
  justify-self: end;
  width: 100%;
}

.hero-media .hero-button {
  width: 100%;
}

.hero-image-wrap img {
  aspect-ratio: 1;
  border: 1px solid var(--line-light);
  height: auto;
  object-fit: cover;
  object-position: 48% 30%;
  width: 100%;
}

.card-row {
  align-items: stretch;
  display: grid;
  gap: var(--section-gap);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.card-row .panel-shell {
  width: 100%;
}

.mini-grid {
  display: grid;
  gap: 14px 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 12px 0 14px;
}

.clinic-panel {
  display: flex;
  flex-direction: column;
}

.clinic-panel details {
  margin-top: auto;
}

.mini-grid strong {
  color: var(--gold-bright);
}

.clinic-map {
  display: grid;
  gap: 7px;
  margin: 0 0 16px;
}

.clinic-map-link {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-light);
  display: block;
  overflow: hidden;
  text-decoration: none;
}

.clinic-map-link img {
  aspect-ratio: 12 / 7;
  display: block;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.clinic-map figcaption {
  color: var(--muted-light);
  font-size: 0.78rem;
  margin: 0;
}

details {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line-light);
  color: var(--paper);
}

summary {
  color: var(--paper);
  cursor: pointer;
  font-size: 1.08rem;
  padding: 12px 15px;
}

.details-content {
  padding: 4px 15px 12px;
}

.details-content p + p,
.legal-document p + p,
.legal-document ul + p,
.legal-document p + ul,
.event-description p + p {
  margin-top: 10px;
}

.care-panel {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

.care-intro h2,
.clinic-panel h2,
.form-copy h2 {
  margin-bottom: 5px;
}

.care-intro .eyebrow,
.clinic-panel .eyebrow,
.form-copy .eyebrow,
.care-intro .section-descriptor,
.clinic-panel .section-descriptor,
.form-copy .section-descriptor {
  margin-bottom: 12px;
}

.care-list {
  display: grid;
  gap: 10px;
}

.form-panel {
  display: grid;
  gap: 12px;
  grid-template-rows: auto 1fr;
}

.form-grid {
  display: grid;
  gap: 6px 10px;
  grid-template-columns: 1fr 1fr;
}

.field,
.field-wide,
.choice-set {
  display: grid;
  gap: 3px;
}

.field-wide,
.choice-set,
.sms-consent,
.form-actions {
  grid-column: 1 / -1;
}

label,
legend {
  color: var(--paper);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
textarea {
  background: var(--paper);
  border: 1px solid var(--line-dark);
  color: var(--ink);
  min-height: 44px;
  padding: 7px 10px;
  width: 100%;
}

textarea {
  min-height: 76px;
  resize: vertical;
}

fieldset {
  border: 1px solid var(--line-light);
  margin: 0;
  padding: 8px 10px;
}

.radio-row {
  gap: 12px;
}

.radio-row label,
.checkbox-row {
  align-items: center;
  color: var(--paper);
  display: flex;
  font-weight: 700;
  gap: 7px;
}

.radio-row input,
.checkbox-row input {
  accent-color: var(--gold);
  min-height: auto;
  width: auto;
}

.sms-consent {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line-light);
  padding: 9px 10px;
}

.disclosure {
  color: var(--muted-light);
  font-size: 0.84rem;
  line-height: 1.22;
  margin-top: 6px;
}

.error {
  color: #ffe0de;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.1;
}

.error:empty {
  display: none;
}

.form-status {
  color: var(--gold-bright);
  font-weight: 800;
  margin-top: 6px;
}

.emergency-panel {
  padding: 20px 24px;
}

.events-hero h1,
.legal-hero h1,
.not-found h1,
.event-detail h1,
.legal-document h1 {
  font-size: 2.35rem;
}

.events-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.event-card,
.legal-directory article {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line-light);
}

.events-section-heading {
  margin-bottom: 16px;
}

.event-card-body,
.legal-directory article {
  padding: 18px;
}

.event-card {
  display: flex;
}

.event-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.event-card h3,
.legal-directory h2 {
  margin-bottom: 10px;
}

.event-card p + p,
.legal-directory p + .button {
  margin-top: 10px;
}

.event-card .button-row {
  margin-top: auto;
  padding-top: 16px;
}

.event-date,
.event-place,
.event-status {
  font-weight: 800;
}

.event-status {
  color: var(--gold-bright);
}

.events-empty {
  color: var(--muted-light);
  grid-column: 1 / -1;
}

.event-detail-grid {
  align-items: start;
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 1fr);
}

.event-meta {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.event-meta strong {
  color: var(--gold-bright);
}

.breadcrumbs {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 18px;
}

.breadcrumbs a {
  font-weight: 800;
  text-decoration: none;
}

.legal-directory {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.legal-document {
  display: grid;
  gap: 20px;
}

.legal-document article,
.legal-document h1 + p {
  max-width: 860px;
}

.legal-document h2,
.legal-document h3 {
  margin: 20px 0 7px;
}

.legal-document ul {
  margin: 8px 0 0;
  padding-left: 22px;
}

.related-notices {
  border-top: 1px solid var(--line-light);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 18px;
}

.related-notices a {
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  background: var(--green-panel);
  border: 1px solid var(--line-light);
  border-radius: var(--panel-radius);
  color: var(--paper);
  padding: 24px 0;
}

.section-inner {
  padding: 0 var(--inner-gap);
}

.footer-grid {
  align-items: start;
  display: grid;
  gap: clamp(14px, 2vw, 24px);
  grid-template-columns: minmax(220px, 0.78fr) minmax(220px, 0.78fr) minmax(430px, 1.44fr);
}

.footer-logo-area {
  align-content: start;
  display: grid;
  justify-self: start;
}

.footer-logo {
  height: var(--footer-lockup-height);
  max-width: none;
  object-fit: contain;
  object-position: left top;
  width: auto;
}

.footer-group h2 {
  color: var(--gold-bright);
  font-family: "Darker Grotesque", system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  margin: 0 0 7px;
  text-transform: uppercase;
}

.footer-contact p {
  color: var(--muted-light);
  line-height: 1.16;
}

.footer-contact {
  align-content: start;
  justify-self: end;
  text-align: right;
}

.footer-directory {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-group {
  display: grid;
  gap: 3px;
}

.footer-directory a {
  color: var(--paper);
  font-weight: 800;
  line-height: 1.16;
  padding: 2px 0;
  text-decoration: none;
}

@media (max-width: 1160px) {
  :root {
    --outer-gap: 24px;
  }

  .desktop-nav {
    justify-content: center;
  }
}

@media (max-width: 1179px) {
  :root {
    --header-stack-height: 88px;
  }

  .header-actions-top {
    display: none;
  }

  .masthead-grid {
    align-items: end;
    column-gap: 12px;
    grid-template-columns: minmax(300px, 1fr) auto minmax(0, auto);
    grid-template-areas: "logo menu mobile-actions";
    padding-bottom: 12px;
    position: relative;
  }

  .desktop-nav {
    display: none;
  }

  .header-actions-mobile {
    align-items: center;
    align-self: end;
    flex-direction: column;
    gap: 4px;
    display: flex;
    grid-area: mobile-actions;
    justify-content: space-between;
    min-height: var(--header-stack-height);
    justify-self: end;
  }

  .mobile-nav {
    align-self: end;
    background: transparent;
    border: 0;
    display: block;
    grid-area: menu;
    justify-self: start;
    padding: 0;
  }

  .mobile-nav summary {
    align-items: center;
    border: 1px solid var(--line-light);
    color: var(--paper);
    display: inline-flex;
    font-family: "Darker Grotesque", system-ui, sans-serif;
    font-weight: 800;
    justify-content: center;
    min-height: var(--header-stack-height);
    padding: 9px 14px 10px;
  }

  .mobile-nav nav {
    background: var(--green);
    border: 1px solid var(--line-light);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
    display: grid;
    gap: 9px;
    left: var(--inner-gap);
    max-width: min(360px, calc(100vw - (var(--outer-gap) * 2) - (var(--inner-gap) * 2)));
    padding: 14px;
    position: absolute;
    top: calc(100% - 2px);
    width: max-content;
    z-index: 20;
  }

  .hero-v3,
  .care-panel,
  .event-detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    justify-self: start;
    max-width: 320px;
  }
}

@media (max-width: 900px) {
  .card-row,
  .legal-directory {
    grid-template-columns: 1fr;
  }

  .events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    align-items: start;
    gap: 18px;
    grid-template-columns: minmax(190px, 0.9fr) minmax(220px, 1.1fr);
  }

  .footer-contact {
    justify-self: end;
    text-align: right;
  }

  .footer-directory {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  :root {
    --outer-gap: 18px;
    --inner-gap: 16px;
    --major-panel-gap: 16px;
    --panel-pad: 18px;
    --header-stack-height: 70px;
    --footer-lockup-height: 88px;
  }

  html {
    font-size: 16px;
  }

  body {
    padding-top: var(--major-panel-gap);
  }

  .panel-inner {
    padding: 16px 18px;
  }

  .brand-horizontal {
    max-width: 100%;
  }

  .brand-mark {
    width: 88px;
  }

  .brand-copy {
    min-height: var(--header-stack-height);
  }

  .brand-name {
    font-size: 2.35rem;
  }

  .brand-subname {
    font-size: 1.22rem;
  }

  .brand-tagline {
    display: none;
  }

  .masthead-grid {
    align-items: end;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "logo logo"
      "menu mobile-actions";
    row-gap: 8px;
  }

  .header-actions-mobile {
    align-items: center;
    flex-direction: column;
    gap: 5px;
  }

  .header-actions-mobile .phone-link {
    font-size: 0.94rem;
    min-height: 18px;
    order: 2;
  }

  .desktop-label {
    display: none;
  }

  .header-cta {
    min-height: 47px;
    min-width: 108px;
    order: 1;
    padding: 7px 9px;
  }

  h1,
  .events-hero h1,
  .legal-hero h1,
  .not-found h1,
  .event-detail h1,
  .legal-document h1 {
    font-size: 2.08rem;
  }

  h2 {
    font-size: 1.55rem;
  }

  .hero-subtitle {
    font-size: 1.14rem;
  }

  .mini-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .credential-list {
    display: grid;
    gap: 8px 14px;
    grid-template-columns: repeat(2, minmax(0, max-content));
  }

  .credential-list div,
  .credential-list div:first-child {
    border-left: 0;
    padding: 0;
  }

  .credential-list dt {
    font-size: 0.7rem;
  }

  .credential-list dd {
    font-size: 0.86rem;
    overflow-wrap: anywhere;
  }

  .hero-media {
    max-width: 260px;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .footer-logo {
    height: var(--footer-lockup-height);
  }

  .footer-grid {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .footer-contact {
    align-content: start;
    justify-self: end;
    text-align: right;
  }

  .footer-directory {
    grid-column: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-contact p,
  .footer-directory a {
    font-size: 0.86rem;
    line-height: 1.14;
    overflow-wrap: anywhere;
  }

  .footer-directory a {
    padding: 2px 0;
  }
}

@media (max-width: 374px) {
  :root {
    --outer-gap: 14px;
    --inner-gap: 18px;
    --header-stack-height: 70px;
    --footer-lockup-height: 88px;
  }

  .brand-horizontal {
    gap: 10px;
    max-width: 100%;
  }

  .brand-mark {
    width: 78px;
  }

  .brand-name {
    font-size: 1.82rem;
  }

  .brand-subname {
    font-size: 0.96rem;
  }

  .header-actions-mobile .phone-link {
    font-size: 0.88rem;
  }

  .header-cta {
    min-height: 47px;
    min-width: 98px;
  }

  .form-grid {
    gap: 8px;
  }

  input,
  textarea {
    min-height: 44px;
    padding: 7px 9px;
  }

  textarea {
    min-height: 72px;
  }

  fieldset,
  .sms-consent {
    padding: 8px 10px;
  }

  .credential-list {
    grid-template-columns: 1fr;
  }

  .footer-directory {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
