/* =====================================================================
   Alabama Landscaping Services, L.L.C. — Global Stylesheet
   Clean, responsive design system (no frameworks)
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. CSS Variables (Design Tokens)
   --------------------------------------------------------------------- */
:root {
  /* Brand colors */
  --forest-green: #1F4D36;   /* Deep Forest Green */
  --lawn-green:   #4F8F45;   /* Fresh Lawn Green */
  --beige:        #F4EFE6;   /* Warm Beige */
  --earth-brown:  #8B6F47;   /* Earth Brown */
  --charcoal:     #1E1E1E;   /* Charcoal Text */
  --white:        #FFFFFF;

  /* Functional colors */
  --text:         #1E1E1E;
  --text-muted:   #56625A;
  --bg:           #FFFFFF;
  --bg-soft:      #F4EFE6;
  --border:       #E2DBCB;
  --green-tint:   #EAF1E7;

  /* Typography */
  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Spacing & layout */
  --container: 1180px;
  --radius:    16px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(31, 77, 54, 0.06);
  --shadow:    0 10px 30px rgba(31, 77, 54, 0.10);
  --shadow-lg: 0 20px 50px rgba(31, 77, 54, 0.16);
  --transition: 0.25s ease;
}

/* ---------------------------------------------------------------------
   2. Reset & Base
   --------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 1.05rem;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--lawn-green);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--forest-green);
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--forest-green);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }

p { margin-bottom: 1rem; }

/* Focus visibility for accessibility */
:focus-visible {
  outline: 3px solid var(--lawn-green);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------------------------------------------------------------------
   3. Layout Helpers
   --------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--soft {
  background: var(--bg-soft);
}

.section--green {
  background: var(--forest-green);
  color: var(--white);
}

.section--green h2,
.section--green h3 {
  color: var(--white);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-head .eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lawn-green);
  margin-bottom: 0.75rem;
}

.section-head p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.section--green .section-head p {
  color: rgba(255, 255, 255, 0.85);
}

.text-center { text-align: center; }

/* ---------------------------------------------------------------------
   4. Buttons (reusable)
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition),
              color var(--transition), box-shadow var(--transition),
              border-color var(--transition);
  text-align: center;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--lawn-green);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--forest-green);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}
.btn--secondary:hover {
  background: var(--white);
  color: var(--forest-green);
}

/* Outline button on light backgrounds */
.btn--outline {
  background: transparent;
  color: var(--forest-green);
  border-color: var(--forest-green);
}
.btn--outline:hover {
  background: var(--forest-green);
  color: var(--white);
}

.btn--light {
  background: var(--white);
  color: var(--forest-green);
}
.btn--light:hover {
  background: var(--beige);
  color: var(--forest-green);
}

.btn--block { width: 100%; }

/* ---------------------------------------------------------------------
   5. Header & Navigation (sticky)
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-head);
  color: var(--forest-green);
  font-weight: 700;
  line-height: 1.1;
}

.brand:hover { color: var(--forest-green); }

.brand__mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-tint);
  font-size: 1.4rem;
}

.brand__name {
  font-size: 1.15rem;
}
.brand__name small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lawn-green);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav__link {
  display: inline-block;
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-pill);
  font-weight: 500;
  color: var(--text);
}

.nav__link:hover {
  background: var(--green-tint);
  color: var(--forest-green);
}

.nav__link.is-active {
  background: var(--forest-green);
  color: var(--white);
}

.nav__cta { margin-left: 0.5rem; }

/* Hamburger toggle (hidden on desktop) */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--forest-green);
  transition: transform var(--transition), opacity var(--transition);
}

.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);
}

/* ---------------------------------------------------------------------
   6. Hero Sections
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(rgba(15, 40, 27, 0.72), rgba(15, 40, 27, 0.72)),
    url("https://images.unsplash.com/photo-1558904541-efa843a96f01?auto=format&fit=crop&w=1600&q=80")
      center / cover no-repeat;
}

.hero__inner {
  max-width: 760px;
  padding: 7rem 0;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero__subtext {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2rem;
  max-width: 620px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Smaller page hero used on inner pages */
.page-hero {
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(rgba(15, 40, 27, 0.78), rgba(15, 40, 27, 0.78)),
    url("https://images.unsplash.com/photo-1416879595882-3373a0480b5b?auto=format&fit=crop&w=1600&q=80")
      center / cover no-repeat;
}

.page-hero__inner {
  padding: 5rem 0;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.breadcrumb {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--white); }

/* ---------------------------------------------------------------------
   7. Cards (reusable) & Grids
   --------------------------------------------------------------------- */
.grid {
  display: grid;
  gap: 1.75rem;
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition),
              border-color var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--lawn-green);
}

.card__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--green-tint);
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

.card h3 {
  margin-bottom: 0.6rem;
}

.card p {
  color: var(--text-muted);
}

.card__meta {
  margin-top: auto;
  padding-top: 1rem;
}

.card__tag {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--earth-brown);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.card__link {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.card__link::after {
  content: "→";
  transition: transform var(--transition);
}
.card__link:hover::after {
  transform: translateX(4px);
}

/* Trust highlight strip */
.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: -3.5rem;
  position: relative;
  z-index: 5;
}

.trust__item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust__icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-tint);
  font-size: 1.4rem;
}

.trust__item strong {
  display: block;
  color: var(--forest-green);
  font-family: var(--font-head);
  font-size: 1.1rem;
}
.trust__item span {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ---------------------------------------------------------------------
   8. Feature / split content rows
   --------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 360px;
  background-size: cover;
  background-position: center;
}

.feature-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.feature-list .check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--lawn-green);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 2px;
}

.feature-list strong { color: var(--forest-green); }

/* ---------------------------------------------------------------------
   9. Why choose us / stat blocks
   --------------------------------------------------------------------- */
.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
}
.value-card .card__icon {
  margin-left: auto;
  margin-right: auto;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: var(--lawn-green);
}
.section--green .stat strong { color: var(--beige); }
.stat span { color: var(--text-muted); }
.section--green .stat span { color: rgba(255,255,255,0.85); }

/* ---------------------------------------------------------------------
   10. Gallery
   --------------------------------------------------------------------- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover {
  border-color: var(--lawn-green);
  color: var(--forest-green);
}

.filter-btn.is-active {
  background: var(--forest-green);
  border-color: var(--forest-green);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  color: var(--white);
  background: linear-gradient(to top, rgba(15, 40, 27, 0.85), rgba(15, 40, 27, 0) 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item__overlay,
.gallery-item:focus-within .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__overlay strong {
  font-family: var(--font-head);
  font-size: 1.1rem;
}
.gallery-item__overlay span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

.gallery-item.is-hidden {
  display: none;
}

/* Before/after preview cards on home page */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.ba-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  position: relative;
}
.ba-item span {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem;
  color: var(--white);
  font-weight: 600;
  background: linear-gradient(to top, rgba(15,40,27,0.8), transparent);
}

/* ---------------------------------------------------------------------
   11. CTA band
   --------------------------------------------------------------------- */
.cta-band {
  background:
    linear-gradient(rgba(31, 77, 54, 0.92), rgba(31, 77, 54, 0.92)),
    url("https://images.unsplash.com/photo-1585320806297-9794b3e4eeae?auto=format&fit=crop&w=1600&q=80")
      center / cover no-repeat;
  color: var(--white);
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p {
  max-width: 620px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ---------------------------------------------------------------------
   12. Forms
   --------------------------------------------------------------------- */
.form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--forest-green);
}

.form-group .req { color: #c0392b; }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition),
              background var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--lawn-green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(79, 143, 69, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

/* Validation states */
.form-group .error-msg {
  color: #c0392b;
  font-size: 0.82rem;
  min-height: 1rem;
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
  border-color: #c0392b;
  background: #fdf3f2;
}

/* Success message */
.form-success {
  display: none;
  align-items: flex-start;
  gap: 0.85rem;
  background: var(--green-tint);
  border: 1px solid var(--lawn-green);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--forest-green);
}
.form-success.is-visible { display: flex; }
.form-success strong { display: block; }
.form-success .icon { font-size: 1.4rem; line-height: 1; }

/* ---------------------------------------------------------------------
   13. Contact info & FAQ
   --------------------------------------------------------------------- */
.contact-cards {
  display: grid;
  gap: 1.25rem;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}
.contact-card .card__icon { margin-bottom: 0; }
.contact-card strong {
  display: block;
  color: var(--forest-green);
  font-family: var(--font-head);
}
.contact-card a, .contact-card span { color: var(--text-muted); }
.contact-card a:hover { color: var(--lawn-green); }

.map-embed {
  border: 0;
  width: 100%;
  height: 380px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.faq {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  color: var(--forest-green);
  font-family: var(--font-head);
  font-size: 1.1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--lawn-green);
  transition: transform var(--transition);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item .faq-body {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
}

/* ---------------------------------------------------------------------
   14. Footer
   --------------------------------------------------------------------- */
.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.78);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.site-footer h4 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.site-footer .brand { color: var(--white); margin-bottom: 1rem; }
.site-footer .brand__name { color: var(--white); }
.site-footer .brand__mark { background: rgba(255,255,255,0.1); }

.footer-about p { color: rgba(255,255,255,0.7); }

.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: rgba(255, 255, 255, 0.75); }
.footer-links a:hover { color: var(--lawn-green); }

.footer-contact li {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  align-items: flex-start;
}
.footer-contact a { color: rgba(255,255,255,0.85); }
.footer-contact a:hover { color: var(--lawn-green); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------------------------------------------------------------------
   15. Utilities & animation
   --------------------------------------------------------------------- */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.lead { font-size: 1.2rem; color: var(--text-muted); }

/* Fade-in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---------------------------------------------------------------------
   16. Responsive — Tablet
   --------------------------------------------------------------------- */
@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .ba-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split__media { min-height: 280px; }

  /* Mobile nav */
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 1rem 1.5rem 1.5rem;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .nav__menu.is-open { transform: translateY(0); }
  .nav__link { padding: 0.85rem 1rem; }
  .nav__cta { margin: 0.5rem 0 0; }
  .nav__cta .btn { width: 100%; }
}

/* ---------------------------------------------------------------------
   17. Responsive — Mobile
   --------------------------------------------------------------------- */
@media (max-width: 600px) {
  body { font-size: 1rem; }
  .section { padding: 3.5rem 0; }
  .grid--2,
  .grid--3,
  .grid--4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr; margin-top: 1.5rem; }
  .stats { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero__inner { padding: 4.5rem 0; }
  .hero__actions .btn,
  .cta-band__actions .btn { width: 100%; }
  .form-wrap { padding: 1.5rem; }
  .brand__name small { display: none; }
}
