:root {
  --copper: #aa5833;
  --copper-dark: #8a4528;
  --peach: #ff9a61;
  --cream: #ffd8c1;
  --ink: #060606;
  --paper: #faf8f6;
  --paper-warm: #f3ebe4;
  --muted: #5c534d;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 18px 50px rgba(6, 6, 6, 0.08);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--copper);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--copper-dark);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--copper);
  color: var(--white);
}

.skip-link:focus {
  left: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 246, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(170, 88, 51, 0.12);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}

.brand img {
  height: 44px;
  width: auto;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(170, 88, 51, 0.35);
  background: var(--white);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font: inherit;
  cursor: pointer;
  color: var(--ink);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav a:hover {
  color: var(--copper);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, transform 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--copper);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--copper-dark);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--copper);
  border: 2px solid var(--copper);
}

.btn-ghost:hover {
  background: rgba(170, 88, 51, 0.08);
  color: var(--copper-dark);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(255, 154, 97, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 10%, rgba(255, 216, 193, 0.45), transparent 50%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%);
  z-index: -1;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3.5rem 1.25rem 4rem;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    padding: 4.5rem 1.25rem 5rem;
  }
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 1rem;
  color: var(--ink);
}

.hero-copy .lede {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 36ch;
  margin: 0 0 1.75rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem;
  max-width: 420px;
  border: 1px solid rgba(170, 88, 51, 0.1);
}

.hero-card img {
  width: 100%;
  height: auto;
}

.hero-card p {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.stats {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.25rem;
}

.stat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  border: 1px solid rgba(170, 88, 51, 0.1);
  box-shadow: 0 8px 24px rgba(6, 6, 6, 0.04);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--copper);
  line-height: 1.2;
}

.stat span {
  font-size: 0.88rem;
  color: var(--muted);
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3.5rem 1.25rem;
}

.section.alt {
  background: var(--paper-warm);
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  margin: 0 0 0.5rem;
  color: var(--ink);
}

.section-intro {
  color: var(--muted);
  max-width: 65ch;
  margin: 0 0 2rem;
}

.section-intro.section-intro-wide {
  max-width: none;
}

.grid-3 {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-2 {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  border: 1px solid rgba(170, 88, 51, 0.12);
  height: 100%;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.65rem;
  color: var(--copper-dark);
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pill {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 216, 193, 0.55);
  color: var(--copper-dark);
}

.quote-block {
  border-left: 4px solid var(--peach);
  padding-left: 1.25rem;
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--ink);
}

.leadership {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 800px) {
  .leadership {
    grid-template-columns: 2fr 1fr;
  }
}

.leadership-bio h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.25rem;
}

.leadership-bio .role {
  font-weight: 700;
  color: var(--copper);
  margin: 0 0 1rem;
}

.tag-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-list li {
  background: var(--white);
  border: 1px solid rgba(170, 88, 51, 0.2);
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.process-steps {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

@media (min-width: 900px) {
  .process-steps {
    grid-template-columns: repeat(5, 1fr);
  }
}

.process-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid rgba(170, 88, 51, 0.12);
  position: relative;
}

.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--peach);
  display: block;
  margin-bottom: 0.35rem;
}

.process-step h3 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
  font-family: var(--font-body);
}

.process-step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-wrap {
  display: grid;
  gap: 2rem;
}

@media (min-width: 850px) {
  .contact-wrap {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}

.contact-aside {
  background: linear-gradient(145deg, var(--copper) 0%, #7d3f24 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.contact-aside h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  margin: 0 0 0.75rem;
}

.contact-aside p {
  margin: 0;
  opacity: 0.95;
  font-size: 0.98rem;
}

.form-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid rgba(170, 88, 51, 0.15);
  box-shadow: var(--shadow);
}

.form-row {
  margin-bottom: 1.1rem;
}

.form-row label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(6, 6, 6, 0.15);
  font: inherit;
  background: var(--paper);
}

.form-row textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(170, 88, 51, 0.45);
  outline-offset: 2px;
  border-color: var(--copper);
}

.form-status {
  margin-top: 1rem;
  font-weight: 600;
  min-height: 1.5rem;
}

.form-status.success {
  color: #1b6b3a;
}

.form-status.error {
  color: #a42020;
}

.site-footer {
  border-top: 1px solid rgba(170, 88, 51, 0.15);
  padding: 2rem 1.25rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0.35rem 0;
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    border-bottom: 1px solid rgba(170, 88, 51, 0.12);
    gap: 0.75rem;
  }

  .nav.is-open {
    display: flex;
  }

  .nav .btn {
    justify-content: center;
  }
}
