/* ==========================================================================
   AJ Garden Services — production stylesheet
   Built from the brand design system (tokens/ + components/).
   Charcoal ground, white text, orange accent, gold gradient highlights.
   ========================================================================== */

/* --- Tokens ------------------------------------------------------------- */
:root {
  /* Charcoal scale */
  --charcoal-950: #0A0A0A;
  --charcoal-900: #0E0E0E;
  --charcoal-850: #141414;
  --charcoal-800: #1A1A1A;
  --charcoal-700: #232323;
  --charcoal-600: #2E2E2E;

  /* Brand accents */
  --orange-600: #D98C0B;
  --orange-500: #F5A21B;
  --orange-400: #FFB53A;
  --gold-500: #FFC93C;
  --gold-400: #FFD966;

  /* Neutrals + status */
  --white: #FFFFFF;
  --ink-on-accent: #141005;
  --green-500: #4DA34D;
  --red-500: #E5484D;

  /* Surfaces */
  --surface-page: var(--charcoal-900);
  --surface-card: var(--charcoal-800);
  --surface-raised: var(--charcoal-700);
  --surface-header: rgba(14, 14, 14, 0.92);

  /* Text */
  --text-1: var(--white);
  --text-2: rgba(255, 255, 255, 0.78);
  --text-3: rgba(255, 255, 255, 0.55);
  --text-accent: var(--orange-500);

  /* Lines */
  --line-1: rgba(255, 255, 255, 0.10);
  --line-2: rgba(255, 255, 255, 0.18);
  --line-accent: rgba(245, 162, 27, 0.45);

  /* Accent states */
  --accent: var(--orange-500);
  --accent-hover: var(--orange-400);
  --accent-active: var(--orange-600);
  --accent-soft: rgba(245, 162, 27, 0.12);

  --focus-ring: 0 0 0 2px var(--charcoal-900), 0 0 0 4px var(--orange-500);

  /* Type */
  --font-display: "Archivo Black", "Arial Black", sans-serif;
  --font-body: "Poppins", "Segoe UI", sans-serif;
  --font-script: "Yellowtail", cursive;
  --text-hero: 56px;
  --text-h1: 44px;
  --text-h2: 32px;
  --text-h3: 22px;
  --text-lead: 19px;
  --text-body: 16px;
  --text-small: 14px;
  --text-caption: 12.5px;
  --text-script: 30px;
  --leading-tight: 1.1;
  --leading-heading: 1.15;
  --leading-body: 1.65;
  --tracking-caps: 0.08em;

  /* Spacing + layout */
  --space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px;
  --space-5: 24px; --space-6: 32px; --space-7: 48px; --space-8: 64px; --space-9: 96px;
  --container-max: 1140px;
  --container-pad: 20px;
  --header-h: 72px;

  /* Radii, shadows, gradients, motion */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.45);
  --shadow-pop: 0 12px 40px rgba(0, 0, 0, 0.55);
  --shadow-glow-accent: 0 6px 24px rgba(245, 162, 27, 0.28);
  --grad-gold: linear-gradient(100deg, #FFD966 0%, #FFC93C 40%, #F5A21B 100%);
  --grad-gold-soft: linear-gradient(100deg, rgba(255, 217, 102, 0.16), rgba(245, 162, 27, 0.16));
  --ease-out: cubic-bezier(0.2, 0.7, 0.3, 1);
  --dur-fast: 140ms;
  --dur-med: 220ms;
}

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

body {
  margin: 0;
  background-color: var(--surface-page);
  background-image: url(/assets/texture-charcoal.png);
  background-repeat: repeat;
  background-size: 440px auto;
  color: var(--text-1);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--leading-body);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

[hidden] { display: none !important; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

::selection { background: rgba(245, 162, 27, 0.35); }
::placeholder { color: var(--text-3); opacity: 1; }

:focus-visible { outline: none; box-shadow: var(--focus-ring); }

.aj-mobile-only { display: none; }

.ic { stroke: currentColor; flex: none; }

/* Stacks (flex-column content rhythm used across sections) */
.stack { display: flex; flex-direction: column; }
.stack-10 { gap: 10px; } .stack-12 { gap: 12px; } .stack-14 { gap: 14px; }
.stack-16 { gap: 16px; } .stack-18 { gap: 18px; } .stack-20 { gap: 20px; }
.stack-22 { gap: 22px; } .stack-24 { gap: 24px; } .stack-28 { gap: 28px; }
.stack-32 { gap: 32px; }
.align-start { align-items: flex-start; }

/* --- Sections ------------------------------------------------------------ */
.section-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 72px var(--container-pad);
}

.section--tint {
  background: var(--charcoal-850);
  border-top: 1px solid var(--line-1);
  border-bottom: 1px solid var(--line-1);
}

/* Golden dividers */
.rule {
  height: 5px; width: 72px; border-radius: 3px;
  background: var(--grad-gold);
}
.rule--90 { width: 90px; }
.ribbon {
  height: 10px;
  background: var(--grad-gold);
  transform: skewY(-1.6deg);
  margin: -5px 0;
  position: relative;
  z-index: 1;
}

/* --- Section heading ------------------------------------------------------ */
.sh { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.sh-script {
  font-family: var(--font-script);
  font-size: var(--text-script);
  color: var(--gold-500);
  transform: rotate(-2deg);
  line-height: 1;
}
.sh-kicker {
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--orange-500);
}
.sh-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, var(--text-h2));
  line-height: var(--leading-heading);
  color: var(--text-1);
  margin: 0;
}
.sh-title--hero { font-size: clamp(34px, 5vw, var(--text-hero)); }
.hl {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sh-lead {
  margin: 4px 0 0;
  font-size: var(--text-lead);
  line-height: 1.6;
  color: var(--text-2);
  max-width: 62ch;
}

.body-copy { margin: 0; color: var(--text-2); line-height: 1.7; }

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: var(--radius-pill);
  padding: 13px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  background: var(--accent);
  color: var(--ink-on-accent);
  transition: background var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              filter var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}
.btn:hover { background: var(--accent-hover); color: var(--ink-on-accent); box-shadow: var(--shadow-glow-accent); }
.btn:active { background: var(--accent-active); color: var(--ink-on-accent); transform: scale(0.97); }

.btn--sm { padding: 9px 18px; font-size: 13.5px; }
.btn--lg { padding: 16px 30px; font-size: 16.5px; }

.btn--gold { background: var(--grad-gold); }
.btn--gold:hover { background: var(--grad-gold); filter: brightness(1.06); }
.btn--gold:active { background: var(--grad-gold); filter: none; }

.btn--secondary { background: transparent; color: var(--text-1); border-color: var(--line-2); }
.btn--secondary:hover { background: rgba(255, 255, 255, 0.06); color: var(--text-1); border-color: var(--line-accent); box-shadow: none; }
.btn--secondary:active { background: rgba(255, 255, 255, 0.06); color: var(--text-1); }

.btn--ghost { background: transparent; color: var(--orange-500); }
.btn--ghost:hover { background: var(--accent-soft); color: var(--orange-500); box-shadow: none; }
.btn--ghost:active { background: var(--accent-soft); color: var(--orange-500); }

/* --- Badge (trust chip) ---------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.3;
  white-space: nowrap;
  background: var(--surface-card);
  border: 1px solid var(--line-2);
  color: var(--text-1);
}
.badge::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange-500);
  flex: none;
}

.trustbar { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

/* --- Cards ------------------------------------------------------------------ */
.card {
  display: block;
  background: var(--surface-card);
  border: 1px solid var(--line-1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 24px;
  color: inherit;
  text-decoration: none;
}
a.card, .card--hover {
  transition: border-color var(--dur-med) var(--ease-out),
              transform var(--dur-med) var(--ease-out),
              box-shadow var(--dur-med) var(--ease-out);
}
a.card:hover, .card--hover:hover {
  border-color: var(--line-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-pop);
  color: inherit;
}
.card--accent { background: var(--accent-soft); border-color: var(--line-accent); }

/* --- Tick lists (signature motif) ------------------------------------------- */
.ticks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px 28px;
}
.ticks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-1);
  line-height: 1.45;
}
.ticks svg { flex: none; margin-top: 3px; stroke: var(--orange-500); }

/* --- Header ------------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--surface-header);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-1);
}
.site-header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex: none; }
.brand img { display: block; }
.brand-name { font-family: var(--font-display); font-size: 16px; line-height: 1.1; color: var(--text-1); }
.site-nav { display: flex; gap: 4px; margin-left: auto; align-items: center; }
.site-nav a {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text-2);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
}
.site-nav a:hover { color: var(--text-1); }
.site-nav a.active { color: var(--orange-500); }
.header-call { flex: none; }
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  flex: none;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--text-1);
  cursor: pointer;
}

/* --- Photos / gallery ---------------------------------------------------------- */
.photo {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-card);
  width: 100%;
  object-fit: cover;
  display: block;
}
.ratio-45 { aspect-ratio: 4 / 5; }
.ratio-43 { aspect-ratio: 4 / 3; }
.ratio-34 { aspect-ratio: 3 / 4; }
.tilt-l { transform: rotate(-1.4deg); }
.tilt-r { transform: rotate(1.2deg); }
.tilt-1 { transform: rotate(1deg); }

.gallery-ph {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-card);
  background: repeating-linear-gradient(45deg, var(--charcoal-850), var(--charcoal-850) 12px, var(--charcoal-800) 12px, var(--charcoal-800) 24px);
  display: flex;
  align-items: flex-end;
}
.gallery-ph span {
  margin: 14px;
  font-weight: 600;
  font-size: 12.5px;
  color: var(--text-3);
  background: var(--charcoal-900);
  border: 1px solid var(--line-1);
  border-radius: var(--radius-pill);
  padding: 6px 12px;
}

/* --- Page grids ------------------------------------------------------------------ */
.hero-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 48px; align-items: center; }
.hero-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start; }
.hero-photos .offset { margin-top: 22px; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.towns { display: flex; gap: 10px; flex-wrap: wrap; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.service-hero { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start; }

#services { scroll-margin-top: calc(var(--header-h) + 16px); }

/* --- Service cards ------------------------------------------------------------------ */
.service-card { padding: 22px; }
.service-card .inner { display: flex; flex-direction: column; gap: 10px; }
.service-card svg.tick-lg { stroke: var(--orange-500); }
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.25;
  color: var(--text-1);
  margin: 0;
}
.service-card p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--text-2); }
.service-card .learn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--orange-500);
  margin-top: 2px;
}

/* --- Breadcrumb ------------------------------------------------------------------ */
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13.5px;
  color: var(--text-3);
  margin-bottom: 26px;
}
.breadcrumb a { color: var(--text-3); }
.breadcrumb a:hover { color: var(--text-1); }
.breadcrumb .current { color: var(--orange-500); font-weight: 600; }

/* --- FAQ ------------------------------------------------------------------ */
.faq-item { border-bottom: 1px solid var(--line-1); }
.faq-q {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: 0;
  padding: 18px 2px;
  cursor: pointer;
  text-align: left;
  color: inherit;
  font-family: var(--font-body);
}
.faq-q .q { font-weight: 600; font-size: 16.5px; color: var(--text-1); line-height: 1.4; }
.faq-q .chev {
  color: var(--orange-500);
  display: inline-flex;
  transition: transform var(--dur-med) var(--ease-out);
}
.faq-q[aria-expanded="true"] .chev { transform: rotate(180deg); }
.faq-a {
  margin: 0 0 18px;
  padding: 0 2px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-2);
  max-width: 70ch;
}

/* --- Testimonials ------------------------------------------------------------------ */
.testimonial .inner { display: flex; flex-direction: column; gap: 14px; }
.t-mark {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 0.6;
  color: var(--orange-500);
  margin-top: 8px;
}
.t-text { margin: 0; font-size: 15px; line-height: 1.7; color: var(--text-2); }
.t-foot { display: flex; align-items: center; gap: 10px; border-top: 1px solid var(--line-1); padding-top: 14px; }
.t-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--charcoal-700);
  border: 1px solid var(--line-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--orange-500);
  flex: none;
}
.t-who { display: flex; flex-direction: column; }
.t-name { font-weight: 600; font-size: 14px; color: var(--text-1); }
.t-loc { font-size: 12.5px; color: var(--text-3); }

/* --- Area cards ------------------------------------------------------------------ */
.area-card { padding: 22px; }
.area-card .inner { display: flex; flex-direction: column; gap: 10px; }
.area-town { display: inline-flex; align-items: center; gap: 8px; color: var(--orange-500); }
.area-town b { font-family: var(--font-display); font-weight: 400; font-size: 17px; color: var(--text-1); }
.area-card p { margin: 0; font-size: 14px; line-height: 1.65; color: var(--text-2); }

/* --- Forms ------------------------------------------------------------------ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-weight: 600; font-size: 14px; color: var(--text-1); }
.field .req { color: var(--orange-500); }
.field .hint { font-size: 12.5px; color: var(--text-3); }
.control {
  width: 100%;
  background: var(--charcoal-850);
  border: 1.5px solid var(--line-2);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-1);
  outline: none;
  transition: border-color var(--dur-fast) var(--ease-out);
}
.control:focus { border-color: var(--orange-500); box-shadow: none; }
textarea.control { resize: vertical; min-height: 90px; }
.select { position: relative; }
.select select { appearance: none; -webkit-appearance: none; padding-right: 40px; cursor: pointer; }
.select select option { background: #1A1A1A; color: var(--text-1); }
.select .chev {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  stroke: var(--orange-500);
}

.form-error { margin: 0; font-size: 14px; color: var(--red-500); }

.contact-tel {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  text-decoration: none;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.contact-email { font-weight: 600; font-size: 17px; color: var(--accent); margin-top: -8px; }
.socials-list { display: flex; flex-direction: column; gap: 10px; }
.socials-list a { display: inline-flex; align-items: center; gap: 8px; color: var(--text-2); font-size: 14px; }
.socials-list a:hover { color: var(--orange-500); }

/* --- CTA band ------------------------------------------------------------------ */
.cta-band {
  background: var(--charcoal-850);
  border-top: 1px solid var(--line-1);
  border-bottom: 1px solid var(--line-1);
  padding: 64px var(--container-pad);
  text-align: center;
}
.cta-band .inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 3.6vw, 38px);
  color: var(--text-1);
  margin: 0;
}
.cta-tel {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.4vw, 54px);
  line-height: 1.1;
  text-decoration: none;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-band p { margin: 0; font-size: 15.5px; line-height: 1.65; color: var(--text-2); max-width: 52ch; }

/* --- Footer ------------------------------------------------------------------ */
.site-footer { border-top: 1px solid var(--line-1); background: var(--charcoal-950); }
.footer-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 56px var(--container-pad) 28px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-lockup { display: flex; align-items: center; gap: 12px; }
.footer-name { font-family: var(--font-display); font-size: 17px; line-height: 1.15; color: var(--text-1); }
.footer-blurb { margin: 0; font-size: 14px; line-height: 1.65; color: var(--text-2); max-width: 36ch; }
.footer-tel { font-family: var(--font-display); font-size: 20px; color: var(--orange-500); text-decoration: none; }
.footer-tel:hover { color: var(--accent-hover); }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  color: var(--text-1);
}
.social-btn:hover { color: var(--orange-500); border-color: var(--line-accent); }
.footer-col { display: flex; flex-direction: column; gap: 9px; }
.footer-h {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 4px;
}
.footer-col a { font-size: 14px; color: var(--text-2); }
.footer-col a:hover { color: var(--orange-500); }
.footer-note { font-size: 14px; color: var(--text-3); }
.footer-bottom { border-top: 1px solid var(--line-1); }
.footer-bottom-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 16px var(--container-pad);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 12.5px;
  color: var(--text-3);
  flex-wrap: wrap;
}

/* --- Sticky call bar (mobile) ------------------------------------------------- */
.call-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px calc(15px + env(safe-area-inset-bottom));
  background: var(--grad-gold);
  color: var(--ink-on-accent);
  font-weight: 700;
  font-size: 16.5px;
  text-decoration: none;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.5);
}
.call-bar:hover { color: var(--ink-on-accent); }

/* --- 404 ------------------------------------------------------------------ */
.notfound { text-align: center; align-items: center; }
.notfound .sh { align-items: center; text-align: center; }

/* --- Responsive ------------------------------------------------------------- */
@media (max-width: 1020px) {
  .services-grid, .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-grid, .split, .faq-grid, .contact-grid, .service-hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .service-hero .photo, .service-hero .gallery-ph { max-width: 460px; }

  .site-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--charcoal-900);
    border-bottom: 1px solid var(--line-1);
    padding: 10px var(--container-pad) 16px;
    gap: 2px;
    margin: 0;
  }
  .site-nav.open a { padding: 12px; }
}

@media (max-width: 720px) {
  .aj-mobile-only { display: block; }
  body { padding-bottom: 84px; }
  .section-inner { padding: 56px var(--container-pad); }
}

@media (max-width: 640px) {
  .services-grid, .areas-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .site-header-inner { gap: 14px; }
}

@media (max-width: 420px) {
  .header-call { display: none; }
  .call-bar { font-size: 14.5px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation: none !important; }
}
