/* =========================================================
   Woods & Sons Land Service LLC
   Plain CSS — no build step.
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --forest-900: #142a1c;
  --forest-800: #1F3D2B;
  --forest-700: #244430;
  --forest-600: #2c5439;

  --wood-700: #774711;
  --wood-600: #985d12;
  --wood-500: #B8741A;
  --wood-300: #d8ab53;
  --wood-100: #f3e6c7;

  --cream-50: #fbf9f3;
  --cream-100: #f5f1e8;
  --cream-200: #ece4cf;
  --cream-300: #ddd0aa;

  --ink: #1a1a1a;
  --ink-soft: #525252;
  --ink-mute: #888;
  --line: #e6dfcf;

  --max-w: 1180px;
  --radius: 8px;
  --shadow-sm: 0 1px 2px rgba(20, 42, 28, 0.06);
  --shadow-md: 0 8px 22px -10px rgba(20, 42, 28, 0.18);

  --font-display: "Georgia", "Times New Roman", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Reset / Base ---------- */
* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 80px; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--forest-800);
  line-height: 1.2;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4vw + 1rem, 3.25rem); }
h2 { font-size: clamp(1.6rem, 2vw + 1rem, 2.25rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--forest-700); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--wood-600); }

::selection { background: var(--forest-700); color: #fff; }

:focus-visible {
  outline: 2px solid var(--wood-500);
  outline-offset: 2px;
  border-radius: 3px;
}

ul { padding: 0; margin: 0 0 1em; }
li { list-style: none; }

button { font-family: inherit; cursor: pointer; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container.narrow { max-width: 760px; }

.section { padding: 4rem 0; }
@media (min-width: 768px) {
  .section { padding: 6rem 0; }
}

.bg-cream { background: var(--cream-100); }

.text-center { text-align: center; }

.two-col {
  display: grid;
  gap: 3rem;
}
@media (min-width: 900px) {
  .two-col { grid-template-columns: 1fr 1fr; align-items: start; }
}

.section-title {
  font-size: clamp(1.875rem, 3vw + 1rem, 2.5rem);
  margin-bottom: 0.5rem;
}
.section-subtitle {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 60ch;
  margin-bottom: 1.5rem;
}
.section-subtitle.center { margin-left: auto; margin-right: auto; }

.section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--wood-600);
  margin: 0 0 0.6rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  line-height: 1;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn-primary {
  background: var(--wood-500);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--wood-600); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-secondary {
  background: transparent;
  color: var(--forest-800);
  border-color: var(--forest-800);
}
.btn-secondary:hover { background: var(--forest-800); color: #fff; }

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.65);
}
.btn-ghost:hover { background: #fff; color: var(--forest-800); }

.btn-submit { margin-top: 0.5rem; align-self: flex-start; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--wood-700);
  font-size: 0.9rem;
  margin-top: 1rem;
}
.link-arrow:hover { color: var(--wood-600); gap: 0.7rem; }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 249, 243, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--cream-200);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 70px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--forest-800);
  font-family: var(--font-display);
}
.logo:hover { color: var(--forest-800); }
.logo-mark { height: 50px; width: auto; }
.logo-text {
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin: 0;
}
.nav-link {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.4rem 0;
  position: relative;
}
.nav-link:hover { color: var(--forest-800); }
.nav-link.active { color: var(--forest-800); }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--wood-500);
}
.nav-cta {
  background: var(--wood-500);
  color: #fff !important;
  padding: 0.6rem 1.1rem;
  border-radius: 5px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--wood-600); }
.nav-cta.active::after { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--cream-200);
  border-radius: 5px;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--forest-800);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--cream-200);
    padding: 0.5rem 1.25rem 1rem;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
  }
  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-link {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--cream-200);
    font-size: 1rem;
  }
  .nav-link.active::after { display: none; }
  .nav-cta {
    margin-top: 0.75rem;
    text-align: center;
  }
}

/* ---------- Hero (Home) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  background: var(--forest-800);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(20,42,28,0.72), rgba(31,61,43,0.55) 60%, rgba(20,42,28,0.85)),
    radial-gradient(circle at 80% 20%, rgba(184,116,26,0.22), transparent 55%),
    linear-gradient(160deg, var(--forest-900) 0%, var(--forest-700) 100%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
}

.hero-content {
  padding: 5rem 1.25rem 6rem;
  max-width: 820px;
}
@media (min-width: 768px) {
  .hero-content { padding: 7rem 1.25rem 9rem; }
}

.hero-content .eyebrow { color: var(--wood-300); }
.hero-content h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
  line-height: 1.1;
  margin-top: 0.5rem;
}
.hero-subtitle {
  margin-top: 1rem;
  font-size: clamp(1.05rem, 1vw + 0.9rem, 1.25rem);
  color: rgba(255,255,255,0.85);
  max-width: 56ch;
  line-height: 1.55;
}
.hero-buttons {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ---------- Page Hero (subpages) ---------- */
.page-hero {
  position: relative;
  background: var(--forest-800);
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(160deg, var(--forest-900) 0%, var(--forest-700) 100%),
    radial-gradient(circle at 70% 20%, rgba(184,116,26,0.18), transparent 60%);
}
.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}
.page-hero-content {
  padding: 4.5rem 1.25rem 5rem;
  max-width: 820px;
}
@media (min-width: 768px) {
  .page-hero-content { padding: 6rem 1.25rem 6.5rem; }
}
.page-hero-content .eyebrow { color: var(--wood-300); }
.page-hero-content h1 { color: #fff; margin-top: 0.5rem; }
.page-hero-content > p {
  margin-top: 1rem;
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 60ch;
}

/* ---------- Trust Strip ---------- */
.trust-strip {
  background: var(--cream-100);
  border-bottom: 1px solid var(--cream-200);
  border-top: 1px solid var(--cream-200);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1.5rem;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--forest-800);
  font-weight: 500;
}
.trust-grid span { display: inline-flex; align-items: center; gap: 0.5rem; }
@media (min-width: 768px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); justify-items: center; }
}

/* ---------- Service Cards ---------- */
.services-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-top: 2.5rem;
}
@media (min-width: 600px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius);
  padding: 1.75rem;
  color: var(--ink);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--cream-300);
  color: var(--ink);
}
.service-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}
.service-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  flex: 1;
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--forest-800);
  color: var(--wood-300);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background .2s ease, color .2s ease;
}
.service-card:hover .service-icon { background: var(--wood-500); color: #fff; }
.service-icon svg { width: 24px; height: 24px; }

/* ---------- Service Detail (services.html) ---------- */
.services-detail {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.service-detail {
  scroll-margin-top: 100px;
  border-bottom: 1px solid var(--cream-200);
  padding-bottom: 4rem;
}
.service-detail:last-child { border-bottom: 0; padding-bottom: 0; }
.service-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.service-icon-large {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 10px;
  background: var(--forest-800);
  color: var(--wood-300);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon-large svg { width: 32px; height: 32px; }
.service-detail h2 { margin: 0 0 0.4rem; }
.service-lead {
  color: var(--ink-soft);
  font-size: 1.1rem;
  margin: 0;
}
.service-detail h3 {
  margin-top: 1.75rem;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--forest-700);
}

/* ---------- Lists ---------- */
.checklist {
  display: grid;
  gap: 0.6rem;
  margin: 0;
}
.checklist li {
  position: relative;
  padding-left: 1.9rem;
  color: var(--ink);
  line-height: 1.5;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.2em;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background-color: var(--wood-500);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>");
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center;
}

.process-list {
  counter-reset: step;
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 0;
}
.process-list li {
  counter-increment: step;
  position: relative;
  padding: 1.1rem 1.2rem 1.1rem 3.6rem;
  background: var(--cream-100);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius);
  list-style: none;
}
.process-list li::before {
  content: counter(step);
  position: absolute;
  left: 1rem; top: 1rem;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: var(--wood-500);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
}
.process-list li strong { color: var(--forest-800); display: block; margin-bottom: 0.15rem; }

/* ---------- Project Cards ---------- */
.projects-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-top: 2rem;
}
@media (min-width: 700px) { .projects-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .projects-grid { grid-template-columns: repeat(3, 1fr); } }

.project-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--ink);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.project-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--cream-300);
  color: var(--ink);
}
.project-card.is-hidden { display: none; }

.project-image {
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, var(--forest-700), var(--forest-800)),
    radial-gradient(circle at 30% 70%, rgba(184,116,26,0.2), transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

.project-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.project-content h2,
.project-content h3 {
  font-size: 1.25rem;
  margin: 0 0 0.4rem;
  color: var(--forest-800);
}
.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}
.project-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  background: var(--cream-100);
  color: var(--forest-700);
  border: 1px solid var(--cream-200);
}
.project-meta {
  font-size: 0.8rem;
  color: var(--ink-mute);
  margin-bottom: 0.75rem;
}
.project-content p { color: var(--ink-soft); font-size: 0.95rem; }

/* Projects page (full) — wider cards, more text */
#projects-grid .project-card {
  grid-column: span 1;
}
@media (min-width: 700px) {
  #projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Filter bar ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--cream-200);
  background: #fff;
  color: var(--forest-800);
  border-radius: 999px;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.filter-btn:hover { border-color: var(--forest-800); }
.filter-btn.active {
  background: var(--forest-800);
  color: #fff;
  border-color: var(--forest-800);
}

/* ---------- Why-Us / Values ---------- */
.values-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .values-grid { grid-template-columns: 1fr 1fr; } }

.value-card {
  padding: 1.5rem;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius);
  background: #fff;
}
.value-card h3 { font-size: 1.1rem; margin: 0 0 0.4rem; }
.value-card p { color: var(--ink-soft); font-size: 0.92rem; margin: 0; }
.value-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: var(--forest-800);
  color: var(--wood-300);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  font-weight: 700;
  font-size: 1rem;
}

/* ---------- Service Area / Counties ---------- */
.counties-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin: 1.75rem 0 1.25rem;
}
.county-badge {
  display: inline-block;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--cream-200);
  color: var(--forest-800);
  font-weight: 500;
  font-size: 0.9rem;
}

.county-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 1rem;
}
.county-grid li {
  padding: 0.85rem 1rem;
  border: 1px solid var(--cream-200);
  border-radius: 6px;
  background: #fff;
  font-weight: 500;
  color: var(--forest-800);
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0;
}
.city-list li {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--forest-800);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}

.callout {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--cream-100);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius);
}
.callout h3 { margin: 0 0 0.5rem; }
.callout p { color: var(--ink-soft); margin-bottom: 1rem; }

/* ---------- About ---------- */
.about-image {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
}

.mascot-display {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.mascot-display::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: var(--wood-100);
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.7;
  z-index: 0;
}
.mascot-svg {
  position: relative;
  z-index: 1;
  width: clamp(180px, 30vw, 260px);
  height: auto;
}

.about-text p { color: var(--ink-soft); }

/* ---------- Contact / Form ---------- */
.contact-layout {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .contact-layout { grid-template-columns: 1.4fr 1fr; align-items: start; }
}

.contact-form {
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
@media (min-width: 600px) { .contact-form { padding: 2.25rem; } }

.contact-form h2 { margin: 0; font-size: 1.5rem; }
.form-intro { color: var(--ink-soft); font-size: 0.92rem; margin: 0 0 0.5rem; }

.form-row {
  display: grid;
  gap: 1.1rem;
}
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; }
.form-group label {
  font-weight: 600;
  color: var(--forest-800);
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
}
.req { color: var(--wood-600); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--cream-200);
  border-radius: 6px;
  background: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--forest-700);
  box-shadow: 0 0 0 3px rgba(31,61,43,0.12);
}
.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: #b94a48;
  box-shadow: 0 0 0 3px rgba(185,74,72,0.10);
}

.form-status {
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  margin-top: 0.5rem;
}
.form-status.success { background: #e8f3eb; color: #1f5f33; border: 1px solid #c5e1cd; }
.form-status.error { background: #fbeae9; color: #8a2a28; border: 1px solid #f1c4c2; }

/* Contact info cards */
.contact-info {
  display: grid;
  gap: 1rem;
}
.info-card {
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.85rem;
  align-items: start;
}
.info-icon {
  width: 44px; height: 44px;
  background: var(--forest-800);
  color: var(--wood-300);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-icon svg { width: 20px; height: 20px; }
.info-card h3 { margin: 0 0 0.25rem; font-size: 1rem; }
.info-card p { margin: 0; font-size: 0.92rem; color: var(--ink); }
.info-card .info-meta { color: var(--ink-mute); font-size: 0.8rem; margin-top: 0.2rem; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 0.6rem; margin-top: 1.5rem; }
.faq-item {
  border: 1px solid var(--cream-200);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  background: #fff;
  transition: border-color .15s ease;
}
.faq-item[open] { border-color: var(--forest-700); }
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--forest-800);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  display: inline-flex;
  width: 28px; height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream-100);
  color: var(--forest-800);
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0.85rem 0 0; color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- CTA Section ---------- */
.cta-section {
  background: var(--forest-800);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 30%, rgba(184,116,26,0.18), transparent 55%);
  pointer-events: none;
}
.cta-content {
  position: relative;
  display: grid;
  gap: 1.75rem;
  align-items: center;
  padding: 4rem 1.25rem;
}
.cta-content h2 { color: #fff; margin: 0 0 0.5rem; }
.cta-content p { color: rgba(255,255,255,0.8); max-width: 56ch; margin: 0; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 0.75rem; }
@media (min-width: 800px) {
  .cta-content { grid-template-columns: 1.4fr 1fr; padding: 5rem 1.25rem; }
  .cta-buttons { justify-content: flex-end; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--forest-900);
  color: rgba(255,255,255,0.85);
  margin-top: 0;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding: 3.5rem 1.25rem 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.5fr; } }

.footer h4 {
  color: #fff;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  margin: 0 0 0.85rem;
}
.footer ul { display: grid; gap: 0.45rem; }
.footer a { color: rgba(255,255,255,0.75); }
.footer a:hover { color: var(--wood-300); }
.footer p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin: 0 0 0.4rem; }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.footer-logo { width: 44px; height: auto; flex-shrink: 0; }
.footer-name { color: #fff; font-weight: 600; font-family: var(--font-display); font-size: 1.05rem; margin: 0; }
.footer-tagline {
  color: var(--wood-300);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.65rem;
  font-weight: 600;
  margin: 0.2rem 0 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom .container {
  padding: 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin: 0; }
@media (min-width: 700px) {
  .footer-bottom .container { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ---------- Skip link / a11y ---------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
}
