@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --background: #EAE5DC;
  --foreground: #202020;
  --card: #F3F3F3;
  --primary: #212749;
  --primary-foreground: #F3F3F3;
  --muted: #D6D0C6;
  --muted-foreground: #5A5A5A;
  --accent: #D99935;
  --accent-foreground: #212749;
  --border: rgba(33, 39, 73, 0.15);
  --radius: 0.25rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  min-width: 370px;
  background: var(--background);
  color: var(--foreground);
  font-family: 'Poppins', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

a {
  text-decoration: none;
}

h1, h2, h3, p, span {
  margin: 0;
}

.container {
  max-width: 64rem; /* max-w-5xl */
  margin: 0 auto;
  padding: 0 2rem; /* px-8 */
}

@media (min-width: 1024px) {
  .container {
    padding: 0 4rem; /* lg:px-16 */
  }
}

/* ─── Section label ─── */

.label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.label--centered {
  justify-content: center;
}

.label__line {
  height: 1px;
  width: 2rem;
  flex-shrink: 0;
  background: var(--accent);
}

.label__text {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ─── Desktop left nav ─── */

.nav-desktop {
  display: none;
  flex-direction: column;
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 16rem;
  background: var(--primary);
  color: var(--primary-foreground);
  z-index: 50;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop__logo {
  display: flex;
  justify-content: center;
  padding: 2.5rem 0 2rem;
}

.nav-desktop__links {
  flex: 1;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-link {
  text-align: left;
  background: none;
  border: none;
  padding: 0.625rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(243, 243, 243, 0.6);
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: var(--primary-foreground);
  background: rgba(255, 255, 255, 0.08);
}

.nav-link.is-active {
  background: var(--accent);
  color: var(--accent-foreground);
}

.nav-desktop__tagline {
  padding: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-desktop__tagline p {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(243, 243, 243, 0.4);
  line-height: 1.6;
}

/* ─── Mobile top nav ─── */

.nav-mobile {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--primary);
  color: var(--primary-foreground);
}

@media (min-width: 1024px) {
  .nav-mobile {
    display: none;
  }
}

.nav-mobile__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
}

.nav-mobile__toggle {
  background: none;
  border: none;
  padding: 0.25rem;
  color: rgba(243, 243, 243, 0.8);
  display: flex;
}

.nav-mobile__toggle:hover {
  color: var(--primary-foreground);
}

.nav-mobile__toggle .icon-x {
  display: none;
}

.nav-mobile.is-open .icon-menu {
  display: none;
}

.nav-mobile.is-open .icon-x {
  display: block;
}

.nav-mobile__drawer {
  display: none;
  background: var(--primary);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 1.25rem 1.25rem;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-mobile.is-open .nav-mobile__drawer {
  display: flex;
}

/* ─── Main offset ─── */

.main {
  padding: 0;
}

@media (min-width: 1024px) {
  .main {
    margin-left: 16rem;
  }
}

/* ─── Hero ─── */

.hero {
  position: relative;
  overflow: hidden;
  height: calc(382px + 75vw);
  background-color: #D99935;
}

@media (min-width: 768px) {
  .hero {
    height: calc(298px + 75vw);
  }
}

@media (min-width: 1024px) {
  .hero {
    height: calc(106px + 75vw);
  }
}

@media (min-width: 1280px) {
  .hero {
    height: 1041px;
  }
}

.hero__photo {
  position: absolute;
  left: 0;
  width: 100%;
  object-fit: cover;
  object-position: top;
  pointer-events: none;
  user-select: none;
  top: 382px;
  aspect-ratio: 4 / 3;
}

@media (min-width: 768px) {
  .hero__photo {
    top: 298px;
  }
}

@media (min-width: 1280px) {
  .hero__photo {
    top: 273px;
    aspect-ratio: auto;
    height: 768px;
  }
}

.hero__cap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  pointer-events: none;
  z-index: 1;
  height: 382px;
  background: #D99935;
}

@media (min-width: 768px) {
  .hero__cap {
    height: 298px;
  }
}

@media (min-width: 1280px) {
  .hero__cap {
    height: 260px;
  }
}

.hero__gradient {
  position: absolute;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(to bottom, #D99935 46.177%, rgba(217, 153, 53, 0) 100%);
}

.hero__gradient--1 {
  top: 382px;
  height: 70px;
}

@media (min-width: 768px) {
  .hero__gradient--1 {
    top: 260px;
    height: 187px;
  }
}

@media (min-width: 1280px) {
  .hero__gradient--1 {
    top: 198px;
    height: 374px;
  }
}

.hero__gradient--2 {
  top: 382px;
  height: 90px;
}

@media (min-width: 768px) {
  .hero__gradient--2 {
    top: 260px;
    height: 260px;
  }
}

@media (min-width: 1280px) {
  .hero__gradient--2 {
    top: 227px;
    height: 440px;
  }
}

.hero__content-mobile {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 95px 1.5rem 4rem;
}

@media (min-width: 768px) {
  .hero__content-mobile {
    padding: 150px 3rem 4rem;
  }
}

@media (min-width: 1280px) {
  .hero__content-mobile {
    display: none;
  }
}

.hero__content-mobile h1 {
  font-weight: 500;
  font-size: 28px;
  width: 260px;
  line-height: 1.15;
  color: #212749;
}

@media (min-width: 640px) {
  .hero__content-mobile h1 {
    width: 331px;
  }
}

@media (min-width: 768px) {
  .hero__content-mobile h1 {
    font-size: 42.55px;
    width: 681px;
  }
}

.hero__separator {
  margin-top: 16px;
  font-family: 'Brother 1816', 'Poppins', sans-serif;
  font-size: 15px;
  letter-spacing: 3.3px;
  color: #202020;
  line-height: 15px;
}

@media (min-width: 768px) {
  .hero__separator {
    margin-top: 17px;
  }
}

.hero__tagline {
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 25px;
  font-size: 16px;
  letter-spacing: 3px;
  color: #212749;
  line-height: 16px;
}

@media (min-width: 768px) {
  .hero__tagline {
    margin-top: 41px;
  }
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-top: 25px;
}

@media (min-width: 768px) {
  .hero__ctas {
    flex-direction: row;
    gap: 15px;
    margin-top: 46px;
  }
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 4px;
  font-size: 14px;
  line-height: 20px;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.btn-primary {
  background-color: #212749;
  color: #fff;
  font-weight: 600;
  padding: 14px 24px;
  height: 48px;
  width: 216px;
}

.btn-primary:hover {
  background-color: #1a1f3a;
}

.btn-outline {
  border: 0.909px solid #212749;
  color: #212749;
  background-color: transparent;
  font-weight: 500;
  padding: 14px 24px;
  height: 50px;
  width: 215px;
}

.btn-outline:hover {
  background-color: rgba(33, 39, 73, 0.06);
}

.hero__content-desktop {
  display: none;
}

@media (min-width: 1280px) {
  .hero__content-desktop {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 2;
  }
}

.hero__content-desktop h1 {
  position: absolute;
  font-weight: 500;
  text-align: center;
  font-size: 42.55px;
  width: 768px;
  top: 163px;
  left: 50%;
  transform: translateX(-50%);
  color: #212749;
  line-height: normal;
}

.hero__content-desktop .hero__separator {
  position: absolute;
  text-align: center;
  top: 300px;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0;
}

.hero__content-desktop .hero__tagline {
  position: absolute;
  text-align: center;
  white-space: nowrap;
  top: 364px;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0;
}

.hero__content-desktop .hero__ctas {
  position: absolute;
  flex-direction: row;
  top: 426px;
  left: 50%;
  transform: translateX(-50%);
  gap: 15.41px;
  width: 435px;
  margin-top: 0;
}

.hero__content-desktop .btn-outline {
  width: 204px;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  color: #212749;
  opacity: 0.4;
  transition: opacity 0.2s ease;
  z-index: 2;
}

.hero__scroll-indicator:hover {
  opacity: 0.7;
}

.hero__scroll-indicator svg {
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(-15%); animation-timing-function: cubic-bezier(0.8, 0, 1, 1); }
  50% { transform: translateY(0); animation-timing-function: cubic-bezier(0, 0, 0.2, 1); }
}

/* ─── Foundation ─── */

.section-foundation {
  background: var(--background);
  padding-top: 6rem;
}

@media (min-width: 1024px) {
  .section-foundation {
    padding-top: 8rem;
  }
}

.section-foundation h2 {
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.25;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .section-foundation h2 {
    font-size: 2.25rem;
  }
}

.section-foundation > .container > p.lede {
  color: var(--muted-foreground);
  line-height: 1.625;
  margin-bottom: 1rem;
  max-width: 42rem;
}

.foundation__intro-label {
  color: var(--foreground);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.foundation__intro-text {
  color: var(--muted-foreground);
  line-height: 1.625;
  margin-bottom: 2rem;
}

.foundation__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .foundation__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .foundation__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.foundation-card {
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
}

.foundation-card__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.foundation-card__text {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--foreground);
}

.section-foundation__image {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

@media (min-width: 1440px) {
  .section-foundation__image {
    aspect-ratio: 2.40 / 1;
  }
}

.section-foundation__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ─── Video embed ─── */

.video-embed {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 3rem;
  background: var(--primary);
  aspect-ratio: 16 / 9;
}

.video-embed__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: none;
}

.video-embed.is-playing .video-embed__frame {
  display: block;
}

.video-embed.is-playing .video-embed__trigger {
  display: none;
}

.video-embed__trigger {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: none;
}

.video-embed__trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-embed__trigger:hover img {
  transform: scale(1.05);
}

.video-embed__tint {
  position: absolute;
  inset: 0;
  background: rgba(33, 39, 73, 0.2);
  transition: background-color 0.3s ease;
}

.video-embed__trigger:hover .video-embed__tint {
  background: rgba(33, 39, 73, 0.1);
}

.video-embed__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-embed__play-circle {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.video-embed__trigger:hover .video-embed__play-circle {
  transform: scale(1.1);
}

/* ─── Invitation (model) ─── */

.section-model {
  background: var(--primary);
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .section-model {
    padding: 8rem 0;
  }
}

.section-model h2 {
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--primary-foreground);
  margin-top: 1rem;
  margin-bottom: 3rem;
  line-height: 1.25;
}

@media (min-width: 1024px) {
  .section-model h2 {
    font-size: 2.25rem;
  }
}

.model__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 42rem;
  margin-bottom: 3rem;
}

.model__list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.model__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 10px;
  flex-shrink: 0;
}

.model__list-item p {
  color: rgba(243, 243, 243, 0.8);
  font-size: 1.125rem;
  line-height: 1.625;
}

.section-model__closing {
  color: rgba(243, 243, 243, 0.6);
  max-width: 42rem;
  line-height: 1.625;
}

/* ─── Impact ─── */

.section-impact {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .section-impact {
    padding: 8rem 0;
  }
}

.section-impact__bg {
  position: absolute;
  inset: 0;
}

.section-impact__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-impact__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(33, 39, 73, 0.82);
}

.section-impact__inner {
  position: relative;
  z-index: 10;
}

.section-impact h2 {
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--primary-foreground);
  margin-top: 1rem;
  margin-bottom: 1rem;
  line-height: 1.25;
}

@media (min-width: 1024px) {
  .section-impact h2 {
    font-size: 2.25rem;
  }
}

.section-impact > .container > p {
  color: rgba(243, 243, 243, 0.6);
  max-width: 36rem;
  margin-bottom: 4rem;
  line-height: 1.625;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 1024px) {
  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
}

.stat-card__value {
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.stat-card__label {
  color: rgba(243, 243, 243, 0.6);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.375;
}

/* ─── Stories ─── */

.section-stories {
  background: var(--background);
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .section-stories {
    padding: 8rem 0;
  }
}

.section-stories h2 {
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--primary);
  margin-top: 1rem;
  margin-bottom: 4rem;
  line-height: 1.25;
}

@media (min-width: 1024px) {
  .section-stories h2 {
    font-size: 2.25rem;
  }
}

.stories__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.story-card {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: var(--radius);
  overflow: hidden;
}

@media (min-width: 1024px) {
  .story-card {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-card--reverse {
    direction: rtl;
  }
}

.story-card__image {
  position: relative;
  min-height: 16rem;
  background: var(--muted);
  direction: ltr;
}

@media (min-width: 1024px) {
  .story-card__image {
    min-height: 20rem;
  }
}

.story-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(33, 39, 73, 0.4), transparent);
}

.story-card__body {
  background: var(--card);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  direction: ltr;
}

@media (min-width: 1024px) {
  .story-card__body {
    padding: 3rem;
  }
}

.story-card__context {
  color: var(--accent);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.story-card__text {
  color: var(--foreground);
  line-height: 1.625;
}

/* ─── Partnership ─── */

.section-partnership {
  background: #eae5dc;
}

.partnership__image-zone {
  position: relative;
  padding-top: 6rem;
}

@media (min-width: 1024px) {
  .partnership__image-zone {
    padding-top: 8rem;
  }
}

.partnership__bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.partnership__bg-wrap img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  object-fit: cover;
  object-position: center;
}

.partnership__fade {
  position: absolute;
  inset-inline: 0;
  top: 0;
  pointer-events: none;
}

.partnership__fade--1 {
  height: 387px;
  background: linear-gradient(to bottom, #eae5dc, rgba(234, 229, 220, 0));
}

.partnership__fade--2 {
  height: 318px;
  background: linear-gradient(to bottom, #eae5dc, rgba(234, 229, 220, 0));
}

.partnership__content {
  position: relative;
  z-index: 10;
  padding-bottom: 6rem;
}

@media (min-width: 1024px) {
  .partnership__content {
    padding-bottom: 8rem;
  }
}

.partnership__content h2 {
  font-weight: 500;
  margin-top: 1rem;
  margin-bottom: 1rem;
  line-height: 1.25;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: #1a2744;
}

.partnership__content > p {
  margin-bottom: 3rem;
  line-height: 1.625;
  max-width: 36rem;
  font-size: 16px;
  color: rgba(26, 39, 68, 0.6);
}

.partnership__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .partnership__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.partnership-card {
  border-radius: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
}

.partnership-card__number {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-size: 15px;
  letter-spacing: 2.4px;
  color: #d99935;
}

.partnership-card__title {
  font-weight: 500;
  margin-bottom: 0.75rem;
  font-size: 20px;
  line-height: 28px;
  color: #1a2744;
}

.partnership-card__text {
  font-size: 14px;
  line-height: 22.75px;
  color: rgba(26, 39, 68, 0.55);
}

.partnership__quote {
  padding: 3rem 0;
}

@media (min-width: 1024px) {
  .partnership__quote {
    padding: 4rem 0;
  }
}

.partnership__quote p {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: rgba(26, 39, 68, 0.6);
}

/* ─── Connect ─── */

.section-connect {
  position: relative;
  background: var(--primary);
  padding: 6rem 0;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .section-connect {
    padding: 9rem 0;
  }
}

.section-connect__bg {
  position: absolute;
  inset: 0;
}

.section-connect__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}

.section-connect__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(33, 39, 73, 0.8);
}

.section-connect__inner {
  position: relative;
  z-index: 10;
  text-align: center;
}

.section-connect h2 {
  font-weight: 500;
  color: var(--primary-foreground);
  margin: 1.5rem auto 1.5rem;
  line-height: 1.25;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  max-width: 700px;
}

.section-connect__lede {
  color: rgba(243, 243, 243, 0.6);
  max-width: 36rem;
  margin: 0 auto 3rem;
  line-height: 1.625;
}

.section-connect__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

@media (min-width: 640px) {
  .section-connect__ctas {
    flex-direction: row;
  }
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--accent-foreground);
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.btn-accent:hover {
  background: #f59e0b;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(243, 243, 243, 0.8);
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--primary-foreground);
}

/* ─── Footer ─── */

.footer {
  background: var(--primary);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .footer {
    padding: 2rem 4rem;
  }
}

@media (min-width: 640px) {
  .footer {
    flex-direction: row;
  }
}

.footer p {
  color: rgba(243, 243, 243, 0.8);
  font-size: 0.75rem;
  text-align: center;
}

/* Additional Overrides */

.btn-outline {
	border: 1px solid rgb(33, 39, 73);
}


@media only screen and (max-width: 768px) {

	.hero__photo {
	  top: 411px;
	}
	
.partnership__quote {
    padding: 3rem 24px;
 }
}

.nav-desktop__tagline p {
  font-size: 11px;
  color: rgba(243, 243, 243, 0.8);
}

.btn-primary {
  border: none !important;
}