@font-face {
  font-family: "Figtree";
  src: url("../fonts/Figtree-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src: url("../fonts/Figtree-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src: url("../fonts/Figtree-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src: url("../fonts/Figtree-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --sky-blue: #53b9e1;
  --navy: #1b3a6b;
  --navy-dark: #0f2245;
  --red: #c8102e;
  --red-dark: #a50e26;
  --white: #ffffff;
  --warm: #f5f5f5;
  --gold: #c4a55a;
  --grey: #6b7280;
  --border: #dde3ed;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Figtree", sans-serif;
  color: var(--sky-blue);
  background: var(--white);
  overflow-x: hidden;
}

/* LANG TOGGLE */
.lang-toggle {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
}
.lang-btn {
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  transition:
    background 0.18s,
    color 0.18s;
  font-family: "Figtree", sans-serif;
}
.lang-btn.active {
  background: var(--gold);
  color: var(--navy-dark);
}
.lang-btn:not(.active):hover {
  color: var(--white);
}
.lang-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  align-self: stretch;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 6%;
  background: var(--sky-blue); /* rgba(27, 58, 107, 0.97); */
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(196, 165, 90, 0.4);
  transition: padding 0.3s;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo img {
  height: 40px;
  width: auto;
  margin-top: 10px;
}
/* .nav-logo {
  font-family: "Figtree", serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.04em;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo span {
  color: var(--gold);
} */
nav ul {
  list-style: none;
  display: flex;
  gap: 1.8rem;
  align-items: center;
}
nav ul a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}
nav ul a:hover {
  color: var(--navy-dark);
}
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 10px;
}
.nav-cta:hover {
  background: var(--red-dark) !important;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-shrink: 0;
}

/* HERO */
/*#hero {
  min-height: 100vh;
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 6% 5rem;
  position: relative;
  overflow: hidden;
  gap: 4rem;
}
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 55% 70% at 85% 50%,
      rgba(200, 16, 46, 0.12) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 35% 50% at 15% 15%,
      rgba(196, 165, 90, 0.08) 0%,
      transparent 60%
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 79px,
      rgba(255, 255, 255, 0.015) 80px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 79px,
      rgba(255, 255, 255, 0.015) 80px
    );
  pointer-events: none;
}
.hero-text {
  position: relative;
  z-index: 2;
}
  */
#hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8rem 6% 5rem;
  position: relative;
  overflow: hidden;
  gap: 4rem;
}

#hero .bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 20% top;
  z-index: 0;
}

#hero .bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(10, 22, 40, 0.6) 0%,
    rgba(10, 22, 40, 0) 60%,
    rgba(10, 22, 40, 0) 100%
  );
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 600px;
  text-align: right;
}

.hero-strip {
  position: relative;
  z-index: 2;
  /* keep your existing strip styles below this */
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sky-blue);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::after {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--sky-blue);
  flex-shrink: 0;
}
.hero-text h1 {
  font-family: "Figtree", serif;
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.4rem;
}
.hero-text h1 em {
  font-style: italic;
  color: var(--sky-blue);
}
.hero-tagline {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.4rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}
.tag::after {
  content: "·";
  margin-left: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}
.tag:last-child::after {
  display: none;
}
.hero-text p {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  max-width: 460px;
  line-height: 1.8;
  margin-bottom: 2.4rem;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.btn-primary {
  background: var(--sky-blue);
  color: var(--white);
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  /* text-transform: uppercase; */
  text-decoration: none;
  border: 2px solid var(--sky-blue);
  border-radius: 10px;
  transition:
    background 0.2s,
    transform 0.15s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  /* text-transform: uppercase; */
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  transition:
    border-color 0.2s,
    color 0.2s,
    transform 0.15s;
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--sky-blue);
  color: var(--sky-blue);
  transform: translateY(-2px);
}
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}
.portrait-wrap {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #1e3a66 0%, #0d1e3a 100%);
  border: 1px solid rgba(196, 165, 90, 0.25);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.portrait-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(27, 58, 107, 0.7));
}
.portrait-icon {
  font-size: 5rem;
  opacity: 0.15;
}
.portrait-note {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1rem;
}
.hero-strip {
  grid-column: 1/-1;
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
  margin-top: 1rem;
}
.strip-item {
  flex: 1;
  padding: 1.8rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.strip-item:last-child {
  border-right: none;
}
.strip-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.4rem;
}
.strip-value {
  font-family: "Figtree", serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.strip-value span {
  color: var(--sky-blue);
}

/* SECTION HELPERS */
.section-wrap {
  padding: 6rem 6%;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}
.section-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.section-title {
  font-family: "Figtree", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--sky-blue);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.section-title.light {
  color: var(--white);
}
.section-sub {
  font-size: 1rem;
  color: var(--grey);
  max-width: 550px;
  line-height: 1.75;
  margin-bottom: 3rem;
}

/* ABOUT */
#about {
  background: var(--warm);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: stretch;
}
.about-img-wrap {
  position: relative;
  align-self: stretch;
  overflow: hidden;
  min-height: 0;
  background-image: url("../images/bg_about_image.png");
  background-size: cover;
  background-position: center top;
}

.about-img {
  object-fit: cover;
  object-position: center top;
  width: 100%;
  height: 100%;
  max-height: 100%;
  display: block;
}

@media (min-width: 1440px) {
  .about-img-wrap {
    min-height: 800px;
    background-position: center 10%;
  }
}
/* .about-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--gold);
  border-radius: 2px;
  z-index: 0;
} */
.about-content {
  position: relative;
  z-index: 1;
}
.about-content p {
  font-size: 0.98rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-content strong {
  color: var(--sky-blue);
}
.about-quote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: rgba(196, 165, 90, 0.06);
  border-radius: 0 3px 3px 0;
}
.about-quote p {
  font-family: "Figtree", serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--sky-blue);
  line-height: 1.5;
  margin: 0;
}
.about-pillars {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.about-pill {
  background: var(--sky-blue);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
}

/* ISSUES */
#issues {
  background: var(--white);
}
.issues-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.issue-card {
  border: 1px solid var(--border);
  border-top: 3px solid var(--sky-blue);
  padding: 2rem;
  border-radius: 0 0 3px 3px;
  transition:
    border-top-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
  background: var(--white);
}
.issue-card:hover {
  border-top-color: var(--red);
  box-shadow: 0 10px 40px rgba(27, 58, 107, 0.1);
  transform: translateY(-3px);
}
.issue-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.issue-card h3 {
  font-family: "Figtree", serif;
  font-size: 1.15rem;
  color: var(--sky-blue);
  margin-bottom: 0.6rem;
}
.issue-card p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.65;
}

/* TAD-DIB */
/* #taddib {
  background: var(--navy);
  padding: 6rem 6%;
}
.taddib-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.taddib-content .section-label {
  color: var(--gold);
}
.taddib-content .section-label::before {
  background: var(--gold);
}
.taddib-content .section-title {
  color: var(--white);
}
.taddib-content p {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.taddib-content strong {
  color: var(--gold);
}
.taddib-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  align-self: start;
}
.tstat {
  background: rgba(255, 255, 255, 0.04);
  padding: 1.8rem;
}
.tstat-num {
  font-family: "Figtree", serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.tstat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.4rem;
}
.taddib-roads {
  margin-top: 1.5rem;
  padding: 1.2rem 1.5rem;
  background: rgba(200, 16, 46, 0.12);
  border-left: 3px solid var(--red);
  border-radius: 0 3px 3px 0;
}
.taddib-roads p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin: 0;
}
.taddib-roads strong {
  color: var(--white);
} */

/* PLAN */
#plan {
  background: var(--warm);
}
.weeks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.week-card {
  background: var(--white);
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.week-card:hover {
  box-shadow: 0 8px 30px rgba(27, 58, 107, 0.1);
}
.week-header {
  background: var(--sky-blue);
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.week-num {
  font-family: "Figtree", serif;
  font-size: 2rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
}
.week-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}
.week-img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  max-height: 300px;
  margin-bottom: 1vh;
  background: linear-gradient(160deg, #c5d0e4 0%, #8fa3c2 100%);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(27, 58, 107, 0.3);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}
.week-img.tenpercent {
  object-position: center 10%;
}
.week-body {
  padding: 1.5rem;
}
.week-theme {
  font-family: "Figtree", serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.week-mission {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.65;
}
.week-link {
  color: var(--sky-blue);
  font-weight: 700;
  text-decoration: none;
  display: block;
  transition: color 0.3s;
}
.week-link:hover {
  color: var(--red-dark);
}

/* VOICES */
/* #voices {
  background: var(--white);
}
.voices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.voice-card {
  padding: 2rem;
  border-bottom: 3px solid var(--red);
  background: var(--warm);
  border-radius: 3px 3px 0 0;
}
.voice-card p {
  font-size: 0.97rem;
  color: var(--navy-dark);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.2rem;
}
.voice-author {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.voice-role {
  font-size: 0.78rem;
  color: var(--grey);
} */

/* CONTACT */
#contact {
  background: var(--sky-blue);
  padding: 6rem 6%;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 5rem;
  align-items: start;
}
.contact-info .section-label {
  color: var(--navy-dark);
}
.contact-info .section-label::before {
  background: var(--navy-dark);
}
.contact-info .section-title {
  color: var(--white);
  font-size: 2.4rem;
}
.contact-info > p {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin: 1.2rem 0 2.5rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.cicon {
  font-size: 1.1rem;
  margin-top: 0.1rem;
}
.ctext {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}
.ctext a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}
.ctext a:hover {
  text-decoration: underline;
}
.social-row {
  display: flex;
  gap: 0.8rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.social-btn {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.social-btn:hover {
  background: var(--navy-dark);
  color: var(--white);
  border-color: var(--navy-dark);
}
.contact-form-wrap {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 3px;
}
.contact-form-wrap h3 {
  font-family: "Figtree", serif;
  font-size: 1.5rem;
  color: var(--sky-blue);
  margin-bottom: 0.3rem;
}
.contact-form-wrap > p {
  font-size: 0.88rem;
  color: var(--grey);
  margin-bottom: 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.1rem;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky-blue);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  padding: 0.7rem 1rem;
  font-family: "Figtree", sans-serif;
  font-size: 0.93rem;
  color: var(--navy-dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
}
.form-check input {
  width: auto;
  margin-top: 4px;
  accent-color: var(--red);
  flex-shrink: 0;
}
.form-check label {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.55;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.btn-submit {
  width: 100%;
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  font-family: "Figtree", sans-serif;
}
.btn-submit:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}
.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
}
.form-success .check {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.form-success h4 {
  font-family: "Figtree", serif;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.form-success p {
  font-size: 0.9rem;
  color: var(--grey);
}

/* FOOTER */
footer {
  background: #08152a;
  padding: 2rem 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(196, 165, 90, 0.2);
}
.footer-logo img {
  height: 32px;
  width: auto;
}
/* .footer-logo {
  font-family: "Figtree", serif;
  font-size: 1rem;
  font-weight: 900;
  color: var(--white);
}
.footer-logo span {
  color: var(--gold);
} */
footer p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--gold);
}

/* RESPONSIVE */
@media (max-width: 960px) {
  #hero {
    min-height: 60vh;
  }

  /*#hero {
    grid-template-columns: 1fr;
    padding-top: 6rem;
  }
  #hero {
    justify-content: flex-start;
    padding-top: 6rem;
  }

  #hero .bg-overlay {
    background: linear-gradient(
      to bottom,
      rgba(10, 22, 40, 0.4) 0%,
      rgba(10, 22, 40, 0.85) 55%
    );
  }

  .hero-text {
    margin-top: 45vh;
  }
  .hero-visual {
    display: none;
  }
  .hero-strip {
    flex-wrap: wrap;
  }*/
}
@media (max-width: 580px) {
  #hero {
    justify-content: flex-start;
    padding-top: 5rem;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-text {
    margin-left: 0;
    text-align: left;
  }

  .hero-eyebrow::before {
    display: block;
  }

  .hero-eyebrow::after {
    display: none;
  }

  .hero-buttons {
    justify-content: flex-start;
  }
  .hero-tagline {
    justify-content: flex-start;
  }

  #hero .bg-image {
    display: none;
    position: relative;
    width: 100%;
    height: 55vw;
    object-fit: cover;
    object-position: center top;
    z-index: 2;
  }

  #hero .bg-overlay {
    display: none;
  }

  .hero-text {
    margin-top: 0;
    padding: 2rem 6%;
    z-index: 2;
  }

  .hero-strip {
    padding-left: 6%;
    padding-right: 6%;
  }
  .strip-item {
    min-width: 50%;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-img-wrap {
    height: 40vh;
  }
  /* .about-img-wrap {
    display: none;
  } */
  .issues-grid {
    grid-template-columns: 1fr;
  }
  .taddib-inner {
    grid-template-columns: 1fr;
  }
  .weeks-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  nav ul {
    display: none;
  }
}
@media (max-width: 580px) {
  .weeks-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero-strip {
    padding-left: 0%;
    padding-right: 0%;
    flex-direction: column;
    border-top: none;
    margin-top: -5vh;
  }
  .strip-item {
    min-width: 100%;
  }
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-text > * {
  animation: fadeUp 0.65s ease both;
}
.hero-eyebrow {
  animation-delay: 0.1s;
}
.hero-text h1 {
  animation-delay: 0.2s;
}
.hero-tagline {
  animation-delay: 0.3s;
}
.hero-text p {
  animation-delay: 0.38s;
}
.hero-buttons {
  animation-delay: 0.48s;
}
