/* =========================================================
   Straightline Contracting — stylesheet
   Mobile-first. Built for phone visitors first, desktop second.
   ========================================================= */

:root {
  --green-900: #0F2B0F;
  --green-800: #1A3D1A;
  --green-700: #2E5D2E;
  --green-500: #4A8B3C;
  --green-400: #8BC34A;
  --green-50:  #EEF4E6;

  --ink:       #141A14;
  --ink-soft:  #3A4238;
  --muted:     #6B7368;
  --line:      #D9DCD1;

  --cream:     #FAF7F0;
  --paper:     #FFFFFF;
  --sand:      #F1EDE0;

  --font-display: "Archivo Black", "Archivo", system-ui, -apple-system, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-serif:   "Lora", Georgia, "Times New Roman", serif;

  --radius: 4px;
  --radius-lg: 12px;

  --shadow-lift: 0 10px 30px rgba(15, 43, 15, 0.18);
  --shadow-card: 0 2px 10px rgba(15, 43, 15, 0.08);

  --container: 1180px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
img { height: auto; }
a { color: var(--green-800); text-decoration: none; }
a:hover { color: var(--green-500); }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 900; line-height: 1.05; letter-spacing: -0.01em; color: var(--green-900); margin: 0; text-transform: uppercase; }
p { margin: 0 0 1em; }

/* keep everything inside the viewport on mobile */
.wrap { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  cursor: pointer;
  text-align: center;
}
.btn-primary {
  background: var(--green-400);
  color: var(--green-900);
  border-color: var(--green-400);
}
.btn-primary:hover { background: #a1d85d; border-color: #a1d85d; color: var(--green-900); transform: translateY(-1px); }
.btn-dark {
  background: var(--green-800);
  color: #fff;
  border-color: var(--green-800);
}
.btn-dark:hover { background: var(--green-900); border-color: var(--green-900); color: #fff; }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--green-900);
  color: #fff;
  border-bottom: 3px solid var(--green-400);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; min-height: 44px; }
.brand-badge {
  width: 42px; height: 42px;
  background: var(--green-700);
  border: 2px solid var(--green-400);
  border-radius: 4px 4px 18px 4px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.brand-badge::after {
  content: "";
  position: absolute;
  bottom: -2px; left: -2px; right: -2px;
  height: 6px;
  background: var(--green-400);
  clip-path: polygon(0 100%, 6% 20%, 12% 100%, 18% 40%, 25% 100%, 32% 30%, 40% 100%, 48% 50%, 56% 100%, 64% 25%, 72% 100%, 80% 45%, 88% 100%, 94% 35%, 100% 100%);
  border-radius: 0 0 16px 0;
}
.brand-badge svg { width: 22px; height: 22px; color: var(--green-400); }
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-word .w1 {
  font-family: var(--font-display);
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.brand-word .w2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--green-400);
  margin-top: 2px;
  letter-spacing: 0.01em;
}

/* nav */
.nav-toggle {
  display: flex;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-links { display: none; }

.nav-drawer {
  position: fixed;
  inset: 68px 0 0 0;
  background: var(--green-900);
  padding: 24px 20px 40px;
  z-index: 40;
  transform: translateY(-110%);
  transition: transform .25s ease;
  overflow-y: auto;
}
.nav-drawer.open { transform: translateY(0); }
.nav-drawer ul { list-style: none; margin: 0; padding: 0; }
.nav-drawer li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav-drawer a {
  display: block;
  padding: 18px 4px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  min-height: 56px;
}
.nav-drawer a:hover, .nav-drawer a.active { color: var(--green-400); }
.nav-drawer .drawer-cta { margin-top: 22px; display: block; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 620px;
  background: var(--green-900);
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,43,15,0.55) 0%, rgba(15,43,15,0.25) 35%, rgba(15,43,15,0.92) 100%);
}
.hero .wrap {
  position: relative;
  z-index: 2;
  padding-top: 48px;
  padding-bottom: 40px;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-400);
  padding: 6px 12px;
  border: 1.5px solid var(--green-400);
  border-radius: 50px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(38px, 9vw, 72px);
  color: #fff;
  line-height: 0.95;
  margin-bottom: 16px;
  max-width: 14ch;
}
.hero h1 em {
  font-style: normal;
  color: var(--green-400);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 0.85em;
  letter-spacing: 0;
  text-transform: none;
}
.hero .sub {
  font-size: 17px;
  line-height: 1.5;
  max-width: 32ch;
  color: rgba(255,255,255,0.88);
  margin-bottom: 28px;
}
.hero-actions { display: flex; flex-direction: column; gap: 12px; }
.hero-actions .btn { width: 100%; }
.hero-meta {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.hero-meta span { display: flex; align-items: center; gap: 8px; }
.hero-meta svg { width: 16px; height: 16px; color: var(--green-400); }

/* ---------- section base ---------- */
section { padding: 64px 0; }
.section-head { margin-bottom: 36px; max-width: 640px; }
.section-head .kicker {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-head .kicker::before {
  content: ""; width: 28px; height: 2px; background: var(--green-400);
}
.section-head h2 { font-size: clamp(30px, 6vw, 48px); line-height: 1; margin-bottom: 14px; }
.section-head .lede { font-size: 17px; color: var(--ink-soft); max-width: 48ch; }

/* ---------- promise strip ---------- */
.promise {
  background: var(--green-900);
  color: #fff;
  padding: 36px 0;
  position: relative;
  overflow: hidden;
}
.promise::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--green-400) 0 12px, transparent 12px 20px);
}
.promise-grid {
  display: grid;
  gap: 26px;
}
.promise-item { display: flex; gap: 14px; align-items: flex-start; }
.promise-item .num {
  font-family: var(--font-display);
  color: var(--green-400);
  font-size: 22px;
  line-height: 1;
  padding-top: 2px;
  flex-shrink: 0;
  min-width: 32px;
}
.promise-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: #fff;
}
.promise-item strong { display: block; font-family: var(--font-display); text-transform: uppercase; color: #fff; font-size: 15px; letter-spacing: 0.02em; margin-bottom: 4px; }

/* ---------- services grid ---------- */
.services-grid {
  display: grid;
  gap: 18px;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); border-color: var(--green-400); }
.service-card .thumb {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  position: relative;
}
.service-card .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,43,15,0.35) 100%);
}
.service-card .body { padding: 22px 22px 24px; }
.service-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--green-900);
}
.service-card p { font-size: 15px; color: var(--ink-soft); margin: 0; }
.service-card.featured { grid-column: 1 / -1; }
.service-card.featured .thumb { aspect-ratio: 16 / 9; }

/* ---------- split block ---------- */
.split {
  background: var(--sand);
}
.split-grid { display: grid; gap: 32px; }
.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-card);
}
.split-body h2 { font-size: clamp(28px, 6vw, 44px); margin-bottom: 16px; }
.split-body p { font-size: 16px; color: var(--ink-soft); }
.split-body ul {
  list-style: none; padding: 0; margin: 20px 0 28px;
}
.split-body li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 15px;
}
.split-body li::before {
  content: ""; width: 10px; height: 10px;
  background: var(--green-400);
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 7px;
}

/* ---------- area strip ---------- */
.area {
  background: var(--green-50);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.area-grid { display: grid; gap: 28px; }
.area h2 { font-size: clamp(28px, 6vw, 40px); margin-bottom: 12px; }
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.area-tag {
  background: var(--paper);
  border: 1px solid var(--green-400);
  color: var(--green-800);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 50px;
}

/* ---------- quote block ---------- */
.owner-say {
  background: var(--paper);
  padding: 56px 0 64px;
  border-top: 1px solid var(--line);
}
.owner-card {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 0 8px;
}
.owner-card .mark {
  font-family: var(--font-display);
  color: var(--green-400);
  font-size: 72px;
  line-height: 0.5;
  display: block;
  margin-bottom: 10px;
}
.owner-card blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 4.5vw, 30px);
  line-height: 1.35;
  color: var(--green-900);
  margin: 0 0 20px;
}
.owner-card cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: var(--green-900);
  color: #fff;
  padding: 72px 0;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/img/environment.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.cta-band .wrap { position: relative; z-index: 2; text-align: center; }
.cta-band h2 {
  color: #fff;
  font-size: clamp(34px, 7vw, 58px);
  margin-bottom: 16px;
}
.cta-band .cta-lede {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 40ch;
  margin: 0 auto 30px;
}
.cta-actions { display: flex; flex-direction: column; gap: 12px; max-width: 340px; margin: 0 auto; }
.cta-actions .btn { width: 100%; }
.cta-phone {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(30px, 7vw, 44px);
  color: var(--green-400);
  margin: 6px 0 26px;
  letter-spacing: 0.01em;
}
.cta-phone:hover { color: var(--green-400); opacity: 0.85; }

/* ---------- footer ---------- */
.site-footer {
  background: #0A1A0A;
  color: rgba(255,255,255,0.7);
  padding: 54px 0 28px;
  font-size: 14px;
}
.footer-grid { display: grid; gap: 36px; margin-bottom: 40px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0; }
.footer-col a, .footer-col li {
  color: rgba(255,255,255,0.75);
  display: block;
  min-height: 44px;
  line-height: 44px;
  padding: 0;
}
.footer-col li { color: rgba(255,255,255,0.65); }
.footer-col a:hover { color: var(--green-400); }
.footer-about p { color: rgba(255,255,255,0.65); margin-top: 14px; line-height: 1.55; }
.footer-brand .brand-word .w1 { color: #fff; font-size: 20px; }
.footer-brand .brand-word .w2 { color: var(--green-400); font-size: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.footer-bottom > div { min-height: 44px; display: flex; align-items: center; }
.footer-bottom a {
  color: rgba(255,255,255,0.75);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 4px;
}

/* ---------- page header (for interior pages) ---------- */
.page-head {
  background: var(--green-900);
  color: #fff;
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}
.page-head.ph-services::before { background-image: url("../assets/img/overgrown-transform.jpg"); }
.page-head.ph-about::before    { background-image: url("../assets/img/property-bush.jpg"); }
.page-head.ph-contact::before  { background-image: url("../assets/img/farmhouse.jpg"); }
.page-head.ph-legal::before    { background-image: url("../assets/img/grass-detail.jpg"); }
.page-head .wrap { position: relative; z-index: 2; }
.page-head .eyebrow { margin-bottom: 14px; }
.page-head h1 {
  font-size: clamp(40px, 9vw, 76px);
  color: #fff;
  line-height: 0.95;
  max-width: 16ch;
  margin-bottom: 16px;
}
.page-head p {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  max-width: 50ch;
  margin: 0;
}

/* ---------- services full page ---------- */
.service-deep {
  display: grid;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.service-deep:last-child { border-bottom: 0; }
.service-deep h3 {
  font-size: 26px;
  color: var(--green-900);
  margin-bottom: 12px;
}
.service-deep p { font-size: 16px; color: var(--ink-soft); }
.service-deep .media {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-card);
}
.service-deep .meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 8px;
}
.service-deep .meta::before { content: ""; width: 20px; height: 2px; background: var(--green-400); }

/* ---------- about page ---------- */
.about-body {
  padding: 56px 0;
}
.about-body .content {
  max-width: 680px;
}
.about-body h2 {
  font-size: clamp(26px, 5vw, 36px);
  margin-top: 40px;
  margin-bottom: 14px;
}
.about-body h2:first-child { margin-top: 0; }
.about-body p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.about-body p.lead {
  font-size: 20px;
  color: var(--green-900);
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 28px;
}
.about-body .figure {
  margin: 36px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-card);
}

/* ---------- contact ---------- */
.contact-grid {
  display: grid;
  gap: 32px;
  padding: 56px 0;
}
.contact-info h2 { font-size: clamp(28px, 5vw, 38px); margin-bottom: 16px; }
.contact-info .lede { font-size: 17px; color: var(--ink-soft); margin-bottom: 28px; }
.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-card .icon {
  width: 44px; height: 44px;
  background: var(--green-50);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--green-800);
}
.contact-card .icon svg { width: 22px; height: 22px; }
.contact-card h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--green-700);
  margin: 0 0 6px;
}
.contact-card p { margin: 0; font-size: 17px; color: var(--ink); font-weight: 600; }
.contact-card a { color: var(--green-800); font-size: 17px; font-weight: 600; min-height: 24px; display: inline-block; }
.contact-card small { display: block; color: var(--muted); font-size: 13px; font-weight: 400; margin-top: 4px; }

.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow-card);
}
.contact-form h3 {
  font-size: 22px;
  margin-bottom: 6px;
  color: var(--green-900);
}
.contact-form .form-note {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 22px;
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  transition: border-color .15s ease, background .15s ease;
}
.field textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green-500);
  background: #fff;
}
.form-actions { margin-top: 6px; }
.form-actions .btn { width: 100%; }
.form-status {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  display: none;
}
.form-status.ok {
  display: block;
  background: var(--green-50);
  border: 1px solid var(--green-400);
  color: var(--green-800);
}
.form-status.err {
  display: block;
  background: #FBECEC;
  border: 1px solid #E29A9A;
  color: #7A2323;
}

/* ---------- legal page ---------- */
.legal-body {
  padding: 56px 0;
  max-width: 760px;
}
.legal-body h2 {
  font-size: 22px;
  margin-top: 32px;
  margin-bottom: 10px;
  color: var(--green-900);
}
.legal-body p, .legal-body li {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
}
.legal-body ul { padding-left: 20px; }

/* ---------- 404 ---------- */
.err-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 48px 0;
  background: var(--cream);
}
.err-wrap .inner { text-align: center; max-width: 520px; margin: 0 auto; }
.err-wrap h1 { font-size: clamp(64px, 18vw, 140px); color: var(--green-800); line-height: 1; margin-bottom: 10px; }
.err-wrap p { color: var(--ink-soft); font-size: 17px; margin-bottom: 24px; }

/* =========================================================
   Breakpoints
   ========================================================= */

/* tablet portrait */
@media (min-width: 640px) {
  .wrap { padding: 0 28px; }
  section { padding: 80px 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: row; }
  .hero-actions .btn { width: auto; flex: 1; }
  .promise-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 34px; }
  .cta-actions { flex-direction: row; max-width: 480px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
  .split-grid { grid-template-columns: 1fr 1fr; align-items: center; gap: 40px; }
  .area-grid { grid-template-columns: 1.2fr 1fr; align-items: center; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .service-deep { grid-template-columns: 1fr 1.2fr; align-items: center; gap: 40px; padding: 40px 0; }
  .service-deep.reverse .media { order: 2; }
}

/* tablet landscape / small laptop */
@media (min-width: 900px) {
  .site-header .wrap { height: 78px; }
  .brand-badge { width: 48px; height: 48px; }
  .brand-badge svg { width: 26px; height: 26px; }
  .brand-word .w1 { font-size: 22px; }
  .brand-word .w2 { font-size: 14px; }

  .nav-toggle { display: none; }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .nav-links a {
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    padding: 10px 16px;
    border-radius: 4px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    letter-spacing: 0.01em;
  }
  .nav-links a:hover { color: var(--green-400); }
  .nav-links a.active { color: var(--green-400); }
  .nav-links .nav-phone {
    background: var(--green-400);
    color: var(--green-900);
    margin-left: 8px;
    font-weight: 700;
  }
  .nav-links .nav-phone:hover { background: #a1d85d; color: var(--green-900); }
  .nav-drawer { display: none !important; }

  .hero { min-height: 680px; }
  .hero .wrap { padding-top: 80px; padding-bottom: 64px; }
  .hero h1 { font-size: 82px; max-width: 12ch; }
  .hero .sub { font-size: 19px; max-width: 38ch; }

  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .service-card.featured { grid-column: auto; }

  .promise-grid { grid-template-columns: repeat(4, 1fr); gap: 30px; }

  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }
}

/* large desktop polish */
@media (min-width: 1200px) {
  .hero h1 { font-size: 96px; }
  section { padding: 96px 0; }
}

/* safety: no page should ever scroll horizontally */
html, body { overflow-x: hidden; max-width: 100vw; }
