:root {
  --ink: #17211c;
  --forest: #183027;
  --forest-2: #24483a;
  --moss: #59705f;
  --paper: #f4f0e7;
  --paper-2: #ebe4d7;
  --white: #fffefb;
  --gold: #e3a13b;
  --gold-dark: #b96d16;
  --line: rgba(23, 33, 28, .16);
  --muted: #5f665f;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(23, 33, 28, .14);
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

a { color: inherit; }

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

button:focus-visible,
a:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

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

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.shell { width: var(--shell); margin-inline: auto; }

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: 12px;
  padding: 10px 16px;
  background: var(--white);
  border-radius: 6px;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.campaign-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 34px;
  padding: 6px 20px;
  color: var(--white);
  background: #101d18;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 34px;
  left: 50%;
  display: flex;
  width: var(--shell);
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
}

.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .14em;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
}

.brand strong, .footer-brand strong { color: var(--gold); }

.header-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, .54);
  border-radius: 999px;
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: background .2s, color .2s, transform .2s;
}

.header-cta:hover { background: var(--white); color: var(--forest); transform: translateY(-2px); }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 18%, rgba(89, 112, 95, .42), transparent 32%),
    var(--forest);
}

.hero::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0 55%, rgba(255,255,255,.035) 55% 100%);
  content: "";
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 755px;
  padding-top: 118px;
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: clamp(36px, 5vw, 78px);
}

.hero-copy { padding: 58px 0 72px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 2px;
  background: currentColor;
  content: "";
}

.hero .eyebrow, .eyebrow.light { color: var(--gold); }

.hero h1 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(46px, 5.2vw, 76px);
}

.hero h1 em { color: var(--gold); font-weight: inherit; }

.hero-lead {
  max-width: 590px;
  margin-bottom: 26px;
  color: rgba(255,255,255,.82);
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.55;
}

.hero-proof {
  display: grid;
  margin: 0 0 30px;
  padding: 0;
  gap: 9px;
  list-style: none;
  color: rgba(255,255,255,.9);
  font-size: 15px;
}

.hero-proof li { display: flex; align-items: center; gap: 10px; }
.hero-proof span { color: var(--gold); font-weight: 900; }

.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 7px;
  padding: 0 24px;
  text-decoration: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}

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

.button-primary {
  color: #12241d;
  background: var(--gold);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .18);
}

.button-primary:hover { background: #f2b85f; box-shadow: 0 16px 32px rgba(0,0,0,.22); }
.button-primary span { font-weight: 500; }

.button-secondary {
  width: 100%;
  color: var(--forest);
  background: transparent;
  border: 1px solid var(--forest);
  box-shadow: none;
}

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

.text-link {
  padding: 12px 0;
  color: rgba(255,255,255,.92);
  text-underline-offset: 5px;
  font-weight: 700;
}

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

.price-note { margin: 18px 0 0; color: rgba(255,255,255,.66); font-size: 13px; }
.price-note strong { color: var(--white); }

.hero-visual {
  position: relative;
  width: 100%;
  margin: 0;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  top: -22px;
  right: -22px;
  width: 72%;
  height: 64%;
  border: 1px solid rgba(227,161,59,.55);
  border-radius: var(--radius);
  content: "";
}

.hero-visual > img {
  width: 100%;
  min-height: 530px;
  object-fit: cover;
  object-position: 54% center;
  border-radius: var(--radius);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .3);
}

.hero-visual figcaption {
  position: absolute;
  left: -28px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 285px;
  padding: 16px 20px;
  color: var(--ink);
  background: rgba(255, 254, 251, .96);
  border-radius: 12px;
  box-shadow: var(--shadow);
  font-size: 13px;
  line-height: 1.35;
}

.caption-mark {
  font-family: Georgia, serif;
  color: var(--gold-dark);
  font-size: 34px;
  line-height: 1;
}

.hero-ribbon {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 72px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  grid-template-columns: repeat(4, 1fr);
  color: rgba(255,255,255,.68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-align: center;
  text-transform: uppercase;
}

.hero-ribbon span + span { border-left: 1px solid rgba(255,255,255,.15); }

.finder-section { padding: 112px 0 120px; }

.section-heading {
  max-width: 740px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading .eyebrow { justify-content: center; }
.section-heading h2, .packages-heading h2 { margin-bottom: 18px; font-size: clamp(38px, 4.3vw, 58px); }
.section-heading > p:last-child { color: var(--muted); font-size: 18px; }

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

.finder-choice {
  position: relative;
  display: grid;
  min-height: 195px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255,255,255,.5);
  cursor: pointer;
  text-align: left;
  transition: border .2s, background .2s, transform .2s, box-shadow .2s;
}

.finder-choice:hover {
  transform: translateY(-3px);
  background: var(--white);
  border-color: rgba(185,109,22,.45);
  box-shadow: 0 15px 35px rgba(23,33,28,.08);
}

.finder-choice[aria-pressed="true"] {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
  box-shadow: 0 15px 35px rgba(23,33,28,.17);
}

.choice-number {
  margin-bottom: 18px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

[aria-pressed="true"] .choice-number { color: var(--gold); }
.choice-title { font-family: Georgia, serif; font-size: 24px; line-height: 1.15; }
.choice-copy { align-self: end; max-width: 265px; margin-top: 12px; color: var(--muted); font-size: 15px; }
[aria-pressed="true"] .choice-copy { color: rgba(255,255,255,.7); }

.choice-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 22px;
}

.finder-placeholder {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  border: 1px dashed rgba(23,33,28,.28);
  border-radius: 14px;
  color: var(--muted);
  font-size: 14px;
}

.finder-placeholder span { color: var(--gold-dark); font-size: 20px; }

.recommendation {
  display: grid;
  overflow: hidden;
  min-height: 425px;
  margin-top: 18px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--forest);
  grid-template-columns: 1fr .92fr;
  box-shadow: var(--shadow);
  animation: lift-in .35s ease both;
}

.recommendation[hidden] { display: none; }

@keyframes lift-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.recommendation-image img { width: 100%; height: 100%; min-height: 425px; object-fit: cover; }

.recommendation-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(32px, 5vw, 64px);
}

.match-label {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.match-label span { margin-right: 6px; }
.recommendation h3 { margin-bottom: 13px; font-size: 40px; }
.recommendation-copy > p:not(.match-label) { color: rgba(255,255,255,.74); }

.includes-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 18px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  font-size: 13px;
}

.includes-list li::before { margin-right: 7px; color: var(--gold); content: "✓"; }

.recommendation-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 24px;
}

.recommendation-price span { font-family: Georgia, serif; font-size: 30px; }
.recommendation-price del { color: rgba(255,255,255,.45); font-size: 14px; }
.recommendation-price small { color: rgba(255,255,255,.6); }
.recommendation-shipping {
  margin: -12px 0 22px;
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--forest) !important;
  background: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.reset-choice {
  margin: 14px 0 0;
  padding: 5px 0;
  border: 0;
  color: rgba(255,255,255,.62);
  background: transparent;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-size: 13px;
}

.packages { padding-top: 112px; }

.packages-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.packages-heading h2 { max-width: 640px; margin: 0; }
.packages-heading p { max-width: 360px; margin-bottom: 7px; color: var(--muted); text-align: right; }

.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }

.package-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(23,33,28,.07);
}

.package-card.featured { border-color: rgba(185,109,22,.55); box-shadow: 0 18px 44px rgba(23,33,28,.12); }

.package-image { position: relative; overflow: hidden; height: 225px; }
.package-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.package-card:hover .package-image img { transform: scale(1.025); }

.save-tag, .popular-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 7px 11px;
  border-radius: 99px;
  color: var(--white);
  background: var(--forest);
  font-size: 11px;
  font-weight: 800;
}

.popular-tag {
  left: 14px;
  right: auto;
  color: var(--forest);
  background: var(--gold);
}

.package-body { display: flex; height: calc(100% - 225px); padding: 26px; flex-direction: column; }
.package-kicker { margin-bottom: 8px; color: var(--gold-dark); font-size: 11px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.package-body h3 { margin-bottom: 12px; font-size: 29px; }
.package-body > p:not(.package-kicker) { min-height: 75px; color: var(--muted); font-size: 15px; }
.package-price { margin: 6px 0 18px; }
.package-price strong { display: block; font-family: Georgia, serif; font-size: 27px; font-weight: 500; }
.package-price del { color: #898e89; font-size: 13px; }
.package-price small { display: block; margin-top: 2px; color: var(--muted); font-size: 11px; }
.shipping-value { min-height: 0 !important; margin: -8px 0 18px; color: var(--forest) !important; font-size: 14px !important; }

.package-body details { margin-bottom: 22px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.package-body summary { min-height: 48px; padding: 13px 0; cursor: pointer; font-size: 14px; font-weight: 800; }
.package-body details ul { margin: 0; padding: 0 0 14px 18px; color: var(--muted); font-size: 14px; }
.package-body .button { margin-top: auto; }
.package-footnote { margin: 18px 0 0; color: var(--muted); font-size: 13px; text-align: center; }

.trust-section {
  padding: 112px 0 106px;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 14%, rgba(89,112,95,.4), transparent 30%),
    var(--forest);
}

.trust-intro {
  display: grid;
  margin-bottom: 48px;
  grid-template-columns: 1.08fr .92fr;
  align-items: end;
  gap: 70px;
}

.trust-intro h2 { margin: 0; font-size: clamp(40px, 4.4vw, 60px); }
.trust-intro > p { margin-bottom: 5px; color: rgba(255,255,255,.7); font-size: 18px; }

.trust-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 18px;
}

.material-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: var(--radius);
}

.material-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(10,17,14,.88));
  content: "";
}

.material-card img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }

.material-copy { position: absolute; z-index: 2; right: 32px; bottom: 28px; left: 32px; }
.material-title { margin-bottom: 4px; font-family: Georgia, serif; font-size: 29px; }
.material-copy p:last-child { max-width: 500px; margin: 0; color: rgba(255,255,255,.72); font-size: 15px; }

.proof-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.proof-grid article {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 16px;
  background: rgba(255,255,255,.055);
}
.proof-grid article:last-child { grid-column: 1 / -1; }
.proof-icon { display: block; margin-bottom: 25px; color: var(--gold); font-family: Georgia, serif; font-size: 28px; }
.proof-grid h3 { margin-bottom: 10px; font-family: inherit; font-size: 15px; font-weight: 800; letter-spacing: -.01em; }
.proof-grid p { margin: 0; color: rgba(255,255,255,.63); font-size: 14px; }

.contact-card {
  display: grid;
  overflow: hidden;
  min-height: 310px;
  margin-top: 18px;
  color: var(--ink);
  background: var(--paper-2);
  border-radius: var(--radius);
  grid-template-columns: .72fr 1.28fr;
}

.contact-card img { width: 100%; height: 100%; min-height: 310px; object-fit: cover; object-position: center 20%; }
.contact-card > div { display: flex; justify-content: center; padding: clamp(26px, 4vw, 48px); flex-direction: column; align-items: flex-start; }
.contact-label { margin-bottom: 8px; color: var(--gold-dark); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.contact-card h3 { margin-bottom: 10px; font-size: 30px; }
.contact-card p:not(.contact-label) { color: var(--muted); font-size: 15px; }
.contact-card a { color: var(--forest); font-size: 15px; font-weight: 800; text-underline-offset: 4px; }

.quote-card {
  margin-top: 18px;
  padding: clamp(30px, 5vw, 62px);
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  scroll-margin-top: 92px;
}

.quote-heading { margin-bottom: 30px; }
.quote-heading h2 { margin-bottom: 14px; font-size: clamp(34px, 3.5vw, 48px); }
.quote-heading > p:last-child { max-width: 600px; color: var(--muted); font-size: 16px; }

#quote-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.full { grid-column: 1 / -1; }
.field label { font-size: 12px; font-weight: 800; }
.field label span { color: var(--muted); font-weight: 500; }

.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(23,33,28,.22);
  border-radius: 7px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  transition: border .2s, box-shadow .2s;
}

.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold-dark); box-shadow: 0 0 0 3px rgba(227,161,59,.17); outline: 0; }
.submit-button { width: 100%; margin-top: 3px; }
.form-note { margin: -4px 0 0; color: var(--muted); font-size: 11px; text-align: center; }
.form-note a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.form-success { padding: 40px 0 12px; text-align: center; }
.form-success[hidden] { display: none; }
.success-check { display: grid; width: 58px; height: 58px; margin: 0 auto 20px; border-radius: 50%; place-items: center; color: var(--forest); background: var(--gold); font-size: 28px; font-weight: 900; }
.form-success h3 { margin-bottom: 10px; font-size: 32px; }
.form-success p { max-width: 560px; margin: 0 auto 18px; color: var(--muted); }
.text-button { border: 0; padding: 8px; color: var(--forest); background: transparent; cursor: pointer; text-decoration: underline; text-underline-offset: 4px; font-weight: 800; }

.site-footer { padding: 32px 0; color: rgba(255,255,255,.72); background: #101d18; font-size: 12px; }
.site-footer .shell { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-brand img { width: 40px; height: 40px; border-radius: 50%; }
.site-footer p { margin: 0; }
.mobile-sticky-cta { display: none; }

@media (max-width: 1040px) {
  .hero-content { grid-template-columns: .9fr 1.1fr; gap: 38px; }
  .hero-visual > img { min-height: 480px; }
  .hero-visual figcaption { left: -14px; }
  .package-grid { gap: 12px; }
  .package-body { padding: 22px; }
  .package-image { height: 205px; }
  .package-body { height: calc(100% - 205px); }
  .trust-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: repeat(3, 1fr); }
  .proof-grid article:last-child { grid-column: auto; }
}

@media (max-width: 800px) {
  :root { --shell: min(100% - 30px, 650px); }
  html { scroll-padding-top: 72px; }
  body { padding-bottom: 70px; }
  .campaign-bar { gap: 7px; font-size: 9px; letter-spacing: .05em; }
  .campaign-bar span:nth-child(3), .campaign-bar span:nth-child(4) { display: none; }
  .site-header { top: 34px; min-height: 66px; }
  .brand img { width: 42px; height: 42px; }
  .brand-name { display: none; }
  .header-cta { min-height: 42px; padding: 0 17px; font-size: 13px; }
  .hero-content { display: flex; min-height: auto; padding-top: 107px; flex-direction: column; gap: 8px; }
  .hero-copy { width: 100%; padding: 36px 0 28px; }
  .hero h1 { margin-bottom: 18px; font-size: clamp(43px, 13vw, 62px); }
  .hero-lead { margin-bottom: 20px; font-size: 18px; }
  .hero-proof { margin-bottom: 26px; font-size: 14px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 8px; }
  .hero-actions .button { width: 100%; }
  .text-link { text-align: center; }
  .price-note { margin-top: 10px; text-align: center; }
  .hero-visual { width: 100vw; max-width: none; margin-left: calc((100vw - 100%) / -2); }
  .hero-visual::before { display: none; }
  .hero-visual > img { min-height: 310px; border-radius: 0; object-position: 58% center; }
  .hero-visual figcaption { left: 15px; bottom: 15px; padding: 12px 15px; }
  .caption-mark { font-size: 28px; }
  .hero-ribbon { width: 100%; padding: 16px 15px; grid-template-columns: repeat(2, 1fr); gap: 9px 0; font-size: 9px; }
  .hero-ribbon span:nth-child(3) { border-left: 0; }
  .finder-section { padding: 78px 0 84px; }
  .section-heading { margin-bottom: 32px; text-align: left; }
  .section-heading .eyebrow { justify-content: flex-start; }
  .section-heading h2, .packages-heading h2 { font-size: 39px; }
  .section-heading > p:last-child { font-size: 16px; }
  .finder { grid-template-columns: 1fr; gap: 10px; }
  .finder-choice { min-height: 0; padding: 20px 48px 20px 20px; }
  .choice-number { margin-bottom: 10px; }
  .choice-title { font-size: 22px; }
  .choice-copy { margin-top: 7px; }
  .choice-arrow { top: 50%; right: 20px; transform: translateY(-50%); }
  .finder-placeholder { min-height: 70px; margin-top: 10px; }
  .recommendation { grid-template-columns: 1fr; margin-top: 10px; }
  .recommendation-image img { min-height: 260px; max-height: 300px; }
  .recommendation-copy { padding: 28px 22px 32px; }
  .recommendation h3 { font-size: 34px; }
  .recommendation-price { flex-wrap: wrap; }
  .recommendation-copy .button { width: 100%; }
  .packages { padding-top: 78px; }
  .packages-heading { display: block; }
  .packages-heading p { margin-top: 12px; text-align: left; }
  .package-grid { grid-template-columns: 1fr; gap: 16px; }
  .package-image { height: 235px; }
  .package-body { height: auto; }
  .package-body > p:not(.package-kicker) { min-height: 0; }
  .trust-section { padding: 78px 0 72px; }
  .trust-intro { grid-template-columns: 1fr; margin-bottom: 32px; gap: 18px; }
  .trust-intro h2 { font-size: 41px; }
  .trust-intro > p { font-size: 16px; }
  .material-card { min-height: 305px; }
  .material-card img { min-height: 305px; }
  .material-copy { right: 22px; bottom: 20px; left: 22px; }
  .proof-grid { grid-template-columns: 1fr; gap: 10px; }
  .proof-grid article, .proof-grid article:last-child { display: grid; grid-template-columns: 58px 1fr; padding: 20px; grid-column: auto; column-gap: 12px; }
  .proof-icon { margin: 0; grid-row: 1 / 3; font-size: 24px; }
  .proof-grid h3 { margin-bottom: 5px; }
  .contact-card { grid-template-columns: .82fr 1.18fr; min-height: 285px; }
  .contact-card img { min-height: 285px; }
  .contact-card > div { padding: 22px; }
  .contact-card h3 { font-size: 25px; }
  .contact-card p:not(.contact-label) { font-size: 15px; }
  .quote-card { padding: 28px 20px; scroll-margin-top: 72px; }
  .quote-heading h2 { font-size: 37px; }
  #quote-form { grid-template-columns: 1fr; gap: 15px; }
  .full { grid-column: auto; }
  .site-footer .shell { flex-direction: column; text-align: center; gap: 10px; }
  .mobile-sticky-cta {
    position: fixed;
    z-index: 40;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    border-radius: 8px;
    color: var(--forest);
    background: var(--gold);
    box-shadow: 0 10px 35px rgba(0,0,0,.3);
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 45px; }
  .hero-visual > img { min-height: 280px; }
  .hero-visual figcaption { max-width: calc(100% - 30px); }
  .contact-card { grid-template-columns: 1fr; }
  .contact-card img { height: 250px; min-height: 250px; object-position: center 25%; }
  .contact-card > div { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
