/* ═══════════════════════════════════════════════
   ORGANIC GREEN THUMB — Premium Stylesheet
   ═══════════════════════════════════════════════ */

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

:root {
  --green-deep:    #1a3a1a;
  --green-mid:     #2d5a27;
  --green-light:   #3a7d44;
  --green-pale:    #e8f5e9;
  --gold:          #c9a227;
  --gold-light:    #e8c050;
  --cream:         #f8f5f0;
  --dark:          #111a0f;
  --text-main:     #1e2d1a;
  --text-muted:    #6b7c69;
  --white:         #ffffff;
  --shadow-sm:     0 2px 12px rgba(0,0,0,.08);
  --shadow-md:     0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:     0 20px 60px rgba(0,0,0,.18);
  --radius:        12px;
  --radius-lg:     24px;
  --transition:    all .35s cubic-bezier(.4,0,.2,1);
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Lato', system-ui, sans-serif;
  --font-elegant:  'Cormorant Garamond', Georgia, serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ─── Utility ─── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section   { padding: 100px 0; }
.section--dark  { background: var(--green-deep); }
.section--cream { background: var(--cream); }

.section__header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section__eyebrow {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 12px;
}
.section__eyebrow--light { color: var(--gold); }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
}
.section__title--light { color: var(--white); }
.section__desc { margin-top: 18px; font-size: 1.05rem; color: var(--text-muted); }
.section__desc--light { color: rgba(255,255,255,.7); }

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,162,39,.35); }
.btn--green {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}
.btn--green:hover { background: var(--green-light); border-color: var(--green-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,90,39,.4); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline-white:hover { background: var(--white); color: var(--green-deep); }
.btn--full { width: 100%; text-align: center; }

/* ─── Reveal animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════ NAV ═══════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(26,58,26,.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 4px 32px rgba(0,0,0,.3);
}
.nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__logo-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
}
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s;
}
.nav__links a:hover { color: var(--gold); }
.nav__cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 10px 22px;
  border-radius: 50px;
}
.nav__cta:hover { background: var(--gold-light) !important; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--green-deep);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  font-weight: 600;
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg-img {
  position: absolute;
  inset: 0;
  background: url('images/lawn.png') center center / cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero__bg-img.zoomed { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5,20,5,.88) 0%,
    rgba(15,40,15,.78) 50%,
    rgba(5,20,5,.88) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
  padding-top: 80px;
}
.hero__eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp .8s .3s ease forwards;
  background: rgba(0,0,0,.25);
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.25);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .9s .5s ease forwards;
  text-shadow: 0 2px 12px rgba(0,0,0,.7);
}
.hero__title em {
  color: #f5d060;
  font-style: italic;
  text-shadow: 0 2px 6px rgba(0,0,0,.9), 0 0 30px rgba(0,0,0,.6);
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.95);
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp .9s .7s ease forwards;
  text-shadow: 0 1px 6px rgba(0,0,0,.7);
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s .9s ease forwards;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  animation: fadeIn 1.5s 1.5s ease forwards;
  opacity: 0;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 2s infinite;
}

/* ═══════════ TRUST BAR ═══════════ */
.trust-bar {
  background: var(--green-mid);
  padding: 48px 24px;
}
.trust-bar__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  text-align: center;
  padding: 8px 48px;
  flex: 1;
  min-width: 180px;
}
.trust-item span:first-child {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.trust-item > span:nth-child(2) {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
}
.trust-item p {
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-top: 4px;
}
.trust-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}

/* ═══════════ ABOUT ═══════════ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__images {
  position: relative;
}
.about__img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.about__img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.about__img-main:hover img { transform: scale(1.04); }
.about__img-accent {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 55%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 5px solid var(--white);
  aspect-ratio: 1;
}
.about__img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__badge {
  position: absolute;
  top: 30px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  min-width: 120px;
  border-left: 4px solid var(--green-mid);
}
.about__badge-icon { font-size: 1.8rem; }
.about__badge strong { font-size: .85rem; color: var(--text-main); font-weight: 700; }
.about__badge span { font-size: .72rem; color: var(--text-muted); }

.about__text { padding-bottom: 40px; }
.about__lead {
  font-family: var(--font-elegant);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-main);
  margin: 20px 0;
  line-height: 1.6;
}
.about__body { font-size: 1rem; color: var(--text-muted); margin-bottom: 32px; }
.about__features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.about__feature-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--green-pale);
  color: var(--green-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  margin-top: 2px;
}
.about__feature strong { display: block; font-size: .95rem; color: var(--text-main); margin-bottom: 2px; }
.about__feature p { font-size: .88rem; color: var(--text-muted); margin: 0; }

/* ═══════════ SERVICES ═══════════ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.15);
  box-shadow: 0 24px 48px rgba(0,0,0,.3);
}
.service-card--wide { grid-column: span 3; display: flex; gap: 32px; align-items: flex-start; }
.service-card--wide .service-card__icon { flex-shrink: 0; }
.service-card__icon {
  width: 56px;
  height: 56px;
  color: var(--gold);
  margin-bottom: 24px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 600;
}
.service-card p { font-size: .92rem; color: rgba(255,255,255,.65); line-height: 1.7; }

/* ═══════════ GALLERY ═══════════ */
.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery__item--tall { grid-row: span 2; aspect-ratio: auto; }
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,30,10,.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity .4s ease;
}
.gallery__item:hover .gallery__overlay { opacity: 1; }
.gallery__overlay span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 600;
}

/* ═══════════ REVIEWS ═══════════ */
.reviews__stars-summary {
  text-align: center;
  margin-bottom: 56px;
}
.star-row {
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 8px;
}
.reviews__stars-summary p { font-size: 1rem; color: var(--text-muted); }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.05);
  transition: var(--transition);
  position: relative;
}
.review-card::after {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--green-pale);
  line-height: 1;
  pointer-events: none;
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.review-card__stars { font-size: 1rem; color: var(--gold); letter-spacing: 2px; margin-bottom: 16px; }
.review-card blockquote {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.review-card__author strong { display: block; font-size: .9rem; color: var(--text-main); }
.review-card__author span { font-size: .78rem; color: var(--text-muted); }

/* ═══════════ CTA BANNER ═══════════ */
.cta-banner {
  position: relative;
  padding: 120px 24px;
  text-align: center;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/work2.png') center center / cover no-repeat;
}
.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,30,10,.9), rgba(45,90,39,.85));
}
.cta-banner__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 700;
}
.cta-banner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 40px;
}
.cta-banner__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ═══════════ CONTACT ═══════════ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact__desc { font-size: 1rem; color: var(--text-muted); margin: 16px 0 40px; line-height: 1.8; }
.contact__details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact__detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: var(--green-pale);
  transition: var(--transition);
}
.contact__detail-item:hover { background: #d4ecd7; transform: translateX(4px); }
.contact__detail-icon {
  width: 44px;
  height: 44px;
  background: var(--green-mid);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__detail-icon svg { width: 20px; height: 20px; }
.contact__detail-item strong { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 2px; }
.contact__detail-item span { font-size: .95rem; font-weight: 700; color: var(--text-main); }
.contact__social-link {
  display: inline-block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--green-mid);
  letter-spacing: .04em;
  transition: color .2s;
}
.contact__social-link:hover { color: var(--green-light); }

/* Form */
.contact__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,.05);
}
.contact__form { display: flex; flex-direction: column; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form__group { display: flex; flex-direction: column; gap: 6px; }
.form__group label {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
}
.form__group input,
.form__group select,
.form__group textarea {
  padding: 14px 18px;
  border: 1.5px solid #dde8db;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text-main);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
  resize: vertical;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45,90,39,.12);
}
.form__group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='%236b7c69'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form__success {
  display: none;
  background: var(--green-pale);
  color: var(--green-mid);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .92rem;
  text-align: center;
  border: 1px solid #b8ddb8;
}
.form__success.show { display: block; }

/* ═══════════ FOOTER ═══════════ */
.footer {
  background: var(--dark);
  padding: 60px 24px 32px;
}
.footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.footer__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
}
.footer__tagline {
  font-style: italic;
  color: var(--gold);
  font-size: .95rem;
  margin-top: 4px;
}
.footer__contact-line { font-size: .88rem; color: rgba(255,255,255,.5); margin-top: 8px; }
.footer__contact-line a { color: rgba(255,255,255,.7); transition: color .2s; }
.footer__contact-line a:hover { color: var(--gold); }
.footer__links { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; }
.footer__links a {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer__links a:hover { color: var(--gold); }
.footer__copy { font-size: .78rem; color: rgba(255,255,255,.3); border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; width: 100%; text-align: center; }

/* ═══════════ FLOATING CALL BTN ═══════════ */
.floating-call {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 58px;
  height: 58px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(201,162,39,.45);
  z-index: 998;
  transition: var(--transition);
  animation: pulse 2.5s infinite;
}
.floating-call svg { width: 26px; height: 26px; }
.floating-call:hover { background: var(--gold-light); transform: scale(1.1); animation: none; }

/* ═══════════ KEYFRAMES ═══════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: .5; }
  50%       { transform: scaleY(1.3); opacity: 1; }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(201,162,39,.45); }
  50%       { box-shadow: 0 8px 40px rgba(201,162,39,.7); }
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
  .about__grid { gap: 48px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--wide { grid-column: span 2; }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { gap: 48px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .about__grid { grid-template-columns: 1fr; }
  .about__images { margin-bottom: 80px; }
  .about__img-accent { right: 0; }
  .about__badge { left: 0; }
  .services__grid { grid-template-columns: 1fr; }
  .service-card--wide { grid-column: span 1; flex-direction: column; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--tall { grid-row: span 1; }
  .reviews__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 32px 24px; }
  .form__row { grid-template-columns: 1fr; }
  .trust-bar__inner { flex-direction: column; }
  .trust-divider { width: 60px; height: 1px; }
  .hero__actions { flex-direction: column; align-items: center; }
  .floating-call { bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .nav__logo-text { display: none; }
  .hero__title { font-size: 2.4rem; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
}
