:root {
  --bg: #f7f5f0;
  --bg-soft: #fdfbf8;
  --surface: rgba(247, 245, 240, 0.82);
  --surface-strong: rgba(253, 251, 248, 0.97);
  --surface-dark: #102A43;
  --surface-dark-soft: #1D3B59;
  --ink: #102A43;
  --ink-soft: #556577;
  --line: rgba(16, 42, 67, 0.12);
  --line-strong: rgba(255, 255, 255, 0.16);
  --gold: #c7a46a;
  --gold-soft: #e9dcc6;
  --blue: #1d3b59;
  --teal: #6e8f80;
  --success: #587969;
  --mist: #dce7e1;
  --shadow-lg: 0 28px 80px rgba(16, 42, 67, 0.14);
  --shadow-md: 0 18px 42px rgba(16, 42, 67, 0.1);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 40px));
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(199, 164, 106, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(110, 143, 128, 0.16), transparent 28%),
    linear-gradient(180deg, #fcfbf8 0%, #f7f5f0 34%, #eef3ef 100%);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.58), transparent 80%);
  pointer-events: none;
  z-index: -2;
}

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

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

button {
  border: 0;
  background: none;
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 30;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--surface-dark);
  color: #fff;
}

.skip-link:focus {
  top: 16px;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.background-glow {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.34;
  z-index: -3;
  pointer-events: none;
}

.glow-left {
  top: -160px;
  left: -120px;
  background: rgba(199, 164, 106, 0.34);
}

.glow-right {
  right: -120px;
  bottom: -140px;
  background: rgba(110, 143, 128, 0.2);
}

.grid-haze {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 25% 10%, rgba(255, 255, 255, 0.5), transparent 26%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.36), transparent 20%);
  pointer-events: none;
  z-index: -1;
}

.announcement-bar {
  padding: 10px 20px;
  text-align: center;
  color: #f8efe5;
  background: linear-gradient(90deg, #102a43 0%, #173654 55%, #234866 100%);
  font-size: 0.94rem;
}

.announcement-bar p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled .nav-shell {
  margin-top: 0;
  border-color: rgba(18, 33, 49, 0.08);
  background: rgba(250, 245, 239, 0.86);
  box-shadow: 0 16px 36px rgba(15, 29, 43, 0.08);
}

.nav-shell {
  width: min(1240px, calc(100vw - 24px));
  margin: 14px auto 0;
  padding: 14px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(18px);
  background: rgba(253, 251, 248, 0.74);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(16, 42, 67, 0.12);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1rem;
  line-height: 1.1;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav a {
  padding: 11px 14px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.site-nav a:hover {
  color: var(--ink);
  background: rgba(18, 33, 49, 0.05);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button:disabled:hover {
  transform: none;
}

.button-primary {
  color: #fbf8f3;
  background: linear-gradient(135deg, #102a43, #1c4560);
  box-shadow: 0 16px 32px rgba(16, 42, 67, 0.22);
}

.button-secondary {
  color: var(--ink);
  background: rgba(253, 251, 248, 0.78);
  border: 1px solid rgba(16, 42, 67, 0.12);
}

.hero {
  padding: 84px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--teal);
}

.hero h1,
.section-heading h2,
.hero-panel h2,
.cta-shell h2 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.65rem);
  max-width: 11.5ch;
}

.hero-text,
.section-heading p,
.hero-panel p,
.faq-answer p,
.service-card p,
.process-card p,
.standard-card p,
.area-panel p,
.coverage-card li,
.contact-note span,
.footer-note {
  color: var(--ink-soft);
}

.hero-text {
  max-width: 62ch;
  margin: 24px 0 0;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 24px;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 600;
}

.hero-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #f0e0c6);
  box-shadow: 0 0 0 6px rgba(199, 164, 106, 0.12);
}

.hero-panel,
.service-card,
.included-card,
.pricing-card,
.standard-card,
.coverage-card,
.form-card,
.cta-shell,
.trust-grid article {
  backdrop-filter: blur(18px);
}

.hero-panel {
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.62);
  background:
    linear-gradient(180deg, rgba(253, 251, 248, 0.92), rgba(239, 245, 241, 0.84)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.08));
  box-shadow: var(--shadow-lg);
}

.hero-panel-top h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 10ch;
}

.hero-stats {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.stat-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 42, 67, 0.08);
  box-shadow: var(--shadow-md);
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.stat-card.accent {
  background: linear-gradient(135deg, rgba(16, 42, 67, 0.98), rgba(28, 69, 96, 0.96));
  color: #f8f4ee;
}

.stat-card.accent span {
  color: rgba(248, 244, 238, 0.82);
}

.hero-checklist {
  display: grid;
  gap: 12px;
}

.hero-checklist div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.hero-checklist p {
  margin: 0;
}

.check-icon {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--success));
  position: relative;
  box-shadow: 0 12px 24px rgba(110, 143, 128, 0.24);
}

.check-icon::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.trust-strip {
  padding: 10px 0 22px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trust-grid article {
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(253, 251, 248, 0.78);
  border: 1px solid rgba(16, 42, 67, 0.08);
  box-shadow: var(--shadow-md);
}

.trust-grid strong {
  display: block;
  margin-bottom: 6px;
}

.section {
  padding: 74px 0;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(253, 251, 248, 0.62), rgba(239, 245, 241, 0.88)),
    radial-gradient(circle at top left, rgba(199, 164, 106, 0.12), transparent 24%);
}

.section-heading {
  max-width: 760px;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  max-width: 12ch;
}

.section-heading p {
  margin-top: 18px;
  max-width: 64ch;
}

.service-grid,
.included-grid,
.addon-grid,
.pricing-grid,
.standard-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.service-card,
.included-card,
.pricing-card,
.standard-card,
.coverage-card,
.form-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-md);
}

.service-card.highlight {
  background: linear-gradient(180deg, rgba(253, 251, 248, 0.98), rgba(220, 231, 225, 0.92));
}

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

.included-card {
  display: grid;
  gap: 22px;
}

.included-card.accent {
  background: linear-gradient(180deg, rgba(253, 251, 248, 0.98), rgba(220, 231, 225, 0.92));
}

.included-top h3 {
  margin: 10px 0 10px;
}

.included-top p {
  margin: 0;
  color: var(--ink-soft);
}

.included-kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(16, 42, 67, 0.06);
  border: 1px solid rgba(16, 42, 67, 0.08);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.included-group {
  display: grid;
  gap: 12px;
}

.included-group strong {
  font-size: 0.98rem;
}

.included-list {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
  display: grid;
  gap: 10px;
}

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

.addon-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-md);
}

.addon-price {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  background: rgba(16, 42, 67, 0.06);
  border: 1px solid rgba(16, 42, 67, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.addon-card h3 {
  margin: 0 0 10px;
}

.addon-list {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
  display: grid;
  gap: 10px;
}

.pricing-layout {
  display: grid;
  gap: 28px;
}

.pricing-note {
  padding: 24px 26px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(16, 42, 67, 0.98), rgba(29, 59, 89, 0.95));
  color: #f8f3eb;
  box-shadow: var(--shadow-lg);
}

.pricing-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.pricing-note p,
.pricing-note ul {
  margin: 0;
  color: rgba(248, 243, 235, 0.8);
}

.pricing-note ul {
  margin-top: 16px;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.pricing-card {
  display: grid;
  align-content: start;
  gap: 0;
}

.pricing-card.featured {
  background: linear-gradient(180deg, rgba(253, 251, 248, 0.98), rgba(220, 231, 225, 0.9));
}

.pricing-labels {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}

.pricing-badge,
.pricing-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-badge.fast {
  color: var(--success);
  background: rgba(88, 121, 105, 0.12);
  border: 1px solid rgba(88, 121, 105, 0.2);
}

.pricing-badge.review {
  color: var(--ink);
  background: rgba(16, 42, 67, 0.06);
  border: 1px solid rgba(16, 42, 67, 0.1);
}

.pricing-tag {
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(16, 42, 67, 0.08);
}

.pricing-card h3 {
  margin: 0;
}

.pricing-price {
  margin: 14px 0 8px;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4vw, 3.2rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.pricing-small,
.pricing-rule {
  color: var(--ink-soft);
}

.pricing-small {
  margin: 0;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.pricing-list li {
  padding: 0 0 10px;
  border-bottom: 1px solid rgba(16, 42, 67, 0.08);
  color: var(--ink);
  font-weight: 600;
}

.pricing-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.pricing-rule {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(16, 42, 67, 0.08);
}

.pricing-rule strong {
  color: var(--ink);
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(16, 42, 67, 0.98), rgba(29, 59, 89, 0.92));
  color: #f8f1e7;
  font-weight: 800;
}

.service-card h3,
.standard-card h3,
.coverage-card h3,
.process-card h3 {
  margin: 0 0 10px;
}

.service-card ul,
.coverage-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
  display: grid;
  gap: 10px;
}

.section-dark {
  background: linear-gradient(180deg, rgba(16, 42, 67, 0.98), rgba(25, 56, 82, 0.98));
  color: #f8f4ee;
}

.section-dark .eyebrow {
  color: var(--gold-soft);
}

.section-dark .section-heading p,
.section-dark .process-card p {
  color: rgba(248, 244, 238, 0.76);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.process-list {
  display: grid;
  gap: 16px;
}

.process-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.process-card span {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(199, 164, 106, 0.32), rgba(199, 164, 106, 0.1));
  color: var(--gold-soft);
  font-weight: 800;
  font-size: 1.08rem;
}

.standards-grid {
  display: grid;
  gap: 28px;
}

.standard-card {
  min-height: 190px;
}

.standard-cards {
  margin-top: 0;
}

.section-map {
  background:
    linear-gradient(180deg, rgba(253, 251, 248, 0.78), rgba(239, 245, 241, 0.98)),
    radial-gradient(circle at top right, rgba(199, 164, 106, 0.16), transparent 22%);
}

.area-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}

.area-panel,
.coverage-card {
  height: 100%;
}

.area-panel {
  padding: 28px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 251, 246, 0.9)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-md);
}

.area-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.area-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.area-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(16, 42, 67, 0.05);
  border: 1px solid rgba(16, 42, 67, 0.08);
  font-weight: 700;
}

.faq-grid {
  display: grid;
  gap: 30px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 22px;
  background: rgba(253, 251, 248, 0.8);
  border: 1px solid rgba(16, 42, 67, 0.08);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  font-weight: 700;
  color: var(--ink);
}

.faq-symbol {
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-item.open .faq-symbol {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 22px;
}

.cta-band {
  padding-top: 18px;
  padding-bottom: 18px;
}

.cta-shell {
  padding: 30px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, rgba(16, 42, 67, 0.98), rgba(29, 59, 89, 0.96));
  color: #f8f3eb;
  box-shadow: var(--shadow-lg);
}

.cta-shell .eyebrow,
.cta-shell p {
  color: rgba(248, 243, 235, 0.76);
}

.section-form {
  padding-top: 36px;
}

.form-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: start;
}

.contact-note {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(253, 251, 248, 0.78);
  border: 1px solid rgba(16, 42, 67, 0.08);
  box-shadow: var(--shadow-md);
}

.contact-note strong,
.form-message strong {
  display: block;
  margin-bottom: 6px;
}

.booking-card {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.booking-card h3 {
  margin: 0;
  font-size: 1.45rem;
}

.booking-card p {
  margin: 0;
  color: var(--ink-soft);
}

.booking-list {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
  display: grid;
  gap: 8px;
}

.booking-widget {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  min-height: 52px;
}

.form-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-divider::before,
.form-divider::after {
  content: "";
  height: 1px;
  flex: 1 1 auto;
  background: rgba(16, 42, 67, 0.12);
}

.quote-form {
  display: grid;
  gap: 18px;
}

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

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(16, 42, 67, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: rgba(110, 143, 128, 0.52);
  box-shadow: 0 0 0 4px rgba(110, 143, 128, 0.12);
}

.quote-form textarea {
  resize: vertical;
  min-height: 140px;
}

.form-policy-note {
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border-radius: 22px;
  border: 1px solid rgba(16, 42, 67, 0.1);
  background: linear-gradient(180deg, rgba(220, 231, 225, 0.62), rgba(255, 255, 255, 0.78));
  color: var(--ink-soft);
}

.form-policy-note p,
.consent-note {
  margin: 0;
}

.form-policy-note a,
.consent-check a,
.footer-note a,
.policy-card a,
.policy-back {
  text-decoration: underline;
  text-decoration-color: rgba(16, 42, 67, 0.22);
  text-underline-offset: 0.18em;
}

.consent-panel {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(16, 42, 67, 0.12);
  border-radius: 24px;
  background: rgba(253, 251, 248, 0.94);
}

.consent-panel legend {
  padding: 0 10px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-soft);
  font-weight: 600;
  line-height: 1.55;
}

.consent-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  padding: 0;
  border-radius: 6px;
  border: 1px solid rgba(16, 42, 67, 0.24);
  background: #fff;
  box-shadow: none;
  flex: 0 0 18px;
}

.consent-check span {
  display: block;
}

.consent-note {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-message {
  min-height: 24px;
  color: var(--ink-soft);
}

.quote-summary {
  margin: 0;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(16, 42, 67, 0.08);
  background: rgba(16, 42, 67, 0.96);
  color: #f3ece4;
  white-space: pre-wrap;
  font-family: "SFMono-Regular", "Menlo", "Monaco", monospace;
  line-height: 1.55;
}

.policy-hero {
  padding: 84px 0 30px;
}

.policy-intro {
  padding: 34px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(253, 251, 248, 0.84);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.policy-back {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-weight: 700;
}

.policy-intro h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.policy-lead {
  max-width: 62ch;
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.policy-layout {
  padding: 8px 0 80px;
}

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

.policy-nav-card,
.policy-card {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(253, 251, 248, 0.88);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.policy-nav-card {
  position: sticky;
  top: 112px;
  padding: 24px;
}

.policy-nav-card nav {
  display: grid;
  gap: 8px;
}

.policy-nav-card a {
  padding: 10px 14px;
  border-radius: 16px;
  color: var(--ink-soft);
  font-weight: 700;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.policy-nav-card a:hover {
  color: var(--ink);
  background: rgba(16, 42, 67, 0.05);
  transform: translateY(-1px);
}

.policy-content {
  display: grid;
  gap: 18px;
}

.policy-card {
  padding: 28px;
}

.policy-card h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  letter-spacing: -0.03em;
}

.policy-card h3 {
  margin: 22px 0 10px;
  font-size: 1rem;
}

.policy-card p {
  margin: 0 0 14px;
  color: var(--ink-soft);
}

.policy-card p:last-child {
  margin-bottom: 0;
}

.policy-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.policy-card li + li {
  margin-top: 8px;
}

.policy-callout {
  padding: 20px 22px;
  border-left: 4px solid var(--gold);
  border-radius: 18px;
  background: rgba(220, 231, 225, 0.44);
}

.policy-callout p {
  margin: 0;
  color: var(--ink);
}

.policy-note {
  font-size: 0.96rem;
}

.site-footer {
  padding: 40px 0 26px;
  color: rgba(248, 244, 238, 0.82);
  background: linear-gradient(180deg, #102a43 0%, #193652 100%);
}

.footer-brand .brand-logo {
  box-shadow: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.footer-brand .brand-copy small,
.footer-note,
.footer-bottom p {
  color: rgba(248, 244, 238, 0.64);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.footer-links a:hover {
  color: #fff;
}

.footer-note {
  margin: 0;
  text-align: right;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line-strong);
}

.footer-bottom p {
  margin: 0;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid,
  .split-grid,
  .form-grid,
  .area-grid,
  .footer-grid,
  .service-grid,
  .included-grid,
  .addon-grid,
  .pricing-grid,
  .standard-cards,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .section-heading h2,
  .area-panel h2 {
    max-width: none;
  }

  .cta-shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-note {
    text-align: left;
  }

  .policy-nav-card {
    position: static;
  }
}

@media (max-width: 860px) {
  .hero {
    padding-top: 60px;
  }

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

  .site-nav {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 10px);
    padding: 14px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.64);
    background: rgba(255, 248, 241, 0.96);
    box-shadow: var(--shadow-md);
    display: grid;
    gap: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-open .nav-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-open .nav-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav a {
    width: 100%;
  }

  .nav-cta {
    margin-top: 4px;
  }

  .trust-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .policy-hero {
    padding-top: 60px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100vw - 24px, var(--container));
  }

  .announcement-bar {
    padding-left: 14px;
    padding-right: 14px;
    font-size: 0.88rem;
  }

  .nav-shell,
  .hero-panel,
  .service-card,
  .included-card,
  .pricing-card,
  .form-card,
  .area-panel,
  .coverage-card,
  .cta-shell,
  .trust-grid article,
  .standard-card,
  .process-card,
  .policy-intro,
  .policy-nav-card,
  .policy-card,
  .consent-panel,
  .form-policy-note {
    border-radius: 20px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 15vw, 4.2rem);
  }

  .hero-actions,
  .form-actions {
    flex-direction: column;
  }

  .button,
  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .process-card {
    grid-template-columns: 1fr;
  }

  .process-card span {
    width: 60px;
    height: 60px;
  }

  .policy-intro,
  .policy-card {
    padding: 22px;
  }
}
