:root {
  --orange: #f47c20;
  --orange-deep: #dc5f0f;
  --green: #1f9d55;
  --green-soft: #e8f7ef;
  --red: #d83b3b;
  --red-soft: #fff0f0;
  --white: #ffffff;
  --offwhite: #fffaf5;
  --text: #1f2937;
  --muted: #5b6472;
  --border: #eadccf;
  --shadow: 0 16px 38px rgba(122, 63, 12, 0.09);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(244, 124, 32, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(31, 157, 85, 0.14), transparent 24%),
    linear-gradient(180deg, #fffdf9 0%, #fff8ef 100%);
}

a { color: inherit; }
img { max-width: 100%; }
.container { width: min(1120px, 92vw); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(255, 250, 245, 0.94);
  border-bottom: 1px solid rgba(234, 220, 207, 0.9);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--orange), var(--green));
  color: var(--white);
  font-weight: 800;
  box-shadow: var(--shadow);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.nav a {
  text-decoration: none;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  transition: 0.2s ease;
}

.nav a:hover,
.nav a.active {
  background: var(--white);
  color: var(--orange-deep);
  box-shadow: 0 8px 24px rgba(244, 124, 32, 0.14);
}

.hero-section,
.page-hero {
  padding: 5.5rem 0 2rem;
}

.hero-grid,
.split-section,
.contact-grid,
.two-col {
  display: grid;
  gap: 1.5rem;
}

.hero-grid,
.split-section {
  grid-template-columns: 1.2fr 0.8fr;
}

.section-grid {
  padding: 1rem 0 2.2rem;
}

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

.eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(244, 124, 32, 0.12);
  color: var(--orange-deep);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

h1, h2, h3, h4 {
  margin-top: 0;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  margin-bottom: 1rem;
  max-width: 12ch;
}

h2 { font-size: 1.7rem; margin-bottom: 1rem; }
h3 { font-size: 1.2rem; margin-bottom: 0.7rem; }
p { line-height: 1.7; color: var(--muted); }
.lead { font-size: 1.12rem; max-width: 60ch; }

.card,
.highlight-card,
.legal-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(234, 220, 207, 0.9);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.highlight-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(232,247,239,0.95));
}

.highlight-card ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.8;
}

.content-card,
.feature-card,
.stats-card,
.contact-details,
.form-card { min-height: 100%; }

.accent-green { border-color: rgba(31, 157, 85, 0.24); }
.accent-red { border-color: rgba(216, 59, 59, 0.24); }
.accent-border { border-left: 6px solid var(--orange); }

.stats-card {
  display: grid;
  gap: 1rem;
  align-content: start;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,240,240,0.96));
}

.stats-card strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.stats-card span { color: var(--muted); line-height: 1.6; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.9rem 1.2rem;
  border-radius: 16px;
  border: 0;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(31, 41, 55, 0.12);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--green);
  border: 1px solid rgba(31, 157, 85, 0.25);
}

.contact-grid { grid-template-columns: 0.9fr 1.1fr; }
.form { display: grid; gap: 1rem; }
.form-row { display: grid; gap: 1rem; }
.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }

label {
  display: grid;
  gap: 0.55rem;
  font-weight: 600;
  color: var(--text);
}

input,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid #dfd0c2;
  background: #fffdfb;
  color: var(--text);
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(244, 124, 32, 0.12);
  border-color: rgba(244, 124, 32, 0.45);
}

.form-note { font-size: 0.95rem; margin: 0; }
.hp-field { position: absolute; left: -9999px; }

.alert {
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  font-weight: 600;
}

.alert-success {
  background: var(--green-soft);
  color: #17683b;
  border: 1px solid rgba(31, 157, 85, 0.2);
}

.alert-error {
  background: var(--red-soft);
  color: #9f2424;
  border: 1px solid rgba(216, 59, 59, 0.2);
}

.legal-content-site {
  padding: 5rem 0 4rem;
}

.legal-card h2 { margin-top: 1.8rem; }
.legal-card p { margin: 0.85rem 0; }

.site-footer {
  margin-top: 2rem;
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(234, 220, 207, 0.9);
  background: rgba(255, 255, 255, 0.62);
}

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

.footer-grid h3,
.footer-grid h4 { margin-bottom: 0.75rem; }
.footer-grid p { margin: 0.25rem 0; }

.legal-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
}

.legal-shell {
  width: min(820px, 100%);
}

.standalone-legal {
  padding: 2.3rem;
}

.standalone-legal h1 {
  max-width: none;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

@media (max-width: 900px) {
  .hero-grid,
  .split-section,
  .contact-grid,
  .three-up,
  .footer-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-section,
  .page-hero,
  .legal-content-site {
    padding-top: 3.5rem;
  }

  h1 { max-width: none; }
}

.brand-logo {
  width: 4.1rem;
  height: 4.1rem;
  object-fit: contain;
  flex: 0 0 auto;
}

.footer-logo {
  width: min(240px, 100%);
  margin-bottom: 0.85rem;
}

.logo-card {
  text-align: left;
}

.hero-logo {
  display: block;
  width: min(100%, 380px);
  margin: 0 auto 1.2rem;
}

.site-footer .footer-grid > div:first-child {
  max-width: 360px;
}

@media (max-width: 760px) {
  .brand-logo {
    width: 3.3rem;
    height: 3.3rem;
  }

  .hero-logo {
    width: min(100%, 290px);
  }
}
