/* ==========================================================================
   Tony's Mow & Blow — Design System
   ========================================================================== */

:root {
  --cream: #F7F1E3;
  --cream-deep: #EFE6D0;
  --cream-soft: #FBF7EC;
  --green-deep: #2F5D3A;
  --green-bright: #6FA84B;
  --green-ink: #1F3F28;
  --orange: #E88B2C;
  --orange-deep: #C5701B;
  --ink: #1C2321;
  --muted: #6E6A5F;
  --line: rgba(28, 35, 33, 0.12);

  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(28, 35, 33, 0.06), 0 2px 6px rgba(28, 35, 33, 0.04);
  --shadow-md: 0 4px 12px rgba(28, 35, 33, 0.08), 0 12px 32px rgba(28, 35, 33, 0.06);
  --shadow-lg: 0 12px 32px rgba(28, 35, 33, 0.14), 0 24px 64px rgba(28, 35, 33, 0.1);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --max-w: 1200px;
  --pad-x: clamp(20px, 5vw, 48px);
  --pad-y: clamp(56px, 9vw, 112px);

  --font-serif: 'Fraunces', ui-serif, Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
}

/* ==========================================================================
   Base
   ========================================================================== */

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

html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
}

section[id] { scroll-margin-top: 84px; }

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--green-deep);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-variation-settings: 'SOFT' 30, 'opsz' 100;
}

h2 { font-size: clamp(32px, 4.4vw, 52px); }
h3 { font-size: clamp(22px, 2.4vw, 28px); }

p { margin: 0 0 1em; }

a { color: var(--green-deep); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--orange); }

button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 16px;
}

.section {
  padding: var(--pad-y) 0;
}

.section--alt {
  background: var(--cream-deep);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--green-deep);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--green-ink);
  color: var(--cream);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--accent {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 6px 18px rgba(232, 139, 44, 0.35);
}
.btn--accent:hover {
  background: var(--orange-deep);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(232, 139, 44, 0.45);
}

.btn--ghost {
  color: var(--green-deep);
  border: 1.5px solid var(--green-deep);
}
.btn--ghost:hover {
  background: var(--green-deep);
  color: var(--cream);
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 14px 0;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(247, 241, 227, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  box-shadow: 0 1px 0 var(--line);
  padding: 10px 0;
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.site-header__brand img {
  height: 64px;
  width: auto;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.35));
  transition: height .3s var(--ease), filter .3s var(--ease);
}

.site-header.is-scrolled .site-header__brand img {
  height: 48px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
}

/* --- Nav-size wordmark --- */

.wordmark--nav {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  transition: transform .3s var(--ease);
}

.wordmark--nav .wordmark__tony {
  font-size: 44px;
  margin-bottom: 4px;
  -webkit-text-stroke: 2.5px var(--green-ink);
  text-shadow: 0 3px 0 var(--green-ink), 0 6px 12px rgba(0, 0, 0, 0.22);
  transform: rotate(-1deg);
}

.wordmark--nav .wordmark__banner {
  font-size: 16px;
  padding: 5px 14px;
  letter-spacing: 0.04em;
  border-radius: 4px;
  box-shadow:
    inset 0 0 0 2px var(--cream),
    inset 0 0 0 4px var(--green-deep),
    0 3px 0 var(--green-ink),
    0 6px 14px rgba(0, 0, 0, 0.2);
  transform: rotate(-1deg);
}

.wordmark--nav .wordmark__banner::before,
.wordmark--nav .wordmark__banner::after { display: none; }

.site-header.is-scrolled .wordmark--nav { transform: scale(0.82); transform-origin: left center; }
.site-header.is-scrolled .wordmark--nav .wordmark__tony  { text-shadow: 0 3px 0 var(--green-ink); }

.site-header__nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.site-header__nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--cream);
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
  transition: color .2s var(--ease);
}

.site-header.is-scrolled .site-header__nav a {
  color: var(--ink);
  text-shadow: none;
}

.site-header__nav a:hover { color: var(--orange); }

.site-header__cta { flex: 0 0 auto; }

.site-header__cta .btn { padding: 10px 18px; font-size: 14px; }

.nav-toggle {
  display: none;
  margin-left: auto;
  padding: 10px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--cream);
}
.site-header.is-scrolled .nav-toggle { color: var(--ink); }

/* ==========================================================================
   Hero — full-viewport looping video
   ========================================================================== */

.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 560px;
  width: 100%;
  overflow: hidden;
  background: var(--green-ink);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.32) 0%,
    rgba(0,0,0,0) 22%,
    rgba(0,0,0,0) 72%,
    rgba(28, 35, 33, 0.35) 100%);
  pointer-events: none;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}

.hero__scroll::after {
  content: '';
  width: 1px;
  height: 34px;
  background: var(--cream);
  animation: scrollHint 2.2s var(--ease) infinite;
  transform-origin: top;
}

@keyframes scrollHint {
  0%, 100% { transform: scaleY(0.3); opacity: 0.4; }
  50%      { transform: scaleY(1);   opacity: 1; }
}

/* ==========================================================================
   Tagline strip
   ========================================================================== */

.tagline {
  background: var(--cream);
  padding: 48px 0;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.tagline__headline {
  font-size: clamp(34px, 5.2vw, 58px);
  margin: 28px 0 0;
  line-height: 1.2;
  font-weight: 500;
}

.tagline__headline em {
  font-style: italic;
  color: var(--orange);
}

/* --- Wordmark (TONY'S MOW & BLOW) --- */

.wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  margin: 0 auto;
  user-select: none;
}

.wordmark__tony {
  font-family: 'Alfa Slab One', ui-serif, Georgia, serif;
  font-size: clamp(54px, 9vw, 112px);
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.88;
  -webkit-text-stroke: 4px var(--green-ink);
  paint-order: stroke fill;
  text-shadow:
    0 5px 0 var(--green-ink),
    0 10px 20px rgba(0, 0, 0, 0.18);
  margin-bottom: 10px;
  transform: rotate(-1deg);
}

.wordmark__banner {
  font-family: 'Archivo Black', 'Inter', sans-serif;
  font-size: clamp(22px, 4.6vw, 52px);
  color: var(--cream);
  background: var(--green-deep);
  padding: 12px clamp(28px, 5vw, 52px);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: 6px;
  box-shadow:
    inset 0 0 0 3px var(--cream),
    inset 0 0 0 6px var(--green-deep),
    0 6px 0 var(--green-ink),
    0 12px 26px rgba(0, 0, 0, 0.18);
  position: relative;
  transform: rotate(-1deg);
}

.wordmark__banner::before,
.wordmark__banner::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  background: var(--green-ink);
  transform: translateY(-50%) rotate(45deg);
  z-index: -1;
}
.wordmark__banner::before { left: -6px;  }
.wordmark__banner::after  { right: -6px; }

.wordmark__ribbon {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(10px, 1.3vw, 13px);
  color: var(--cream);
  background: var(--green-bright);
  padding: 7px 26px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  border-radius: 4px;
  margin-top: 10px;
  transform: rotate(-1deg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.wordmark__tab {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(10px, 1.2vw, 12px);
  color: var(--green-ink);
  background: var(--cream-deep);
  border: 2px solid var(--green-ink);
  padding: 5px 20px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-radius: 999px;
  margin-top: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 640px) {
  .wordmark__tony      { -webkit-text-stroke: 3px var(--green-ink); text-shadow: 0 4px 0 var(--green-ink); }
  .wordmark__banner::before,
  .wordmark__banner::after { width: 10px; height: 10px; }

  .wordmark--nav .wordmark__tony   { font-size: 34px; -webkit-text-stroke: 2px var(--green-ink); }
  .wordmark--nav .wordmark__banner { font-size: 13px; padding: 4px 10px; }
}

.tagline__meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.tagline__meta .dot {
  width: 4px; height: 4px; border-radius: 50%; background: var(--muted);
}

/* ==========================================================================
   Services
   ========================================================================== */

.services__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.services__head p {
  max-width: 420px;
  color: var(--muted);
  margin: 0;
}

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

.services__grid--four {
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1040px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 72px; height: 4px;
  background: var(--green-bright);
  border-radius: 0 0 4px 0;
  transition: width .35s var(--ease), background .35s var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::before {
  width: 100%;
  background: var(--orange);
}

.service-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--green-deep);
  color: var(--cream);
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.service-card__icon svg { width: 26px; height: 26px; }

.service-card h3 { margin-bottom: 10px; }
.service-card p  { color: var(--muted); margin-bottom: 20px; font-size: 15px; }

.service-card__list {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: grid; gap: 8px;
  font-size: 14.5px;
}
.service-card__list li {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink);
}
.service-card__list li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-bright); flex: 0 0 auto;
}

.service-card__price {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
}
.service-card__price-label {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted);
}
.service-card__price-value {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--green-deep);
  font-weight: 500;
}
.service-card__price-value small {
  font-size: 13px; color: var(--muted); margin-left: 2px;
  font-family: var(--font-sans); font-weight: 500;
}

/* ==========================================================================
   About + service area
   ========================================================================== */

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about__lede {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 24px;
}

.about__body p { color: var(--muted); font-size: 16px; }

.about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.about__stat-num {
  font-family: var(--font-serif);
  font-size: 40px;
  color: var(--orange);
  font-weight: 500;
  line-height: 1;
}
.about__stat-label {
  font-size: 14px;
  color: var(--muted);
  margin-top: 6px;
}

.area {
  background: var(--green-deep);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: sticky;
  top: 100px;
}
.area h3 { color: var(--cream); margin-bottom: 20px; }
.area p  { color: rgba(247, 241, 227, 0.82); font-size: 15px; }

.area__list {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px;
}
.area__list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px;
  color: var(--cream);
}
.area__list li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-bright); flex: 0 0 auto;
}

.area__note {
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid rgba(247, 241, 227, 0.18);
  font-size: 14px;
  color: rgba(247, 241, 227, 0.7);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonials__head { text-align: center; margin-bottom: 56px; }
.testimonials__head p { color: var(--muted); max-width: 560px; margin: 0 auto; }

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

/* --- Carousel track --- */

.testimonial-carousel {
  position: relative;
  overflow: hidden;
  margin: 0 calc(var(--pad-x) * -1);
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.testimonial-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 0 12px;
  animation: testimonial-scroll 75s linear infinite;
  will-change: transform;
}

.testimonial-carousel:hover .testimonial-track,
.testimonial-carousel:focus-within .testimonial-track {
  animation-play-state: paused;
}

@keyframes testimonial-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(calc(-50% - 12px), 0, 0); }
}

.testimonial {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  flex: 0 0 auto;
  width: 360px;
}

.testimonial-track .testimonial { width: 360px; }

.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

@media (max-width: 640px) {
  .testimonial-track .testimonial { width: 280px; }
}

.stars {
  display: flex; gap: 3px;
  color: var(--orange);
  margin-bottom: 16px;
}
.stars svg { width: 18px; height: 18px; }

.testimonial__quote {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 24px;
  flex: 1;
}

.testimonial__author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.testimonial__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--green-bright);
  color: var(--cream);
  display: grid; place-items: center;
  font-weight: 600; font-size: 15px;
  font-family: var(--font-sans);
  flex: 0 0 auto;
}
.testimonial__name { font-weight: 600; font-size: 15px; color: var(--ink); }
.testimonial__meta { font-size: 13px; color: var(--muted); }

/* ==========================================================================
   Before / After Gallery
   ========================================================================== */

.gallery__head { text-align: center; margin-bottom: 48px; }
.gallery__head p { color: var(--muted); max-width: 560px; margin: 0 auto; }

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

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--green-ink);
  cursor: pointer;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.55));
  pointer-events: none;
}

.gallery-item:hover { box-shadow: var(--shadow-md); }
.gallery-item:hover img { transform: scale(1.04); }

.gallery-item__tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: rgba(247, 241, 227, 0.95);
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
}

.gallery-item__caption {
  position: absolute;
  left: 16px; right: 16px; bottom: 14px;
  z-index: 2;
  color: var(--cream);
  font-size: 14px;
  font-weight: 500;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 20, 14, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease);
  cursor: zoom-out;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__img {
  max-width: 95vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  transform: scale(0.96);
  transition: transform .25s var(--ease);
}

.lightbox.is-open .lightbox__img { transform: scale(1); }

.lightbox__caption {
  position: absolute;
  left: 0; right: 0; bottom: 24px;
  text-align: center;
  color: var(--cream);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0 24px;
}

.lightbox__close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 999px;
  border: none;
  background: rgba(247, 241, 227, 0.95);
  color: var(--green-deep);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s var(--ease);
}

.lightbox__close:hover { transform: scale(1.08); }

/* ==========================================================================
   Contact CTA band
   ========================================================================== */

.contact {
  background: var(--green-deep);
  color: var(--cream);
  padding: var(--pad-y) 0;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact h2 { color: var(--cream); }
.contact .eyebrow { color: var(--orange); }

.contact__lede {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.5;
  color: rgba(247, 241, 227, 0.85);
  margin-bottom: 28px;
}

.phone-cta {
  display: inline-flex;
  flex-direction: column;
  padding: 20px 28px;
  border-radius: var(--radius);
  background: rgba(247, 241, 227, 0.06);
  border: 1px solid rgba(247, 241, 227, 0.18);
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.phone-cta:hover {
  background: rgba(247, 241, 227, 0.1);
  border-color: var(--orange);
  transform: translateY(-2px);
}
.phone-cta__label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 241, 227, 0.65);
  margin-bottom: 4px;
}
.phone-cta__number {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 44px);
  color: var(--orange);
  font-weight: 500;
  line-height: 1.1;
}

.contact__details {
  display: grid;
  gap: 16px;
  margin-top: 32px;
  font-size: 15px;
}
.contact__details a { color: var(--cream); }
.contact__details a:hover { color: var(--orange); }
.contact__details-row {
  display: flex; align-items: center; gap: 12px;
  color: rgba(247, 241, 227, 0.75);
}
.contact__details-row strong { color: var(--cream); font-weight: 600; }

.contact__form {
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.form-row { display: grid; gap: 16px; margin-bottom: 16px; }
.form-row--2 { grid-template-columns: 1fr 1fr; }

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--cream-soft);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 108px; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green-deep);
  background: #fff;
}

.contact__form button { width: 100%; justify-content: center; margin-top: 8px; }

.form-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

.form-success {
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.form-success__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-deep);
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.form-success__title {
  margin: 0 0 10px;
  font-size: 24px;
}

.form-success__text {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.form-success__text a {
  color: var(--green-deep);
  font-weight: 600;
  text-decoration: none;
}
.form-success__text a:hover { text-decoration: underline; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--green-ink);
  color: rgba(247, 241, 227, 0.7);
  padding: 56px 0 28px;
  font-size: 14px;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(247, 241, 227, 0.14);
  align-items: start;
}

.site-footer__brand img {
  width: 100%;
  max-width: 440px;
  height: auto;
  margin: -16px 0 24px -16px;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
}

@media (max-width: 960px) {
  .site-footer__brand img { max-width: 360px; margin-left: -8px; }
}
@media (max-width: 640px) {
  .site-footer__brand { text-align: center; }
  .site-footer__brand img { max-width: 320px; margin: -16px auto 24px; }
  .site-footer__brand p { margin-left: auto; margin-right: auto; }
  .site-footer__social { justify-content: center; }
}
.site-footer__brand p { color: rgba(247, 241, 227, 0.65); max-width: 380px; margin: 0 auto 20px; text-align: center; }

.site-footer__social {
  display: flex;
  gap: 10px;
}

.social-icon {
  display: inline-grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(247, 241, 227, 0.08);
  border: 1.5px solid rgba(247, 241, 227, 0.2);
  color: rgba(247, 241, 227, 0.85);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.social-icon svg { width: 20px; height: 20px; }
.social-icon:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

.site-footer h4 {
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer a { color: rgba(247, 241, 227, 0.7); }
.site-footer a:hover { color: var(--orange); }

.site-footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 28px;
  font-size: 13px;
  color: rgba(247, 241, 227, 0.55);
  flex-wrap: wrap; gap: 12px;
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 960px) {
  .services__grid,
  .testimonial-grid,
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .area { position: static; }

  .contact__grid { grid-template-columns: 1fr; gap: 40px; }

  .site-footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  section[id] { scroll-margin-top: 72px; }

  .site-header__nav {
    display: none;
    position: absolute;
    top: 100%; left: 16px; right: 16px;
    flex-direction: column;
    background: var(--cream);
    padding: 18px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    gap: 14px;
  }
  .site-header.is-open .site-header__nav { display: flex; }
  .site-header__nav a {
    color: var(--ink);
    text-shadow: none;
    padding: 10px 4px;
  }
  .site-header__cta { display: none; }
  .nav-toggle { display: inline-flex; }

  .services__grid,
  .testimonial-grid,
  .gallery-grid,
  .site-footer__top { grid-template-columns: 1fr; }

  .form-row--2 { grid-template-columns: 1fr; }

  .contact__form,
  .form-success { padding: 24px; }
  .contact__grid { gap: 32px; }

  .about__stats { grid-template-columns: 1fr 1fr; }
  .area__list   { grid-template-columns: 1fr; }

  .hero {
    height: 62vh;
    height: 62dvh;
    min-height: 380px;
    max-height: 620px;
  }
  .hero__video { object-position: center 40%; }
  .hero__scroll { bottom: max(20px, env(safe-area-inset-bottom)); }

  .tagline { padding: 36px 0; }

  .services__head { margin-bottom: 32px; gap: 16px; }
  .service-card { padding: 24px 22px; }

  .phone-cta { display: flex; align-items: flex-start; }

  .site-footer__bottom { justify-content: flex-start; }
}

@media (max-width: 420px) {
  .service-card { padding: 22px 18px; }
  .service-card__price-value { font-size: 24px; }
  .wordmark--nav .wordmark__tony   { font-size: 30px; }
  .wordmark--nav .wordmark__banner { font-size: 12px; padding: 3px 8px; }
  .testimonial-track .testimonial { width: 260px; }
  .testimonial { padding: 24px; }
  .contact__form,
  .form-success { padding: 20px; }
  .lightbox { padding: 12px; }
  .lightbox__close { top: 12px; right: 12px; }
}

/* Reduced motion — respect user preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
  .hero__video { display: none; }
  .hero { background:
    linear-gradient(160deg, #2F5D3A 0%, #4d7a46 60%, #85ae63 100%); }
}
