:root {
  --clay: #a65431;
  --clay-2: #7e3f28;
  --clay-3: #c5754a;
  --taupe: #ddd9cf;
  --taupe-2: #f1eee7;
  --cream: #fbf8f2;
  --paper: #ffffff;
  --ink: #241f1b;
  --ink-soft: #42362e;
  --muted: #74675e;
  --line: #e7dfd3;
  --deep: #3f2419;
  --deep-2: #231814;
  --shadow: 0 24px 70px rgba(75, 43, 29, 0.14);
  --radius: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

body.no-scroll {
  overflow: hidden;
}

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

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 92px 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  color: white;
  background: var(--clay);
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(231, 223, 211, 0.85);
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(88, 52, 35, 0.16);
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  color: var(--deep);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand-copy small {
  color: var(--muted);
  margin-top: 4px;
  font-size: 0.75rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #4e4139;
  font-size: 0.93rem;
  font-weight: 700;
}

.nav-menu a {
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: var(--clay);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  color: white !important;
  background: var(--clay);
  box-shadow: 0 12px 24px rgba(166, 84, 49, 0.22);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: var(--deep);
  transition: 0.2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 88px;
  background:
    radial-gradient(circle at top left, rgba(166, 84, 49, 0.16), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(221, 217, 207, 0.9), transparent 24%),
    linear-gradient(180deg, #fffcf7 0%, #ffffff 84%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(166, 84, 49, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(166, 84, 49, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 76%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--clay);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #f0c0a2;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  color: var(--deep);
  font-size: clamp(3rem, 7vw, 5.85rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

h2 {
  margin-bottom: 18px;
  color: var(--deep);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 10px;
  color: var(--deep);
  font-size: 1.15rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.hero-text {
  max-width: 730px;
  color: var(--ink-soft);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  color: white;
  background: linear-gradient(135deg, var(--clay-2), var(--clay));
  box-shadow: 0 16px 36px rgba(166, 84, 49, 0.28);
}

.btn.secondary {
  color: var(--deep);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.9);
}

.btn.full {
  width: 100%;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-strip span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #584a40;
  background: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-card {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 30px;
  color: white;
  background:
    radial-gradient(circle at 88% 4%, rgba(221, 217, 207, 0.20), transparent 28%),
    linear-gradient(160deg, #3e241a 0%, #6e3825 54%, #a65431 100%);
  box-shadow: var(--shadow);
  isolation: isolate;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -95px;
  top: -88px;
  border-radius: 50%;
  background: rgba(221, 217, 207, 0.20);
  z-index: -1;
}

.hero-logo {
  width: 96px;
  height: 96px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(34, 24, 20, 0.2);
}

.hero-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 44px;
  color: #f7e7db;
  font-weight: 700;
}

.hero-card-top p {
  margin: 0;
}

.pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--taupe);
  box-shadow: 0 0 0 9px rgba(221, 217, 207, 0.18);
}

.hero-card h2,
.hero-card h3 {
  color: white;
}

.hero-card p {
  color: #f2dfd2;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.metrics div {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  color: white;
  font-size: 1.25rem;
}

.metrics span {
  color: #f2dfd2;
  font-size: 0.78rem;
}

.logos-section {
  padding: 28px 0;
}

.focus-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 22px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
  box-shadow: 0 12px 34px rgba(75, 43, 29, 0.07);
}

.focus-bar img {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.focus-bar p {
  margin: 0;
  color: #493e37;
  text-align: center;
  font-weight: 700;
}

.two-column {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 70px;
}

.body-copy p {
  color: #554941;
  font-size: 1.02rem;
}

.muted {
  background: var(--cream);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  color: var(--muted);
}

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

.card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 18px 40px rgba(75, 43, 29, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(75, 43, 29, 0.12);
}

.icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--clay-2), var(--clay-3));
  font-weight: 800;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.split-panel {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 44px;
  align-items: start;
}

.panel-copy {
  position: sticky;
  top: 118px;
}

.panel-copy p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--clay);
  font-weight: 800;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.step > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: white;
  background: var(--clay);
  font-weight: 800;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
}

.deep {
  color: white;
  background:
    radial-gradient(circle at top right, rgba(221, 217, 207, 0.16), transparent 28%),
    linear-gradient(145deg, var(--deep-2), var(--deep) 54%, var(--clay-2));
}

.deep h2,
.deep h3 {
  color: white;
}

.deep p {
  color: #eadacf;
}

.expert-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 54px;
  align-items: center;
}

.expert-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.expert-list div {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.expert-list strong,
.expert-list span {
  display: block;
}

.expert-list strong {
  margin-bottom: 8px;
  color: white;
}

.expert-list span {
  color: #eadacf;
  font-size: 0.95rem;
}

.people-section {
  background:
    radial-gradient(circle at 10% 0, rgba(166, 84, 49, 0.12), transparent 25%),
    #fffaf3;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.person-card {
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 18px 44px rgba(75, 43, 29, 0.08);
}

.person-card img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 18px;
  object-fit: cover;
  background: var(--taupe);
}

.person-card h3 {
  margin-bottom: 7px;
  font-size: 1.05rem;
}

.person-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.impact-section {
  padding: 70px 0;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.impact-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.impact-card.featured {
  color: white;
  background: linear-gradient(135deg, var(--clay-2), var(--clay));
}

.impact-card.featured h3,
.impact-card.featured p {
  color: white;
}

.impact-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-grid > div > p {
  color: var(--muted);
  font-size: 1.02rem;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-details a,
.contact-details address {
  display: inline-flex;
  width: fit-content;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--deep);
  background: white;
  font-weight: 800;
}

.contact-details address {
  display: block;
  max-width: 430px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.55;
}

.contact-details address strong {
  display: block;
  margin-bottom: 3px;
  color: var(--clay);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #4e4139;
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ded4c6;
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffdf9;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 4px rgba(166, 84, 49, 0.13);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer {
  padding: 34px 0;
  color: #eadacf;
  background: var(--deep-2);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer p {
  margin: 0;
  font-size: 0.9rem;
}

.footer .brand-copy strong,
.footer .brand-copy small {
  color: white;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: #eadacf;
  font-weight: 700;
  font-size: 0.9rem;
}

@media (max-width: 1120px) {
  .people-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .two-column,
  .split-panel,
  .expert-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
  }

  .panel-copy {
    position: static;
  }

  .cards-grid,
  .impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .section {
    padding: 68px 0;
  }

  .nav {
    min-height: 74px;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .brand-copy small {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: 74px 14px auto 14px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: white;
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.2s ease;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 12px;
    border-radius: 12px;
  }

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

  h1 {
    font-size: clamp(2.7rem, 13vw, 4.4rem);
  }

  .hero {
    padding-top: 78px;
  }

  .hero-card {
    padding: 24px;
  }

  .hero-card-top {
    margin-bottom: 34px;
  }

  .focus-bar {
    flex-direction: column;
  }

  .metrics,
  .cards-grid,
  .expert-list,
  .impact-grid,
  .people-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .focus-bar {
    padding: 20px;
  }

  .card,
  .contact-form,
  .step,
  .impact-card {
    padding: 22px;
  }

  .person-card {
    padding: 16px;
  }
}
