@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* ─── Variables ─────────────────────────────────────────── */
:root {
  --white:       #FFFFFF;
  --sky:         #66B3FF;
  --sky-78:      rgba(102,179,255,0.78);
  --emerald:     #2E996B;
  --dark-green:  #1B3F2C;
  --black:       #000000;
  --gray-light:  #F5F7FA;
  --gray:        #6B7280;
  --shadow:      0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.14);
  --radius:      12px;
  --font-head:   'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body:   'Calibri', 'Trebuchet MS', Arial, sans-serif;
  --header-h:    72px;
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Typography ─────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-head); letter-spacing: 0.04em; line-height: 1.05; }
h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h4 { font-size: 1.2rem; letter-spacing: 0.06em; }
p  { line-height: 1.7; }

/* ─── Utility ────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-family: var(--font-head);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  border: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-emerald { background: var(--emerald); color: var(--white); }
.btn-emerald:hover { background: #257d57; }
.btn-sky    { background: var(--sky); color: var(--white); }
.btn-outline-white {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--emerald); }
.section-label {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--emerald);
  display: block;
  margin-bottom: 10px;
}
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }

/* ─── Header ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.09);
  transition: box-shadow 0.2s;
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}
.logo-link { display: flex; align-items: center; gap: 10px; }
.logo-link img { height: 56px; width: auto; }
.logo-wordmark {
  font-family: var(--font-head);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--dark-green);
  line-height: 1.1;
}
.call-link {
  text-align: center;
  font-family: var(--font-head);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--emerald);
  transition: color 0.15s;
}
.call-link:hover { color: var(--dark-green); }

/* Nav */
.main-nav { display: flex; align-items: center; justify-content: flex-end; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: block;
  padding: 10px 14px;
  font-family: var(--font-head);
  font-size: 1.0rem;
  letter-spacing: 0.05em;
  color: var(--black);
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}
.nav-list > li > a:hover,
.nav-list > li.active > a { color: var(--emerald); background: rgba(46,153,107,0.06); }
.nav-list > li.has-dropdown > a::after {
  content: ' ▾';
  font-size: 0.7em;
  opacity: 0.6;
}
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 160px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.18s, transform 0.18s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 12px 20px;
  font-family: var(--font-head);
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  color: var(--black);
  transition: background 0.12s, color 0.12s;
}
.dropdown li a:hover { background: var(--gray-light); color: var(--emerald); }
.dropdown li:first-child a { border-radius: var(--radius) var(--radius) 0 0; }
.dropdown li:last-child  a { border-radius: 0 0 var(--radius) var(--radius); }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.22s, opacity 0.22s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Page offset for sticky header */
.page-content { padding-top: var(--header-h); }

/* ─── Floating Call Button ───────────────────────────────── */
.float-call {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 800;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(46,153,107,0.45);
  transition: transform 0.18s, box-shadow 0.18s;
  animation: pulse-ring 2.5s ease-in-out infinite;
}
.float-call:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(46,153,107,0.55); }
.float-call svg { width: 26px; height: 26px; fill: var(--white); }
@keyframes pulse-ring {
  0%,100% { box-shadow: 0 6px 24px rgba(46,153,107,0.45), 0 0 0 0 rgba(46,153,107,0.4); }
  50%      { box-shadow: 0 6px 24px rgba(46,153,107,0.45), 0 0 0 14px rgba(46,153,107,0); }
}

/* ─── Hero ────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--dark-green) 0%, #1f5c3a 50%, var(--emerald) 100%);
  color: var(--white);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-cleaning.jpg') center/cover no-repeat;
  opacity: 0.18;
}
.hero-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; padding: 0 24px; }
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero-logo {
  width: 150px;
  height: auto;
  margin: 0 auto 32px;
}
.hero p { font-size: 1.2rem; opacity: 0.9; max-width: 680px; margin: 0 auto 36px; }

/* Service path cards */
.service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto 60px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  color: var(--black);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 14px 48px rgba(0,0,0,0.18); }
.service-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: var(--sky-78);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card-icon svg { width: 32px; height: 32px; fill: var(--dark-green); }
.service-card h3 { margin-bottom: 8px; color: var(--dark-green); }
.service-card p { color: var(--gray); font-size: 0.95rem; }
.service-card .card-arrow {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-head);
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  color: var(--emerald);
}

/* Team photo */
.team-photo-wrap {
  max-width: 820px;
  margin: 0 auto 60px;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.12);
}
.team-photo-wrap img { width: 100%; height: auto; display: block; }
.photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-head);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

/* ─── Social Proof ───────────────────────────────────────── */
.social-proof { padding: 80px 0; background: var(--white); }
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}
.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: 2px solid var(--sky);
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 1.0rem;
  letter-spacing: 0.05em;
  color: var(--dark-green);
  background: var(--white);
}
.badge svg { width: 20px; height: 20px; fill: var(--emerald); flex-shrink: 0; }
.rating-box {
  background: var(--sky-78);
  border-radius: var(--radius);
  padding: 28px 40px;
  text-align: center;
  max-width: 360px;
  margin: 0 auto 48px;
  box-shadow: var(--shadow);
}
.rating-stars { color: var(--white); font-size: 1.6rem; letter-spacing: 2px; margin-bottom: 8px; }
.rating-text {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.06em;
}
.rating-sub { color: rgba(255,255,255,0.85); font-size: 0.95rem; margin-top: 4px; }

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--sky-78);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.testimonial-stars { color: var(--white); font-size: 1.1rem; margin-bottom: 12px; }
.testimonial-text {
  color: var(--white);
  font-size: 0.97rem;
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-author {
  font-family: var(--font-head);
  font-size: 1.0rem;
  letter-spacing: 0.05em;
  color: var(--dark-green);
}
.testimonial-role { font-size: 0.85rem; color: rgba(0,0,0,0.55); margin-top: 2px; }

/* Service Areas */
.service-areas { padding: 60px 0; background: var(--gray-light); text-align: center; }
.service-areas h2 { margin-bottom: 24px; color: var(--dark-green); }
.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.area-tag {
  padding: 8px 18px;
  background: var(--white);
  border-radius: 50px;
  font-family: var(--font-head);
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  color: var(--dark-green);
}

/* ─── Page Hero (inner pages) ──────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--emerald) 100%);
  color: var(--white);
  padding: 72px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Background photo slots — the gradient stays visible until the
   image file is dropped into images/ (missing bg paints nothing) */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
  opacity: 0.16;
}
.page-hero--cleaning::before { background-image: url('../images/hero-cleaning-page.jpg'); }
.page-hero--handyman::before { background-image: url('../images/hero-handyman-page.jpg'); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { font-size: 1.1rem; opacity: 0.88; max-width: 640px; margin: 0 auto; }

/* ─── Services Grid (internal pages) ──────────────────── */
.services-section { padding: 80px 0; background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.svc-card {
  background: var(--white);
  border: 1.5px solid #E5EAF0;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sky);
}
.svc-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--sky-78), rgba(46,153,107,0.15));
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.svc-card h3 { color: var(--dark-green); margin-bottom: 10px; }
.svc-card p  { color: var(--gray); font-size: 0.93rem; }

/* ─── Photo Band (service pages) ────────────────────────── */
.photo-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 920px;
  margin: 56px auto 0;
  padding: 0 20px;
}
.photo-band figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/2;
  background: var(--gray-light);
  box-shadow: var(--shadow);
}
.photo-band img { width: 100%; height: 100%; object-fit: cover; }

/* ─── CTA Banner ─────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--dark-green), var(--emerald));
  padding: 72px 0;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p  { margin-bottom: 32px; opacity: 0.88; font-size: 1.1rem; }

/* ─── About Page ─────────────────────────────────────────── */
.about-section { padding: 80px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
}
.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-content h2 { color: var(--dark-green); margin-bottom: 20px; }
.about-content p  { color: var(--gray); margin-bottom: 16px; }
.about-values { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--gray-light);
  border-radius: 8px;
  border-left: 4px solid var(--emerald);
}
.value-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.value-text h4 { font-family: var(--font-head); color: var(--dark-green); margin-bottom: 4px; }
.value-text p  { font-size: 0.9rem; color: var(--gray); margin: 0; }

/* ─── Portfolio ──────────────────────────────────────────── */
.portfolio-section { padding: 80px 0; background: var(--white); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.portfolio-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  background: var(--gray-light);
  box-shadow: var(--shadow);
  cursor: pointer;
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,63,44,0.7) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay span {
  font-family: var(--font-head);
  color: var(--white);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
}
.portfolio-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gray);
  background: linear-gradient(135deg, #eaf2ff 0%, #e6f5ee 100%);
}
.portfolio-placeholder .ph-icon { font-size: 2.4rem; opacity: 0.5; }
.portfolio-placeholder span { font-family: var(--font-head); letter-spacing: 0.06em; font-size: 0.9rem; opacity: 0.7; }

/* ─── Contact Page ───────────────────────────────────────── */
.contact-section { padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { color: var(--dark-green); margin-bottom: 24px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--gray-light);
  border-radius: 8px;
  margin-bottom: 14px;
  transition: background 0.15s;
}
.contact-detail:hover { background: #ddeeff; }
.contact-detail svg { width: 22px; height: 22px; fill: var(--emerald); flex-shrink: 0; }
.contact-detail-text { font-size: 1.05rem; }
.contact-detail-text strong { display: block; font-family: var(--font-head); letter-spacing: 0.04em; color: var(--dark-green); }
.contact-cta { margin-top: 28px; }

/* ─── Lead Form ──────────────────────────────────────────── */
.lead-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid #E5EAF0;
}
.lead-form h3 { color: var(--dark-green); margin-bottom: 24px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  letter-spacing: 0.04em;
  font-size: 0.9rem;
  color: var(--dark-green);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #D1D9E0;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(102,179,255,0.2);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit-btn {
  width: 100%;
  padding: 18px;
  font-size: 1.35rem;
  margin-top: 8px;
}
.form-error {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 8px;
  background: #FDECEA;
  color: #8A2A1D;
  font-size: 0.95rem;
}
.form-success {
  display: none;
  background: linear-gradient(135deg, var(--emerald), var(--dark-green));
  color: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
}
.form-success.show { display: block; }
.form-success h3 { color: var(--white); font-size: 1.8rem; margin-bottom: 12px; }
.form-success p  { opacity: 0.9; }
.success-icon { font-size: 3rem; margin-bottom: 16px; }

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--dark-green);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: start;
  margin-bottom: 40px;
}
.footer-logo img {
  height: 72px;
  width: auto;
  margin-bottom: 12px;
}
.footer-brand {
  font-family: var(--font-head);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--white);
}
.footer-eco {
  margin-top: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-style: italic;
}
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, auto));
  gap: 24px;
  justify-content: start;
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--sky);
  margin-bottom: 14px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-social { text-align: right; }
.footer-social h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--sky);
  margin-bottom: 14px;
}
.social-icons { display: flex; gap: 14px; justify-content: flex-end; margin-bottom: 20px; }
.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.social-icon:hover { background: rgba(255,255,255,0.22); }
.social-icon svg { width: 20px; height: 20px; fill: var(--white); }
.footer-privacy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.15s;
  display: block;
  margin-bottom: 8px;
}
.footer-privacy:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ─── Brand showcase band (about page) ──────────────────── */
.showcase-band { padding: 0 0 80px; background: var(--white); }
.showcase-band figure {
  margin: 0 auto;
  max-width: 1000px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--gray-light);
}
.showcase-band img { width: 100%; height: auto; display: block; }

/* ─── Legal pages (privacy) ─────────────────────────────── */
.legal-section { padding: 72px 0; background: var(--white); }
.legal-section .container { max-width: 820px; }
.legal-section h2 { color: var(--dark-green); margin: 40px 0 14px; font-size: 1.7rem; }
.legal-section p, .legal-section li { color: var(--gray); margin-bottom: 12px; }
.legal-section ul { list-style: disc; padding-left: 24px; }
.legal-updated { font-style: italic; font-size: 0.9rem; }

/* ─── 404 page ──────────────────────────────────────────── */
.notfound-section { padding: 110px 0; text-align: center; background: var(--white); }
.notfound-code {
  font-family: var(--font-head);
  font-size: clamp(6rem, 18vw, 9rem);
  color: var(--sky);
  line-height: 1;
}
.notfound-section h1 { color: var(--dark-green); margin: 12px 0 16px; }
.notfound-section p { color: var(--gray); max-width: 520px; margin: 0 auto 32px; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .header-inner { grid-template-columns: auto 1fr; }
  .call-link { display: none; }
  .nav-toggle { display: flex; }
  .nav-list {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 0;
    box-shadow: var(--shadow-lg);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.28s ease, opacity 0.28s;
    pointer-events: none;
  }
  .nav-list.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-list > li > a { padding: 14px 28px; font-size: 1.2rem; border-radius: 0; }
  .dropdown {
    position: static;
    box-shadow: none;
    border-radius: 0;
    opacity: 1;
    pointer-events: all;
    transform: none;
    background: var(--gray-light);
    display: none;
  }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown li a { padding: 10px 44px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-social { text-align: left; }
  .social-icons { justify-content: flex-start; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-cards { grid-template-columns: 1fr; max-width: 420px; }
}

@media (max-width: 600px) {
  :root { --header-h: 64px; }
  .hero { padding: 60px 0 56px; }
  .form-row { grid-template-columns: 1fr; }
  .lead-form { padding: 24px 18px; }
  .btn { padding: 14px 28px; font-size: 1.1rem; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .photo-band { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-links-grid { grid-template-columns: 1fr; }
}
