/* ============================================================
   TREE MASTERS — styles
   Palette pulled from the logo: near-black, kelly/lime green,
   chrome silver, off-white.
   ============================================================ */

:root {
  /* Brand */
  --bg:            #070A07;
  --bg-2:          #0C110B;
  --surface:       #121811;
  --surface-2:     #1A211A;
  --border:        #29332A;

  --green:         #3DA935;   /* core kelly green */
  --green-bright:  #5FD836;   /* lime highlight */
  --green-deep:    #1E7A2B;
  --green-dark:    #0F3F1A;

  --silver:        #D6DBDF;
  --silver-dim:    #9AA2A8;
  --chrome-hi:     #F4F7F9;
  --chrome-lo:     #8B9298;

  --text:          #F1F5EF;
  --muted:         #A6B0A4;

  /* Type */
  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body:    'Source Sans 3', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Layout */
  --maxw: 1160px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px rgba(0,0,0,.55);
  --shadow-green: 0 12px 40px rgba(61,169,53,.28);

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;
  --space-6: 96px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
svg { width: 100%; height: 100%; }
.icon { width: 1.15em; height: 1.15em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  --btn-fs: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--btn-fs);
  letter-spacing: .01em;
  padding: .85em 1.5em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .16s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease;
  text-align: center;
  min-height: 48px;
  line-height: 1.1;
}
.btn:focus-visible { outline: 3px solid var(--green-bright); outline-offset: 3px; }
.btn--lg { --btn-fs: 1.05rem; padding: 1em 1.8em; }
.btn--xl { --btn-fs: 1.2rem; padding: 1.05em 2.1em; min-height: 60px; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--green);
  color: #06210A;
  box-shadow: var(--shadow-green);
  border-color: var(--green-bright);
}
.btn--primary:hover { background: var(--green-bright); transform: translateY(-2px); }
.btn--primary:active { transform: translateY(0); }

.btn--silver {
  background: linear-gradient(180deg, var(--chrome-hi), var(--silver) 55%, var(--chrome-lo));
  color: #10160F;
  border-color: #ffffff;
}
.btn--silver:hover { transform: translateY(-2px); filter: brightness(1.05); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding: 12px clamp(16px, 4vw, 40px);
  background: rgba(7,10,7,.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__logo { width: 40px; height: 40px; object-fit: contain; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: .04em;
  color: var(--text);
  line-height: 1;
}
.site-nav { display: flex; align-items: center; gap: clamp(12px, 2vw, 28px); }
.site-nav a {
  font-weight: 600;
  font-size: .98rem;
  color: var(--muted);
  transition: color .15s ease;
  padding: 6px 2px;
}
.site-nav a:hover { color: var(--text); }
.site-nav__cta {
  color: #06210A !important;
  background: var(--green);
  padding: 8px 16px !important;
  border-radius: 8px;
  font-weight: 700;
}
.site-nav__cta:hover { background: var(--green-bright); }
@media (max-width: 720px) {
  .site-nav a:not(.site-nav__cta) { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  text-align: center;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(90px, 14vh, 150px) clamp(16px, 4vw, 40px) clamp(70px, 12vh, 120px);
  background:
    radial-gradient(1100px 520px at 50% -8%, rgba(61,169,53,.20), transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  overflow: hidden;
}
/* Animated aurora glow */
.hero__aurora {
  position: absolute; inset: -20% -10% auto -10%;
  height: 90%;
  background:
    radial-gradient(45% 55% at 25% 30%, rgba(95,216,54,.22), transparent 60%),
    radial-gradient(40% 50% at 78% 40%, rgba(30,122,43,.28), transparent 62%),
    radial-gradient(35% 45% at 55% 70%, rgba(61,169,53,.18), transparent 60%);
  filter: blur(30px);
  pointer-events: none;
  animation: auroraDrift 16s ease-in-out infinite alternate;
}
@keyframes auroraDrift {
  0%   { transform: translate3d(-4%, -2%, 0) scale(1); }
  50%  { transform: translate3d(3%, 2%, 0) scale(1.08); }
  100% { transform: translate3d(5%, -3%, 0) scale(1.03); }
}
/* Falling-leaves canvas */
.hero__leaves { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
/* Subtle film-grain noise */
.hero__noise {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  opacity: .5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__inner { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }
.hero__logo {
  width: clamp(130px, 26vw, 200px);
  height: auto;
  margin: 0 auto var(--space-3);
  filter: drop-shadow(0 12px 30px rgba(0,0,0,.6));
}
.hero__eyebrow {
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .82rem;
  color: var(--green-bright);
  margin: 0 0 var(--space-2);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.6rem, 15vw, 8rem);
  line-height: .86;
  letter-spacing: .01em;
  margin: 0 0 var(--space-3);
  color: var(--text);
  text-shadow: 0 6px 30px rgba(0,0,0,.5);
}
.hero__title .line { display: block; }
.hero__title .accent,
.hero__title .accent .pw > span {
  background: linear-gradient(180deg, var(--green-bright), var(--green-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
/* word pull-up: each word wrapped in .pw > span by JS */
.hero__title .pw { display: inline-block; overflow: hidden; vertical-align: top; margin-right: .22em; }
.hero__title .pw:last-child { margin-right: 0; }
.hero__title .pw > span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}
.hero__title.is-in .pw > span {
  animation: wordPull .7s cubic-bezier(.16,1,.3,1) forwards;
  animation-delay: var(--wd, 0s);
}
@keyframes wordPull { to { transform: translateY(0); opacity: 1; } }
.hero__subtitle {
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto var(--space-4);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
  margin-bottom: var(--space-4);
}
.hero__cta .btn { flex: 1 1 260px; max-width: 340px; }

.hero__contactbar {
  display: inline-flex;
  gap: 10px;
  padding: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 700;
  font-size: .98rem;
  color: var(--text);
  transition: background .15s ease, color .15s ease;
  min-height: 44px;
}
.chip:hover { background: var(--green-dark); color: var(--green-bright); }
.chip .icon { color: var(--green-bright); }
@media (max-width: 460px) {
  .hero__contactbar { display: grid; grid-template-columns: repeat(3, 1fr); width: 100%; border-radius: var(--radius); }
  .chip { padding: 10px 8px; border-radius: 8px; justify-content: center; }
}

/* Intro animation helpers */
.anim-fade { opacity: 0; transform: translateY(18px); animation: fadeUp .8s cubic-bezier(.16,1,.3,1) forwards; animation-delay: var(--d, 0s); }
.anim-pop { opacity: 0; transform: scale(.85); animation: popIn .8s cubic-bezier(.34,1.56,.64,1) forwards; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }
@keyframes popIn { to { opacity: 1; transform: none; } }

/* ---------- Pill buttons (Prisma-inspired) ---------- */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 24px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.08rem;
  min-height: 58px;
  cursor: pointer;
  transition: gap .25s ease, transform .2s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
  border: 1px solid transparent;
}
.btn-pill:focus-visible { outline: 3px solid var(--green-bright); outline-offset: 3px; }
.btn-pill__arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%; flex: 0 0 auto;
  transition: transform .25s ease, background .2s ease;
}
.btn-pill__arrow svg { width: 20px; height: 20px; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

.btn-pill--primary { background: var(--green); color: #06210A; box-shadow: var(--shadow-green); border-color: var(--green-bright); }
.btn-pill--primary .btn-pill__arrow { background: #06210A; }
.btn-pill--primary .btn-pill__arrow svg { stroke: var(--green-bright); }
.btn-pill--primary:hover { gap: 18px; transform: translateY(-2px); background: var(--green-bright); }
.btn-pill--primary:hover .btn-pill__arrow { transform: translateX(3px) scale(1.06); }

.btn-pill--ghost { background: rgba(255,255,255,.04); color: var(--text); border-color: var(--border); }
.btn-pill--ghost .btn-pill__arrow { background: var(--green-dark); }
.btn-pill--ghost .btn-pill__arrow svg { stroke: var(--green-bright); fill: none; }
.btn-pill--ghost:hover { gap: 18px; transform: translateY(-2px); border-color: var(--green); background: rgba(61,169,53,.1); }
.btn-pill--ghost:hover .btn-pill__arrow { transform: scale(1.06); }

/* Scroll cue */
.hero__scroll {
  position: relative; z-index: 2;
  margin-top: var(--space-4);
  width: 26px; height: 42px;
  border: 2px solid var(--silver-dim);
  border-radius: 20px;
  display: inline-flex; justify-content: center;
  opacity: .7;
}
.hero__scroll span {
  width: 4px; height: 8px; margin-top: 7px; border-radius: 4px;
  background: var(--green-bright);
  animation: scrollBob 1.6s ease-in-out infinite;
}
@keyframes scrollBob { 0%,100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(9px); opacity: .3; } }
@media (max-width: 720px) { .hero__scroll { display: none; } }

/* ---------- Trust marquee ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  padding: 16px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  white-space: nowrap;
  animation: marqueeMove 26s linear infinite;
  will-change: transform;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: .05em;
  color: var(--silver);
}
.marquee__track .dot { color: var(--green-bright); }
@keyframes marqueeMove { to { transform: translateX(-50%); } }

/* ---------- Section shell ---------- */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(56px, 9vw, 100px) clamp(16px, 4vw, 40px);
}
.section__head { text-align: center; max-width: 640px; margin: 0 auto var(--space-4); }
.section__eyebrow {
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .8rem;
  color: var(--green-bright);
  margin: 0 0 10px;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 6.5vw, 3.8rem);
  line-height: 1;
  letter-spacing: .02em;
  margin: 0 0 var(--space-2);
  color: var(--text);
}
.section__lead { font-size: 1.1rem; color: var(--muted); margin: 0; }
.section__cta { text-align: center; margin-top: var(--space-4); }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-2);
}
.service-card {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-3);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: var(--shadow);
}
.service-card__icon {
  display: inline-flex;
  width: 54px; height: 54px;
  padding: 13px;
  border-radius: 12px;
  background: var(--green-dark);
  color: var(--green-bright);
  margin-bottom: var(--space-2);
}
.service-card__icon svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.7rem;
  letter-spacing: .03em;
  margin: 0 0 8px;
  color: var(--text);
}
.service-card p { margin: 0; color: var(--muted); font-size: 1rem; }

/* ---------- Quote ---------- */
.section--quote {
  background:
    radial-gradient(700px 360px at 15% 0%, rgba(61,169,53,.12), transparent 60%);
  border-radius: 28px;
  border: 1px solid var(--border);
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
}
.quote-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 860px) { .quote-wrap { grid-template-columns: 1fr; } }
.quote-info .section__eyebrow,
.quote-info .section__title,
.quote-info .section__lead { text-align: left; }
.quote-info .section__lead { margin-bottom: var(--space-3); }

.quote-contact { display: grid; gap: 12px; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color .15s ease, transform .15s ease;
}
.contact-row:hover { border-color: var(--green); transform: translateX(3px); }
.contact-row__icon {
  display: inline-flex; width: 44px; height: 44px; padding: 11px;
  border-radius: 10px; background: var(--green-dark); color: var(--green-bright); flex: 0 0 auto;
}
.contact-row__icon svg { fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.contact-row strong { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 700; }
.contact-row em { font-style: normal; font-weight: 700; font-size: 1.1rem; color: var(--text); }

/* Form */
.quote-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 32px);
  box-shadow: var(--shadow);
}
.field { margin-bottom: var(--space-2); }
.field label {
  display: block;
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 7px;
  color: var(--text);
}
.field .optional { color: var(--muted); font-weight: 400; font-size: .85rem; }
.field input,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input::placeholder,
.field textarea::placeholder { color: #6d766c; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(61,169,53,.25);
}
.field input:user-invalid,
.field textarea:user-invalid { border-color: #d0533f; }
.field textarea { resize: vertical; }
.quote-form__note { font-size: .92rem; color: var(--muted); margin: 14px 0 0; text-align: center; }
.quote-form__note a { color: var(--green-bright); font-weight: 700; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-2);
}
/* ---------- Before / After sliders ---------- */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
@media (min-width: 820px) {
  .ba-grid { grid-template-columns: 1fr 1fr; }
  /* let the odd one out center nicely */
  .ba-grid .ba:last-child:nth-child(odd) { grid-column: 1 / -1; max-width: 560px; justify-self: center; width: 100%; }
}

.ba { margin: 0; }
.ba__viewport {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  touch-action: pan-y;
  user-select: none;
  --pos: 50%;
}
.ba__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
/* before layer clipped to the left of the handle (clip-path avoids squish) */
.ba__before {
  position: absolute; inset: 0;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
  will-change: clip-path;
  transition: clip-path .12s ease-out;
}
.ba__handle { transition: left .12s ease-out; }
/* Tags */
.ba__tag {
  position: absolute; top: 12px;
  font-family: var(--font-display);
  letter-spacing: .08em;
  font-size: 1rem;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(4,7,4,.7);
  color: var(--text);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border);
  z-index: 3;
  pointer-events: none;
}
.ba__tag--before { left: 12px; }
.ba__tag--after  { right: 12px; color: var(--green-bright); }

/* Handle */
.ba__handle {
  position: absolute; top: 0; bottom: 0;
  left: var(--pos);
  transform: translateX(-50%);
  width: 44px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: 0;
  cursor: ew-resize;
  z-index: 4;
  padding: 0;
}
.ba__handle::before {
  content: "";
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px; transform: translateX(-50%);
  background: rgba(255,255,255,.9);
  box-shadow: 0 0 0 1px rgba(0,0,0,.25);
}
.ba__grip {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.4);
  transition: transform .15s ease, background .15s ease;
}
.ba__grip svg { width: 22px; height: 22px; fill: none; stroke: #06210A; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.ba__handle:hover .ba__grip,
.ba__handle:active .ba__grip { transform: scale(1.1); background: var(--green-bright); }
.ba__handle:focus-visible { outline: none; }
.ba__handle:focus-visible .ba__grip { outline: 3px solid var(--green-bright); outline-offset: 3px; }

.ba__caption {
  margin-top: 12px;
  text-align: center;
  font-weight: 600;
  color: var(--muted);
  font-size: 1rem;
}

.gallery-note { text-align: center; color: var(--muted); margin-top: var(--space-4); }
.gallery-note a { color: var(--green-bright); font-weight: 700; }

/* ---------- Reviews ---------- */
.section--reviews {
  background:
    radial-gradient(800px 400px at 50% 120%, rgba(61,169,53,.14), transparent 60%),
    var(--bg-2);
}
.reviews-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.reviews-cta { margin: var(--space-4) 0 var(--space-2); }
.reviews-sub { color: var(--muted); }
.reviews-sub a { color: var(--green-bright); font-weight: 700; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: clamp(40px, 7vw, 72px) clamp(16px, 4vw, 40px) 24px;
}
.footer-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-4);
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: var(--space-3); } }
.footer-brand__logo { width: 64px; height: 64px; object-fit: contain; margin-bottom: 12px; }
.footer-brand p { color: var(--muted); max-width: 320px; margin: 0; }
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: .04em;
  margin: 0 0 14px;
  color: var(--text);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: var(--muted); transition: color .15s ease; }
.footer-col a:hover { color: var(--green-bright); }
.social-row { display: flex; flex-direction: column; gap: 12px; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-weight: 700;
  color: var(--text);
  transition: border-color .15s ease, color .15s ease, transform .15s ease;
  max-width: 200px;
}
.social-btn svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.social-btn:hover { border-color: var(--green); color: var(--green-bright); transform: translateY(-2px); }

.footer-bottom {
  max-width: var(--maxw);
  margin: var(--space-4) auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--silver-dim);
  font-size: .9rem;
}
.footer-top-link { color: var(--muted); font-weight: 600; }
.footer-top-link:hover { color: var(--green-bright); }

/* ---------- Sticky mobile call bar ---------- */
.mobile-call-bar {
  display: none;
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 60;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green);
  color: #06210A;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 15px;
  border-radius: 14px;
  box-shadow: var(--shadow-green);
  border: 1px solid var(--green-bright);
}
.mobile-call-bar .icon { width: 1.3em; height: 1.3em; }
@media (max-width: 720px) {
  .mobile-call-bar { display: flex; }
  body { padding-bottom: 78px; }
}

/* ---------- Motion / a11y ---------- */
.reveal { opacity: 0; transform: translateY(24px); }
.reveal.is-visible { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal,
  .anim-fade,
  .anim-pop,
  .hero__title .pw > span { opacity: 1 !important; transform: none !important; }
  .hero__leaves, .hero__aurora { display: none; }
}
