@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Outfit:wght@500;600;700;800&display=swap");

:root {
  --bg: #f3f1ec;
  --bg-soft: #faf8f4;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --line: rgba(18, 28, 39, 0.12);
  --line-strong: rgba(18, 28, 39, 0.22);
  --ink-950: #0b1218;
  --ink-900: #121c27;
  --ink-800: #20303e;
  --ink-700: #5d6a75;
  --accent: #b28a58;
  --accent-soft: #dcc39f;
  --navy: #0d1721;
  --navy-2: #172635;
  --mist: #e8edf1;
  --shadow-lg: 0 28px 52px rgba(8, 14, 20, 0.1);
  --shadow-md: 0 12px 26px rgba(8, 14, 20, 0.06);
  --shadow-sm: 0 5px 14px rgba(8, 14, 20, 0.04);
  --radius-xl: 10px;
  --radius-lg: 4px;
  --radius-md: 4px;
  --radius-sm: 3px;
  --max-width: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: "Manrope", sans-serif;
  color: var(--ink-800);
  line-height: 1.6;
  background:
    linear-gradient(rgba(18, 28, 39, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 28, 39, 0.02) 1px, transparent 1px),
    linear-gradient(180deg, #f6f4ef 0%, #f3f1ec 52%, #f8f6f2 100%);
  background-size: 64px 64px, 64px 64px, auto;
}

body::-webkit-scrollbar {
  width: 12px;
}

body::-webkit-scrollbar-track {
  background: rgba(18, 28, 39, 0.06);
}

body::-webkit-scrollbar-thumb {
  border: 2px solid rgba(18, 28, 39, 0.06);
  border-radius: 999px;
  background: linear-gradient(180deg, #1a3041, #b28a58);
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  cursor: pointer;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-shell {
  min-height: 100vh;
}

.skip-link {
  position: absolute;
  top: -5rem;
  left: 1rem;
  z-index: 80;
  padding: 0.7rem 0.95rem;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: #ffffff;
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

.utility-bar {
  display: none;
}

.utility-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3rem;
  padding: 0.35rem 0;
}

.utility-copy {
  font-size: 0.85rem;
}

.utility-links,
.site-nav,
.nav-actions,
.button-row,
.contact-links,
.hero-chip-row,
.footer-note-row,
.card-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.utility-link,
.site-nav a,
.button,
.button-secondary,
.button-ghost,
.quick-link,
.chip,
.contact-links > a,
.contact-links > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.65rem 0.95rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 700;
  overflow-wrap: anywhere;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.utility-link {
  min-height: 2.2rem;
  padding: 0.4rem 0.7rem;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.84rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  background: rgba(248, 247, 244, 0.92);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand img {
  width: 52px;
  height: 52px;
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
}

.brand-copy strong,
.section-header h1,
.section-header h2,
.page-title,
.page-subtitle,
.hero-copy h1,
.hero-foreground h2,
.content-card h3,
.feature-card h3,
.footer-card h3,
.service-detail-card h3,
.faq-question,
.plan-card h3,
.county-card h3,
.mini-card h3,
.link-panel h3 {
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.05em;
}

.brand-copy strong {
  font-size: 1.1rem;
  color: var(--ink-900);
}

.brand-copy span {
  font-size: 0.82rem;
  color: var(--ink-700);
}

.menu-toggle {
  display: none;
  min-height: 2.9rem;
  min-width: 2.9rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-strong);
  color: var(--ink-900);
  font-weight: 700;
}

.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: none;
}

.site-nav {
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.38rem;
}

.site-nav a {
  min-height: 2.65rem;
  padding: 0.5rem 0.62rem;
  color: var(--ink-700);
  background: transparent;
  font-size: 0.92rem;
}

.site-nav a:hover,
.site-nav a.is-active {
  border-color: var(--line);
  background: rgba(18, 28, 39, 0.05);
  color: var(--ink-900);
}

.button {
  color: #ffffff;
  background: linear-gradient(135deg, #0b141d, #182837);
  box-shadow: var(--shadow-sm);
}

.button-secondary {
  color: var(--ink-950);
  background: linear-gradient(135deg, #b28a58, #d8c09d);
  box-shadow: var(--shadow-sm);
}

.button-ghost,
.quick-link,
.contact-links > a,
.contact-links > span {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-900);
}

.button:hover,
.button-secondary:hover,
.button-ghost:hover,
.quick-link:hover,
.utility-link:hover,
.site-nav a:hover {
  transform: translateY(-1px);
}

.section,
.page-section {
  padding: 4.8rem 0;
}

.section-tight {
  padding: 2.4rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.65);
  color: var(--ink-800);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-header,
.page-intro {
  max-width: 50rem;
  margin-bottom: 1.8rem;
}

.section-header h1,
.section-header h2,
.page-title,
.hero-copy h1 {
  margin: 0.85rem 0 0.8rem;
  line-height: 0.96;
  color: var(--ink-950);
}

.hero-copy h1 {
  font-size: clamp(2.9rem, 6vw, 5.4rem);
  max-width: 34rem;
  color: #ffffff;
}

.hero-copy h1 span {
  display: block;
}

.section-header h1,
.page-title {
  font-size: clamp(2.5rem, 4.8vw, 4.4rem);
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.section-header p,
.page-intro p,
.hero-copy p,
.content-card p,
.feature-card p,
.service-detail-card p,
.plan-card p,
.mini-card p,
.county-card p,
.link-panel p {
  margin: 0;
  color: var(--ink-700);
  font-size: 1rem;
}

.hero-stage {
  padding: 0 0 4rem;
}

.hero-stage .container {
  width: 100%;
  max-width: none;
}

.hero-frame {
  position: relative;
  border: 1px solid var(--line);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow-lg);
}

.hero-frame.reveal {
  opacity: 1;
  transform: none;
}

.hero-media {
  position: relative;
  min-height: clamp(44rem, calc(100svh - 8rem), 52rem);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.9);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 14, 20, 0.84) 0%, rgba(8, 14, 20, 0.58) 34%, rgba(8, 14, 20, 0.24) 66%, rgba(8, 14, 20, 0.22) 100%),
    linear-gradient(180deg, rgba(8, 14, 20, 0.22) 0%, rgba(8, 14, 20, 0.62) 100%);
}

.hero-copy {
  position: absolute;
  top: clamp(3rem, 9vh, 6rem);
  left: clamp(1rem, 4vw, 4rem);
  z-index: 2;
  max-width: 31rem;
  display: grid;
  gap: 0.9rem;
}

.hero-copy p,
.hero-copy li {
  color: rgba(255, 255, 255, 0.82);
}

.hero-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-summary {
  max-width: 27rem;
  font-weight: 600;
}

.hero-note {
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.93rem;
}

.hero-copy ul {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-copy li {
  position: relative;
  padding-left: 1rem;
}

.hero-copy li::before {
  content: "";
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--accent-soft);
}

.hero-foreground {
  position: absolute;
  right: clamp(1rem, 4vw, 4rem);
  top: clamp(1.4rem, 3vw, 2.5rem);
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  width: min(32rem, calc(100% - 2rem));
  gap: 0.85rem;
  align-items: stretch;
}

.review-card,
.support-card,
.content-card,
.feature-card,
.mini-card,
.service-detail-card,
.plan-card,
.county-card,
.link-panel,
.footer-card,
.page-hero-panel,
.faq-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
}

.review-card,
.support-card,
.content-card,
.feature-card,
.mini-card,
.service-detail-card,
.plan-card,
.county-card,
.link-panel,
.footer-card,
.page-hero-panel,
.faq-card {
  padding: 1.35rem;
}

.review-card {
  max-width: none;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(10, 18, 26, 0.74);
  color: #ffffff;
  backdrop-filter: blur(14px);
}

.review-card .eyebrow {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.76);
}

.review-stars {
  color: #e2c28f;
  letter-spacing: 0.18em;
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}

.review-card blockquote {
  margin: 0 0 0.9rem;
  color: #ffffff;
  font-weight: 600;
}

.review-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.support-card {
  max-width: none;
}

.support-card h2 {
  margin: 0 0 0.55rem;
  line-height: 0.98;
  color: var(--ink-950);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.support-card p {
  margin: 0;
  color: var(--ink-700);
}

.support-card .contact-links {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.support-card form {
  margin-top: 1rem;
}

.support-card textarea {
  min-height: 6.25rem;
}

.review-inline {
  margin-top: 1rem;
  border-color: var(--line);
  background: rgba(18, 28, 39, 0.04);
  color: var(--ink-900);
  backdrop-filter: none;
}

.review-inline .eyebrow {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-800);
}

.review-inline .review-stars {
  color: var(--accent);
}

.review-inline blockquote {
  color: var(--ink-900);
}

.review-inline p {
  color: var(--ink-700);
}

.hero-chip-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
}

.support-note {
  margin-top: 0.95rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(18, 28, 39, 0.04);
  color: var(--ink-700);
  font-size: 0.92rem;
}

.chip {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-800);
  min-height: 2.5rem;
  padding: 0.5rem 0.8rem;
  font-size: 0.86rem;
}

.form-grid,
.card-grid,
.feature-grid,
.service-grid,
.plan-grid,
.link-grid,
.footer-grid,
.county-grid,
.stats-grid,
.detail-grid,
.page-hero-grid {
  display: grid;
  gap: 1rem;
}

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

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

.service-grid,
.plan-grid,
.county-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.detail-grid,
.page-hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;
}

.content-card,
.feature-card,
.mini-card,
.service-detail-card,
.plan-card,
.county-card,
.link-panel {
  display: grid;
  gap: 0.8rem;
}

.mini-card,
.link-panel,
.plan-card,
.service-detail-card,
.content-card,
.county-card {
  align-content: start;
}

.feature-card h3,
.content-card h3,
.service-detail-card h3,
.plan-card h3,
.county-card h3,
.mini-card h3,
.link-panel h3 {
  margin: 0;
  font-size: 1.45rem;
  color: var(--ink-950);
}

.content-card ul,
.feature-card ul,
.service-detail-card ul,
.plan-card ul,
.county-card ul,
.faq-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.content-card li,
.feature-card li,
.service-detail-card li,
.plan-card li,
.county-card li,
.faq-card li {
  position: relative;
  padding-left: 1rem;
  color: var(--ink-700);
}

.content-card li::before,
.feature-card li::before,
.service-detail-card li::before,
.plan-card li::before,
.county-card li::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
}

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

.field,
.field-full {
  display: grid;
  gap: 0.4rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field-full label {
  color: var(--ink-900);
  font-weight: 700;
  font-size: 0.92rem;
}

.field input,
.field select,
.field-full input,
.field-full select,
.field-full textarea {
  width: 100%;
  min-height: 3.05rem;
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink-900);
}

.field-full textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.form-status {
  min-height: 1.4rem;
  color: var(--ink-700);
}

.page-hero {
  padding-top: 2rem;
}

.page-hero-panel {
  min-height: 100%;
}

.page-hero-art {
  min-height: 22rem;
  padding: 0;
  overflow: hidden;
}

.page-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-title {
  margin: 0.9rem 0 0.8rem;
}

.page-subtitle {
  margin: 0;
  font-size: 1.1rem;
  color: var(--ink-700);
}

.faq-card {
  display: grid;
  gap: 0.7rem;
}

.faq-question {
  margin: 0;
  font-size: 1.2rem;
  color: var(--ink-950);
}

.mega-footer {
  margin-top: 5rem;
  color: rgba(255, 255, 255, 0.76);
  background: linear-gradient(180deg, #0d1721 0%, #111e2b 100%);
}

.mega-footer .footer-top {
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  align-items: start;
}

.footer-card {
  min-height: 100%;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.footer-card h3,
.footer-card strong {
  color: #ffffff;
}

.footer-card p,
.footer-card a,
.footer-card li,
.footer-card span {
  color: rgba(255, 255, 255, 0.74);
}

.footer-card ul {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 460ms ease, transform 460ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .detail-grid,
  .page-hero-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .feature-grid,
  .service-grid,
  .plan-grid,
  .county-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .nav-shell {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .menu-toggle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 3.2rem;
    min-width: 3.2rem;
    height: 3.2rem;
    border-radius: 999px;
    border-color: var(--navy);
    background: var(--navy);
    box-shadow: 0 10px 18px rgba(8, 14, 20, 0.12);
    color: transparent;
    font-size: 0;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  }

  .menu-toggle::before,
  .menu-toggle::after {
    display: block;
    position: absolute;
    left: 50%;
    width: 1.1rem;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  }

  .menu-toggle::before {
    transform: translate(-50%, -4px);
    box-shadow: 0 8px 0 #ffffff;
  }

  .menu-toggle::after {
    transform: translate(-50%, 4px);
  }

  .menu-toggle[aria-expanded="true"]::before {
    transform: translate(-50%, 0) rotate(45deg);
    box-shadow: none;
  }

  .menu-toggle[aria-expanded="true"]::after {
    transform: translate(-50%, 0) rotate(-45deg);
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    padding-top: 0.5rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-actions {
    display: none;
  }

  .hero-media {
    min-height: 56rem;
  }

  .hero-copy {
    max-width: 25rem;
  }

  .hero-foreground {
    top: 1.3rem;
    right: 1.3rem;
    width: min(30rem, calc(100% - 2.6rem));
  }

  .feature-grid,
  .service-grid,
  .plan-grid,
  .county-grid,
  .stats-grid,
  .card-grid,
  .link-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .reveal,
  .reveal.in-view {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header {
    position: sticky;
    top: 0;
    background: rgba(248, 247, 244, 0.98);
  }

  .nav-shell {
    grid-template-columns: 1fr;
    position: relative;
    padding: 0.8rem 0;
    gap: 0.65rem;
  }

  .brand {
    min-width: 0;
    gap: 0.65rem;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-copy strong {
    display: block;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 0.94rem;
  }

  .brand-copy span {
    display: block;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 0.72rem;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.15rem 0 0.15rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    min-height: 2.3rem;
    padding: 0.45rem 0.8rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.78);
    white-space: nowrap;
    font-size: 0.82rem;
  }

  .hero-media {
    min-height: auto;
    display: block;
  }

  .hero-media img {
    height: 10.5rem;
    filter: brightness(0.96) saturate(0.88);
  }

  .hero-shade {
    display: none;
  }

  .hero-frame {
    border: 1px solid var(--line);
    background: var(--surface-strong);
    box-shadow: var(--shadow-sm);
  }

  .hero-copy {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    max-width: none;
    padding: 1rem 1rem 0.35rem;
    gap: 0.55rem;
  }

  .hero-copy p {
    color: var(--ink-700) !important;
  }

  .hero-copy .eyebrow {
    display: inline-flex;
  }

  .hero-kicker {
    display: none;
  }

  .hero-copy h1 {
    display: block;
    margin: 0;
    max-width: none;
    color: var(--ink-950);
    font-size: clamp(1.9rem, 8.8vw, 2.55rem);
    line-height: 0.95;
  }

  .hero-summary {
    display: block;
    max-width: 15rem;
    color: var(--ink-700);
    font-size: 0.9rem;
    font-weight: 700;
  }

  .hero-note {
    display: none;
  }

  .hero-copy .button-row {
    display: flex;
  }

  .hero-foreground {
    position: static;
    padding: 0 1rem 1rem;
    width: auto;
  }

  .review-card,
  .support-card {
    max-width: none;
  }

  .support-card {
    padding: 1rem;
    box-shadow: none;
  }

  .support-card h2 {
    font-size: 1.55rem;
  }

  .support-card .contact-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-links > a,
  .contact-links > span,
  .quick-link {
    min-height: 2.55rem;
    padding: 0.55rem 0.5rem;
    font-size: 0.78rem;
  }

  .field input,
  .field select,
  .field-full textarea {
    min-height: 2.85rem;
    padding: 0.75rem 0.8rem;
  }

  .support-card textarea {
    min-height: 5.2rem;
  }

  .form-actions {
    gap: 0.55rem;
  }

  .section,
  .page-section {
    padding: 4rem 0;
  }

  .page-hero {
    padding-top: 1.5rem;
  }

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