/* ==========================================================================
   Ace of Trades — Warm Craftsman theme
   Shared stylesheet. Palette lives in :root.
   ========================================================================== */

:root {
  /* Core palette */
  --cream:      #f7f2e9;   /* page background */
  --cream-2:    #efe6d4;   /* alt band */
  --paper:      #fffdf8;   /* cards / surfaces */
  --barn:       #9a2f2a;   /* primary — deep barn red */
  --barn-dark:  #7a221e;
  --barn-soft:  #b8524c;
  --amber:      #c8842f;   /* warm wood / amber accent */
  --amber-dark: #a3661d;
  --navy:       #26333f;   /* deep supporting ink-blue */
  --ink:        #2c2420;   /* body text (warm near-black) */
  --ink-soft:   #5d534b;   /* muted text */
  --line:       #e0d4bd;   /* hairline borders */
  --line-2:     #d3c4a6;
  --gold-line:  #d9b877;

  --shadow-sm: 0 1px 2px rgba(44,36,32,.06), 0 2px 6px rgba(44,36,32,.05);
  --shadow-md: 0 6px 22px rgba(44,36,32,.10);
  --shadow-lg: 0 18px 46px rgba(44,36,32,.16);

  --radius:    14px;
  --radius-sm: 9px;
  --wrap:      1180px;

  --font-head: "Roboto Slab", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--barn); text-decoration: none; }
a:hover { color: var(--barn-dark); }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 .55em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.3rem; }
p  { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }

/* Accessibility helpers */
.skip {
  position: absolute; left: 12px; top: -60px;
  background: var(--barn); color: #fff; padding: 10px 16px;
  border-radius: 0 0 8px 8px; z-index: 200; transition: top .2s;
}
.skip:focus { top: 0; color: #fff; }
:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
  border-radius: 3px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: .5em; justify-content: center;
  font-family: var(--font-head); font-weight: 500; font-size: 1rem;
  padding: .72em 1.35em; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .12s ease, background .18s ease, box-shadow .18s ease, color .18s;
  line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--barn); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--barn-dark); color: #fff; box-shadow: var(--shadow-md); }
.btn--amber { background: var(--amber); color: #2b1c07; box-shadow: var(--shadow-sm); }
.btn--amber:hover { background: var(--amber-dark); color: #fff; box-shadow: var(--shadow-md); }
.btn--outline { background: transparent; color: var(--barn); border-color: var(--barn); }
.btn--outline:hover { background: var(--barn); color: #fff; }
.btn--ghost-cream { background: transparent; color: var(--cream); border-color: rgba(247,242,233,.55); }
.btn--ghost-cream:hover { background: var(--cream); color: var(--barn); }
.btn--cream { background: var(--cream); color: var(--barn); }
.btn--cream:hover { background: #fff; color: var(--barn-dark); }
.btn--lg { padding: .9em 1.7em; font-size: 1.08rem; }
.btn--block { width: 100%; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,242,233,.94);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; min-height: 74px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand__mark { width: 42px; height: 42px; flex: 0 0 auto; }
.brand__name {
  font-family: var(--font-head); font-weight: 700; font-size: 1.32rem;
  letter-spacing: -.01em; line-height: 1; display: flex; flex-direction: column;
}
.brand__name span { font-family: var(--font-body); font-weight: 600; font-size: .68rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--amber-dark); margin-top: 4px; }

.brand__full { display: block; height: 38px; width: auto; }
.footer__brand .brand__full { height: 46px; }
.footer__brand--center .brand__full--foot { height: 54px; }
@media (max-width: 560px){ .brand__full { height: 32px; } }

.nav { display: flex; align-items: center; gap: 8px; }
.nav__list { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav__list a {
  display: inline-block; font-family: var(--font-head); font-weight: 500;
  color: var(--ink); padding: .5em .85em; border-radius: 8px; font-size: 1.02rem;
  position: relative; transition: background .15s, color .15s;
}
.nav__list a:hover { background: var(--cream-2); color: var(--barn); }
.nav__list a[aria-current="page"] { color: var(--barn); }
.nav__list a[aria-current="page"]::after {
  content: ""; position: absolute; left: .85em; right: .85em; bottom: .28em;
  height: 2px; background: var(--amber); border-radius: 2px;
}
.nav__phone {
  display: inline-flex; align-items: center; gap: .5em; margin-left: 6px;
  font-family: var(--font-head); font-weight: 500;
}

.burger {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line-2);
  background: var(--paper); border-radius: 10px; cursor: pointer;
  padding: 0; flex-direction: column; align-items: center; justify-content: center;
}
.burger span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform .25s, opacity .2s;
}
.burger span + span { margin-top: 5px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .burger { display: inline-flex; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px 0 12px;
    max-height: 0; overflow: hidden; visibility: hidden;
    transition: max-height .28s ease, visibility 0s linear .28s;
  }
  .nav.is-open { max-height: 460px; visibility: visible; transition: max-height .3s ease; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 2px; width: 100%; }
  .nav__list li { width: 100%; }
  .nav__list a { display: block; width: 100%; padding: .9em 16px; font-size: 1.12rem; border-radius: 0; border-bottom: 1px solid var(--line); }
  .nav__list a[aria-current="page"]::after { display: none; }
  .nav__list a[aria-current="page"] { background: var(--cream-2); border-radius: 0; border-left: 3px solid var(--barn); padding-left: calc(16px - 3px); }
  .nav__phone { margin: 14px 16px 4px; justify-content: center; }
}

/* ==========================================================================
   Generic section rhythm
   ========================================================================== */
.section { padding: clamp(52px, 8vw, 92px) 0; }
.section--alt { background: var(--cream-2); }
.section--paper { background: var(--paper); }
.section--barn { background: var(--barn); color: var(--cream); }
.section--navy { background: var(--navy); color: var(--cream); }

.head { max-width: 660px; margin-bottom: 40px; }
.head--center { margin-inline: auto; text-align: center; }
.kicker {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-head); font-weight: 500; font-size: .82rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--amber-dark);
  margin: 0 0 .6rem;
}
.kicker::before { content: "\2660"; color: var(--barn); font-size: .9em; }
.section--barn .kicker, .section--navy .kicker { color: var(--gold-line); }
.section--barn .kicker::before, .section--navy .kicker::before { color: var(--gold-line); }
.section--barn h2, .section--navy h2 { color: #fff; }
.lead { font-size: 1.14rem; color: var(--ink-soft); }
.section--barn .lead, .section--navy .lead { color: rgba(247,242,233,.9); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; overflow: hidden; background: var(--navy); }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items: center;
  padding-block: clamp(48px, 7vw, 92px);
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  background: var(--paper); border: 1px solid var(--line-2);
  color: var(--barn); font-family: var(--font-head); font-weight: 500;
  font-size: .82rem; letter-spacing: .06em; padding: .45em 1em; border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.hero h1 { margin-top: 22px; }
.hero h1 em { font-style: normal; color: var(--barn); }
.hero__lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 42ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; list-style: none; }
.hero__chips li {
  font-family: var(--font-head); font-weight: 500; font-size: .9rem; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line-2);
  padding: .45em .95em; border-radius: 999px; box-shadow: var(--shadow-sm);
  display: inline-flex; align-items: center; gap: .5em;
}
.hero__chips li::before { content: "\2713"; color: var(--amber-dark); font-weight: 700; }
.hero__art {
  position: relative;
  transform: rotate(-1.2deg);
}
.hero__art img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: var(--radius); border: 3px solid var(--paper); box-shadow: var(--shadow-lg); }
.hero__stamp {
  position: absolute; right: -14px; bottom: -14px; z-index: 3;
  background: var(--amber); color: #2b1c07; transform: rotate(6deg);
  font-family: var(--font-head); font-weight: 700; line-height: 1.05;
  padding: 14px 18px; border-radius: 12px; box-shadow: var(--shadow-md);
  text-align: center;
}
.hero__stamp b { display: block; font-size: 1.5rem; }
.hero__stamp span { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; }

@media (max-width: 820px) {
  .hero__grid { grid-template-columns: 1fr; gap: 34px; }
  .hero__art { transform: rotate(0); max-width: 560px; }
}

/* ==========================================================================
   Card grids
   ========================================================================== */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--3, .grid--2 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 24px;
  box-shadow: var(--shadow-sm); position: relative;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.card__ico {
  width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(160deg, var(--cream-2), var(--cream));
  border: 1px solid var(--line-2); color: var(--barn); margin-bottom: 16px;
}
.card__ico svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .4em; }
.card p { color: var(--ink-soft); margin: 0; font-size: .98rem; }
.card--link::after {
  content: "\2192"; position: absolute; right: 22px; top: 26px;
  color: var(--amber-dark); font-weight: 700; opacity: 0; transition: opacity .16s, transform .16s;
  transform: translateX(-4px);
}
.card--link:hover::after { opacity: 1; transform: translateX(0); }

/* Service teaser: image cards */
.tcard {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .16s, box-shadow .16s; display: flex; flex-direction: column;
}
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tcard__img { aspect-ratio: 4 / 3; background: var(--cream-2); }
.tcard__img img { width: 100%; height: 100%; object-fit: cover; }
.tcard__body { padding: 20px 22px 24px; }
.tcard__body h3 { margin-bottom: .35em; }
.tcard__body p { color: var(--ink-soft); font-size: .97rem; margin: 0; }

/* ==========================================================================
   Trust band / stats
   ========================================================================== */
.trust__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; text-align: center;
}
@media (max-width: 720px) { .trust__grid { grid-template-columns: repeat(2, 1fr); } }
.stat b {
  font-family: var(--font-head); font-weight: 700; font-size: 2.5rem;
  color: var(--gold-line); display: block; line-height: 1;
}
.stat span { font-size: .96rem; color: rgba(247,242,233,.85); }

/* ==========================================================================
   Projects strip + testimonial
   ========================================================================== */
.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 780px) { .proj-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .proj-grid { grid-template-columns: 1fr; } }
.proj {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); background: var(--cream-2);
}
.proj img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
figure { margin: 0; }

.testis { position: relative; }
.testi {
  background: var(--paper); border: 1px solid var(--line); border-left: 4px solid var(--amber);
  border-radius: var(--radius); padding: 26px 26px 22px; box-shadow: var(--shadow-sm);
}
.testi .stars { color: var(--amber); letter-spacing: 2px; font-size: 1.05rem; }
.testi p { font-size: 1.06rem; margin: .6em 0 1em; }
.testi footer { font-family: var(--font-head); font-weight: 500; color: var(--barn); }
.testi[hidden] { display: none; }
.testi-dots { display: flex; gap: 8px; justify-content: center; margin-top: 20px; }
.testi-dots button {
  width: 11px; height: 11px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--line-2); padding: 0;
}
.testi-dots button[aria-current="true"] { background: var(--barn); }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta {
  background:
    radial-gradient(1200px 400px at 15% -20%, rgba(200,132,47,.28), transparent 60%),
    var(--barn);
  color: var(--cream);
}
.cta__row {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  flex-wrap: wrap; padding-block: clamp(40px, 6vw, 66px);
}
.cta h2 { color: #fff; margin: 0; }
.cta p { color: rgba(247,242,233,.9); margin: .5em 0 0; }
.cta__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ==========================================================================
   Split feature (image + text)
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.split--rev .split__media { order: 2; }
@media (max-width: 840px) { .split, .split--rev { grid-template-columns: 1fr; gap: 30px; }
  .split--rev .split__media { order: 0; } }
.split__media {
  border-radius: var(--radius); overflow: hidden; border: 3px solid var(--paper);
  box-shadow: var(--shadow-md);
}
.split__media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }
.ticks { list-style: none; display: grid; gap: 12px; margin-top: 18px; }
.ticks li { display: flex; gap: .7em; align-items: flex-start; }
.ticks li::before {
  content: "\2660"; color: var(--barn); font-weight: 700; flex: 0 0 auto; margin-top: 2px;
}

/* ==========================================================================
   Services detailed list
   ========================================================================== */
.svc-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 760px) { .svc-list { grid-template-columns: 1fr; } }
.svc-item {
  display: flex; gap: 18px; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow-sm);
}
.svc-item__ico {
  width: 50px; height: 50px; flex: 0 0 auto; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(160deg, var(--cream-2), var(--cream));
  border: 1px solid var(--line-2); color: var(--barn);
}
.svc-item__ico svg { width: 26px; height: 26px; }
.svc-item h3 { font-size: 1.18rem; margin-bottom: .3em; }
.svc-item p { margin: 0; color: var(--ink-soft); font-size: .97rem; }

.pills { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.pills li {
  background: var(--paper); border: 1px solid var(--line-2); color: var(--ink);
  font-family: var(--font-head); font-weight: 500; font-size: .92rem;
  padding: .4em .95em; border-radius: 999px;
}

/* ==========================================================================
   Page banner (interior pages)
   ========================================================================== */
.banner {
  background:
    radial-gradient(900px 300px at 85% -40%, rgba(200,132,47,.22), transparent 60%),
    var(--navy);
  color: var(--cream); padding: clamp(46px, 7vw, 74px) 0;
  border-bottom: 4px solid var(--amber);
}
.banner h1 { color: #fff; margin: 12px 0 0; }
.banner p { color: rgba(247,242,233,.9); max-width: 60ch; margin-top: 14px; font-size: 1.1rem; }
.crumbs { font-size: .9rem; color: rgba(247,242,233,.75); }
.crumbs a { color: var(--gold-line); }

/* ==========================================================================
   About specifics
   ========================================================================== */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 820px) { .values { grid-template-columns: 1fr; } }
.value h3 { display: flex; align-items: center; gap: .5em; }
.value h3 span {
  width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center;
  background: var(--barn); color: var(--cream); font-family: var(--font-head); flex: 0 0 auto;
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 500;
  margin-bottom: 6px; font-size: .98rem; }
.field label .req { color: var(--barn); }
.field input, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--cream); border: 1px solid var(--line-2); border-radius: 10px;
  padding: .7em .85em; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(200,132,47,.25);
}
.field textarea { resize: vertical; min-height: 130px; }
.field .error { color: var(--barn-dark); font-size: .86rem; margin-top: 5px; display: none; }
.field.is-invalid input, .field.is-invalid textarea { border-color: var(--barn); }
.field.is-invalid .error { display: block; }
.form__note { font-size: .86rem; color: var(--ink-soft); margin-top: 4px; }
.form__status { margin-top: 14px; font-family: var(--font-head); font-weight: 500; }
.form__status.ok { color: #2e6b3a; }

.info-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm);
}
.info-card + .info-card { margin-top: 20px; }
.info-line { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px dashed var(--line-2); }
.info-line:last-child { border-bottom: 0; }
.info-line__ico { color: var(--barn); flex: 0 0 auto; margin-top: 3px; }
.info-line__ico svg { width: 22px; height: 22px; }
.info-line b { font-family: var(--font-head); display: block; font-size: .82rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--amber-dark); }
.info-line a { font-weight: 600; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-strip { height: 6px; background: linear-gradient(90deg, var(--barn), var(--amber), var(--barn)); }
.site-footer { background: var(--navy); color: rgba(247,242,233,.82); padding: 60px 0 26px; }
.footer__inner { text-align: center; }

/* Centered brand-on-top block — the distinctive craftsman touch */
.footer__brand--center { display: flex; flex-direction: column; align-items: center; }
.footer__brand--center .brand { line-height: 0; }
.footer__brand .brand__name { color: #fff; }
.footer__tagline {
  margin: 16px auto 0; font-size: .98rem; max-width: 46ch;
  color: rgba(247,242,233,.78); line-height: 1.6;
}

/* Gold hairline + spade divider */
.footer__divider {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  max-width: 560px; margin: 30px auto 36px; color: var(--gold-line);
}
.footer__divider::before,
.footer__divider::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line));
}
.footer__divider::after { background: linear-gradient(90deg, var(--gold-line), transparent); }
.footer__divider-spade {
  font-size: 1rem; line-height: 1; letter-spacing: .04em;
  color: var(--gold-line); text-shadow: 0 1px 0 rgba(0,0,0,.25);
}

/* Link groups centered as a set, each left-aligned internally */
.footer__cols {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 40px 64px; text-align: left;
}
.footer__col { min-width: 150px; }
.site-footer h4 {
  color: #fff; font-size: .86rem; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 14px;
}
.footer__col ul { list-style: none; display: grid; gap: 9px; }
.footer__col a { color: rgba(247,242,233,.82); }
.footer__col a:hover { color: var(--gold-line); }
.site-footer address { font-style: normal; font-size: .95rem; line-height: 1.75; }
.site-footer address a { color: rgba(247,242,233,.82); }
.site-footer address a:hover { color: var(--gold-line); }

@media (max-width: 560px) {
  .footer__cols { flex-direction: column; align-items: center; text-align: center; gap: 30px; }
  .footer__col { min-width: 0; }
}

.bbb-badge { display:inline-block; background:none; border:0; padding:0; line-height:0; }
.bbb-badge img { display:block; width:150px; max-width:100%; height:auto; }
.bbb-badge { opacity: .9; }
.bbb-badge:hover { opacity: 1; }
.bbb-badge:focus-visible { outline-offset: 3px; }
.trust { background: var(--cream-2); padding: clamp(56px, 9vw, 96px) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust__inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 22px; }
.trust__copy { max-width: 620px; }
.trust__copy .kicker { color: var(--barn); }
.trust__copy h2 { margin: 0 0 .35em; }
.trust__copy p { margin: 0 auto; color: var(--ink-soft); font-size: 1.06rem; }
.trust__badge { flex: 0 0 auto; }
.trust__badge .bbb-badge img { width: 170px; }

.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 6px 20px; justify-content: center;
  align-items: center; text-align: center; margin-top: 42px; padding-top: 22px;
  border-top: 1px solid rgba(247,242,233,.15); font-size: .88rem;
}
.footer__bottom p { margin: 0; }
.footer__bottom .badge {
  display: inline-flex; align-items: center; gap: .5em; color: var(--gold-line);
  font-family: var(--font-head);
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
