:root {
  --burnt-orange: #bf5700;
  --orange-dark: #8f3f00;
  --orange-light: #e87519;
  --cream: #f7f3ed;
  --cream-dark: #eee7dc;
  --white: #ffffff;
  --ink: #191817;
  --muted: #6d6964;
  --border: #ded7cd;
  --dark: #171514;

  --font-body: "DM Sans", sans-serif;
  --font-display: "Playfair Display", serif;

  --container: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

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

button {
  font-family: inherit;
}

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

/* =========================
   HEADER
========================= */

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: white;
}

.navbar {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: white;
  color: var(--burnt-orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand-text strong {
  font-size: 13px;
}

.brand-text small {
  opacity: .7;
  font-size: 10px;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  opacity: .85;
  transition: .25s ease;
}

.nav-links a:hover {
  opacity: 1;
  color: #ffd2af;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: white;
  display: block;
  margin: 5px 0;
}

/* =========================
   HERO
========================= */

.hero {
  min-height: 760px;
  position: relative;
  background:
    radial-gradient(
      circle at 80% 25%,
      rgba(232,117,25,.35),
      transparent 35%
    ),
    linear-gradient(
      125deg,
      #7e3500 0%,
      #a84700 48%,
      #c55a00 100%
    );
  color: white;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -220px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
}

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  right: -250px;
  top: -300px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
}

.hero-content {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: center;
  padding-top: 80px;
}

.hero-copy {
  max-width: 650px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 24px;
  opacity: .8;
}

.eyebrow span {
  display: block;
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(64px, 7vw, 104px);
  line-height: .94;
  letter-spacing: -.055em;
  margin-bottom: 34px;
}

.hero h1 em {
  display: block;
  color: #ffd4b0;
  font-weight: 600;
}

.hero-description {
  max-width: 560px;
  color: rgba(255,255,255,.8);
  font-size: 17px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 15px 22px;
  font-size: 12px;
  font-weight: 700;
  transition: .25s ease;
}

.button span {
  font-size: 17px;
}

.button-primary {
  background: white;
  color: var(--burnt-orange);
}

.button-primary:hover {
  transform: translateY(-3px);
  background: #fff4eb;
}

.button-secondary {
  border: 1px solid rgba(255,255,255,.35);
  color: white;
}

.button-secondary:hover {
  background: rgba(255,255,255,.1);
}

.hero-card {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  padding: 50px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cross-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.4);
  font-size: 30px;
  font-weight: 300;
}

.hero-card-content span {
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 9px;
  opacity: .6;
}

.hero-card h2 {
  font-family: var(--font-display);
  font-size: 35px;
  line-height: 1.1;
  margin: 14px 0;
}

.hero-card p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,.7);
}

.hero-card-line {
  height: 1px;
  width: 45%;
  background: rgba(255,255,255,.4);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: max(24px, calc((100vw - var(--container)) / 2));
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 9px;
  opacity: .55;
}

.scroll-indicator span {
  width: 28px;
  height: 1px;
  background: white;
}

/* =========================
   SECTIONS
========================= */

.section {
  padding: 120px 0;
}

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

.section-label {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 9px;
  font-weight: 700;
  color: var(--muted);
}

.section-label span {
  color: var(--burnt-orange);
  font-size: 10px;
}

.section-label p {
  padding-top: 1px;
}

.section-content {
  max-width: 790px;
}

.section-content h2,
.resource-intro h2,
.contact h2 {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 32px;
}

.section-content h2 span,
.resource-intro h2 span,
.contact h2 span {
  color: var(--burnt-orange);
  display: block;
}

.large-text {
  font-size: 22px !important;
  line-height: 1.65 !important;
  color: #34312e;
}

.section-content p {
  max-width: 680px;
  color: var(--muted);
  margin-bottom: 22px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  margin-top: 55px;
}

.stat-row div {
  padding: 24px 20px 0 0;
  border-right: 1px solid var(--border);
}

.stat-row div:not(:first-child) {
  padding-left: 20px;
}

.stat-row div:last-child {
  border-right: 0;
}

.stat-row strong,
.stat-row span {
  display: block;
}

.stat-row strong {
  font-size: 13px;
  margin-bottom: 5px;
}

.stat-row span {
  color: var(--muted);
  font-size: 11px;
}

/* =========================
   OPPORTUNITIES
========================= */

.opportunities {
  background: white;
}

.section-heading {
  max-width: 750px;
  margin-bottom: 65px;
}

.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.centered-label {
  justify-content: center;
  margin-bottom: 24px;
}

.section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -.04em;
}

.section-heading h2 span {
  color: var(--burnt-orange);
}

.section-heading > p {
  color: var(--muted);
  margin: 25px auto 0;
  max-width: 570px;
}

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

.feature-card {
  position: relative;
  min-height: 370px;
  padding: 42px;
  background: var(--cream);
  border: 1px solid var(--border);
  transition: .3s ease;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-7px);
  border-color: #d4c5b4;
}

.feature-card.featured {
  background: var(--burnt-orange);
  color: white;
  border-color: var(--burnt-orange);
}

.card-number {
  position: absolute;
  top: 26px;
  right: 30px;
  font-size: 10px;
  color: var(--muted);
}

.featured .card-number {
  color: rgba(255,255,255,.55);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  color: var(--burnt-orange);
  font-size: 22px;
  margin-bottom: 60px;
}

.featured .card-icon {
  color: white;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 13px;
}

.feature-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  max-width: 290px;
}

.featured p {
  color: rgba(255,255,255,.75);
}

.feature-card a {
  position: absolute;
  bottom: 35px;
  left: 42px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
}

.feature-card a:hover {
  text-decoration: underline;
}

/* =========================
   RESOURCES
========================= */

.resources {
  background: var(--cream-dark);
}

.resource-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
}

.resource-intro p {
  color: var(--muted);
  max-width: 400px;
}

.resource-list {
  border-top: 1px solid var(--border);
}

.resource-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: .25s ease;
}

.resource-item:hover {
  padding-left: 10px;
  padding-right: 10px;
  background: rgba(255,255,255,.3);
}

.resource-tag {
  color: var(--burnt-orange);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
}

.resource-item h3 {
  font-family: var(--font-display);
  font-size: 25px;
  margin: 6px 0;
}

.resource-item p {
  color: var(--muted);
  font-size: 11px;
}

.resource-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid #cfc5b8;
  display: grid;
  place-items: center;
  font-size: 17px;
}

/* =========================
   CTA
========================= */

.cta-section {
  background: var(--dark);
  color: white;
  padding: 105px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
  right: -300px;
  top: -300px;
}

.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  line-height: .98;
  letter-spacing: -.045em;
  max-width: 750px;
}

.cta-inner h2 em {
  color: #f48a37;
  font-weight: 600;
}

.cta-inner p {
  max-width: 560px;
  color: #99928c;
  margin-top: 25px;
}

.eyebrow.light {
  color: #aaa29b;
}

.button-light {
  background: white;
  color: var(--dark);
  white-space: nowrap;
}

.button-light:hover {
  background: #ffd7b7;
  color: var(--orange-dark);
  transform: translateY(-3px);
}

.cta-decoration {
  position: absolute;
  right: 40px;
  bottom: 10px;
  opacity: .08;
  font-size: 70px;
  font-weight: 200;
  display: flex;
  gap: 25px;
}

/* =========================
   CONTACT
========================= */

.contact {
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.contact > .container > div:first-child > p {
  color: var(--muted);
  max-width: 500px;
}

.contact-links {
  border-top: 1px solid var(--border);
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--burnt-orange);
  font-size: 20px;
}

.contact-link small,
.contact-link strong {
  display: block;
}

.contact-link small {
  color: var(--burnt-orange);
  font-size: 8px;
  letter-spacing: .13em;
  font-weight: 800;
}

.contact-link strong {
  font-size: 14px;
  margin-top: 4px;
}

.contact-link:hover strong {
  color: var(--burnt-orange);
}

/* =========================
   FOOTER
========================= */

.footer {
  background: #11100f;
  color: white;
  padding: 45px 0 25px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 35px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand > div {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  font-size: 12px;
}

.footer-brand span:not(.brand-mark) {
  color: #77716c;
  font-size: 10px;
  margin-top: 3px;
}

.footer-brand .brand-mark {
  background: var(--burnt-orange);
  color: white;
}

.footer-right {
  color: #77716c;
  font-size: 10px;
  display: flex;
  gap: 10px;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid #2a2826;
  display: flex;
  justify-content: space-between;
  color: #68635f;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.footer-bottom a:hover {
  color: white;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: #1b1512;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    transform: translateX(100%);
    transition: transform .3s ease;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 20px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 101;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-top: 150px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 90px;
  }

  .hero-content {
    min-height: auto;
  }

  .hero-card {
    min-height: 300px;
  }

  .two-column,
  .resource-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 330px;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 600px) {

  .navbar {
    min-height: 75px;
  }

  .brand-text {
    display: none;
  }

  .hero h1 {
    font-size: 62px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-card {
    padding: 30px;
  }

  .section {
    padding: 80px 0;
  }

  .section-content h2,
  .resource-intro h2,
  .contact h2,
  .section-heading h2 {
    font-size: 46px;
  }

  .large-text {
    font-size: 18px !important;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .stat-row div,
  .stat-row div:not(:first-child) {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .stat-row div:last-child {
    border-bottom: 0;
  }

  .resource-item h3 {
    font-size: 21px;
  }

  .resource-arrow {
    flex-shrink: 0;
    margin-left: 15px;
  }

  .cta-section {
    padding: 80px 0;
  }

  .cta-inner h2 {
    font-size: 52px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .footer-right {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }
}
