/* ============================================================
   HOLLANDSCAPES — Premium Editorial Stylesheet
   Colors: #2D5016 (green) · #C8A96E (stone) · #2C2C2C (charcoal) · #FAF8F4 (cream)
   ============================================================ */

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

:root {
  --green:   #2D5016;
  --green-l: #3a6b1e;
  --stone:   #C8A96E;
  --stone-l: #d9bf95;
  --charcoal:#2C2C2C;
  --cream:   #FAF8F4;
  --white:   #ffffff;
  --grey:    #6b6b6b;
  --grey-l:  #e8e5e0;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Source Serif 4', Georgia, serif;
  --ff-ui:      'DM Sans', system-ui, sans-serif;

  --radius: 4px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow: 0 8px 40px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 80px rgba(0,0,0,0.18);
}

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

body {
  font-family: var(--ff-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 500; line-height: 1.2; color: var(--charcoal); }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; }
em { font-style: italic; color: var(--green); }
p { font-family: var(--ff-body); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.85rem 2rem;
  font-family: var(--ff-ui); font-weight: 500; font-size: 0.9rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer; transition: var(--transition);
  white-space: nowrap;
}
.btn--primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn--primary:hover { background: var(--green-l); border-color: var(--green-l); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(45,80,22,0.3); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn--ghost:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn--outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn--outline:hover { background: var(--green); color: var(--white); }
.btn--full { width: 100%; justify-content: center; font-size: 1rem; padding: 1rem 2rem; }

/* ---------- Section Shared ---------- */
.section-label {
  font-family: var(--ff-ui); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--stone); margin-bottom: 1rem; display: block;
}
.section-title { margin-bottom: 1.2rem; }
.section-desc { max-width: 48ch; font-size: 1.1rem; color: var(--grey); margin: 0 auto; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; padding: 0 1rem; }

/* ---------- Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(250,248,244,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1400px; margin: 0 auto; padding: 1.2rem 2rem;
}
.nav__logo { display: flex; align-items: center; gap: 0.75rem; }
.nav__logo-img {
  height: 40px; width: auto; object-fit: contain;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.6));
  transition: filter 0.4s;
}
.nav.scrolled .nav__logo-img { filter: none; }
.nav__logo-text {
  font-family: var(--ff-display); font-size: 1.2rem; font-weight: 600;
  color: var(--white); transition: color 0.4s;
}
.nav.scrolled .nav__logo-text { color: var(--green); }
.nav__links {
  display: flex; gap: 2rem; align-items: center;
}
.nav__links a {
  font-family: var(--ff-ui); font-size: 0.88rem; font-weight: 500;
  letter-spacing: 0.03em; color: rgba(255,255,255,0.9);
  transition: color 0.3s; position: relative;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--stone); transform: scaleX(0);
  transition: transform 0.3s; transform-origin: left;
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav.scrolled .nav__links a { color: var(--charcoal); text-shadow: none; }
.nav__cta {
  font-family: var(--ff-ui); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  background: var(--stone); color: var(--charcoal);
  padding: 0.6rem 1.4rem; border-radius: var(--radius);
  transition: var(--transition);
}
.nav__cta:hover { background: var(--stone-l); transform: translateY(-1px); }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); }
.nav.scrolled .nav__burger span { background: var(--charcoal); }
.nav__mobile {
  display: none; flex-direction: column;
  background: var(--cream); padding: 1.5rem 2rem 2rem;
  border-top: 1px solid var(--grey-l);
}
.nav__mobile.open { display: flex; }
.nav__mobile ul { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 1.5rem; }
.nav__mobile a { font-family: var(--ff-ui); font-size: 1.1rem; color: var(--charcoal); font-weight: 500; }
.mobile-cta { color: var(--green) !important; font-weight: 700 !important; }
.nav__mobile-tel a { font-family: var(--ff-ui); font-size: 1.3rem; font-weight: 700; color: var(--green); }

/* ---------- HERO ---------- */
/* Override global em color — hero uses stone so italic text reads on dark photo overlays */
.hero__headline em { color: var(--stone); }

.hero {
  position: relative; height: 100vh; min-height: 620px;
  display: flex; align-items: center; overflow: hidden;
  background: #1a2d0f; /* dark fallback if images are slow/blocked */
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero__slide.active { opacity: 1; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,     /* strong top — protects nav text on any slide */
    rgba(0,0,0,0.20) 18%,    /* lighten quickly to show the photo */
    rgba(10,25,5,0.45) 50%,
    rgba(10,25,5,0.80) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative; z-index: 3;
  max-width: 1400px; margin: 0 auto; padding: 0 2rem;
  padding-top: 5rem;
}
.hero__eyebrow {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--ff-ui); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--stone); margin-bottom: 1.5rem;
  flex-wrap: nowrap; white-space: nowrap;
}
.hero__badge {
  background: var(--stone); color: var(--charcoal);
  padding: 0.25rem 0.75rem; border-radius: 2px; font-weight: 700;
}
.hero__dot { opacity: 0.5; }
.hero__headline {
  color: var(--white); max-width: 14ch;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero__sub {
  font-family: var(--ff-body); font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.85); max-width: 50ch;
  margin-bottom: 2.5rem; line-height: 1.6;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem; z-index: 2;
  font-family: var(--ff-ui); font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
  animation: scrollHint 2.5s ease-in-out infinite;
}
.hero__scroll-line { width: 1px; height: 40px; background: rgba(255,255,255,0.4); }
@keyframes scrollHint { 0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); } 50% { opacity: 1; transform: translateX(-50%) translateY(6px); } }
.hero__slide-dots {
  position: absolute; bottom: 2.5rem; right: 2rem; z-index: 2;
  display: flex; gap: 0.5rem;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.4); cursor: pointer; transition: var(--transition);
}
.dot.active { background: var(--stone); width: 24px; border-radius: 4px; }

/* ---------- TRUST BAR ---------- */
.trust {
  background: var(--green); color: var(--white);
  padding: 0;
  scroll-margin-top: 70px;
}
.trust__inner {
  display: flex; align-items: stretch;
  max-width: 1400px; margin: 0 auto;
}
.trust__item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.5rem 2rem; flex: 1;
  font-family: var(--ff-ui);
}
.trust__item div { display: flex; flex-direction: column; gap: 0.15rem; }
.trust__item strong { font-size: 0.95rem; font-weight: 700; color: var(--stone); }
.trust__item span { font-size: 0.78rem; opacity: 0.8; }
.trust__icon { font-size: 1.4rem; flex-shrink: 0; }
.trust__divider { width: 1px; background: rgba(255,255,255,0.15); margin: 0.5rem 0; }
.trust__phone { color: var(--stone); font-size: 0.95rem; font-weight: 700; }

/* ---------- MARQUEE ---------- */
.marquee-wrap {
  background: var(--stone); color: var(--charcoal);
  overflow: hidden; padding: 0.9rem 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.marquee {
  display: flex; gap: 0; white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  font-family: var(--ff-ui); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
}
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-wrap:hover .marquee { animation-play-state: paused; }

/* ---------- SERVICES ---------- */
.services {
  padding: 7rem 2rem;
  max-width: 1400px; margin: 0 auto;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.service-card {
  position: relative; overflow: hidden; border-radius: 6px;
  height: 480px;
  background-size: cover; background-position: center;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,25,5,0.88) 0%, rgba(10,25,5,0.3) 60%, transparent 100%);
  transition: background 0.4s ease;
}
.service-card:hover .service-card__overlay {
  background: linear-gradient(to top, rgba(10,25,5,0.95) 0%, rgba(10,25,5,0.5) 60%, rgba(10,25,5,0.1) 100%);
}
.service-card__num {
  position: absolute; top: 1.5rem; left: 1.5rem;
  font-family: var(--ff-ui); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; color: var(--stone); z-index: 2;
}
.service-card__content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem 1.75rem; z-index: 2;
}
.service-card__content h3 { color: var(--white); margin-bottom: 0.6rem; font-size: 1.4rem; }
.service-card__content p { color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.5; margin-bottom: 1.2rem; }
.service-card__link {
  font-family: var(--ff-ui); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--stone); display: inline-block;
  transform: translateY(8px); opacity: 0;
  transition: var(--transition);
}
.service-card:hover .service-card__link { transform: translateY(0); opacity: 1; }
.services__range {
  text-align: center; padding: 2rem;
  background: var(--grey-l); border-radius: 6px;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.services__range p { font-family: var(--ff-ui); font-size: 1rem; flex: 1; min-width: 200px; text-align: left; }

/* ---------- FEATURED PROJECT ---------- */
.feature-project {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 600px; overflow: hidden;
}
.feature-project__image {
  position: relative; overflow: hidden;
}
.feature-project__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.feature-project:hover .feature-project__image img { transform: scale(1.04); }
.feature-project__badge {
  position: absolute; top: 2rem; left: 2rem;
  background: var(--stone); color: var(--charcoal);
  font-family: var(--ff-ui); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 2px;
}
.feature-project__text {
  background: var(--green); color: var(--white);
  padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center;
}
.feature-project__text .section-label { color: var(--stone); }
.feature-project__text h2 { color: var(--white); margin-bottom: 1.5rem; }
.feature-project__text h2 em { color: var(--stone); }
.feature-project__text p { color: rgba(255,255,255,0.82); margin-bottom: 2rem; font-size: 1.05rem; line-height: 1.7; }
.feature-project__meta {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 2rem; margin-bottom: 2.5rem;
}
.feature-project__meta div { display: flex; flex-direction: column; gap: 0.25rem; }
.feature-project__meta strong { font-family: var(--ff-ui); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); }
.feature-project__meta span { font-family: var(--ff-body); color: rgba(255,255,255,0.85); font-size: 0.95rem; }

/* ---------- PORTFOLIO ---------- */
.portfolio {
  padding: 7rem 2rem;
  background: var(--charcoal);
}
.portfolio .section-header h2 { color: var(--white); }
.portfolio .section-label { color: var(--stone); }
.portfolio__filters {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  justify-content: center; margin-bottom: 3rem;
}
.filter-btn {
  font-family: var(--ff-ui); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: transparent; color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.55rem 1.2rem; border-radius: var(--radius);
  cursor: pointer; transition: var(--transition);
}
.filter-btn:hover { color: var(--white); border-color: rgba(255,255,255,0.6); }
.filter-btn.active { background: var(--stone); color: var(--charcoal); border-color: var(--stone); font-weight: 700; }
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 1rem;
  max-width: 1400px; margin: 0 auto;
}
.portfolio__item {
  position: relative; overflow: hidden; border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.portfolio__item.large { grid-column: span 2; grid-row: span 2; }
.portfolio__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.portfolio__item:hover img { transform: scale(1.06); }
.portfolio__item-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  padding: 2rem 1.25rem 1.25rem;
  transform: translateY(100%); transition: transform 0.35s ease;
}
.portfolio__item:hover .portfolio__item-info { transform: translateY(0); }
.portfolio__tag {
  font-family: var(--ff-ui); font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--stone); display: block; margin-bottom: 0.3rem;
}
.portfolio__item-info h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 0.25rem; }
.portfolio__loc { font-family: var(--ff-ui); font-size: 0.78rem; color: rgba(255,255,255,0.65); }
.portfolio__item.hidden { opacity: 0; pointer-events: none; transform: scale(0.95); }
.portfolio__cta { text-align: center; margin-top: 3rem; }

/* ---------- ABOUT ---------- */
.about {
  padding: 7rem 2rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; max-width: 1400px; margin: 0 auto;
  align-items: start;
}
.about__text h2 { margin-bottom: 1.5rem; }
.about__lead { font-size: 1.15rem; margin-bottom: 1.25rem; line-height: 1.7; }
.about__text p { color: var(--grey); margin-bottom: 1rem; }
.about__stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin: 3rem 0;
  padding: 2rem; background: var(--grey-l); border-radius: 6px;
}
.about__stat { display: flex; flex-direction: column; gap: 0.25rem; }
.about__stat strong { font-family: var(--ff-display); font-size: 2rem; color: var(--green); }
.about__stat span { font-family: var(--ff-ui); font-size: 0.8rem; color: var(--grey); line-height: 1.3; }
.about__images { display: flex; flex-direction: column; gap: 1.5rem; position: relative; }
.about__img-large, .about__img-small { position: relative; border-radius: 6px; overflow: hidden; }
.about__img-large img { width: 100%; height: 360px; object-fit: cover; }
.about__img-small { margin-left: 3rem; }
.about__img-small img { width: 100%; height: 220px; object-fit: cover; }
.about__img-label {
  position: absolute; bottom: 1rem; left: 1rem;
  font-family: var(--ff-ui); font-size: 0.75rem;
  background: rgba(250,248,244,0.92); color: var(--charcoal);
  padding: 0.35rem 0.8rem; border-radius: 2px; font-weight: 500;
}

/* ---------- AWARDS ---------- */
.awards {
  background: var(--cream);
  padding: 7rem 2rem;
  border-top: 1px solid var(--grey-l);
  border-bottom: 1px solid var(--grey-l);
}
.awards__inner { max-width: 900px; margin: 0 auto; }
.awards__header { margin-bottom: 3rem; }
.awards__header h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.awards__feature {
  background: var(--green); color: var(--white);
  padding: 3rem; border-radius: 8px; margin-bottom: 3rem;
}
.awards__trophy {
  display: flex; align-items: center; gap: 1.5rem; margin-bottom: 1.5rem;
}
.awards__trophy-icon { font-size: 3rem; }
.awards__trophy-text { display: flex; flex-direction: column; gap: 0.3rem; }
.awards__trophy-text strong { font-family: var(--ff-display); font-size: 1.8rem; color: var(--stone); }
.awards__trophy-text span { font-family: var(--ff-ui); font-size: 0.85rem; opacity: 0.8; letter-spacing: 0.05em; }
.awards__feature-desc { color: rgba(255,255,255,0.85); font-size: 1.05rem; line-height: 1.7; }
.awards__timeline { display: flex; flex-direction: column; gap: 0; }
.awards__timeline-item {
  display: grid; grid-template-columns: 90px 1fr;
  gap: 1.5rem; padding: 2rem 0;
  border-bottom: 1px solid var(--grey-l);
  align-items: start;
}
.awards__year {
  font-family: var(--ff-display); font-size: 1.3rem; font-weight: 600;
  color: var(--green); padding-top: 0.1rem;
}
.awards__event strong { display: block; margin-bottom: 0.4rem; font-family: var(--ff-ui); font-size: 0.95rem; font-weight: 600; }
.awards__event p { font-size: 0.9rem; color: var(--grey); }
.awards__timeline-item.highlight .awards__year { color: var(--stone); font-size: 1.1rem; }
.awards__timeline-item.highlight .awards__event strong { color: var(--green); font-size: 1.05rem; }
.awards__apl-logo {
  text-align: center; margin-top: 3rem; padding: 2rem;
  border: 2px solid var(--grey-l); border-radius: 6px;
  font-family: var(--ff-ui);
}
.awards__apl-logo p { font-size: 0.85rem; color: var(--grey); letter-spacing: 0.05em; margin-bottom: 0.4rem; }
.awards__apl-logo strong { font-size: 1.2rem; color: var(--green); display: block; }

/* ---------- TESTIMONIALS ---------- */
.testimonials { padding: 7rem 2rem; background: var(--white); }
.testimonials__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; max-width: 1400px; margin: 0 auto 3rem;
}
.testimonial-card {
  background: var(--cream); border-radius: 6px;
  padding: 2rem; position: relative;
  border: 1px solid var(--grey-l);
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.testimonial-card.featured { background: var(--green); border-color: var(--green); }
.testimonial-card__stars { color: var(--stone); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.95rem; color: var(--charcoal); line-height: 1.7; margin-bottom: 1.5rem; }
.testimonial-card.featured p { color: rgba(255,255,255,0.88); }
.testimonial-card footer { display: flex; flex-direction: column; gap: 0.2rem; border-top: 1px solid var(--grey-l); padding-top: 1.2rem; }
.testimonial-card.featured footer { border-color: rgba(255,255,255,0.2); }
.testimonial-card footer strong { font-family: var(--ff-ui); font-size: 0.9rem; font-weight: 700; }
.testimonial-card.featured footer strong { color: var(--stone); }
.testimonial-card footer span { font-family: var(--ff-ui); font-size: 0.78rem; color: var(--grey); }
.testimonial-card.featured footer span { color: rgba(255,255,255,0.6); }
.testimonials__google { display: flex; justify-content: center; }
.google-badge {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--cream); border: 1px solid var(--grey-l);
  padding: 0.8rem 1.5rem; border-radius: 40px;
  font-family: var(--ff-ui); font-size: 0.88rem; font-weight: 500;
}
.google-stars { color: #f5a623; letter-spacing: 2px; }

/* ---------- SERVICE AREA ---------- */
.area { padding: 7rem 2rem; background: var(--charcoal); color: var(--white); }
.area__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; max-width: 1400px; margin: 0 auto; align-items: start; }
.area__text .section-label { color: var(--stone); }
.area__text h2 { color: var(--white); margin-bottom: 1.5rem; }
.area__text h2 em { color: var(--stone); }
.area__text > p { color: rgba(255,255,255,0.75); margin-bottom: 2.5rem; }
.area__towns { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.area__county strong { font-family: var(--ff-ui); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); display: block; margin-bottom: 0.75rem; }
.area__county li { font-family: var(--ff-ui); font-size: 0.9rem; color: rgba(255,255,255,0.7); padding: 0.25rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.area__note { font-family: var(--ff-ui); font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.area__note a { color: var(--stone); text-decoration: underline; }
.area__visual { display: flex; flex-direction: column; gap: 1.5rem; }
.area__map-placeholder {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 2.5rem 2rem;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.5rem;
}
.area__map-pin { font-size: 2.5rem; }
.area__map-placeholder strong { font-family: var(--ff-display); font-size: 1.5rem; color: var(--stone); }
.area__map-placeholder span { font-family: var(--ff-ui); font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.area__portfolio-img { border-radius: 6px; overflow: hidden; height: 220px; width: 100%; object-fit: cover; }

/* ---------- CONTACT ---------- */
.contact { padding: 7rem 2rem; background: var(--cream); }
.contact__inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; max-width: 1200px; margin: 0 auto; align-items: start; }
.contact__text h2 { margin-bottom: 1.5rem; }
.contact__text p { color: var(--grey); margin-bottom: 2.5rem; }
.contact__details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact__tel {
  display: flex; align-items: center; gap: 1rem;
  background: var(--green); color: var(--white);
  padding: 1.25rem 1.5rem; border-radius: 6px;
  transition: var(--transition);
}
.contact__tel:hover { background: var(--green-l); transform: translateY(-2px); }
.contact__tel-icon { font-size: 1.5rem; }
.contact__tel div { display: flex; flex-direction: column; }
.contact__tel strong { font-family: var(--ff-display); font-size: 1.5rem; }
.contact__tel span { font-family: var(--ff-ui); font-size: 0.8rem; opacity: 0.8; }
.contact__address { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem 1.5rem; background: var(--grey-l); border-radius: 6px; }
.contact__address > span { font-size: 1.4rem; }
.contact__address div { display: flex; flex-direction: column; gap: 0.3rem; }
.contact__address strong { font-family: var(--ff-ui); font-weight: 700; font-size: 0.9rem; }
.contact__address span { font-family: var(--ff-ui); font-size: 0.85rem; color: var(--grey); line-height: 1.6; }

/* Form */
.contact__form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-family: var(--ff-ui); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; color: var(--charcoal); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--ff-ui); font-size: 0.95rem; color: var(--charcoal);
  background: var(--white); border: 1.5px solid var(--grey-l);
  border-radius: var(--radius); padding: 0.75rem 1rem;
  transition: border-color 0.25s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45,80,22,0.08);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b6b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.file-upload { position: relative; border: 2px dashed var(--grey-l); border-radius: var(--radius); transition: border-color 0.3s; overflow: hidden; }
.file-upload:hover, .file-upload.drag-over { border-color: var(--green); }
.file-upload input { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.file-upload__label {
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  padding: 2rem; text-align: center;
  font-family: var(--ff-ui); font-size: 0.88rem; color: var(--grey);
  pointer-events: none;
}
.file-upload__icon { font-size: 1.8rem; }
.file-upload__hint { font-size: 0.75rem; opacity: 0.7; }
.file-upload__preview {
  display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 0 1rem 1rem;
}
.file-upload__preview img { width: 60px; height: 60px; object-fit: cover; border-radius: 4px; }
.form__note { font-family: var(--ff-ui); font-size: 0.8rem; color: var(--grey); text-align: center; margin-top: 0.25rem; }

/* ---------- FOOTER ---------- */
.footer { background: var(--charcoal); color: var(--white); }
.footer__inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem; max-width: 1400px; margin: 0 auto;
  padding: 5rem 2rem 3rem;
}
.footer__logo { font-family: var(--ff-display); font-size: 2rem; color: var(--stone); margin-bottom: 1rem; }
.footer__brand p { font-family: var(--ff-ui); font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 1.25rem; }
.footer__tel { font-family: var(--ff-display); font-size: 1.4rem; color: var(--stone); }
.footer__col strong { font-family: var(--ff-ui); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); display: block; margin-bottom: 1.25rem; }
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col a { font-family: var(--ff-ui); font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color 0.25s; }
.footer__col a:hover { color: var(--stone); }
.footer__col address { font-family: var(--ff-ui); font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 1rem; }
.footer__col > a { font-family: var(--ff-ui); font-size: 1rem; color: var(--stone); display: block; margin-bottom: 0.75rem; }
.footer__area { font-family: var(--ff-ui); font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-top: 0.5rem; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem;
  max-width: 1400px; margin: 0 auto; padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: var(--ff-ui); font-size: 0.8rem; color: rgba(255,255,255,0.35);
}
.footer__bottom p { display: flex; gap: 0.75rem; align-items: center; }
.footer__bottom a { color: rgba(255,255,255,0.45); transition: color 0.25s; }
.footer__bottom a:hover { color: var(--stone); }
.footer__bottom span { opacity: 0.3; }

/* ---------- MODAL ---------- */
.modal {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.6); align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.modal.open { display: flex; }
.modal__box {
  background: var(--white); border-radius: 12px; padding: 3rem;
  text-align: center; max-width: 420px; width: 90%;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
.modal__icon { font-size: 3rem; color: var(--green); margin-bottom: 1rem; background: rgba(45,80,22,0.08); width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-weight: 700; }
.modal__box h3 { font-size: 1.8rem; margin-bottom: 0.75rem; }
.modal__box p { color: var(--grey); font-size: 0.95rem; margin-bottom: 2rem; }
.modal__box a { color: var(--green); text-decoration: underline; }

/* ========== SCROLL MARGIN — so anchored sections aren't hidden under fixed nav ========== */
#services, #portfolio, #about, #awards, #testimonials, #contact {
  scroll-margin-top: 80px;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 1200px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .trust__inner { flex-wrap: wrap; }
  .trust__item { min-width: 200px; }
}

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .feature-project { grid-template-columns: 1fr; }
  .feature-project__image { height: 60vw; min-height: 320px; }
  .feature-project__image img { height: 100%; }
  .about { grid-template-columns: 1fr; gap: 3rem; }
  .about__stats { grid-template-columns: repeat(2, 1fr); }
  .about__img-small { margin-left: 2rem; }
  .contact__inner { grid-template-columns: 1fr; gap: 3rem; }
  .area__inner { grid-template-columns: 1fr; gap: 3rem; }
  .portfolio__grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio__item.large { grid-column: span 1; grid-row: span 1; }
  .awards__timeline-item { grid-template-columns: 80px 1fr; gap: 1rem; }
}

@media (max-width: 650px) {
  /* Hero */
  .hero__content { padding: 0 1.25rem; padding-top: 5rem; }
  .hero__headline { font-size: clamp(2rem, 10vw, 2.8rem); }
  .hero__sub { font-size: 0.95rem; }
  .hero__eyebrow { gap: 0.4rem; font-size: 0.72rem; }
  .hero__eyebrow .hero__dot:last-of-type,
  .hero__eyebrow span:last-child { display: none; } /* hide 3rd item on small screens */
  .hero__actions { flex-direction: column; gap: 0.75rem; }
  .hero__actions .btn { text-align: center; justify-content: center; width: 100%; }

  /* Trust */
  .trust__inner { flex-direction: column; }
  .trust__divider { width: 100%; height: 1px; margin: 0; }
  .trust__item { padding: 1.2rem 1.5rem; }

  /* Services */
  .services { padding: 4rem 1.25rem; }
  .services__grid { grid-template-columns: 1fr; }
  .service-card { height: 340px; }
  .services__range { flex-direction: column; align-items: flex-start; padding: 1.5rem; }
  .services__range p { text-align: left; }

  /* Feature project */
  .feature-project__text { padding: 2.5rem 1.25rem; }
  .feature-project__meta { grid-template-columns: 1fr; gap: 1rem; }

  /* Portfolio */
  .portfolio { padding: 4rem 1.25rem; }
  .portfolio__grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .portfolio__filters { gap: 0.5rem; }
  .filter-btn { font-size: 0.75rem; padding: 0.45rem 0.9rem; }

  /* About */
  .about { padding: 4rem 1.25rem; }
  .about__stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .about__stat strong { font-size: 1.6rem; }
  .about__img-small { margin-left: 0; }
  .about__img-large img { height: 260px; }
  .about__img-small img { height: 180px; }

  /* Awards */
  .awards { padding: 4rem 1.25rem; }
  .awards__feature { padding: 2rem 1.5rem; }
  .awards__trophy { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .awards__timeline-item { grid-template-columns: 70px 1fr; gap: 0.75rem; padding: 1.5rem 0; }
  .awards__year { font-size: 1rem; }

  /* Testimonials */
  .testimonials { padding: 4rem 1.25rem; }
  .testimonials__grid { grid-template-columns: 1fr; }

  /* Area */
  .area { padding: 4rem 1.25rem; }
  .area__towns { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* Contact */
  .contact { padding: 4rem 1.25rem; }
  .contact__inner { gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact__tel strong { font-size: 1.3rem; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.25rem 2rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 0.75rem; }

  /* Section header */
  .section-header { margin-bottom: 2.5rem; }
  h2 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
}

/* ============================================================
   INNER PAGES — portfolio, blog, privacy policy
   ============================================================ */

.page-hero {
  padding: 9rem 2rem 4.5rem;
  background: var(--charcoal);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,80,22,0.45) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.page-hero .section-label { color: var(--stone); }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.15;
  margin: 0.5rem 0 1rem;
}
.page-hero h1 em { color: var(--stone); font-style: italic; }
.page-hero p {
  color: rgba(255,255,255,0.72);
  font-family: 'Source Serif 4', serif;
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
  justify-content: center;
}
.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.breadcrumb a:hover { color: var(--stone); }
.breadcrumb__sep { opacity: 0.35; }

/* ---- Portfolio full page ---- */
.portfolio-full {
  padding: 5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.portfolio-full .portfolio__filters { margin-bottom: 3rem; }
.portfolio-full .portfolio__grid {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
}

/* ---- Blog page ---- */
.blog-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2.5rem;
}
.blog-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 10px 32px rgba(0,0,0,0.12); }
.blog-card__img { height: 220px; overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card__img img { transform: scale(1.04); }
.blog-card__body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.blog-card__cat {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.6rem;
}
.blog-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}
.blog-card__excerpt {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}
.blog-card__meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: #aaa;
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

/* ---- Prose (privacy, long-form) ---- */
.prose-section {
  padding: 5rem 2rem;
  max-width: 780px;
  margin: 0 auto;
}
.prose h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--charcoal);
  margin: 2.5rem 0 0.75rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding-bottom: 0.4rem;
}
.prose h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 1.5rem 0 0.4rem;
}
.prose p, .prose li {
  font-family: 'Source Serif 4', serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}
.prose ul { margin: 0.5rem 0 1rem 1.4rem; }
.prose li { margin-bottom: 0.35rem; }
.prose a { color: var(--green); }
.prose strong { color: var(--charcoal); font-weight: 600; }
.prose-intro {
  font-family: 'Source Serif 4', serif;
  font-size: 1.05rem;
  color: #666;
  line-height: 1.75;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.prose-last-updated {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: #aaa;
  margin-bottom: 2.5rem;
}

/* Inner page responsive */
@media (max-width: 900px) {
  .portfolio-full .portfolio__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 650px) {
  .page-hero { padding: 7rem 1.25rem 3rem; }
  .portfolio-full .portfolio__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .portfolio-full { padding: 3rem 1.25rem; }
  .blog-section { padding: 3rem 1.25rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .prose-section { padding: 3rem 1.25rem; }
}
