/* ── RSE GROUP — WHITE + FOREST GREEN IDENTITY ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Primary Brand Palette */
  --forest-green:        #2A664E;
  --forest-green-dark:   #1F4E3C;
  --forest-green-light:  rgba(42, 102, 78, 0.08);
  --mint:                #E4F0EA;
  --white:               #FFFFFF;
  --text-dark:           #1A1A1A;
  --text-light:          #FFFFFF;

  /* Supporting shades derived from core palette */
  --forest-green-border: rgba(42, 102, 78, 0.12);
  --forest-green-hover:  rgba(42, 102, 78, 0.06);

  /* Teal accent (interactive: buttons, links, pins) */
  --teal:                #63b69c;
  --teal-dark:           #4f9e85;
  --teal-light:          rgba(99, 182, 156, 0.12);
  --teal-border:         rgba(99, 182, 156, 0.30);

  /* Design tokens */
  --radius:              12px;
  --radius-lg:           20px;
  --shadow:              0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:           0 12px 48px rgba(0,0,0,.12);
  --transition:          .28s cubic-bezier(.4,0,.2,1);
  --font-head:           'Outfit', sans-serif;
  --font-body:           'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
  padding-top: 128px;
}
@media(max-width:900px) {
  body { padding-top: 108px; }
}
@media(max-width:480px) {
  body { padding-top: 100px; }
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; }

/* ── LAYOUT ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.text-center { text-align: center; }

/* ── TYPOGRAPHY ── */
.eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--forest-green); opacity: .8;
  margin-bottom: 12px;
}
h1 { font-family: var(--font-head); font-size: clamp(2.4rem,5vw,3.6rem); font-weight: 700; color: var(--forest-green); line-height: 1.15; }
h2 { font-family: var(--font-head); font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 700; color: var(--forest-green); line-height: 1.2; }
h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 600; color: var(--forest-green); }
p  { color: rgba(26,26,26,.75); line-height: 1.8; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: .95rem;
  transition: var(--transition); border: 2px solid transparent; cursor: pointer;
}
.btn-orange {
  background: var(--forest-green);
  color: var(--text-light);
}
.btn-orange:hover {
  background: var(--forest-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42, 102, 78, .3);
}
.btn-orange:focus {
  outline: 2px solid var(--forest-green-dark);
  outline-offset: 2px;
}
.btn-outline-cream {
  background: transparent;
  color: var(--forest-green);
  border-color: var(--forest-green-border);
}
.btn-outline-cream:hover {
  border-color: var(--forest-green);
  background: var(--forest-green-light);
}
.btn-outline-cream:focus {
  outline: 2px solid var(--forest-green);
  outline-offset: 2px;
}

/* Primary teal CTA */
.btn-primary {
  background: var(--teal);
  color: #fff;
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(99, 182, 156, .38);
}
.btn-primary:active { transform: translateY(0); box-shadow: 0 4px 12px rgba(99, 182, 156, .3); }
.btn-primary:focus-visible { outline: 2px solid var(--teal-dark); outline-offset: 2px; }

/* Secondary outline button */
.btn-outline {
  background: var(--white);
  color: var(--text-dark);
  border-color: rgba(26, 26, 26, .18);
}
.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
  background: var(--teal-light);
  transform: translateY(-2px);
}
.btn-outline:active { transform: translateY(0); }
.btn-outline:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--forest-green-border);
  transition: var(--transition);
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 20px; flex-wrap: nowrap;
}
.header-logo { display: flex; align-items: center; gap: 0; flex-shrink: 0; }
.header-logo img { height: 92px; width: auto; object-fit: contain; }
.header-call {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--teal); color: #fff;
  font-weight: 700; font-size: .78rem; letter-spacing: .3px;
  padding: 7px 15px; border-radius: 8px; transition: var(--transition);
}
.header-call svg { width: 14px; height: 14px; }
.header-call:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(99,182,156,.35); }
.header-call:focus-visible { outline: 2px solid var(--teal-dark); outline-offset: 2px; }
.header-logo-text {}
.header-logo-text strong { display: block; font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--forest-green); letter-spacing: .5px; }
.header-logo-text span { display: block; font-size: .72rem; color: rgba(42, 102, 78, .65); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 1px; }
.header-nav { display: flex; align-items: center; gap: 1px; flex-wrap: nowrap; }
.header-nav a {
  padding: 8px 10px; border-radius: 7px;
  font-size: .81rem; font-weight: 500; color: var(--text-dark);
  white-space: nowrap;
  transition: var(--transition);
}
.header-nav a:hover, .header-nav a.active {
  color: var(--forest-green);
  background: var(--forest-green-light);
}
.header-nav a[href="contact.html"] {
  background: linear-gradient(135deg, rgba(42,102,78,0.15) 0%, rgba(42,102,78,0.08) 100%);
  border-bottom: 2px solid var(--forest-green);
  color: var(--forest-green);
}
/* Hide Enquire nav link, show only green button */
.header-nav a[href="contact.html"] {
  display: none;
}
.header-right { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.header-phone { font-size: .85rem; font-weight: 600; color: var(--forest-green); display: flex; align-items: center; gap: 6px; }
.header-phone svg { color: var(--forest-green); }
.header-cta { padding: 10px 22px; font-size: .88rem; }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; color: var(--forest-green); padding: 6px; }
.nav-toggle svg { width: 22px; height: 22px; }
.mobile-nav {
  display: none; flex-direction: column; gap: 4px;
  padding: 12px 28px 20px; border-top: 1px solid var(--forest-green-border);
}
.mobile-nav a { padding: 10px 0; font-size: .92rem; color: var(--text-dark); border-bottom: 1px solid var(--forest-green-light); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav.open { display: flex; }

@media(max-width:900px) {
  .header-nav { display: none; }
  .header-phone { display: none; }
  .nav-toggle { display: flex; }
}
@media(max-width:900px) {
  .header-logo img { height: 72px; }
}
@media(max-width:480px) {
  .header-cta { display: none; }
  .header-logo img { height: 64px; }
}

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 12px 0; margin-top: 84px;
  border-bottom: 1px solid var(--forest-green-border);
}
.breadcrumb-inner { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: rgba(26, 26, 26, .45); }
.breadcrumb-inner a { color: rgba(26, 26, 26, .65); transition: color var(--transition); }
.breadcrumb-inner a:hover { color: var(--forest-green); }
.breadcrumb-inner svg { width: 12px; height: 12px; color: var(--forest-green); }

/* ── TRUST BADGES ── */
.trust-strip {
  background: var(--mint);
  border-top: 1px solid rgba(42, 102, 78, .2);
  border-bottom: 1px solid rgba(42, 102, 78, .2);
  padding: 18px 0;
}
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 9px; font-size: .83rem; font-weight: 600; color: var(--forest-green); }
.trust-item svg { color: var(--forest-green); flex-shrink: 0; }
@media(max-width:700px) { .trust-inner { gap: 24px; } }

/* ── PAGE HERO ── */
.page-hero { padding: 140px 0 80px; }
.page-hero .eyebrow { margin-bottom: 10px; }
.page-hero h1 { margin-bottom: 20px; }
.page-hero .lead { font-size: 1.1rem; color: rgba(26, 26, 26, .7); max-width: 580px; margin-bottom: 36px; }
.page-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.page-hero-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--mint);
  border: 1px solid rgba(42, 102, 78, .3);
  color: var(--forest-green); font-size: .8rem; font-weight: 600; letter-spacing: 1px;
  padding: 8px 16px; border-radius: 99px; margin-bottom: 28px; text-transform: uppercase;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.page-hero-tag svg { width: 13px; height: 13px; color: var(--forest-green); flex-shrink: 0; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--forest-green-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
}
.card:hover {
  background: var(--mint);
  border-color: var(--forest-green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--mint);
  border: 1px solid rgba(42, 102, 78, .25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--forest-green);
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .9rem; margin-bottom: 20px; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .85rem; font-weight: 600; color: var(--forest-green);
  transition: gap var(--transition);
}
.card:hover .card-link { gap: 10px; }

/* ── SECTION DIVIDER ── */
.divider {
  height: 1px; background: var(--forest-green-border);
  margin: 0;
}

/* ── PARTNER LOGOS FOOTER ── */
.partners-section { padding: 52px 0; background: var(--white); overflow: hidden; }
.partners-label {
  text-align: center; font-size: .78rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(26, 26, 26, .45); margin-bottom: 32px;
}
.partners-marquee-wrap { overflow: hidden; }
.partners-marquee {
  display: flex; align-items: center; gap: 72px;
  width: max-content;
  animation: marquee 20s linear infinite;
  padding: 0 36px;
}
.partners-marquee:hover { animation-play-state: paused; }
.partner-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s, transform .2s;
  cursor: pointer;
  text-decoration: none;
  pointer-events: auto;
}
.partner-link:hover {
  opacity: 0.8;
  transform: scale(1.05);
}
.partner-link img {
  height: 140px;
  width: auto;
  object-fit: contain;
  background: var(--white);
  border-radius: 10px;
  padding: 16px 28px;
  border: 2px solid var(--forest-green-border);
  box-shadow: 0 1px 8px rgba(0,0,0,.04);
  transition: box-shadow .2s;
  display: block;
  pointer-events: none;
}
.partner-link:hover img {
  box-shadow: 0 4px 16px rgba(42, 102, 78, .15);
}
.partners-marquee > img {
  height: 140px;
  width: auto;
  object-fit: contain;
  background: var(--white);
  border-radius: 10px;
  padding: 16px 28px;
  border: 2px solid var(--forest-green-border);
  box-shadow: 0 1px 8px rgba(0,0,0,.04);
  display: block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── CONTACT FOOTER ── */
.contact-footer {
  padding: 56px 0 32px;
  background: var(--forest-green);
  border-top: 1px solid rgba(42, 102, 78, .2);
}
.contact-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 56px; margin-bottom: 48px; }
/* dark-text logo rendered white so it reads on the dark footer */
.footer-brand img { height: 56px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .87rem; color: rgba(255, 255, 255, .75); max-width: 280px; line-height: 1.75; }
.footer-tagline { font-style: italic; color: rgba(228, 240, 234, .8); font-size: .95rem; margin-top: 8px; display: block; }
.footer-col h4 { font-size: .78rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(228, 240, 234, .7); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a, .footer-col ul li span { font-size: .88rem; color: rgba(255, 255, 255, .8); transition: color var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-col ul li a:hover { color: var(--mint); }
.footer-col ul li svg { color: var(--mint); flex-shrink: 0; width: 14px; height: 14px; }
.footer-bottom { border-top: 1px solid rgba(228, 240, 234, .2); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p, .footer-bottom a { font-size: .78rem; color: rgba(255, 255, 255, .6); }
.footer-bottom a:hover { color: var(--mint); }
@media(max-width:860px) { .contact-footer-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ── MAP ── */
.map-section { padding: 0; }
.map-embed-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--forest-green-border); }
.map-embed-wrap iframe { width: 100%; height: 380px; border: none; display: block; filter: grayscale(.15); }

/* ── FEATURE ROW ── */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-img { border-radius: var(--radius-lg); overflow: hidden; }
.feature-img img { width: 100%; height: auto; object-fit: contain; display: block; }
.feature-content .eyebrow { display: block; }
.feature-content h2 { margin-bottom: 18px; }
.feature-content p { margin-bottom: 18px; }
@media(max-width:860px) { .feature-row, .feature-row.reverse { grid-template-columns: 1fr; direction: ltr; gap: 40px; } }

/* ── BUILD SECTION ── */
.build-image-container {
  background: var(--mint);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.build-image-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.build-content h3 { color: var(--forest-green); }
.build-content p { color: rgba(26,26,26,.75); }

/* ── ELEVATIONS GALLERY ── */
.elevation-thumbnail {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--mint);
  padding: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
  text-decoration: none;
}
.elevation-thumbnail:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(42, 102, 78, .15);
}
.elevation-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── PDF DOWNLOAD CARD ── */
.pdf-download-card {
  background: var(--mint);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid rgba(42, 102, 78, .2);
}
.pdf-thumbnail {
  flex-shrink: 0;
  width: 120px;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
}
.pdf-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media(max-width:860px) {
  .pdf-download-card {
    flex-direction: column;
  }
  .pdf-thumbnail {
    width: 100%;
    height: 200px;
  }
}

/* ── SERVICE DETAIL PAGE ── */
.service-hero {
  padding: 60px 0 64px;
  border-bottom: 1px solid var(--forest-green-border);
}
.service-body { padding: 72px 0; }
.service-body-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 64px; align-items: start; }
.service-description p { font-size: 1.05rem; color: rgba(26, 26, 26, .8); line-height: 1.9; margin-bottom: 20px; }
.service-sidebar { position: sticky; top: 108px; }
.sidebar-card {
  background: var(--mint);
  border: 1px solid rgba(42, 102, 78, .2);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 20px;
}
.sidebar-card h4 { font-family: var(--font-head); font-size: 1rem; color: var(--forest-green); margin-bottom: 16px; }
.sidebar-detail { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: .88rem; color: rgba(26, 26, 26, .75); }
.sidebar-detail svg { color: var(--forest-green); flex-shrink: 0; width: 16px; height: 16px; }
.sidebar-card .btn { width: 100%; justify-content: center; margin-top: 8px; }
@media(max-width:860px) { .service-body-grid { grid-template-columns: 1fr; } .service-sidebar { position: static; } }

/* ── ABOUT STRIP ── */
.about-strip { background: var(--mint); border: 1px solid rgba(42, 102, 78, .2); border-radius: var(--radius-lg); padding: 48px; }
.about-strip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media(max-width:720px) { .about-strip-grid { grid-template-columns: 1fr; } .about-strip { padding: 32px 24px; } }

/* ── UTILITIES ── */
.mt-4  { margin-top: 4px; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-24 { margin-bottom: 24px; }
.gap-16 { gap: 16px; }
.flex  { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
@media(max-width:900px) { .grid-4 { grid-template-columns: 1fr 1fr; } .grid-3 { grid-template-columns: 1fr 1fr; } }
@media(max-width:600px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

/* ── HERO SPLIT (image-text side-by-side) ── */
.service-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: flex-start;
}
.service-hero-split .hero-img-panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 420px;
}
.service-hero-split .hero-img-panel img {
  width: 100%; height: 100%; display: block; object-fit: cover;
}
@media(max-width:900px) {
  .service-hero-split { grid-template-columns: 1fr; }
  .service-hero-split .hero-img-panel { order: -1; }
}

/* ── PARKING PANORAMIC HERO ── */
.parking-hero-img { padding-top: 0; background: transparent; overflow: hidden; }
.parking-hero-img img { width: 100%; height: auto; display: block; }
.parking-hero-text { padding: 48px 0 60px; }

/* ── GALLERY TILES (uniform thumbnails — cover OK) ── */
.gallery-tile { overflow: hidden; }
.gallery-tile img {
  width: 100%; height: 240px;
  object-fit: cover; display: block;
  transition: transform .5s ease;
}
.gallery-tile img:hover { transform: scale(1.04); }

.offer-thumb { overflow: hidden; }
.offer-thumb img {
  width: 100%; height: 200px;
  object-fit: cover; display: block;
  transition: transform .5s ease;
}
.offer-thumb img:hover { transform: scale(1.04); }

/* ── MOBILE OPTIMISATION ── */

/* Tighter container padding on small screens */
@media(max-width:640px) {
  .container { padding: 0 20px; }
  .section { padding: 56px 0; }
  .section-sm { padding: 40px 0; }

  /* ── Hero — premium mobile ── */
  .hero { padding: 72px 0 52px; }
  .hero-split { gap: 24px; }

  /* Heading: larger, more confident, never clips */
  .hero h1 {
    font-size: clamp(2.1rem, 9vw, 2.85rem);
    line-height: 1.08;
    margin-bottom: 10px;
  }

  /* Tagline: refined secondary statement */
  .hero .tagline {
    font-size: 1.1rem;
    letter-spacing: .025em;
    margin-bottom: 14px;
  }

  /* Body copy: comfortable reading size */
  .hero .lead {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  /* Badge: tighter on mobile, slightly more border presence */
  .hero-badge {
    font-size: .71rem;
    padding: 8px 13px;
    margin-bottom: 18px;
    border-color: rgba(42, 102, 78, .35);
  }

  /* Hero image: clean framed card treatment */
  .hero-img {
    border-radius: 12px;
    box-shadow: 0 8px 36px rgba(0,0,0,.15);
  }
  .hero-img img {
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
    height: auto;
    border-radius: 0;   /* radius lives on wrapper */
  }

  /* CTA buttons: confident tap targets */
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 52px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .01em;
  }
  /* Primary CTA slightly more punchy */
  .hero-actions .btn-orange { font-size: 1.02rem; }

  /* Subpage heroes */
  .service-hero { padding: 72px 0 40px; }
  .page-hero-actions { flex-direction: column; gap: 10px; }
  .page-hero-actions .btn { width: 100%; justify-content: center; }

  /* Parking hero text */
  .parking-hero-text { padding: 32px 0 40px; }

  /* Service body */
  .service-body { padding: 40px 0; }

  /* Feature row */
  .feature-row { gap: 28px; }

  /* Buttons */
  .btn { padding: 13px 22px; font-size: .9rem; }

  /* Stats */
  .stats-row { grid-template-columns: 1fr 1fr; }

  /* Gallery tiles smaller on mobile */
  .gallery-tile img { height: 160px; }
  .offer-thumb img { height: 160px; }

  /* Offer grid: single column on very small screens */
  .offer-grid { grid-template-columns: 1fr !important; }

  /* Partners marquee */
  .partners-section { padding: 36px 0; }
  .partners-marquee img { height: 72px; padding: 10px 16px; }
  .partners-marquee { gap: 48px; }

  /* Footer */
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }

  /* Trust strip */
  .trust-inner { gap: 16px; }
  .trust-item { font-size: .78rem; }

  /* Sidebar cards full width */
  .sidebar-card { padding: 24px 20px; }

  /* About strip */
  .about-strip { padding: 28px 20px; }
}

/* Tablet tweaks */
@media(max-width:900px) {
  .service-hero-split { gap: 32px; }
  .service-body-grid { gap: 40px; }
  .contact-footer-grid { gap: 28px; }
  .feature-row { gap: 40px; }
}

/* Hero split image: don't let tall portrait photos dominate on tablet */
@media(max-width:900px) and (min-width:641px) {
  .service-hero-split .hero-img-panel img { max-height: 380px; object-fit: cover; }
  .hero-img img { max-height: 420px; object-fit: cover; }
}

/* ─────────────────────────────────────────────────
   HERO IMAGE — global framing (desktop + mobile)
   ───────────────────────────────────────────────── */
.hero-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img img {
  width: 100%;
  height: auto;
  display: block;
}
/* Bottom-weighted gradient — image grounds into white base */
.hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 42%,
    rgba(255,255,255,.3) 100%
  );
  pointer-events: none;
  border-radius: inherit;
}

/* ─────────────────────────────────────────────────
   HERO LOAD ANIMATION — staggered fade-up
   ───────────────────────────────────────────────── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-img         { animation: heroFadeUp .5s cubic-bezier(.22,1,.36,1) .0s both; }
.hero-badge       { animation: heroFadeUp .5s cubic-bezier(.22,1,.36,1) .07s both; }
.hero h1          { animation: heroFadeUp .5s cubic-bezier(.22,1,.36,1) .15s both; }
.hero .tagline    { animation: heroFadeUp .5s cubic-bezier(.22,1,.36,1) .23s both; }
.hero .lead       { animation: heroFadeUp .5s cubic-bezier(.22,1,.36,1) .31s both; }
.hero-actions     { animation: heroFadeUp .5s cubic-bezier(.22,1,.36,1) .39s both; }

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .hero-img,
  .hero-badge,
  .hero h1,
  .hero .tagline,
  .hero .lead,
  .hero-actions { animation: none; }
}

/* ── CONTACT HERO ── */
.contact-hero {
  position: relative;
  padding: 96px 0;
  background-image: linear-gradient(135deg, rgba(42,102,78,0.60) 0%, rgba(42,102,78,0.58) 50%, rgba(42,102,78,0.55) 100%), url('assets/images/Deckoutdoor.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  min-height: 350px;
}
.contact-hero h1 {
  color: var(--white);
}
.contact-hero .eyebrow {
  color: rgba(228,240,234,0.9);
}

/* ── HERO SECTION (home page) — Forest Green background ── */
.hero {
  padding: 108px 0 64px;
  background: var(--forest-green);
}
.hero h1 { color: var(--white); }
.hero .tagline { color: rgba(228, 240, 234, .75); }
.hero .lead { color: rgba(255, 255, 255, .85); }
.hero-badge {
  background: rgba(228, 240, 234, .2);
  border: 1px solid rgba(228, 240, 234, .35);
  color: var(--mint);
}
.hero-badge svg { color: var(--mint); }

/* ── CTA SECTION WITH BACKGROUND ── */
.cta-section {
  position: relative;
  padding: 96px 0;
  margin: 64px 0;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/images/Deckoutdoor.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(42, 102, 78, 0.65);
  z-index: 2;
}
.cta-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 28px;
}
.cta-section h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
}
.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 600px;
}
