:root {
  --bg: #005d1f;
  --bg-soft: #0b4320;
  --surface: #f5f5f5;
  --surface-strong: #ffffff;
  --text-light: #ffffff;
  --text-muted: #5d675f;
  --text-dark: #1f2b22;
  --border: rgba(0, 93, 31, 0.12);
  --border-dark: rgba(0, 93, 31, 0.12);
  --accent: #005d1f;
  --accent-deep: #003f15;
  --accent-soft: #8fd63d;
  --shadow: 0 20px 45px rgba(11, 67, 32, 0.14);
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text-dark);
  background: var(--surface);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.utility-bar {
  background: var(--accent);
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 600;
}

.utility-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0, 93, 31, 0.1);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 90px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--accent);
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid rgba(0, 93, 31, 0.22);
  background: rgba(0, 93, 31, 0.06);
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-text small {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.site-nav {
  display: inline-flex;
  gap: 1.6rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.92rem;
}

.site-nav a {
  padding-bottom: 0.15rem;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--accent-deep);
  border-bottom-color: var(--accent-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent), #0b732c);
  color: #ffffff;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 12px 28px rgba(0, 93, 31, 0.2);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-outline {
  background: var(--accent);
  color: var(--text-light);
  border-color: var(--accent);
  box-shadow: none;
}

.button-secondary {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: none;
}

.hero,
.page-hero {
  background:
    linear-gradient(rgba(21, 33, 22, 0.48), rgba(21, 33, 22, 0.48)),
    radial-gradient(circle at top left, rgba(143, 214, 61, 0.12), transparent 28%),
    linear-gradient(120deg, #cfd6d0 0%, #e8ece8 25%, #bfc9c0 50%, #d9dfda 100%);
  color: var(--text-light);
}

.hero {
  padding: 5.5rem 0 4rem;
}

.page-hero {
  padding: 4.4rem 0 3.4rem;
}

.page-hero-copy {
  max-width: 72ch;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.8fr);
  gap: 2rem;
  align-items: stretch;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.3rem);
  max-width: 14ch;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.3rem);
}

h3 {
  font-size: 1.75rem;
}

p {
  margin: 0;
}

.hero-text,
.page-hero-copy p:last-child {
  max-width: 65ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.hero-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
}

.hero-list li {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.96);
}

.hero-panel {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(12, 29, 15, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.panel-label {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  font-weight: 700;
}

.issue-card {
  padding: 1.75rem;
  border-radius: calc(var(--radius-lg) - 6px);
  background: rgba(11, 28, 14, 0.56);
  min-height: 100%;
}

.issue-card h2 {
  color: var(--text-light);
}

.issue-card ul {
  margin: 0;
  padding-left: 1.2rem;
  color: rgba(255, 255, 255, 0.88);
}

.issue-card li + li {
  margin-top: 0.85rem;
}

.signal-bar {
  background: var(--accent);
  color: var(--text-light);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.2rem 0;
}

.signal-grid div {
  padding: 0.4rem 0.75rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.signal-grid div:first-child {
  border-left: 0;
  padding-left: 0;
}

.section {
  padding: 5.25rem 0;
}

.section-light {
  background: #ffffff;
}

.section-dark {
  background: linear-gradient(180deg, #0a3e19 0%, #005d1f 100%);
  color: var(--text-light);
}

.section-accent {
  background:
    linear-gradient(120deg, rgba(0, 93, 31, 0.08), rgba(143, 214, 61, 0.06)),
    #f5f5f5;
}

.section-heading {
  max-width: 72ch;
  margin-bottom: 2.4rem;
}

.section-heading p:last-child {
  color: rgba(31, 43, 34, 0.76);
}

.section-heading-light p:last-child {
  color: rgba(255, 255, 255, 0.84);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.info-card,
.point-card,
.timeline-item,
.contact-form,
.practice-card,
.office-card {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.info-card,
.practice-card {
  padding: 2rem;
  background: #f8fbf8;
  border: 1px solid var(--border-dark);
}

.info-card p,
.practice-card p {
  color: rgba(31, 43, 34, 0.78);
}

.split-layout,
.contact-grid,
.two-column-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: start;
}

.copy-stack,
.stacked-points,
.practice-stack {
  display: grid;
  gap: 1rem;
}

.point-card {
  padding: 1.6rem 1.7rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.point-card p {
  color: rgba(255, 255, 255, 0.84);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.timeline-item {
  padding: 2rem;
  background: var(--surface-strong);
  border: 1px solid var(--border-dark);
}

.timeline-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  background: rgba(0, 93, 31, 0.12);
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 2.2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #0a3e19, #005d1f);
  color: var(--text-light);
  box-shadow: var(--shadow);
}

.contact-copy p + p,
.contact-copy ul {
  margin-top: 1rem;
}

.contact-notes {
  padding-left: 1.2rem;
  color: rgba(31, 43, 34, 0.78);
}

.contact-form {
  padding: 1.8rem;
  background: var(--surface-strong);
  border: 1px solid var(--border-dark);
}

.contact-form label {
  display: block;
  font-weight: 600;
  color: #101522;
}

.contact-form label + label,
.contact-form label + button,
.form-note {
  margin-top: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.45rem;
  border: 1px solid rgba(0, 93, 31, 0.14);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: #fdfbf8;
  color: #172233;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.form-note {
  color: rgba(31, 43, 34, 0.66);
  font-size: 0.92rem;
}

.office-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  background: #f8fbf8;
  border: 1px solid var(--border-dark);
}

.office-details p + p {
  margin-top: 0.25rem;
}

.site-footer {
  background: var(--accent);
  color: var(--text-light);
  padding: 2rem 0;
}

.footer-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-brand-block {
  display: grid;
  gap: 0.3rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.55rem;
}

.footer-links a {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.footer-note {
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.74);
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .utility-wrap,
  .hero-grid,
  .card-grid,
  .split-layout,
  .timeline,
  .contact-grid,
  .signal-grid,
  .two-column-copy {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .office-card,
  .cta-panel,
  .footer-wrap,
  .utility-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .signal-grid div {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 720px) {
  .hero,
  .page-hero,
  .section {
    padding-top: 4rem;
    padding-bottom: 3.5rem;
  }

  .nav-wrap {
    min-height: 78px;
  }

  .nav-wrap .button-outline {
    display: none;
  }

  h1 {
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button,
  .button-secondary {
    width: 100%;
  }
}
