:root {
  --spruce-950: #102b25;
  --spruce-900: #153b32;
  --spruce-800: #205044;
  --spruce-700: #2d6657;
  --copper: #b85f35;
  --copper-dark: #944523;
  --cream: #f6f0e5;
  --paper: #fffdf8;
  --sand: #e9deca;
  --ink: #17201d;
  --muted: #5d6762;
  --line: #d4c9b7;
  --white: #fff;
  --radius: 0.55rem;
  --shadow: 0 18px 45px rgba(16, 43, 37, 0.13);
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(21, 59, 50, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 59, 50, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-thickness: 2px;
}

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

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
}

h1,
h2 {
  font-family: var(--serif);
  letter-spacing: -0.025em;
}

h1 {
  margin-bottom: 1.15rem;
  font-size: clamp(2.75rem, 13vw, 5.6rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 8vw, 3.4rem);
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.14rem;
}

p:last-child {
  margin-bottom: 0;
}

:focus-visible {
  outline: 3px solid #d98359;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 100;
  transform: translateY(-200%);
  border-radius: 0.3rem;
  background: var(--paper);
  padding: 0.7rem 1rem;
  color: var(--spruce-950);
  font-weight: 800;
}

.skip-link:focus {
  transform: none;
}

.container {
  width: min(100% - 2rem, 72rem);
  margin-inline: auto;
}

.narrow {
  width: min(100%, 48rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(233, 222, 202, 0.18);
  background: rgba(16, 43, 37, 0.97);
  color: var(--white);
}

.nav-row {
  display: flex;
  min-height: 4.35rem;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 2.35rem;
  height: 2.35rem;
  flex: 0 0 auto;
  border: 2px solid var(--copper);
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  background: var(--copper);
  content: "";
}

.brand-mark::before {
  top: 50%;
  left: 0.37rem;
  width: 1.38rem;
  height: 2px;
}

.brand-mark::after {
  top: 0.38rem;
  left: 50%;
  width: 2px;
  height: 1.36rem;
}

.brand-name {
  overflow: hidden;
  font-family: var(--serif);
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.05;
}

.brand-name small {
  display: block;
  margin-top: 0.16rem;
  color: #d9d2c4;
  font-family: var(--sans);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.095em;
  text-transform: uppercase;
}

.nav-links {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: 1.45rem;
}

.nav-links > a:not(.button) {
  color: #f4eee4;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links > a:not(.button):hover {
  color: #efb08d;
}

.mobile-call {
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 0.62rem 0.85rem;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: var(--copper);
  padding: 0.75rem 1.15rem;
  color: var(--white);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 140ms ease, transform 140ms ease;
}

.button:hover {
  background: var(--copper-dark);
  text-decoration: none;
  transform: translateY(-1px);
}

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

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

.button-dark {
  background: var(--spruce-900);
}

.button-dark:hover {
  background: var(--spruce-800);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--spruce-950);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 22%, rgba(184, 95, 53, 0.23), transparent 22rem),
    repeating-linear-gradient(135deg, transparent 0 30px, rgba(255, 255, 255, 0.022) 30px 31px);
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 2rem;
  padding-block: clamp(4.5rem, 12vw, 7.5rem);
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--copper);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.cta-band .eyebrow {
  color: #ef9d73;
}

.hero-copy {
  max-width: 49rem;
}

.hero h1 span {
  display: block;
  color: #ef9d73;
}

.hero-lede {
  max-width: 42rem;
  margin-bottom: 1.7rem;
  color: #e4dfd5;
  font-size: clamp(1.08rem, 4vw, 1.32rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-note {
  margin-top: 1.25rem;
  color: #c9cec9;
  font-size: 0.85rem;
}

.hero-badge {
  align-self: end;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 1.25rem;
  color: #e4dfd5;
}

.hero-badge strong {
  display: block;
  margin-bottom: 0.1rem;
  color: var(--white);
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
}

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

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
  font-size: 0.88rem;
  font-weight: 800;
}

.trust-item:last-child {
  border-bottom: 0;
}

.trust-dot {
  width: 0.55rem;
  height: 0.55rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--copper);
}

.section {
  padding-block: clamp(4rem, 10vw, 6.7rem);
}

.section-paper {
  border-block: 1px solid var(--line);
  background: var(--paper);
}

.section-dark {
  background: var(--spruce-900);
  color: var(--white);
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 2rem;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-dark .section-heading p {
  color: #d3d8d4;
}

.service-grid {
  display: grid;
  gap: 0.9rem;
}

.service-card {
  display: flex;
  min-height: 12rem;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 1.35rem;
  color: var(--ink);
  text-decoration: none;
  transition: border-color 140ms ease, transform 140ms ease;
}

.service-card:hover {
  border-color: var(--copper);
  text-decoration: none;
  transform: translateY(-2px);
}

.service-number {
  margin-bottom: 1.2rem;
  color: var(--copper);
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.service-card p {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.card-link {
  margin-top: auto;
  color: var(--spruce-800);
  font-size: 0.84rem;
  font-weight: 900;
}

.area-strip {
  display: grid;
  gap: 0.7rem;
}

.area-link,
.area-label {
  display: flex;
  min-height: 4.2rem;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
}

.area-link::after {
  color: #ef9d73;
  content: "→";
  font-family: var(--sans);
}

.area-link:hover {
  color: #efb08d;
  text-decoration: none;
}

.area-label {
  color: #d3d8d4;
}

.about-grid,
.form-grid,
.content-grid {
  display: grid;
  gap: 2.2rem;
}

.shop-note {
  border-left: 4px solid var(--copper);
  background: var(--sand);
  padding: 1.35rem;
}

.shop-note strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.bullet-list,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bullet-list li,
.check-list li {
  position: relative;
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 0 0.75rem 1.5rem;
}

.bullet-list li::before,
.check-list li::before {
  position: absolute;
  top: 0.73rem;
  left: 0;
  color: var(--copper);
  content: "—";
  font-weight: 900;
}

.check-list li::before {
  content: "✓";
}

.form-panel {
  border-radius: var(--radius);
  background: var(--paper);
  padding: clamp(1.25rem, 5vw, 2.2rem);
  box-shadow: var(--shadow);
}

.form-copy p {
  color: #d3d8d4;
}

.form-copy .direct-call {
  display: inline-block;
  margin-top: 0.8rem;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 7vw, 2.5rem);
  font-weight: 700;
}

.field-grid {
  display: grid;
  gap: 1rem;
}

label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--spruce-950);
  font-size: 0.83rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #b9b09f;
  border-radius: 0.35rem;
  background: var(--white);
  padding: 0.78rem 0.82rem;
  color: var(--ink);
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--copper);
  outline: 3px solid rgba(184, 95, 53, 0.18);
}

.form-panel .button {
  width: 100%;
  margin-top: 1rem;
}

.form-fineprint {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
}

.form-status {
  margin: 1rem 0 0;
  border-left: 3px solid var(--copper);
  background: #f5e5dc;
  padding: 0.8rem;
  color: #692e14;
  font-size: 0.9rem;
}

.success-card {
  border-top: 5px solid var(--copper);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 2rem;
  color: var(--spruce-950);
  box-shadow: var(--shadow);
}

.success-card h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--spruce-950);
  color: var(--white);
}

.page-hero::after {
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  width: 24rem;
  height: 24rem;
  border: 3rem solid rgba(184, 95, 53, 0.17);
  border-radius: 50%;
  content: "";
}

.page-hero .container {
  position: relative;
  z-index: 1;
  padding-block: clamp(3.7rem, 11vw, 6.7rem);
}

.page-hero h1 {
  max-width: 54rem;
  margin-bottom: 1rem;
  font-size: clamp(2.7rem, 10vw, 5rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 43rem;
  color: #dce1dd;
  font-size: 1.13rem;
}

.breadcrumbs {
  margin-bottom: 1.4rem;
  color: #bcc8c2;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.breadcrumbs a {
  color: #dfe8e3;
}

.content-grid > aside {
  align-self: start;
  border-top: 5px solid var(--copper);
  background: var(--paper);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.content-grid > aside .button {
  width: 100%;
  margin-top: 1rem;
}

.content-grid > aside a:not(.button) {
  color: var(--spruce-800);
  font-weight: 800;
}

.prose {
  max-width: 48rem;
}

.prose h2 {
  margin-top: 2.6rem;
  font-size: clamp(1.75rem, 6vw, 2.5rem);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  color: #35403c;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.faq-list summary {
  color: var(--spruce-950);
  font-weight: 900;
  cursor: pointer;
}

.faq-list details p {
  margin: 0.7rem 0 0;
}

.response-line {
  margin: 1.5rem 0;
  border-left: 4px solid var(--copper);
  background: var(--sand);
  padding: 1rem 1.15rem;
  font-weight: 800;
}

.cta-band {
  background: var(--spruce-800);
  color: var(--white);
}

.cta-row {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding-block: 2.5rem;
}

.cta-row h2 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.8rem, 7vw, 2.65rem);
}

.cta-row p {
  color: #d7dedb;
}

.review-page {
  display: grid;
  min-height: calc(100vh - 4.35rem);
  place-items: center;
  padding-block: 3rem;
}

.review-card {
  width: min(100%, 39rem);
  border-top: 6px solid var(--copper);
  border-radius: var(--radius);
  background: var(--paper);
  padding: clamp(1.5rem, 7vw, 3rem);
  text-align: center;
  box-shadow: var(--shadow);
}

.review-card .brand-mark {
  margin: 0 auto 1.4rem;
}

.review-card h1 {
  margin-bottom: 0.8rem;
  font-size: clamp(2.25rem, 10vw, 4rem);
}

.review-card .button {
  margin-top: 1rem;
}

.review-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.site-footer {
  background: #0b211c;
  color: #d8ddd9;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-block: 3rem 2rem;
}

.footer-title {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
}

.footer-grid p,
.footer-grid a {
  color: #c2cbc6;
}

.footer-grid a {
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
}

.demo-note {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 0.85rem;
  color: #8e9c95;
  font-size: 0.68rem;
  line-height: 1.45;
  text-align: center;
}

@media (min-width: 38rem) {
  .container {
    width: min(100% - 3rem, 72rem);
  }

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

  .trust-item {
    justify-content: center;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    padding: 1.2rem 1rem;
  }

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

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

  .area-strip {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
  }

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

  .cta-row {
    grid-template-columns: 1fr auto;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr;
  }
}

@media (min-width: 52rem) {
  .nav-links {
    display: flex;
  }

  .mobile-call {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 12rem;
  }

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

  .about-grid {
    grid-template-columns: 1.25fr 0.75fr;
    align-items: start;
  }

  .form-grid {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
  }

  .content-grid {
    grid-template-columns: minmax(0, 1fr) 19rem;
    gap: 4rem;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}


/* ── Text-first affordances ─────────────────────────────────────────── */

/* Sticky thumb-zone bar: mobile only. */
.sticky-actions {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  display: flex;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem calc(0.6rem + env(safe-area-inset-bottom));
  background: rgba(16, 26, 21, 0.94);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.sticky-actions .button { flex: 1; text-align: center; margin: 0; }

/* QR block: desktop only. */
.qr-block { display: none; }

@media (max-width: 899px) {
  body { padding-bottom: 4.6rem; }           /* clear the sticky bar */
  .desktop-note { display: none; }
  .mobile-call { display: none; }            /* superseded by the sticky bar */
}

@media (min-width: 900px) {
  .sticky-actions { display: none; }         /* sms: links are dead on desktop */
  .sms-cta { display: none; }
  .qr-block { display: block; margin-top: 1.4rem; max-width: 240px; }
  .qr-block .qr-svg {
    width: 168px; height: 168px;
    background: #fff; border-radius: 8px; padding: 8px;
    display: block;
  }
  .qr-block p { font-size: 0.85rem; opacity: 0.85; margin-top: 0.6rem; }
}
