/* ═══════════════════════════════════════════════════════
   LUCE LANDSCAPING — GLOBAL STYLES
   Bright & natural theme. Rebrand by editing :root tokens.
═══════════════════════════════════════════════════════ */

:root {
  /* Brand palette — fresh, natural green */
  --brand: #1f7a3d;          /* primary green */
  --brand-dark: #14532d;     /* deep forest */
  --brand-darker: #0e3a20;   /* hero / footer base */
  --brand-bright: #2e9e4f;   /* hover / lighter green */
  --lime: #8bc34a;           /* fresh accent */
  --lime-bright: #a4d65e;
  --brand-soft: #eaf4ec;     /* tinted fill */

  /* Surfaces */
  --bg: #ffffff;
  --bg-soft: #f4f8f2;        /* very light green-gray section */
  --bg-deep: #0e3a20;        /* dark green sections */

  /* Text */
  --text: #16241b;           /* near-black green */
  --text-muted: #5a6b5d;
  --text-on-dark: #ffffff;
  --text-on-dark-muted: #c4d6c8;

  /* Lines & feedback */
  --border: #e2ebe2;
  --border-dark: rgba(255, 255, 255, 0.14);
  --star: #f5a623;
  --success: #2e9e4f;
  --danger: #d64545;

  /* Layout */
  --max-width: 1180px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --nav-height: 76px;
  --shadow-sm: 0 2px 8px rgba(16, 40, 24, 0.06);
  --shadow-md: 0 12px 32px rgba(16, 40, 24, 0.10);
  --shadow-lg: 0 24px 60px rgba(16, 40, 24, 0.14);

  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ═══════════════════════════════ RESET ═══════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: color .2s var(--ease); }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.18;
  margin: 0 0 .5em;
  color: var(--text);
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
p  { margin: 0 0 1em; color: var(--text-muted); }

/* ═══════════════════════════════ ACCESSIBILITY ═══════════════════════════════ */
.skip-link {
  position: absolute;
  left: 0; top: -100px;
  background: var(--brand);
  color: #fff;
  padding: 12px 24px;
  font-weight: 700;
  z-index: 2000;
  border-radius: 0 0 var(--radius) 0;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

:focus-visible { outline: 3px solid var(--lime); outline-offset: 2px; }

/* ═══════════════════════════════ LAYOUT ═══════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--bg-deep); color: var(--text-on-dark); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: var(--text-on-dark-muted); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}
.section-dark .section-eyebrow { color: var(--lime-bright); }
.section-header h2 { margin: 0 0 14px; }
.section-header p { font-size: 1.08rem; margin: 0; }

/* ═══════════════════════════════ TOP BAR ═══════════════════════════════ */
.topbar {
  background: var(--brand-darker);
  color: var(--text-on-dark-muted);
  font-size: 0.85rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.topbar a { color: #fff; font-weight: 600; }
.topbar a:hover { color: var(--lime-bright); }
.topbar-items { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar-item svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ═══════════════════════════════ NAVBAR ═══════════════════════════════ */
header { position: sticky; top: 0; z-index: 1000; }

.nav {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--nav-height);
}
.nav-left { display: flex; align-items: center; gap: 12px; }
.nav-logo { height: 48px; width: auto; }
.nav-brand {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--brand-dark);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 600;
  position: relative;
}
.nav-links a:hover { color: var(--brand); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--brand);
  transition: width .2s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 12px; }

/* Hamburger */
.hamburger-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 11px;
  cursor: pointer;
}
.hamburger-btn span {
  display: block;
  width: 22px; height: 2px;
  background: var(--brand-dark);
  margin: 5px 0;
  border-radius: 2px;
}

/* Mobile dropdown */
.mobile-dropdown {
  position: absolute;
  top: 100%; left: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.mobile-dropdown.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-nav { display: flex; flex-direction: column; padding: 16px 24px 24px; gap: 4px; }
.mobile-nav a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover { color: var(--brand); }
.mobile-nav .btn { margin-top: 16px; justify-content: center; }

/* ═══════════════════════════════ MAIN ═══════════════════════════════ */
main { flex: 1; width: 100%; }

/* ═══════════════════════════════ BUTTONS ═══════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.96rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s var(--ease), background .2s var(--ease),
              color .2s var(--ease), border-color .2s var(--ease),
              box-shadow .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }

.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 8px 20px rgba(31, 122, 61, 0.25); }
.btn-primary:hover { background: var(--brand-bright); box-shadow: 0 12px 26px rgba(31, 122, 61, 0.32); }

.btn-accent { background: var(--lime); color: var(--brand-darker); box-shadow: 0 8px 20px rgba(139, 195, 74, 0.3); }
.btn-accent:hover { background: var(--lime-bright); }

.btn-outline { background: transparent; color: var(--brand-dark); border-color: var(--border); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand); }

/* On dark backgrounds */
.btn-light { background: #fff; color: var(--brand-dark); }
.btn-light:hover { background: var(--brand-soft); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* ═══════════════════════════════ HERO ═══════════════════════════════ */
.hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(14, 58, 32, 0.78), rgba(14, 58, 32, 0.92)),
    radial-gradient(circle at 75% 20%, #1f7a3d, #0e3a20 70%);
  color: #fff;
  overflow: hidden;
}
/* Subtle leaf/topo texture via layered radial dots */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 96px 24px 104px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero-copy { max-width: 600px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}
.hero-badge svg { width: 15px; height: 15px; color: var(--lime-bright); }
.hero h1 { color: #fff; margin: 0 0 18px; }
.hero h1 .highlight { color: var(--lime-bright); }
.hero .tagline {
  font-size: 1.18rem;
  color: var(--text-on-dark-muted);
  margin: 0 0 32px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--text-on-dark-muted);
}
.hero-stars { color: var(--star); letter-spacing: 2px; font-size: 1.05rem; }

/* Hero image */
.hero-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.4;
}

/* ═══════════════════════════════ IMAGE PLACEHOLDERS ═══════════════════════════════ */
/* Swap these for real <img> tags when photos arrive. */
.img-ph {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  background:
    linear-gradient(135deg, var(--brand-bright), var(--brand-dark));
  color: rgba(255,255,255,0.85);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.img-ph svg { width: 38px; height: 38px; opacity: 0.7; }
.img-ph.alt { background: linear-gradient(135deg, #6fae3f, #2e7d32); }

/* ═══════════════════════════════ STATS / TRUST STRIP ═══════════════════════════════ */
.trust-strip {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  padding: 44px 0;
  text-align: center;
}
.stat .num {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat .label {
  margin-top: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
}
.section-dark .stat .num { color: var(--lime-bright); }

/* ═══════════════════════════════ SERVICE / FEATURE CARDS ═══════════════════════════════ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d3e2d3; }
.card-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-soft);
  color: var(--brand);
  margin-bottom: 18px;
}
.card-icon svg { width: 30px; height: 30px; }
.card h3 { margin: 0 0 10px; }
.card p { margin: 0 0 16px; font-size: 0.97rem; }
.card-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.card:hover .card-link svg { transform: translateX(4px); }

/* ═══════════════════════════════ SPLIT / WHY-US ═══════════════════════════════ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3.2;
}
.check-list { list-style: none; margin: 24px 0 0; padding: 0; }
.check-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
  color: var(--text);
}
.check-list .check {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.check-list .check svg { width: 15px; height: 15px; }
.check-list strong { display: block; color: var(--text); }
.check-list span.desc { color: var(--text-muted); font-size: 0.95rem; }

/* ═══════════════════════════════ PROCESS STEPS ═══════════════════════════════ */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.process-step { text-align: center; position: relative; }
.process-step .step-num {
  display: inline-flex;
  width: 56px; height: 56px;
  align-items: center; justify-content: center;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(31, 122, 61, 0.28);
}
.section-dark .process-step .step-num { background: var(--lime); color: var(--brand-darker); }
.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: 0.95rem; }

/* ═══════════════════════════════ GUARANTEE BADGES ═══════════════════════════════ */
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
}
.guarantee {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
}
.guarantee svg { width: 26px; height: 26px; color: var(--lime-bright); flex-shrink: 0; }
.guarantee h4 { margin: 0 0 4px; font-size: 1rem; }
.guarantee p { margin: 0; font-size: 0.9rem; }

/* ═══════════════════════════════ TESTIMONIALS ═══════════════════════════════ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
}
.testimonial .stars { color: var(--star); letter-spacing: 2px; margin-bottom: 14px; }
.testimonial blockquote { margin: 0 0 20px; font-size: 1.02rem; color: var(--text); line-height: 1.6; }
.testimonial .author { display: flex; align-items: center; gap: 12px; }
.testimonial .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
}
.testimonial .author .name { font-weight: 700; font-size: 0.95rem; }
.testimonial .author .loc { font-size: 0.85rem; color: var(--text-muted); }

/* ═══════════════════════════════ FAQ (native accordion) ═══════════════════════════════ */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  background: #fff;
  overflow: hidden;
}
.faq details[open] { border-color: #cfe0cf; box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus {
  flex-shrink: 0;
  width: 24px; height: 24px;
  position: relative;
  transition: transform .2s var(--ease);
  color: var(--brand);
}
.faq details[open] summary .plus { transform: rotate(45deg); }
.faq .faq-body { padding: 0 24px 22px; }
.faq .faq-body p { margin: 0; }

/* ═══════════════════════════════ CTA BAND ═══════════════════════════════ */
.cta-band {
  background:
    linear-gradient(110deg, var(--brand-dark), var(--brand));
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
}
.cta-band .container { position: relative; z-index: 1; padding-top: 72px; padding-bottom: 72px; }
.cta-band h2 { color: #fff; margin: 0 0 14px; }
.cta-band p { color: var(--text-on-dark-muted); max-width: 560px; margin: 0 auto 28px; font-size: 1.08rem; }
.cta-band .hero-cta { justify-content: center; }

/* ═══════════════════════════════ PAGE HEADER ═══════════════════════════════ */
.page-header {
  background: linear-gradient(180deg, rgba(14,58,32,0.85), rgba(14,58,32,0.95)),
              radial-gradient(circle at 70% 30%, #1f7a3d, #0e3a20 75%);
  color: #fff;
  text-align: center;
  padding: 72px 24px 64px;
}
.page-header h1 { color: #fff; margin: 0 0 14px; }
.page-header p { color: var(--text-on-dark-muted); max-width: 620px; margin: 0 auto; font-size: 1.1rem; }
.breadcrumbs { font-size: 0.85rem; color: var(--text-on-dark-muted); margin-bottom: 18px; }
.breadcrumbs a { color: var(--lime-bright); }

/* ═══════════════════════════════ FORMS ═══════════════════════════════ */
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}
form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

input[type="text"], input[type="email"], input[type="tel"],
input[type="password"], select, textarea {
  padding: 13px 15px;
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font: inherit;
  width: 100%;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
input::placeholder, textarea::placeholder { color: #9aa89c; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(31, 122, 61, 0.15);
}
textarea { min-height: 150px; resize: vertical; }
label { font-size: 0.92rem; color: var(--text-muted); display: flex; align-items: center; gap: 9px; }
label input[type="checkbox"] { width: auto; accent-color: var(--brand); }
form button[type="submit"] { align-self: flex-start; }

/* Hide honeypot */
.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

/* Form feedback */
.flash { padding: 14px 18px; border-radius: var(--radius); font-size: 0.95rem; margin: 0 0 8px; }
.flash-success { background: #eaf6ee; border: 1px solid #b7ddc2; color: #1c6b34; }
.flash-error { background: #fbeaea; border: 1px solid #e6bcbc; color: #b23434; }

/* ═══════════════════════════════ CONTACT CARDS ═══════════════════════════════ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-bottom: 40px;
}
.contact-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}
.contact-card .c-icon {
  width: 46px; height: 46px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
}
.contact-card .c-icon svg { width: 22px; height: 22px; }
.contact-card .label {
  font-size: 0.74rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px;
}
.contact-card .value { font-size: 1rem; color: var(--brand); font-weight: 700; }
.contact-card a { color: var(--brand); }
.contact-card a:hover { color: var(--brand-bright); }

.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }

/* ═══════════════════════════════ FOOTER ═══════════════════════════════ */
footer.site-footer { background: var(--brand-darker); color: var(--text-on-dark-muted); }
.footer-top {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 24px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { height: 44px; }
.footer-brand .name { font-weight: 800; font-size: 1.2rem; color: #fff; }
.footer-col h4 {
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: var(--text-on-dark-muted); font-size: 0.94rem; }
.footer-col a:hover { color: var(--lime-bright); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: 0.94rem; }
.footer-contact-item svg { width: 18px; height: 18px; color: var(--lime-bright); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 22px 24px;
  text-align: center;
  font-size: 0.85rem;
}
.footer-bottom a { color: var(--lime-bright); font-weight: 600; }
.footer-bottom a:hover { color: #fff; }
.footer-bottom .legal { margin-top: 6px; }
.footer-bottom .legal a { color: var(--text-on-dark-muted); font-weight: 400; margin: 0 8px; }
.footer-credit { margin-top: 8px; font-size: 0.8rem; color: var(--text-on-dark-muted); opacity: 0.75; }
.footer-credit a { color: var(--text-on-dark-muted); font-weight: 600; }
.footer-credit a:hover { color: var(--lime-bright); }

/* ═══════════════════════════════ PROSE PAGES ═══════════════════════════════ */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 1.4rem; margin-top: 1.8em; }
.prose ul { padding-left: 22px; color: var(--text-muted); }
.prose ul li::marker { color: var(--brand); }
.prose .meta { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2em; }

/* ═══════════════════════════════ ERROR PAGES ═══════════════════════════════ */
.error-wrapper { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 60px 20px; }
.error-card {
  max-width: 680px; width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.error-code { font-size: 76px; font-weight: 900; color: var(--brand); margin-bottom: 12px; line-height: 1; }
.error-card h1 { font-size: 28px; margin: 0 0 14px; }
.error-card p { font-size: 17px; margin: 0 0 32px; }
.error-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════ STICKY MOBILE CTA ═══════════════════════════════ */
.sticky-cta { display: none; }
@media (max-width: 800px) {
  .sticky-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 1500;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: saturate(180%) blur(8px);
    border-top: 1px solid var(--border);
    box-shadow: 0 -6px 20px rgba(16, 40, 24, 0.10);
  }
  .sticky-cta .btn { width: 100%; padding: 13px 10px; }
  /* room so the fixed bar never covers footer content */
  body { padding-bottom: 74px; }
}

/* ═══════════════════════════════ RESPONSIVE ═══════════════════════════════ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 64px 24px 72px; }
  .hero-media { aspect-ratio: 16 / 10; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 800px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger-btn { display: block; }
  .topbar-items .topbar-item.hide-sm { display: none; }
  .section { padding: 56px 0; }
}
@media (max-width: 520px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1; }
}

/* ============================================================
   TEMPORARY — LAUNCH WITHOUT PHOTOS (no-photos mode)
   Client photos not available yet. The `no-photos` class on
   <body> (base.html) activates the rules below, which hide the
   .img-ph placeholders and collapse the 2-col media sections.
   TO REVERT when real photos arrive:
     1. Replace each `.img-ph` div (home hero, home feature split,
        about) with a real <img> tag.
     2. Remove the `no-photos` class from <body> in base.html.
     3. Delete this entire CSS block.
   ============================================================ */

/* Hide the placeholder media wrappers so no empty shadowed box remains.
   Covers: home hero (.hero-media), home feature split (.split-media),
   and the about page story split (also .split-media). */
.no-photos .hero-media,
.no-photos .split-media {
  display: none;
}

/* Belt-and-suspenders: hide the placeholder element itself too. */
.no-photos .img-ph,
.no-photos .img-ph.alt {
  display: none;
}

/* Collapse the now single-content sections to one column. */
.no-photos .hero-inner,
.no-photos .split {
  grid-template-columns: 1fr;
}

/* Center the hero copy so the single column looks intentional. */
.no-photos .hero-copy {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.no-photos .hero-cta,
.no-photos .hero-trust {
  justify-content: center;
}

/* For the feature/about .split, the remaining copy column spans the
   full single-column width automatically (grid is now 1fr). Give it a
   comfortable max width and center it so the line length stays readable. */
.no-photos .split > :not(.split-media) {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
