/* ============================================================
   THE LAWN GUYS ORLANDO — Stylesheet v2.0
   ============================================================ */

/* 1. RESET & VARIABLES */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --g950: #08160D;
  --g900: #0F2318;
  --g800: #173222;
  --g700: #1F4530;
  --g600: #29593D;
  --g500: #336E4C;
  --g400: #4A9B6B;
  --g200: #A6CEBA;
  --g100: #DCEDE3;
  --gold:  #C9A44B;
  --gold2: #E8C878;
  --ivory: #FAF8F2;
  --warm:  #F1EDE3;
  --border:#E0DDD4;
  --text:  #1A1C17;
  --mid:   #50594A;
  --muted: #89937F;
  --white: #FFFFFF;

  --ff-head: 'DM Serif Display', Georgia, serif;
  --ff-body: 'Outfit', system-ui, sans-serif;

  --pad-section: clamp(64px, 9vw, 120px);
  --pad-x: clamp(1.25rem, 5vw, 3rem);
  --max-w: 1240px;

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;

  --sh-sm: 0 2px 8px rgba(0,0,0,.07);
  --sh-md: 0 6px 24px rgba(0,0,0,.11);
  --sh-lg: 0 16px 56px rgba(0,0,0,.18);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur:  0.45s;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--ivory);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* 2. TYPOGRAPHY */
h1, h2, h3, h4 { font-family: var(--ff-head); line-height: 1.15; color: var(--text); }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h4 { font-size: 1.15rem; font-family: var(--ff-body); font-weight: 600; }
p  { max-width: 68ch; }

.eyebrow {
  font-family: var(--ff-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .75rem;
}

.lead {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--mid);
  max-width: 60ch;
}

/* 3. LAYOUT */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

section { padding: var(--pad-section) 0; }

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

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 2rem; }
  .grid-4 { grid-template-columns: 1fr; }
}

/* 4. NAVIGATION */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 var(--pad-x);
  height: 76px;
  display: flex;
  align-items: center;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              height .3s var(--ease);
}

#site-nav.scrolled {
  background: var(--g900);
  box-shadow: 0 4px 30px rgba(0,0,0,.35);
  height: 68px;
}

.nav-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.logo-link { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }

.logo-mark svg { width: 38px; height: 44px; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text .lg-name {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: .01em;
}
.logo-text .lg-city {
  font-family: var(--ff-body);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-links a, .nav-links button.nav-drop-btn {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  padding: .5rem .8rem;
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: .3rem;
  background: none;
  font-family: var(--ff-body);
  cursor: pointer;
}

.nav-links a:hover,
.nav-links button.nav-drop-btn:hover { color: var(--white); background: rgba(255,255,255,.08); }

.nav-links a.nav-cta {
  background: var(--gold);
  color: var(--g900);
  font-weight: 700;
  padding: .55rem 1.25rem;
  border-radius: var(--r-sm);
  margin-left: .5rem;
}
.nav-links a.nav-cta:hover { background: var(--gold2); }

/* Dropdown */
.nav-drop { position: relative; }
.nav-drop-btn .chevron { font-size: .65rem; transition: transform .25s; }
.nav-drop:hover .chevron { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  border: 1px solid var(--border);
  min-width: 200px;
  padding: .5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}

.nav-drop:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  color: var(--text) !important;
  font-size: .875rem;
  padding: .55rem .9rem !important;
  border-radius: var(--r-sm);
  display: block !important;
  background: none !important;
  width: 100%;
}
.dropdown-menu a:hover { background: var(--warm) !important; color: var(--g700) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  background: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .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); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--g950);
  z-index: 999;
  padding: 100px var(--pad-x) 3rem;
  overflow-y: auto;
  flex-direction: column;
  gap: .25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,.8);
  font-size: 1.2rem;
  font-weight: 500;
  padding: .85rem 1rem;
  border-radius: var(--r-sm);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s, padding-left .2s;
}
.mobile-menu a:hover { color: var(--white); padding-left: 1.5rem; }
.mobile-menu .mob-cta {
  margin-top: 1.5rem;
  background: var(--gold);
  color: var(--g900) !important;
  font-weight: 700;
  text-align: center;
  border-radius: var(--r-sm);
  border-bottom: none !important;
}
.mobile-menu .mob-section {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 1.5rem 1rem .4rem;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* 5. PAGE HERO (inner pages) */
.page-hero {
  background: var(--g900);
  padding: 140px var(--pad-x) 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(42,89,61,.4) 0%, transparent 70%);
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,.7); margin: 0 auto; }
.page-hero .eyebrow { justify-content: center; display: flex; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* 6. HOMEPAGE HERO */
#hero {
  height: 100vh;
  min-height: 640px;
  max-height: 960px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(9,24,14,.88) 0%, rgba(15,35,24,.72) 55%, rgba(15,35,24,.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -.01em;
}

.hero-content h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-content .lead {
  color: rgba(255,255,255,.78);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  margin-bottom: 2.25rem;
  max-width: 52ch;
}

.hero-cities {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2.5rem;
}

.city-chip {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: .3rem .8rem;
  border-radius: 100px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.45);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* 7. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--ff-body);
  font-size: .95rem;
  font-weight: 600;
  padding: .85rem 1.85rem;
  border-radius: var(--r-sm);
  transition: all .3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--g900);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold2);
  border-color: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,164,75,.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}

.btn-outline-green {
  background: transparent;
  color: var(--g700);
  border-color: var(--g700);
}
.btn-outline-green:hover {
  background: var(--g700);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--g700);
  color: var(--white);
  border-color: var(--g700);
}
.btn-green:hover {
  background: var(--g600);
  border-color: var(--g600);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(31,69,48,.3);
}

/* 8. TRUST BAR */
#trust-bar {
  background: var(--g800);
  padding: 1.75rem 0;
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,.1);
  white-space: nowrap;
}
.trust-item:last-child { border-right: none; }

.trust-icon {
  width: 36px; height: 36px;
  background: rgba(201,164,75,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 18px; height: 18px; stroke: var(--gold); }

.trust-label { font-size: .8rem; color: rgba(255,255,255,.5); line-height: 1; margin-bottom: .1rem; }
.trust-value { font-weight: 700; color: var(--white); font-size: 1rem; }

@media (max-width: 768px) {
  .trust-item { padding: .75rem 1.5rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); width: 50%; }
  .trust-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }
  .trust-item:last-child, .trust-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
}

/* 9. SECTIONS */
.section-label { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
  max-width: 80px;
}

.section-header { margin-bottom: clamp(2.5rem, 4vw, 4rem); }
.section-header h2 { margin-bottom: .75rem; }
.section-header p { color: var(--mid); }

.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

.bg-dark { background: var(--g900); color: var(--white); }
.bg-dark h2, .bg-dark h3 { color: var(--white); }
.bg-dark .lead, .bg-dark p { color: rgba(255,255,255,.7); }
.bg-dark .eyebrow { color: var(--gold); }

.bg-warm { background: var(--warm); }

/* 10. SERVICE CARDS */
.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}

.service-card-img {
  height: 220px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.service-card:hover .service-card-img img { transform: scale(1.05); }

.service-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 { margin-bottom: .5rem; font-size: 1.35rem; }
.service-card-body p { color: var(--mid); font-size: .95rem; flex: 1; margin-bottom: 1.5rem; }

.service-tag-list { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.5rem; }
.service-tag {
  font-size: .75rem;
  font-weight: 600;
  color: var(--g600);
  background: var(--g100);
  padding: .25rem .7rem;
  border-radius: 100px;
}

/* 11. FEATURE LIST (why choose us) */
.feature-list { display: flex; flex-direction: column; gap: 1.5rem; }

.feature-item { display: flex; gap: 1.25rem; align-items: flex-start; }

.feature-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--g700), var(--g500));
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(31,69,48,.25);
}
.feature-icon svg { width: 22px; height: 22px; stroke: var(--white); }

.feature-text h4 { margin-bottom: .25rem; font-size: 1.05rem; }
.feature-text p  { color: var(--mid); font-size: .93rem; max-width: 42ch; margin: 0; }

/* 12. STATS ROW */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 4rem;
}

.stat-item {
  background: rgba(255,255,255,.04);
  padding: 2rem 1.5rem;
  text-align: center;
}
.stat-num {
  font-family: var(--ff-head);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: .35rem;
}
.stat-label { font-size: .82rem; color: rgba(255,255,255,.55); letter-spacing: .05em; }

@media (max-width: 768px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

/* 13. IMAGE BLOCKS */
.img-rounded {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.img-rounded img { width: 100%; height: 100%; object-fit: cover; display: block; }

.img-frame {
  position: relative;
}
.img-frame::before {
  content: '';
  position: absolute;
  inset: -16px -16px 16px 16px;
  border: 2px solid var(--gold);
  border-radius: var(--r-xl);
  z-index: 0;
}
.img-frame .img-rounded { position: relative; z-index: 1; }

.badge-float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  z-index: 2;
  background: var(--g800);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--sh-lg);
  border: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.badge-float .big { font-family: var(--ff-head); font-size: 2rem; color: var(--gold); line-height: 1; }
.badge-float small { font-size: .75rem; color: rgba(255,255,255,.6); }

/* 14. SERVICE AREAS */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.area-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  transition: background .25s, border-color .25s, transform .25s;
  text-decoration: none;
}
.area-card:hover {
  background: rgba(201,164,75,.12);
  border-color: rgba(201,164,75,.3);
  transform: translateY(-3px);
}
.area-card svg { width: 18px; height: 18px; stroke: var(--gold); flex-shrink: 0; }
.area-card span { font-size: .93rem; font-weight: 500; color: rgba(255,255,255,.8); }
.area-card:hover span { color: var(--white); }

/* 15. REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) { .reviews-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px)  { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border);
  position: relative;
  transition: box-shadow .3s;
}
.review-card:hover { box-shadow: var(--sh-md); }

.review-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: .06em; margin-bottom: 1rem; }
.review-text { font-size: .95rem; color: var(--mid); font-style: italic; margin-bottom: 1.25rem; }
.review-text::before { content: '\201C'; font-family: var(--ff-head); font-size: 3rem; color: var(--g100); line-height: 0; vertical-align: -.5em; margin-right: .15em; }

.review-author { display: flex; align-items: center; gap: .75rem; }
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g600), var(--g400));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .95rem; color: var(--white);
  flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: .95rem; }
.review-location { font-size: .8rem; color: var(--muted); }

.google-badge {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--warm);
  border-radius: var(--r-md);
  padding: 1rem 1.5rem;
  margin-top: 2.5rem;
}
.google-badge p { font-size: .9rem; color: var(--mid); max-width: none; }
.google-badge strong { color: var(--text); }

/* 16. FAQ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: .5rem; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow .25s;
}
.faq-item.open { box-shadow: var(--sh-md); }

.faq-q {
  width: 100%; text-align: left;
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  background: none;
  transition: color .2s;
}
.faq-item.open .faq-q { color: var(--g700); }
.faq-icon { width: 20px; height: 20px; background: var(--warm); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background .25s, transform .3s; flex-shrink: 0; }
.faq-item.open .faq-icon { background: var(--g100); transform: rotate(45deg); }
.faq-icon::before { content: '+'; font-size: 1rem; color: var(--g600); line-height: 1; font-weight: 700; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease), padding .3s;
  padding: 0 1.5rem;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 1.25rem;
}
.faq-a p { font-size: .95rem; color: var(--mid); margin: 0; }

/* 17. CONTACT / FORMS */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
@media (max-width: 860px) { .contact-layout { grid-template-columns: 1fr; } }

.contact-info { display: flex; flex-direction: column; gap: 2rem; }

.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item-icon {
  width: 46px; height: 46px;
  background: var(--g100);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item-icon svg { width: 20px; height: 20px; stroke: var(--g700); }
.contact-item h4 { margin-bottom: .2rem; font-size: .95rem; }
.contact-item p, .contact-item a { font-size: .93rem; color: var(--mid); margin: 0; }
.contact-item a:hover { color: var(--g600); }

.form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--sh-md);
  border: 1px solid var(--border);
}

.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: .4rem; margin-bottom: 1.1rem; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--mid); letter-spacing: .04em; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--ff-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--ivory);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: .75rem 1rem;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--g500);
  box-shadow: 0 0 0 3px rgba(51,112,72,.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* 18. GALLERY */
.gallery-masonry {
  columns: 3;
  column-gap: 1rem;
}
@media (max-width: 768px) { .gallery-masonry { columns: 2; } }
@media (max-width: 480px)  { .gallery-masonry { columns: 1; } }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img { width: 100%; display: block; transition: transform .5s var(--ease); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(9,24,14,.8), transparent);
  padding: 2rem 1rem .75rem;
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .gallery-item-label { opacity: 1; }

/* 19. CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--g900) 0%, var(--g700) 100%);
  padding: var(--pad-section) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,164,75,.12) 0%, transparent 65%);
}
.cta-banner .container { position: relative; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p  { color: rgba(255,255,255,.68); margin: 0 auto 2.25rem; max-width: 55ch; }

/* 20. FOOTER */
#footer {
  background: var(--g950);
  padding: 4.5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

.footer-brand .logo-link { margin-bottom: 1.25rem; display: inline-flex; }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.5); max-width: 36ch; margin-bottom: 1.25rem; }

.footer-contact-list { display: flex; flex-direction: column; gap: .5rem; }
.footer-contact-list a {
  font-size: .85rem; color: rgba(255,255,255,.55);
  display: flex; align-items: center; gap: .5rem;
  transition: color .2s;
}
.footer-contact-list a:hover { color: var(--gold); }
.footer-contact-list svg { width: 14px; height: 14px; stroke: var(--gold); flex-shrink: 0; }

.footer-col h5 {
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .4rem; }
.footer-col a {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  transition: color .2s, padding-left .2s;
}
.footer-col a:hover { color: rgba(255,255,255,.85); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.3); margin: 0; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .8rem; color: rgba(255,255,255,.3); transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.6); }

/* 21. SERVICE PAGE GRID */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.svc-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.svc-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--g200);
}
.svc-icon {
  width: 52px; height: 52px;
  background: var(--g100);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
}
.svc-icon svg { width: 24px; height: 24px; stroke: var(--g700); }
.svc-item h3 { font-size: 1.15rem; margin: 0; }
.svc-item p  { font-size: .9rem; color: var(--mid); margin: 0; }

/* 22. CITY PAGE */
.city-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.city-highlight-item {
  background: var(--warm);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--g500);
  font-size: .9rem;
  color: var(--mid);
}
.city-highlight-item strong { display: block; color: var(--text); font-size: 1rem; margin-bottom: .2rem; }

/* 23. POLICIES */
.policy-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: var(--sh-sm);
}
.policy-header {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.5rem 1.75rem;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: var(--ff-body);
  transition: background .2s;
  border: none;
}
.policy-header:hover { background: var(--warm); }
.policy-icon {
  width: 40px; height: 40px;
  background: var(--g100);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.policy-icon svg { width: 20px; height: 20px; stroke: var(--g700); }
.policy-header h3 { font-family: var(--ff-body); font-size: 1.05rem; font-weight: 700; color: var(--text); margin: 0; flex: 1; }
.policy-chevron { font-size: .8rem; color: var(--muted); transition: transform .3s; }
.policy-block.open .policy-chevron { transform: rotate(180deg); }
.policy-body { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease), padding .3s; padding: 0 1.75rem; }
.policy-block.open .policy-body { max-height: 800px; padding-bottom: 1.75rem; }
.policy-body ul { display: flex; flex-direction: column; gap: .5rem; padding-left: 1.25rem; list-style: disc; }
.policy-body li { font-size: .95rem; color: var(--mid); }
.policy-body p { font-size: .95rem; color: var(--mid); margin-bottom: .75rem; }

/* 24. ANIMATE ON SCROLL */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.fade-up.visible { opacity: 1; transform: none; }

.fade-in {
  opacity: 0;
  transition: opacity .7s var(--ease);
}
.fade-in.visible { opacity: 1; }

/* Stagger delays for grid children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: .08s; }
.stagger > *:nth-child(3) { transition-delay: .16s; }
.stagger > *:nth-child(4) { transition-delay: .24s; }
.stagger > *:nth-child(5) { transition-delay: .32s; }
.stagger > *:nth-child(6) { transition-delay: .40s; }

/* 25. MISCELLANEOUS */
.divider-line {
  border: none;
  border-top: 1px solid var(--border);
  margin: 3rem 0;
}

.text-gold { color: var(--gold); }
.text-green { color: var(--g700); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--g100);
  color: var(--g700);
  padding: .3rem .85rem;
  border-radius: 100px;
}
.pill-gold {
  background: rgba(201,164,75,.12);
  color: var(--gold-dark);
}

.notice {
  background: rgba(201,164,75,.08);
  border: 1px solid rgba(201,164,75,.2);
  border-left: 4px solid var(--gold);
  border-radius: var(--r-sm);
  padding: 1rem 1.25rem;
  font-size: .9rem;
  color: var(--mid);
}
.notice strong { color: var(--text); }

/* Smooth page load */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
body { animation: fadeIn .4s ease; }


/* ==============================
   BILINGUAL SUPPORT (EN / ES)
   ============================== */

/* Spanish hidden by default */
.lang-es { display: none !important; }

/* When html[lang=es]: hide English, show Spanish */
html[lang="es"] .lang-en { display: none !important; }
html[lang="es"] .lang-es { display: revert !important; }

/* For block-level Spanish elements */
html[lang="es"] p.lang-es,
html[lang="es"] div.lang-es,
html[lang="es"] li.lang-es,
html[lang="es"] ul.lang-es { display: block !important; }

html[lang="es"] h1.lang-es,
html[lang="es"] h2.lang-es,
html[lang="es"] h3.lang-es,
html[lang="es"] h4.lang-es { display: block !important; }

/* Language toggle button in nav */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: .2rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 100px;
  padding: .25rem .5rem;
  margin-left: .4rem;
  flex-shrink: 0;
}
.lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,.4);
  font-family: var(--ff-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  cursor: pointer;
  padding: .15rem .3rem;
  border-radius: 100px;
  transition: color .2s, background .2s;
}
.lang-btn.active {
  color: var(--gold);
  background: rgba(201,164,75,.12);
}
.lang-sep { color: rgba(255,255,255,.18); font-size: .65rem; }

/* In mobile menu */
.mob-lang {
  display: flex;
  gap: .5rem;
  padding: 1.25rem 1rem;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: auto;
}
.mob-lang button {
  flex: 1;
  padding: .65rem;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,.12);
  background: none;
  color: rgba(255,255,255,.5);
  font-family: var(--ff-body);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.mob-lang button.active {
  background: rgba(201,164,75,.15);
  border-color: rgba(201,164,75,.3);
  color: var(--gold);
}
