/* ============================================================
   Heaven on Earth Landscaping — Shared Stylesheet
   heavenonearthlandscaping.com
   ============================================================ */

:root {
  --green-deep:   #1e3a2f;
  --green-mid:    #3a5c47;
  --green-light:  #6b8f7a;
  --green-soft:   #e6ede8;
  --cream:        #f8f5ef;
  --cream-warm:   #f0ead8;
  --ink:          #1a2820;
  --ink-soft:     #5a6b60;
  --ink-lighter:  #8a9e93;
  --line:         #dbd5c5;
  --accent:       #b8895c;
  --accent-light: #d4a87a;
  --white:        #ffffff;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

/* ── Layout ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.narrow    { max-width:  820px; margin: 0 auto; padding: 0 32px; }
.section   { padding: 96px 0; }
.section-sm{ padding: 64px 0; }

/* ── Typography ── */
.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--green-deep);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 560px;
  line-height: 1.7;
}
.section-sub.center { margin: 0 auto; text-align: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--green-deep);
  color: var(--white);
}
.btn-primary:hover { background: var(--green-mid); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--green-deep);
  color: var(--green-deep);
}
.btn-outline:hover { background: var(--green-deep); color: var(--white); }

.btn-accent {
  background: var(--accent);
  color: var(--white);
}
.btn-accent:hover { background: #a07848; }

.btn-light {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-light:hover { background: rgba(255,255,255,0.22); }

/* ── Navigation ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 40px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(248, 245, 239, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.site-nav.scrolled { border-color: var(--line); }

.nav-logo img {
  height: 62px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.12)) contrast(1.08) saturate(1.12);
  transition: filter 0.25s ease;
}
.nav-logo:hover img {
  filter: drop-shadow(0 3px 10px rgba(0,0,0,0.18)) contrast(1.1) saturate(1.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--green-deep); }

.nav-cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 24px;
  background: var(--green-deep);
  color: var(--white) !important;
  transition: background 0.25s;
}
.nav-cta:hover { background: var(--green-mid); color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s;
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 82px; left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 24px 32px;
  z-index: 199;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 1px solid var(--green-soft);
}

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(20, 40, 28, 0.72) 0%,
    rgba(20, 40, 28, 0.38) 60%,
    rgba(20, 40, 28, 0.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 40px;
  margin-top: 82px;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  color: var(--white);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent-light);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}
.hero-scroll::before {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.35);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 140px 40px 80px;
  background: var(--green-deep);
  text-align: center;
}
.page-hero .eyebrow { color: var(--accent-light); }
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Trust Strip ── */
.trust-strip {
  background: var(--green-deep);
  color: var(--white);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 32px;
  border-right: 1px solid rgba(255,255,255,0.15);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.trust-item:last-child { border-right: none; }
.trust-item .t-icon {
  font-size: 16px;
  color: var(--accent-light);
}
.trust-item strong {
  font-weight: 700;
  color: var(--accent-light);
}

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover img { transform: scale(1.06); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,40,28,0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.service-card h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.service-card p {
  color: rgba(255,255,255,0.72);
  font-size: 0.85rem;
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
}
.service-card .card-link {
  margin-top: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.service-card:hover .card-link { gap: 10px; }

/* ── Two-col split ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 180px;
  height: 180px;
  background: var(--accent);
  z-index: -1;
}

/* ── Process Steps ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  counter-reset: step;
}
.process-step { counter-increment: step; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--green-soft);
  line-height: 1;
  margin-bottom: 20px;
}
.process-step h4 {
  font-size: 1.15rem;
  color: var(--green-deep);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
.step-line {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 16px;
}

/* ── Stats ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-box {
  background: var(--green-deep);
  color: var(--white);
  padding: 48px 32px;
  text-align: center;
}
.stat-box:nth-child(even) { background: var(--green-mid); }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--accent-light);
}
.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ── Testimonial Cards ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stars { color: var(--accent); font-size: 13px; letter-spacing: 2px; }
.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-soft);
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: 0.04em;
}

/* ── Blog Cards ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card {}
.blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--green-soft);
  margin-bottom: 20px;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-date {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.blog-card h3 {
  font-size: 1.25rem;
  color: var(--green-deep);
  margin-bottom: 10px;
  line-height: 1.25;
}
.blog-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 16px;
}
.blog-read-more {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.blog-card:hover .blog-read-more { gap: 10px; }

/* ── Gallery Grid ── */
.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 9px 20px;
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  aspect-ratio: 4/3;
}
.gallery-item:nth-child(3n+2) img { aspect-ratio: 4/5; }
.gallery-item:hover img { transform: scale(1.05); }

/* ── Service Areas ── */
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-chip {
  padding: 9px 20px;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all 0.2s;
  background: var(--white);
}
.area-chip:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
}

/* ── CTA Band ── */
.cta-band {
  background: var(--green-deep);
  padding: 80px 40px;
  text-align: center;
}
.cta-band .eyebrow { color: var(--accent-light); }
.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 20px;
}
.cta-band p {
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-band .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Finance Band ── */
.finance-band {
  background: var(--cream-warm);
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
}
.finance-inner {
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 64px 0;
}
.finance-text { flex: 1; }
.finance-text .eyebrow { color: var(--accent); }
.finance-text h2 { font-size: 2rem; color: var(--green-deep); margin-bottom: 16px; }
.finance-text p { color: var(--ink-soft); max-width: 460px; margin-bottom: 24px; }
.finance-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.finance-list li {
  font-size: 13px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}
.finance-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}
.finance-logo {
  flex-shrink: 0;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  text-align: center;
}
.finance-logo p {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-lighter);
  margin-top: 12px;
}

/* ── Hiring Band ── */
.hiring-band {
  background: var(--ink);
  padding: 64px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.hiring-band h3 {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 8px;
}
.hiring-band p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
}

/* ── Footer ── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 60px; width: auto; margin-bottom: 20px; filter: brightness(0) invert(1) drop-shadow(0 1px 4px rgba(255,255,255,0.15)); opacity: 0.95; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }
.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent-light); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--accent-light); }

/* ── Contact Info ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--green-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--green-deep);
}
.contact-info-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-lighter);
  margin-bottom: 4px;
}
.contact-info-item p, .contact-info-item a {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.contact-info-item a:hover { color: var(--green-deep); }

/* ── Full-page Service detail ── */
.service-detail {
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}
.service-detail:last-child { border-bottom: none; }
.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.service-detail h2 {
  font-size: 1.8rem;
  color: var(--green-deep);
  margin-bottom: 12px;
}
.service-detail-body { color: var(--ink-soft); line-height: 1.75; }
.service-detail-body p { margin-bottom: 16px; }
.service-detail-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}
.service-detail-list li {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
}
.service-detail-list li::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── Values ── */
.values-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.value-box {
  background: var(--cream-warm);
  padding: 40px 28px;
  text-align: center;
  border-top: 3px solid transparent;
  transition: border-color 0.3s;
}
.value-box:hover { border-top-color: var(--accent); }
.value-box h4 {
  font-size: 1.1rem;
  color: var(--green-deep);
  margin-bottom: 10px;
}
.value-icon { font-size: 28px; margin-bottom: 16px; }

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

/* ── WhatsApp float ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 300;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; fill: white; }

/* ── Utility ── */
.text-center { text-align: center; }
.text-white  { color: var(--white); }
.mt-8  { margin-top:  8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom:  8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.gap-16 { gap: 16px; }
.flex  { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid       { grid-template-columns: repeat(2, 1fr); }
  .process-steps       { grid-template-columns: repeat(2, 1fr); }
  .stats-row           { grid-template-columns: repeat(2, 1fr); }
  .footer-inner        { grid-template-columns: 1fr 1fr; }
  .testimonials-grid   { grid-template-columns: repeat(2, 1fr); }
  .blog-grid           { grid-template-columns: repeat(2, 1fr); }
  .values-row          { grid-template-columns: repeat(2, 1fr); }
  .finance-inner       { flex-direction: column; gap: 40px; }
}

@media (max-width: 768px) {
  .container, .narrow { padding: 0 20px; }
  .section    { padding: 64px 0; }
  .site-nav   { padding: 0 20px; }
  .nav-links  { display: none; }
  .nav-cta    { display: none; }
  .hamburger  { display: flex; }
  .hero-content { padding: 0 20px; }
  .hero-split   { flex-direction: column; padding: 0 20px; justify-content: center; align-items: flex-start; gap: 32px; }
  .hero-award   { align-self: center; }
  .br-badge-lg-inner { width: 180px; }
  .split      { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse { direction: ltr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 36px; }
  .stats-row     { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid     { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .footer-inner  { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid  { grid-template-columns: 1fr; }
  .service-detail-inner { grid-template-columns: 1fr; gap: 32px; }
  .values-row    { grid-template-columns: 1fr 1fr; }
  .hiring-band   { text-align: center; justify-content: center; }
  .page-hero     { padding: 120px 20px 64px; }
  .trust-strip   { padding: 16px 20px; }
  .trust-item    { padding: 8px 16px; }
}

@media (max-width: 480px) {
  .stats-row     { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .values-row    { grid-template-columns: 1fr; }
  .hero h1       { font-size: 2.4rem; }
}

/* ============================================================
   EXTENDED STYLES — New Sections
   ============================================================ */

/* ── Reduce nav-links gap to fit 8 items ── */
.nav-links { gap: 22px; }

/* ── Promo Banner ── */
.promo-banner {
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 12px 60px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 201;
}
.promo-banner a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.promo-banner .promo-close {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  opacity: 0.75;
  line-height: 1;
  padding: 4px 8px;
  transition: opacity 0.2s;
}
.promo-banner .promo-close:hover { opacity: 1; }
.promo-banner.dismissed { display: none; }
body.has-promo .site-nav { top: 44px; }

/* ── Brands / Partners Strip ── */
.brands-strip {
  background: var(--cream-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.brands-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.brands-strip-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-lighter);
  padding-right: 32px;
  margin-right: 8px;
  border-right: 1px solid var(--line);
  white-space: nowrap;
}
.brand-item {
  padding: 10px 28px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.brand-item:last-child { border-right: none; }
.brand-award {
  padding: 6px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brands-divider {
  width: 1px;
  height: 60px;
  background: var(--line);
  margin: 0 8px;
  flex-shrink: 0;
}

/* ── Hero split layout (text left + award right) ── */
.hero-split {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  margin-top: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.hero-split .hero-content {
  position: static;
  max-width: 560px;
  padding: 0;
  margin-top: 0;
  flex: 1;
}
.hero-award {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── BusinessRate Award Badge (small — brands strip) ── */
.br-badge-sm {
  background: #0d1b14;
  border: 2px solid #c9a84c;
  padding: 8px 14px;
  text-align: center;
  width: 90px;
  clip-path: polygon(8px 0%,calc(100% - 8px) 0%,100% 8px,100% calc(100% - 8px),calc(100% - 8px) 100%,8px 100%,0% calc(100% - 8px),0% 8px);
}
.br-badge-sm-stars { color: #c9a84c; font-size: 8px; letter-spacing: 1px; margin-bottom: 2px; }
.br-badge-sm-year  { color: #fff; font-size: 9px; font-weight: 700; letter-spacing: 0.08em; line-height: 1.1; }
.br-badge-sm-logo  { background: #fff; color: #000; font-size: 8px; font-weight: 800; padding: 2px 4px; margin: 3px 0; letter-spacing: -0.02em; }
.br-badge-sm-bench { background: #2563eb; color: #fff; font-size: 7px; font-weight: 700; letter-spacing: 0.12em; padding: 2px 0; }

/* ── BusinessRate Award Badge (large — hero + feature section) ── */
.br-badge-lg {
  flex-shrink: 0;
}
.br-badge-lg-inner {
  background: linear-gradient(160deg,#1a2f1f 0%,#0d1b14 60%,#111 100%);
  border: 4px solid #c9a84c;
  width: 220px;
  text-align: center;
  padding: 24px 20px 0;
  clip-path: polygon(20px 0%,calc(100% - 20px) 0%,100% 20px,100% calc(100% - 20px),calc(100% - 20px) 100%,20px 100%,0% calc(100% - 20px),0% 20px);
  box-shadow: 0 12px 60px rgba(0,0,0,0.6), inset 0 1px 0 rgba(201,168,76,0.3);
  overflow: hidden;
}
.br-badge-lg-stars  { color: #c9a84c; font-size: 16px; letter-spacing: 4px; margin-bottom: 6px; }
.br-badge-lg-best   { color: #c9a84c; font-size: 12px; font-weight: 700; letter-spacing: 0.24em; }
.br-badge-lg-year   { color: #fff; font-size: 42px; font-weight: 800; line-height: 1; margin: 2px 0; font-family: 'Inter', sans-serif; }
.br-badge-lg-sub    { color: rgba(255,255,255,0.65); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 10px; }
.br-badge-lg-logo   { background: #fff; color: #000; font-size: 17px; font-weight: 800; padding: 5px 14px; letter-spacing: -0.03em; display: inline-block; margin-bottom: 12px; }
.br-badge-lg-name   { color: #fff; font-size: 13px; font-weight: 600; line-height: 1.4; margin-bottom: 4px; }
.br-badge-lg-cat    { color: rgba(255,255,255,0.55); font-size: 11px; }
.br-badge-lg-loc    { color: rgba(255,255,255,0.55); font-size: 11px; margin-bottom: 10px; }
.br-badge-lg-powered { color: rgba(255,255,255,0.4); font-size: 9px; letter-spacing: 0.04em; margin-bottom: 0; padding-bottom: 10px; }
.br-badge-lg-bench  { background: #2563eb; color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 0.2em; padding: 8px 0; margin: 0 -20px; }
.brand-item span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}
.brand-item small {
  display: block;
  font-size: 10px;
  color: var(--ink-lighter);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* ── Before/After Slider ── */
.ba-section {
  background: var(--ink);
  padding: 96px 0;
}
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.ba-pair {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--green-deep);
}
.ba-pair img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}
.ba-pair .img-before { opacity: 1; z-index: 1; }
.ba-pair .img-after  { opacity: 0; z-index: 2; }
.ba-pair.showing-after .img-before { opacity: 0; }
.ba-pair.showing-after .img-after  { opacity: 1; }
.ba-toggle {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 4px;
  background: rgba(0,0,0,0.55);
  border-radius: 2px;
  overflow: hidden;
}
.ba-toggle button {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.2s;
}
.ba-toggle button.active {
  background: var(--accent);
  color: var(--white);
}
.ba-label {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  background: var(--accent);
  color: var(--white);
}
.ba-caption {
  position: absolute;
  bottom: 50px;
  left: 0; right: 0;
  z-index: 10;
  padding: 0 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  font-family: 'Cormorant Garamond', serif;
  pointer-events: none;
}

/* ── FAQ Accordion ── */
.faq-section-group {
  margin-bottom: 56px;
}
.faq-section-title {
  font-size: 1.5rem;
  color: var(--green-deep);
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.faq-list {
  margin-top: 0;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--green-deep); }
.faq-question.open  { color: var(--green-deep); }
.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--accent);
  transition: transform 0.3s, background 0.3s;
  font-style: normal;
}
.faq-question.open .faq-icon {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 0 0 0;
}
.faq-answer.open {
  max-height: 400px;
  padding-bottom: 20px;
}
.faq-answer p {
  font-size: 0.93rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

/* ── Video Grid ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.video-embed {
  aspect-ratio: 16/9;
  background: var(--ink);
  overflow: hidden;
  position: relative;
}
.video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--green-deep);
  text-decoration: none;
  gap: 16px;
  transition: background 0.3s;
}
.video-placeholder:hover { background: var(--green-mid); }
.video-play-btn {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s;
}
.video-placeholder:hover .video-play-btn { transform: scale(1.1); }
.video-play-btn svg {
  width: 24px; height: 24px;
  fill: white;
  margin-left: 4px;
}
.video-placeholder-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0 16px;
}
.video-caption {
  margin-top: 12px;
  font-size: 12px;
  color: var(--ink-lighter);
  font-style: italic;
  text-align: center;
}

/* ── Process Timeline (vertical, detail page) ── */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.timeline-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 32px;
  position: relative;
  padding-bottom: 48px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeline-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.timeline-line {
  width: 1px;
  flex: 1;
  background: var(--line);
  margin-top: 8px;
}
.timeline-item:last-child .timeline-line { display: none; }
.timeline-content {
  padding-top: 8px;
}
.timeline-content h3 {
  font-size: 1.4rem;
  color: var(--green-deep);
  margin-bottom: 10px;
}
.timeline-content p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

/* ── Project Cards ── */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.project-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--green-deep);
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card:hover img { transform: scale(1.05); }
.project-card-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,30,20,0.92) 0%, rgba(15,30,20,0.2) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background 0.4s;
}
.project-card:hover .project-card-inner {
  background: linear-gradient(to top, rgba(15,30,20,0.96) 0%, rgba(15,30,20,0.5) 70%, rgba(15,30,20,0.1) 100%);
}
.project-location {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 6px;
}
.project-card-inner h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}
.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.project-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 9px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
}
.project-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
  margin-bottom: 14px;
  display: none;
}
.project-card:hover .project-desc { display: block; }
.project-link {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.project-card:hover .project-link { gap: 10px; }

/* ── About Page ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.about-img-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 160px;
  height: 160px;
  background: var(--accent);
  z-index: -1;
}
.alfredo-quote {
  margin: 48px 0;
  padding: 36px 48px;
  border-left: 3px solid var(--accent);
  background: var(--cream-warm);
}
.alfredo-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-style: italic;
  color: var(--green-deep);
  line-height: 1.4;
  margin-bottom: 16px;
}
.alfredo-quote cite {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-style: normal;
}
.team-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.team-value-box {
  padding: 40px 28px;
  background: var(--green-soft);
  border-top: 3px solid transparent;
  transition: border-color 0.3s, background 0.3s;
  text-align: center;
}
.team-value-box:hover {
  border-top-color: var(--accent);
  background: var(--white);
}
.team-value-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.team-value-box h4 {
  font-size: 1.1rem;
  color: var(--green-deep);
  margin-bottom: 10px;
}
.team-value-box p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ── Stats row (about page inline style) ── */
.stats-inline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--green-deep);
  margin: 64px 0;
}
.stats-inline .stat-box { padding: 40px 24px; }

/* ── Process "Why choose us" columns ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.why-box {
  padding: 48px 36px;
  background: var(--green-soft);
  border-top: 3px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.why-box:hover {
  border-top-color: var(--accent);
  background: var(--white);
}
.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}
.why-box h4 {
  font-size: 1.15rem;
  color: var(--green-deep);
  margin-bottom: 10px;
}
.why-box p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ── Responsive additions ── */
@media (max-width: 1024px) {
  .ba-grid           { grid-template-columns: 1fr 1fr; }
  .project-grid      { grid-template-columns: repeat(2, 1fr); }
  .about-split       { grid-template-columns: 1fr; gap: 48px; }
  .team-values       { grid-template-columns: repeat(2, 1fr); }
  .stats-inline      { grid-template-columns: repeat(2, 1fr); }
  .why-grid          { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .ba-grid           { grid-template-columns: 1fr; }
  .project-grid      { grid-template-columns: 1fr; }
  .video-grid        { grid-template-columns: 1fr; }
  .team-values       { grid-template-columns: 1fr 1fr; }
  .stats-inline      { grid-template-columns: repeat(2, 1fr); }
  .why-grid          { grid-template-columns: 1fr; }
  .alfredo-quote     { padding: 28px 24px; }
  .brands-strip-inner { gap: 4px; }
  .brand-item        { padding: 8px 16px; }
  .promo-banner      { padding: 12px 48px 12px 16px; font-size: 12px; }
  .timeline-item     { grid-template-columns: 44px 1fr; gap: 20px; }
}

@media (max-width: 480px) {
  .team-values       { grid-template-columns: 1fr; }
  .stats-inline      { grid-template-columns: 1fr; }
  .project-card .project-desc { display: block; }
}
