:root {
  --orange: #f27121;
  --orange-dark: #d64c21;
  --orange-soft: #fff2e8;
  --peach: #fff6ef;
  --cream: #fffaf6;
  --ink: #1d2430;
  --muted: #667085;
  --line: #eadfd6;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(38,29,24,.08);
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--ink); background: white; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: 16px; z-index: 9999; padding: 10px 14px; background: var(--ink); color: white; border-radius: 8px; transform: translateY(-200%); }
.skip-link:focus { transform: translateY(0); }
.eyebrow { margin: 0 0 12px; color: var(--orange-dark); font-size: .77rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
h1,h2,h3 { margin: 0; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.2rem, 4.2vw, 4.25rem); }
h2 { font-size: clamp(2rem, 3.3vw, 3.25rem); }
h3 { font-size: 1.22rem; }
h1 span,h2 span { color: var(--orange-dark); }
p { color: var(--muted); }
.btn { display: inline-flex; min-height: 48px; padding: 0 22px; align-items: center; justify-content: center; border-radius: 999px; border: 1px solid transparent; font-weight: 750; transition: .2s ease; }
.btn-primary { background: var(--orange); color: white; box-shadow: 0 10px 24px rgba(242,113,33,.2); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-secondary { background: white; color: var(--orange-dark); border-color: #e6aa83; }
.btn-secondary:hover { background: var(--orange-soft); }
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(234,223,214,.8); backdrop-filter: blur(14px); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; gap: 28px; }
.brand img { width: 150px; }
.primary-nav { margin-left: auto; display: flex; gap: 30px; align-items: center; }
.primary-nav a { font-size: .94rem; font-weight: 650; color: #3d4654; position: relative; }
.primary-nav a:hover,.primary-nav a.active { color: var(--orange-dark); }
.primary-nav a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -10px; height: 2px; background: var(--orange); }
.nav-cta { margin-left: 4px; }
.menu-toggle { display: none; margin-left: auto; border: 0; background: transparent; padding: 10px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; }
.about-hero { background: linear-gradient(135deg,#fff8f1 0%,#ffefe3 100%); padding: 66px 0 70px; position: relative; overflow: hidden; }
.about-hero::before,.about-hero::after { content: ""; position: absolute; border-radius: 50%; background: rgba(242,113,33,.08); }
.about-hero::before { width: 280px; height: 280px; left: -120px; top: -70px; }
.about-hero::after { width: 340px; height: 340px; right: -170px; bottom: -170px; }
.hero-inner { max-width: 860px; text-align: center; position: relative; z-index: 1; }
.hero-lead { max-width: 760px; margin: 22px auto 0; font-size: 1.06rem; }
.hero-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.section { padding: 88px 0; }
.split-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 70px; align-items: center; }
.media-card img { width: 100%; aspect-ratio: 1.05/1; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow); }
.content-block p:not(.eyebrow) { font-size: 1.02rem; margin: 18px 0 0; }
.founders { background: var(--cream); }
.section-heading { max-width: 820px; margin-bottom: 38px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading.centered > p:last-child { margin: 16px auto 0; max-width: 760px; }
.founder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.founder-card { display: grid; grid-template-columns: 150px 1fr; gap: 24px; padding: 26px; border: 1px solid var(--line); border-radius: 22px; background: white; box-shadow: 0 10px 32px rgba(48,37,30,.05); }
.founder-photo { width: 150px; aspect-ratio: 1; object-fit: cover; border-radius: 50%; }
.founder-role { color: var(--orange-dark); font-weight: 800; text-transform: uppercase; font-size: .75rem; letter-spacing: .07em; margin: 8px 0 12px; }
.founder-card p:last-child { margin: 0; font-size: .94rem; }
.founder-note { text-align: center; max-width: 760px; margin: 28px auto 0; }
.values { background: white; }
.value-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.value-card { padding: 24px; border: 1px solid var(--line); border-radius: 18px; }
.value-card b { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--orange-soft); color: var(--orange-dark); font-size: .75rem; margin-bottom: 18px; }
.value-card p { margin: 10px 0 0; font-size: .93rem; }
.mission { background: linear-gradient(135deg,#f7fbfb 0%,#fff7f1 100%); }
.mission-grid { display: grid; grid-template-columns: 1fr .88fr; gap: 60px; align-items: center; }
.mission-copy p:not(.eyebrow) { font-size: 1.02rem; margin: 18px 0 0; }
.mission-media img { width: 100%; aspect-ratio: 1.18/1; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow); }
.approach { background: white; }
.narrow { max-width: 900px; }
.approach-list { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; margin-top: 34px; }
.approach-list div { padding: 18px 16px; border: 1px solid var(--line); border-radius: 16px; font-weight: 750; line-height: 1.35; }
.approach-list span { display: inline-grid; place-items: center; width: 28px; height: 28px; margin-bottom: 11px; border-radius: 50%; background: var(--orange); color: white; font-size: .82rem; }
.cta-section { padding: 0 0 90px; }
.cta-card { display: grid; grid-template-columns: 1fr auto; gap: 34px; align-items: center; padding: 34px 38px; border-radius: 26px; background: linear-gradient(135deg,#fff6ee,#ffeadb); border: 1px solid #f5d9c8; }
.cta-card h2 { font-size: clamp(1.65rem,2.5vw,2.4rem); }
.cta-card p { margin: 10px 0 0; max-width: 700px; }
.cta-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.site-footer { background: #171b22; color: white; padding: 44px 0 20px; }
.site-footer p,.site-footer a,.site-footer span { color: #c6cbd3; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 44px; align-items: start; }
.footer-brand img { width: 155px; }
.footer-brand p { margin: 14px 0 0; }
.site-footer nav,.footer-contact { display: grid; gap: 10px; }
.site-footer a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 34px; padding-top: 18px; border-top: 1px solid #2c323c; font-size: .8rem; }
@media (max-width: 980px) {
  .section { padding: 70px 0; }
  .split-grid,.mission-grid { grid-template-columns: 1fr; gap: 40px; }
  .founder-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .approach-list { grid-template-columns: 1fr 1fr; }
  .cta-card { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
  .nav-cta { display: none; }
}
@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px),var(--container)); }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 132px; }
  .menu-toggle { display: block; }
  .primary-nav { position: absolute; top: 72px; left: 14px; right: 14px; padding: 18px; display: none; flex-direction: column; align-items: stretch; gap: 8px; border: 1px solid var(--line); border-radius: 16px; background: white; box-shadow: var(--shadow); }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 10px 8px; }
  .primary-nav a.active::after { display: none; }
  .about-hero { padding: 48px 0 52px; }
  .hero-actions .btn { width: 100%; }
  .founder-card { grid-template-columns: 1fr; text-align: center; }
  .founder-photo { margin-inline: auto; }
  .value-grid,.approach-list { grid-template-columns: 1fr; }
  .cta-card { padding: 26px 22px; }
  .cta-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; }
}
