/* ============================================================
   THE STEWARD CO — DESIGN TOKENS
   Palette locked: white / black / gold / navy
   ============================================================ */
:root {
  --white: #ffffff;
  --paper: #fafafa;
  --paper-warm: #f4f4f1;
  --ink: #0b0e14;
  --ink-soft: #2a2f3a;
  --ink-mute: #6c7280;
  --navy: #0a1f3d;
  --navy-deep: #050f1f;
  --navy-soft: #e8eef7;
  --gold: #c9a227;
  --gold-bright: #e0bb37;
  --gold-soft: #f3e5b3;
  --line: #e7e7ea;
  --line-strong: #c8ccd1;
  --shadow-sm: 0 6px 16px rgba(11, 14, 20, 0.06);
  --shadow: 0 18px 50px rgba(10, 31, 61, 0.12);
  --shadow-lg: 0 32px 80px rgba(10, 31, 61, 0.18);
  --radius: 6px;
  --radius-lg: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
img, svg { display: block; max-width: 100%; }

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  letter-spacing: -0.01em;
  font-weight: 600;
  margin: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow-on-dark { color: var(--gold-bright); }
.quote-intro .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-bright);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
}
.quote-intro .eyebrow svg { stroke: var(--gold-bright); flex-shrink: 0; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; min-height: 76px;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}
.brand, .brand-footer {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 800; font-size: 1.02rem; letter-spacing: -0.01em;
  white-space: nowrap;
  flex-shrink: 0;
}
.brand-name { white-space: nowrap; }
.brand-mark {
  display: inline-block;
  width: 42px; height: 42px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-name { color: var(--ink); }
.brand-footer .brand-name { color: var(--white); }

.nav {
  display: flex; align-items: center; gap: 26px;
  color: var(--ink-soft);
  font-size: 0.92rem; font-weight: 600;
  white-space: nowrap;
}
.nav a { white-space: nowrap; }
.nav a:hover { color: var(--navy); }

.header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.phone-link {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--navy); font-weight: 700; font-size: 0.92rem;
  white-space: nowrap;
}
.phone-link:hover { color: var(--gold); }

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block; content: "";
  width: 18px; height: 2px;
  background: var(--ink);
  transition: transform 180ms ease;
}
.menu-toggle span::before { transform: translateY(-6px); }
.menu-toggle span::after  { transform: translateY(4px); }

/* ============================================================
   BUTTONS
   ============================================================ */
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
  white-space: nowrap;
}
.button:hover { transform: translateY(-1px); }
.button-primary {
  color: var(--ink);
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 100%);
  box-shadow:
    0 4px 12px rgba(201, 162, 39, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.30);
  font-weight: 800;
}
.button-primary:hover {
  background: linear-gradient(180deg, #ecc340 0%, var(--gold-bright) 100%);
  box-shadow:
    0 6px 16px rgba(201, 162, 39, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.40);
}
.button-dark {
  color: var(--white);
  background: var(--navy);
}
.button-dark:hover { background: var(--navy-deep); }
.button-ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line-strong);
}
.button-ghost:hover { background: var(--paper); }
.button-ghost-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.32);
}
.button-ghost-light:hover { background: rgba(255, 255, 255, 0.1); }
.button-large { min-height: 56px; padding: 0 30px; font-size: 1rem; }

/* ============================================================
   HERO — brand-graphic, no photo
   ============================================================ */
.hero {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(900px 600px at 90% 10%, rgba(201, 162, 39, 0.18), transparent 60%),
    radial-gradient(700px 500px at 5% 95%, rgba(201, 162, 39, 0.10), transparent 55%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  overflow: hidden;
  isolation: isolate;
}
.hero-video {
  /* Background video — drop assets/hero-video.mp4 to activate.
     Until then, falls back gracefully to the gradient + texture below. */
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.20;
  pointer-events: none;
}
.hero-overlay {
  /* Light asymmetric navy tint: 0.40 left → 0.30 right.
     Subtle variation so the video reads through evenly across the hero. */
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(
    95deg,
    rgba(10, 31, 61, 0.40) 0%,
    rgba(10, 31, 61, 0.30) 100%
  );
  pointer-events: none;
}
@media (max-width: 860px) {
  .hero-overlay {
    /* On mobile the layout stacks vertically — same 0.40 → 0.30 range,
       flipped top-down so the headline sits over the darker portion. */
    background: linear-gradient(
      180deg,
      rgba(10, 31, 61, 0.40) 0%,
      rgba(10, 31, 61, 0.30) 100%
    );
  }
}
.hero::before {
  /* Subtle diagonal grain texture for premium feel — sits on top of video */
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(45deg, rgba(255, 255, 255, 0.018) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.018) 50%, rgba(255, 255, 255, 0.018) 75%, transparent 75%);
  background-size: 6px 6px;
  pointer-events: none;
}
.hero::after {
  /* Gold accent stripe */
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold) 100%);
  z-index: 2;
}
.hero-inner {
  position: relative; z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(56px, 9vw, 96px) 0 clamp(64px, 9vw, 110px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}
.hero-copy { max-width: 580px; }
.hero h1 {
  margin: 6px 0 0;
  font-size: clamp(2.8rem, 6.4vw, 5.2rem);
  line-height: 0.98;
  color: var(--white);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-bright);
}
.hero-sub {
  margin: 22px 0 0;
  max-width: 480px;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 400;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 30px;
}
.hero-trust {
  position: relative;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.hero-trust-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: trust-scroll 28s linear infinite;
}
.hero-trust:hover .hero-trust-track { animation-play-state: paused; }
.hero-trust-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-shrink: 0;
  white-space: nowrap;
}
.hero-trust-item strong {
  color: var(--white);
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.hero-trust-item .trust-star {
  color: var(--gold);
  font-size: 0.92em;
  margin-left: 2px;
}
.hero-trust-item span:not(.trust-star) {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}
@keyframes trust-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-trust-track { animation: none; }
}

/* Hero quote quick-pick card */
.hero-quickpick {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 32px);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.hero-quickpick h2 {
  margin: 0 0 6px;
  font-size: 1.42rem;
  line-height: 1.15;
  color: var(--ink);
}
.hero-quickpick p {
  margin: 0 0 20px;
  color: var(--ink-mute);
  font-size: 0.94rem;
}
.quickpick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.quickpick-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--ink);
  transition: border-color 140ms ease, background 140ms ease, transform 140ms ease;
}
.quickpick-btn:hover {
  border-color: var(--navy);
  background: var(--navy-soft);
  transform: translateY(-1px);
}
.quickpick-btn svg {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--navy);
}
.quickpick-foot {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--ink-mute);
}
.quickpick-foot a { color: var(--navy); font-weight: 700; }

/* ============================================================
   SECTION BASE
   ============================================================ */
.section { padding: clamp(64px, 8vw, 104px) 0; }
.section-tight { padding: clamp(48px, 6vw, 84px) 0; }
.section-dark {
  color: var(--white);
  background: var(--navy-deep);
}
.section-paper { background: var(--paper); }
.section-warm  { background: var(--paper-warm); }

.section-heading {
  width: min(740px, 100%);
  margin: 0 auto 44px;
  text-align: center;
}
.section-heading-left {
  width: min(740px, 100%);
  margin-bottom: 36px;
}
.section-heading h2,
.section-heading-left h2 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.04;
  color: var(--ink);
}
.section-dark .section-heading h2,
.section-dark .section-heading-left h2 { color: var(--white); }
.section-sub {
  margin: 16px 0 0;
  color: var(--ink-mute);
  font-size: 1.02rem;
}
.section-dark .section-sub { color: rgba(255, 255, 255, 0.7); }

/* ============================================================
   VALUE POINTS
   ============================================================ */
.value-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.value-point {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.value-icon {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  color: var(--navy);
  background: var(--navy-soft);
  border-radius: 50%;
}
.value-point h3 {
  margin: 22px 0 8px;
  font-size: 1.18rem;
  color: var(--ink);
}
.value-point p {
  margin: 0;
  color: var(--ink-mute);
  font-size: 0.95rem;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.service-card {
  display: flex; flex-direction: column;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  min-height: 220px;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.service-card.service-card-feature {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.service-card.service-card-feature h3 { color: var(--white); }
.service-card.service-card-feature p,
.service-card.service-card-feature .service-link { color: rgba(255, 255, 255, 0.82); }
.service-card.service-card-feature .service-link strong { color: var(--gold-bright); }
.service-card.service-card-feature .service-tag { color: var(--gold-bright); }
.service-card.service-card-feature:hover .service-link strong { color: var(--white); }

.service-card-other {
  background: var(--paper);
}

.service-tag {
  color: var(--gold);
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.service-card h3 {
  margin: 18px 0 6px;
  font-size: 1.32rem;
  color: var(--ink);
}
.service-card p {
  margin: 0;
  color: var(--ink-mute);
  font-size: 0.94rem;
}
.service-link {
  margin-top: auto; padding-top: 20px;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.92rem;
}
.service-link strong { color: var(--navy); }
.service-card:hover .service-link strong { color: var(--gold); }

/* ============================================================
   CHECKLIST
   ============================================================ */
.checklist-table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.checklist-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.checklist-table th, .checklist-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 0.94rem;
}
.checklist-table th {
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}
.checklist-table td:not(:first-child) {
  text-align: center;
  color: var(--navy);
  font-weight: 700;
}
.checklist-task-col { width: 38%; font-weight: 600; color: var(--ink); }
.checklist-group-row td {
  color: var(--gold);
  background: var(--gold-soft);
  font-size: 0.74rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-align: left !important;
}
.checklist-note {
  margin-top: 18px;
  color: var(--ink-mute);
  font-size: 0.92rem;
}

/* ============================================================
   WHAT'S INCLUDED — level toggle
   ============================================================ */
.scope { width: min(720px, 100%); margin: 0 auto; }
.scope-tabs {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 6px; margin-bottom: 22px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 999px; padding: 6px;
  box-shadow: var(--shadow-sm);
}
.scope-tab {
  min-height: 48px; border: 0; border-radius: 999px;
  background: transparent; cursor: pointer;
  font-weight: 700; font-size: 0.95rem; color: var(--ink-soft);
  transition: background 160ms ease, color 160ms ease;
}
.scope-tab:hover { color: var(--navy); }
.scope-tab.is-active {
  background: var(--navy); color: var(--white);
  box-shadow: 0 8px 20px rgba(10, 31, 61, 0.20);
}
.scope-panel { display: none; }
.scope-panel.is-active {
  display: block;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(24px, 3.4vw, 36px);
  box-shadow: var(--shadow-sm);
  animation: scope-fade 240ms ease;
}
@keyframes scope-fade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}
.scope-lead {
  margin: 0 0 20px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.16rem; color: var(--ink);
}
.scope-lead strong { color: var(--gold); }
.scope-list {
  margin: 0; padding: 0; list-style: none;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
}
.scope-list li {
  position: relative; padding-left: 32px;
  font-size: 0.97rem; font-weight: 500; color: var(--ink-soft);
}
.scope-list li::before {
  content: ""; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--gold); border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a1f3d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-position: center; background-repeat: no-repeat; background-size: 13px 13px;
}
.scope-custom {
  margin: 26px 0 0; text-align: center;
  font-size: 1.08rem; color: var(--ink-mute);
}
.scope-custom strong { color: var(--navy); }
@media (max-width: 560px) {
  .scope-tabs { grid-template-columns: repeat(2, 1fr); }
  .scope-list { grid-template-columns: 1fr; }
  .scope-tab { font-size: 0.82rem; min-height: 44px; }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.process-step {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.process-num {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  color: var(--gold-bright);
  background: var(--navy);
  border-radius: 50%;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 1.05rem;
}
.process-step h3 {
  margin: 22px 0 6px;
  font-size: 1.24rem;
  color: var(--ink);
}
.process-step p {
  margin: 0;
  color: var(--ink-mute);
  font-size: 0.94rem;
}

/* ============================================================
   QUOTE WIZARD
   ============================================================ */
.quote-section {
  position: relative;
  color: var(--white);
  border-top: 3px solid var(--gold);
  background:
    radial-gradient(760px 520px at 88% 16%, rgba(201, 162, 39, 0.16), transparent 60%),
    radial-gradient(620px 420px at 0% 100%, rgba(201, 162, 39, 0.08), transparent 55%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  overflow: hidden;
  isolation: isolate;
}
.quote-section::before {
  /* Dot pattern — bumped opacity so it actually reads (was effectively ~0.027) */
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
  background-size: 22px 22px;
  pointer-events: none;
}
.quote-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.quote-intro { position: sticky; top: 100px; }
.quote-intro h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.6rem, 5.4vw, 4rem);
  line-height: 1.0;
  letter-spacing: -0.015em;
}
.quote-intro h2 em {
  font-style: italic;
  color: var(--gold-bright);
}
.quote-intro p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}
.quote-intro-list {
  margin: 28px 0 0; padding: 0; list-style: none;
  display: grid; gap: 10px;
}
.quote-intro-list li {
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 2px 6px rgba(10, 31, 61, 0.04);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.quote-intro-list li:hover {
  transform: translateX(2px);
  box-shadow: 0 6px 14px rgba(10, 31, 61, 0.08);
}
.quote-intro-list li::before {
  content: "";
  width: 22px; height: 22px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a1f3d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
}
.quote-intro-note {
  margin: 24px 0 0;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.quote-form, .careers-form {
  display: grid; gap: 18px;
  padding: clamp(28px, 3.5vw, 40px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow:
    0 32px 80px rgba(10, 31, 61, 0.18),
    0 4px 14px rgba(10, 31, 61, 0.06);
  position: relative;
}
.quote-form::before {
  content: "";
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold) 100%);
  border-radius: 0 0 6px 6px;
}
.wizard-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.wizard-progress span {
  min-height: 36px;
  display: grid; place-items: center;
  color: var(--ink-mute);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}
.wizard-progress span.is-active {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}
.wizard-step, .question-set {
  display: none;
  margin: 0; padding: 0; border: 0;
}
.wizard-step.is-active, .question-set.is-active {
  display: grid; gap: 16px;
}
.wizard-step h3 {
  margin: 4px 0 4px;
  font-size: 1.35rem;
  color: var(--ink);
}
.question-set { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.service-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.service-choice {
  position: relative;
  display: block;
  padding: 18px 44px 18px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 140ms ease, background 140ms ease, box-shadow 140ms ease;
}
.service-choice input { position: absolute; opacity: 0; }
.service-choice::after {
  content: "";
  position: absolute; top: 18px; right: 18px;
  width: 18px; height: 18px;
  border: 2px solid var(--line-strong);
  border-radius: 50%;
  background: var(--white);
}
.service-choice:has(input:checked) {
  background: var(--navy-soft);
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10, 31, 61, 0.08);
}
.service-choice:has(input:checked)::after {
  border-color: var(--navy);
  background: radial-gradient(circle at center, var(--navy) 40%, var(--white) 44%);
}
.choice-body { display: grid; gap: 4px; }
.choice-body strong {
  color: var(--ink);
  font-weight: 700;
  font-size: 0.97rem;
}
.choice-body em {
  font-style: normal;
  color: var(--ink-mute);
  font-size: 0.85rem;
}

.quote-form label, .careers-form label {
  display: grid; gap: 6px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
}
.quote-form input,
.quote-form select,
.quote-form textarea,
.careers-form input,
.careers-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}
.quote-form textarea {
  min-height: 108px;
  padding: 12px 14px;
  resize: vertical;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus,
.careers-form input:focus,
.careers-form select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10, 31, 61, 0.1);
}

.wide-field, .wizard-actions { grid-column: 1 / -1; }
.wizard-actions {
  display: flex; justify-content: flex-end; gap: 10px;
  margin-top: 4px;
}

/* Honeypot — hide from real users */
.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Submission states */
.form-state {
  padding: 24px;
  border-radius: 8px;
  text-align: center;
  display: none;
}
.form-state.is-active { display: block; }
.form-state-success {
  background: var(--navy-soft);
  border: 1px solid var(--navy);
  color: var(--navy);
}
.form-state-success h3 { color: var(--navy); margin: 0 0 6px; font-size: 1.3rem; }
.form-state-error {
  background: #fdecea;
  border: 1px solid #d33;
  color: #8a1f1f;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.testimonial {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.stars { color: var(--gold); letter-spacing: 0.12em; font-size: 0.92rem; }
.testimonial blockquote {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
  font-style: italic;
  line-height: 1.6;
}
.testimonial figcaption {
  margin-top: 14px;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
}

/* ============================================================
   BEFORE / AFTER placeholders
   ============================================================ */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.ba-card {
  display: grid; place-items: center;
  min-height: 240px;
  background:
    linear-gradient(135deg, rgba(10, 31, 61, 0.06), rgba(201, 162, 39, 0.10)),
    var(--paper);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-lg);
  color: var(--ink-mute);
  font-size: 0.92rem;
  text-align: center;
  padding: 24px;
}
.ba-card strong { color: var(--ink); font-weight: 700; }

/* ============================================================
   CAREERS
   ============================================================ */
.careers-section {
  position: relative;
  background: var(--paper-warm);
  color: var(--ink);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.careers-section::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 500px at 90% 20%, rgba(201, 162, 39, 0.05), transparent 60%);
  pointer-events: none;
}
.careers-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.careers-badge {
  display: inline-block;
  margin: 0 0 14px;
  padding: 0;
  background: transparent;
  color: var(--ink-mute);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.careers-copy h2 {
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  line-height: 1.06;
  color: var(--ink);
}
.careers-copy p {
  color: var(--ink-mute);
  margin: 18px 0 0;
  font-size: 1.02rem;
}
.careers-perks {
  display: grid; gap: 10px;
  margin: 30px 0 0;
}
.careers-perks span {
  position: relative;
  padding: 14px 16px 14px 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 600;
}
.careers-perks span::before {
  content: "";
  position: absolute;
  left: 14px; top: 50%;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}
.careers-form { color: var(--ink); }
.careers-form h3 { margin: 0 0 4px; font-size: 1.35rem; color: var(--ink); }
.careers-form button[type="submit"] {
  /* Calmer than the booking CTA — navy, no gold glow (leads come first) */
  background: var(--navy);
  color: var(--white);
  box-shadow: none;
}
.careers-form button[type="submit"]:hover { background: var(--navy-deep); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: grid; gap: 10px; max-width: 820px; margin: 0 auto; }
.faq-item {
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  cursor: pointer;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 600;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin: 12px 0 0;
  color: var(--ink-mute);
  font-size: 0.96rem;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  text-align: center;
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(201, 162, 39, 0.16), transparent 60%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
}
.final-cta h2 { color: var(--white); font-size: clamp(2.2rem, 4.4vw, 3.4rem); }
.final-cta p { color: rgba(255, 255, 255, 0.72); margin: 14px auto 0; max-width: 540px; }
.final-cta-actions {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 14px 20px; margin-top: 30px;
}
.phone-link-large { color: var(--gold-bright); font-weight: 700; font-size: 1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  color: rgba(255, 255, 255, 0.7);
  background: var(--ink);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.8fr);
  gap: 36px;
  padding: 64px 0 36px;
}
.footer-tag { max-width: 320px; margin: 14px 0 0; }
.footer-contact { margin: 14px 0 0; }
.footer-contact a { color: rgba(255, 255, 255, 0.86); }
.footer-contact a:hover { color: var(--gold-bright); }
.footer-col h4 {
  margin: 0 0 14px;
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-col ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); }
.footer-bottom-inner {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 18px 0;
  font-size: 0.85rem;
  flex-wrap: wrap;
}
.footer-legal { display: flex; gap: 18px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav, .header-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-inner { gap: 12px; min-height: 68px; width: calc(100% - 32px); }
  .nav.is-open {
    position: absolute;
    top: 68px; left: 16px; right: 16px;
    display: grid; gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
  }
  .nav.is-open a { padding: 12px; border-radius: 6px; }
  .nav.is-open a:hover { background: var(--paper); }
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    padding: 56px 0 72px;
  }
  .hero-copy, .hero-quickpick { min-width: 0; }
  .hero-trust { max-width: 100%; }
  body { overflow-x: hidden; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  /* Mobile: center the hero to match the centered sections below */
  .hero-copy { max-width: 100%; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-quickpick { text-align: center; }
  .quickpick-btn { justify-content: center; text-align: center; }
  .quickpick-foot { justify-content: center; }
  .value-points, .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .quote-grid, .careers-grid, .footer-inner {
    grid-template-columns: 1fr;
  }
  .quote-intro { position: static; }
  .testimonial-grid, .process-steps, .before-after-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner { padding: 48px 0 28px; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: clamp(2.4rem, 12vw, 3.4rem); }
  .quickpick-grid, .service-choice-grid, .question-set,
  .value-points, .service-grid { grid-template-columns: 1fr; }
  .hero-trust-track { gap: 36px; animation-duration: 22s; }
  .hero-trust-item strong { font-size: 1.05rem; }
  .hero-trust-item span:not(.trust-star) { font-size: 0.74rem; }
  .button, .wizard-actions .button { width: 100%; }
  .wizard-actions { flex-direction: column-reverse; }
  /* Phone link becomes icon-only at phone widths */
  .phone-link-text { display: none; }
  .phone-link {
    width: 42px; height: 42px;
    padding: 0;
    display: inline-grid;
    place-items: center;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
  }
}


/* ===== Town page + Areas additions (Forge 2026-09-23) ===== */
.page-hero {
  background: linear-gradient(180deg, var(--paper-warm) 0%, var(--white) 100%);
  padding: clamp(40px, 6vw, 72px) 0 clamp(28px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
}
.page-hero .container { width: min(860px, calc(100% - 48px)); }
.page-hero .eyebrow { margin: 0 0 12px; }
.page-hero h1 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.page-hero .usp {
  margin: 12px 0 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
}
.page-hero .hero-sub {
  margin: 16px 0 0;
  color: var(--ink-mute);
  font-size: 1.05rem;
  max-width: 62ch;
}
.breadcrumbs {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  margin: 0 0 18px; font-size: 0.85rem; color: var(--ink-mute);
}
.breadcrumbs a { color: var(--navy); text-decoration: none; font-weight: 600; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span[aria-hidden] { opacity: 0.5; }

.town-prose { max-width: 72ch; }
.town-prose p { margin: 0 0 1em; color: var(--ink-soft); font-size: 1.02rem; }
.town-prose p:last-child { margin-bottom: 0; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.svc-card-static {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-sm);
}
.svc-card-static strong { display: block; margin-bottom: 6px; color: var(--ink); }
.svc-card-static span { color: var(--ink-mute); font-size: 0.94rem; line-height: 1.55; }
.svc-note { margin: 18px 0 0; color: var(--ink-mute); font-size: 0.95rem; }

.proof-list {
  margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 12px;
}
.proof-list li {
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-soft);
  line-height: 1.55;
}
.proof-list li strong { color: var(--ink); }

.areas-section .section-heading { margin-bottom: 22px; }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}
.area-link {
  display: flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 12px 14px;
  text-align: center; text-decoration: none; font-weight: 700;
  color: var(--navy); background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .15s, color .15s, box-shadow .15s;
}
.area-link:hover {
  color: var(--ink); border-color: var(--gold); box-shadow: var(--shadow-sm);
}
.area-link.is-soon { color: var(--ink-mute); font-weight: 600; opacity: 0.85; }
.areas-note { margin: 16px 0 0; color: var(--ink-mute); font-size: 0.92rem; }

.quote-embed { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; min-height: 420px; }
.nap-card {
  margin-top: 28px; padding: 18px 20px;
  background: var(--paper-warm); border-left: 3px solid var(--gold); border-radius: 6px;
  color: var(--ink-soft); line-height: 1.6;
}
.nap-card strong { color: var(--ink); }
.nearby-towns { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.nearby-towns a {
  display: inline-block; padding: 8px 12px; border-radius: 999px;
  background: var(--navy-soft); color: var(--navy); text-decoration: none;
  font-size: 0.85rem; font-weight: 700;
}
.nearby-towns a:hover { background: var(--gold-soft); color: var(--ink); }

.town-main .section { padding: clamp(40px, 6vw, 72px) 0; }
.town-main .section-paper { background: var(--paper); }
.header-back { color: var(--navy); font-weight: 700; font-size: 0.92rem; text-decoration: none; }
.header-back:hover { color: var(--gold); }

@media (max-width: 720px) {
  .page-hero .container { width: calc(100% - 32px); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Whole service card is clickable: the card's link stretches over the full card (2026-09-24) */
.service-card { position: relative; cursor: pointer; }
.service-card .service-link { position: static; }
.service-card .service-link::after { content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: 1; }
.service-card:focus-within { border-color: var(--gold); box-shadow: var(--shadow); }

/* Smaller step numbers in the How it works headline (2026-09-24) */
.step-n { font-size: 0.62em; font-weight: 600; color: var(--gold); vertical-align: 0.15em; margin-right: 0.1em; }

/* Centered reading column on service and area pages: headings and text share one centered column, text stays left-aligned (2026-09-24) */
.town-main > .section:not(#services):not(#quote):not(.final-cta) > .container { width: min(860px, calc(100% - 40px)); }
.town-main .section-heading-left { width: 100%; }
.town-main .town-prose { max-width: none; }

/* Trust section stands apart: navy band, gold accents, two-column cards (2026-09-24) */
.town-main #proof { background: var(--navy); color: var(--white); border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold); }
.town-main #proof .eyebrow { color: var(--gold-bright); }
.town-main #proof h2 { color: var(--white); }
.town-main #proof .proof-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.town-main #proof .proof-list li { background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.14); border-left: 3px solid var(--gold); color: rgba(255, 255, 255, 0.82); }
.town-main #proof .proof-list li strong { color: var(--white); }
@media (max-width: 680px) { .town-main #proof .proof-list { grid-template-columns: 1fr; } }

/* Keep each numbered step together and size the How it works headline to fit one line on desktop (2026-09-24) */
.step-item { white-space: nowrap; margin: 0 0.3em; }
.town-main #process .section-heading-left h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }

/* Trust cards: equal size, centered text, gold star beside each title (2026-09-24) */
.town-main #proof .proof-list { grid-auto-rows: 1fr; }
.town-main #proof .proof-list li { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 4px; padding: 20px 18px; border-left-width: 1px; border-top: 3px solid var(--gold); }
.town-main #proof .proof-list li strong { font-size: 1.02rem; }
.town-main #proof .proof-list li strong::before { content: "\2605"; color: var(--gold-bright); margin-right: 0.45em; }
.town-main #proof .proof-list li span { color: rgba(255, 255, 255, 0.78); }

/* ============================================================
   BEFORE / AFTER SLIDER
   ============================================================ */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.before-after-grid.ba-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.before-after-grid.ba-grid-1 {
  grid-template-columns: minmax(0, 560px);
  justify-content: center;
}
.ba-slider {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.ba-frame {
  --ba-pos: 50%;
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg, 14px);
  background: var(--paper, #fafafa);
  border: 1.5px solid var(--gold, #c9a227);
  touch-action: pan-y;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}
.ba-img-before {
  z-index: 1;
  clip-path: inset(0 calc(100% - var(--ba-pos)) 0 0);
}
.ba-img-after {
  z-index: 0;
}
.ba-label {
  position: absolute;
  top: 10px;
  z-index: 2;
  pointer-events: none;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  background: rgba(5, 15, 31, 0.72);
  color: #fff;
}
.ba-label-before { left: 10px; }
.ba-label-after { right: 10px; }
.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-pos);
  width: 2px;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 0 0 1px rgba(5, 15, 31, 0.25);
  z-index: 3;
  pointer-events: none;
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--navy, #0a1f3d);
  box-shadow: 0 2px 10px rgba(5, 15, 31, 0.28);
  display: grid;
  place-items: center;
  color: var(--navy, #0a1f3d);
}
.ba-handle svg {
  width: 22px;
  height: 22px;
  display: block;
}
.ba-range {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: ew-resize;
  opacity: 0;
  z-index: 4;
  pointer-events: none;
  touch-action: pan-y;
}
.ba-range::-webkit-slider-runnable-track {
  height: 100%;
  background: transparent;
}
.ba-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 40px;
  height: 100%;
  background: transparent;
  border: 0;
  cursor: ew-resize;
}
.ba-range::-moz-range-track {
  height: 100%;
  background: transparent;
  border: 0;
}
.ba-range::-moz-range-thumb {
  width: 40px;
  height: 100%;
  background: transparent;
  border: 0;
  cursor: ew-resize;
}
.ba-slider:focus-within .ba-handle {
  outline: 3px solid var(--gold, #c9a227);
  outline-offset: 3px;
}
.ba-slider figcaption {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft, #2a2f3a);
  text-align: center;
}
@media (max-width: 980px) {
  .before-after-grid,
  .before-after-grid.ba-grid-2 {
    grid-template-columns: 1fr;
  }
  .before-after-grid.ba-grid-1 {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ba-img-after,
  .ba-divider,
  .ba-handle {
    transition: none !important;
  }
}
