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

:root {
  /* earth-tone palette: deep pine/bottle green + bark brown, flat fills (no gradients) */
  --royal:    #1E4234;
  --navy:     #2B2118;
  --sky:      #7A9B5E;
  --white:    #FFFFFF;
  --offwhite: #F8F5EE;
  --gold:     #D4AF37;
  --text:     #332B21;
  --muted:    #6E6255;
  --shadow:   rgba(43, 33, 24, 0.18);
  --ease:     cubic-bezier(.22, 1, .36, 1);
}

html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; background: var(--offwhite); color: var(--text); overflow-x: hidden; }
section[id] { scroll-margin-top: 90px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 5%;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--royal);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 30px var(--shadow); }

.nav-logo {
  display: flex; align-items: center; gap: .8rem;
  text-decoration: none;
}
.nav-logo-icon {
  width: 46px; height: 46px; border-radius: 10px;
  background: var(--royal);
  display: grid; place-items: center;
  flex-shrink: 0;
  overflow: hidden;
}
.nav-logo-icon img { width: 100%; height: 100%; object-fit: cover; }
.nav-logo-text { line-height: 1.1; }
.nav-logo-text strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--navy); letter-spacing: .3px;
}
.nav-logo-text small {
  font-size: .68rem; font-weight: 400; letter-spacing: 1.2px;
  color: var(--muted); text-transform: uppercase;
}

.nav-center { display: flex; gap: 2rem; list-style: none; }
.nav-center a {
  text-decoration: none; font-size: .88rem; font-weight: 700;
  color: var(--text); letter-spacing: .5px; text-transform: uppercase;
  transition: color .2s;
}
.nav-center a:hover { color: var(--gold); }

.nav-right { display: flex; align-items: center; gap: .8rem; }
.nav-socials { display: flex; gap: .5rem; }
.nav-socials a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid rgba(30,66,52,.2);
  display: grid; place-items: center;
  color: var(--royal); text-decoration: none;
  transition: background .2s, color .2s;
}
.nav-socials a:hover { background: var(--royal); color: var(--white); }
.nav-socials svg { width: 15px; height: 15px; fill: currentColor; transition: fill .2s, stroke .2s; }
.nav-socials .icon-facebook { fill: #1877F2; }
.nav-socials a:hover .icon-facebook { fill: var(--white); }
.nav-socials .icon-instagram { width: 17px; height: 17px; fill: none; stroke: #D6249F; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }
.nav-socials a:hover .icon-instagram { stroke: var(--white); }

.nav-cta {
  background: var(--royal); color: var(--white);
  padding: .55rem 1.4rem; border-radius: 6px;
  font-size: .85rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  text-decoration: none; transition: background .3s var(--ease), transform .3s var(--ease);
}
.nav-cta:hover { background: var(--navy); transform: translateY(-2px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { display: block; width: 25px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 9rem 5% 5rem;
  position: relative; overflow: hidden;
}
.hero-bg-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,42,32,.65) 0%, rgba(20,42,32,.45) 40%, rgba(20,42,32,.85) 100%);
}
#hero::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 80px; z-index: 1;
  background: var(--offwhite);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-inner { position: relative; z-index: 2; max-width: 820px; }

.hero-logo-wrap {
  display: inline-flex; flex-direction: column; align-items: center;
  margin-bottom: 1rem;
  animation: fadeUp .9s .1s both;
}
.hero-tree-icon-small {
  width: 60px; height: 60px; border-radius: 14px;
  margin-bottom: 1.2rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
}
.hero-headline {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -.5px;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 4px 24px rgba(0,0,0,.7), 0 2px 8px rgba(0,0,0,.6);
}
.hero-tagline-text {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold);
  margin-top: .7rem;
  text-shadow: 0 2px 10px rgba(0,0,0,.7);
}

.hero-desc {
  margin-top: 1.5rem; font-size: 1.1rem; font-weight: 400; line-height: 1.85;
  color: var(--white); text-shadow: 0 2px 10px rgba(0,0,0,.6);
  max-width: 600px; margin-left: auto; margin-right: auto;
  animation: fadeUp .9s .4s both;
}

.hero-actions {
  margin-top: 2.2rem; display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  animation: fadeUp .9s .5s both;
}
.btn-primary {
  background: var(--white); color: var(--royal);
  padding: .9rem 2.4rem; border-radius: 6px;
  font-weight: 700; font-size: .95rem; letter-spacing: .5px; text-transform: uppercase;
  text-decoration: none; transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.3); }
.btn-outline {
  border: 2px solid rgba(255,255,255,.45); color: var(--white);
  padding: .9rem 2.4rem; border-radius: 6px;
  font-size: .95rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  text-decoration: none; transition: background .3s var(--ease), border-color .3s var(--ease);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }

.hero-stats {
  margin-top: 3rem; display: flex; gap: 0; justify-content: center;
  border-top: 1px solid rgba(255,255,255,.15); padding-top: 2rem;
  animation: fadeUp .9s .65s both;
}
.stat-item {
  padding: 0 2rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,.15);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 700; color: var(--gold);
}
.stat-label { font-size: .75rem; color: rgba(255,255,255,.55); letter-spacing: 1px; text-transform: uppercase; margin-top: .3rem; }

/* ── SECTION SHARED ── */
.section-tag {
  display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: 2.5px;
  color: var(--royal); text-transform: uppercase; margin-bottom: .7rem;
}
h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -.5px;
  text-transform: uppercase;
  color: var(--navy);
}
.section-header { text-align: center; margin-bottom: 4rem; }
.section-breaker {
  background: var(--navy);
  padding: 4.5rem 5% 4rem;
  text-align: center;
}
.section-breaker .section-tag { color: var(--gold); }
.section-breaker h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--white);
  margin-top: .5rem;
}
.section-breaker p {
  color: rgba(255,255,255,.65);
  margin-top: 1.1rem;
  font-size: .95rem;
  max-width: 560px;
  margin-left: auto; margin-right: auto;
}
.section-divider {
  width: 50px; height: 3px;
  background: var(--royal);
  border-radius: 2px; margin: 1rem auto 0;
}

/* ── SERVICES ── */
#services { position: relative; overflow: hidden; padding: 7rem 5%; }
#services::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image: url('../images/gallery/gallery-crown-pruning.jpg');
  background-size: cover; background-position: center;
  filter: brightness(.5) saturate(.85);
}
#services::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(20,42,32,.78) 0%, rgba(20,42,32,.6) 100%);
}
#services .section-header, #services .services-grid { position: relative; z-index: 1; }
#services .section-tag { color: var(--gold); }
#services h2 { color: var(--white); }
#services .section-divider { background: var(--gold); }
.services-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.6rem; }
.service-card {
  position: relative; overflow: hidden;
  border-radius: 12px;
  flex: 0 1 300px; max-width: 340px;
  min-height: 300px;
  display: flex; align-items: flex-end;
  background-size: cover; background-position: center;
  box-shadow: 0 6px 20px rgba(43,33,24,.15);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), background-size .6s var(--ease);
}
.service-card:hover { transform: translateY(-7px); box-shadow: 0 16px 45px var(--shadow); background-size: 114%; }

/* darken the photo slightly so the white text stays legible on any image */
.service-card::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: rgba(43,33,24,.18);
}

.services-grid .service-card:nth-child(1) { animation-delay: 0s; }
.services-grid .service-card:nth-child(2) { animation-delay: .07s; }
.services-grid .service-card:nth-child(3) { animation-delay: .14s; }
.services-grid .service-card:nth-child(4) { animation-delay: .21s; }
.services-grid .service-card:nth-child(5) { animation-delay: .28s; }
.services-grid .service-card:nth-child(6) { animation-delay: .35s; }
.testi-grid .testi-card:nth-child(1) { animation-delay: 0s; }
.testi-grid .testi-card:nth-child(2) { animation-delay: .1s; }
.testi-grid .testi-card:nth-child(3) { animation-delay: .2s; }

.service-card-overlay {
  position: relative; z-index: 2; width: 100%;
  padding: 2.2rem 1.6rem 1.6rem;
  background: linear-gradient(180deg, rgba(43,33,24,0) 0%, rgba(43,33,24,.65) 40%, rgba(43,33,24,.94) 100%);
}
.service-card-overlay h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: .5rem;
}
.service-card-overlay p { font-size: .88rem; line-height: 1.65; color: rgba(255,255,255,.82); }

/* ── STORM DAMAGE BANNER ── */
#storm-banner { background: var(--gold); padding: 3.5rem 5%; text-align: center; }
.storm-banner-icon { width: 56px; height: 56px; border-radius: 12px; margin: 0 auto 1rem; display: block; }
#storm-banner h2 { color: var(--navy); font-size: clamp(2.2rem, 5vw, 3.2rem); margin-bottom: .6rem; }
#storm-banner p { color: var(--navy); opacity: .85; font-size: 1.05rem; max-width: 500px; margin: 0 auto 1.6rem; }
.btn-storm {
  display: inline-block; background: var(--navy); color: var(--white);
  padding: .9rem 2.4rem; border-radius: 6px;
  font-weight: 700; font-size: .95rem; letter-spacing: .5px; text-transform: uppercase;
  text-decoration: none;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.btn-storm:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.25); }

/* ── WHY US ── */
#why {
  padding: 7rem 5%;
  background: var(--navy);
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.why-text .section-tag { color: var(--gold); }
.why-text h2 { color: var(--white); margin-bottom: 1rem; }
.why-text > p { color: rgba(255,255,255,.7); line-height: 1.85; font-size: .95rem; margin-bottom: 2rem; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: .9rem; }
.why-list li { display: flex; align-items: flex-start; gap: .8rem; color: rgba(255,255,255,.85); font-size: .95rem; }
.why-list li::before {
  content: '✓'; flex-shrink: 0; width: 22px; height: 22px;
  background: var(--gold); color: var(--navy); border-radius: 50%;
  display: grid; place-items: center; font-size: .7rem; font-weight: 700; margin-top: 1px;
}

.faith-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px; padding: 2.5rem; text-align: center;
}
.faith-tree {
  width: 80px; height: 80px; border-radius: 16px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  display: grid; place-items: center; margin: 0 auto 1.5rem;
  overflow: hidden;
}
.faith-tree img { width: 100%; height: 100%; object-fit: cover; }
.faith-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; color: var(--white); font-weight: 700; margin-bottom: .5rem;
}
.faith-card p { color: rgba(255,255,255,.6); font-size: .9rem; line-height: 1.8; margin-bottom: 1.8rem; }
.faith-motto {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.25rem;
  color: var(--gold); letter-spacing: .5px;
}
.faith-line { width: 60px; height: 1px; background: rgba(212,175,55,.4); margin: .8rem auto 0; }
.cert-row { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.8rem; justify-content: center; }
.cert-badge {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.8); font-size: .75rem; font-weight: 700;
  padding: .35rem .9rem; border-radius: 50px; letter-spacing: .5px;
}

/* ── PROCESS ── */
#process { position: relative; overflow: hidden; padding: 7rem 5%; }
.process-bg-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.process-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(20,42,32,.93) 0%, rgba(20,42,32,.8) 45%, rgba(20,42,32,.4) 100%);
}
.process-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 4rem; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.process-text { text-align: left; }
.process-text .section-tag { color: var(--gold); }
.process-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--white); margin-top: .6rem;
}
.process-text p { color: rgba(255,255,255,.75); margin-top: 1.2rem; line-height: 1.75; font-size: .98rem; max-width: 480px; }
.process-text .btn-primary { margin-top: 1.8rem; display: inline-block; }

.process-card {
  background: rgba(255,255,255,.08); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px; padding: 2.2rem;
}
.process-card-tag {
  display: inline-block; background: var(--gold); color: var(--navy);
  font-size: .72rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  padding: .4rem .9rem; border-radius: 50px; margin-bottom: 1.2rem;
}
.process-card h3 {
  font-family: 'Lato', sans-serif; font-weight: 900; text-transform: uppercase;
  font-size: 1.3rem; color: var(--white); margin-bottom: 1.3rem;
}
.process-list { list-style: none; display: flex; flex-direction: column; gap: .9rem; }
.process-list li { display: flex; align-items: flex-start; gap: .7rem; color: rgba(255,255,255,.9); font-size: .92rem; }
.process-check {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 5px;
  background: var(--gold); color: var(--navy);
  display: grid; place-items: center; font-size: .7rem; font-weight: 900; margin-top: 1px;
}

/* ── GALLERY ── */
.gallery-inner { position: relative; overflow: hidden; padding: 5rem 5% 7rem; }
.gallery-inner::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image: url('../images/gallery/gallery-oak-removal.jpg');
  background-size: cover; background-position: center;
  filter: brightness(.5) saturate(.85);
}
.gallery-inner::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(20,42,32,.78) 0%, rgba(20,42,32,.6) 100%);
}
.gallery-grid {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1rem; margin-top: 3rem;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: 12px; cursor: pointer;
  background: var(--navy);
  border: 2px solid transparent;
  flex: 1 1 300px; max-width: 380px; aspect-ratio: 4 / 3;
  transition: border-color .3s;
}
.gallery-item:hover { border-color: var(--royal); }
.gallery-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.gallery-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(43,33,24,.85) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 1.2rem;
}
.gallery-item:hover .gallery-img { transform: scale(1.06); }
.gallery-label { color: var(--white); font-size: .85rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; }
.gallery-zoom {
  position: absolute; top: .8rem; right: .8rem;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.95); border: none; cursor: pointer;
  display: grid; place-items: center; opacity: 0; transition: opacity .3s;
}
.gallery-item:hover .gallery-zoom { opacity: 1; }
.gallery-zoom svg { width: 16px; height: 16px; stroke: var(--navy); fill: none; stroke-width: 2; stroke-linecap: round; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 999; background: rgba(0,0,0,.93); display: none; place-items: center; padding: 2rem; }
.lightbox.active { display: grid; }
.lightbox-img, .lightbox-video { display: none; max-width: 90vw; max-height: 85vh; border-radius: 10px; object-fit: contain; }
.lightbox-img.active, .lightbox-video.active { display: block; }
.lightbox-video { background: #000; }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: white; font-size: 1.2rem; cursor: pointer; display: grid; place-items: center; z-index: 2; }
.lightbox-close:hover { background: rgba(255,255,255,.2); }
.lightbox-caption { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.65); font-size: .88rem; white-space: nowrap; }

/* ── VIDEO GALLERY ── */
.video-inner { position: relative; overflow: hidden; padding: 5rem 5% 7rem; }
.video-inner::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image: url('../images/video-posters/poster-high-cutting.jpg');
  background-size: cover; background-position: center;
  filter: brightness(.5) saturate(.85);
}
.video-inner::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(20,42,32,.78) 0%, rgba(20,42,32,.6) 100%);
}
.video-grid {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1rem; margin-top: 3rem;
}
.video-item {
  position: relative; overflow: hidden; cursor: pointer;
  border-radius: 12px; aspect-ratio: 9 / 12;
  flex: 1 1 220px; max-width: 260px;
  background: var(--navy);
}
.video-poster {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s var(--ease), filter .4s var(--ease);
}
.video-item:hover .video-poster { transform: scale(1.06); filter: brightness(.75); }
.video-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(43,33,24,.85) 0%, transparent 45%);
}
.video-duration {
  position: absolute; top: .8rem; right: .8rem; z-index: 2;
  background: rgba(43,33,24,.75); color: var(--white);
  font-size: .72rem; font-weight: 700; letter-spacing: .3px;
  padding: .25rem .55rem; border-radius: 5px;
}
.video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(1);
  width: 56px; height: 56px; border-radius: 50%; z-index: 2;
  background: rgba(255,255,255,.95); border: none; cursor: pointer;
  display: grid; place-items: center;
  transition: transform .35s var(--ease), background .3s var(--ease);
  box-shadow: 0 6px 20px rgba(0,0,0,.35);
}
.video-item:hover .video-play { transform: translate(-50%,-50%) scale(1.12); background: var(--white); }
.video-play svg { width: 20px; height: 20px; fill: var(--royal); margin-left: 3px; }
.video-caption {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem; z-index: 2;
  color: var(--white); font-size: .92rem; font-weight: 700; letter-spacing: .3px;
}
/* ── TESTIMONIALS ── */
#testimonials { padding: 7rem 5%; background: var(--offwhite); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.6rem; margin-top: 3rem; }
.testi-card {
  background: var(--white); border: 1px solid rgba(43,33,24,.08);
  border-radius: 12px; padding: 2rem;
  border-left: 4px solid var(--gold);
  box-shadow: 0 6px 20px rgba(43,33,24,.08);
}
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 3px; margin-bottom: 1rem; }
.testi-card blockquote { font-size: .93rem; line-height: 1.8; color: var(--muted); font-style: italic; margin-bottom: .5rem; }
.testi-translation { font-size: .8rem; line-height: 1.6; color: rgba(51,43,33,.55); margin-bottom: 1.2rem; }
.testi-author { display: flex; align-items: center; gap: .8rem; }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--royal); display: grid; place-items: center; font-size: .95rem; color: white; font-weight: 700; flex-shrink: 0; }
.author-info strong { display: block; font-size: .88rem; color: var(--navy); font-weight: 700; }
.author-info span { font-size: .76rem; color: var(--muted); }

.testi-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(30,66,52,.08); color: var(--royal);
  font-size: .74rem; font-weight: 700; letter-spacing: .2px;
  padding: .4rem .85rem; border-radius: 50px; margin-bottom: 1.2rem;
}
.testi-badge svg { width: 13px; height: 13px; fill: var(--royal); flex-shrink: 0; }
.testi-reply {
  background: rgba(43,33,24,.05); border-radius: 8px; padding: .8rem 1rem;
  font-size: .82rem; line-height: 1.6; color: var(--muted); margin-bottom: 1.5rem;
}
.testi-reply strong { color: var(--navy); }

.testi-cta {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: .9rem;
  background: var(--royal);
  border: none; padding: 2.6rem 2rem;
}
.testi-cta h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--white); }
.testi-cta p { color: rgba(255,255,255,.7); font-size: .88rem; line-height: 1.7; }
.btn-fb {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--white); color: var(--royal);
  padding: .75rem 1.5rem; border-radius: 6px; text-decoration: none;
  font-weight: 700; font-size: .85rem; letter-spacing: .3px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.btn-fb:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.3); }

/* ── SERVICE AREA ── */
#service-area { background: var(--navy); padding: 6rem 5%; }
.area-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 3.5rem; align-items: center;
  max-width: 1200px; margin: 0 auto 3.5rem;
}
.area-photo-wrap { border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 3; box-shadow: 0 20px 50px rgba(0,0,0,.35); }
.area-photo { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(.75) saturate(.9); }
.area-text { text-align: left; }
.area-text .section-tag { color: var(--gold); }
.area-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--white); margin-top: .5rem;
}
.area-highlight { color: var(--gold); }
.area-text p { color: rgba(255,255,255,.75); margin-top: 1.1rem; line-height: 1.75; font-size: .97rem; max-width: 520px; }
.area-text .btn-primary { margin-top: 1.6rem; display: inline-block; }

.area-list {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem;
  max-width: 1100px; margin: 0 auto;
}
.area-pill {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15);
  color: var(--white); font-size: .92rem; text-align: center;
  padding: .8rem 1.6rem; border-radius: 8px;
  flex: 1 1 160px; max-width: 220px;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.area-pill:hover { background: rgba(255,255,255,.12); border-color: rgba(212,175,55,.5); }
.area-callout-line {
  text-align: center; color: rgba(255,255,255,.6);
  font-size: .95rem; margin-top: 1.6rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .55rem;
}
.area-call-btn {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--gold); color: var(--navy); text-decoration: none;
  padding: .5rem 1.2rem; border-radius: 50px;
  font-weight: 700; font-size: .88rem; letter-spacing: .2px;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  animation: pulseCall 2.5s ease-in-out infinite;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.area-call-btn svg { width: 14px; height: 14px; fill: var(--navy); }
.area-call-btn:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 8px 20px rgba(0,0,0,.35); }

/* ── CONTACT ── */
#contact {
  padding: 7rem 5%;
  background: var(--navy);
}
.contact-inner { max-width: 780px; margin: 0 auto; }
#contact .section-tag { color: var(--gold); }
#contact h2 { color: var(--white); text-align: center; margin-bottom: .7rem; }
.contact-sub { text-align: center; color: rgba(255,255,255,.6); margin-bottom: 3.5rem; font-size: .95rem; line-height: 1.7; }
.form-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 3rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group.full { grid-column: 1 / -1; }
.address-row { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1.2rem; }
label { font-size: .75rem; font-weight: 700; letter-spacing: 1px; color: rgba(255,255,255,.65); text-transform: uppercase; }
input, select, textarea { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 8px; padding: .85rem 1.1rem; font-family: 'Lato', sans-serif; font-size: .95rem; color: var(--white); outline: none; transition: border-color .2s, background .2s; width: 100%; }
input::placeholder, textarea::placeholder { color: rgba(255,255,255,.3); }
select option { background: var(--navy); color: var(--white); }
input:focus, select:focus, textarea:focus { border-color: var(--sky); background: rgba(255,255,255,.12); }
input.invalid, select.invalid, textarea.invalid { border-color: #F87171; background: rgba(248,113,113,.08); }
input.valid, select.valid, textarea.valid { border-color: #7DD4A8; }
.field-error { font-size: .78rem; color: #F87171; min-height: 1.1em; }
textarea { resize: vertical; min-height: 130px; }
.form-submit { margin-top: 1.8rem; text-align: center; }
.btn-submit { background: var(--white); color: var(--royal); border: none; cursor: pointer; padding: 1rem 3rem; border-radius: 6px; font-family: 'Lato', sans-serif; font-size: .95rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; transition: transform .2s, box-shadow .2s, opacity .2s; box-shadow: 0 4px 16px rgba(0,0,0,.25); }
.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.3); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.form-status { margin-top: 1.2rem; text-align: center; font-size: .9rem; font-weight: 700; min-height: 1.4rem; }
.form-status.success { color: #7DD4A8; }
.form-status.error   { color: #F87171; }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 3.5rem 5% 1.5rem; border-top: 3px solid var(--royal); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; flex-wrap: wrap; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.08); }

.footer-brand-logo { display: flex; align-items: center; gap: .8rem; margin-bottom: .8rem; }
.footer-tree-badge { width: 46px; height: 46px; border-radius: 10px; background: var(--royal); display: grid; place-items: center; overflow: hidden; }
.footer-tree-badge img { width: 100%; height: 100%; object-fit: cover; }
.footer-brand-name strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; color: var(--white); }
.footer-brand-name small { font-size: .68rem; letter-spacing: 1px; color: var(--gold); text-transform: uppercase; }

.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.4); max-width: 240px; line-height: 1.7; margin-bottom: 1.2rem; }
.footer-motto { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1rem; color: var(--gold); }

.footer-socials { display: flex; gap: .7rem; margin-top: 1.2rem; }
.footer-socials a { width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.15); display: grid; place-items: center; color: rgba(255,255,255,.6); text-decoration: none; transition: background .2s, border-color .2s, color .2s; }
.footer-socials a:hover { background: var(--royal); border-color: var(--royal); color: var(--white); }
.footer-socials svg { width: 16px; height: 16px; fill: currentColor; }
.footer-socials .icon-instagram { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.footer-col h4 { font-size: .7rem; letter-spacing: 2px; font-weight: 700; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col a { text-decoration: none; font-size: .88rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { margin-top: 1.5rem; text-align: center; font-size: .75rem; color: rgba(255,255,255,.22); line-height: 1.8; }

/* ── QUICK ACTIONS (floating call/quote buttons) ── */
.quick-actions {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 500;
  display: flex; flex-direction: column; gap: .9rem; align-items: flex-end;
}
.quick-action-btn {
  position: relative;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  text-decoration: none; flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.quick-action-btn svg { width: 24px; height: 24px; fill: currentColor; }
.quick-action-btn:hover { transform: scale(1.08); box-shadow: 0 12px 30px rgba(0,0,0,.45); }
.quick-quote { background: var(--royal); color: var(--white); }
.quick-call { background: var(--gold); color: var(--navy); animation: pulseCall 2.5s ease-in-out infinite; }

.quick-action-label {
  position: absolute; right: calc(100% + .8rem); top: 50%; transform: translateY(-50%) translateX(6px);
  background: var(--navy); color: var(--white);
  padding: .5rem 1rem; border-radius: 6px; font-size: .82rem; font-weight: 700;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.quick-action-btn:hover .quick-action-label { opacity: 1; transform: translateY(-50%) translateX(0); }

@keyframes pulseCall {
  0%, 100% { box-shadow: 0 8px 24px rgba(0,0,0,.35), 0 0 0 0 rgba(212,175,55,.5); }
  50% { box-shadow: 0 8px 24px rgba(0,0,0,.35), 0 0 0 10px rgba(212,175,55,0); }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes revealUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; }
.reveal.visible { animation: revealUp .8s var(--ease) both; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  #why { grid-template-columns: 1fr; gap: 3rem; }
  .process-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-text { text-align: center; }
  .process-text p { margin-left: auto; margin-right: auto; }
  .area-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .area-text { text-align: center; }
  .area-text p { margin-left: auto; margin-right: auto; }
}
@media (max-width: 720px) {
  .nav-center, .nav-socials { display: none; }
  .nav-center.open { display: flex; flex-direction: column; gap: 1.5rem; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 2rem 5%; border-bottom: 2px solid var(--royal); z-index: 199; }
  .hamburger { display: flex; }
  .form-grid { grid-template-columns: 1fr; }
  .address-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .form-card { padding: 2rem 1.5rem; }
  .footer-top { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding: 0 0 1.5rem; }
  .stat-item:last-child { border-bottom: none; padding-bottom: 0; }
  .quick-actions { bottom: 1rem; right: 1rem; gap: .7rem; }
  .quick-action-btn { width: 52px; height: 52px; }
  .quick-action-label { display: none; }
}
