/* ============================================================
   ELITE LANDSCAPING & MAINTENANCE — SHARED SITE STYLESHEET
   Used across the homepage and all service pages.
   ============================================================ */

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

:root {
  --black: #0a0a0a;
  --off-black: #111111;
  --dark: #1a1a1a;
  --charcoal: #2a2a2a;
  --mid: #444444;
  --grey: #888888;
  --light-grey: #cccccc;
  --off-white: #f5f2ee;
  --warm-white: #faf7f1;
  --white: #ffffff;
  --gold: #c9a84c;
  --gold-light: #e8d5a3;
  --gold-dark: #a88a3a;
  --green: #2d5a27;
  --green-light: #3d7a35;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--off-white);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ============================== NAV ============================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(10,10,10,0.97);
  padding: 16px 60px;
  backdrop-filter: blur(20px);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 11px 26px;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  opacity: 1 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--black) !important; }

/* ============================== HERO ============================== */
.hero {
  min-height: 720px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 160px 60px 100px;
  overflow: hidden;
  background: var(--black);
}
.hero.hero-full { height: 100vh; }
.hero.hero-service { min-height: 640px; padding-bottom: 80px; }
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: heroZoom 10s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1.0); } }
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.1s ease 0.4s forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5.6vw, 5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.04;
  margin-bottom: 32px;
  letter-spacing: -0.015em;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 18px 38px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  color: var(--white);
  padding: 17px 38px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.4);
  transition: all 0.25s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-dark {
  background: var(--dark);
  color: var(--white);
  padding: 18px 38px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-block;
}
.btn-dark:hover { background: var(--gold); color: var(--black); }

/* ============================== BREADCRUMB ============================== */
.breadcrumb {
  background: var(--black);
  padding: 10px 60px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.28);
  font-weight: 300;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.breadcrumb a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span.sep {
  margin: 0 10px;
  color: rgba(255,255,255,0.2);
}
.breadcrumb .current { color: rgba(255,255,255,0.55); }

/* ============================== STATS ============================== */
.stats-bar {
  background: var(--black);
  padding: 36px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.stat-item {
  padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease;
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }
.stat-item.visible { opacity: 1; transform: translateY(0); }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================== SHARED SECTIONS ============================== */
section { padding: 120px 60px; }
.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 26px;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--green); font-weight: 400; }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold-light); }
.section-body {
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--mid);
  max-width: 580px;
}
.section-body.light { color: rgba(255,255,255,0.65); }

/* ============================== INTRO / PHILOSOPHY ============================== */
.intro-section {
  background: var(--warm-white);
  padding: 130px 60px;
  position: relative;
  overflow: hidden;
}
.intro-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.intro-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--dark);
  margin: 36px 0 40px;
}
.intro-quote em { font-style: italic; color: var(--green); }
.intro-divider {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 36px auto;
}
.intro-signature {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
}
.intro-signature strong { color: var(--dark); font-weight: 600; }
.intro-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  margin-top: 90px;
  text-align: left;
}
.pillar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.2;
}
.pillar h3 em { font-style: italic; color: var(--gold-dark); }
.pillar .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  color: var(--gold-dark);
  letter-spacing: 0.3em;
  margin-bottom: 18px;
  display: block;
}
.pillar p { font-size: 0.95rem; color: var(--mid); line-height: 1.8; font-weight: 300; }

/* ============================== INCLUDES / SUB-SERVICES ============================== */
.includes-section { background: var(--white); padding: 130px 60px; }
.includes-header {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(0,0,0,0.06);
}
.include-card {
  background: var(--off-white);
  padding: 44px 36px 56px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
  min-height: 240px;
}
.include-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.include-card:hover { background: var(--dark); }
.include-card:hover::before { transform: scaleX(1); }
.include-card .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: rgba(0,0,0,0.07);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.4s;
}
.include-card:hover .num { color: rgba(255,255,255,0.06); }
.include-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 10px;
  transition: color 0.4s;
  line-height: 1.2;
}
.include-card:hover h3 { color: var(--white); }
.include-card p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.7;
  transition: color 0.4s;
}
.include-card:hover p { color: rgba(255,255,255,0.55); }

/* ============================== PROCESS ============================== */
.process-section { background: var(--off-white); padding: 130px 60px; }
.process-header { text-align: center; max-width: 620px; margin: 0 auto 90px; }
.process-header .section-eyebrow { justify-content: center; }
.process-header .section-eyebrow::before { display: none; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
}
.process-step { padding: 0 24px; text-align: center; }
.process-step-num {
  width: 56px;
  height: 56px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--gold);
  background: var(--off-white);
  position: relative;
  z-index: 1;
}
.process-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 12px;
}
.process-step-text { font-size: 0.82rem; font-weight: 300; color: var(--grey); line-height: 1.7; }

/* ============================== WHY US ============================== */
.why-section {
  background: var(--dark);
  padding: 140px 60px;
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: 'ELITE';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 22rem;
  font-weight: 300;
  color: rgba(255,255,255,0.018);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.05em;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; margin-top: 56px; }
.why-feature-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201,168,76,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
}
.why-feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.why-feature-text { font-size: 0.85rem; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.7; }
.why-image { position: relative; }
.why-image img { width: 100%; height: auto; display: block; }
.why-image-badge {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: var(--gold);
  padding: 32px;
  width: 190px;
}
.why-image-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1;
}
.why-image-badge-text {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  margin-top: 6px;
}

/* ============================== AREAS ============================== */
.areas-section { background: var(--black); padding: 90px 60px; }
.areas-inner { display: flex; align-items: center; gap: 56px; flex-wrap: wrap; }
.areas-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.areas-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.12); }
.areas-list { display: flex; gap: 28px; flex-wrap: wrap; flex: 1; }
.areas-list span { font-size: 0.85rem; font-weight: 300; color: rgba(255,255,255,0.5); letter-spacing: 0.04em; }

/* ============================== INVESTMENT ============================== */
.investment-section { background: var(--warm-white); padding: 120px 60px; }
.investment-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.investment-inner p { font-size: 1.05rem; line-height: 1.85; color: var(--mid); margin-bottom: 22px; font-weight: 300; }
.investment-inner p:last-child { margin-bottom: 0; }

/* ============================== FAQ ============================== */
.faq-section { background: var(--white); padding: 120px 60px; }
.faq-inner { max-width: 920px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 60px; }
.faq-header .section-eyebrow { justify-content: center; }
.faq-header .section-eyebrow::before { display: none; }
.faq-item {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 28px 0;
  cursor: pointer;
}
.faq-item:last-child { border-bottom: 1px solid rgba(0,0,0,0.1); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.faq-q h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.3;
}
.faq-toggle {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1rem;
  transition: all 0.3s;
}
.faq-item.open .faq-toggle {
  background: var(--gold);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a p {
  padding-top: 18px;
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--mid);
  font-weight: 300;
  max-width: 80ch;
}
.faq-item.open .faq-a { max-height: 500px; }

/* ============================== CTA ============================== */
.cta-section {
  position: relative;
  padding: 140px 60px;
  text-align: center;
  overflow: hidden;
  background: var(--off-black);
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}
.cta-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.cta-inner .section-eyebrow { justify-content: center; color: var(--gold); }
.cta-inner .section-eyebrow::before { display: none; }
.cta-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.cta-inner h2 em { font-style: italic; color: var(--gold-light); }
.cta-inner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 44px;
}
.cta-inner .hero-actions { justify-content: center; }
.cta-contact {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.cta-contact-item .label {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.cta-contact-item .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--white);
}

/* ============================== FOOTER ============================== */
footer {
  background: var(--off-black);
  padding: 90px 60px 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-brand-name span { color: var(--gold); }
.footer-brand-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 310px;
  font-weight: 300;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-contact-item:hover { color: var(--gold); }
.footer-col-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
  font-weight: 300;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy, .footer-abn { font-size: 0.72rem; color: rgba(255,255,255,0.22); letter-spacing: 0.05em; }

/* ============================== ANIMATIONS ============================== */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================== MOBILE ============================== */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 1.5px; background: white; transition: all 0.3s; }

@media (max-width: 1100px) {
  .includes-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 1024px) {
  nav { padding: 20px 30px; }
  nav.scrolled { padding: 14px 30px; }
  .hero { padding: 140px 30px 60px; }
  section { padding: 90px 30px; }
  .stats-bar { padding: 28px 30px; gap: 20px; }
  .includes-section, .intro-section, .why-section, .process-section, .faq-section, .investment-section, .cta-section { padding: 90px 30px; }
  .areas-section { padding: 60px 30px; }
  footer { padding: 70px 30px 30px; }
  .intro-pillars { gap: 40px; }
  .breadcrumb { padding: 8px 30px; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 2.6rem; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-item { padding: 0 16px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 24px; }
  .includes-header { grid-template-columns: 1fr; gap: 30px; }
  .includes-grid { grid-template-columns: 1fr; }
  .intro-pillars { grid-template-columns: 1fr; gap: 48px; margin-top: 64px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image { display: none; }
  .why-features { grid-template-columns: 1fr; gap: 32px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .process-steps::before { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-contact { gap: 32px; }
}
