/* Temporarily hidden — remove .is-hidden to restore visibility */
.is-hidden {
  display: none !important;
}

:root {
  --navy: #0b1f3a;
  --navy-light: #132d52;
  --teal: #0d9488;
  --teal-dark: #0f766e;
  --teal-soft: #ccfbf1;
  --gold: #e8b923;
  --gold-soft: #f5c542;
  --white: #ffffff;
  --off-white: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-500: #64748b;
  --gray-700: #334155;
  --ink: #0f172a;
  --shadow: 0 4px 24px rgb(11 31 58 / 8%);
  --shadow-lg: 0 16px 48px rgb(11 31 58 / 12%);
  --radius: 0.75rem;
  --radius-lg: 1.25rem;
  --max: 72rem;
  --font: "Inter", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--teal);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 0.75rem 1rem;
  background: var(--teal);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  left: 0;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.section--alt {
  background: var(--off-white);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section-header {
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.2;
  color: inherit;
}

.section-header p {
  margin: 0;
  color: var(--gray-500);
}

.section--navy .section-header p {
  color: rgb(255 255 255 / 75%);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}

.eyebrow a {
  color: inherit;
  text-decoration: none;
}

.eyebrow a:hover {
  text-decoration: underline;
}

.service-priority {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}

.service-priority--secondary {
  color: var(--gray-500);
}

.section--navy .eyebrow {
  color: var(--teal-soft);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgb(255 255 255 / 96%);
  border-bottom: 1px solid var(--gray-200);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--navy);
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}

.brand:hover {
  color: var(--navy);
}

.brand-mark {
  width: 2.375rem;
  height: 2.375rem;
  flex-shrink: 0;
  display: block;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.125rem;
  min-width: 0;
}

.brand-title {
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
  line-height: 1;
  white-space: nowrap;
}

.brand-name {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--navy);
}

.brand-tag {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
}

.brand-sub {
  display: none;
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.015em;
  color: var(--gray-500);
  line-height: 1.2;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .brand {
    gap: 0.75rem;
  }

  .brand-mark {
    width: 2.5rem;
    height: 2.5rem;
  }

  .brand-name,
  .brand-tag {
    font-size: 1.1875rem;
  }

  .brand-sub {
    display: block;
  }
}

@media (min-width: 900px) {
  .brand-name,
  .brand-tag {
    font-size: 1.25rem;
  }

  .brand-sub {
    font-size: 0.6875rem;
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.125rem;
  height: 2px;
  margin-inline: auto;
  background: var(--navy);
}

.nav-menu > ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu a {
  display: block;
  padding: 0.5rem 0.875rem;
  color: var(--gray-700);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--navy);
  background: var(--gray-100);
}

.header-cta {
  margin-left: 0.5rem;
  padding: 0.625rem 1.125rem;
  background: var(--teal);
  color: var(--white) !important;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
}

.header-cta:hover {
  background: var(--teal-dark);
  color: var(--white) !important;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.875rem;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: "";
  width: 0.35rem;
  height: 0.35rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.is-active {
  color: var(--navy);
  background: var(--gray-100);
}

.nav-dropdown-menu {
  display: none;
  flex-direction: column;
  align-items: stretch;
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: 12.5rem;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 120;
}

.nav-dropdown-menu li {
  display: block;
}

.nav-dropdown-menu a {
  font-size: 0.875rem;
}

@media (min-width: 721px) {
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu,
  .nav-dropdown.is-open .nav-dropdown-menu {
    display: flex;
  }
}

/* Hero */
.hero {
  padding: 4.5rem 0 4rem;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 55%, #1a4a5e 100%);
  color: var(--white);
}

.hero--visual {
  padding: 4rem 0 4.5rem;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
  color: var(--navy);
  border-bottom: 1px solid var(--gray-200);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.hero--visual .eyebrow {
  color: var(--teal-dark);
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.hero--visual h1 {
  color: var(--navy);
  font-weight: 700;
}

.hero-title-accent {
  font-weight: 800;
  color: var(--navy);
}

.hero--visual .hero-title-accent {
  color: var(--teal-dark);
}

.hero-lead {
  margin: 0 0 1.75rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgb(255 255 255 / 85%);
  max-width: 36rem;
}

.hero--visual .hero-lead {
  color: var(--gray-700);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero-stat {
  padding: 1rem 1.125rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
}

.hero-stat strong {
  display: block;
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.hero-stat span {
  display: block;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--gray-700);
}

.hero-stat--teal {
  background: linear-gradient(135deg, rgb(13 148 136 / 10%), rgb(13 148 136 / 4%));
  border-color: rgb(13 148 136 / 14%);
}

.hero-stat--teal strong {
  color: var(--teal-dark);
}

.hero-stat--gold {
  background: linear-gradient(135deg, rgb(232 185 35 / 14%), rgb(232 185 35 / 5%));
  border-color: rgb(232 185 35 / 18%);
}

.hero-stat--gold strong {
  color: #9a7b0a;
}

.hero-stat--navy {
  background: linear-gradient(135deg, rgb(11 31 58 / 8%), rgb(11 31 58 / 3%));
  border-color: rgb(11 31 58 / 10%);
}

.hero-stat--navy strong {
  color: var(--navy);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  line-height: 1.15;
}

.hero-stat--navy .hero-stat__lead {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin-bottom: 0.15rem;
}

.hero-visual {
  min-width: 0;
}

.hero-mosaic {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0.75rem;
  min-height: 26rem;
}

.hero-mosaic__feature {
  width: 100%;
  height: 100%;
  min-height: 26rem;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 40px rgb(11 31 58 / 14%);
}

.hero-mosaic__tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
  min-height: 26rem;
}

.hero-mosaic__tiles img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgb(11 31 58 / 10%);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.hero-card {
  padding: 2rem;
  background: rgb(255 255 255 / 8%);
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(4px);
}

.hero-card h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--teal-soft);
}

.stat-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.stat-list li {
  padding-left: 1rem;
  border-left: 3px solid var(--teal);
}

.stat-list strong {
  display: block;
  font-size: 1.0625rem;
}

.stat-list span {
  font-size: 0.875rem;
  color: rgb(255 255 255 / 75%);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.375rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--teal-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgb(255 255 255 / 35%);
}

.btn-outline:hover {
  background: rgb(255 255 255 / 10%);
  color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-200);
}

.btn-outline-dark:hover {
  background: var(--gray-100);
  color: var(--navy);
}

/* Region banner */
.region-banner {
  padding: 1rem 0;
  background: var(--teal-soft);
  border-bottom: 1px solid #99f6e4;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--navy);
}

.region-banner strong {
  color: var(--teal-dark);
}

/* FAQ */
#faq {
  scroll-margin-top: 5.5rem;
}

.faq-list {
  max-width: 46rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.faq-item summary {
  padding: 1.125rem 1.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--teal);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item[open] summary {
  border-bottom: 1px solid var(--gray-200);
}

.faq-answer {
  padding: 1rem 1.25rem 1.125rem;
}

.faq-answer p {
  margin: 0;
  color: var(--gray-700);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.faq-answer a {
  color: var(--teal-dark);
  font-weight: 500;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.25rem;
}

.card {
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
  color: var(--navy);
}

.card p {
  margin: 0;
  color: var(--gray-700);
  font-size: 0.9375rem;
}

.case-study-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.case-study-card:hover {
  border-color: rgb(13 148 136 / 35%);
  box-shadow: 0 14px 32px rgb(11 31 58 / 14%);
  transform: translateY(-2px);
}

.case-study-card h2 {
  color: var(--navy);
}

.case-study-card:hover h2 {
  color: var(--teal-dark);
}

.case-study-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 1.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--teal);
}

.case-study-card:hover .case-study-card__cta {
  color: var(--teal-dark);
}

.case-study-card__cta::after {
  content: "→";
  transition: transform 0.15s;
}

.case-study-card:hover .case-study-card__cta::after {
  transform: translateX(3px);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  background: var(--teal-soft);
  color: var(--teal-dark);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.875rem;
}

/* Two column */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.about-media {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-intro,
.page-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: stretch;
}

.about-intro-main,
.page-intro-main {
  margin: 0;
}

.about-photo,
.page-intro-photo,
.page-hero-photo {
  width: 100%;
  min-height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 32px rgb(11 31 58 / 12%);
}

.page-hero--visual {
  padding: 3.5rem 0 2.5rem;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}

.page-hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.page-hero-split .page-hero-text p:last-child {
  margin: 0;
}

.page-hero-photo {
  aspect-ratio: 4 / 3;
  min-height: auto;
}

.problem-list,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.problem-list li,
.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.problem-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* Process steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.step {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}

.step-num {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--teal);
}

.step h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--navy);
}

.step p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--gray-700);
}

/* Case study */
.case-highlight {
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
}

.case-highlight h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.case-highlight .check-list li::before {
  color: var(--teal-soft);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.outcome {
  padding: 1.25rem;
  background: rgb(255 255 255 / 8%);
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: var(--radius);
}

.outcome strong {
  display: block;
  font-size: 1.5rem;
  color: var(--teal-soft);
  margin-bottom: 0.25rem;
}

/* CTA band */
.cta-band {
  padding: 3.5rem 0;
  text-align: center;
  background: var(--gray-100);
}

.cta-band h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
}

.cta-band p {
  margin: 0 auto 1.5rem;
  max-width: 32rem;
  color: var(--gray-700);
}

/* Page hero (inner pages) */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}

.page-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  color: var(--navy);
}

.page-hero p {
  margin: 0;
  max-width: 40rem;
  color: var(--gray-700);
  font-size: 1.0625rem;
}

.page-hero-lockup {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.product-mark {
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 6px 14px rgb(11 31 58 / 18%));
}

.page-hero-lockup .page-hero-text {
  min-width: 0;
}

/* Services detail */
.service-block {
  padding: 2rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.service-block:last-child {
  border-bottom: 0;
}

.service-block h2 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  color: var(--navy);
}

.service-block > p {
  margin: 0 0 1rem;
  max-width: 42rem;
  color: var(--gray-700);
}

/* Legal */
.legal-content {
  max-width: 42rem;
}

.legal-content h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.25rem;
  color: var(--navy);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--gray-700);
}

.legal-content ul {
  padding-left: 1.25rem;
}

.disclaimer-box {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--gray-100);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.875rem;
  color: var(--gray-700);
}

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info h2 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  color: var(--navy);
}

.contact-info p {
  margin: 0 0 1rem;
  color: var(--gray-700);
}

.contact-detail {
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
}

.contact-detail strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.15rem;
}

.contact-address {
  margin: 0;
  font-style: normal;
  color: var(--gray-700);
  line-height: 1.55;
}

.contact-address a {
  display: inline-block;
  margin-top: 0.35rem;
}

.form-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.875rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--teal);
  outline-offset: 1px;
  border-color: var(--teal);
}

.form-group textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin-top: 1rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
}

.form-status--success {
  background: #dcfce7;
  color: #166534;
}

.form-status--error {
  background: #fee2e2;
  color: #991b1b;
}

.form-status--warn {
  background: #fef3c7;
  color: #92400e;
}

/* Footer */
.site-footer {
  padding: 3rem 0 2rem;
  background: var(--navy);
  color: rgb(255 255 255 / 80%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.footer-mark {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}

.footer-brand-accent {
  color: var(--gold-soft);
}

.site-footer a {
  color: rgb(255 255 255 / 85%);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--teal-soft);
}

.footer-links h3 {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 55%);
}

.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgb(255 255 255 / 12%);
  font-size: 0.8125rem;
  color: rgb(255 255 255 / 55%);
}

.footer-bottom p {
  margin: 0 0 0.5rem;
}

.footer-disclaimer {
  font-size: 0.75rem;
  line-height: 1.5;
  max-width: 48rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .split-grid,
  .about-intro,
  .page-intro,
  .page-hero-split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-photo,
  .page-intro-photo,
  .page-hero-photo {
    min-height: 16rem;
    aspect-ratio: 16 / 10;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-mosaic {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-mosaic__feature {
    min-height: 18rem;
  }

  .hero-mosaic__tiles {
    min-height: 14rem;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 1rem;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.is-open {
    display: block;
  }

  .nav-menu > ul {
    flex-direction: column;
    align-items: stretch;
  }

  .header-cta {
    margin-left: 0;
    text-align: center;
  }

  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding: 0.25rem 0 0.5rem 0.75rem;
    margin-top: 0.25rem;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: flex;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3rem 0;
  }
}

/* Blog */
.blog-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  line-height: 1.35;
}

.blog-card h2 a {
  color: var(--navy);
  text-decoration: none;
}

.blog-card h2 a:hover {
  color: var(--teal-dark);
}

.blog-meta {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.blog-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 1.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--teal);
  text-decoration: none;
}

.blog-card__cta:hover {
  color: var(--teal-dark);
}

.blog-card__cta::after {
  content: "→";
}

.blog-article-wrap {
  max-width: 46rem;
}

.blog-article-header {
  margin-bottom: 2rem;
}

.blog-article-header h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1.2;
  color: var(--navy);
}

.blog-article-header .blog-meta {
  margin-bottom: 1rem;
}

.blog-article-header .blog-lead {
  margin: 0;
  font-size: 1.125rem;
  color: var(--gray-700);
}

.blog-article-body h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.375rem;
  color: var(--navy);
}

.blog-article-body h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.125rem;
  color: var(--navy);
}

.blog-article-body p,
.blog-article-body li {
  color: var(--gray-700);
}

.blog-article-body ul,
.blog-article-body ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--teal);
}

.blog-back:hover {
  color: var(--teal-dark);
}

.blog-back::before {
  content: "←";
}

.blog-article-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  margin: 0 0 2rem;
  box-shadow: var(--shadow);
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.blog-tag {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
}

.blog-tag:hover {
  background: rgb(13 148 136 / 20%);
}
