/* ============================================================
   THE COMMERCIAL FIX — stylesheet  (RETRO / vintage-workshop)
   Cream paper · pine green · rust orange · hard offset shadows.
   Mobile-first. No build step.
   ------------------------------------------------------------
   1. Tokens   2. Reset/base   3. Layout   4. Type   5. Buttons
   6. Header   7. Hero   8. Trust bar   9. Sections/cards
   10. About   11. Gallery   12. Maintenance   13. FAQ
   14. CTA/form   15. Footer   16. Mobile CTA   17. Reveal
   ============================================================ */

/* -------------------- 1. TOKENS -------------------- */
:root {
  --paper:    #F4ECDC;   /* main background (warm cream) */
  --paper-2:  #EEE4D0;   /* alt section background */
  --card:     #FBF6EB;   /* card / panel surface (lighter cream) */

  --ink:      #1B3A33;   /* primary text — dark pine */
  --ink-soft: #45564F;   /* muted text */
  --ink-faint:#6B7A73;   /* faintest text */

  --pine:     #1E5049;   /* brand green (buttons, dark bars) */
  --pine-2:   #163E38;   /* darker green (footer) */
  --rust:     #C4551F;   /* accent orange (primary CTA) */
  --rust-2:   #A8461A;   /* pressed orange */
  --teal:     #2E8C84;   /* bright teal accent (sparingly) */
  --brown:    #6E4A2E;

  --cream-on-dark: #F6EEDE;

  --line:     rgba(27,58,51,.16);
  --line-2:   rgba(27,58,51,.30);

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

  --sans:    "Work Sans", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --display: "Anton", "Work Sans", sans-serif;
  --caps:    "Bebas Neue", "Work Sans", sans-serif;

  --shadow-pop:  4px 4px 0 var(--ink);
  --shadow-soft: 3px 3px 0 rgba(27,58,51,.16);
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* -------------------- 2. RESET / BASE -------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background-color: var(--paper);
  /* subtle retro halftone dot texture */
  background-image: radial-gradient(rgba(27,58,51,.045) 1px, transparent 1.6px);
  background-size: 8px 8px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
:focus-visible { outline: 3px solid var(--rust); outline-offset: 2px; border-radius: 2px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--rust); color: #fff; padding: 10px 16px; border-radius: 8px;
  font-weight: 700; transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* -------------------- 3. LAYOUT -------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.wrap--narrow { max-width: 820px; }
.section { padding: clamp(60px, 8.5vw, 108px) 0; position: relative; }
.section--alt { background: var(--paper-2); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.section__head { max-width: 760px; margin-bottom: clamp(34px, 5vw, 56px); }
.section__intro { color: var(--ink-soft); font-size: 1.075rem; margin: 14px 0 0; }

/* -------------------- 4. TYPOGRAPHY -------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--caps); letter-spacing: .12em; font-size: 1.02rem;
  color: var(--rust); text-transform: uppercase; margin: 0 0 14px;
}
.eyebrow__tick { width: 16px; height: 3px; background: var(--rust); display: inline-block; }

h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: 1.02; margin: 0; letter-spacing: .005em; }

.section__title {
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  text-transform: uppercase; color: var(--ink); letter-spacing: .01em;
}
.accent { color: var(--rust); }

/* -------------------- 5. BUTTONS -------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--sans); font-weight: 700; font-size: .95rem;
  padding: 13px 22px; border-radius: var(--radius-sm);
  border: 2px solid var(--ink); cursor: pointer;
  text-align: center; line-height: 1.15; max-width: 100%;
  letter-spacing: .01em;
  box-shadow: var(--shadow-pop);
  transition: transform .12s var(--ease), box-shadow .12s var(--ease), background .18s var(--ease);
}
.btn:hover { transform: translate(-1px,-1px); box-shadow: 5px 5px 0 var(--ink); }
.btn:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--ink); }
.btn--sm { padding: 10px 16px; font-size: .875rem; box-shadow: 3px 3px 0 var(--ink); }
.btn--lg { padding: 15px 26px; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--accent  { background: var(--rust); color: #FFF6EC; }
.btn--accent:hover { background: var(--rust-2); }
.btn--pine    { background: var(--pine); color: var(--cream-on-dark); }
.btn--pine:hover { background: var(--pine-2); }
.btn--outline { background: var(--card); color: var(--ink); }
.btn--outline:hover { background: #fff; }

/* -------------------- 6. HEADER / NAV -------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}
.nav { display: flex; align-items: center; gap: 20px; height: 66px; }
.brand { display: inline-flex; align-items: center; gap: 9px; flex-shrink: 0; }
.brand__mark {
  display: grid; place-items: center; width: 32px; height: 32px;
  border-radius: 7px; background: var(--rust); color: #FFF6EC;
  border: 2px solid var(--ink);
}
.brand__text {
  font-family: var(--display); font-size: 1.14rem; letter-spacing: .01em;
  text-transform: uppercase; color: var(--ink);
}
.nav__links { display: flex; gap: 24px; margin-left: 12px; }
.nav__links a { color: var(--ink-soft); font-weight: 600; font-size: .93rem; transition: color .18s; }
.nav__links a:hover { color: var(--rust); }
.nav__actions { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.link-call { display: inline-flex; align-items: center; gap: 7px; color: var(--ink); font-weight: 700; font-size: .9rem; }
.link-call svg { color: var(--rust); }
.link-call:hover { color: var(--rust); }

.nav__toggle {
  display: none; margin-left: auto; width: 44px; height: 44px;
  background: var(--card); border: 2px solid var(--ink); border-radius: 9px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer;
  box-shadow: 3px 3px 0 var(--ink);
}
.nav__toggle span { width: 20px; height: 2.5px; background: var(--ink); transition: transform .25s var(--ease), opacity .2s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu { border-top: 2px solid var(--ink); background: var(--paper-2); padding: 14px 22px 22px; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a { padding: 14px 4px; font-weight: 700; font-size: 1.05rem; border-bottom: 1px solid var(--line); color: var(--ink); }
.mobile-menu__actions { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }

/* -------------------- 7. HERO -------------------- */
.hero { padding: clamp(40px, 6vw, 76px) 0 clamp(30px, 5vw, 56px); position: relative; overflow: hidden; }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.hero__copy { max-width: 620px; }
.hero__title {
  font-size: clamp(3rem, 8.5vw, 6rem); text-transform: uppercase;
  letter-spacing: .01em; margin: 0 0 20px; color: var(--ink);
}
.hero__sub { font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--ink-soft); max-width: 560px; margin: 0 0 26px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 16px; }
.hero__alt { font-size: .95rem; color: var(--ink-soft); margin: 0 0 22px; }
.hero__alt a { color: var(--rust); font-weight: 700; }
.hero__cred {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  font-family: var(--caps); font-size: .96rem; letter-spacing: .06em;
  color: var(--ink-soft); text-transform: uppercase; margin: 0;
}
.hero__cred .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--rust); }

.hero__logo {
  margin: 0; border: 3px solid var(--ink); border-radius: 16px; overflow: hidden;
  background: var(--card); box-shadow: 8px 8px 0 var(--pine);
}
.hero__logo img { width: 100%; height: auto; display: block; background: #F2EDE4; }

.hero__support {
  margin: clamp(26px,4vw,40px) auto 0; color: var(--brown); font-size: .98rem;
  max-width: 720px; padding-left: 16px; border-left: 3px solid var(--rust);
}

/* -------------------- 8. TRUST BAR -------------------- */
.trustbar { background: var(--pine); color: var(--cream-on-dark); border-bottom: 2px solid var(--ink); }
.trustbar__inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px 30px;
  padding: 18px 22px; font-family: var(--caps); text-transform: uppercase;
  font-size: clamp(.95rem, 1.7vw, 1.2rem); letter-spacing: .05em;
}
.trust { display: flex; align-items: center; gap: 10px; }
.trust__k { color: var(--rust); font-weight: 400; }

/* -------------------- 9. SECTIONS / CARDS -------------------- */
.cards { display: grid; gap: 18px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative; background: var(--card); border: 2px solid var(--ink);
  border-radius: var(--radius); padding: 24px 22px 26px; box-shadow: var(--shadow-soft);
  transition: transform .16s var(--ease), box-shadow .16s var(--ease);
}
.card:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.card__num { font-family: var(--caps); font-size: 1rem; color: var(--rust); letter-spacing: .1em; }
.card__title {
  font-family: var(--display); font-size: 1.42rem; text-transform: uppercase; color: var(--ink);
  margin: 6px 0 14px; padding-bottom: 14px; border-bottom: 2px solid var(--line);
}
.card__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.card__list li { position: relative; padding-left: 18px; color: var(--ink-soft); font-size: .95rem; }
.card__list li::before { content: ""; position: absolute; left: 0; top: .55em; width: 7px; height: 7px; background: var(--rust); border-radius: 2px; }

.disclaimer {
  margin: 28px 0 0; padding: 16px 20px; color: var(--brown); font-size: .88rem;
  background: var(--card); border: 2px solid var(--ink); border-left: 6px solid var(--rust);
  border-radius: var(--radius-sm); max-width: 900px; box-shadow: var(--shadow-soft);
}

/* Who we serve */
.serve {
  background: var(--card); border: 2px solid var(--ink); border-radius: var(--radius);
  padding: 26px 22px; box-shadow: var(--shadow-soft);
  transition: transform .16s var(--ease), box-shadow .16s var(--ease);
}
.serve:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.serve__icon {
  width: 52px; height: 52px; color: var(--pine); margin-bottom: 16px;
  border: 2px solid var(--ink); border-radius: 10px; padding: 9px; background: var(--paper);
}
.serve__icon svg { width: 100%; height: 100%; }
.serve__title { font-family: var(--display); font-size: 1.34rem; text-transform: uppercase; margin: 0 0 10px; color: var(--ink); }
.serve p { color: var(--ink-soft); font-size: .95rem; margin: 0; }
.serve__cta { text-align: center; margin-top: clamp(36px, 5vw, 52px); }
.serve__cta p { font-family: var(--display); text-transform: uppercase; font-size: clamp(1.4rem,3vw,2rem); margin: 0 0 18px; color: var(--ink); }

/* Why */
.why {
  background: var(--card); border: 2px solid var(--ink); border-radius: var(--radius);
  padding: 26px 22px; box-shadow: var(--shadow-soft);
  transition: transform .16s var(--ease), box-shadow .16s var(--ease);
}
.why:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.why__k {
  display: grid; place-items: center; width: 48px; height: 48px; border-radius: 10px;
  background: var(--rust); color: #FFF6EC; border: 2px solid var(--ink);
  font-family: var(--display); font-size: 1.3rem; margin-bottom: 16px;
}
.why__title { font-family: var(--display); font-size: 1.28rem; text-transform: uppercase; margin: 0 0 8px; color: var(--ink); }
.why p { color: var(--ink-soft); font-size: .93rem; margin: 0; }

/* Steps */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step {
  position: relative; background: var(--card); border: 2px solid var(--ink);
  border-radius: var(--radius); padding: 26px 20px 24px; box-shadow: var(--shadow-soft);
}
.step__num {
  display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%;
  background: var(--pine); color: var(--cream-on-dark); border: 2px solid var(--ink);
  font-family: var(--display); font-size: 1.4rem; margin-bottom: 16px; box-shadow: 3px 3px 0 var(--ink);
}
.step__title { font-family: var(--display); font-size: 1.2rem; text-transform: uppercase; margin: 0 0 8px; color: var(--ink); }
.step p { color: var(--ink-soft); font-size: .93rem; margin: 0; }

/* -------------------- 10. ABOUT -------------------- */
.about { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(28px, 5vw, 60px); align-items: start; }
.about__photo {
  margin: 0; border: 3px solid var(--ink); border-radius: 14px; overflow: hidden;
  background: var(--card); box-shadow: 8px 8px 0 var(--rust); position: sticky; top: 92px;
}
.about__photo img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; display: block; background: var(--paper-2); }
.about__photo figcaption {
  font-family: var(--caps); text-transform: uppercase; letter-spacing: .08em;
  font-size: .9rem; color: var(--cream-on-dark); background: var(--pine);
  padding: 11px 16px; border-top: 3px solid var(--ink);
}
.about__story { margin-top: 6px; }
.about__story p { color: var(--ink-soft); margin: 0 0 16px; font-size: 1.04rem; }
.about__pull {
  font-family: var(--sans); font-weight: 600; color: var(--ink) !important;
  font-size: 1.12rem !important; line-height: 1.5;
  padding: 16px 20px; margin: 6px 0 16px !important;
  background: var(--card); border: 2px solid var(--ink); border-left: 6px solid var(--rust);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-soft);
}

/* -------------------- 11. GALLERY -------------------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.shot { margin: 0; border-radius: var(--radius); overflow: hidden; border: 2px solid var(--ink); background: var(--card); position: relative; box-shadow: var(--shadow-soft); }
.shot__ph, .shot img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.shot__ph {
  background:
    repeating-linear-gradient(45deg, rgba(27,58,51,.05) 0 12px, transparent 12px 24px),
    var(--paper-2);
  position: relative;
}
.shot__ph::after {
  content: "PHOTO"; position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--caps); font-size: 1rem; letter-spacing: .3em; color: var(--ink-faint);
}
.shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 12px 14px;
  font-family: var(--display); text-transform: uppercase; font-size: 1.05rem;
  background: var(--pine); color: var(--cream-on-dark); border-top: 2px solid var(--ink);
}

/* -------------------- 12. MAINTENANCE -------------------- */
.maint {
  display: grid; grid-template-columns: 1.3fr .9fr; gap: 40px; align-items: center;
  background: var(--card); border: 3px solid var(--ink); border-radius: var(--radius);
  padding: clamp(28px, 5vw, 50px); box-shadow: var(--shadow-pop);
}
.maint__lead { color: var(--ink-soft); font-size: 1.06rem; margin: 16px 0 26px; max-width: 46ch; }
.maint__fit { border-left: 2px solid var(--line); padding-left: 40px; }
.maint__fit-label { font-family: var(--caps); text-transform: uppercase; letter-spacing: .1em; font-size: .95rem; color: var(--rust); margin: 0 0 16px; }
.tags { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.tags li {
  padding: 9px 14px; border: 2px solid var(--ink); border-radius: 999px;
  font-size: .9rem; font-weight: 600; color: var(--ink); background: var(--paper);
}

/* -------------------- 13. FAQ -------------------- */
.faq { display: grid; gap: 12px; }
.qa { background: var(--card); border: 2px solid var(--ink); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-soft); }
.qa summary {
  list-style: none; cursor: pointer; padding: 18px 20px; font-weight: 700; font-size: 1.05rem; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after { content: "+"; font-family: var(--display); font-size: 1.5rem; color: var(--rust); transition: transform .25s var(--ease); flex-shrink: 0; }
.qa[open] summary::after { transform: rotate(45deg); }
.qa__body { padding: 0 20px 20px; color: var(--ink-soft); }
.qa__body p { margin: 0; }

/* -------------------- 14. CTA / FORM -------------------- */
.cta { padding: clamp(56px, 8vw, 104px) 0; background: var(--pine); color: var(--cream-on-dark); border-top: 2px solid var(--ink); }
.cta__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 60px); align-items: start; }
.cta .eyebrow { color: #F2A16A; }
.cta .eyebrow__tick { background: #F2A16A; }
.cta__title { font-family: var(--display); font-size: clamp(2rem, 4.4vw, 3.1rem); text-transform: uppercase; margin: 0 0 16px; color: #fff; }
.cta__sub { color: #E5D8C2; font-size: 1.08rem; max-width: 44ch; margin: 0 0 26px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.cta__actions .btn--outline { background: var(--pine-2); color: var(--cream-on-dark); border-color: var(--cream-on-dark); box-shadow: 4px 4px 0 rgba(0,0,0,.35); }
.cta__actions .btn--outline:hover { background: #123330; }
.cta__facts { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.cta__facts li { position: relative; padding-left: 24px; color: #fff; font-weight: 600; }
.cta__facts li::before { content: "✓"; position: absolute; left: 0; color: #F2A16A; font-weight: 800; }

.formcard { background: var(--card); border: 3px solid var(--ink); border-radius: var(--radius); padding: clamp(22px, 3vw, 32px); box-shadow: 8px 8px 0 var(--rust); color: var(--ink); }
.formcard__title { font-family: var(--display); text-transform: uppercase; font-size: 1.6rem; margin: 0 0 20px; color: var(--ink); }
.lead-form { display: grid; gap: 15px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .82rem; font-weight: 700; color: var(--ink); letter-spacing: .01em; }
.field__hint { color: var(--ink-faint); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--paper); border: 2px solid var(--ink); border-radius: var(--radius-sm);
  color: var(--ink); padding: 11px 13px; font: inherit; font-size: .95rem; transition: box-shadow .15s, border-color .15s;
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--rust); box-shadow: 3px 3px 0 var(--rust); }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%231B3A33' stroke-width='2'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.field input[type="file"] { padding: 9px 11px; font-size: .88rem; color: var(--ink-soft); }
.field input[type="file"]::file-selector-button { background: var(--pine); color: var(--cream-on-dark); border: 2px solid var(--ink); border-radius: 8px; padding: 8px 14px; margin-right: 12px; font: inherit; font-size: .85rem; font-weight: 700; cursor: pointer; }
.field input.invalid, .field textarea.invalid, .field select.invalid { border-color: #C0392B; box-shadow: 3px 3px 0 rgba(192,57,43,.5); }
.field__note { margin: 4px 0 0; font-size: .82rem; color: var(--rust); font-weight: 600; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; margin: 0; }
.lead-form__legal { font-size: .82rem; color: var(--ink-soft); text-align: center; margin: 2px 0 0; }
.lead-form__legal a { color: var(--rust); font-weight: 700; }
.lead-form__status { margin: 6px 0 0; padding: 14px 16px; border-radius: var(--radius-sm); font-weight: 600; font-size: .92rem; border: 2px solid var(--ink); }
.lead-form__status.ok { background: #E4F0E3; color: #1E5028; }
.lead-form__status.err { background: #F7E1DC; color: #A8321F; }

/* -------------------- 15. FOOTER -------------------- */
.site-footer { background: var(--pine-2); color: var(--cream-on-dark); border-top: 2px solid var(--ink); padding: clamp(46px, 6vw, 70px) 0 24px; }
.site-footer .brand__text { color: #fff; font-size: 1.2rem; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; }
.footer__tag { font-family: var(--caps); letter-spacing: .05em; font-size: 1.1rem; color: #F2A16A; margin: 8px 0 12px; }
.footer__desc { color: #C9BBA3; font-size: .9rem; max-width: 34ch; margin: 0; }
.footer__h { font-family: var(--caps); text-transform: uppercase; letter-spacing: .1em; font-size: .95rem; color: #A99B82; margin: 0 0 14px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { color: #E5D8C2; font-size: .93rem; font-weight: 500; transition: color .18s; }
.footer__col a:hover { color: #F2A16A; }
.footer__muted { color: #A99B82; font-size: .9rem; margin: 0; }
.footer__bar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: clamp(34px, 5vw, 52px); padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); color: #A99B82; font-size: .84rem; }
.footer__top { color: #E5D8C2; font-weight: 600; }
.footer__top:hover { color: #F2A16A; }

/* -------------------- 16. STICKY MOBILE CTA -------------------- */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; gap: 10px; padding: 11px 14px calc(11px + env(safe-area-inset-bottom));
  background: var(--paper); border-top: 2px solid var(--ink);
}
.mobile-cta .btn { flex: 1; box-shadow: 3px 3px 0 var(--ink); }

/* -------------------- 17. REVEAL / MOTION -------------------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card, .serve, .why { transition: none !important; }
  .btn:hover, .card:hover, .serve:hover, .why:hover { transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .cards--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
  .nav__links, .nav__actions { display: none; }
  .nav__toggle { display: flex; }
  .hero__inner { grid-template-columns: 1fr; gap: 28px; }
  .hero__logo { order: -1; max-width: 560px; }
  .about { grid-template-columns: 1fr; }
  .about__photo { position: static; max-width: 440px; }
  .cta__inner { grid-template-columns: 1fr; }
  .maint { grid-template-columns: 1fr; gap: 28px; }
  .maint__fit { border-left: none; border-top: 2px solid var(--line); padding-left: 0; padding-top: 26px; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 74px; }
}
@media (max-width: 760px) {
  .cards--3, .cards--4 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .trustbar__inner { grid-template-columns: 1fr 1fr; gap: 12px 24px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .grid-2 { grid-template-columns: 1fr; }
  .steps, .gallery, .footer__inner { grid-template-columns: 1fr; }
  .hero__cta .btn { flex: 1; }
}
