/* ============================================================
   GreenLine Irrigation & Sod — premium build
   ============================================================ */

:root {
  --ink: #101710;
  --pine: #16241a;
  --pine-2: #1d3023;
  --moss: #35543a;
  --leaf: #5f8a4e;
  --sage: #9db98a;
  --mist: #c9d6bd;
  --paper: #f4f1e8;
  --paper-2: #ece7d9;
  --gold: #c2a878;
  --gold-2: #dcc79b;
  --line: rgba(194, 168, 120, 0.28);
  --line-dark: rgba(22, 36, 26, 0.14);

  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", "Segoe UI", Arial, sans-serif;

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

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--pine);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--leaf); color: var(--paper); }

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

.wrap {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

/* --- grain overlay for texture --- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.18'/%3E%3C/svg%3E");
}

/* --- reveal animations (only when JS is available) --- */
body.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
body.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.22s; }
.reveal.d3 { transition-delay: 0.34s; }
.reveal.d4 { transition-delay: 0.46s; }

/* ============================================================
   Header
   ============================================================ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease),
              padding 0.5s var(--ease), backdrop-filter 0.5s;
  padding: 22px 0;
}

header.scrolled {
  background: rgba(16, 23, 16, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(194,168,120,0.22);
  padding: 12px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-chip {
  display: inline-block;
  transition: transform 0.4s var(--ease), opacity 0.4s;
}
.logo-chip:hover { transform: translateY(-2px); opacity: 0.9; }
.logo-chip img { height: 56px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-links a:not(.nav-cta) {
  color: var(--mist);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.nav-links a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-links a:not(.nav-cta):hover { color: var(--paper); }

.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold-2);
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: color 0.4s var(--ease);
}
.nav-cta span { position: relative; z-index: 1; }
.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform 0.45s var(--ease);
}
.nav-cta:hover { color: var(--ink); }
.nav-cta:hover::before { transform: translateY(0); }

.burger {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  width: 46px; height: 46px;
  cursor: pointer;
  position: relative;
}
.burger i, .burger i::before, .burger i::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 18px; height: 1.6px;
  background: var(--paper);
  transform: translateX(-50%);
  transition: 0.35s var(--ease);
}
.burger i { top: 50%; margin-top: -0.8px; }
.burger i::before { top: -6px; }
.burger i::after { top: 6px; }
.burger.open i { background: transparent; }
.burger.open i::before { top: 0; transform: translateX(-50%) rotate(45deg); }
.burger.open i::after { top: 0; transform: translateX(-50%) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(178deg, #0d130d 0%, #16241a 40%, #22392a 78%, #2c4832 100%);
  color: var(--paper);
  overflow: hidden;
}

.hero-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-scene svg { width: 100%; height: 100%; }

.hero-inner {
  position: relative;
  z-index: 3;
  padding: 130px 0 0;
  text-align: center;
}

.hero-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 44px;
}
.hero-logo img {
  width: clamp(280px, 34vw, 480px);
  height: auto;
  filter: drop-shadow(0 18px 44px rgba(0,0,0,0.45));
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  margin-bottom: 34px;
}
.hero-kicker::before, .hero-kicker::after {
  content: "";
  width: 46px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-kicker::after { background: linear-gradient(90deg, var(--gold), transparent); }

.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.6vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  max-width: 1000px;
  margin-inline: auto;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--sage);
}

.hero-sub {
  max-width: 560px;
  margin: 30px auto 44px;
  color: rgba(236, 231, 217, 0.72);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 38px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--gold-2);
  transform: translateY(101%);
  transition: transform 0.45s var(--ease);
}
.btn-gold:hover::before { transform: translateY(0); }
.btn-gold span, .btn-gold svg { position: relative; z-index: 1; }

.btn-ghost {
  border: 1px solid rgba(244, 241, 232, 0.35);
  color: var(--paper);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); }

.hero-scroll {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  padding-bottom: 26px;
}
.hero-scroll span {
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(236,231,217,0.5);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll span::after {
  content: "";
  width: 1px; height: 44px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: drip 2.2s var(--ease) infinite;
}
@keyframes drip {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   Marquee
   ============================================================ */
.marquee {
  background: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 20px 0;
  position: relative;
  z-index: 4;
}
.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: scroll 30s linear infinite;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 64px;
  color: var(--gold-2);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.marquee-track span::after {
  content: "✦";
  color: var(--moss);
  font-style: normal;
  font-size: 0.8rem;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ============================================================
   Section scaffolding
   ============================================================ */
.section { padding: 130px 0; position: relative; }
.section.dark { background: var(--pine); color: var(--paper); }
.section.deep { background: var(--ink); color: var(--paper); }

.sec-head { max-width: 720px; margin-bottom: 80px; }
.sec-head.center { margin-inline: auto; text-align: center; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 22px;
}
.kicker::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold);
}
.center .kicker::after {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold);
}
.dark .kicker, .deep .kicker { color: var(--sage); }

.sec-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.sec-head h2 em { font-style: italic; font-weight: 400; color: var(--leaf); }
.dark .sec-head h2 em, .deep .sec-head h2 em { color: var(--sage); }

.sec-head p {
  margin-top: 22px;
  color: rgba(29, 48, 35, 0.66);
  font-weight: 300;
  font-size: 1.02rem;
  max-width: 560px;
}
.center p { margin-inline: auto; }
.dark .sec-head p, .deep .sec-head p { color: rgba(236,231,217,0.6); }

/* ============================================================
   Stats band
   ============================================================ */
.stats {
  background: var(--paper);
  border-bottom: 1px solid var(--line-dark);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 64px 0;
}
.stat {
  text-align: center;
  padding: 10px 20px;
  border-left: 1px solid var(--line-dark);
}
.stat:first-child { border-left: none; }
.stat b {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  color: var(--pine);
  display: block;
  line-height: 1.1;
}
.stat b i { font-style: normal; color: var(--gold); }
.stat b span {
  font: inherit;
  color: inherit;
  letter-spacing: 0;
  text-transform: none;
  display: inline;
  margin: 0;
}
.stat > span:last-child {
  display: block;
  margin-top: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(29,48,35,0.55);
}

/* ============================================================
   Services — editorial rows
   ============================================================ */
.service-rows { border-top: 1px solid var(--line-dark); }

.srow {
  display: grid;
  grid-template-columns: 90px 1.05fr 1.4fr 220px;
  align-items: center;
  gap: 40px;
  padding: 46px 10px;
  border-bottom: 1px solid var(--line-dark);
  position: relative;
  transition: background 0.5s var(--ease), padding-left 0.5s var(--ease);
  cursor: default;
}
.srow:hover { background: rgba(255,255,255,0.55); padding-left: 26px; }

.srow .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
}

.srow h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  letter-spacing: -0.01em;
  line-height: 1.15;
  transition: color 0.4s var(--ease);
}
.srow:hover h3 { color: var(--leaf); }

.srow p {
  color: rgba(29, 48, 35, 0.62);
  font-weight: 300;
  font-size: 0.98rem;
  max-width: 480px;
}

.srow .art {
  justify-self: end;
  width: 200px;
  height: 120px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 18px 40px rgba(22,36,26,0.18);
  transform: rotate(-1.2deg);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.srow:nth-child(even) .art { transform: rotate(1.2deg); }
.srow:hover .art {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 0 26px 54px rgba(22,36,26,0.26);
}
.srow .art svg { width: 100%; height: 100%; }

/* ============================================================
   Feature band (why us)
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 90px;
  align-items: center;
}

.feature-copy .lead {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.5;
  color: rgba(244,241,232,0.92);
  margin-top: 26px;
}
.feature-copy .lead em { color: var(--gold-2); font-style: italic; }

.check-list { margin-top: 44px; display: grid; gap: 0; }
.check-list li {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(194,168,120,0.18);
  align-items: flex-start;
}
.check-list li:last-child { border-bottom: 1px solid rgba(194,168,120,0.18); }
.check-list .tick {
  flex: 0 0 auto;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold-2);
  font-size: 0.72rem;
  margin-top: 2px;
}
.check-list b {
  display: block;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  color: var(--paper);
}
.check-list p {
  color: rgba(236,231,217,0.55);
  font-weight: 300;
  font-size: 0.9rem;
  margin-top: 4px;
}

.feature-art {
  position: relative;
}
.feature-art .frame {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,0.45);
  position: relative;
}
.feature-art .frame svg { width: 100%; height: auto; }
.feature-art::before {
  content: "";
  position: absolute;
  inset: 26px -26px -26px 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  z-index: -1;
}

.badge-float {
  position: absolute;
  bottom: -34px;
  left: -34px;
  background: var(--paper);
  color: var(--pine);
  border-radius: 6px;
  padding: 22px 26px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  gap: 16px;
}
.badge-float .sun {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--gold-2), var(--gold));
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 1.1rem;
}
.badge-float b { font-family: var(--serif); font-size: 1.02rem; display: block; line-height: 1.2; }
.badge-float span { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(29,48,35,0.55); }

/* ============================================================
   Process
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid var(--line-dark);
}
.pstep {
  border-right: 1px solid var(--line-dark);
  padding: 10px 34px 0;
  position: relative;
}
.pstep .pnum {
  font-family: var(--serif);
  font-style: italic;
  font-size: 3.4rem;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 26px;
}
.pstep h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.28rem;
  margin-bottom: 12px;
}
.pstep p {
  color: rgba(29,48,35,0.6);
  font-weight: 300;
  font-size: 0.92rem;
}

/* ============================================================
   Testimonials
   ============================================================ */
.quote-hero {
  text-align: center;
  max-width: 880px;
  margin-inline: auto;
}
.quote-hero .qmark {
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 0.4;
  color: var(--gold);
  display: block;
  margin-bottom: 34px;
}
.quote-hero blockquote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.4;
  color: var(--paper);
  letter-spacing: -0.01em;
}
.quote-hero blockquote em { font-style: italic; color: var(--sage); }
.quote-hero cite {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.quote-hero cite::before, .quote-hero cite::after {
  content: "";
  width: 30px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.tstm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 90px;
}
.tstm {
  background: rgba(244,241,232,0.04);
  border: 1px solid rgba(194,168,120,0.16);
  border-radius: 8px;
  padding: 40px 34px;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), background 0.5s var(--ease);
}
.tstm:hover {
  transform: translateY(-8px);
  border-color: rgba(194,168,120,0.45);
  background: rgba(244,241,232,0.07);
}
.tstm .stars { color: var(--gold); letter-spacing: 4px; font-size: 0.85rem; margin-bottom: 20px; }
.tstm p {
  font-weight: 300;
  font-size: 0.96rem;
  color: rgba(236,231,217,0.78);
  line-height: 1.75;
}
.tstm .who {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.tstm .avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--moss), var(--leaf));
  color: var(--paper);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
}
.tstm .who b { display: block; font-size: 0.9rem; color: var(--paper); font-weight: 600; }
.tstm .who span { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(236,231,217,0.45); }

/* ============================================================
   Service area
   ============================================================ */
.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.acard {
  padding: 70px 46px;
  border-right: 1px solid var(--line-dark);
  position: relative;
  overflow: hidden;
  transition: background 0.6s var(--ease);
}
.acard:last-child { border-right: none; }
.acard::after {
  content: attr(data-abbr);
  position: absolute;
  right: -14px;
  bottom: -44px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 9rem;
  color: transparent;
  -webkit-text-stroke: 1px rgba(194,168,120,0.35);
  line-height: 1;
  pointer-events: none;
  transition: -webkit-text-stroke 0.6s var(--ease), transform 0.6s var(--ease);
}
.acard:hover { background: rgba(255,255,255,0.5); }
.acard:hover::after { -webkit-text-stroke: 1px var(--gold); transform: translateY(-8px); }

.acard h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.7rem;
  margin-bottom: 12px;
}
.acard p { color: rgba(29,48,35,0.6); font-weight: 300; font-size: 0.94rem; max-width: 260px; }
.acard .tag {
  display: inline-block;
  margin-bottom: 22px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--leaf);
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  position: relative;
  background: linear-gradient(160deg, #0d130d, #1d3023 70%, #2a4530);
  color: var(--paper);
  text-align: center;
  padding: 150px 0 160px;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 110%, rgba(95,138,78,0.35), transparent 70%);
}
.cta .wrap { position: relative; z-index: 2; }

.cta h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  max-width: 860px;
  margin-inline: auto;
}
.cta h2 em { font-style: italic; color: var(--sage); }

.cta .sub {
  margin: 28px auto 50px;
  max-width: 480px;
  color: rgba(236,231,217,0.6);
  font-weight: 300;
}

.phone-hero {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  color: var(--gold-2);
  letter-spacing: 0.02em;
  margin-bottom: 46px;
  position: relative;
  transition: color 0.4s var(--ease);
}
.phone-hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0.3);
  opacity: 0.5;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.phone-hero:hover { color: var(--paper); }
.phone-hero:hover::after { transform: scaleX(1); opacity: 1; }

.cta-note {
  margin-top: 34px;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(236,231,217,0.4);
}

/* ============================================================
   Quote form
   ============================================================ */
.quote-sec {
  background: var(--paper-2);
  position: relative;
}
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.quote-copy .phone-side {
  display: inline-block;
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--pine);
  margin-top: 30px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
}
.quote-copy .side-note {
  margin-top: 18px;
  font-size: 0.85rem;
  color: rgba(29,48,35,0.55);
  max-width: 380px;
}

.qform {
  background: var(--pine);
  border-radius: 10px;
  padding: 54px 50px;
  box-shadow: 0 40px 90px rgba(22,36,26,0.28);
  position: relative;
  overflow: hidden;
}
.qform::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.qform h3 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--paper);
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.qform .fsub {
  color: rgba(236,231,217,0.55);
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 36px;
}
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: rgba(244,241,232,0.06);
  border: 1px solid rgba(194,168,120,0.25);
  border-radius: 6px;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 15px 18px;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}
.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'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c2a878' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}
.field select option { color: var(--pine); background: var(--paper); }
.field input::placeholder, .field textarea::placeholder { color: rgba(236,231,217,0.35); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold);
  background: rgba(244,241,232,0.1);
}
.field textarea { resize: vertical; min-height: 110px; }
.qform .btn-gold { width: 100%; justify-content: center; margin-top: 8px; border: none; cursor: pointer; font-family: var(--sans); }
.qform .privacy {
  margin-top: 18px;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(236,231,217,0.35);
}

/* ============================================================
   Service pages
   ============================================================ */
.page-hero {
  position: relative;
  background: linear-gradient(170deg, #0d130d, #1d3023 75%, #26412c);
  color: var(--paper);
  padding: 200px 0 110px;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 20%, rgba(194,168,120,0.12), transparent 65%);
  pointer-events: none;
}
.page-hero .crumb {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 26px;
  display: block;
}
.page-hero .crumb a { color: var(--gold-2); }
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  max-width: 820px;
}
.page-hero h1 em { font-style: italic; color: var(--sage); }
.page-hero .ph-sub {
  max-width: 560px;
  margin-top: 26px;
  color: rgba(236,231,217,0.66);
  font-weight: 300;
  font-size: 1.05rem;
}
.page-hero .ph-ctas { margin-top: 44px; display: flex; gap: 16px; flex-wrap: wrap; }

.svc-body { display: grid; grid-template-columns: 1.5fr 1fr; gap: 80px; align-items: start; }
.svc-copy h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 22px;
}
.svc-copy h2 em { font-style: italic; color: var(--leaf); }
.svc-copy p { color: rgba(29,48,35,0.72); font-weight: 300; margin-bottom: 20px; }

.glance {
  background: var(--pine);
  color: var(--paper);
  border-radius: 10px;
  padding: 44px 40px;
  position: sticky;
  top: 110px;
  box-shadow: 0 30px 70px rgba(22,36,26,0.25);
}
.glance h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 26px;
}
.glance ul li {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(194,168,120,0.14);
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(236,231,217,0.8);
}
.glance ul li:last-child { border-bottom: none; }
.glance ul li::before { content: "✦"; color: var(--gold); font-size: 0.7rem; margin-top: 4px; }
.glance .btn { width: 100%; justify-content: center; margin-top: 28px; }

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.inc-card {
  background: #fff;
  border-radius: 8px;
  padding: 36px 30px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 10px 30px rgba(22,36,26,0.07);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.inc-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(22,36,26,0.13); }
.inc-card h3 { font-family: var(--serif); font-weight: 500; font-size: 1.15rem; margin-bottom: 10px; }
.inc-card p { color: rgba(29,48,35,0.62); font-weight: 300; font-size: 0.9rem; }

/* FAQ */
.faq { max-width: 780px; margin-inline: auto; }
.faq details {
  border-bottom: 1px solid var(--line-dark);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 28px 6px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--pine);
  transition: color 0.3s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.4s var(--ease);
  flex: 0 0 auto;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details[open] summary { color: var(--leaf); }
.faq .faq-a {
  padding: 0 6px 30px;
  color: rgba(29,48,35,0.66);
  font-weight: 300;
  max-width: 640px;
}

/* other services strip */
.more-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.more-card {
  border: 1px solid rgba(194,168,120,0.3);
  border-radius: 8px;
  padding: 30px 26px;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.4s;
  background: rgba(244,241,232,0.03);
}
.more-card:hover { background: rgba(244,241,232,0.08); transform: translateY(-4px); border-color: var(--gold); }
.more-card b {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--paper);
  display: block;
  margin-bottom: 8px;
}
.more-card span { font-size: 0.8rem; color: rgba(236,231,217,0.5); font-weight: 300; }
.more-card .arrow { display: block; margin-top: 18px; color: var(--gold-2); font-size: 0.9rem; }

/* floating mobile call pill */
.float-call {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 800;
  background: var(--gold);
  color: var(--ink);
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  white-space: nowrap;
}

/* ============================================================
   Footer
   ============================================================ */
footer {
  background: var(--ink);
  color: rgba(236,231,217,0.55);
  padding: 90px 0 40px;
  border-top: 1px solid var(--line);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 70px;
}

.foot-brand .logo-chip { display: inline-block; margin-bottom: 24px; }
.foot-brand p {
  font-weight: 300;
  font-size: 0.92rem;
  max-width: 300px;
  line-height: 1.8;
}

.foot-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 26px;
}
.foot-col a, .foot-col p {
  display: block;
  font-size: 0.92rem;
  font-weight: 300;
  margin-bottom: 14px;
  transition: color 0.3s, padding-left 0.3s var(--ease);
}
.foot-col a:hover { color: var(--gold-2); padding-left: 6px; }

.foot-bottom {
  border-top: 1px solid rgba(194,168,120,0.14);
  padding-top: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}
.foot-bottom .mark { font-family: var(--serif); font-style: italic; color: var(--sage); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .srow { grid-template-columns: 60px 1fr 180px; }
  .srow p { display: none; }
  .feature-grid { gap: 60px; }
}

@media (max-width: 900px) {
  .section { padding: 90px 0; }
  .quote-grid { grid-template-columns: 1fr; gap: 50px; }
  .qform { padding: 40px 30px; }
  .frow { grid-template-columns: 1fr; gap: 0; }
  .svc-body { grid-template-columns: 1fr; gap: 50px; }
  .glance { position: static; }
  .included-grid { grid-template-columns: 1fr; }
  .more-grid { grid-template-columns: 1fr 1fr; }
  .float-call { display: inline-block; }
  .page-hero { padding: 160px 0 80px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .stat:nth-child(3) { border-left: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .badge-float { left: 12px; bottom: -24px; }
  .process-grid { grid-template-columns: 1fr 1fr; row-gap: 60px; }
  .pstep:nth-child(2) { border-right: none; }
  .tstm-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; }
  .acard { border-right: none; border-bottom: 1px solid var(--line-dark); }
  .acard:last-child { border-bottom: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(13, 19, 13, 0.97);
    backdrop-filter: blur(14px);
    flex-direction: column;
    justify-content: center;
    gap: 34px;
    transform: translateY(-102%);
    transition: transform 0.6s var(--ease);
    z-index: 900;
  }
  .nav-links.open { transform: none; }
  .nav-links a:not(.nav-cta) { font-size: 1rem; }
  .burger { display: block; z-index: 950; }
  .srow { grid-template-columns: 40px 1fr; gap: 20px; padding: 36px 4px; }
  .srow .art { display: none; }
  .srow:hover { padding-left: 4px; }
  .process-grid { grid-template-columns: 1fr; border-left: none; }
  .pstep { border-right: none; border-left: 1px solid var(--line-dark); margin-bottom: 30px; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero-inner { padding-top: 130px; }
}
