:root {
  --ink: #1A0F1F;
  --plum: #3A1F45;
  --cream: #FAF6F0;
  --paper: #F1E9DD;
  --orange: #FF6B35;
  --nav-orange: #FC6334;
  --gold: #E8B84A;
  --pink: #E84393;
  --violet: #4C2BFF;
  --muted: #B8A9BE;
  --max: 1400px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

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

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

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--cream);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.header-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  min-height: 94px;
  padding: 20px 60px;
  display: grid;
  grid-template-columns: minmax(150px, 18.576%) 1fr 28%;
  gap: 40px;
  align-items: center;
}

.brand img {
  width: 172px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.main-nav a {
  position: relative;
  padding: 13px 34px;
  color: var(--nav-orange);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.8px;
  line-height: 1;
  text-transform: uppercase;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 5px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.main-nav a.active {
  color: var(--pink);
}

.header-cta,
.button {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  min-height: 41px;
  padding: 12px 24px;
  border: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 8px 24px rgba(26, 15, 31, 0.18);
  transition: transform 160ms ease;
}

.header-cta,
.orange-button {
  color: #fff;
  background: var(--orange);
}

.gold-button {
  color: var(--ink);
  background: var(--gold);
}

.header-cta:hover,
.button:hover,
.image-wrap img:hover {
  transform: scale(1.03);
}

.menu-toggle {
  display: none;
}

.hero {
  padding: 130px 60px 110px;
  color: #fff;
  background: linear-gradient(135deg, #1A0F1F 0%, #3A1F45 100%);
}

.narrow-stack {
  width: min(100%, 1100px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}

.kicker {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.gold {
  color: var(--gold);
}

.orange {
  color: var(--orange);
}

.pink {
  color: var(--pink);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.15;
}

h1 {
  font-size: 48px;
  color: #fff;
}

h2 {
  font-size: 36px;
}

.experiences-head h2 {
  font-size: 40px;
}

.cta-band h2 {
  color: #fff;
  font-size: 38px;
}

.lead,
.cta-band p {
  margin: 0;
  max-width: 930px;
  color: var(--paper);
  font-size: 18px;
}

.section {
  padding: 100px 60px;
}

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

.split {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  align-items: center;
}

.copy-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.copy-stack p {
  margin: 0;
}

.image-wrap img {
  width: 100%;
  border-radius: 24px;
  transition: transform 180ms ease;
}

.experiences-head {
  padding: 120px 60px 18px;
  background: #fff;
}

.cards-section {
  padding: 36px 60px 110px;
  background: #fff;
}

.cards {
  width: min(100%, 1320px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 56px;
  align-items: start;
  justify-items: center;
}

.experience {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  max-width: 360px;
}

.experience h3 {
  font-size: 22px;
}

.experience p {
  margin: 0;
  font-size: 15px;
  color: rgba(26, 15, 31, 0.78);
}

.cta-band {
  padding: 110px 60px;
  color: var(--paper);
  background: var(--ink);
}

.cta-band .narrow-stack {
  max-width: 900px;
  gap: 28px;
}

.site-footer {
  padding: 90px 60px 40px;
  color: var(--paper);
  background: var(--ink);
}

.footer-main {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}

.footer-brand,
.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-brand img {
  width: 41%;
  min-width: 96px;
}

.footer-brand p,
.footer-column p,
.footer-column a {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.footer-column h4 {
  color: var(--gold);
  font-size: 18px;
}

.footer-column a:not(.social) {
  color: var(--paper);
}

.footer-column .social {
  color: var(--gold);
}

.footer-bottom {
  width: min(100%, var(--max));
  margin: 50px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 550ms ease, transform 550ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .header-inner {
    grid-template-columns: 165px 1fr;
  }

  .header-cta {
    display: none;
  }

  .main-nav a {
    padding-inline: 22px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 27px;
  }

  .experiences-head h2 {
    font-size: 30px;
  }

  .cta-band h2 {
    font-size: 28px;
  }

  .cards {
    gap: 28px;
  }

  .footer-column h4 {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 16px;
  }

  .site-header {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }

  .header-inner {
    min-height: 56px;
    padding: 0;
    grid-template-columns: 50% 29%;
    justify-content: space-between;
    gap: 0;
  }

  .brand {
    display: flex;
    min-height: 56px;
    align-items: center;
    padding-left: 12px;
  }

  .brand img {
    width: 130px;
  }

  .menu-toggle {
    justify-self: center;
    display: inline-flex;
    width: 44px;
    height: 44px;
    padding: 12px;
    border: 0;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .menu-toggle span:not(.sr-only) {
    width: 15px;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
  }

  .main-nav {
    grid-column: 1 / -1;
    display: none;
    width: 100vw;
    margin-top: 13px;
    padding: 8px 0 12px;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 10px 18px rgba(26, 15, 31, 0.12);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 18px;
    text-align: center;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    padding: 92px 24px 76px;
  }

  h1 {
    font-size: 26px;
  }

  h2,
  .experiences-head h2 {
    font-size: 20px;
  }

  .cta-band h2 {
    font-size: 21px;
  }

  .lead,
  .cta-band p {
    font-size: 16px;
  }

  .section,
  .cta-band {
    padding: 72px 24px;
  }

  .split,
  .cards,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .split {
    gap: 36px;
  }

  .reverse-mobile .image-wrap {
    order: -1;
  }

  .experiences-head {
    padding: 76px 24px 10px;
  }

  .cards-section {
    padding: 20px 24px 76px;
  }

  .cards {
    gap: 34px;
  }

  .experience {
    max-width: 340px;
    margin: 0 auto;
  }

  .site-footer {
    padding: 70px 24px 34px;
  }

  .footer-main {
    gap: 36px;
  }

  .footer-brand img {
    width: 120px;
  }

  .footer-column h4 {
    font-size: 10px;
  }

  .footer-bottom {
    margin-top: 42px;
    flex-direction: column;
    align-items: flex-start;
  }
}
