
:root {
  --forest: #20352A;
  --forest-soft: #2c4738;
  --sand: #D5C1A2;
  --sand-dark: #b89f79;
  --ivory: #F6F2EA;
  --charcoal: #1F2428;
  --charcoal-soft: #5f686d;
  --sage: #6F8A69;
  --line: #D9D3C7;
  --white: #FFFFFF;
  --terracotta: #A76B46;
  --shadow: 0 18px 48px rgba(18, 24, 28, 0.08);
  --radius: 24px;
  --radius-small: 16px;
  --container: 1180px;
  --section-pad: clamp(3.6rem, 5vw, 5.2rem);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  border: 0;
}

a { color: inherit; text-decoration: none; }

p {
  margin: 0 0 1rem;
  color: rgba(31, 36, 40, 0.88);
}

.lead {
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--forest);
}

h1, h2, h3, h4, h5 {
  margin: 0 0 0.9rem;
  line-height: 1.08;
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--forest);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.45rem); letter-spacing: -0.045em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); letter-spacing: -0.03em; }
h3 { font-size: 1.22rem; }
h4 { font-size: 1rem; }

ul, ol { padding-left: 1.15rem; margin: 0; }

table { border-collapse: collapse; width: 100%; }

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(246, 242, 234, 0.88);
  border-bottom: 1px solid rgba(32, 53, 42, 0.08);
}

.header-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 84px;
}

.brandmark {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brandmark img {
  width: 176px;
  height: auto;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.main-nav a {
  padding: 0.45rem 0.1rem;
  border-bottom: 2px solid transparent;
  font-weight: 700;
  color: rgba(31, 36, 40, 0.78);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--forest);
  border-color: var(--sand);
}

.mobile-nav-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  padding: 0.7rem 0.85rem;
  font-size: 1rem;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.82rem 1.28rem;
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  border: 1px solid var(--forest);
  box-shadow: var(--shadow);
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.18s ease, opacity 0.18s ease, box-shadow 0.18s ease;
}

.button:hover,
button.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 52px rgba(18, 24, 28, 0.12);
}

.button.button-secondary {
  background: transparent;
  color: var(--forest);
  border-color: rgba(32, 53, 42, 0.14);
  box-shadow: none;
}

.button.button-small { min-height: 42px; padding: 0.7rem 1rem; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 2rem;
  background:
    radial-gradient(circle at top right, rgba(213, 193, 162, 0.42), transparent 36%),
    radial-gradient(circle at left top, rgba(111, 138, 105, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(246, 242, 234, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 2rem;
  align-items: center;
}

.hero-text {
  font-size: 1.08rem;
  max-width: 64ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.55rem 0 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.hero-stats div,
.stat-card {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(32, 53, 42, 0.08);
  background: rgba(255, 255, 255, 0.78);
}

.hero-stats strong,
.stat-card strong {
  display: block;
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--forest);
  font-size: 1.16rem;
  margin-bottom: 0.28rem;
}

.hero-stats span,
.stat-card span { font-size: 0.93rem; color: rgba(31, 36, 40, 0.76); }

.eyebrow {
  display: inline-flex;
  padding: 0.38rem 0.75rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(111, 138, 105, 0.12);
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
  font-weight: 800;
}

.hero-panel {
  position: relative;
}

.hero-panel-inner {
  border-radius: 28px;
  padding: 2rem;
  background: linear-gradient(160deg, rgba(32, 53, 42, 1), rgba(55, 82, 67, 0.96));
  color: var(--white);
  box-shadow: var(--shadow);
}

.hero-panel-inner img {
  width: 100%;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
}

.media-card {
  padding: 1.1rem;
}

.media-note {
  margin-top: 0.85rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.94rem;
}

.hero-panel .eyebrow {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.feature-list {
  display: grid;
  gap: 0.72rem;
  margin: 0;
  padding-left: 0;
}

.feature-list li {
  list-style: none;
  padding: 0.82rem 1rem;
  border-radius: 16px;
}

.feature-list.light-list li {
  border: 1px solid rgba(32, 53, 42, 0.08);
  background: rgba(255,255,255,0.75);
}

.feature-list.dark-list li {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  color: rgba(31, 36, 40, 0.72);
}

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

.section-alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(255,255,255,0.96));
}

.section-cta {
  padding-top: 0;
}

.section-heading {
  margin-bottom: 1.6rem;
  max-width: 72ch;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: 1.5rem;
  align-items: center;
}

.two-col.align-start { align-items: start; }

.copy-stack > * + * { margin-top: 0.9rem; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.card,
.process-card,
.mini-card,
.contact-panel,
.stat-card {
  border-radius: var(--radius-small);
  border: 1px solid rgba(32, 53, 42, 0.08);
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow);
}

.card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.25rem;
}

.card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(32,53,42,0.08);
  background: var(--ivory);
}

.tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(213, 193, 162, 0.22);
  color: var(--forest);
  font-size: 0.77rem;
  font-weight: 800;
}

.text-link {
  color: var(--forest);
  font-weight: 800;
}

.text-link:hover { text-decoration: underline; }

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.4rem;
}

.stats-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-card {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}

.process-card span {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(111, 138, 105, 0.12);
  color: var(--forest);
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.media-wall {
  display: grid;
  gap: 1rem;
}

.media-wall img {
  border-radius: 18px;
  border: 1px solid rgba(32,53,42,0.08);
  box-shadow: var(--shadow);
  background: var(--white);
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-small);
  border: 1px solid rgba(32,53,42,0.08);
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow);
}

.spec-table th,
.spec-table td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid rgba(32,53,42,0.08);
  vertical-align: top;
}

.spec-table th {
  width: 32%;
  font-family: 'Manrope', system-ui, sans-serif;
  text-align: left;
  color: var(--forest);
  background: rgba(246, 242, 234, 0.88);
}

.spec-table tr:last-child th,
.spec-table tr:last-child td { border-bottom: 0; }

.step-list {
  display: grid;
  gap: 0.8rem;
  padding-left: 1.25rem;
}

.step-list li {
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(32,53,42,0.08);
  padding: 0.95rem 1rem;
  border-radius: 16px;
}

.large-steps li { padding: 1rem 1.1rem; }

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid rgba(32,53,42,0.08);
  border-radius: 16px;
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.05rem;
  font-weight: 800;
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { border-bottom: 1px solid rgba(32,53,42,0.08); }
.faq-item p { padding: 0.85rem 1.05rem 1rem; margin: 0; }

.filter-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 1.2rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.chip {
  border: 1px solid rgba(32,53,42,0.14);
  background: rgba(255,255,255,0.85);
  color: var(--forest);
  border-radius: 999px;
  padding: 0.65rem 0.92rem;
  font-weight: 800;
  cursor: pointer;
}

.chip.active {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

.search-box {
  display: grid;
  gap: 0.35rem;
  min-width: min(100%, 320px);
  color: var(--charcoal-soft);
  font-weight: 700;
  font-size: 0.92rem;
}

.search-box input {
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(32,53,42,0.12);
  padding: 0.85rem 1rem;
  font: inherit;
  background: rgba(255,255,255,0.9);
}

.filter-hidden { display: none !important; }

.blog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.2rem;
  align-items: start;
}

.contact-form,
.contact-panel,
.mini-card {
  padding: 1.2rem;
}

.contact-form {
  border: 1px solid rgba(32,53,42,0.08);
  border-radius: var(--radius-small);
  background: rgba(255,255,255,0.93);
  box-shadow: var(--shadow);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

label {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.95rem;
  font-weight: 700;
  color: var(--charcoal-soft);
}

input,
textarea,
select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(32,53,42,0.14);
  padding: 0.9rem 1rem;
  font: inherit;
  background: rgba(255,255,255,0.95);
  color: var(--charcoal);
}

textarea { resize: vertical; }

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(111, 138, 105, 0.28);
  border-color: var(--sage);
}

.form-note,
.muted {
  font-size: 0.92rem;
  color: rgba(31,36,40,0.72);
}

.footer-links {
  display: grid;
  gap: 0.55rem;
  padding-left: 0;
  margin: 0;
}

.footer-links li {
  list-style: none;
  color: rgba(31,36,40,0.84);
}

.compact-links li { padding: 0.2rem 0; }

.cta-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(32, 53, 42, 1), rgba(55, 82, 67, 0.96));
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-banner h2,
.cta-banner p { color: var(--white); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1.35rem;
  align-items: start;
}

.article-content {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(32,53,42,0.08);
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow);
}

.article-content h2 {
  margin-top: 2rem;
}

.article-sidebar {
  display: grid;
  gap: 1rem;
}

.article-callout {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(32,53,42,0.08);
  background: rgba(246, 242, 234, 0.9);
}

.site-footer {
  margin-top: auto;
  padding: 2.8rem 0 1.2rem;
  background: rgba(255,255,255,0.95);
  border-top: 1px solid rgba(32,53,42,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(180px, 0.6fr));
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.8rem;
}

.footer-brand img { width: 160px; }

.footer-copy { max-width: 48ch; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(32,53,42,0.08);
  color: rgba(31,36,40,0.76);
  font-size: 0.92rem;
}

.floating-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 26;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.1rem;
  border-radius: 999px;
  background: var(--terracotta);
  color: var(--white);
  font-weight: 800;
  box-shadow: var(--shadow);
}

.hidden { display: none !important; }

@media (max-width: 1100px) {
  .cards-grid,
  .blog-grid,
  .stats-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .two-col,
  .cta-banner,
  .footer-grid,
  .article-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .article-sidebar { order: -1; }
}

@media (max-width: 860px) {
  .desktop-cta { display: none; }

  .mobile-nav-toggle { display: inline-flex; }

  .main-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(32,53,42,0.08);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 0.5rem;
  }

  .main-nav.is-open { display: flex; }

  .main-nav a {
    padding: 0.9rem 0.7rem;
    border-bottom: 1px solid rgba(32,53,42,0.08);
  }

  .main-nav a:last-child { border-bottom: 0; }

  .hero {
    padding-top: 4.6rem;
  }

  .hero-stats,
  .field-grid,
  .cards-grid,
  .stats-grid,
  .process-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .filter-layout { align-items: stretch; }

  .floating-cta {
    left: 1rem;
    right: 1rem;
    bottom: 0.8rem;
    justify-content: center;
  }

  body { padding-bottom: 4.6rem; }
}
