/* ============================================================
   Anthony the Landscaper — styles.css
   ============================================================ */

/* ---- Custom Properties ---- */
:root {
  --green-deep: #1E4D3A;
  --green-fresh: #3D7A57;
  --green-light: #5A9E74;
  --sand: #C9B79C;
  --sand-light: #E8DED0;
  --charcoal: #1F2933;
  --charcoal-mid: #3D4A56;
  --bg-soft: #F6F5F1;
  --bg-tinted: #EFF0EB;
  --white: #FFFFFF;
  --text-base: #2E3A30;
  --text-mid: #52685A;
  --text-muted: #7A8E80;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-sm: 0 2px 12px rgba(30,77,58,.08);
  --shadow-md: 0 6px 30px rgba(30,77,58,.13);
  --shadow-lg: 0 16px 60px rgba(30,77,58,.18);

  --transition: 280ms cubic-bezier(.4,0,.2,1);
  --transition-slow: 480ms cubic-bezier(.4,0,.2,1);

  --header-h: 76px;
  --max-w: 1180px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-base);
  background: var(--bg-soft);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; border: none; background: none; font: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.18; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 500; }
em { font-style: italic; }
p { max-width: 64ch; }

/* ---- Layout helpers ---- */
.container {
  width: min(var(--max-w), 100% - 3rem);
  margin-inline: auto;
}
.section { padding: clamp(5rem, 10vw, 9rem) 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .015em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--green-fresh); outline-offset: 3px; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
}
.btn-primary:hover {
  background: var(--green-fresh);
  border-color: var(--green-fresh);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: var(--white); transform: translateY(-2px); }

.btn-white { background: var(--white); color: var(--green-deep); border-color: var(--white); }
.btn-white:hover { background: var(--bg-soft); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-ghost-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-ghost-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); transform: translateY(-2px); }

/* ---- Section labels / eyebrows ---- */
.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-fresh);
  margin-bottom: .75rem;
}
.section-title { margin-bottom: 1rem; }
.section-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-mid);
  margin-bottom: 3.5rem;
}

/* ---- Reveal animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background var(--transition-slow), box-shadow var(--transition-slow);
  background: transparent;
}
.site-header.scrolled {
  background: rgba(246,245,241,.96);
  box-shadow: 0 1px 0 rgba(30,77,58,.10);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: var(--header-h);
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
  color: var(--white);
  transition: color var(--transition-slow);
}
.site-header.scrolled .brand { color: var(--charcoal); }
.brand-icon {
  font-size: 1.5rem;
  color: var(--sand);
  line-height: 1;
}
.brand-name {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.2;
}
.brand-name em { font-weight: 500; }

.main-nav { margin-left: auto; }
.main-nav ul {
  display: flex;
  gap: 2rem;
}
.main-nav a {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  transition: color var(--transition);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 1px;
  background: var(--sand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after { transform: scaleX(1); }
.site-header.scrolled .main-nav a { color: var(--text-mid); }
.site-header.scrolled .main-nav a:hover { color: var(--green-deep); }

.header-cta {
  padding: .55rem 1.3rem;
  font-size: .85rem;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), background var(--transition-slow);
}
.site-header.scrolled .nav-toggle span { background: var(--charcoal); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 0;
    background: var(--green-deep);
    padding: 2.5rem 2rem;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    overflow-y: auto;
  }
  .main-nav.open { transform: none; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav a {
    display: block;
    padding: .9rem 0;
    font-size: 1.1rem;
    color: rgba(255,255,255,.9);
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .main-nav { margin-left: 0; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero.loaded .hero-img { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(14,38,26,.75) 0%,
    rgba(30,77,58,.55) 50%,
    rgba(20,55,38,.65) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 3rem) clamp(1.25rem, 6vw, 6rem) 4rem;
  max-width: 760px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.25rem;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.85);
  max-width: 52ch;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  letter-spacing: .04em;
}
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 50%;
  animation: scrollBounce 2.4s ease-in-out infinite;
}
.scroll-arrow {
  display: block;
  width: 9px;
  height: 9px;
  border-right: 2px solid rgba(255,255,255,.7);
  border-bottom: 2px solid rgba(255,255,255,.7);
  transform: rotate(45deg) translateY(-2px);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .7; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--bg-soft);
  border: 1px solid rgba(30,77,58,.08);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30,77,58,.2);
}
.service-icon {
  font-size: 2rem;
  color: var(--green-fresh);
  margin-bottom: 1rem;
  line-height: 1;
}
.service-card h3 { margin-bottom: .5rem; font-size: 1.15rem; }
.service-card p { font-size: .92rem; color: var(--text-mid); line-height: 1.6; max-width: none; }

.services-extras {
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: var(--bg-tinted);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--green-fresh);
  font-size: .92rem;
  color: var(--text-mid);
  max-width: none;
}
.services-extras strong { color: var(--text-base); }

/* ============================================================
   FEATURED PROJECT
   ============================================================ */
.featured-project {
  background: var(--green-deep);
  color: var(--white);
}
.featured-project-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 860px) { .featured-project-inner { grid-template-columns: 1fr; gap: 2.5rem; } }

.featured-images {
  position: relative;
  aspect-ratio: 4/3;
}
.feat-img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feat-img-main {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.feat-img-secondary {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 55%;
  height: 55%;
  border: 4px solid var(--green-deep);
  border-radius: var(--radius-md);
  z-index: 2;
  box-shadow: var(--shadow-lg);
}
.feat-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 3;
  background: var(--sand);
  color: var(--charcoal);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.3;
  padding: .6rem 1rem;
  border-radius: var(--radius-sm);
}

.featured-copy .section-label { color: var(--sand); }
.featured-copy h2 { color: var(--white); margin-bottom: 1.25rem; }
.featured-copy p { color: rgba(255,255,255,.8); margin-bottom: 1rem; max-width: 52ch; }

.project-highlights {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.project-highlights li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .92rem;
  color: rgba(255,255,255,.85);
}
.project-highlights li::before {
  content: '✦';
  color: var(--sand);
  font-size: .7rem;
  flex-shrink: 0;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { background: var(--bg-soft); padding-bottom: clamp(4rem,8vw,8rem); }
.gallery-section .container { margin-bottom: 2.5rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
  padding-inline: clamp(.75rem, 3vw, 2rem);
  max-width: 1400px;
  margin-inline: auto;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  background: var(--bg-tinted);
}
.gallery-item:focus-visible { outline: 3px solid var(--green-fresh); outline-offset: 2px; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,38,26,.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay,
.gallery-item:focus-visible .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: .83rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: .02em;
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10,20,14,.93);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  animation: fadeIn .2s ease;
}
.lightbox[hidden] { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.lightbox-inner {
  position: relative;
  max-width: min(90vw, 1100px);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}
.lightbox-inner img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}
.lightbox-caption {
  color: rgba(255,255,255,.7);
  font-size: .88rem;
  text-align: center;
}
.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  color: rgba(255,255,255,.7);
  font-size: 1.5rem;
  padding: .5rem;
  border-radius: 50%;
  transition: color var(--transition), background var(--transition);
  line-height: 1;
  cursor: pointer;
}
.lightbox-close:hover { color: var(--white); background: rgba(255,255,255,.1); }
.lightbox-close:focus-visible { outline: 2px solid var(--white); }
.lightbox-prev, .lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.75);
  font-size: 2.5rem;
  padding: .75rem .6rem;
  transition: color var(--transition), background var(--transition);
  cursor: pointer;
  border-radius: var(--radius-sm);
  line-height: 1;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover, .lightbox-next:hover { color: var(--white); background: rgba(255,255,255,.1); }
.lightbox-prev:focus-visible, .lightbox-next:focus-visible { outline: 2px solid var(--white); }

/* ============================================================
   WHY SECTION
   ============================================================ */
.why-section { background: var(--bg-tinted); }
.why-section .section-title { text-align: center; margin-bottom: 3rem; }
.why-section .section-label { display: block; text-align: center; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(30,77,58,.07);
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(30,77,58,.07);
  line-height: 1;
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
}
.why-card h3 { margin-bottom: .5rem; font-size: 1.1rem; }
.why-card p { font-size: .92rem; color: var(--text-mid); line-height: 1.65; max-width: none; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section { background: var(--white); }
.reviews-section .section-title { margin-bottom: 2.5rem; }

.featured-review {
  background: var(--green-deep);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  max-width: 780px;
  margin: 0 auto 3.5rem;
  position: relative;
  overflow: hidden;
}
.featured-review::before {
  content: '"';
  position: absolute;
  top: -.4em;
  left: .5rem;
  font-family: var(--font-display);
  font-size: 12rem;
  line-height: 1;
  color: rgba(255,255,255,.05);
  pointer-events: none;
}
.featured-review .stars { color: var(--sand); font-size: 1.1rem; margin-bottom: 1rem; }
.featured-review blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-style: italic;
  line-height: 1.65;
  color: rgba(255,255,255,.92);
  margin-bottom: 1.25rem;
}
.featured-review cite {
  font-size: .88rem;
  font-weight: 600;
  color: var(--sand);
  letter-spacing: .04em;
  font-style: normal;
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.review-card {
  background: var(--bg-soft);
  border: 1px solid rgba(30,77,58,.07);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.review-card .stars { color: var(--green-fresh); font-size: .9rem; margin-bottom: .75rem; }
.review-card p { font-size: .9rem; color: var(--text-mid); margin-bottom: 1rem; line-height: 1.65; max-width: none; }
.review-card cite { font-size: .8rem; font-weight: 600; color: var(--text-muted); font-style: normal; }

.review-names {
  text-align: center;
  font-size: .88rem;
  color: var(--text-muted);
  max-width: none;
}
.review-names strong { color: var(--text-mid); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { background: var(--bg-soft); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 860px) { .about-inner { grid-template-columns: 1fr; gap: 2.5rem; } }

.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: 1.5rem;
  right: -1rem;
  background: var(--green-deep);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.4;
  text-align: center;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.about-copy h2 { margin-bottom: 1.25rem; }
.about-copy p { font-size: .97rem; color: var(--text-mid); margin-bottom: 1rem; line-height: 1.75; }
.about-facts {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-top: 1.75rem;
}
.fact {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-base);
}
.fact strong { color: var(--green-fresh); }

/* ============================================================
   NEXTDOOR NEIGHBORHOOD FAVES BADGES
   ============================================================ */
.nd-awards {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(30,77,58,.1);
}
.nd-awards-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  max-width: none;
}
.nd-badges {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.nd-badge {
  position: relative;
  flex-shrink: 0;
  width: 140px;
  filter: drop-shadow(0 8px 20px rgba(0,130,80,.22));
  transition: transform var(--transition), filter var(--transition);
}
.nd-badge svg {
  width: 100%;
  height: auto;
  display: block;
}
.nd-badge:hover {
  transform: translateY(-6px) scale(1.04);
  filter: drop-shadow(0 16px 32px rgba(0,130,80,.35));
}
.nd-badge--featured {
  width: 164px;
  filter: drop-shadow(0 10px 28px rgba(0,150,90,.32));
  animation: badgePulse 3.5s ease-in-out infinite;
}
.nd-badge--featured:hover {
  animation: none;
  transform: translateY(-8px) scale(1.05);
  filter: drop-shadow(0 18px 36px rgba(0,150,90,.45));
}
@keyframes badgePulse {
  0%, 100% { filter: drop-shadow(0 10px 28px rgba(0,150,90,.32)); }
  50%       { filter: drop-shadow(0 14px 36px rgba(0,200,120,.5)); }
}
.nd-badge-latest {
  position: absolute;
  top: -10px;
  right: -12px;
  background: var(--sand);
  color: var(--charcoal);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .65rem;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(0,0,0,.18);
  pointer-events: none;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding: clamp(5rem, 12vw, 10rem) 0;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,38,26,.87) 0%, rgba(30,77,58,.75) 100%);
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.cta-content h2 { color: var(--white); }
.cta-content p {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,.82);
  max-width: 58ch;
  text-align: center;
}
.cta-content .btn + .btn { margin-left: .5rem; }
.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 860px) { .contact-inner { grid-template-columns: 1fr; gap: 3rem; } }

.contact-info h2 { margin-bottom: 1.25rem; }
.contact-info p { font-size: .97rem; color: var(--text-mid); margin-bottom: 2rem; max-width: 44ch; }
.contact-phone {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 1rem;
  transition: color var(--transition);
}
.contact-phone:hover { color: var(--green-fresh); }
.contact-meta {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  font-size: .9rem;
  color: var(--text-mid);
}

/* ---- Form ---- */
.contact-form {
  background: var(--bg-soft);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border: 1px solid rgba(30,77,58,.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.1rem; }
.form-group label { font-size: .83rem; font-weight: 600; color: var(--text-base); letter-spacing: .02em; }
.form-group label span { color: var(--green-fresh); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: .93rem;
  color: var(--text-base);
  background: var(--white);
  border: 1.5px solid rgba(30,77,58,.15);
  border-radius: var(--radius-sm);
  padding: .7rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-fresh);
  box-shadow: 0 0 0 3px rgba(61,122,87,.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233D7A57' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-success {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(61,122,87,.12);
  border: 1px solid rgba(61,122,87,.3);
  border-radius: var(--radius-sm);
  color: var(--green-deep);
  font-size: .9rem;
  font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.7);
  padding: 3.5rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem;
  align-items: center;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .footer-nav { justify-content: center; }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--white);
}
.footer-brand .brand-icon { color: var(--sand); font-size: 1.3rem; }
.footer-brand .brand-name { font-family: var(--font-display); font-size: .9rem; line-height: 1.25; }
.footer-info { font-size: .85rem; line-height: 1.9; }
.footer-info a { color: var(--sand); transition: color var(--transition); }
.footer-info a:hover { color: var(--white); }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  font-size: .83rem;
}
.footer-nav a { transition: color var(--transition); }
.footer-nav a:hover { color: var(--white); }
.footer-bottom {
  text-align: center;
  padding: 1.25rem;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}