/* ============================================================
   TN SERVICES LLC — STYLESHEET
   Design language: "The Clearing Line"
   A jagged brass line runs through the site everywhere a
   section changes — the same line the mulcher head leaves
   behind when it turns overgrown ground into a clean site.
   Rough texture above the line, flat order below it.
   ============================================================ */

:root {
  /* Color tokens — pulled from the TN Services mark */
  --void: #0b0a08;          /* primary background, near-black */
  --charcoal: #161209;      /* raised panels / cards */
  --charcoal-2: #1e1809;    /* deeper panel variant */
  --gold: #b8791f;          /* brass, primary accent (logo ring) */
  --gold-light: #dda246;    /* hover / bright accent */
  --gold-dim: #7a531c;      /* muted brass for borders */
  --silver: #cac6bd;        /* weathered steel, headline text */
  --silver-dim: #8f8b81;    /* secondary/quiet text */
  --off-white: #eeeae1;     /* body copy on dark */
  --rust: #5f3a1e;          /* burnt sky tone, dividers/shadows */
  --line: rgba(202, 198, 189, 0.12);
  --success: #7a9a5c;

  --font-display: "Anton", sans-serif;
  --font-head: "Oswald", sans-serif;
  --font-body: "Barlow", sans-serif;
  --font-mono: "Space Mono", monospace;

  --container: 1180px;
  --radius: 2px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--void);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

::selection { background: var(--gold); color: var(--void); }

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Subtle ground texture applied under dark sections */
.grain {
  position: relative;
}
.grain::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  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.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--silver);
  line-height: 0.95;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.slogan {
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

p { color: var(--silver-dim); max-width: 62ch; }
p.lead { color: var(--off-white); font-size: 1.15rem; }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: var(--void);
}
.btn-gold:hover { background: var(--gold-light); }

.btn-ghost {
  background: transparent;
  border-color: var(--gold-dim);
  color: var(--silver);
}
.btn-ghost:hover { border-color: var(--gold-light); color: var(--gold-light); }

.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11, 10, 8, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: border-color 0.3s ease;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { height: 52px; width: auto; }
.brand-text {
  font-family: var(--font-display);
  color: var(--silver);
  letter-spacing: 0.03em;
  line-height: 1;
}
.brand-text span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: var(--gold-light);
  margin-top: 4px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--silver-dim);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--off-white); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--gold);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-phone {
  font-family: var(--font-mono);
  color: var(--gold-light);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--silver);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 160px 0 120px;
  background:
    radial-gradient(ellipse 90% 60% at 30% 0%, rgba(184, 121, 31, 0.16), transparent 60%),
    linear-gradient(180deg, #0b0a08 0%, #100d08 60%, #0b0a08 100%);
  overflow: hidden;
}

.hero-brush {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    repeating-linear-gradient(115deg, transparent 0 18px, rgba(202,198,189,0.02) 18px 19px),
    repeating-linear-gradient(25deg, transparent 0 24px, rgba(184,121,31,0.03) 24px 25px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  align-items: end;
}

.hero-title {
  font-size: clamp(3rem, 7.2vw, 6rem);
  margin: 18px 0 22px;
}
.hero-title .cut {
  color: var(--gold);
  position: relative;
}

.hero-copy p {
  margin-bottom: 34px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 30px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  margin-top: 46px;
}
.hero-stats div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--silver);
}
.hero-stats div span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver-dim);
}

.hero-panel {
  justify-self: end;
  background: var(--charcoal);
  border: 1px solid var(--gold-dim);
  padding: 30px;
  width: 100%;
  max-width: 320px;
  position: relative;
}
.hero-panel::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px;
  width: 26px; height: 26px;
  border-top: 2px solid var(--gold-light);
  border-left: 2px solid var(--gold-light);
}
.hero-panel::after {
  content: "";
  position: absolute;
  bottom: -1px; right: -1px;
  width: 26px; height: 26px;
  border-bottom: 2px solid var(--gold-light);
  border-right: 2px solid var(--gold-light);
}
.hero-panel h3 {
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.hero-panel ul li {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--silver-dim);
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  display: flex;
  justify-content: space-between;
}
.hero-panel ul li:last-child { border-bottom: none; }
.hero-panel ul li b { color: var(--off-white); font-weight: 400; }

/* ---------- Clearing Line divider (signature element) ---------- */
.clearing-line {
  display: block;
  width: 100%;
  height: 64px;
  position: relative;
  z-index: 3;
  margin-top: -2px;
}
.clearing-line svg { width: 100%; height: 100%; display: block; }
.clearing-line.flip { transform: scaleY(-1); }

/* ============================================================
   SECTIONS — general
   ============================================================ */
section { position: relative; }

.section {
  padding: 110px 0;
}
.section-tight { padding: 70px 0; }

.section-head {
  max-width: 640px;
  margin-bottom: 60px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3rem);
  margin-top: 14px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.on-dark { background: var(--void); }
.on-panel { background: var(--charcoal); }

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--void);
  padding: 40px 32px;
  transition: background 0.25s ease;
  position: relative;
}
.service-card:hover { background: var(--charcoal); }
.service-num {
  font-family: var(--font-mono);
  color: var(--gold-dim);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}
.service-card h3 {
  font-size: 1.3rem;
  margin: 18px 0 12px;
}
.service-card p { font-size: 0.95rem; }
.service-card .service-link {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 2px;
}

/* ---------- Why-us strip ---------- */
.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.strip-item {
  padding: 34px 28px;
  border-left: 1px solid var(--line);
}
.strip-item:first-child { border-left: none; }
.strip-item h4 {
  font-family: var(--font-mono);
  color: var(--gold-light);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.strip-item p { font-size: 0.92rem; }

/* ---------- Two-column feature (about/process) ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.feature-media {
  position: relative;
  border: 1px solid var(--gold-dim);
  padding: 10px;
  background: var(--charcoal);
}
.feature-media img { width: 100%; height: auto; filter: saturate(0.9) contrast(1.05); }
.feature-media .tag {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--void);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
}

.list-check {
  margin-top: 24px;
}
.list-check li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--off-white);
  font-family: var(--font-head);
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}
.list-check li:last-child { border-bottom: none; }
.list-check li::before {
  content: "";
  flex: none;
  width: 10px; height: 10px;
  margin-top: 6px;
  background: var(--gold);
  clip-path: polygon(0 20%, 40% 20%, 40% 0%, 100% 50%, 40% 100%, 40% 80%, 0 80%);
}

/* ---------- Process / steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.step {
  padding-top: 24px;
  border-top: 2px solid var(--gold-dim);
}
.step .num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--gold-dim);
  display: block;
}
.step h4 { margin: 8px 0 10px; font-size: 1.05rem; }
.step p { font-size: 0.9rem; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  background: var(--charcoal);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, transparent, rgba(11,10,8,0.92));
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
}
.gallery-item.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--silver-dim);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 20px;
  background:
    repeating-linear-gradient(135deg, transparent 0 12px, rgba(202,198,189,0.03) 12px 13px);
}
.gallery-item.placeholder svg { width: 34px; height: 34px; opacity: 0.5; }

/* ---------- Testimonial / quote band ---------- */
.quote-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 90px 0;
  text-align: center;
}
.quote-band blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  color: var(--silver);
  max-width: 900px;
  margin: 0 auto 24px;
  line-height: 1.25;
}
.quote-band cite {
  font-family: var(--font-mono);
  font-style: normal;
  color: var(--gold-light);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--charcoal-2), var(--charcoal));
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
  padding: 80px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.cta-inner h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); max-width: 620px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--void);
  border-top: 1px solid var(--line);
  padding-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: 0.92rem; }
.footer-slogan {
  margin-top: 18px;
  font-family: var(--font-display);
  color: var(--gold-dim);
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 0.92rem;
  color: var(--silver-dim);
  transition: color 0.2s ease;
}
.footer-col ul li a:hover { color: var(--off-white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--silver-dim);
}

/* ============================================================
   INNER PAGE HERO (about/services/gallery/contact)
   ============================================================ */
.page-hero {
  padding: 170px 0 90px;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(184,121,31,0.14), transparent 60%),
    var(--void);
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
}
.page-hero p.lead { margin-top: 20px; }
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--gold-light); }

/* ---------- Values grid (about) ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.value-card {
  border: 1px solid var(--line);
  padding: 32px;
  background: var(--charcoal);
}
.value-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.value-card p { font-size: 0.92rem; }

/* ---------- Service detail rows ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 26px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}
.service-detail:first-of-type { border-top: 1px solid var(--line); }
.service-detail .idx {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold-dim);
}
.service-detail h3 { font-size: 1.5rem; margin-bottom: 12px; }
.service-detail .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.service-detail .tags span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--gold-dim);
  padding: 5px 10px;
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info-card {
  border: 1px solid var(--line);
  background: var(--charcoal);
  padding: 34px;
  margin-bottom: 20px;
}
.contact-info-card h4 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.contact-info-card .big {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--silver);
}
.contact-info-card p { font-size: 0.92rem; margin-top: 6px; }

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  color: var(--silver-dim);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li b { color: var(--off-white); font-weight: 400; }

form.quote-form {
  border: 1px solid var(--line);
  background: var(--charcoal);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--void);
  border: 1px solid var(--line);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 13px 14px;
  border-radius: var(--radius);
  transition: border-color 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  outline: none;
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--silver-dim);
  margin-top: 16px;
}
.form-success {
  display: none;
  border: 1px solid var(--success);
  color: var(--success);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  padding: 16px 18px;
  margin-top: 18px;
}
.form-success.show { display: block; }

/* ---------- Reveal-on-scroll (clearing effect) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { justify-self: start; max-width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .strip { grid-template-columns: repeat(2, 1fr); }
  .strip-item:nth-child(3) { border-left: none; }
  .feature { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links, .nav-phone span.txt { display: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--void);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 26px;
    gap: 18px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .hero-stats { grid-template-columns: 1fr; gap: 18px; }
  .strip { grid-template-columns: 1fr; }
  .strip-item { border-left: none; border-top: 1px solid var(--line); }
  .strip-item:first-child { border-top: none; }
  .steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}
