/* ============================================================
   HYPER LANDSCAPING — Shared Stylesheet
   Direction: Natural Editorial
   Fonts: Playfair Display + Nunito Sans
   Accent: Sage Green #7BAE87
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;0,900;1,700;1,800&family=Nunito+Sans:wght@300;400;600;700&display=swap');

/* ── Variables ── */
:root {
  --forest:      #1E3A2F;
  --moss:        #2D5A3D;
  --moss-dark:   #1E3F2A;
  --sage:        #7BAE87;
  --sage-light:  #B8D4BC;
  --sage-bg:     #EEF5EF;
  --soil:        #5C3D2E;
  --bark:        #7A5C47;
  --stone:       #9B9B8E;
  --pebble:      #D4D3C9;
  --warm-bg:     #F2F0EB;
  --cream:       #F7F5F0;
  --off-white:   #FAFAF8;
  --white:       #FFFFFF;
  --green-tick:  #16A34A;
  --radius:      4px;
  --radius-lg:   8px;
  --shadow:      0 1px 3px rgba(0,0,0,0.07);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.09);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  color: var(--bark);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Layout ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
section { padding: 88px 0; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.08;
  color: var(--forest);
}
h1 { font-weight: 800; font-size: clamp(2.8rem, 5.5vw, 4.8rem); }
h2 { font-weight: 700; font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-weight: 700; font-size: 1.25rem; }
h4 { font-weight: 700; font-size: 1rem; }

/* Italic accent — used instead of coloured span */
em.accent { font-style: italic; color: var(--sage); }

.eyebrow {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
  display: block;
}

.section-eyebrow {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
  display: block;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary { background: var(--moss); color: var(--white); }
.btn-primary:hover { background: var(--moss-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(45,90,61,0.3); }
.btn-outline { background: transparent; color: var(--forest); border: 2px solid var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--white); }
.btn-ghost { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* ── Demo Banner ── */
.demo-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--moss);
  color: var(--white);
  text-align: center;
  padding: 9px 16px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.4;
}
.demo-banner a { color: var(--white); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 3px solid var(--forest);
  height: 66px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: height 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled { height: 54px; box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
.nav > .container { width: 100%; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 14px;
  border: 2px dashed var(--pebble);
  border-radius: var(--radius);
  color: var(--stone);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  min-width: 120px;
  text-align: center;
}

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--forest); }
.nav-cta {
  background: var(--moss);
  color: var(--white);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--moss-dark); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--forest); border-radius: 1px; transition: all 0.3s; }

/* ── Page Hero (interior) ── */
.page-hero {
  padding: 148px 0 60px;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 85% 20%, rgba(123,174,135,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(123,174,135,0.1) 0%, transparent 50%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--sage);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero h1 em { font-style: italic; color: var(--sage-light); }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.05rem; max-width: 500px; line-height: 1.8; }

/* ── Parallax Hero ── */
.hero-parallax {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--forest);
  background-attachment: fixed;
  background-size: cover;
  background-position: center 40%;
}
@media (max-width: 768px) {
  .hero-parallax { background-attachment: scroll; }
}
.hero-content { position: relative; z-index: 2; padding-top: 180px; padding-bottom: 80px; }

/* ── Hero animations ── */
.hero-fade-1, .hero-fade-2, .hero-fade-3, .hero-fade-4, .hero-fade-5 {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-fade-1 { animation-delay: 0.1s; }
.hero-fade-2 { animation-delay: 0.28s; }
.hero-fade-3 { animation-delay: 0.44s; }
.hero-fade-4 { animation-delay: 0.58s; }
.hero-fade-5 { animation-delay: 0.72s; }
@keyframes heroFadeUp { to { opacity: 1; transform: translateY(0); } }

/* ── Scroll animations ── */
[data-animate] {
  opacity: 0;
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-animate="fade-up"]   { transform: translateY(40px); }
[data-animate="fade-left"] { transform: translateX(-32px); }
[data-animate="fade-in"]   { transform: none; }
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-animate].is-visible { opacity: 1; transform: none; }

/* ── Stat bar ── */
.stat-bar {
  background: var(--forest);
  border-bottom: 1px solid rgba(123,174,135,0.2);
}
.stat-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
  padding: 28px 24px;
  border-right: 1px solid rgba(123,174,135,0.15);
  text-align: center;
  position: relative;
}
.stat-item::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--sage);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.stat-item:hover::after { transform: scaleX(1); }
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--sage-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(184,212,188,0.5);
  margin-top: 6px;
}

/* ── Service cards ── */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--pebble);
  transition: box-shadow 0.25s, transform 0.25s;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-card-img {
  height: 130px;
  background: var(--sage-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  position: relative;
  overflow: hidden;
}
.service-card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--sage);
}
.service-card-body { padding: 24px; }
.service-card-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--forest);
  margin-bottom: 10px;
}
.service-card-text { font-size: 0.88rem; color: var(--bark); line-height: 1.7; }

/* ── Gallery ── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-item { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.gallery-item img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.4s ease; display: block; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(30,58,47,0.88));
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
}

/* ── Testimonials ── */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--pebble);
  border-top: 4px solid var(--sage);
}
.stars { color: var(--sage); letter-spacing: 3px; margin-bottom: 12px; font-size: 0.85rem; }
.testimonial-text { font-size: 0.92rem; line-height: 1.8; color: var(--bark); margin-bottom: 16px; font-style: italic; }
.testimonial-author { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--stone); }

/* ── Trust badges ── */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.55); font-weight: 600; }
.trust-item svg { color: var(--sage); }

/* ── Accreditations ── */
.accred-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--sage-bg);
  border: 1px solid var(--sage-light);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--forest);
}
.accred-badge svg { color: var(--green-tick); flex-shrink: 0; }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--forest);
  position: relative;
  overflow: hidden;
  padding: 88px 0;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(123,174,135,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 50%, rgba(45,90,61,0.3) 0%, transparent 55%);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--sage);
}
.cta-banner .container { position: relative; z-index: 1; text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner h2 em { font-style: italic; color: var(--sage-light); }
.cta-banner p { color: rgba(255,255,255,0.6); font-size: 1.05rem; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; }
.cta-phone { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.7rem; color: var(--sage-light); font-style: italic; }

/* ── Coverage ── */
.coverage-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.coverage-tag {
  display: flex; align-items: center; gap: 6px;
  background: var(--sage-bg);
  border: 1px solid var(--sage-light);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--forest);
}
.coverage-tag svg { color: var(--sage); flex-shrink: 0; }

/* ── Google Map ── */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--pebble);
  margin-top: 28px;
}
.map-embed iframe { display: block; }

/* ── Contact form ── */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.78rem; font-weight: 700; color: var(--forest); text-transform: uppercase; letter-spacing: 0.07em; }
.form-group input, .form-group textarea, .form-group select {
  padding: 12px 16px;
  border: 2px solid var(--pebble);
  border-radius: var(--radius);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--forest);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--sage); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Process ── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-grid::before {
  content: '';
  position: absolute;
  top: 22px; left: 11%; right: 11%;
  height: 1px;
  background: var(--pebble);
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 44px; height: 44px;
  background: var(--moss);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 6px var(--warm-bg);
}
.step-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem; color: var(--forest); margin-bottom: 8px; }
.step-text { font-size: 0.84rem; color: var(--bark); line-height: 1.65; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--pebble); padding: 20px 0; }
.faq-q {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--forest);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.faq-q::before { content: ''; width: 6px; height: 6px; background: var(--sage); border-radius: 50%; flex-shrink: 0; }
.faq-a { font-size: 0.9rem; color: var(--bark); line-height: 1.75; }

/* ── Grids ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── Footer ── */
.footer { background: var(--forest); border-top: 3px solid var(--sage); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.88rem; line-height: 1.75; margin-top: 16px; max-width: 260px; }
.footer-col h4 { font-family: 'Nunito Sans', sans-serif; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--white); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.4); font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--sage); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,0.4); font-size: 0.88rem; margin-bottom: 12px; }
.footer-contact-item svg { color: var(--sage); margin-top: 2px; flex-shrink: 0; }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(123,174,135,0.15); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.78rem; }
.footer-byline { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-byline a { color: var(--sage); font-weight: 700; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .demo-banner { position: static; font-size: 0.76rem; padding: 8px 16px; }
  .nav { position: sticky; top: 0; }
  .page-hero { padding-top: 48px; }
  .hero-content { padding-top: 40px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 66px; left: 0; right: 0;
    background: var(--white);
    padding: 24px 28px;
    gap: 20px;
    border-bottom: 3px solid var(--forest);
    z-index: 99;
  }
  .nav-links.open a { color: var(--forest); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stat-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
}
