/* ==========================================================================
   Flatirons Community Orchestra - Main Theme CSS
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Inter:wght@400;500;600;700&family=Kalam:wght@400;700&family=Montserrat:wght@500;600;700;800;900&display=swap');

/* --- BUTTONS & CTAs --- */
.fco-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
  line-height: 1.2;
}

.fco-btn:hover {
  transform: translateY(-2px);
}

.fco-btn-yellow {
  background-color: var(--fco-yellow);
  color: var(--fco-navy);
  border-color: var(--fco-yellow);
  box-shadow: 0 4px 14px rgba(255, 199, 44, 0.4);
}

.fco-btn-yellow:hover {
  background-color: var(--fco-yellow-hover);
  border-color: var(--fco-yellow-hover);
  color: var(--fco-navy-dark);
  box-shadow: 0 6px 18px rgba(255, 199, 44, 0.55);
}

.fco-btn-teal {
  background-color: var(--fco-teal);
  color: var(--fco-white);
  border-color: var(--fco-teal);
  box-shadow: 0 4px 14px rgba(14, 124, 123, 0.3);
}

.fco-btn-teal:hover {
  background-color: var(--fco-teal-hover);
  border-color: var(--fco-teal-hover);
  color: var(--fco-white);
  box-shadow: 0 6px 18px rgba(14, 124, 123, 0.45);
}

.fco-btn-purple {
  background-color: var(--fco-purple);
  color: var(--fco-white);
  border-color: var(--fco-purple);
  box-shadow: 0 4px 14px rgba(126, 87, 194, 0.3);
}

.fco-btn-purple:hover {
  background-color: var(--fco-purple-hover);
  border-color: var(--fco-purple-hover);
  color: var(--fco-white);
  box-shadow: 0 6px 18px rgba(126, 87, 194, 0.45);
}

.fco-btn-navy {
  background-color: var(--fco-navy);
  color: var(--fco-white);
  border-color: var(--fco-navy);
}

.fco-btn-navy:hover {
  background-color: var(--fco-navy-light);
  border-color: var(--fco-navy-light);
  color: var(--fco-white);
}

.fco-btn-outline-navy {
  background-color: #FFFFFF;
  color: var(--fco-navy);
  border-color: var(--fco-navy);
  box-shadow: 0 2px 8px rgba(0, 27, 42, 0.08);
}

.fco-btn-outline-navy:hover {
  background-color: #FFFFFF;
  color: var(--fco-teal);
  border-color: var(--fco-teal);
  box-shadow: 0 6px 18px rgba(14, 124, 123, 0.25);
  transform: translateY(-2px);
}

.fco-btn-outline-teal {
  background-color: transparent;
  color: var(--fco-teal);
  border-color: var(--fco-teal);
}

.fco-btn-outline-teal:hover {
  background-color: var(--fco-teal);
  color: var(--fco-white);
}

.fco-btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* --- HEADER & NAVIGATION --- */
.fco-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 27, 42, 0.08);
  z-index: 1000;
  transition: all var(--transition-normal);
}

.fco-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.fco-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.fco-brand-logo {
  height: 38px;
  width: auto;
  flex-shrink: 0;
}

.fco-brand-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  line-height: 1.15;
  color: var(--fco-navy);
  text-transform: uppercase;
}

.fco-desktop-nav {
  display: none;
}

@media (min-width: 1024px) {
  .fco-desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
  }
}

.fco-nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 22px;
  margin: 0;
  padding: 0;
}

.fco-nav-item {
  position: relative;
}

.fco-nav-link {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fco-navy);
  padding: 10px 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition-fast);
}

.fco-nav-link:hover,
.fco-nav-item:hover > .fco-nav-link {
  color: var(--fco-teal);
}

.fco-nav-caret {
  font-size: 0.7rem;
  transition: transform var(--transition-fast);
}

.fco-nav-item:hover .fco-nav-caret,
.fco-nav-item:focus-within .fco-nav-caret {
  transform: rotate(180deg);
}

/* Dropdown Menus */
.fco-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: var(--fco-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  border: 1px solid var(--fco-gray-200);
}

.fco-nav-item:hover .fco-dropdown,
.fco-nav-item:focus-within .fco-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fco-dropdown-link {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fco-navy);
  text-transform: none;
}

.fco-dropdown-link:hover {
  background-color: var(--fco-teal-soft);
  color: var(--fco-teal);
  padding-left: 24px;
}

.fco-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.fco-btn-donate {
  padding: 10px 22px;
  font-size: 0.88rem;
}

.fco-mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

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

.fco-mobile-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--fco-navy);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.fco-mobile-toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.fco-mobile-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.fco-mobile-toggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Drawer */
.fco-mobile-drawer {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background-color: var(--fco-white);
  padding: 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
  z-index: 999;
  border-top: 1px solid var(--fco-gray-200);
}

.fco-mobile-drawer.is-open {
  transform: translateX(0);
}

.fco-mobile-nav-list {
  list-style: none;
  margin-bottom: 30px;
}

.fco-mobile-nav-item {
  border-bottom: 1px solid var(--fco-gray-200);
}

.fco-mobile-nav-link {
  display: block;
  padding: 16px 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fco-navy);
}

.fco-mobile-sublist {
  list-style: none;
  padding-left: 16px;
  padding-bottom: 12px;
}

.fco-mobile-sublink {
  display: block;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--fco-gray-700);
}

/* --- ACCESSIBILITY SKIP LINK --- */
.fco-skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--fco-yellow);
  color: var(--fco-navy);
  font-family: var(--font-heading);
  font-weight: 800;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  z-index: 10000;
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  transition: top 0.2s ease;
}

.fco-skip-link:focus {
  top: 20px;
  outline: 3px solid var(--fco-teal);
}

/* --- SECTION 1: HERO SECTION --- */
.fco-hero-section {
  background-color: var(--fco-cream);
  background-image: radial-gradient(rgba(14, 124, 123, 0.035) 1px, transparent 1px), radial-gradient(rgba(0, 27, 42, 0.02) 1px, var(--fco-cream) 1px);
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px;
  padding-top: 36px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

/* Far Left Playful Teal Brush Splash */
.fco-hero-left-brush {
  position: absolute;
  left: 0;
  top: 15%;
  width: 110px;
  height: auto;
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
}

@media (min-width: 1200px) {
  .fco-hero-left-brush {
    width: 140px;
    top: 10%;
  }
}

.fco-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .fco-hero-grid {
    grid-template-columns: 1.05fr 1.15fr;
    gap: 32px;
  }
}

.fco-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
}

.fco-hero-heading-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.fco-hero-title {
  font-size: 2.6rem;
  line-height: 1.06;
  font-weight: 900;
  margin-bottom: 0;
  text-align: center;
  width: 100%;
}

@media (min-width: 768px) {
  .fco-hero-title {
    font-size: 3.4rem;
  }
}

@media (min-width: 1200px) {
  .fco-hero-title {
    font-size: 4.0rem;
  }
}

.fco-hero-title .title-dark {
  color: var(--fco-navy);
  display: block;
}

.fco-hero-title .title-teal {
  color: var(--fco-teal);
  display: block;
}

/* Mountain Wave Mark Headline Separator */
.fco-hero-title-separator {
  margin-top: 14px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.fco-hero-mountain-separator {
  width: 140px;
  height: auto;
  display: block;
  filter: drop-shadow(0 3px 8px rgba(255, 199, 44, 0.3));
  transition: transform 0.3s ease;
}

.fco-hero-mountain-separator:hover {
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .fco-hero-title-separator {
    margin-top: 16px;
    margin-bottom: 22px;
  }
  .fco-hero-mountain-separator {
    width: 170px;
  }
}

@media (min-width: 1200px) {
  .fco-hero-mountain-separator {
    width: 195px;
  }
}

.fco-hero-subhead {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--fco-gray-700);
  margin-bottom: 8px;
  text-align: center;
}

.fco-hero-tagline {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 700;
  color: var(--fco-teal);
  font-size: 1.35rem;
  margin-bottom: 26px;
  letter-spacing: 0.01em;
  text-align: center;
}

.fco-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 4;
}

/* Hero Media with Smooth Gradient Fade-Out Transition */
.fco-hero-media-wrapper {
  position: relative;
  z-index: 2;
}

/* --- Hero Next Performance Card --- */
.fco-hero-next-card {
  background-color: var(--fco-white);
  border-radius: var(--radius-xl);
  padding: 24px 26px;
  box-shadow: 0 14px 34px rgba(0, 27, 42, 0.12);
  border: 1px solid rgba(0, 27, 42, 0.07);
  position: relative;
  transition: all var(--transition-normal);
}

.fco-hero-next-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(0, 27, 42, 0.16);
}

.fco-hero-next-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.fco-hero-next-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--fco-teal);
  color: var(--fco-white);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
}

.fco-hero-next-date-pill {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--fco-navy);
  background-color: #FFE57F;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.fco-hero-next-media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  background-color: #FAFAFA;
  border: 1px solid rgba(0, 27, 42, 0.06);
}

.fco-hero-next-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.fco-hero-next-card:hover .fco-hero-next-media img {
  transform: scale(1.04);
}

.fco-hero-next-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--fco-navy);
  margin-bottom: 10px;
  text-transform: uppercase;
  line-height: 1.2;
}

.fco-hero-next-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.fco-hero-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--fco-gray-700);
}

.fco-hero-meta-row svg {
  width: 18px;
  height: 18px;
  color: var(--fco-teal);
  flex-shrink: 0;
}

.fco-hero-next-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 27, 42, 0.08);
}

.fco-hero-stage-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-radius: 18px;
  background-color: var(--fco-navy);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

@media (min-width: 992px) {
  .fco-hero-stage-card {
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
  }
}

.fco-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.6s ease;
}

.fco-hero-stage-card:hover .fco-hero-image {
  transform: scale(1.03);
}

/* Organic Painterly Teal Badge */
.fco-hero-badge {
  position: absolute;
  bottom: 20px;
  right: 15px;
  background: url('../images/hero-badge-splash.svg') no-repeat center center;
  background-size: 100% 100%;
  color: var(--fco-white);
  padding: 24px 34px 20px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(4deg);
  animation: gentle-float 4s ease-in-out infinite alternate;
  z-index: 5;
  filter: drop-shadow(0 8px 18px rgba(0, 27, 42, 0.28));
}

@media (min-width: 768px) {
  .fco-hero-badge {
    bottom: 25px;
    right: 25px;
    padding: 28px 40px 24px 40px;
  }
}

@keyframes gentle-float {
  0% { transform: rotate(4deg) translateY(0px); }
  100% { transform: rotate(2deg) translateY(-6px); }
}

.fco-badge-text-top {
  font-family: var(--font-script);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.fco-badge-text-bottom {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-top: 3px;
}

.fco-badge-heart {
  font-size: 1.3rem;
  margin-top: 3px;
  color: var(--fco-yellow);
  line-height: 1;
}

/* --- PLAYFUL DOODLES ACROSS HOME PAGE --- */
.fco-doodle-floating {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  animation: playful-float 6s ease-in-out infinite alternate;
}

@keyframes playful-float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(2deg); }
  100% { transform: translateY(3px) rotate(-1deg); }
}

/* Floating Music Notes in Next Concert */
.fco-next-concert-music-doodle {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 58px;
  height: 58px;
  opacity: 0.85;
}

/* Hand-Drawn Circle under Free Concert */
.fco-free-concert-wrap {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 18px 6px 18px;
  z-index: 1;
}

.fco-hand-circle-doodle {
  position: absolute;
  top: -8px;
  left: -14px;
  width: calc(100% + 28px);
  height: calc(100% + 16px);
  pointer-events: none;
  z-index: -1;
}

/* Sparkle Star in Young Artists Panel */
.fco-panel-sparkle {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  pointer-events: none;
}

/* Lower Sticker on Play With Us Panel */
.fco-sticker-stamp-lower {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 175px;
  height: auto;
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 4px 12px rgba(0, 27, 42, 0.15));
  transition: transform 0.3s ease;
}

.fco-highlight-card:hover .fco-sticker-stamp-lower {
  transform: translateX(-50%) rotate(-1deg) scale(1.05);
}

/* Musical Accents on Value Props */
.fco-value-props-doodle {
  position: absolute;
  right: 30px;
  bottom: 15px;
  width: 65px;
  height: 65px;
  opacity: 0.6;
  pointer-events: none;
}

/* Save the Dates Handwritten Accent in Upcoming Concerts */
.fco-save-dates-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--fco-yellow-light);
  color: var(--fco-navy);
  border: 1px dashed rgba(0, 27, 42, 0.2);
  font-family: var(--font-script);
  font-size: 1.15rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-top: 16px;
  transform: rotate(-2deg);
}

/* --- SECTION 2: NEXT CONCERT --- */
.fco-next-concert-section {
  padding: 30px 0 70px;
}

.fco-next-concert-card {
  background-color: var(--fco-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 27, 42, 0.08);
  box-shadow: var(--shadow-md);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 992px) {
  .fco-next-concert-card {
    grid-template-columns: 1.2fr 1fr;
    padding: 44px 48px;
    gap: 44px;
  }
}

.fco-next-concert-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.fco-pill-tag {
  display: inline-block;
  background-color: #E6F6F5;
  color: var(--fco-teal);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.fco-next-concert-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--fco-navy);
  margin-bottom: 24px;
  line-height: 1.15;
}

@media (min-width: 768px) {
  .fco-next-concert-title {
    font-size: 2.35rem;
  }
}

.fco-meta-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.fco-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--fco-gray-800);
}

.fco-meta-icon {
  width: 22px;
  height: 22px;
  color: var(--fco-teal);
  flex-shrink: 0;
}

.fco-next-concert-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.fco-handwritten-note {
  font-family: var(--font-script);
  color: var(--fco-teal);
  font-size: 1.45rem;
  line-height: 1.2;
}

.fco-handwritten-note span {
  display: block;
  font-size: 1.1rem;
  color: var(--fco-gray-700);
}

.fco-next-concert-media {
  position: relative;
}

.fco-chamber-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 16 / 11;
  background-color: var(--fco-gray-100);
}

.fco-chamber-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fco-chamber-img-wrap:hover img {
  transform: scale(1.04);
}

.fco-sparkles-doodle {
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 36px;
  height: 36px;
  color: var(--fco-purple);
}

/* --- SECTION 3: UPCOMING CONCERTS --- */
.fco-upcoming-section {
  padding: 72px 0;
  background-color: var(--fco-white);
  border-top: 1px solid rgba(0, 27, 42, 0.06);
  border-bottom: 1px solid rgba(0, 27, 42, 0.06);
}

.fco-upcoming-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

@media (min-width: 992px) {
  .fco-upcoming-grid {
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
  }
}

.fco-upcoming-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.fco-confetti-accent {
  display: inline-flex;
  gap: 6px;
  margin-bottom: 8px;
}

.fco-confetti-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transition: transform var(--transition-fast);
}

.fco-confetti-accent:hover .fco-confetti-dot {
  transform: scale(1.3);
}

.fco-dot-yellow { background-color: var(--fco-yellow); }
.fco-dot-teal { background-color: var(--fco-teal); }
.fco-dot-purple { background-color: var(--fco-purple); }

.fco-section-heading {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--fco-navy);
  margin-bottom: 12px;
}

.fco-section-subheading {
  font-size: 1.05rem;
  color: var(--fco-gray-700);
  margin-bottom: 24px;
}

.fco-cards-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

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

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

.fco-concert-card {
  background-color: var(--fco-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0, 27, 42, 0.08);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.fco-concert-card:nth-child(1) {
  border-top: 4px solid var(--fco-teal);
}

.fco-concert-card:nth-child(2) {
  border-top: 4px solid var(--fco-yellow);
}

.fco-concert-card:nth-child(3) {
  border-top: 4px solid var(--fco-purple);
}

.fco-concert-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.fco-card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background-color: #F8F9FA;
  border-bottom: 1px solid rgba(0, 27, 42, 0.06);
  overflow: hidden;
}

.fco-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.fco-concert-card:hover .fco-card-media img {
  transform: scale(1.05);
}

.fco-date-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  color: var(--fco-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  line-height: 1;
}

.fco-date-badge .badge-month {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.fco-date-badge .badge-day {
  font-size: 1.15rem;
  margin-top: 2px;
}

.fco-date-badge.badge-teal { background-color: var(--fco-teal); }
.fco-date-badge.badge-yellow { background-color: var(--fco-yellow); color: var(--fco-navy); }
.fco-date-badge.badge-purple { background-color: var(--fco-purple); }

.fco-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.fco-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--fco-navy);
  margin-bottom: 8px;
}

.fco-card-location {
  font-size: 0.88rem;
  color: var(--fco-gray-500);
  margin-bottom: 6px;
}

.fco-card-datetime {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fco-gray-800);
  margin-bottom: 16px;
}

.fco-card-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--fco-gray-200);
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 10px !important;
  width: 100% !important;
}

.fco-card-price-wrap {
  display: block;
  width: 100%;
  text-align: left;
}

.fco-card-price {
  font-family: var(--font-script);
  font-size: 1.15rem;
  color: var(--fco-teal);
  font-weight: 700;
  line-height: 1.2;
  display: block;
}

.fco-card-action-wrap {
  display: block;
  width: 100%;
}

.fco-btn-calendar,
.fco-card-footer .fco-btn {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 10px 16px !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.03em !important;
  text-transform: uppercase !important;
  box-sizing: border-box !important;
  white-space: nowrap !important;
  border-radius: var(--radius-full) !important;
}

/* --- SECTION 4: VALUE PROPOSITIONS --- */
.fco-value-props-section {
  padding: 60px 0;
  background-color: var(--fco-white);
  border-top: 1px solid rgba(0, 27, 42, 0.06);
  border-bottom: 1px solid rgba(0, 27, 42, 0.06);
}

.fco-value-props-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

@media (min-width: 992px) {
  .fco-value-props-grid {
    grid-template-columns: 320px 1fr;
    gap: 48px;
  }
}

.fco-value-props-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fco-value-props-title {
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--fco-navy);
}

.fco-wavy-underline {
  width: 120px;
  height: 8px;
  color: var(--fco-purple);
}

.fco-value-items-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .fco-value-items-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fco-value-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fco-value-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fco-white);
  flex-shrink: 0;
}

.fco-value-icon-badge svg {
  width: 26px;
  height: 26px;
}

.fco-icon-teal { background-color: var(--fco-teal); }
.fco-icon-yellow { background-color: var(--fco-yellow); color: var(--fco-navy); }
.fco-icon-purple { background-color: var(--fco-purple); }

.fco-value-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--fco-navy);
  letter-spacing: 0.05em;
}

.fco-value-desc {
  font-size: 0.92rem;
  color: var(--fco-gray-700);
  line-height: 1.5;
}

.fco-value-btn-wrap {
  margin-top: auto;
  padding-top: 6px;
}

/* --- SECTION 5: THREE HIGHLIGHT PANELS --- */
.fco-highlights-section {
  padding: 80px 0;
}

.fco-highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

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

.fco-highlight-card {
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  min-height: 280px;
}

.fco-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.fco-panel-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.fco-panel-top-row .fco-panel-icon-circle {
  margin-bottom: 0;
}

.fco-panel-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.fco-panel-icon-circle svg {
  width: 24px;
  height: 24px;
}

.fco-panel-meta-pill {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.fco-pill-purple {
  background-color: rgba(126, 87, 194, 0.16);
  color: var(--fco-purple);
}

.fco-pill-teal {
  background-color: rgba(14, 124, 123, 0.16);
  color: var(--fco-teal);
}

.fco-pill-sage {
  background-color: rgba(14, 124, 123, 0.16);
  color: var(--fco-teal);
}

.fco-panel-icon-purple {
  background-color: rgba(126, 87, 194, 0.15);
  color: var(--fco-purple);
}

.fco-panel-icon-teal {
  background-color: rgba(14, 124, 123, 0.15);
  color: var(--fco-teal);
}

.fco-panel-icon-sage {
  background-color: rgba(14, 124, 123, 0.15);
  color: var(--fco-teal);
}

.fco-panel-action-wrap {
  margin-top: auto;
  padding-top: 14px;
}

/* Panel 1: Young Talent (Lavender) */
.fco-panel-purple {
  background-color: var(--fco-purple-soft);
  border: 1px solid rgba(126, 87, 194, 0.18);
}

.fco-panel-purple:hover {
  background-color: #F3ECFA;
}

.fco-panel-title-purple {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--fco-purple);
  margin-bottom: 6px;
  text-transform: uppercase;
  line-height: 1.15;
}

.fco-panel-subtitle-purple {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 600;
  color: #9C27B0;
  margin-bottom: 14px;
}

.fco-panel-desc {
  font-size: 0.92rem;
  color: var(--fco-gray-700);
  margin-bottom: 20px;
  line-height: 1.5;
}

.fco-panel-media-soloist {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  aspect-ratio: 16 / 12;
  box-shadow: var(--shadow-sm);
}

.fco-panel-media-soloist img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

/* Panel 2: Watch & Listen (Mint) */
.fco-panel-mint {
  background-color: var(--fco-teal-soft);
  border: 1px solid rgba(14, 124, 123, 0.18);
}

.fco-panel-mint:hover {
  background-color: #E2F5F3;
}

.fco-panel-title-navy {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--fco-navy);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.fco-video-thumb-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  aspect-ratio: 16 / 10;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  background-color: var(--fco-navy);
}

.fco-video-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: all var(--transition-normal);
}

.fco-video-thumb-wrap:hover img {
  transform: scale(1.05);
  opacity: 0.95;
}

.fco-video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fco-teal);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-fast);
}

.fco-video-play-btn svg {
  width: 24px;
  height: 24px;
  margin-left: 3px;
}

.fco-video-thumb-wrap:hover .fco-video-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  background-color: var(--fco-white);
  color: var(--fco-yellow);
}

/* Panel 3: Play With Us! (Light Teal/Sage) */
.fco-panel-sage {
  background-color: #F0F9F8;
  border: 1px solid rgba(14, 124, 123, 0.18);
}

.fco-panel-sage:hover {
  background-color: #E4F5F3;
}

.fco-panel-title-teal {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--fco-teal);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.fco-panel-art-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 165px;
  margin: 14px 0 16px;
}

.fco-illustrated-instrument {
  height: 160px;
  width: auto;
  filter: drop-shadow(0 6px 14px rgba(0, 27, 42, 0.1));
  transition: transform 0.4s ease;
}

.fco-highlight-card:hover .fco-illustrated-instrument {
  transform: rotate(2deg) scale(1.05);
}

/* --- SECTION 6: STAY IN TUNE (NEWSLETTER STRIP) --- */
.fco-newsletter-section {
  background-color: var(--fco-yellow);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.fco-newsletter-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 992px) {
  .fco-newsletter-grid {
    flex-direction: row;
    gap: 40px;
  }
}

.fco-newsletter-intro {
  display: flex;
  align-items: center;
  gap: 20px;
}

.fco-mail-icon-wrap {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fco-navy);
  flex-shrink: 0;
}

.fco-mail-icon-wrap svg {
  width: 48px;
  height: 48px;
}

.fco-newsletter-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--fco-navy);
  line-height: 1.1;
  text-transform: uppercase;
}

.fco-newsletter-title .fco-script-accent {
  font-family: var(--font-script);
  text-transform: none;
  font-size: 2.1rem;
  font-weight: 700;
  display: inline-block;
}

.fco-newsletter-sub {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fco-navy-dark);
}

.fco-newsletter-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  max-width: 520px;
  position: relative;
}

.fco-newsletter-form-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  position: relative;
}

.fco-newsletter-form {
  display: flex;
  width: 100%;
  background-color: var(--fco-white);
  border-radius: var(--radius-full);
  padding: 6px 6px 6px 20px;
  box-shadow: 0 4px 15px rgba(0, 27, 42, 0.12);
}

.fco-newsletter-input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 0.95rem;
  color: var(--fco-navy);
}

.fco-newsletter-input::placeholder {
  color: var(--fco-gray-500);
}

.fco-newsletter-reassurance {
  font-size: 0.8rem;
  color: var(--fco-navy-dark);
  opacity: 0.85;
  font-style: italic;
  padding-left: 20px;
}

.fco-doodle-arrow {
  width: 44px;
  height: auto;
  color: var(--fco-navy);
  display: none;
}

@media (min-width: 768px) {
  .fco-doodle-arrow {
    display: block;
  }
}

/* Toast Message */
.fco-toast {
  display: none;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 10px;
  animation: fadeIn 0.3s ease;
}

.fco-toast-success {
  background-color: #2E7D32;
  color: var(--fco-white);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- SECTION 7: GLOBAL FOOTER --- */
.fco-footer {
  background-color: var(--fco-navy);
  color: var(--fco-gray-300);
  padding: 70px 0 30px;
  font-size: 0.92rem;
}

.fco-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

@media (min-width: 992px) {
  .fco-footer-grid {
    grid-template-columns: 1.3fr 2.7fr;
    gap: 60px;
  }
}

.fco-footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.fco-footer-logo-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.fco-footer-logo-lockup img {
  height: 36px;
  width: auto;
}

.fco-footer-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--fco-white);
  line-height: 1.15;
  text-transform: uppercase;
}

.fco-footer-blurb {
  font-size: 0.92rem;
  color: #B0BEC5;
  line-height: 1.5;
  max-width: 320px;
}

.fco-social-links {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.fco-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fco-white);
  transition: all var(--transition-fast);
}

.fco-social-icon:hover {
  background-color: var(--fco-yellow);
  border-color: var(--fco-yellow);
  color: var(--fco-navy);
  transform: translateY(-2px);
}

.fco-social-icon svg {
  width: 18px;
  height: 18px;
}

.fco-footer-nav-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (min-width: 640px) {
  .fco-footer-nav-columns {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .fco-footer-nav-columns {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }
}

.fco-footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fco-white);
  margin-bottom: 16px;
}

.fco-footer-link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fco-footer-link-list a {
  color: #B0BEC5;
  font-size: 0.88rem;
  transition: color var(--transition-fast);
}

.fco-footer-link-list a:hover {
  color: var(--fco-yellow);
  padding-left: 2px;
}

.fco-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #90A4AE;
}

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

.fco-footer-legal a {
  color: #90A4AE;
  transition: color var(--transition-fast);
}

.fco-footer-legal a:hover {
  color: var(--fco-white);
}

/* --- VIDEO MODAL --- */
.fco-modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 18, 28, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.fco-modal-backdrop.is-active {
  opacity: 1;
  visibility: visible;
}

.fco-modal-content {
  background-color: var(--fco-navy-dark);
  border-radius: var(--radius-lg);
  max-width: 860px;
  width: 100%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform var(--transition-smooth);
}

.fco-modal-backdrop.is-active .fco-modal-content {
  transform: scale(1);
}

.fco-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--fco-white);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background var(--transition-fast);
}

.fco-modal-close:hover {
  background: var(--fco-coral);
}

.fco-modal-video-container {
  aspect-ratio: 16 / 9;
  width: 100%;
  background-color: #000;
}

.fco-modal-video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   SUBSIDIARY PAGE & CULTURAL EQUITY STATEMENT STYLES
   ========================================================================== */
.fco-page-header-banner {
  background: linear-gradient(180deg, rgba(254, 248, 231, 0.6) 0%, var(--fco-cream) 100%);
  padding: 48px 0 40px;
  position: relative;
  border-bottom: 1px solid rgba(0, 27, 42, 0.06);
}

.fco-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fco-gray-500);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.fco-breadcrumbs a {
  color: var(--fco-teal);
  transition: color var(--transition-fast);
}

.fco-breadcrumbs a:hover {
  color: var(--fco-teal-hover);
  text-decoration: underline;
}

.fco-breadcrumbs-separator {
  color: var(--fco-gray-300);
  font-size: 0.75rem;
}

.fco-page-hero-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--fco-navy);
  line-height: 1.12;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .fco-page-hero-title {
    font-size: 3.2rem;
  }
}

.fco-page-hero-subtitle {
  font-size: 1.15rem;
  color: var(--fco-gray-700);
  font-style: italic;
  margin-bottom: 20px;
  max-width: 680px;
}

/* Statement Content Container */
.fco-statement-container {
  padding: 50px 0 80px;
}

.fco-statement-lead-card {
  background-color: var(--fco-white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  border-left: 6px solid var(--fco-teal);
  margin-bottom: 40px;
  position: relative;
}

@media (min-width: 768px) {
  .fco-statement-lead-card {
    padding: 44px 48px;
  }
}

.fco-statement-lead-text {
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--fco-navy);
  margin-bottom: 20px;
  font-weight: 500;
}

.fco-statement-vision-box {
  background-color: var(--fco-teal-soft);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: var(--fco-navy);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.6;
}

.fco-vision-icon {
  width: 28px;
  height: 28px;
  color: var(--fco-teal);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Equity Pillars Grid */
.fco-equity-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

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

.fco-equity-card {
  background-color: var(--fco-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  border-top: 5px solid transparent;
  transition: all var(--transition-normal);
}

.fco-equity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.fco-card-acknowledge {
  border-top-color: var(--fco-teal);
  background-color: #FAFCFC;
}

.fco-card-believe {
  border-top-color: var(--fco-yellow);
  background-color: #FEFCF6;
}

.fco-card-continue {
  border-top-color: var(--fco-purple);
  background-color: #FAF8FC;
}

.fco-equity-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.fco-equity-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fco-white);
  flex-shrink: 0;
}

.fco-equity-badge svg {
  width: 22px;
  height: 22px;
}

.fco-equity-badge-teal { background-color: var(--fco-teal); }
.fco-equity-badge-yellow { background-color: var(--fco-yellow); color: var(--fco-navy); }
.fco-equity-badge-purple { background-color: var(--fco-purple); }

.fco-equity-card-title {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fco-navy);
}

.fco-equity-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.fco-equity-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--fco-gray-800);
}

.fco-bullet-check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 4px;
}

.fco-check-teal { color: var(--fco-teal); }
.fco-check-yellow { color: #E5A800; }
.fco-check-purple { color: var(--fco-purple); }

/* Bottom Community Callout */
.fco-equity-cta-card {
  background: linear-gradient(135deg, var(--fco-navy) 0%, var(--fco-navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  color: var(--fco-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .fco-equity-cta-card {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 44px 48px;
  }
}

.fco-equity-cta-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--fco-white);
  margin-bottom: 8px;
}

.fco-equity-cta-desc {
  font-size: 1rem;
  color: #CFD8DC;
  max-width: 580px;
}

.fco-equity-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  flex-shrink: 0;
}

/* --- MOTION & SCROLL REVEAL ANIMATIONS --- */
.fco-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
  will-change: opacity, transform;
}

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

.fco-delay-1 { transition-delay: 0.1s; }
.fco-delay-2 { transition-delay: 0.2s; }
.fco-delay-3 { transition-delay: 0.3s; }

/* --- FLOATING BACK TO TOP BUTTON --- */
.fco-back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--fco-teal);
  color: var(--fco-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(14, 124, 123, 0.35);
  border: 2px solid var(--fco-white);
  cursor: pointer;
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition-normal);
}

.fco-back-to-top.is-shown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fco-back-to-top:hover {
  background-color: var(--fco-yellow);
  color: var(--fco-navy);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 199, 44, 0.45);
}

.fco-back-to-top svg {
  width: 22px;
  height: 22px;
}

/* --- ACCESSIBILITY: REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fco-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .fco-hero-badge {
    animation: none !important;
  }
}

