:root {
  --navy: #1a2744;
  --gold: #c9a84c;
  --gold-deep: #a6862d;
  --bg: #f8f9fa;
  --white: #ffffff;
  --text: #243146;
  --muted: #5c6778;
  --line: #dde3ea;
  --panel: #eef2f6;
  --urgent: #c0392b;
  --success: #1e7a4d;
  --shadow-soft: 0 18px 40px -28px rgba(26, 39, 68, 0.45);
  --shadow-strong: 0 30px 60px -32px rgba(26, 39, 68, 0.5);
  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 1.75rem;
  --max-width: 72rem;
  --header-height: 5.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Source Sans 3", "Source Sans Pro", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  background:
    radial-gradient(circle at top right, rgba(201, 168, 76, 0.16), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

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

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

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

button {
  cursor: pointer;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.18);
}

textarea {
  min-height: 9rem;
  resize: vertical;
}

summary {
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
}

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

.site-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

.section {
  padding: 5.5rem 0;
}

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

.section-alt {
  background: linear-gradient(180deg, rgba(238, 242, 246, 0.9), rgba(248, 249, 250, 0.9));
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(20, 31, 54, 0.94), rgba(26, 39, 68, 0.98)),
    radial-gradient(circle at top left, rgba(201, 168, 76, 0.14), transparent 22rem),
    var(--navy);
}

.section-dark .section-title,
.section-dark .card-title,
.section-dark .page-title {
  color: var(--white);
}

.section-dark .section-copy,
.section-dark .card-copy,
.section-dark .page-subtitle {
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(201, 168, 76, 0.32);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(201, 168, 76, 0.1);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--gold);
}

.section-tag {
  display: inline-block;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-title,
.page-title,
.site-logo-title,
.card-title,
.quote-mark,
.price-value {
  margin: 0;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  letter-spacing: -0.02em;
}

.section-title {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.section-copy,
.page-subtitle,
.card-copy {
  color: var(--muted);
}

.section-intro {
  max-width: 42rem;
  margin-inline: auto;
}

.section-heading-centered {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.75rem;
  width: 100%;
  margin-bottom: 2.25rem;
  padding-inline: 1rem;
}

.text-center {
  text-align: center;
}

.text-center .section-tag,
.text-center .eyebrow {
  margin-inline: auto;
}

.section-intro .section-title,
.section-intro .page-title {
  max-width: 16ch;
  margin-top: 0.8rem;
  margin-inline: auto;
  text-wrap: balance;
}

.section-heading-centered .section-title,
.section-heading-centered .page-title {
  max-width: 14ch;
  margin-top: 0;
  margin-inline: auto;
  text-align: center;
  text-wrap: balance;
}

.section-title-page-center {
  width: 100%;
  max-width: none;
  margin-top: 0;
  margin-inline: 0;
  text-align: center;
  text-wrap: balance;
}

.text-center > .section-title,
.text-center > .page-title {
  max-width: 16ch;
  margin-inline: auto;
  text-wrap: balance;
}

.text-center .section-copy,
.text-center .page-subtitle,
.text-center .card-copy,
.text-center p {
  margin-inline: auto;
}

.text-gold {
  color: var(--gold);
}

.text-gold-soft {
  color: rgba(255, 255, 255, 0.78);
}

.text-gold-faint {
  color: rgba(255, 255, 255, 0.58);
}

.text-navy {
  color: var(--navy);
}

.stack-lg > * + * {
  margin-top: 1.5rem;
}

.stack-md > * + * {
  margin-top: 1rem;
}

.mt-grid {
  margin-top: 2.5rem;
}

.mt-grid-sm {
  margin-top: 2rem;
}

.mt-list {
  margin-top: 1rem;
}

.max-copy {
  max-width: 40rem;
  margin: 1.5rem auto 0;
}

.max-copy-wide {
  max-width: 40rem;
  margin: 2rem auto 0;
}

.container-narrow {
  max-width: 48rem;
}

.panel-spacious {
  padding: 2rem;
}

.panel-muted {
  padding: 2rem;
  background: var(--panel);
}

.panel-flat {
  padding: 1.4rem;
  background: var(--panel);
  box-shadow: none;
}

.chip-list-start {
  justify-content: start;
}

.coverage-grid {
  align-items: center;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 3rem;
}

.coverage-copy {
  max-width: 31rem;
}

.coverage-copy .section-title {
  max-width: 11ch;
  margin-inline: 0;
  text-align: left;
  text-wrap: pretty;
}

.coverage-visual {
  position: relative;
}

.coverage-visual::before {
  content: "";
  position: absolute;
  inset: -1.1rem 1.5rem 1.8rem -1rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.16), rgba(26, 39, 68, 0.08));
  filter: blur(18px);
}

.coverage-media {
  position: relative;
  overflow: hidden;
  border-radius: 1.75rem;
  aspect-ratio: 5 / 4;
  box-shadow: var(--shadow-strong);
  background: linear-gradient(180deg, rgba(238, 242, 246, 0.88), rgba(255, 255, 255, 0.96));
}

.section-title-sm {
  margin-top: 2rem;
  font-size: 2rem;
}

.card-title-sm {
  font-size: 1.7rem;
}

.form-grid-top {
  margin-top: 1.25rem;
}

.success-title {
  margin-top: 1rem;
}

.price-cta {
  margin-top: 1.25rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(221, 227, 234, 0.9);
  backdrop-filter: blur(14px);
}

.site-header .container {
  width: min(82rem, calc(100% - 2.5rem));
}

.site-header-inner {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2vw, 2.25rem);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  flex: 0 0 auto;
}

.site-logo-image {
  display: block;
  width: auto;
  height: clamp(2.8rem, 4.1vw, 3.25rem);
  max-width: min(15.75rem, 48vw);
}

.footer-logo-image {
  display: block;
  width: auto;
  height: 4rem;
  max-width: min(20rem, 82vw);
}

.site-logo-title {
  font-size: 1.25rem;
  color: var(--navy);
}

.site-logo-subtitle {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 1.55vw, 1.55rem);
  flex: 1 1 auto;
  min-width: 0;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--navy);
}

.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  flex: 0 0 auto;
  white-space: nowrap;
}

.header-actions .button {
  min-height: 2.55rem;
  padding: 0.64rem 1.05rem;
  font-size: 0.9rem;
  line-height: 1;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.12rem;
  padding: 0.14rem;
  border: 1px solid rgba(26, 39, 68, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.language-toggle button {
  min-width: 1.95rem;
  min-height: 1.75rem;
  padding: 0 0.45rem;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.language-toggle button:hover,
.language-toggle button[aria-pressed="true"] {
  color: var(--navy);
  background: var(--gold);
}

.language-toggle button[aria-pressed="true"] {
  box-shadow: 0 8px 18px rgba(26, 39, 68, 0.12);
}

.language-toggle-mobile {
  justify-self: start;
  margin: 0.2rem 0 0.35rem;
}

.language-toggle-header-mobile {
  display: none;
  margin-left: auto;
  margin-right: 0.65rem;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.phone-link:hover {
  color: var(--gold-deep);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  background: var(--white);
  color: var(--navy);
}

.menu-toggle-bars,
.menu-toggle-bars::before,
.menu-toggle-bars::after {
  display: block;
  width: 1.2rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.menu-toggle-bars {
  position: relative;
}

.menu-toggle-bars::before,
.menu-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle-bars::before {
  top: -0.38rem;
}

.menu-toggle-bars::after {
  top: 0.38rem;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bars {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bars::before {
  transform: rotate(90deg);
  top: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bars::after {
  opacity: 0;
}

.mobile-panel {
  display: none;
  padding-bottom: 1.1rem;
}

.mobile-panel.is-open {
  display: block;
}

.mobile-nav {
  display: grid;
  gap: 0.72rem;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(248, 249, 250, 0.96);
  box-shadow: var(--shadow-soft);
}

.mobile-nav a {
  padding: 0.24rem 0;
  color: var(--muted);
  font-weight: 600;
}

.mobile-nav a[aria-current="page"] {
  color: var(--navy);
}

.mobile-nav .button {
  margin-top: 0.4rem;
  min-height: 2.8rem;
  padding-block: 0.72rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--navy);
  background: linear-gradient(135deg, #d4b565, var(--gold));
  box-shadow: var(--shadow-soft);
}

.button-secondary {
  border-color: rgba(26, 39, 68, 0.18);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.86);
}

.button-secondary:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero {
  padding: 4rem 0 5.5rem;
}

.hero-grid,
.split-grid,
.contact-grid,
.pricing-grid {
  display: grid;
  gap: 2rem;
}

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

.hero-title {
  margin: 1.25rem 0 0;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.9rem, 7vw, 5rem);
  line-height: 0.98;
}

.hero-title .accent {
  color: var(--gold-deep);
}

.hero-copy {
  max-width: 38rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 1.14rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-actions {
  justify-content: flex-start;
}

.cta-actions {
  justify-content: center;
}

.hero-meta {
  margin-top: 2.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.hero-meta-label {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-meta-value {
  margin-top: 0.55rem;
  color: var(--text);
  font-size: 0.98rem;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -1.25rem 1.25rem 3rem -1.25rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.22), rgba(26, 39, 68, 0.08));
  filter: blur(18px);
}

.hero-media {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-strong);
  background: linear-gradient(180deg, rgba(238, 242, 246, 0.88), rgba(255, 255, 255, 0.96));
}

.hero-image {
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  object-fit: cover;
  object-position: center center;
}

.hero-note {
  position: absolute;
  left: -1.35rem;
  bottom: -1.35rem;
  width: min(16rem, calc(100% - 2rem));
  padding: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.hero-note-title {
  margin: 0;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
}

.hero-note-copy {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.alert-strip {
  overflow: hidden;
  border-top: 1px solid rgba(192, 57, 43, 0.2);
  border-bottom: 1px solid rgba(192, 57, 43, 0.2);
  color: var(--white);
  background: linear-gradient(90deg, #a72f24, var(--urgent), #a72f24);
}

.alert-strip-track {
  display: flex;
  gap: 2.2rem;
  width: max-content;
  padding: 0.9rem 0;
  animation: marquee 34s linear infinite;
}

.alert-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.96rem;
  font-weight: 600;
  white-space: nowrap;
}

.alert-pill::before {
  content: "!";
  display: inline-grid;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.grid-3,
.grid-4,
.grid-2,
.state-grid,
.faq-list {
  display: grid;
  gap: 1.5rem;
}

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

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

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

.card,
.panel,
.faq-item,
.timeline-item,
.state-card,
.testimonial,
.price-panel,
.contact-panel,
.highlight-card {
  border: 1px solid rgba(221, 227, 234, 0.9);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.card,
.panel,
.state-card,
.testimonial,
.highlight-card {
  padding: 1.75rem;
}

.card,
.highlight-card,
.testimonial,
.state-card {
  height: 100%;
}

.card,
.highlight-card {
  display: flex;
  flex-direction: column;
}

.card:hover,
.state-card:hover,
.testimonial:hover,
.highlight-card:hover {
  transform: translateY(-3px);
}

.icon-badge,
.step-number,
.trust-badge,
.list-check {
  display: inline-grid;
  place-items: center;
  border-radius: 1rem;
  font-weight: 700;
}

.icon-badge {
  width: 3rem;
  height: 3rem;
  color: var(--gold);
  background: linear-gradient(135deg, var(--navy), #21355d);
  font-size: 0.95rem;
}

.card-title {
  margin-top: 1rem;
  color: var(--navy);
  font-size: 1.7rem;
  line-height: 1.15;
}

.card-copy {
  margin: 0.85rem 0 0;
}

.step-card {
  position: relative;
  padding-top: 2.7rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.step-number {
  position: absolute;
  left: 1.6rem;
  top: -0.9rem;
  min-width: 4.5rem;
  height: 1.9rem;
  padding: 0 0.85rem;
  color: var(--navy);
  background: linear-gradient(135deg, #d4b565, var(--gold));
  font-family: "Playfair Display", Georgia, serif;
}

.pricing-grid {
  align-items: start;
}

.price-panel {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  align-self: start;
  padding: 2rem;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(20, 31, 54, 0.94), rgba(26, 39, 68, 0.98)),
    var(--navy);
}

.price-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.price-value {
  margin-top: 0.5rem;
  color: var(--gold);
  font-size: clamp(3.2rem, 7vw, 4.8rem);
  line-height: 1;
}

.feature-list,
.plain-list,
.chip-list {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li,
.plain-list li {
  display: flex;
  gap: 0.8rem;
}

.list-check {
  flex: none;
  width: 1.4rem;
  height: 1.4rem;
  margin-top: 0.12rem;
  color: var(--navy);
  background: rgba(201, 168, 76, 0.2);
  font-size: 0.82rem;
}

.chip-list {
  grid-template-columns: repeat(auto-fit, minmax(10rem, max-content));
  justify-content: center;
}

.chip-list-overview {
  max-width: 54rem;
  margin-top: 30px;
  margin-inline: auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.chip-list-overview .chip {
  width: 100%;
  min-height: 3rem;
}

.location-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: stretch;
  gap: 0.75rem;
}

.location-list .chip {
  width: 100%;
  justify-content: flex-start;
  padding-inline: 1rem;
  text-align: left;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(26, 39, 68, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 600;
}

.trust-badge {
  width: 3.3rem;
  height: 3.3rem;
  margin: 0 auto;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.14);
  font-size: 1rem;
}

.trust-card {
  text-align: center;
}

.trust-label {
  margin-top: 1rem;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
}

.trust-copy {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote-mark {
  color: var(--gold);
  font-size: 3rem;
  line-height: 0.8;
}

.testimonial blockquote {
  margin: 0;
  flex: 1;
}

.testimonial footer {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.testimonial strong {
  display: block;
  color: var(--navy);
}

.testimonial span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero {
  padding: 4.7rem 0;
  border-bottom: 1px solid rgba(221, 227, 234, 0.8);
  background: linear-gradient(180deg, rgba(238, 242, 246, 0.7), rgba(255, 255, 255, 0.92));
}

.page-title {
  color: var(--navy);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
}

.page-subtitle {
  max-width: 42rem;
  margin: 1.1rem auto 0;
  font-size: 1.1rem;
}

.highlight-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.highlight-card {
  padding: 1.4rem;
}

.highlight-card strong {
  display: block;
  margin-top: 0.8rem;
  color: var(--navy);
}

.timeline {
  position: relative;
  margin: 0;
  padding-left: 2rem;
  list-style: none;
  border-left: 2px solid rgba(201, 168, 76, 0.4);
}

.timeline-item {
  position: relative;
  margin-bottom: 1.25rem;
  padding: 1.35rem 1.5rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-index {
  position: absolute;
  left: -1.22rem;
  top: 1.2rem;
  display: grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  color: var(--navy);
  background: linear-gradient(135deg, #d4b565, var(--gold));
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
}

.timeline-item h2,
.timeline-item h3,
.state-card h2,
.faq-item h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
}

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

.state-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: -1.75rem -1.75rem 1.4rem;
  padding: 1.35rem 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #243a66);
}

.state-card-header h2 {
  color: var(--gold);
  font-size: 1.7rem;
}

.state-card .card-copy {
  margin-top: 1.2rem;
}

.state-marker {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
}

.state-image {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: center center;
  box-shadow: var(--shadow-strong);
}

.faq-list {
  max-width: 52rem;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  padding: 1.35rem 4rem 1.35rem 1.4rem;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.25;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.35rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-deep);
  font-size: 1.6rem;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-answer {
  padding: 0 1.4rem 1.35rem;
  color: var(--muted);
}

.contact-grid {
  align-items: start;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.contact-panel {
  padding: 2rem;
}

.form-panel {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.contact-panel {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(20, 31, 54, 0.94), rgba(26, 39, 68, 0.98)),
    var(--navy);
}

.contact-panel h2,
.contact-panel h3 {
  margin: 0;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
}

.contact-phone {
  display: inline-block;
  margin-top: 0.9rem;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.contact-hours {
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.82);
}

.contact-panel .plain-list {
  margin-top: 2rem;
}

.contact-panel .plain-list li {
  color: rgba(255, 255, 255, 0.82);
}

.form-panel h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
}

.ghl-form-embed {
  width: 100%;
  max-width: 100%;
  height: 1338px;
  min-height: 760px;
  overflow: visible;
  border-radius: 0;
}

.ghl-form-embed iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  border-radius: 0 !important;
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  color: var(--navy);
  font-size: 0.96rem;
  font-weight: 700;
}

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

.field-hint,
.form-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.form-actions {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.button.is-submitting {
  opacity: 0.88;
  pointer-events: none;
}

.form-success {
  display: none;
  padding: 2.5rem 1rem;
  text-align: center;
}

.form-success.is-visible {
  display: block;
}

.success-mark {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  margin: 0 auto;
  border-radius: 50%;
  color: var(--success);
  background: rgba(30, 122, 77, 0.12);
  font-size: 1.5rem;
  font-weight: 700;
}

.cta-band {
  padding: 5rem 0;
}

.cta-card {
  padding: 2.5rem;
  border: 1px solid rgba(201, 168, 76, 0.16);
  border-radius: var(--radius-lg);
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(20, 31, 54, 0.94), rgba(26, 39, 68, 0.98)),
    radial-gradient(circle at top center, rgba(201, 168, 76, 0.14), transparent 20rem),
    var(--navy);
  box-shadow: var(--shadow-strong);
}

.cta-card h1,
.cta-card h2 {
  margin: 0;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

.cta-card p {
  max-width: 34rem;
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.78);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(13rem, 0.3fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: calc(var(--header-height) + 1.25rem);
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.legal-toc-title {
  margin: 0 0 0.85rem;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-toc-list {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.legal-toc-list a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.18s ease, padding-left 0.18s ease;
}

.legal-toc-list a:hover {
  color: var(--navy);
  padding-left: 0.25rem;
}

.legal-content {
  display: grid;
  gap: 1.1rem;
}

.legal-card {
  scroll-margin-top: calc(var(--header-height) + 1.5rem);
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.legal-card h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.15;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.78;
}

.legal-card p {
  margin: 0.85rem 0 0;
}

.legal-card ul {
  display: grid;
  gap: 0.45rem;
  padding-left: 1.25rem;
  margin: 1rem 0 0;
}

.legal-contact {
  color: var(--text);
  font-style: normal;
}

.legal-contact a {
  color: var(--navy);
  font-weight: 700;
}

.legal-date {
  color: var(--navy);
  font-weight: 700;
}

.legal-notice {
  border-left: 4px solid var(--urgent);
}

.legal-notice h2 {
  color: var(--urgent);
}

.legal-cta {
  margin-top: 1.5rem;
  padding: 5rem 0;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(20, 31, 54, 0.96), rgba(26, 39, 68, 1)),
    radial-gradient(circle at top center, rgba(201, 168, 76, 0.14), transparent 22rem),
    var(--navy);
}

.legal-cta-inner {
  max-width: 42rem;
  text-align: center;
}

.legal-cta h2 {
  margin: 0;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.legal-cta p {
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.legal-cta .button {
  margin-top: 1.6rem;
}

.site-footer {
  margin-top: auto;
  color: rgba(255, 255, 255, 0.9);
  background:
    linear-gradient(180deg, rgba(20, 31, 54, 0.98), rgba(15, 24, 42, 1)),
    var(--navy);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: 2rem;
  padding: 4.5rem 0 3rem;
}

.footer-brand p,
.footer-copy,
.footer-list a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand .site-logo-title,
.footer-brand .phone-link {
  color: var(--gold);
}

.footer-heading {
  margin: 0;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-list {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

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

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

.footer-bottom {
  padding: 1.5rem 0 2.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
}

.footer-copy {
  margin-top: 0.85rem;
  font-size: 0.88rem;
}

.footer-copy a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.footer-copy a:hover {
  color: var(--gold);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 76rem) {
  .site-nav,
  .header-actions {
    display: none;
  }

  .language-toggle-header-mobile {
    display: inline-flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-grid,
  .split-grid,
  .pricing-grid,
  .contact-grid,
  .legal-layout,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }

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

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

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

  .coverage-grid {
    gap: 2rem;
  }

  .coverage-copy {
    max-width: 100%;
  }

  .coverage-copy .section-title {
    max-width: 13ch;
  }

  .hero-note {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

  .price-panel {
    position: static;
    top: auto;
  }

  .hero-media {
    aspect-ratio: 5 / 4;
  }
}

@media (max-width: 48rem) {
  .section,
  .page-hero,
  .hero,
  .cta-band {
    padding: 4rem 0;
  }

  .grid-3,
  .grid-4,
  .grid-2,
  .highlight-grid,
  .state-grid,
  .form-grid,
  .legal-layout,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .container {
    width: min(var(--max-width), calc(100% - 1.25rem));
  }

  .site-header-inner {
    min-height: 4.55rem;
    gap: 0.65rem;
  }

  .site-header .container {
    width: min(var(--max-width), calc(100% - 1.25rem));
  }

  .site-logo-image {
    height: 2.65rem;
    max-width: min(13.5rem, 52vw);
  }

  .language-toggle-header-mobile {
    margin-right: 0.45rem;
  }

  .language-toggle button {
    min-width: 1.82rem;
    min-height: 1.65rem;
    padding-inline: 0.38rem;
    font-size: 0.68rem;
  }

  .menu-toggle {
    width: 2.55rem;
    height: 2.55rem;
  }

  .hero-title {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .hero-copy,
  .page-subtitle {
    font-size: 1rem;
  }

  .legal-card {
    padding: 1.45rem;
  }

  .legal-card p,
  .legal-card li {
    font-size: 1rem;
    line-height: 1.72;
  }

  .section-intro .section-title,
  .section-intro .page-title {
    max-width: 12ch;
  }

  .section-heading-centered {
    margin-bottom: 1.75rem;
    padding-inline: 0.5rem;
  }

  .section-heading-centered .section-title,
  .section-heading-centered .page-title {
    max-width: 11ch;
  }

  .section-title-page-center {
    max-width: none;
  }

  .text-center > .section-title,
  .text-center > .page-title {
    max-width: 12ch;
  }

  .cta-card,
  .contact-panel,
  .price-panel {
    padding: 1.6rem;
  }

  .hero-media {
    aspect-ratio: 1 / 1;
  }

  .chip-list-overview,
  .location-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coverage-media {
    aspect-ratio: 4 / 3;
  }

  .alert-strip-track {
    gap: 1.2rem;
    animation-duration: 24s;
  }

  .faq-item summary {
    font-size: 1.15rem;
  }
}

@media (max-width: 34rem) {
  .chip-list-overview,
  .location-list {
    grid-template-columns: 1fr;
  }
}
