/* RESET */
:root {
  --bg: #000000;
  --text: #ffffff;
  --green: #2ea86b;      /* brighter forest */
  --green-dark: #1f7a4a;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background:
    radial-gradient(900px 600px at 15% 5%, rgba(46,168,107,0.18), transparent 60%),
    radial-gradient(800px 500px at 85% 10%, rgba(255,255,255,0.08), transparent 55%),
    radial-gradient(900px 650px at 50% 100%, rgba(46,168,107,0.10), transparent 60%),
    #000;
  color: #fff;
}


/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  padding: 15px 25px;
  border-bottom: 2px solid #0b3d2e;
}

.logo {
  height: 120px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #1a1a1a;
  padding: 10px;
  list-style: none;
  top: 25px;
  border-radius: 6px;
}

.dropdown-content li {
  padding: 6px 10px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* HERO SECTION */
.hero {
  padding: 80px 40px;
}

.hero{
  padding-bottom: 35px;
}

.hero h1 {
  color: var(--green);
  font-weight: 800;
  letter-spacing: 1px;
}

.hero p {
  max-width: 600px;
  line-height: 1.6;
}

.hero {
  padding: 70px 20px 30px;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: center;
}

.hero-kicker {
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  margin: 0 0 14px;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}

.hero-media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.hero-photo {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin: 12px 0 18px 0;
}

.trust-bar {
  padding: 18px 20px 40px;
}

.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.trust-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 14px 16px;
}

.trust-number {
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 4px;
  color: var(--accent, #2fb673);
}

.trust-label {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo { height: 280px; }
  .trust-inner { grid-template-columns: 1fr; }
}

.buttons {
  margin-top: 25px;
}

.btn-primary{
  box-shadow: 0 12px 30px rgba(46,168,107,0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(46,168,107,0.35);
}

.btn-secondary {
  border: 2px solid white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  color: white;
}

html {
  scroll-behavior: smooth;
}

/* SECTION DEPTH */
.section{
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 20px;
}

.section{
  border-top: 1px solid rgba(255,255,255,0.06);
}
.section:first-of-type{
  border-top: none;
}

.section h2{
  margin-top: 0;
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.5px;
}

.section p{
  color: rgba(255,255,255,0.88);
}

/* PROGRAMS SECTION */
.section-subtitle{
  margin-top: 8px;
  color: rgba(255,255,255,0.85);
  max-width: 720px;
}

.program-grid{
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.program-card{
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.program-card:hover{
  transform: translateY(-3px);
  border-color: rgba(46,168,107,0.45);
}

.program-card h3{
  margin: 0 0 10px;
  color: var(--text);
  font-weight: 800;
}

.program-card p{
  margin: 0 0 12px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.program-card ul{
  margin: 0 0 14px;
  padding-left: 18px;
  color: rgba(255,255,255,0.80);
}

.program-card li{
  margin: 6px 0;
}

.card-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* BUTTONS (if you don’t already have them) */
.btn{
  display: inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
}

.btn-primary{
  background: var(--green);
  color: #fff;
  border: 1px solid rgba(0,0,0,0.2);
}

.btn-primary:hover{
  background: var(--green-dark);
}

.btn-secondary{
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
}

.btn-secondary:hover{
  border-color: rgba(46,168,107,0.55);
  color: #fff;
}

.page-wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 18px;
}

.page-title{
  margin: 0;
  font-size: 40px;
}

.cta-section{
  margin: 60px auto 40px;
  padding: 50px 30px;
  text-align: center;
  background: linear-gradient(135deg, rgba(46,168,107,0.15), rgba(0,0,0,0.9));
  border: 1px solid rgba(46,168,107,0.4);
  border-radius: 20px;
  max-width: 900px;
}

.cta-section h2{
  margin-top: 0;
  font-size: 32px;
  color: var(--green);
}

.cta-section p{
  max-width: 600px;
  margin: 15px auto 25px;
  color: rgba(255,255,255,0.85);
}

.programs h1{
  color: var(--green);
}

.page-title{
  color: var(--green);
}

/* ===== PERFORMANCE PILLARS ===== */

.pillars {
  text-align: center;
}

.section-title{
  color: var(--green);
  margin-bottom: 10px;
}

.pillar-grid{
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 500px){
  .pillar-grid{
    grid-template-columns: 1fr;
  }
}

.pillar-card{
  padding: 28px 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.pillar-card:hover{
  transform: translateY(-6px);
  border-color: rgba(46,168,107,0.55);
}

.pillar-card:hover{
  transform: translateY(-4px);
  border-color: rgba(46,168,107,0.5);
}

.pillar-card h3{
  margin-top: 0;
  font-weight: 700;
}

.pillar-card p{
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.gallery-feature {
  margin-top: 20px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
  padding: 20px;
}

.gallery-feature-img {
  width: 100%;
  max-width: 800px;
  height: 450px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: 14px;
}

.section-title{
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width: 70%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), transparent);
}

.hero{
  padding: 80px 0 40px;
  position: relative;
  z-index: 2;
}

.training-moments{
  padding: 30px 0 80px;
  position: relative;
  z-index: 1;
}

/* TESTIMONIALS */

.testimonial-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  padding: 24px 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  line-height: 1.6;
}

.testimonial-card p {
  color: rgba(255,255,255,0.9);
}

.testimonial-author {
  display: block;
  margin-top: 14px;
  font-weight: 700;
  color: var(--green);
}

/* Mobile */

@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}


/* SECTION SPACING + DIVIDERS */
.section {
  padding: 90px 0;
}

.section--divider {
  border-top: 1px solid rgba(42, 168, 114, 0.25); /* adjust to your green */
}

.center { text-align: center; }

/* SPLIT LAYOUT (LEFT / RIGHT VARIETY) */
.split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.split-right .split-media {
  order: 2;
}

.split-right .split-copy {
  order: 1;
}

.split-media {
  flex: 1;
  display: flex;
  justify-content: center;
}

.split-copy {
  flex: 1;
}

.split-copy .section-title {
  margin-bottom: 20px;
}

.split-copy .section-subtitle {
  margin-bottom: 18px;
}

.checklist {
  margin: 20px 0;
  padding-left: 22px;
}

.checklist li {
  margin-bottom: 14px;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.split-img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* CHECKLIST */
.checklist{
  margin: 0 0 24px;
  padding-left: 22px;
  display: grid;
  gap: 12px;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .split,
  .split--right {
    grid-template-columns: 1fr;
  }
  .split-media, .split-copy { order: initial; }
  .split-img { height: 260px; }
}

@media (max-width: 768px) {
  .split {
    flex-direction: column;
    text-align: center;
  }

  .split-right .split-media {
    order: 1;
  }

  .split-right .split-copy {
    order: 2;
  }

  .hero-actions {
    justify-content: center;
  }
}
.about-hero {
  text-align: center;
}

.about-photo-wrap {
  margin-top: 30px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}

.about-main-photo {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.about-story {
  max-width: 900px;
}

.about-story p {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  margin-bottom: 18px;
}
/* FLAG FOOTBALL PAGE */

.flag-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.82)),
    url("flag-football-hero.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.flag-hero-content {
  max-width: 850px;
}

.hero-text {
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 760px;
  margin: 1rem 0 2rem;
  color: #e5e5e5;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.highlight-card {
  border-left: 4px solid #2f8f46;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.check-list li {
  margin-bottom: 0.8rem;
  padding-left: 1.7rem;
  position: relative;
  line-height: 1.5;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2f8f46;
  font-weight: 700;
}

.dark-section {
  background: #0f0f0f;
  color: #fff;
}

.dark-section p {
  color: #d6d6d6;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.info-card,
.card,
.timeline-card,
.quote-card {
  background: #fff;
  color: #111;
  padding: 1.7rem;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.dark-section .info-card,
.dark-section .card {
  background: #181818;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
}

.dark-section .info-card p,
.dark-section .card p {
  color: #d6d6d6;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.timeline-label {
  display: inline-block;
  background: #2f8f46;
  color: #fff;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.quote-card {
  background: #111;
  color: #fff;
  border-left: 4px solid #2f8f46;
}

.quote-card p {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #f2f2f2;
}

.quote-card span {
  display: block;
  margin-top: 1rem;
  color: #2f8f46;
  font-weight: 700;
}

.cta-section {
  background: #f5f5f5;
}

.cta-box {
  background: #111;
  color: #fff;
  padding: 3rem;
  border-radius: 24px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.cta-box p {
  color: #e0e0e0;
  max-width: 720px;
  margin: 0 auto 2rem;
}

@media (max-width: 900px) {
  .cards-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .flag-hero {
    min-height: 60vh;
  }
}

@media (max-width: 600px) {
  .cards-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions a {
    width: 100%;
    text-align: center;
  }
}/* ================================
   CLUB FLAG FOOTBALL PAGE
================================ */

.logo img {
  height: 110px;
  width: auto;
  display: block;
}

.nav-links a.active {
  color: #2f8f46;
}

.flag-hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(to right, rgba(0,0,0,0.88), rgba(0,0,0,0.45)),
    url("gallery-27.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.flag-hero-content {
  max-width: 850px;
}

.hero-text {
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 760px;
  margin: 1rem 0 2rem;
  color: #e5e5e5;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.flag-card,
.info-card,
.timeline-card,
.quote-card {
  background: #fff;
  color: #111;
  padding: 1.7rem;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.highlight-card {
  border-left: 4px solid #2f8f46;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.check-list li {
  margin-bottom: 0.8rem;
  padding-left: 1.7rem;
  position: relative;
  line-height: 1.5;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2f8f46;
  font-weight: 700;
}

.dark-section {
  background: #0f0f0f;
  color: #fff;
}

.dark-section p {
  color: #d6d6d6;
}

.dark-card,
.dark-section .info-card {
  background: #181818;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
}

.dark-card p,
.dark-section .info-card p {
  color: #d6d6d6;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.timeline-label {
  display: inline-block;
  background: #2f8f46;
  color: #fff;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.quote-card {
  background: #111;
  color: #fff;
  border-left: 4px solid #2f8f46;
}

.quote-card p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #f2f2f2;
}

.quote-card span {
  display: block;
  margin-top: 1rem;
  color: #2f8f46;
  font-weight: 700;
}

.cta-section {
  background: #f5f5f5;
}

.cta-box {
  background: #111;
  color: #fff;
  padding: 3rem;
  border-radius: 24px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.cta-box p {
  color: #e0e0e0;
  max-width: 720px;
  margin: 0 auto 2rem;
}

@media (max-width: 900px) {
  .cards-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .flag-hero {
    min-height: 62vh;
  }
}

@media (max-width: 600px) {
  .cards-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions a {
    width: 100%;
    text-align: center;
  }

  .logo img {
    height: 42px;
  }
}.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-primary {
  background: #2f8f46;
  color: #fff;
}

.btn-primary:hover {
  background: #256f36;
}

.btn-outline {
  border: 1px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #111;
}
.coach-image-section {
  margin-top: -80px;
  position: relative;
  z-index: 2;
}
/* FLAG PAGE BUTTON FIX */

.flag-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
  transition: 0.25s ease;
}

.flag-btn-primary {
  background: #2f8f46;
  color: #ffffff;
  border: 2px solid #2f8f46;
}

.flag-btn-primary:hover {
  background: #ffffff;
  color: #111111;
  border-color: #ffffff;
}

.flag-btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.75);
}

.flag-btn-outline:hover {
  background: #ffffff;
  color: #111111;
  border-color: #ffffff;
}

/* FLAG PAGE PHOTO FIX */

.flag-photo-section {
  background: #0f0f0f;
  padding: 40px 20px 70px;
}

.flag-photo-wrap {
  max-width: 950px;
  margin: 0 auto;
}

.flag-photo-wrap img {
  width: 85%;
  max-width: 800px;
  max-height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0 auto;

  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);

 .flag-photo-wrap img {
  width: 75%;
  max-width: 750px;
  height: auto;
  display: block;
  margin: 0 auto;

  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}
}

.flag-photo-wrap img:hover {
  transform: rotate(900px) scale(1.02);
}


/* MOBILE FIX */

@media (max-width: 600px) {
  .flag-btn {
    width: 100%;
  }

  .flag-photo-wrap img {
    max-height: 360px;
  }
}.founding-card {
  max-width: 800px;
  margin: 0 auto;
}

.price-highlight {
  margin: 20px 0;
  color: #2f8f46;
  font-size: 2.2rem;
}
.contact-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 20px;
  background: #111;
  color: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  text-align: center;
}

.contact-methods {
  margin: 20px 0;
  font-size: 1.1rem;
}

.contact-methods a {
  color: #2f8f46;
  text-decoration: none;
  font-weight: 600;
}

.contact-methods a:hover {
  text-decoration: underline;
}

.contact-note {
  margin-top: 15px;
  color: #ccc;
  font-size: 0.95rem;
}
/* NAV CTA BUTTON */

.nav-cta {
  background: #2f8f46;
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  margin-left: 10px;
  transition: 0.25s ease;
}

.nav-cta:hover {
  background: #256f36;
  color: #fff;
}
/* Mobile fixes */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .container,
  .section,
  .hero,
  .split,
  .programs-grid,
  .cards-grid {
    width: 100%;
    max-width: 100%;
  }

  .hero {
    padding: 80px 20px 50px;
    text-align: center;
  }

  .hero h1,
  .page-title {
    font-size: 2.2rem;
    line-height: 1.1;
  }

  .hero p,
  .section p {
    font-size: 1rem;
  }

  .split {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .split img,
  .about-main-photo,
  .hero-img,
  .carousel img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
  }

  .programs-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .nav,
  .navbar,
  .nav-links {
    flex-wrap: wrap;
  }

  .nav-links {
    gap: 12px;
    justify-content: center;
  }

  .nav-links a {
    font-size: 0.95rem;
  }

  .btn,
  .start-now-btn {
    width: 100%;
    text-align: center;
  }
}/* MOBILE RESPONSIVE FIXES */

@media (max-width: 768px) {

  .navbar {
    padding: 18px 20px;
    flex-wrap: wrap;
    gap: 16px;
  }

  .logo {
    max-width: 160px;
    height: auto;
  }

  .nav-links {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    padding: 0;
    margin: 10px 0 0;
  }

  .nav-links li {
    list-style: none;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .nav-cta {
    display: inline-block;
    margin: 8px auto 0;
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: auto;
    padding: 90px 20px 60px;
  }

  .hero-copy h1 {
    font-size: 2.4rem;
    line-height: 1.1;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .hero-badges {
    flex-direction: column;
    align-items: stretch;
  }

  .split,
  .container.split,
  .split--right {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .split-media,
  .split-copy {
    width: 100%;
  }

  .split-img,
  .gallery-feature-img img,
  img.gallery-feature-img {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
  }

  .testimonial-grid,
  .pillar-grid,
  .program-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }
}@media (max-width: 480px) {
  .hero-copy h1 {
    font-size: 2rem;
  }

  .logo {
    max-width: 140px;
  }

  .nav-links {
    gap: 10px;
  }
}