:root {
  --ink: #171817;
  --muted: #696a67;
  --paper: #ffffff;
  --soft: #f5f2ea;
  --line: #e6e1d7;
  --gold: #b88a42;
  --gold-dark: #8f672d;
  --dark: #171817;
  --success: #17683a;
  --shadow: 0 20px 55px rgba(24, 21, 16, 0.10);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 68px;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

/* Delayed offer banner */
.offer-banner {
  height: 0;
  overflow: hidden;
  background: var(--dark);
  color: #ffffff;
  transition: height 420ms ease;
  position: relative;
  z-index: 120;
}

.offer-banner.is-visible {
  height: 72px;
}

.offer-banner__content {
  min-height: 72px;
  width: min(1120px, calc(100% - 24px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.offer-banner__content div {
  display: grid;
  gap: 1px;
}

.offer-banner strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.offer-banner a {
  width: fit-content;
  color: #efd7ae;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}

.offer-banner__close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
  font-size: 1.55rem;
  cursor: pointer;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(23, 24, 23, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.header-inner {
  height: 72px;
  width: min(1120px, calc(100% - 28px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.logo-link {
  width: 200px;
  height: 60px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-link img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 360px;
  height: auto;
  max-width: none;
  transform: translate(-50%, -50%);
  display: block;
}

.menu-button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  display: grid;
  align-content: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.menu-button span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 10px;
}

/* Slide-out menu */
.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 130;
  background: rgba(0, 0, 0, 0.42);
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms ease;
}

.menu-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 140;
  width: min(88vw, 390px);
  padding: 22px;
  background: var(--paper);
  transform: translateX(100%);
  transition: transform 300ms ease;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 10px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.mobile-menu__top button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--soft);
  font-size: 1.6rem;
  cursor: pointer;
}

.mobile-menu > a {
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
}

.mobile-menu > a[aria-current="page"] {
  color: var(--gold-dark);
}

.mobile-menu__contact {
  margin-top: auto;
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--dark);
  color: #ffffff;
  display: grid;
  gap: 10px;
}

.mobile-menu__contact span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.menu-call,
.menu-text {
  text-decoration: none;
  font-weight: 700;
}

.menu-call {
  color: #efd7ae;
  font-size: 1.06rem;
}

.menu-text {
  width: fit-content;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
}

/* Typography and shared components */
.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section {
  padding: 72px 0;
}

.section-soft {
  background: var(--soft);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 30px;
}

.section-heading h2,
.final-cta h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 8vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.section-heading p {
  margin-top: 14px;
  color: var(--muted);
}

.primary-button,
.secondary-button {
  min-height: 54px;
  border-radius: 999px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.primary-button {
  background: var(--dark);
  color: #ffffff;
}

.primary-button:active {
  transform: scale(0.98);
}

.secondary-button {
  border: 1px solid rgba(23, 24, 23, 0.18);
  background: transparent;
  color: var(--ink);
}

/* Hero */
.hero {
  padding: 42px 0 60px;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.58) 0%,
      rgba(0, 0, 0, 0.38) 45%,
      rgba(0, 0, 0, 0.18) 100%
    ),
    url("assets/images/hero/backgroundimage1.png");

  background-size: cover;
background-position: center 35%;
background-repeat: no-repeat;
}

.hero-layout {
  display: grid;
  gap: 24px;
}

.hero-copy {
  padding-top: 8px;
}

.hero .eyebrow {
  color: #efd7ae;
}

.hero-copy h1 {
  max-width: 760px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.65rem, 13vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  color: #ffffff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.25);
}

.hero-copy > p {
  max-width: 610px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}

.hero-points {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  color: #ffffff;
  font-size: 0.77rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
}
/* Lead form */
.lead-form {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.form-heading {
  margin-bottom: 20px;
}

.form-heading > span {
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-heading h2 {
  margin-top: 6px;
  font-family: "Manrope", sans-serif;
  font-size: 1.65rem;
  line-height: 1.12;
}

.form-heading p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: #3b3c3a;
  font-size: 0.78rem;
  font-weight: 700;
}

.lead-form input,
.lead-form select {
  width: 100%;
  height: 51px;
  border: 1px solid #d9d4ca;
  border-radius: 13px;
  background: #fcfbf8;
  color: var(--ink);
  padding: 0 14px;
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 138, 66, 0.12);
  background: #ffffff;
}

.lead-form .primary-button {
  width: 100%;
  margin-top: 18px;
}

.form-consent {
  margin-top: 12px;
  color: #858681;
  font-size: 0.68rem;
  line-height: 1.4;
  text-align: center;
}

.form-status {
  min-height: 22px;
  margin-top: 8px;
  color: var(--success);
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
}

/* Placeholders */
.image-placeholder {
  min-height: 220px;
  border: 1px dashed #b9ad98;
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(184, 138, 66, 0.08), rgba(23, 24, 23, 0.03)),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 14px,
      rgba(184, 138, 66, 0.05) 14px,
      rgba(184, 138, 66, 0.05) 28px
    );
  color: #6f614a;
  display: grid;
  place-content: center;
  gap: 5px;
  padding: 22px;
  text-align: center;
}

.image-placeholder span {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.image-placeholder small {
  color: var(--muted);
}

.hero-placeholder {
  min-height: 300px;
}

/* Trust strip */
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

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

.trust-grid div {
  min-height: 104px;
  display: grid;
  place-content: center;
  text-align: center;
}

.trust-grid div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.trust-grid div:nth-child(-n+2) {
  border-bottom: 1px solid var(--line);
}

.trust-grid strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.75rem;
}

/* Services */
.service-grid {
  display: grid;
  gap: 20px;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(23, 24, 23, 0.05);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.service-card__body {
  padding: 20px;
}

.service-card h3 {
  font-family: "Manrope", sans-serif;
  font-size: 1.22rem;
}

.service-card p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.91rem;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold-dark);
  font-size: 0.84rem;
  font-weight: 800;
}

/* Benefits */
.benefit-grid {
  display: grid;
  gap: 14px;
}

.benefit-grid article {
  padding: 24px;
  border: 1px solid rgba(23, 24, 23, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
}

.benefit-grid article > span {
  color: var(--gold-dark);
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
}

.benefit-grid h3 {
  margin-top: 22px;
  font-family: "Manrope", sans-serif;
  font-size: 1.13rem;
}

.benefit-grid p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Gallery */
.gallery-heading {
  display: grid;
  gap: 10px;
}

.gallery-grid {
  display: grid;
  gap: 14px;
}

.gallery-item {
  min-height: 250px;
}

/* Process */
.process-section {
  border-top: 1px solid var(--line);
}

.process-grid {
  display: grid;
  gap: 14px;
}

.process-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.process-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--gold-dark);
  display: grid;
  place-content: center;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.process-grid h3 {
  margin-top: 24px;
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
}

.process-grid p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Reviews */
.section-dark {
  background: var(--dark);
  color: #ffffff;
}

.section-heading--light p {
  color: rgba(255, 255, 255, 0.64);
}

.section-dark .eyebrow {
  color: #efd7ae;
}

.review-grid {
  display: grid;
  gap: 14px;
}

.review-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
}

.stars {
  color: #efd7ae;
  letter-spacing: 0.13em;
}

.review-card p {
  margin-top: 20px;
  font-size: 1rem;
}

.review-card > span {
  display: block;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

/* CTA and footer */
.final-cta {
  padding: 72px 0;
  background: var(--soft);
}

.final-cta__inner {
  display: grid;
  gap: 28px;
}

.final-cta p {
  margin-top: 14px;
  color: var(--muted);
}

.final-cta__actions {
  display: grid;
  gap: 12px;
}

.site-footer {
  padding-top: 52px;
  background: #ffffff;
}

.footer-grid {
  display: grid;
  gap: 34px;
  padding-bottom: 38px;
}

.footer-logo {
  width: 130px;
  margin-bottom: 16px;
}

.footer-grid p,
.footer-grid span {
  max-width: 330px;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-grid h3 {
  margin-bottom: 12px;
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-grid a {
  width: fit-content;
  color: #424340;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-bottom {
  padding: 20px 0 92px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.76rem;
}

/* Fixed mobile action bar */
.mobile-action-bar {
  position: fixed;
  inset: auto 0 0;
  z-index: 110;
  min-height: 68px;
  padding: 9px 12px max(9px, env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(16px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.mobile-action-bar a {
  min-height: 48px;
  border-radius: 999px;
  display: grid;
  place-content: center;
  font-weight: 800;
  text-decoration: none;
}

.mobile-action-bar a:first-child {
  border: 1px solid var(--dark);
}

.mobile-action-bar a:last-child {
  background: var(--dark);
  color: #ffffff;
}

/* Starter-page styles */
.inner-hero {
  padding: 64px 0;
  background: var(--soft);
}

.inner-hero h1 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.5rem, 12vw, 5rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.inner-hero p {
  max-width: 620px;
  margin-top: 16px;
  color: var(--muted);
}

.starter-content {
  min-height: 42vh;
  padding: 70px 0;
}

.starter-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.starter-card p {
  color: var(--muted);
}

.starter-card .primary-button {
  margin-top: 22px;
}


/* Service detail page */
.service-detail {
  display: grid;
  gap: 28px;
  align-items: center;
}

.service-detail__image {
  min-height: 280px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.service-detail__image img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.service-detail__content h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 8vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.service-detail__content p {
  max-width: 620px;
  margin-top: 14px;
  color: var(--muted);
}

.service-detail__placeholder {
  border: 1px dashed #b9ad98;
  background: var(--soft);
  display: grid;
  place-content: center;
  padding: 24px;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}


/* Service callback form */
.service-lead-section {
  background: var(--soft);
}

.service-lead-form {
  max-width: 900px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.service-lead-fields {
  display: grid;
  gap: 14px;
}

.service-lead-form label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #3b3c3a;
}

.service-lead-fields label {
  display: grid;
  gap: 7px;
}

.service-lead-form input[type="text"],
.service-lead-form input[type="tel"],
.service-lead-form input[type="email"] {
  width: 100%;
  height: 52px;
  padding: 0 14px;
  border: 1px solid #d9d4ca;
  border-radius: 13px;
  background: #fcfbf8;
  outline: none;
}

.service-lead-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 138, 66, 0.12);
}

.service-options,
.timeline-options {
  margin-top: 30px;
  padding: 0;
  border: 0;
}

.service-options legend,
.timeline-options legend {
  margin-bottom: 14px;
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
}

.service-check-grid,
.timeline-grid {
  display: grid;
  gap: 10px;
}

.service-check,
.timeline-choice {
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  display: flex;
  align-items: center;
  gap: 11px;
  cursor: pointer;
}

.service-check input,
.timeline-choice input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold-dark);
}

.service-check:has(input:checked),
.timeline-choice:has(input:checked) {
  border-color: var(--gold);
  background: rgba(184, 138, 66, 0.08);
}

.service-submit {
  width: 100%;
  margin-top: 30px;
}

@media (min-width: 700px) {
  body {
    padding-bottom: 0;
  }

  /* Services page desktop layout */
  .service-detail {
    grid-template-columns: 1fr 1fr;
    gap: 54px;
  }

  .service-lead-fields {
    grid-template-columns: 1fr 1fr;
  }

  .service-check-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .service-lead-form {
    padding: 36px;
  }

  /* your existing CSS continues below */

  .offer-banner.is-visible {
    height: 50px;
  }

  .offer-banner__content {
    min-height: 50px;
    grid-template-columns: 1fr auto;
  }

  .offer-banner__content div {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .offer-banner strong,
  .offer-banner a {
    font-size: 0.8rem;
  }

.logo-link {
  width: 200px;
  height: 60px;
}
  .hero {
    padding: 70px 0 86px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
    align-items: start;
    gap: 38px;
  }

  .hero-copy {
    padding-top: 45px;
  }

  .hero-placeholder {
    grid-column: 1 / -1;
    min-height: 430px;
  }

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

  .form-grid label:last-child {
    grid-column: 1 / -1;
  }

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

  .trust-grid div {
    min-height: 112px;
    border-right: 1px solid var(--line);
    border-bottom: 0 !important;
  }

  .trust-grid div:last-child {
    border-right: 0;
  }

  .service-grid,
  .benefit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-heading {
    grid-template-columns: 1fr 0.7fr;
    align-items: end;
  }

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

  .gallery-item--wide {
    grid-column: span 2;
    min-height: 390px;
  }

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

  .final-cta__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .final-cta__actions {
    min-width: 250px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.7fr 0.9fr;
  }

  .footer-bottom {
    padding-bottom: 22px;
  }

  .mobile-action-bar {
    display: none;
  }
}

@media (min-width: 980px) {
  .section {
    padding: 102px 0;
  }

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

  .service-card .image-placeholder {
    min-height: 190px;
  }

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

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

  .gallery-item--wide {
    grid-column: span 2;
  }
}


/* ========================================
   SERVICES CALLBACK FORM - FINAL OVERRIDE
======================================== */

.service-lead-section {
  background: var(--soft);
}

.service-lead-form {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow);
}

/* Customer information */
.service-lead-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.service-lead-fields label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #3b3c3a;
  font-size: 0.82rem;
  font-weight: 700;
}

.service-lead-fields input {
  display: block;
  width: 100%;
  height: 52px;
  padding: 0 14px;
  border: 1px solid #d9d4ca;
  border-radius: 13px;
  background: #fcfbf8;
  color: var(--ink);
  outline: none;
}

.service-lead-fields input:focus {
  border-color: var(--gold);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(184, 138, 66, 0.12);
}


/* Remove ugly default fieldset styling */
.service-options,
.timeline-options {
  display: block;
  margin: 34px 0 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.service-options legend,
.timeline-options legend {
  display: block;
  width: 100%;
  margin-bottom: 16px;
  padding: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
}


/* Service checkbox cards */
.service-check-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.service-check {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.service-check input {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  margin: 0;
  accent-color: var(--gold-dark);
}

.service-check span {
  font-size: 0.9rem;
  font-weight: 700;
}


/* Timeline cards */
.timeline-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.timeline-choice {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.timeline-choice input {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  margin: 0;
  accent-color: var(--gold-dark);
}

.timeline-choice span {
  font-size: 0.9rem;
  font-weight: 700;
}


/* Selected cards */
.service-check:has(input:checked),
.timeline-choice:has(input:checked) {
  border-color: var(--gold);
  background: rgba(184, 138, 66, 0.08);
}


/* Submit */
.service-submit {
  width: 100%;
  margin-top: 32px;
}

.service-lead-form .form-consent {
  max-width: 650px;
  margin: 14px auto 0;
  text-align: center;
}


/* Tablet / Desktop */
@media (min-width: 700px) {

  .service-lead-fields {
    grid-template-columns: 1fr 1fr;
  }

  .service-check-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .service-lead-form {
    padding: 40px;
  }
}


/* Larger desktop */
@media (min-width: 980px) {

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

  .service-submit {
    width: auto;
    min-width: 230px;
  }
}