/* ============================================
   EMERALD PRO LAWNSCAPERS — GLOBAL STYLES
   ============================================ */

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

/* ── VARIABLES ── */
:root {
  --emerald-dark:   #0d2318;
  --emerald:        #1a4d2e;
  --emerald-mid:    #2d7a4a;
  --emerald-bright: #3dba6f;
  --emerald-pale:   #a8ddb9;
  --cream:          #f4efe4;
  --cream-dim:      #d8d0be;
  --gold:           #c9a84c;
  --gold-light:     #e8c96a;
  --gold-pale:      #f5e9c2;
  --dark:           #090f0b;
  --dark-mid:       #0d1f14;
  --text-body:      rgba(244,239,228,0.75);
  --text-muted:     rgba(244,239,228,0.4);
  --border:         rgba(61,186,111,0.12);
  --border-gold:    rgba(201,168,76,0.2);
  --shadow-green:   0 20px 60px rgba(26,77,46,0.4);
  --shadow-gold:    0 10px 40px rgba(201,168,76,0.15);
  --radius:         2px;
  --transition:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  background: var(--dark);
  color: var(--cream);
  font-family: 'DM Mono', monospace;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button, input, select, textarea { font-family: inherit; }

/* ── NOISE TEXTURE ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
  mix-blend-mode: overlay;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.05;
  font-weight: 700;
}

.display {
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.9;
}

.heading-xl { font-size: clamp(2.5rem, 4vw, 4rem); }
.heading-lg { font-size: clamp(2rem, 3vw, 2.8rem); }
.heading-md { font-size: clamp(1.5rem, 2vw, 2rem); }
.heading-sm { font-size: 1.2rem; }

.body-lg {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  line-height: 1.65;
  font-weight: 400;
}

.body-md { font-size: 0.8rem; line-height: 1.8; }
.body-sm { font-size: 0.7rem; line-height: 1.7; }

.mono { font-family: 'DM Mono', monospace; }
.serif { font-family: 'Playfair Display', serif; }
.italic { font-style: italic; }

.text-emerald   { color: var(--emerald-bright); }
.text-gold      { color: var(--gold); }
.text-cream     { color: var(--cream); }
.text-muted     { color: var(--text-muted); }
.text-body      { color: var(--text-body); }

.label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── LAYOUT ── */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 4rem;
}

.container-sm {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 4rem;
}

.section-pad { padding: 7rem 0; }
.section-pad-sm { padding: 4rem 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 2rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn:hover::before { transform: translateX(0); }

.btn-primary {
  background: var(--gold);
  color: var(--dark);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-emerald {
  background: var(--emerald-bright);
  color: var(--dark);
}
.btn-emerald:hover {
  background: var(--emerald-pale);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--emerald-bright);
  color: var(--emerald-bright);
}

.btn-ghost {
  background: transparent;
  color: var(--emerald-bright);
  padding-left: 0;
  letter-spacing: 0.15em;
}
.btn-ghost:hover { color: var(--gold); gap: 1.2rem; }
.btn-ghost .arrow { transition: transform 0.3s; }
.btn-ghost:hover .arrow { transform: translateX(5px); }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, padding 0.4s;
}

.navbar.scrolled {
  background: rgba(9,15,11,0.96);
  backdrop-filter: blur(20px);
  padding: 1rem 4rem;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-primary {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.nav-logo-primary span { color: var(--emerald-bright); }

.nav-logo-sub {
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-body);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--emerald-bright) !important;
  color: var(--dark) !important;
  padding: 0.55rem 1.3rem;
  font-size: 0.6rem !important;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(9,15,11,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cream);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--emerald-bright); }

.mobile-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2rem;
  cursor: pointer;
}

/* ── DIVIDER ── */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}

.divider-gold {
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.3;
}

/* ── BADGE ── */
.badge {
  display: inline-block;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.badge-emerald {
  border-color: rgba(61,186,111,0.3);
  color: var(--emerald-bright);
  background: rgba(61,186,111,0.06);
}

.badge-gold {
  border-color: var(--border-gold);
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}

/* ── CARD BASE ── */
.card {
  background: rgba(26,77,46,0.07);
  border: 1px solid var(--border);
  padding: 2.5rem;
  transition: border-color var(--transition), background var(--transition);
}

.card:hover {
  border-color: rgba(61,186,111,0.3);
  background: rgba(26,77,46,0.12);
}

/* ── FORM ELEMENTS ── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-input,
.form-select,
.form-textarea {
  background: rgba(13,35,24,0.7);
  border: 1px solid rgba(61,186,111,0.15);
  color: var(--cream);
  padding: 0.8rem 1rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  border-radius: var(--radius);
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--emerald-bright);
  background: rgba(13,35,24,0.9);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(244,239,228,0.2);
}

.form-select { cursor: pointer; }
.form-select option { background: var(--dark-mid); color: var(--cream); }

.form-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

/* ── CHECKBOX & RADIO ── */
.check-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.7rem;
  color: var(--text-body);
  transition: color 0.2s;
  padding: 0.5rem 0.75rem;
  border: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}

.check-item:hover {
  color: var(--cream);
  border-color: var(--border);
  background: rgba(61,186,111,0.05);
}

.check-item input[type="checkbox"],
.check-item input[type="radio"] {
  width: 15px;
  height: 15px;
  accent-color: var(--emerald-bright);
  cursor: pointer;
  flex-shrink: 0;
}

/* ── FOOTER ── */
.footer {
  background: linear-gradient(to bottom, var(--dark-mid), var(--dark));
  border-top: 1px solid var(--border);
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.footer-logo span { color: var(--emerald-bright); }

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--emerald-bright);
  margin: 0.8rem 0 1.2rem;
}

.footer-desc {
  font-size: 0.7rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 280px;
}

.footer-col-title {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.72rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--emerald-bright); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .container, .container-sm { padding: 0 2.5rem; }
  .navbar { padding: 1.5rem 2.5rem; }
  .navbar.scrolled { padding: 1rem 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .container, .container-sm { padding: 0 1.5rem; }
  .navbar { padding: 1.2rem 1.5rem; }
  .navbar.scrolled { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .section-pad { padding: 5rem 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .check-group { grid-template-columns: 1fr; }
  .label::before { display: none; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .display { font-size: 2.8rem; }
}
