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

:root {
  --green-dark:   #1e4d2b;
  --green:        #2d6a4f;
  --green-mid:    #40916c;
  --green-light:  #74c69d;
  --green-pale:   #d8f3dc;
  --earth:        #8B6914;
  --earth-light:  #c49a2a;
  --cream:        #faf7f2;
  --white:        #ffffff;
  --gray-100:     #f4f4f4;
  --gray-200:     #e8e8e8;
  --gray-500:     #6b7280;
  --gray-700:     #374151;
  --gray-900:     #111827;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;
  --radius:       12px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:    0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:    0 12px 40px rgba(0,0,0,.15);
  --transition:   .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--gray-900); background: var(--white); line-height: 1.6; }

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }

/* ── UTILITY ── */
.container { max-width: 1200px; margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.section-label { font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--green-mid); margin-bottom: .75rem; }
.section-title { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 700; line-height: 1.2; color: var(--gray-900); }
.section-title span { color: var(--green); }
.section-intro { font-size: 1.0625rem; color: var(--gray-500); max-width: 52ch; margin-top: .75rem; }
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 1.75rem; border-radius: 50px; font-size: .9375rem; font-weight: 600; cursor: pointer; border: 2px solid transparent; transition: var(--transition); }
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); }
.btn-outline { background: rgba(255,255,255,.1); color: var(--white); border-color: rgba(255,255,255,.9); }
.btn-outline:hover { background: rgba(255,255,255,.22); border-color: var(--white); }
#hero .btn-primary { background: var(--white); color: var(--green-dark); border-color: var(--white); font-weight: 700; }
#hero .btn-primary:hover { background: var(--green-pale); border-color: var(--green-pale); }
.btn-outline-dark { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline-dark:hover { background: var(--green); color: var(--white); }

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding-block: 1.25rem;
}
#nav.scrolled { background: rgba(255,255,255,.97); box-shadow: var(--shadow-sm); padding-block: .85rem; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.nav-logo { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; color: var(--white); transition: color var(--transition); }
.nav-logo-sub  { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--green-light); transition: color var(--transition); margin-top: 5px;}
#nav.scrolled .nav-logo-name { color: var(--green-dark); }
#nav.scrolled .nav-logo-sub  { color: var(--green-mid); }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.88); transition: color var(--transition); }
.nav-links a:hover { color: var(--white); }
#nav.scrolled .nav-links a { color: var(--gray-700); }
#nav.scrolled .nav-links a:hover { color: var(--green); }
.nav-cta { font-size: .875rem !important; background: var(--green) !important; color: var(--white) !important; padding: .5rem 1.25rem; border-radius: 50px; transition: background var(--transition) !important; }
.nav-cta:hover { background: var(--green-dark) !important; }
#nav.scrolled .nav-cta { background: var(--green) !important; color: var(--white) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
#nav.scrolled .nav-hamburger span { background: var(--gray-700); }
.nav-mobile { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); box-shadow: var(--shadow-md); padding: 1.5rem; }
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.nav-mobile a { font-size: 1rem; font-weight: 500; color: var(--gray-700); }
.nav-mobile a:hover { color: var(--green); }

/* ── HERO ── */
#hero {
  position: relative; min-height: 100svh;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #0d2818 0%, #1e4d2b 50%, #2d6a4f 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://grandviewlandscape.com/wp-content/uploads/2020/05/Res-7-1024x576.jpg');
  background-size: cover; background-position: center;
  opacity: .28; mix-blend-mode: luminosity;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,30,15,.55) 0%, rgba(10,30,15,.3) 60%, rgba(10,30,15,.7) 100%); }
.hero-content { position: relative; text-align: center; color: var(--white); padding-block: 6rem 4rem; }
.hero-badge { display: inline-flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.7); font-size: .75rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.5rem; }
.hero-badge::before, .hero-badge::after { content: ''; display: block; width: 24px; height: 1px; background: rgba(255,255,255,.4); }
.hero-title { font-family: var(--font-serif); font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; line-height: 1.1; margin-bottom: 1.25rem; }
.hero-title em { font-style: normal; color: #f5d76e; }
.hero-sub { font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,.8); max-width: 50ch; margin-inline: auto; margin-bottom: 2.5rem; font-weight: 300; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .4rem; color: rgba(255,255,255,.5); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.hero-scroll-dot { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent); }
.hero-stats { display: flex; gap: clamp(1.5rem, 4vw, 4rem); justify-content: center; flex-wrap: wrap; margin-top: 4rem; padding-top: 3rem; border-top: 1px solid rgba(255,255,255,.12); }
.hero-stat-num { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 700; color: var(--white); line-height: 1; }
.hero-stat-label { font-size: .8rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; margin-top: .25rem; }

/* ── MARQUEE ── */
.marquee-wrap { background: var(--green); overflow: hidden; padding-block: .9rem; }
.marquee-track { display: flex; width: max-content; animation: marquee 28s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item { white-space: nowrap; padding-inline: 2rem; font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--white); display: flex; align-items: center; gap: 1.5rem; }
.marquee-item::after { content: '✦'; color: var(--green-light); font-size: .6rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── SERVICES ── */
#services { padding-block: clamp(4rem, 8vw, 7rem); background: var(--cream); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 3.5rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.service-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card-img { aspect-ratio: 4/3; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.service-card-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--green-pale); display: grid; place-items: center; margin-bottom: 1rem; font-size: 1.25rem; display: none;}
.service-card-title { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; margin-bottom: .6rem; color: var(--gray-900); }
.service-card-desc { font-size: .9rem; color: var(--gray-500); line-height: 1.7; flex: 1; }
.service-card-link { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.25rem; font-size: .875rem; font-weight: 600; color: var(--green); }
.service-card-link svg { transition: transform var(--transition); }
.service-card:hover .service-card-link svg { transform: translateX(4px); }

/* ── ABOUT ── */
#about { padding-block: clamp(4rem, 8vw, 7rem); background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-lg); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute; bottom: -2rem; right: -2rem;
  width: 55%; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 1; border: 6px solid var(--white); box-shadow: var(--shadow-md);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; top: 1.5rem; left: -1.5rem;
  background: var(--green); color: var(--white); border-radius: var(--radius);
  padding: 1rem 1.25rem; text-align: center; box-shadow: var(--shadow-md);
}
.about-badge-num { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; line-height: 1; }
.about-badge-text { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; opacity: .85; }
.about-content { padding-block: 1rem; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.about-value { display: flex; gap: .75rem; align-items: flex-start; }
.about-value-icon { width: 36px; height: 36px; min-width: 36px; border-radius: 8px; background: var(--green-pale); display: grid; place-items: center; color: var(--green); font-size: 1rem; margin-top: .1rem; }
.about-value-text h4 { font-size: .9rem; font-weight: 600; color: var(--gray-900); margin-bottom: .2rem; }
.about-value-text p { font-size: .8rem; color: var(--gray-500); line-height: 1.5; }
.about-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.25rem; }

/* ── PROCESS ── */
#process { padding-block: clamp(4rem, 8vw, 7rem); background: var(--green-dark); color: var(--white); }
#process .section-label { color: var(--green-light); }
#process .section-title { color: var(--white); }
#process .section-intro { color: rgba(255,255,255,.65); }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-top: 3.5rem; }
.process-step { position: relative; }
.process-step::after {
  content: ''; position: absolute; top: 24px; left: calc(100% + .5rem); right: -1.5rem;
  height: 1px; background: linear-gradient(to right, rgba(116,198,157,.4), transparent);
}
.process-step:last-child::after { display: none; }
.process-num { font-family: var(--font-serif); font-size: 3rem; font-weight: 700; color: rgba(116,198,157,.2); line-height: 1; margin-bottom: .75rem; }
.process-step h3 { font-size: 1.05rem; font-weight: 600; color: var(--white); margin-bottom: .5rem; }
.process-step p { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ── GALLERY ── */
#gallery { padding-block: clamp(4rem, 8vw, 7rem); background: var(--cream); }
.gallery-header { text-align: center; margin-bottom: 3rem; }
.gallery-header .section-intro { margin-inline: auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}
.gallery-item { overflow: hidden; border-radius: var(--radius); position: relative; cursor: zoom-in; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay { position: absolute; inset: 0; background: rgba(30,77,43,.5); display: grid; place-items: center; opacity: 0; transition: opacity var(--transition); color: var(--white); font-size: 1.5rem; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: 4/3; }
.gallery-item:nth-child(2),
.gallery-item:nth-child(3),
.gallery-item:nth-child(4),
.gallery-item:nth-child(5) { aspect-ratio: 1; }

/* ── TESTIMONIALS ── */
#testimonials { padding-block: clamp(4rem, 8vw, 7rem); background: var(--white); }
.testimonials-header { text-align: center; margin-bottom: 3rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.testimonial-card { background: var(--cream); border-radius: var(--radius); padding: 2rem; border: 1px solid var(--gray-200); transition: box-shadow var(--transition); }
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--earth-light); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testimonial-text { font-size: .9375rem; color: var(--gray-700); line-height: 1.7; font-style: italic; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--green-pale); display: grid; place-items: center; font-size: 1rem; color: var(--green); font-weight: 600; font-family: var(--font-serif); }
.testimonial-name { font-weight: 600; font-size: .875rem; color: var(--gray-900); }
.testimonial-location { font-size: .78rem; color: var(--gray-500); }

/* ── CONTACT ── */
#contact { padding-block: clamp(4rem, 8vw, 7rem); background: var(--gray-900); color: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
#contact .section-label { color: var(--green-light); }
#contact .section-title { color: var(--white); }
#contact .section-intro { color: rgba(255,255,255,.6); }
.contact-info { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item-icon { width: 44px; height: 44px; min-width: 44px; border-radius: 10px; background: rgba(116,198,157,.12); border: 1px solid rgba(116,198,157,.2); display: grid; place-items: center; color: var(--green-light); font-size: 1.1rem; }
.contact-item-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); margin-bottom: .2rem; }
.contact-item-value { font-size: .95rem; color: rgba(255,255,255,.9); font-weight: 500; }
.contact-item-value a:hover { color: var(--green-light); }
.contact-form { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 2.5rem; }
.contact-form h3 { font-family: var(--font-serif); font-size: 1.35rem; color: var(--white); margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { font-size: .8rem; font-weight: 500; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .06em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px; padding: .75rem 1rem; color: var(--white); font-size: .9rem;
  font-family: var(--font-sans); transition: border-color var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.28); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green-mid); background: rgba(255,255,255,.08); }
.form-group select option { background: var(--gray-900); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 1rem; background: var(--green); color: var(--white); border: none; border-radius: 50px; font-size: .9375rem; font-weight: 600; cursor: pointer; transition: background var(--transition); font-family: var(--font-sans); margin-top: .5rem; }
.form-submit:hover { background: var(--green-mid); }

/* ── FOOTER ── */
footer { background: #0a1a0f; color: rgba(255,255,255,.55); padding-block: 3rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand-name { font-family: var(--font-serif); font-size: 1.25rem; color: var(--white); font-weight: 700; }
.footer-brand-sub { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--green-mid); margin-bottom: 1rem; }
.footer-desc { font-size: .85rem; line-height: 1.7; max-width: 30ch; }
.footer-social { display: flex; gap: .75rem; margin-top: 1.25rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.06); display: grid; place-items: center; color: rgba(255,255,255,.6); font-size: .85rem; transition: background var(--transition), color var(--transition); }
.footer-social a:hover { background: var(--green); color: var(--white); }
.footer-col h4 { font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--white); margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-links a { font-size: .875rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--green-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: .8rem; }
.footer-bottom a:hover { color: var(--green-light); }

/* ── LIGHTBOX ── */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 999; place-items: center; cursor: zoom-out; }
.lightbox.open { display: grid; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: 8px; box-shadow: 0 0 80px rgba(0,0,0,.8); }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.1); border: none; color: var(--white); font-size: 1.25rem; cursor: pointer; display: grid; place-items: center; transition: background var(--transition); }
.lightbox-close:hover { background: rgba(255,255,255,.2); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .about-images { display: none; }
  .about-values { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .process-step::after { display: none; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
}
