*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:   #1C3D2E;
  --green:        #2B5741;
  --green-mid:    #3D7A5A;
  --green-light:  #5A9E78;
  --green-pale:   #EBF3EE;
  --green-tint:   #F4F8F5;
  --white:        #FFFFFF;
  --off-white:    #F8F7F4;
  --charcoal:     #1A1A18;
  --dark:         #252520;
  --mid:          #3E3E38;
  --muted:        #72726A;
  --border:       #DDE6E1;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;
}

html { 
  scroll-behavior: smooth;
  scroll-padding-top: 120px; /* nav height (76px) + small breathing room */
}
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ─── TOP BAR ─── */
.topbar {
  background: var(--green-dark);
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 0.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar a { color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.2s; }
.topbar a:hover { color: var(--white); }
.topbar-left { display: flex; gap: 2rem; align-items: center; }
.topbar-right { display: flex; gap: 1.5rem; align-items: center; }
.topbar-phone {
  color: var(--white) !important;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

/* ─── NAV ─── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4rem;
  height: 76px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.nav-logo { display: flex; align-items: center; gap: 0.85rem; text-decoration: none; }
.nav-logo-img { height: 52px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--green-dark);
  letter-spacing: 0.01em;
}
.nav-logo-sub {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-links { display: flex; gap: 0; list-style: none; height: 76px; }
.nav-links > li { position: relative; display: flex; align-items: center; }
.nav-links > li > a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  padding: 0 1.1rem;
  height: 76px;
  display: flex; align-items: center;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links > li > a:hover { color: var(--green); border-bottom-color: var(--green); }
.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 0 1.5rem !important;
  border-bottom: none !important;
  border-radius: 3px;
  margin-left: 0.5rem;
  height: 42px !important;
  display: flex; align-items: center;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--green-dark) !important; }

/* mobile hamburger toggle — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--green-dark);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* dropdown */
.has-dropdown:hover .dropdown { display: block; }
.dropdown {
  display: none;
  position: absolute; top: 76px; left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--green);
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 300;
}
.dropdown li { list-style: none; }
.dropdown a {
  display: block;
  padding: 0.75rem 1.25rem;
  font-size: 0.8rem;
  color: var(--mid);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s, color 0.15s;
  letter-spacing: 0.04em;
}
.dropdown a:hover { background: var(--green-pale); color: var(--green-dark); }
.dropdown li:last-child a { border-bottom: none; }

/* ─── HERO ─── */
#hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  background: var(--green-dark);
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(135deg, rgba(255,255,255,0.02) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255,255,255,0.02) 25%, transparent 25%),
    linear-gradient(315deg, rgba(255,255,255,0.02) 25%, transparent 25%),
    linear-gradient(45deg,  rgba(255,255,255,0.02) 25%, transparent 25%);
  background-size: 60px 60px;
}
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(28,61,46,0.98) 0%, rgba(28,61,46,0.85) 50%, rgba(43,87,65,0.5) 100%);
}
.hero-right-image {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 50%;
  background: var(--green-mid);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem;
  overflow: hidden;
}
.hero-right-image::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--green-dark) 0%, transparent 30%);
  z-index: 1;
}
.hero-img-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  opacity: 0.12; z-index: 0;
}
.hero-img-placeholder svg { width: 100px; height: 100px; }
.hero-img-placeholder p { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: white; }

.hero-content {
  position: relative; z-index: 2;
  padding: 5rem 4rem;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(90,158,120,0.2);
  border: 1px solid rgba(90,158,120,0.4);
  color: #8FD4AA;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.75rem;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #8FD4AA; }
h1.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 500;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
h1.hero-title em { font-style: italic; color: #8FD4AA; }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.btn-green {
  background: var(--green-light);
  color: var(--white);
  padding: 1rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: none; border-radius: 3px;
  cursor: pointer;
  transition: background 0.25s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-green:hover { background: var(--green-mid); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  padding: 1rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.hero-stats {
  display: flex; gap: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.stat-num span { color: #8FD4AA; }
.stat-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 0.35rem; }

/* ─── PROOF STRIP ─── */
.proof-strip {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 4rem;
}
.proof-strip-inner {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; align-items: center;
}
.proof-tag {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green-dark);
  border: 1px solid var(--border);
  padding: 0.55rem 1.25rem;
  border-radius: 2px;
  background: var(--white);
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.proof-tag:hover { background: var(--green-dark); color: var(--white); border-color: var(--green-dark); }
.proof-tag::before { content: '→'; font-size: 0.8rem; }
.proof-divider { color: var(--border); font-size: 1.5rem; }

/* ─── SECTIONS SHARED ─── */
section { padding: 6rem 4rem; }
.section-eyebrow {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--green-mid); margin-bottom: 0.85rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.section-eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--green-mid); }
h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 500; line-height: 1.15;
  color: var(--charcoal);
}
h2.section-title em { font-style: italic; color: var(--green-mid); }
.divider { width: 48px; height: 3px; background: var(--green); margin: 1.5rem 0 2rem; border-radius: 2px; }

/* ─── SERVICES ─── */
#services { background: var(--charcoal); padding: 6rem 4rem; }
#services .section-eyebrow { color: #8FD4AA; }
#services .section-eyebrow::before { background: #8FD4AA; }
#services h2 { color: var(--white); }
#services .divider { background: var(--green-light); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; flex-wrap: wrap; gap: 2rem; }
.services-sub { color: rgba(255,255,255,0.5); max-width: 440px; font-size: 0.95rem; font-weight: 300; line-height: 1.8; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.06); }
.service-card {
  background: var(--dark);
  padding: 2.5rem 2rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  border: 1px solid transparent;
  position: relative; overflow: hidden;
  text-decoration: none; display: flex; flex-direction: column;
}
/* blurred photo background layer */
.service-card::after {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--card-bg, none);
  background-size: cover; background-position: center;
  filter: blur(3px) brightness(0.28) saturate(0.6);
  transform: scale(1.06); /* prevent blur edge bleed */
  transition: filter 0.4s, transform 0.4s;
  z-index: 0;
}
.service-card:hover::after { filter: blur(2px) brightness(0.38) saturate(0.7); transform: scale(1.08); }
/* keep all card content above the blurred layer */
.service-card > * { position: relative; z-index: 1; }
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--green-light);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover { background: #1E1E1B; border-color: rgba(90,158,120,0.25); }
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: var(--font-display);
  font-size: 3.5rem; font-weight: 600;
  color: rgba(255,255,255,0.05);
  line-height: 1; margin-bottom: 1rem;
}
.service-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(90,158,120,0.35);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-light);
  margin-bottom: 1.25rem;
}
.service-name {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 500;
  color: var(--white); margin-bottom: 0.75rem;
}
.service-desc { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.75; font-weight: 300; }
.service-arrow {
  display: block;
  background: transparent; color: var(--green-light); border: none;
  margin-top: auto; padding-top: 1.25rem;
  font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.16em;
  opacity: 0.7;
  cursor: pointer;
  border-radius: 3px;
  transition: opacity 0.2s;
  text-decoration: none;
}
.service-card:hover .service-arrow { opacity: 1; }

/* ─── ABOUT ─── */
#about { background: var(--green-tint); display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-visual { position: relative; }
.about-img-block {
  background: var(--green-dark);
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem;
}
.about-img-block svg { opacity: 0.08; }
.about-img-block img {width: 100%;
  height: 100%;
  object-fit: cover;}
.about-img-block p { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.2); }
.about-accent-box {
  position: absolute; bottom: -2rem; right: -2rem;
  background: var(--green);
  padding: 1.5rem 2rem;
  color: white;
}
.about-accent-num { font-family: var(--font-display); font-size: 3rem; font-weight: 600; line-height: 1; }
.about-accent-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 0.25rem; }
.about-text p { color: var(--muted); margin-bottom: 1.25rem; line-height: 1.85; font-size: 0.95rem; font-weight: 300; }
.about-clients { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 2rem; }
.client-chip {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green-dark);
  border: 1px solid rgba(43,87,65,0.25);
  background: var(--white);
  padding: 0.4rem 0.9rem; border-radius: 100px;
}

/* ─── PORTFOLIO ─── */
#portfolio { background: var(--white); }
.portfolio-tabs { display: flex; gap: 0.5rem; margin: 2rem 0 2.5rem; flex-wrap: wrap; }
.tab {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  cursor: pointer; transition: all 0.2s; background: var(--white);
}
.tab.active, .tab:hover { background: var(--green-dark); color: var(--white); border-color: var(--green-dark); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.portfolio-item {
  position: relative; overflow: hidden;
  background: var(--green-dark);
  cursor: pointer; border-radius: 2px;
}
.portfolio-item.featured { grid-column: span 2; }
.portfolio-placeholder {
  width: 100%; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0.75rem;
  background: linear-gradient(135deg, #2B5741 0%, #1C3D2E 100%);
}
.portfolio-item.featured .portfolio-placeholder { aspect-ratio: 5/3; }
/* card sitting beside the featured item — fills the row height the featured item sets */
.portfolio-item.beside-featured { display: flex; flex-direction: column; }
.portfolio-item.beside-featured .portfolio-placeholder { aspect-ratio: unset; flex: 1; }
.portfolio-placeholder svg { opacity: 0.15; }
.portfolio-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.portfolio-placeholder p { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.2); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: rgba(28,61,46,0.9);
  display: flex; align-items: flex-end;
  padding: 2rem;
  opacity: 0; transition: opacity 0.3s;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 500; color: white; margin-bottom: 0.25rem;
}
.portfolio-info span { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); }

/* Individual service-page gallery — flexible column count since each page has a different number of photos */
.service-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.portfolio-label {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--green); color: white;
  font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  padding: 0.3rem 0.75rem; border-radius: 2px;
  z-index: 1;
}

/* ─── TESTIMONIALS ─── */
#testimonials { background: var(--green-dark); }
#testimonials .section-eyebrow { color: #8FD4AA; }
#testimonials .section-eyebrow::before { background: #8FD4AA; }
#testimonials h2 { color: var(--white); }
#testimonials .divider { background: var(--green-light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2.25rem;
  border-radius: 3px;
  transition: background 0.3s;
  position: relative;
}
.testi-card:hover { background: rgba(255,255,255,0.08); }
.testi-quote {
  font-family: var(--font-display);
  font-size: 4rem; line-height: 0.5;
  color: var(--green-light); opacity: 0.4;
  margin-bottom: 1.5rem;
}
.testi-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem; line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.75rem;
}
.testi-stars { color: #8FD4AA; letter-spacing: 0.1em; font-size: 0.9rem; margin-bottom: 1rem; }
.testi-name { font-size: 0.85rem; font-weight: 600; color: var(--white); letter-spacing: 0.03em; }
.testi-role { font-size: 0.72rem; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; margin-top: 0.2rem; }

/* ─── BLOG ─── */
#blog { background: var(--off-white); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.blog-card { background: var(--white); border: 1px solid var(--border); padding: 2rem; border-radius: 3px; transition: transform 0.2s, box-shadow 0.2s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.blog-tag { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green-mid); margin-bottom: 0.75rem; }
.blog-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: var(--charcoal); margin-bottom: 0.75rem; line-height: 1.35; }
.blog-excerpt { font-size: 0.875rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.25rem; font-weight: 300; }
.blog-meta { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.05em; padding-top: 1rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; }
.blog-link { color: var(--green-mid); text-decoration: none; font-weight: 600; font-size: 0.75rem; letter-spacing: 0.08em; }
.blog-link:hover { color: var(--green-dark); }

/* ─── FAQ ─── */
#faq { background: var(--green-tint); }
.faq-layout { display: grid; grid-template-columns: 1fr 1.8fr; gap: 5rem; margin-top: 3rem; align-items: start; }
.faq-sidebar p { color: var(--muted); font-size: 0.95rem; line-height: 1.85; margin-bottom: 1.5rem; font-weight: 300; }
.faq-list {}
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem 0; background: none; border: none; cursor: pointer; text-align: left; gap: 1rem;
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--charcoal);
}
.faq-ico {
  flex-shrink: 0; width: 28px; height: 28px;
  border-radius: 50%; border: 1.5px solid var(--green-mid);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-mid); font-size: 1.1rem;
  transition: transform 0.3s, background 0.2s;
}
.faq-item.open .faq-ico { transform: rotate(45deg); background: var(--green-mid); color: white; border-color: var(--green-mid); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  font-size: 0.925rem; color: var(--muted); line-height: 1.85; font-weight: 300;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.5rem; }

/* ─── CONTACT ─── */
#contact { background: var(--charcoal); }
#contact .section-eyebrow { color: #8FD4AA; }
#contact .section-eyebrow::before { background: #8FD4AA; }
#contact h2 { color: var(--white); }
#contact .divider { background: var(--green-light); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; margin-top: 3rem; }
.contact-info-block { color: rgba(255,255,255,0.6); }
.contact-info-block p { margin-bottom: 2rem; font-size: 0.95rem; line-height: 1.85; font-weight: 300; }
.contact-detail { margin-bottom: 1.5rem; }
.contact-detail-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green-light); margin-bottom: 0.3rem; }
.contact-detail-val { font-size: 0.95rem; color: rgba(255,255,255,0.85); }
.contact-detail-val a { color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.2s; }
.contact-detail-val a:hover { color: #8FD4AA; }
.social-row { display: flex; gap: 0.75rem; margin-top: 2.5rem; }
.social-btn {
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em;
  border-radius: 3px; transition: all 0.2s;
}
.social-btn:hover { background: var(--green-mid); border-color: var(--green-mid); color: white; }

.map-embed {
  margin-top: 2.5rem; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px; overflow: hidden;
}
.map-embed iframe {
  display: block; width: 100%; height: 220px;
  filter: grayscale(25%) brightness(0.92) contrast(1.08);
}
.map-directions {
  display: block; padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.04);
  color: var(--green-light); text-decoration: none;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.map-directions:hover { background: rgba(255,255,255,0.08); color: #8FD4AA; }

/* FORM */
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.form-control {
  background: rgba(255,255,255,0.055); border: 1px solid rgba(255,255,255,0.1);
  color: white; padding: 0.9rem 1rem; font-family: var(--font-body); font-size: 0.9rem;
  border-radius: 3px; outline: none; transition: border-color 0.2s; width: 100%; font-weight: 300;
}
.form-control:focus { border-color: var(--green-light); background: rgba(255,255,255,0.075); }
.form-control::placeholder { color: rgba(255,255,255,0.2); }
select.form-control option { background: var(--charcoal); }
textarea.form-control { resize: vertical; min-height: 120px; }
.upload-area {
  border: 1.5px dashed rgba(255,255,255,0.2); border-radius: 3px; padding: 1.5rem;
  text-align: center; cursor: pointer; transition: border-color 0.2s, background 0.2s;
  position: relative;
}
.upload-area:hover { border-color: var(--green-light); }
.upload-area.drag-over { border-color: var(--green-light); background: rgba(143,212,170,0.07); }
.upload-area.has-files { border-style: solid; border-color: var(--green-light); cursor: default; }
.upload-area.has-error { border-color: #e05c5c; }
.upload-area input { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.upload-area.has-files input { pointer-events: none; }
.upload-label { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.upload-label span { color: #8FD4AA; font-weight: 500; }
.upload-label strong { color: rgba(255,255,255,0.5); font-weight: 500; }
.upload-file-list {
  list-style: none; margin: 0.85rem 0 0; padding: 0;
  text-align: left; display: flex; flex-direction: column; gap: 0.4rem;
}
.upload-file-list li {
  font-size: 0.78rem; color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.06); border-radius: 2px;
  padding: 0.35rem 0.65rem;
  display: flex; justify-content: space-between; gap: 1rem;
}
.upload-file-list li .file-size { color: rgba(255,255,255,0.35); white-space: nowrap; }
.upload-error {
  margin-top: 0.65rem; font-size: 0.78rem;
  color: #e8807f; font-weight: 500;
}
.upload-clear {
  margin-top: 0.85rem; background: none;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 2px;
  color: rgba(255,255,255,0.45); font-size: 0.72rem;
  padding: 0.35rem 0.85rem; cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.upload-clear:hover { border-color: rgba(255,255,255,0.5); color: rgba(255,255,255,0.75); }
.btn-submit {
  background: var(--green-light); color: white; border: none;
  padding: 1.05rem 2.5rem; font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  cursor: pointer; border-radius: 3px; transition: background 0.25s; align-self: flex-start;
  margin-top: 0.25rem;
}
.btn-submit:hover { background: var(--green-mid); }
.form-note { font-size: 0.72rem; color: rgba(255,255,255,0.25); margin-top: 0.5rem; }

/* ─── FOOTER ─── */
.footer-main {
  background: var(--green-dark);
  padding: 4rem 4rem 2.5rem;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem;
}
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo img { height: 44px; }
.footer-logo-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: white; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.8; font-weight: 300; margin-bottom: 1.5rem; }
.footer-col h4 {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--green-light); margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; font-weight: 300; }
.footer-col a:hover { color: white; }
.footer-bottom {
  background: #122318;
  padding: 1.25rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: rgba(255,255,255,0.25); letter-spacing: 0.04em; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.65); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-content > * { opacity: 0; animation: fadeUp 0.8s ease forwards; }
.hero-badge        { animation-delay: 0.05s; }
h1.hero-title      { animation-delay: 0.2s; }
.hero-sub          { animation-delay: 0.35s; }
.hero-actions      { animation-delay: 0.5s; }
.hero-stats        { animation-delay: 0.65s; }

/* ─── MOBILE ─── */
@media (max-width: 960px) {
  .topbar {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.6rem 1.5rem;
    font-size: 0.68rem;
  }
  .topbar-left, .topbar-right {
    flex: 1 1 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
  }
  nav { padding: 0 1.5rem; position: sticky; }
  .nav-toggle { display: flex; }

  .nav-links {
    display: flex;
    flex-direction: column;
    height: auto;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-links.open { max-height: 80vh; overflow-y: auto; }

  .nav-links > li { width: 100%; display: block; }
  .nav-links > li > a {
    height: auto; width: 100%;
    padding: 0.95rem 1.5rem;
    border-bottom: 1px solid var(--border);
    border-left: 3px solid transparent;
  }
  .nav-links > li > a:hover { border-bottom-color: var(--border); border-left-color: var(--green); }

  /* shrink Request Estimate button to fit its text on mobile */
  .nav-cta {
    margin: 0.75rem 1.5rem !important;
    height: auto !important;
    width: auto !important;
    padding: 0.55rem 1rem !important;
    font-size: 0.72rem !important;
    justify-content: center;
  }

  /* Services dropdown shown inline, always expanded — no hover/accordion on mobile */
  .has-dropdown:hover .dropdown { display: block; }
  .dropdown {
    display: block;
    position: static;
    border: none;
    border-top: none;
    box-shadow: none;
    min-width: 0;
  }
  .dropdown a { padding-left: 2.5rem; background: var(--green-pale); }

  /* normalise all horizontal padding to 1.25rem across every section and strip */
  section { padding: 2.5rem 1.25rem; }
  #services { padding: 2.5rem 1.25rem; }
  .hero-content { padding: 2rem 1.25rem; max-width: 100%; }
  .proof-strip { padding: 1.25rem 1.25rem; }
  #hero { min-height: auto; }
  .hero-right-image { display: none; }
  h1.hero-title { font-size: 2.8rem; }
  .hero-stats { gap: 2rem; }
  #about { grid-template-columns: 1fr; gap: 2rem; }
  .about-accent-box { right: 0; bottom: -1rem; }
  .services-grid, .testimonials-grid, .blog-grid, .portfolio-grid { grid-template-columns: 1fr; }
  .topbar { display: none; }
  .service-card { padding-top: 1.5rem; padding-bottom: 1.5rem; }
  .testi-card { padding-top: 1.25rem; padding-bottom: 1.25rem; }
  .portfolio-item.featured { grid-column: span 1; }
  .portfolio-item.beside-featured { display: block; }
  .portfolio-item.beside-featured .portfolio-placeholder { flex: unset; aspect-ratio: 4/3; }
  .faq-layout { grid-template-columns: 1fr; gap: 2rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 2.5rem; padding: 2.5rem 1.25rem 2rem; }
  .footer-bottom { padding: 1.25rem 1.25rem; flex-direction: column; text-align: center; }
}
