/* ===================================================================
   Cadle's Lawn and Landscape
   Palette: deep pine, grass green, fresh-cut chartreuse, warm limestone
   Type: Fraunces (display) + Hanken Grotesk (body)
   =================================================================== */

:root {
  /* color */
  --pine:        #163a27;
  --pine-800:    #1b4430;
  --pine-700:    #235138;
  --green:       #2f6b43;
  --green-500:   #3f8b56;
  --cut:         #bcd86a;   /* fresh-cut chartreuse, the accent */
  --cut-deep:    #98ba49;
  --cream:       #f5f2ea;   /* page background */
  --cream-2:     #ece6d9;
  --sand:        #e3d9c4;
  --tan:         #c2a878;
  --ink:         #15231b;
  --ink-soft:    #4c5a50;
  --ink-faint:   #7a857c;
  --white:       #ffffff;
  --line:        rgba(22, 58, 39, 0.12);
  --line-strong: rgba(22, 58, 39, 0.2);

  /* type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Hanken Grotesk", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* layout */
  --container: 1200px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px -22px rgba(20, 45, 30, 0.45);
  --shadow-soft: 0 10px 30px -18px rgba(20, 45, 30, 0.5);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--cut-deep); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--pine); color: var(--white); padding: 10px 16px;
  border-radius: 8px; transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* ---------- typography helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .76rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 18px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cut-deep); box-shadow: 0 0 0 4px rgba(152,186,73,.22); }
.eyebrow-light { color: var(--cut); }
.eyebrow-light .dot { background: var(--cut); box-shadow: 0 0 0 4px rgba(188,216,106,.25); }

.section-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--pine);
}
.section-title em { font-style: italic; color: var(--green-500); }
.section-intro {
  margin-top: 18px; max-width: 56ch; color: var(--ink-soft); font-size: 1.06rem;
}

.stars { color: #e7a73c; letter-spacing: 2px; font-size: .95em; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: .96rem; letter-spacing: .01em;
  padding: 14px 26px; border-radius: 100px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s, color .25s;
  will-change: transform;
}
.btn-sm { padding: 10px 18px; font-size: .9rem; }
.btn-block { width: 100%; }
.btn-accent { background: var(--cut); color: var(--pine); box-shadow: 0 12px 26px -12px rgba(152,186,73,.9); }
.btn-accent:hover { background: #c9e07e; transform: translateY(-3px); box-shadow: 0 18px 32px -14px rgba(152,186,73,.95); }
.btn-primary { background: var(--pine); color: var(--white); }
.btn-primary:hover { background: var(--green); transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.btn-ghost { background: rgba(255,255,255,.08); color: var(--white); border: 1px solid rgba(255,255,255,.32); }
.btn-ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-3px); }

/* ===================================================================
   HEADER
   =================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 14px 0;
  transition: background .35s, box-shadow .35s, padding .35s;
}
.site-header.scrolled {
  background: rgba(245,242,234,.86);
  backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 12px 30px -24px rgba(20,45,30,.6);
  padding: 9px 0;
}
.header-inner { display: flex; align-items: center; gap: 18px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { display: grid; place-items: center; filter: drop-shadow(0 6px 14px rgba(20,45,30,.28)); transition: transform .4s var(--ease); }
.brand:hover .brand-mark { transform: rotate(-6deg) scale(1.05); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--display); font-weight: 600; font-size: 1.32rem; color: var(--pine); letter-spacing: -.01em; }
.brand-sub { font-size: .66rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--green); margin-top: 4px; }

.nav { margin-left: auto; display: flex; gap: 6px; }
.nav a {
  position: relative; padding: 9px 14px; font-weight: 600; font-size: .96rem;
  color: var(--ink); border-radius: 8px; transition: color .2s;
}
.nav a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--cut-deep); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav a:hover, .nav a.active { color: var(--green); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }

/* light header text while transparent over the dark hero */
.site-header:not(.scrolled) .brand-name { color: #fff; }
.site-header:not(.scrolled) .brand-sub { color: var(--cut); }
.site-header:not(.scrolled) .nav-toggle span { background: #fff; }
.site-header .nav-toggle[aria-expanded="true"] span { background: var(--pine); }

@media (min-width: 761px) {
  .site-header:not(.scrolled) .nav a { color: #e7efe1; }
  .site-header:not(.scrolled) .nav a:hover,
  .site-header:not(.scrolled) .nav a.active { color: #fff; }
  .site-header:not(.scrolled) .nav a::after { background: var(--cut); }
  .site-header:not(.scrolled) .header-phone { color: #fff; }
  .site-header:not(.scrolled) .header-phone svg { color: var(--cut); }
}

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .92rem; color: var(--pine); }
.header-phone:hover { color: var(--green); }
.header-phone svg { color: var(--green); }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--pine); margin: 5px auto; border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 130% at 80% 0%, #235138 0%, var(--pine) 55%, #112e1f 100%);
  color: #eef3ea;
  padding: clamp(120px, 17vh, 190px) 0 clamp(70px, 9vh, 110px);
}
/* animated crosshatch lawn stripes drawn in CSS (always crisp) */
.hero-stripes {
  position: absolute; inset: -20% -10%;
  background-image:
    repeating-linear-gradient(58deg, rgba(255,255,255,.05) 0 26px, rgba(255,255,255,0) 26px 60px),
    repeating-linear-gradient(-58deg, rgba(188,216,106,.07) 0 22px, rgba(188,216,106,0) 22px 58px);
  background-size: 200% 200%, 200% 200%;
  animation: drift 26s linear infinite;
  mask-image: linear-gradient(to bottom, #000 0%, #000 70%, transparent 100%);
}
@keyframes drift {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 240px 0, -240px 0; }
}
.hero-glow {
  position: absolute; width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
  right: -12%; top: -22%; border-radius: 50%;
  background: radial-gradient(circle, rgba(188,216,106,.22), transparent 62%);
  filter: blur(10px); pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 5vw, 70px); align-items: center;
}
.hero-eyebrow { color: var(--cut); }
.hero-eyebrow .dot { background: var(--cut); box-shadow: 0 0 0 4px rgba(188,216,106,.25); }

.hero-title {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(2.9rem, 7.4vw, 5.6rem);
  line-height: .96; letter-spacing: -.03em; color: var(--white);
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title em { font-style: italic; color: var(--cut); }
.hero-lead { margin-top: 22px; max-width: 46ch; color: #d4ddd0; font-size: 1.12rem; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.hero-trust {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 26px;
  margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.14);
  font-size: .92rem; color: #cdd6ca;
}
.hero-trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust strong { color: var(--white); }

/* hero figure */
.hero-figure { position: relative; }
.hero-photo {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 40px 70px -30px rgba(0,0,0,.65); border: 1px solid rgba(255,255,255,.16);
  aspect-ratio: 3 / 4;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(22,58,39,.72); backdrop-filter: blur(6px);
  border: 1px solid rgba(188,216,106,.4); border-radius: 12px;
  padding: 10px 14px; display: flex; flex-direction: column; gap: 2px;
}
.hero-badge-k { font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--cut); font-weight: 700; }
.hero-badge-v { font-family: var(--display); font-weight: 600; color: var(--white); font-size: 1.05rem; }

.hero-float {
  position: absolute; right: -14px; top: 24px;
  background: var(--cut); color: var(--pine); border-radius: 14px;
  padding: 12px 16px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; align-items: center; line-height: 1;
  animation: bob 4.5s ease-in-out infinite;
}
.hero-float-num { font-family: var(--display); font-weight: 700; font-size: 1.5rem; }
.hero-float-lab { font-size: .64rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-top: 5px; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* hero load animation (gated by .js so content shows without JS) */
.js [data-load] { opacity: 0; transform: translateY(26px); }
.hero-loaded [data-load] { animation: rise .9s var(--ease) forwards; }
.hero-loaded [data-load="1"] { animation-delay: .05s; }
.hero-loaded [data-load="2"] { animation-delay: .14s; }
.hero-loaded [data-load="3"] { animation-delay: .24s; }
.hero-loaded [data-load="4"] { animation-delay: .40s; }
.hero-loaded [data-load="5"] { animation-delay: .50s; }
.hero-loaded [data-load="6"] { animation-delay: .60s; }
.hero-loaded [data-load="7"] { animation-delay: .30s; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

/* ===================================================================
   MARQUEE
   =================================================================== */
.marquee {
  background: var(--pine-800); color: #e9efe2; overflow: hidden;
  border-block: 1px solid rgba(255,255,255,.08); padding: 16px 0;
}
.marquee-track {
  display: flex; align-items: center; gap: 28px; width: max-content;
  animation: scroll 34s linear infinite;
  font-family: var(--display); font-style: italic; font-weight: 500; font-size: 1.25rem;
  white-space: nowrap;
}
.marquee-track .sep { color: var(--cut); font-style: normal; font-size: .8rem; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ===================================================================
   SECTION SHELL
   =================================================================== */
.section { padding: clamp(72px, 11vw, 130px) 0; }
.section-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 66px); }
.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; max-width: 100%; }
.section-intro-tight { margin-top: 0; max-width: 38ch; }

/* ===================================================================
   SERVICES
   =================================================================== */
.services { background: var(--cream); }
.service-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.service-card-wide { grid-column: span 1; }
.service-card {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 28px 32px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
  overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(58deg, rgba(47,107,67,.05) 0 14px, transparent 14px 30px);
  opacity: 0; transition: opacity .4s;
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: rgba(152,186,73,.5); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  position: relative; width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, #eef4e2, #dcebc4); color: var(--green); margin-bottom: 20px;
  transition: transform .4s var(--ease), background .3s, color .3s;
}
.service-card:hover .service-icon { transform: rotate(-6deg) scale(1.06); background: var(--pine); color: var(--cut); }
.service-card h3 { position: relative; font-family: var(--display); font-weight: 600; font-size: 1.28rem; color: var(--pine); letter-spacing: -.01em; }
.service-card p { position: relative; margin-top: 10px; color: var(--ink-soft); font-size: .98rem; }

/* ===================================================================
   SIGNATURE STRIPE BAND
   =================================================================== */
.stripe-band { position: relative; overflow: hidden; color: var(--white); isolation: isolate; }
.stripe-band-img {
  position: absolute; inset: 0; z-index: -2;
  background: url("assets/images/stripe-band.jpg") center/cover no-repeat;
  transform: scale(1.05);
}
.stripe-band-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(18,40,28,.93) 0%, rgba(18,40,28,.78) 42%, rgba(22,58,39,.45) 100%),
    repeating-linear-gradient(58deg, rgba(0,0,0,.16) 0 30px, transparent 30px 64px);
}
.stripe-band-inner { padding: clamp(80px, 12vw, 140px) 0; max-width: 660px; }
.stripe-band-title { font-family: var(--display); font-weight: 600; font-size: clamp(2.1rem, 5vw, 3.5rem); line-height: 1.02; letter-spacing: -.02em; }
.stripe-band-title em { font-style: italic; color: var(--cut); }
.stripe-band-lead { margin: 20px 0 30px; font-size: 1.1rem; color: #dfe6d8; max-width: 54ch; }

/* ===================================================================
   WORK / GALLERY
   =================================================================== */
.work { background: var(--cream-2); }
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; gap: 16px;
}
.g-item {
  position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer;
  border: 1px solid var(--line); background: #d9d0bd;
}
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.g-item:hover img { transform: scale(1.07); }
.g-item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 40px 18px 16px;
  display: flex; flex-direction: column; gap: 6px;
  background: linear-gradient(transparent, rgba(18,40,28,.9));
  color: var(--white); font-family: var(--display); font-weight: 500; font-size: 1.04rem;
  transform: translateY(8px); opacity: .96; transition: transform .4s var(--ease);
}
.g-item:hover figcaption { transform: translateY(0); }
.g-tag {
  align-self: flex-start; font-family: var(--body); font-size: .64rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--pine);
  background: var(--cut); padding: 4px 9px; border-radius: 100px;
}

/* ===================================================================
   ABOUT
   =================================================================== */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(36px, 6vw, 76px); align-items: center; }
.about-figure { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 5; }
.about-figure img { width: 100%; height: 100%; object-fit: cover; }
.about-figure-tag {
  position: absolute; left: 16px; bottom: 16px; background: rgba(245,242,234,.92); backdrop-filter: blur(6px);
  border-radius: 12px; padding: 10px 15px; display: flex; flex-direction: column; line-height: 1.1;
}
.about-figure-tag span { font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: var(--green); }
.about-figure-tag strong { font-family: var(--display); color: var(--pine); font-size: 1.1rem; }
.about-copy p { color: var(--ink-soft); margin-top: 16px; }
.about-copy .section-title { margin-bottom: 8px; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 32px 0 30px; }
.stat { padding: 20px 16px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); text-align: center; }
.stat-num { display: block; font-family: var(--display); font-weight: 700; font-size: clamp(1.9rem, 4vw, 2.6rem); color: var(--pine); line-height: 1; letter-spacing: -.02em; }
.stat-lab { display: block; margin-top: 7px; font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); }
.about-cta { margin-top: 4px; }

/* ===================================================================
   REVIEWS
   =================================================================== */
.reviews { background: var(--pine); color: #eaf0e4; position: relative; overflow: hidden; }
.reviews::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(58deg, rgba(255,255,255,.03) 0 24px, transparent 24px 54px);
  pointer-events: none;
}
.reviews .section-title { color: var(--white); }
.reviews .eyebrow { color: var(--cut); }
.reviews .eyebrow .dot { background: var(--cut); box-shadow: 0 0 0 4px rgba(188,216,106,.22); }
.reviews .section-intro { color: #c6d0c2; }
.review-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 26px 26px 22px;
  transition: transform .4s var(--ease), background .3s, border-color .3s;
}
.review-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.08); border-color: rgba(188,216,106,.45); }
.review-card .stars { font-size: 1rem; }
.review-card p { margin: 14px 0 20px; color: #dfe6d8; font-size: 1rem; }
.review-card footer { display: flex; align-items: center; gap: 12px; }
.r-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--green-500), var(--green)); color: var(--white);
  font-weight: 700; font-family: var(--display);
}
.review-card cite { font-style: normal; font-weight: 700; color: var(--white); display: flex; flex-direction: column; line-height: 1.2; }
.review-card cite small { font-weight: 500; color: var(--cut); font-size: .76rem; letter-spacing: .02em; margin-top: 2px; }

/* ===================================================================
   CONTACT + MAP
   =================================================================== */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.contact-list { margin: 28px 0 26px; display: grid; gap: 16px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.ci {
  width: 44px; height: 44px; flex: none; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, #eef4e2, #dcebc4); color: var(--green);
}
.ci-lab { display: block; font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 2px; }
.contact-list a { font-weight: 600; color: var(--pine); transition: color .2s; }
.contact-list a:hover { color: var(--green); }

.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-soft); height: 280px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: saturate(1.05); }

/* form */
.contact-form-wrap { position: sticky; top: 96px; }
.contact-form {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow-soft);
}
.form-note { font-family: var(--display); font-weight: 600; font-size: 1.4rem; color: var(--pine); margin-bottom: 20px; }
.field { margin-bottom: 16px; display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { font-size: .82rem; font-weight: 700; letter-spacing: .02em; color: var(--ink); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  font: inherit; font-size: .98rem; color: var(--ink);
  background: var(--cream); border: 1.5px solid var(--line-strong); border-radius: 11px;
  padding: 12px 14px; width: 100%; transition: border-color .2s, background .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--cut-deep); background: var(--white);
  box-shadow: 0 0 0 4px rgba(152,186,73,.18);
}
.select-wrap { position: relative; }
.select-wrap::after {
  content: ""; position: absolute; right: 16px; top: 50%; width: 9px; height: 9px;
  border-right: 2px solid var(--green); border-bottom: 2px solid var(--green);
  transform: translateY(-65%) rotate(45deg); pointer-events: none;
}
.field select { appearance: none; cursor: pointer; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #c4513a; background: #fdf3f0; }
.error { color: #c4513a; font-size: .8rem; font-weight: 600; margin-top: 6px; min-height: 0; }

.form-fineprint { margin-top: 14px; font-size: .78rem; color: var(--ink-faint); text-align: center; }
.form-success {
  display: flex; gap: 14px; align-items: center; margin-top: 18px;
  background: #eef5e1; border: 1px solid rgba(152,186,73,.5); border-radius: 12px; padding: 16px;
}
.form-success-icon { flex: none; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--cut); color: var(--pine); }
.form-success strong { display: block; color: var(--pine); }
.form-success span { font-size: .9rem; color: var(--ink-soft); }

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer { position: relative; background: var(--pine); color: #cdd6ca; overflow: hidden; }
.footer-stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(58deg, rgba(255,255,255,.03) 0 26px, transparent 26px 58px);
  pointer-events: none;
}
.footer-inner {
  position: relative; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
  padding: clamp(56px, 8vw, 86px) var(--pad) 40px;
}
.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-sub { color: #9cbf64; }
.footer-tag { margin: 18px 0 18px; max-width: 38ch; font-size: .96rem; }
.footer-social { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--cut); }
.footer-social:hover { color: #d3e88c; }
.footer-col h3 { font-family: var(--body); font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--cut); margin-bottom: 16px; font-weight: 700; }
.footer-col a, .footer-col span { display: block; padding: 5px 0; color: #cdd6ca; font-size: .96rem; transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  position: relative; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
  padding-block: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: .86rem; color: #aab6a8;
}
.footer-rating { display: inline-flex; align-items: center; gap: 8px; }

/* ===================================================================
   LIGHTBOX
   =================================================================== */
.lightbox {
  position: fixed; inset: 0; z-index: 300; display: grid; place-items: center;
  background: rgba(13,28,20,.92); padding: 24px; opacity: 0; transition: opacity .3s;
}
.lightbox.open { opacity: 1; }
.lightbox img { max-width: min(94vw, 1100px); max-height: 88vh; border-radius: 14px; box-shadow: 0 30px 80px -20px rgba(0,0,0,.7); transform: scale(.96); transition: transform .35s var(--ease); }
.lightbox.open img { transform: scale(1); }
.lightbox-close { position: absolute; top: 18px; right: 22px; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; font-size: 1.9rem; line-height: 1; }
.lightbox-close:hover { background: rgba(255,255,255,.22); }

/* ===================================================================
   REVEAL ANIMATIONS
   =================================================================== */
[data-reveal] { opacity: 1; transform: none; }
.js [data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-figure { max-width: 440px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .g-wide { grid-column: span 2; }
  .about-grid { grid-template-columns: 1fr; }
  .about-figure { max-width: 460px; aspect-ratio: 16 / 11; }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 320px); flex-direction: column; gap: 4px;
    background: var(--cream); padding: 92px 22px 30px; margin: 0;
    box-shadow: -20px 0 50px -20px rgba(20,45,30,.4);
    transform: translateX(100%); transition: transform .4s var(--ease); z-index: 90;
  }
  .nav.open { transform: translateX(0); }
  .nav a { padding: 13px 12px; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav a::after { display: none; }
  .nav-toggle { display: block; z-index: 110; }
  .header-phone, .header-cta { display: none; }
  .header-actions { margin-left: auto; }

  .hero { padding-top: 120px; }
  .hero-float { right: 8px; top: 12px; }
  .hero-trust { gap: 10px 18px; }

  .section-head-row { flex-direction: column; align-items: flex-start; }
  .service-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 230px; }
  .g-tall, .g-wide { grid-column: span 1; grid-row: span 1; }
  .review-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .stat { padding: 16px 8px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
  .stats { grid-template-columns: 1fr; }
}

/* ===================================================================
   REDUCED MOTION
   =================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal], [data-load] { opacity: 1 !important; transform: none !important; }
  .hero-stripes, .marquee-track, .hero-float { animation: none !important; }
}
