@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');


/* =========================================
   ROOT VARIABLES
========================================= */

:root {
  --navy: #102a43;
  --navy-dark: #081c2d;
  --blue: #246b8f;
  --teal: #2f8f83;
  --teal-light: #e6f4f1;

  --gold: #e7b85c;
  --gold-light: #f8edd1;

  --purple: #5d4a8d;
  --purple-light: #ece8f6;

  --cream: #f7f5f1;
  --white: #ffffff;

  --text: #253b4d;
  --muted: #657789;
  --border: #e4e8eb;

  --shadow-sm: 0 10px 30px rgba(16, 42, 67, 0.08);
  --shadow-md: 0 20px 55px rgba(16, 42, 67, 0.12);
  --shadow-lg: 0 30px 80px rgba(16, 42, 67, 0.18);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
}




/* =========================================
   GLOBAL
========================================= */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--navy);
  font-weight: 700;
  line-height: 1.15;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  display: block;
}


/* =========================================
   NAVBAR
========================================= */

.main-navbar {
  background: rgba(16, 42, 67, 0.96);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 12px 0;
  transition: all 0.3s ease;
}

.main-navbar .navbar-brand {
  color: var(--white);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.main-navbar .navbar-brand span {
  color: var(--gold);
}

.main-navbar .nav-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.7rem 0.9rem !important;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: var(--white);
}

.main-navbar .nav-contact-btn {
  background: var(--gold);
  color: var(--navy) !important;
  border-radius: 999px;
  padding: 0.65rem 1.1rem !important;
  margin-left: 5px;
}

.main-navbar .nav-contact-btn:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.3);
}


/* =========================================
   HERO
========================================= */

.hero-section {
  min-height: 850px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 90% 15%,
      rgba(231, 184, 92, 0.18),
      transparent 25%
    ),
    radial-gradient(
      circle at 5% 85%,
      rgba(47, 143, 131, 0.13),
      transparent 30%
    ),
    var(--cream);
}

.hero-section::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  right: -300px;
  top: -200px;
  border: 90px solid rgba(93, 74, 141, 0.05);
  border-radius: 50%;
}

.hero-decoration {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-decoration-one {
  width: 18px;
  height: 18px;
  background: var(--gold);
  left: 8%;
  top: 28%;
  box-shadow:
    0 0 0 12px rgba(231, 184, 92, 0.12),
    0 0 0 25px rgba(231, 184, 92, 0.05);
}

.hero-decoration-two {
  width: 12px;
  height: 12px;
  background: var(--teal);
  left: 45%;
  bottom: 18%;
}


/* =========================================
   HERO TYPOGRAPHY
========================================= */

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 9px 15px;

  background: var(--purple-light);
  color: var(--purple);

  border-radius: 999px;

  font-size: 0.75rem;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(47, 143, 131, 0.12);
}

.hero-title {
  color: var(--navy);
  font-size: clamp(3.4rem, 6.2vw, 6.4rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.065em;
  margin-bottom: 30px;
}

.hero-title span {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 600;
  color: var(--teal);
}

.hero-description {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 25px;
}


/* =========================================
   HERO TAGS
========================================= */

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 7px 12px;

  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.75);

  border-radius: 999px;

  color: var(--text);

  font-size: 0.82rem;
  font-weight: 600;
}

.hero-tags i {
  color: var(--teal);
}


/* =========================================
   BUTTONS
========================================= */

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 23px;

  background: var(--navy);
  color: var(--white);

  border: 1px solid var(--navy);
  border-radius: 999px;

  font-weight: 700;
  font-size: 0.92rem;

  box-shadow: 0 12px 25px rgba(16, 42, 67, 0.15);
}

.btn-primary-custom:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);

  transform: translateY(-3px);

  box-shadow: 0 16px 30px rgba(47, 143, 131, 0.2);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 23px;

  background: transparent;
  color: var(--navy);

  border: 1px solid var(--navy);
  border-radius: 999px;

  font-weight: 700;
  font-size: 0.92rem;
}

.btn-outline-custom:hover {
  background: var(--navy);
  color: var(--white);

  transform: translateY(-3px);
}

.btn-light-custom {
  display: inline-flex;
  align-items: center;

  padding: 14px 23px;

  background: var(--white);
  color: var(--navy);

  border-radius: 999px;

  font-weight: 700;
}

.btn-light-custom:hover {
  background: var(--gold);
  color: var(--navy);

  transform: translateY(-3px);
}


/* =========================================
   HERO TRUST
========================================= */

.hero-trust {
  display: flex;
  align-items: center;
  gap: 13px;
}

.trust-icon {
  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  border-radius: 14px;

  background: var(--teal-light);
  color: var(--teal);

  font-size: 1.1rem;
}

.hero-trust strong,
.hero-trust small {
  display: block;
}

.hero-trust strong {
  color: var(--navy);
  font-size: 0.86rem;
}

.hero-trust small {
  color: var(--muted);
  font-size: 0.75rem;
}


/* =========================================
   HERO IMAGE
========================================= */

.hero-image-container {
  position: relative;
  min-height: 560px;
}

.hero-image-frame {
  position: absolute;

  inset: 25px -20px -20px 25px;

  border: 2px solid rgba(47, 143, 131, 0.35);

  border-radius: var(--radius-lg);
}

.hero-image {
  width: 100%;
  height: 560px;

  object-fit: cover;

  border-radius: var(--radius-lg);

  position: relative;
  z-index: 1;

  box-shadow: var(--shadow-lg);
}


/* =========================================
   HERO FLOATING CARD
========================================= */

.hero-floating-card {
  position: absolute;

  z-index: 3;

  left: -30px;
  bottom: 45px;

  display: flex;
  align-items: center;
  gap: 13px;

  padding: 14px 18px;

  background: var(--white);

  border-radius: 17px;

  box-shadow: var(--shadow-md);

  min-width: 200px;
}

.floating-icon {
  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  border-radius: 13px;

  background: var(--gold-light);
  color: #a77817;

  font-size: 1.1rem;
}

.hero-floating-card strong,
.hero-floating-card span {
  display: block;
}

.hero-floating-card strong {
  font-size: 1.35rem;
  color: var(--navy);
  line-height: 1;
}

.hero-floating-card span {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 4px;
}


/* =========================================
   HERO IMAGE LABEL
========================================= */

.hero-image-label {
  position: absolute;

  z-index: 3;

  top: 25px;
  right: -18px;

  padding: 10px 14px;

  background: rgba(16, 42, 67, 0.93);

  color: var(--white);

  border-radius: 999px;

  font-size: 0.72rem;
  font-weight: 700;

  box-shadow: var(--shadow-sm);
}

.status-dot {
  display: inline-block;

  width: 7px;
  height: 7px;

  background: #70d6a5;

  border-radius: 50%;

  margin-right: 6px;
}


/* =========================================
   SECTIONS
========================================= */

.section {
  padding: 110px 0;
}

.introduction-section {
  background: var(--white);
}

.section-eyebrow {
  display: inline-flex;

  padding: 7px 12px;

  background: var(--purple-light);
  color: var(--purple);

  border-radius: 999px;

  font-size: 0.72rem;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.section-eyebrow.light {
  background: rgba(255,255,255,0.12);
  color: var(--gold);
}

.section-title {
  max-width: 800px;

  font-size: clamp(2.4rem, 4.2vw, 4rem);

  letter-spacing: -0.045em;

  margin-top: 17px;
}

.section-title span {
  color: var(--teal);
}

.section-description {
  color: var(--muted);
  margin-bottom: 0;
}


/* =========================================
   FEATURE CARDS
========================================= */

.feature-card {
  height: 100%;

  background: var(--white);

  border: 1px solid var(--border);

  border-radius: 24px;

  overflow: hidden;

  box-shadow: var(--shadow-sm);

  transition: all 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-9px);

  box-shadow: var(--shadow-md);
}


/* IMAGE */

.feature-image {
  height: 250px;

  position: relative;

  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.6s ease;
}

.feature-card:hover .feature-image img {
  transform: scale(1.07);
}

.feature-image::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(16, 42, 67, 0.5)
  );
}


/* NUMBER */

.feature-number {
  position: absolute;

  z-index: 2;

  top: 18px;
  right: 18px;

  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: rgba(255,255,255,0.95);

  color: var(--navy);

  font-weight: 800;
}


/* CONTENT */

.feature-content {
  padding: 30px;
}

.feature-icon {
  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  border-radius: 14px;

  background: var(--teal-light);
  color: var(--teal);

  margin-bottom: 18px;
}

.feature-content h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.feature-content p {
  color: var(--muted);

  font-size: 0.93rem;

  margin-bottom: 20px;
}

.feature-content a {
  color: var(--navy);

  font-size: 0.85rem;
  font-weight: 800;
}

.feature-content a i {
  margin-left: 5px;

  transition: margin 0.3s ease;
}

.feature-content a:hover {
  color: var(--teal);
}

.feature-content a:hover i {
  margin-left: 10px;
}


/* =========================================
   IMPACT SECTION
========================================= */

.impact-section {
  padding: 110px 0;

  position: relative;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 90% 30%,
      rgba(47,143,131,0.22),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      var(--navy-dark),
      var(--navy),
      var(--blue)
    );

  color: var(--white);
}

.impact-section::before {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  border: 80px solid rgba(255,255,255,0.035);

  border-radius: 50%;

  right: -250px;
  bottom: -250px;
}

.impact-title {
  color: var(--white);

  font-size: clamp(2.6rem, 4.5vw, 4.5rem);

  letter-spacing: -0.05em;

  margin: 18px 0;
}

.impact-title span {
  color: var(--gold);

  font-family: "Playfair Display", serif;

  font-style: italic;
}

.impact-description {
  color: rgba(255,255,255,0.72);

  font-size: 1.05rem;

  line-height: 1.8;

  max-width: 650px;

  margin-bottom: 28px;
}


/* =========================================
   IMPACT METRICS
========================================= */

.impact-metrics {
  display: flex;
  align-items: stretch;
  gap: 14px;
}

.impact-metric {
  flex: 1;

  padding: 30px 20px;

  background: rgba(255,255,255,0.09);

  border: 1px solid rgba(255,255,255,0.13);

  border-radius: 22px;

  text-align: center;

  backdrop-filter: blur(10px);
}

.impact-metric.featured {
  background: rgba(255,255,255,0.96);
}

.metric-label {
  display: block;

  color: rgba(255,255,255,0.65);

  font-size: 0.72rem;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.08em;

  margin-bottom: 12px;
}

.impact-metric.featured .metric-label {
  color: var(--muted);
}

.impact-metric strong {
  color: var(--white);

  font-size: 3.5rem;

  line-height: 1;

  letter-spacing: -0.05em;
}

.impact-metric.featured strong {
  color: var(--navy);
}

.metric-arrow {
  width: 42px;

  display: grid;

  place-items: center;

  color: var(--gold);

  font-size: 1.4rem;
}


/* =========================================
   GROWTH BADGE
========================================= */

.growth-badge {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-top: 18px;

  padding: 17px 20px;

  background: rgba(255,255,255,0.08);

  border: 1px solid rgba(255,255,255,0.12);

  border-radius: 17px;
}

.growth-badge > i {
  width: 43px;
  height: 43px;

  display: grid;
  place-items: center;

  background: var(--gold);

  color: var(--navy);

  border-radius: 12px;
}

.growth-badge strong,
.growth-badge span {
  display: block;
}

.growth-badge strong {
  color: var(--white);
}

.growth-badge span {
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
}


/* =========================================
   PHILOSOPHY
========================================= */

.philosophy-section {
  background: var(--cream);
}

.philosophy-card {
  padding: 65px;

  background:
    linear-gradient(
      135deg,
      rgba(236,232,246,0.9),
      rgba(255,255,255,0.95)
    );

  border: 1px solid rgba(93,74,141,0.1);

  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-sm);
}

.philosophy-card h2 {
  max-width: 900px;

  font-size: clamp(2.2rem, 4vw, 4rem);

  letter-spacing: -0.05em;

  margin: 18px 0;
}

.philosophy-card h2 span {
  color: var(--purple);
}

.philosophy-card p {
  max-width: 700px;

  color: var(--muted);

  font-size: 1.05rem;
}


/* =========================================
   CTA
========================================= */

.cta-section {
  padding: 0 0 110px;

  background: var(--cream);
}

.cta-card {
  position: relative;

  overflow: hidden;

  padding: 65px;

  border-radius: var(--radius-lg);

  background: var(--white);

  box-shadow: var(--shadow-md);

  border: 1px solid var(--border);
}

.cta-card::after {
  content: "";

  position: absolute;

  width: 280px;
  height: 280px;

  right: -100px;
  top: -130px;

  border-radius: 50%;

  background: var(--gold-light);

  opacity: 0.7;
}

.cta-card > .row {
  position: relative;
  z-index: 1;
}

.cta-card h2 {
  max-width: 750px;

  font-size: clamp(2.1rem, 4vw, 3.6rem);

  letter-spacing: -0.045em;

  margin: 18px 0 14px;
}

.cta-card p {
  max-width: 700px;

  color: var(--muted);

  font-size: 1rem;
}


/* =========================================
   FOOTER
========================================= */

.portfolio-footer {
  padding: 75px 0 30px;

  background: var(--navy-dark);

  color: rgba(255,255,255,0.65);
}

.footer-eyebrow {
  color: var(--gold);

  font-size: 0.72rem;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.1em;

  margin-bottom: 10px;
}

.portfolio-footer h3 {
  color: var(--white);

  font-size: 1.7rem;

  margin-bottom: 8px;
}

.portfolio-footer p {
  font-size: 0.9rem;
}

.portfolio-footer a {
  color: rgba(255,255,255,0.85);
}

.portfolio-footer a:hover {
  color: var(--gold);
}

.portfolio-footer hr {
  border-color: rgba(255,255,255,0.15);
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  animation: fadeUp 0.8s ease both;
}

.hero-description {
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero-tags {
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-image-container {
  animation: fadeUp 0.9s 0.15s ease both;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199px) {

  .hero-title {
    font-size: 4.7rem;
  }

  .hero-image {
    height: 500px;
  }

  .hero-image-container {
    min-height: 500px;
  }

  .hero-floating-card {
    left: -15px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

  .main-navbar {
    padding: 10px 0;
  }

  .main-navbar .navbar-collapse {
    margin-top: 15px;

    padding: 15px;

    background: var(--navy);

    border-radius: 15px;
  }

  .main-navbar .nav-contact-btn {
    display: inline-block;

    margin-left: 0;
    margin-top: 5px;
  }


  /* HERO */

  .hero-section {
    min-height: auto;

    padding: 150px 0 90px;
  }

  .hero-title {
    font-size: clamp(3rem, 9vw, 4.7rem);
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-image-container {
    min-height: 440px;

    margin-top: 30px;
  }

  .hero-image {
    height: 440px;
  }

  .hero-floating-card {
    left: 15px;
    bottom: 25px;
  }

  .hero-image-label {
    right: 10px;
    top: 15px;
  }


  /* SECTIONS */

  .section,
  .impact-section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2.8rem;
  }


  /* PHILOSOPHY */

  .philosophy-card {
    padding: 40px 30px;
  }


  /* CTA */

  .cta-section {
    padding-bottom: 80px;
  }

  .cta-card {
    padding: 40px 30px;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575px) {

  .hero-section {
    padding-top: 125px;
  }

  .hero-title {
    font-size: 3rem;

    letter-spacing: -0.055em;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-tags span {
    font-size: 0.75rem;
  }

  .hero-image-container {
    min-height: 360px;
  }

  .hero-image {
    height: 360px;

    border-radius: 22px;
  }

  .hero-image-frame {
    inset: 15px -10px -10px 15px;

    border-radius: 22px;
  }

  .hero-floating-card {
    min-width: 175px;

    padding: 11px 13px;
  }

  .floating-icon {
    width: 38px;
    height: 38px;
  }

  .hero-floating-card strong {
    font-size: 1.1rem;
  }

  .hero-image-label {
    font-size: 0.62rem;

    padding: 8px 10px;
  }


  .section {
    padding: 65px 0;
  }

  .section-title {
    font-size: 2.3rem;
  }


  .feature-image {
    height: 220px;
  }

  .feature-content {
    padding: 24px;
  }


  .impact-section {
    padding: 70px 0;
  }

  .impact-title {
    font-size: 2.6rem;
  }

  .impact-metrics {
    gap: 7px;
  }

  .impact-metric {
    padding: 22px 10px;
  }

  .impact-metric strong {
    font-size: 2.3rem;
  }

  .metric-label {
    font-size: 0.6rem;
  }

  .metric-arrow {
    width: 22px;
    font-size: 1rem;
  }


  .philosophy-card {
    padding: 32px 22px;
  }

  .philosophy-card h2 {
    font-size: 2.2rem;
  }


  .cta-card {
    padding: 32px 22px;
  }

  .cta-card h2 {
    font-size: 2.25rem;
  }


  .portfolio-footer {
    padding-top: 55px;
  }

}
/* =========================================================
   ABOUT PAGE — PREMIUM DESIGN
========================================================= */


/* ---------------------------------------------------------
   ABOUT PAGE VARIABLES
--------------------------------------------------------- */

.about-page {

    --about-navy: #102a43;
    --about-navy-dark: #081c2d;
    --about-blue: #246b8f;
    --about-teal: #2f8f83;
    --about-teal-light: #e6f4f1;
    --about-gold: #e7b85c;
    --about-gold-light: #f8edd1;
    --about-purple: #5d4a8d;
    --about-purple-light: #ece8f6;
    --about-cream: #f7f5f1;
    --about-white: #ffffff;
    --about-text: #253b4d;
    --about-muted: #657789;
    --about-border: #e4e8eb;

    background: var(--about-cream);

}


/* =========================================================
   NAVBAR
========================================================= */

.about-page .main-navbar {

    background: rgba(8, 28, 45, .94);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

}


.about-page .navbar-nav .nav-link {

    position: relative;

}


.about-page .navbar-nav .nav-link.active {

    color: var(--about-gold);

}


.about-page .navbar-nav .nav-link.active::after {

    content: "";

    position: absolute;

    left: 10px;
    right: 10px;
    bottom: 2px;

    height: 2px;

    background: var(--about-gold);

    border-radius: 10px;

}


/* =========================================================
   ABOUT HERO
========================================================= */

.about-hero {

    min-height: 780px;

    padding-top: 165px;
    padding-bottom: 90px;

    position: relative;

    overflow: hidden;

    display: flex;
    align-items: center;

    color: white;

    background:

        radial-gradient(
            circle at 82% 22%,
            rgba(47,143,131,.30),
            transparent 28%
        ),

        radial-gradient(
            circle at 12% 80%,
            rgba(93,74,141,.22),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #081c2d 0%,
            #102a43 52%,
            #173d59 100%
        );

}


.about-hero-grid {

    position: absolute;

    inset: 0;

    opacity: .12;

    background-image:

        linear-gradient(
            rgba(255,255,255,.08) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.08) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    mask-image: linear-gradient(
        to bottom,
        black,
        transparent 90%
    );

}


.about-hero-orb {

    position: absolute;

    border-radius: 50%;

    filter: blur(2px);

    pointer-events: none;

}


.about-hero-orb.orb-one {

    width: 380px;
    height: 380px;

    right: -150px;
    top: 100px;

    border: 1px solid rgba(231,184,92,.25);

    box-shadow:
        0 0 100px rgba(47,143,131,.15),
        inset 0 0 80px rgba(47,143,131,.08);

}


.about-hero-orb.orb-two {

    width: 220px;
    height: 220px;

    left: -100px;
    bottom: 30px;

    border: 1px solid rgba(255,255,255,.10);

}


/* =========================================================
   HERO TYPOGRAPHY
========================================================= */

.about-eyebrow {

    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 22px;

    color: var(--about-gold);

    font-size: .76rem;

    font-weight: 700;

    letter-spacing: .18em;

    text-transform: uppercase;

}


.about-eyebrow-line {

    width: 42px;
    height: 2px;

    background: var(--about-gold);

    display: inline-block;

}


.about-hero-title {

    max-width: 850px;

    margin: 0;

    font-family: "Playfair Display", serif;

    font-size: clamp(3.5rem, 7vw, 6.4rem);

    line-height: .98;

    letter-spacing: -.045em;

    font-weight: 500;

}


.about-hero-title span {

    display: block;

    color: var(--about-teal);

    font-style: italic;

}


.about-hero-lead {

    max-width: 650px;

    margin-top: 30px;

    color: rgba(255,255,255,.74);

    font-size: 1.12rem;

    line-height: 1.85;

}


/* =========================================================
   HERO BUTTONS
========================================================= */

.about-hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 34px;

}


.btn-primary-custom {

    background: var(--about-teal);

    color: white;

    border: 1px solid var(--about-teal);

    border-radius: 100px;

    padding: 14px 24px;

    font-weight: 700;

    transition: .3s ease;

}


.btn-primary-custom:hover {

    background: #3ba596;

    color: white;

    transform: translateY(-3px);

    box-shadow: 0 12px 30px rgba(47,143,131,.25);

}


.btn-outline-custom {

    color: white;

    border: 1px solid rgba(255,255,255,.35);

    border-radius: 100px;

    padding: 14px 24px;

    font-weight: 600;

    transition: .3s ease;

}


.btn-outline-custom:hover {

    color: var(--about-navy);

    background: white;

    border-color: white;

    transform: translateY(-3px);

}


.btn-primary-custom i,
.btn-outline-custom i,
.btn-gold-custom i {

    margin-left: 7px;

}


/* =========================================================
   PROFILE CARD
========================================================= */

.about-profile-card {

    position: relative;

    min-height: 470px;

    padding: 30px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    overflow: hidden;

    border-radius: 30px;

    background:

        linear-gradient(
            145deg,
            rgba(255,255,255,.15),
            rgba(255,255,255,.04)
        );

    border: 1px solid rgba(255,255,255,.18);

    box-shadow:
        0 30px 80px rgba(0,0,0,.25),
        inset 0 1px 0 rgba(255,255,255,.1);

}


.about-profile-card::before {

    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -120px;
    top: 80px;

    border-radius: 50%;

    background: rgba(47,143,131,.22);

    filter: blur(20px);

}


.about-profile-card::after {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    left: -90px;
    bottom: -70px;

    border-radius: 50%;

    border: 1px solid rgba(231,184,92,.3);

}


.profile-card-top {

    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.profile-number {

    font-family: "Playfair Display", serif;

    font-size: 1.2rem;

    color: rgba(255,255,255,.55);

}


.profile-status {

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 8px 13px;

    border-radius: 100px;

    background: rgba(255,255,255,.08);

    border: 1px solid rgba(255,255,255,.12);

    color: rgba(255,255,255,.75);

    font-size: .72rem;

    text-transform: uppercase;

    letter-spacing: .08em;

}


.profile-status span {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--about-teal);

    box-shadow: 0 0 12px var(--about-teal);

}


.profile-monogram {

    position: relative;
    z-index: 2;

    font-family: "Playfair Display", serif;

    font-size: clamp(8rem, 18vw, 13rem);

    line-height: .8;

    font-weight: 500;

    letter-spacing: -.1em;

    color: rgba(255,255,255,.92);

    text-shadow:
        20px 20px 0 rgba(47,143,131,.16);

}


.profile-card-bottom {

    position: relative;
    z-index: 2;

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

}


.profile-card-bottom small {

    display: block;

    margin-bottom: 6px;

    color: var(--about-gold);

    font-size: .65rem;

    letter-spacing: .14em;

    font-weight: 700;

}


.profile-card-bottom strong {

    display: block;

    max-width: 180px;

    color: white;

    font-size: 1.05rem;

    line-height: 1.3;

}


.profile-card-bottom > i {

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--about-navy);

    background: var(--about-gold);

}


/* =========================================================
   HERO STATS
========================================================= */

.about-hero-stats {

    margin-top: 70px;

    padding-top: 30px;

    display: flex;

    align-items: center;

    gap: 40px;

    border-top: 1px solid rgba(255,255,255,.14);

}


.hero-stat {

    display: flex;

    align-items: center;

    gap: 15px;

}


.hero-stat strong {

    font-family: "Playfair Display", serif;

    font-size: 2.7rem;

    font-weight: 500;

    color: var(--about-gold);

}


.hero-stat span {

    color: rgba(255,255,255,.60);

    font-size: .78rem;

    line-height: 1.45;

}


.hero-stat-divider {

    width: 1px;

    height: 45px;

    background: rgba(255,255,255,.15);

}


/* =========================================================
   INTRODUCTION
========================================================= */

.about-intro-section {

    padding: 120px 0;

    background: var(--about-cream);

}


.section-number {

    font-family: "Playfair Display", serif;

    font-size: 5rem;

    line-height: 1;

    color: var(--about-gold);

    opacity: .7;

    margin-bottom: 15px;

}


.about-section-eyebrow {

    color: var(--about-teal);

    font-size: .72rem;

    font-weight: 800;

    letter-spacing: .18em;

    text-transform: uppercase;

}


.about-display-title {

    max-width: 480px;

    margin-top: 15px;

    font-family: "Playfair Display", serif;

    font-size: clamp(2.8rem, 5vw, 4.5rem);

    line-height: 1.05;

    font-weight: 500;

    color: var(--about-navy);

    letter-spacing: -.035em;

}


.about-display-title span {

    display: block;

    color: var(--about-teal);

    font-style: italic;

}


.about-large-copy {

    margin: 0 0 25px;

    color: var(--about-navy);

    font-family: "Playfair Display", serif;

    font-size: clamp(1.55rem, 2.5vw, 2.15rem);

    line-height: 1.45;

}


.about-body-copy {

    max-width: 700px;

    color: var(--about-muted);

    font-size: 1rem;

    line-height: 1.9;

}


/* =========================================================
   LEADERSHIP SECTION
========================================================= */

.leadership-section {

    padding: 110px 0;

    background: white;

}


.about-section-title {

    max-width: 750px;

    margin: 12px 0 0;

    font-family: "Playfair Display", serif;

    font-size: clamp(2.7rem, 5vw, 4.5rem);

    line-height: 1.05;

    font-weight: 500;

    color: var(--about-navy);

    letter-spacing: -.04em;

}


.about-section-title span {

    color: var(--about-teal);

    font-style: italic;

}


.section-side-text {

    color: var(--about-muted);

    font-size: .9rem;

    line-height: 1.7;

}


.leadership-card {

    height: 100%;

    min-height: 400px;

    padding: 30px;

    position: relative;

    overflow: hidden;

    border-radius: 24px;

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}


.leadership-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 60px rgba(16,42,67,.14);

}


.role-teal {

    background: var(--about-teal-light);

    color: var(--about-navy);

}


.role-gold {

    background: var(--about-gold-light);

    color: var(--about-navy);

}


.role-purple {

    background: var(--about-purple-light);

    color: var(--about-navy);

}


.role-navy {

    background: var(--about-navy);

    color: white;

}


.role-icon {

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 17px;

    margin-bottom: 35px;

    font-size: 1.35rem;

}


.role-teal .role-icon {

    background: white;
    color: var(--about-teal);

}


.role-gold .role-icon {

    background: white;
    color: #a87814;

}


.role-purple .role-icon {

    background: white;
    color: var(--about-purple);

}


.role-navy .role-icon {

    background: rgba(255,255,255,.1);
    color: var(--about-gold);

}


.role-number {

    position: absolute;

    top: 32px;
    right: 30px;

    font-size: .68rem;

    font-weight: 800;

    letter-spacing: .12em;

    opacity: .45;

}


.leadership-card h3 {

    max-width: 230px;

    min-height: 105px;

    margin-bottom: 20px;

    font-family: "Playfair Display", serif;

    font-size: 1.7rem;

    line-height: 1.1;

    font-weight: 500;

}


.leadership-card p {

    margin: 0;

    font-size: .88rem;

    line-height: 1.75;

    opacity: .72;

}


.role-arrow {

    position: absolute;

    right: 28px;
    bottom: 27px;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.75);

}


.role-navy .role-arrow {

    color: var(--about-navy);

}


/* =========================================================
   EXPERIENCE
========================================================= */

.experience-section {

    padding: 120px 0;

    background:

        radial-gradient(
            circle at 90% 10%,
            rgba(47,143,131,.10),
            transparent 25%
        ),

        var(--about-cream);

}


.dark-title {

    color: var(--about-navy);

}


.experience-intro {

    max-width: 650px;

    margin-top: 25px;

    color: var(--about-muted);

    line-height: 1.8;

}


.experience-timeline {

    position: relative;

    margin-top: 70px;

    padding-left: 270px;

}


.experience-timeline::before {

    content: "";

    position: absolute;

    left: 205px;

    top: 0;
    bottom: 0;

    width: 1px;

    background: var(--about-border);

}


.experience-item {

    position: relative;

    padding-bottom: 70px;

}


.experience-item:last-child {

    padding-bottom: 0;

}


.experience-marker {

    position: absolute;

    left: -71px;

    top: 4px;

    width: 13px;
    height: 13px;

    border: 3px solid var(--about-cream);

    border-radius: 50%;

    background: var(--about-teal);

    box-shadow:
        0 0 0 1px var(--about-teal),
        0 0 0 7px rgba(47,143,131,.08);

}


.experience-date {

    position: absolute;

    left: -270px;

    top: 0;

    width: 175px;

    color: var(--about-teal);

    font-size: .68rem;

    font-weight: 800;

    letter-spacing: .12em;

    line-height: 1.5;

}


.experience-content {

    padding: 30px;

    background: white;

    border: 1px solid var(--about-border);

    border-radius: 22px;

    transition: .3s ease;

}


.experience-content:hover {

    border-color: rgba(47,143,131,.35);

    transform: translateX(6px);

    box-shadow: 0 18px 45px rgba(16,42,67,.08);

}


.experience-label {

    display: inline-block;

    margin-bottom: 10px;

    padding: 6px 10px;

    border-radius: 100px;

    background: var(--about-teal-light);

    color: var(--about-teal);

    font-size: .62rem;

    font-weight: 800;

    letter-spacing: .1em;

}


.experience-content h3 {

    margin-bottom: 12px;

    color: var(--about-navy);

    font-family: "Playfair Display", serif;

    font-size: 1.7rem;

    line-height: 1.25;

    font-weight: 500;

}


.experience-place {

    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 8px;

    margin-bottom: 18px;

    color: var(--about-muted);

    font-size: .8rem;

    font-weight: 600;

}


.experience-place i {

    color: var(--about-teal);

}


.experience-place span {

    color: var(--about-border);

}


.experience-content p {

    max-width: 850px;

    margin: 0;

    color: var(--about-muted);

    font-size: .92rem;

    line-height: 1.8;

}


.experience-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 20px;

}


.experience-tags span {

    padding: 7px 11px;

    border: 1px solid var(--about-border);

    border-radius: 100px;

    color: var(--about-muted);

    font-size: .65rem;

    font-weight: 700;

}


/* =========================================================
   EDUCATION / CREDENTIALS
========================================================= */

.education-section {

    padding: 110px 0;

    background: white;

}


.credentials-card {

    height: 100%;

    padding: 45px;

    border-radius: 28px;

    position: relative;

    overflow: hidden;

}


.education-card {

    background: var(--about-navy);

    color: white;

}


.credential-card {

    background: var(--about-purple-light);

    color: var(--about-navy);

}


.credentials-card::before {

    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -100px;
    top: -100px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.1);

}


.credentials-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 40px;

}


.credentials-top > span {

    font-size: .68rem;

    font-weight: 800;

    letter-spacing: .15em;

    opacity: .6;

}


.credentials-icon {

    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 16px;

    font-size: 1.3rem;

}


.education-card .credentials-icon {

    background: rgba(255,255,255,.1);

    color: var(--about-gold);

}


.credential-card .credentials-icon {

    background: white;

    color: var(--about-purple);

}


.credentials-card h2 {

    max-width: 480px;

    margin-bottom: 40px;

    font-family: "Playfair Display", serif;

    font-size: 2.8rem;

    line-height: 1.1;

    font-weight: 500;

}


.credentials-card h2 span {

    color: var(--about-teal);

    font-style: italic;

}


.education-card h2 span {

    color: var(--about-gold);

}


.education-list {

    display: flex;

    flex-direction: column;

    gap: 28px;

}


.education-item {

    display: flex;

    gap: 16px;

}


.education-dot {

    flex: 0 0 auto;

    width: 10px;
    height: 10px;

    margin-top: 7px;

    border-radius: 50%;

    background: var(--about-gold);

}


.education-item h3 {

    margin: 0 0 5px;

    font-size: 1rem;

    line-height: 1.5;

}


.education-item p {

    margin: 0;

    color: rgba(255,255,255,.55);

    font-size: .78rem;

}


.credential-list {

    display: flex;

    flex-direction: column;

    gap: 16px;

}


.credential-item {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    padding: 15px;

    border-radius: 14px;

    background: rgba(255,255,255,.6);

    font-size: .83rem;

    line-height: 1.6;

}


.credential-item i {

    flex: 0 0 auto;

    width: 25px;
    height: 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--about-teal);

    color: white;

    font-size: .75rem;

}


/* =========================================================
   CLOSING CTA
========================================================= */

.about-closing {

    padding: 30px 0 120px;

    background: white;

}


.closing-card {

    position: relative;

    overflow: hidden;

    padding: 85px 60px;

    border-radius: 32px;

    text-align: center;

    color: white;

    background:

        radial-gradient(
            circle at 20% 30%,
            rgba(47,143,131,.35),
            transparent 25%
        ),

        radial-gradient(
            circle at 80% 70%,
            rgba(93,74,141,.25),
            transparent 25%
        ),

        var(--about-navy);

}


.closing-decoration span {

    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.08);

}


.closing-decoration span:nth-child(1) {

    width: 400px;
    height: 400px;

    top: -260px;
    left: -120px;

}


.closing-decoration span:nth-child(2) {

    width: 300px;
    height: 300px;

    bottom: -220px;
    right: -80px;

}


.closing-decoration span:nth-child(3) {

    width: 100px;
    height: 100px;

    top: 35px;
    right: 15%;

    border-color: rgba(231,184,92,.18);

}


.light-eyebrow {

    position: relative;
    z-index: 2;

    color: var(--about-gold);

    justify-content: center;

}


.closing-card h2 {

    position: relative;
    z-index: 2;

    max-width: 850px;

    margin: 18px auto;

    font-family: "Playfair Display", serif;

    font-size: clamp(2.7rem, 5vw, 4.8rem);

    line-height: 1.05;

    font-weight: 500;

    letter-spacing: -.035em;

}


.closing-card h2 span {

    color: var(--about-teal);

    font-style: italic;

}


.closing-card p {

    position: relative;
    z-index: 2;

    max-width: 620px;

    margin: 25px auto 35px;

    color: rgba(255,255,255,.65);

    line-height: 1.8;

}


.btn-gold-custom {

    position: relative;
    z-index: 2;

    display: inline-flex;

    align-items: center;

    color: var(--about-navy);

    background: var(--about-gold);

    border: 1px solid var(--about-gold);

    border-radius: 100px;

    padding: 14px 25px;

    font-weight: 800;

    transition: .3s ease;

}


.btn-gold-custom:hover {

    color: var(--about-navy);

    background: #f1cc79;

    border-color: #f1cc79;

    transform: translateY(-3px);

    box-shadow: 0 15px 35px rgba(231,184,92,.2);

}


/* =========================================================
   REVEAL ANIMATIONS
========================================================= */

.reveal-up {

    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity .8s ease,
        transform .8s ease;

}


.reveal-right {

    opacity: 0;

    transform: translateX(45px);

    transition:
        opacity .9s ease,
        transform .9s ease;

}


.reveal-up.is-visible,
.reveal-right.is-visible {

    opacity: 1;

    transform: translate(0);

}


.delay-1 {

    transition-delay: .1s;

}


.delay-2 {

    transition-delay: .2s;

}


.delay-3 {

    transition-delay: .3s;

}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 991px) {

    .about-hero {

        min-height: auto;

        padding-top: 145px;
        padding-bottom: 75px;

    }


    .about-profile-card {

        min-height: 400px;

    }


    .about-hero-stats {

        margin-top: 55px;

    }


    .about-intro-section,
    .leadership-section,
    .experience-section,
    .education-section {

        padding: 85px 0;

    }


    .experience-timeline {

        padding-left: 70px;

    }


    .experience-timeline::before {

        left: 20px;

    }


    .experience-marker {

        left: -56px;

    }


    .experience-date {

        position: static;

        width: auto;

        margin-bottom: 12px;

    }


    .experience-item {

        padding-bottom: 45px;

    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 767px) {

    .about-hero {

        padding-top: 125px;
        padding-bottom: 60px;

    }


    .about-hero-title {

        font-size: clamp(3rem, 15vw, 4.5rem);

    }


    .about-hero-lead {

        font-size: 1rem;

    }


    .about-hero-actions {

        flex-direction: column;

        align-items: stretch;

    }


    .about-hero-actions .btn {

        width: 100%;

        text-align: center;

    }


    .about-profile-card {

        min-height: 350px;

        margin-top: 10px;

    }


    .profile-monogram {

        font-size: 8rem;

    }


    .about-hero-stats {

        display: grid;

        grid-template-columns: 1fr;

        gap: 20px;

    }


    .hero-stat-divider {

        display: none;

    }


    .about-intro-section,
    .leadership-section,
    .experience-section,
    .education-section {

        padding: 70px 0;

    }


    .section-number {

        font-size: 4rem;

    }


    .about-display-title {

        font-size: 3rem;

    }


    .about-large-copy {

        font-size: 1.45rem;

    }


    .leadership-card {

        min-height: 350px;

    }


    .experience-timeline {

        padding-left: 38px;

        margin-top: 50px;

    }


    .experience-timeline::before {

        left: 8px;

    }


    .experience-marker {

        left: -36px;

        width: 11px;
        height: 11px;

    }


    .experience-content {

        padding: 23px;

    }


    .experience-content h3 {

        font-size: 1.4rem;

    }


    .credentials-card {

        padding: 30px 25px;

    }


    .credentials-card h2 {

        font-size: 2.3rem;

    }


    .closing-card {

        padding: 65px 25px;

        border-radius: 25px;

    }


    .closing-card h2 {

        font-size: 2.7rem;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .about-hero-title {

        font-size: 2.9rem;

    }


    .about-profile-card {

        min-height: 320px;

        padding: 23px;

        border-radius: 23px;

    }


    .profile-monogram {

        font-size: 6.8rem;

    }


    .profile-status {

        font-size: .58rem;

    }


    .hero-stat strong {

        font-size: 2.2rem;

    }


    .about-section-title {

        font-size: 2.6rem;

    }


    .leadership-card h3 {

        min-height: auto;

    }


    .experience-place span {

        display: none;

    }


    .credentials-card h2 {

        font-size: 2rem;

    }


    .closing-card h2 {

        font-size: 2.35rem;

    }

}

/* =========================================================
   COACHING PAGE
   PREMIUM / EDITORIAL DESIGN
========================================================= */


/* =========================================================
   HERO
========================================================= */

.coaching-page {

    --cp-navy: #102a43;
    --cp-navy-dark: #081c2d;
    --cp-blue: #246b8f;
    --cp-teal: #2f8f83;
    --cp-teal-light: #e6f4f1;
    --cp-gold: #e7b85c;
    --cp-gold-light: #f8edd1;
    --cp-purple: #5d4a8d;
    --cp-purple-light: #ece8f6;
    --cp-cream: #f7f5f1;
    --cp-white: #ffffff;
    --cp-text: #253b4d;
    --cp-muted: #657789;
    --cp-border: #e4e8eb;

}


.coaching-hero {

    min-height: 820px;

    padding-top: 155px;
    padding-bottom: 80px;

    position: relative;

    overflow: hidden;

    display: flex;
    align-items: center;

    color: white;

    background:

        radial-gradient(
            circle at 85% 20%,
            rgba(47,143,131,.30),
            transparent 28%
        ),

        radial-gradient(
            circle at 15% 85%,
            rgba(93,74,141,.22),
            transparent 28%
        ),

        linear-gradient(
            135deg,
            var(--cp-navy-dark),
            var(--cp-navy) 55%,
            #173d59
        );

}


.coaching-grid {

    position: absolute;

    inset: 0;

    opacity: .1;

    background-image:

        linear-gradient(
            rgba(255,255,255,.12) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.12) 1px,
            transparent 1px
        );

    background-size: 65px 65px;

}


.coaching-orb {

    position: absolute;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 50%;

    pointer-events: none;

}


.coaching-orb-one {

    width: 520px;
    height: 520px;

    right: -280px;
    top: 50px;

}


.coaching-orb-two {

    width: 280px;
    height: 280px;

    left: -170px;
    bottom: -100px;

    border-color: rgba(231,184,92,.14);

}


/* =========================================================
   HERO TEXT
========================================================= */

.coaching-eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 25px;

    color: var(--cp-gold);

    font-size: .72rem;

    font-weight: 800;

    letter-spacing: .18em;

}


.coaching-eyebrow span {

    width: 40px;
    height: 2px;

    background: var(--cp-gold);

}


.coaching-hero-title {

    max-width: 800px;

    margin: 0;

    font-family: "Playfair Display", serif;

    font-size: clamp(3.6rem, 7vw, 6.4rem);

    line-height: .96;

    letter-spacing: -.05em;

    font-weight: 500;

}


.coaching-hero-title span {

    color: var(--cp-teal);

    font-style: italic;

}


.coaching-hero-text {

    max-width: 650px;

    margin-top: 30px;

    color: rgba(255,255,255,.7);

    font-size: 1.1rem;

    line-height: 1.85;

}


/* =========================================================
   HERO BUTTONS
========================================================= */

.coaching-hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 35px;

}


.coaching-btn-primary,
.coaching-btn-outline {

    padding: 14px 23px;

    border-radius: 100px;

    font-weight: 700;

    transition: .3s ease;

}


.coaching-btn-primary {

    background: var(--cp-teal);

    color: white;

    border: 1px solid var(--cp-teal);

}


.coaching-btn-primary:hover {

    background: #3ba596;

    color: white;

    transform: translateY(-3px);

}


.coaching-btn-outline {

    color: white;

    border: 1px solid rgba(255,255,255,.28);

}


.coaching-btn-outline:hover {

    background: white;

    color: var(--cp-navy);

    border-color: white;

    transform: translateY(-3px);

}


/* =========================================================
   HERO CARD
========================================================= */

.coaching-hero-card {

    min-height: 475px;

    padding: 30px;

    position: relative;

    overflow: hidden;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    border-radius: 30px;

    background: rgba(255,255,255,.07);

    border: 1px solid rgba(255,255,255,.18);

    box-shadow:

        0 30px 80px rgba(0,0,0,.25),

        inset 0 1px 0 rgba(255,255,255,.08);

}


.coaching-hero-card::before {

    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    right: -140px;
    top: -80px;

    border-radius: 50%;

    background: rgba(47,143,131,.20);

    filter: blur(15px);

}


.hero-card-header {

    position: relative;
    z-index: 2;

    display: flex;

    justify-content: space-between;

    color: rgba(255,255,255,.55);

    font-size: .65rem;

    font-weight: 800;

    letter-spacing: .14em;

}


.hero-card-index {

    color: var(--cp-gold);

}


.hero-card-quote {

    position: relative;
    z-index: 2;

    max-width: 390px;

    font-family: "Playfair Display", serif;

    font-size: clamp(2rem, 4vw, 3rem);

    line-height: 1.18;

    color: white;

}


.hero-card-line {

    position: relative;
    z-index: 2;

    width: 70px;
    height: 2px;

    background: var(--cp-gold);

}


.hero-card-footer {

    position: relative;
    z-index: 2;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

}


.hero-card-footer small {

    display: block;

    margin-bottom: 7px;

    color: var(--cp-teal);

    font-size: .62rem;

    font-weight: 800;

    letter-spacing: .15em;

}


.hero-card-footer strong {

    display: block;

    max-width: 200px;

    font-size: .95rem;

    line-height: 1.4;

}


.hero-card-footer i {

    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--cp-gold);

    color: var(--cp-navy);

}


/* =========================================================
   HERO BOTTOM
========================================================= */

.coaching-hero-bottom {

    margin-top: 70px;

    padding-top: 25px;

    display: flex;

    flex-wrap: wrap;

    gap: 30px 45px;

    border-top: 1px solid rgba(255,255,255,.13);

}


.coaching-hero-bottom div {

    display: flex;

    align-items: center;

    gap: 9px;

    color: rgba(255,255,255,.55);

    font-size: .72rem;

    font-weight: 600;

}


.coaching-hero-bottom i {

    color: var(--cp-gold);

    font-size: 1rem;

}


/* =========================================================
   INTRO
========================================================= */

.coaching-intro {

    padding: 120px 0;

    background: var(--cp-cream);

}


.coaching-section-number {

    margin-bottom: 15px;

    color: var(--cp-gold);

    font-family: "Playfair Display", serif;

    font-size: 5rem;

    line-height: .8;

    opacity: .75;

}


.coaching-section-eyebrow {

    color: var(--cp-teal);

    font-size: .7rem;

    font-weight: 800;

    letter-spacing: .18em;

    text-transform: uppercase;

}


.coaching-section-eyebrow.light {

    color: var(--cp-gold);

}


.coaching-display-title {

    max-width: 500px;

    margin-top: 14px;

    color: var(--cp-navy);

    font-family: "Playfair Display", serif;

    font-size: clamp(2.8rem, 5vw, 4.4rem);

    line-height: 1.05;

    letter-spacing: -.04em;

    font-weight: 500;

}


.coaching-display-title span {

    display: block;

    color: var(--cp-teal);

    font-style: italic;

}


.coaching-large-copy {

    margin: 0 0 25px;

    color: var(--cp-navy);

    font-family: "Playfair Display", serif;

    font-size: clamp(1.5rem, 2.5vw, 2.1rem);

    line-height: 1.45;

}


.coaching-body-copy {

    max-width: 720px;

    color: var(--cp-muted);

    line-height: 1.9;

}


/* =========================================================
   CYCLE
========================================================= */

.coaching-cycle-section {

    padding: 115px 0;

    background: white;

}


.coaching-section-title {

    max-width: 800px;

    margin-top: 14px;

    color: var(--cp-navy);

    font-family: "Playfair Display", serif;

    font-size: clamp(2.8rem, 5vw, 4.5rem);

    line-height: 1;

    letter-spacing: -.04em;

    font-weight: 500;

}


.coaching-section-title span {

    color: var(--cp-teal);

    font-style: italic;

}


.coaching-side-copy {

    margin: 0;

    color: var(--cp-muted);

    font-size: .9rem;

    line-height: 1.8;

}


.cycle-card {

    min-height: 430px;

    padding: 32px;

    position: relative;

    overflow: hidden;

    border-radius: 25px;

    transition: .35s ease;

}


.cycle-card:hover {

    transform: translateY(-9px);

    box-shadow: 0 25px 60px rgba(16,42,67,.12);

}


.cycle-teal {

    background: var(--cp-teal-light);

}


.cycle-gold {

    background: var(--cp-gold-light);

}


.cycle-purple {

    background: var(--cp-purple-light);

}


.cycle-top {

    display: flex;

    justify-content: space-between;

    align-items: center;

}


.cycle-top > span {

    font-family: "Playfair Display", serif;

    font-size: 1.2rem;

    opacity: .35;

}


.cycle-icon {

    width: 60px;
    height: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: white;

    color: var(--cp-teal);

    font-size: 1.4rem;

}


.cycle-gold .cycle-icon {

    color: #9c731d;

}


.cycle-purple .cycle-icon {

    color: var(--cp-purple);

}


.cycle-card h3 {

    margin-top: 65px;

    color: var(--cp-navy);

    font-family: "Playfair Display", serif;

    font-size: 2.2rem;

    font-weight: 500;

}


.cycle-card > p {

    max-width: 330px;

    margin-top: 15px;

    color: var(--cp-muted);

    line-height: 1.8;

}


.cycle-detail {

    position: absolute;

    left: 32px;
    right: 32px;
    bottom: 30px;

    padding-top: 18px;

    border-top: 1px solid rgba(16,42,67,.12);

}


.cycle-detail span {

    display: block;

    margin-bottom: 7px;

    color: var(--cp-teal);

    font-size: .61rem;

    font-weight: 800;

    letter-spacing: .12em;

}


.cycle-detail strong {

    display: block;

    max-width: 280px;

    color: var(--cp-navy);

    font-size: .88rem;

    line-height: 1.5;

}


.cycle-flow {

    margin-top: 45px;

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 15px;

    color: var(--cp-muted);

    font-size: .72rem;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .1em;

}


.cycle-flow i {

    color: var(--cp-teal);

}


/* =========================================================
   INSTRUCTIONAL FOCUS
========================================================= */

.instructional-focus {

    padding: 115px 0;

    background: var(--cp-cream);

}


.focus-card {

    min-height: 610px;

    padding: 40px;

    position: relative;

    overflow: hidden;

    border-radius: 28px;

    border: 1px solid var(--cp-border);

}


.literacy-card {

    background: white;

}


.numeracy-card {

    background: var(--cp-navy);

    color: white;

}


.focus-card-number {

    position: absolute;

    top: -20px;
    right: 20px;

    font-family: "Playfair Display", serif;

    font-size: 13rem;

    line-height: 1;

    opacity: .035;

}


.focus-card-header {

    display: flex;

    align-items: center;

    gap: 15px;

}


.focus-card-header > span {

    font-size: .67rem;

    font-weight: 800;

    letter-spacing: .15em;

}


.literacy-card .focus-card-header > span {

    color: var(--cp-teal);

}


.numeracy-card .focus-card-header > span {

    color: var(--cp-gold);

}


.focus-icon {

    width: 57px;
    height: 57px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 16px;

    font-size: 1.25rem;

}


.literacy-card .focus-icon {

    background: var(--cp-teal-light);

    color: var(--cp-teal);

}


.numeracy-card .focus-icon {

    background: rgba(255,255,255,.08);

    color: var(--cp-gold);

}


.focus-card h3 {

    position: relative;

    margin-top: 50px;

    color: var(--cp-navy);

    font-family: "Playfair Display", serif;

    font-size: 3rem;

    font-weight: 500;

}


.numeracy-card h3 {

    color: white;

}


.focus-card h3 em {

    color: var(--cp-teal);

    font-style: italic;

}


.numeracy-card h3 em {

    color: var(--cp-gold);

}


.focus-intro {

    position: relative;

    max-width: 530px;

    margin: 18px 0 30px;

    color: var(--cp-muted);

    line-height: 1.8;

}


.numeracy-card .focus-intro {

    color: rgba(255,255,255,.58);

}


.focus-list {

    position: relative;

    display: flex;

    flex-direction: column;

    gap: 16px;

}


.focus-list > div {

    display: flex;

    align-items: flex-start;

    gap: 12px;

}


.focus-list i {

    flex: 0 0 auto;

    width: 24px;
    height: 24px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: .7rem;

}


.literacy-card .focus-list i {

    background: var(--cp-teal-light);

    color: var(--cp-teal);

}


.numeracy-card .focus-list i {

    background: rgba(231,184,92,.12);

    color: var(--cp-gold);

}


.focus-list span {

    color: var(--cp-muted);

    font-size: .86rem;

    line-height: 1.65;

}


.numeracy-card .focus-list span {

    color: rgba(255,255,255,.63);

}


.focus-card-footer {

    position: absolute;

    left: 40px;
    right: 40px;
    bottom: 32px;

    padding-top: 18px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    border-top: 1px solid var(--cp-border);

}


.numeracy-card .focus-card-footer {

    border-color: rgba(255,255,255,.12);

}


.focus-card-footer span {

    font-size: .6rem;

    font-weight: 800;

    letter-spacing: .12em;

    color: var(--cp-muted);

}


.numeracy-card .focus-card-footer span {

    color: rgba(255,255,255,.4);

}


.focus-card-footer i {

    color: var(--cp-teal);

}


.numeracy-card .focus-card-footer i {

    color: var(--cp-gold);

}


/* =========================================================
   EQUITY
========================================================= */

.equity-section {

    padding: 30px 0 115px;

    background: var(--cp-cream);

}


.equity-card {

    position: relative;

    overflow: hidden;

    padding: 80px 70px;

    border-radius: 32px;

    color: white;

    background:

        radial-gradient(
            circle at 90% 10%,
            rgba(47,143,131,.35),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            var(--cp-navy),
            var(--cp-navy-dark)
        );

}


.equity-background-number {

    position: absolute;

    right: -30px;
    bottom: -80px;

    font-family: "Playfair Display", serif;

    font-size: 28rem;

    line-height: .8;

    color: white;

    opacity: .025;

}


.equity-card h2 {

    position: relative;

    max-width: 500px;

    margin-top: 15px;

    font-family: "Playfair Display", serif;

    font-size: clamp(2.6rem, 5vw, 4.4rem);

    line-height: 1.05;

    font-weight: 500;

}


.equity-card h2 span {

    display: block;

    color: var(--cp-teal);

    font-style: italic;

}


.equity-main-copy {

    position: relative;

    max-width: 650px;

    margin-bottom: 30px;

    color: rgba(255,255,255,.68);

    font-size: 1.1rem;

    line-height: 1.8;

}


.equity-features {

    position: relative;

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

}


.equity-feature {

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 11px 14px;

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 100px;

    background: rgba(255,255,255,.04);

    color: rgba(255,255,255,.75);

    font-size: .75rem;

}


.equity-feature i {

    color: var(--cp-gold);

}


/* =========================================================
   WEEKLY RHYTHM
========================================================= */

.rhythm-section {

    padding: 120px 0;

    background: white;

}


.rhythm-intro {

    max-width: 420px;

    margin-top: 25px;

    color: var(--cp-muted);

    line-height: 1.8;

}


.rhythm-list {

    border-top: 1px solid var(--cp-border);

}


.rhythm-item {

    display: grid;

    grid-template-columns: 125px 55px 1fr;

    gap: 25px;

    align-items: start;

    padding: 28px 0;

    border-bottom: 1px solid var(--cp-border);

}


.rhythm-day {

    color: var(--cp-navy);

    font-family: "Playfair Display", serif;

    font-size: 1.1rem;

}


.rhythm-day span {

    display: block;

    margin-bottom: 4px;

    color: var(--cp-teal);

    font-family: "DM Sans", sans-serif;

    font-size: .6rem;

    font-weight: 800;

    letter-spacing: .12em;

}


.rhythm-icon {

    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: var(--cp-teal-light);

    color: var(--cp-teal);

}


.rhythm-content h3 {

    margin: 0 0 8px;

    color: var(--cp-navy);

    font-family: "Playfair Display", serif;

    font-size: 1.55rem;

    font-weight: 500;

}


.rhythm-content p {

    max-width: 600px;

    margin: 0;

    color: var(--cp-muted);

    font-size: .86rem;

    line-height: 1.8;

}


/* =========================================================
   FINAL CTA
========================================================= */

.coaching-final-cta {

    padding: 30px 0 120px;

    background: white;

}


.coaching-cta-card {

    position: relative;

    overflow: hidden;

    padding: 90px 30px;

    border-radius: 32px;

    text-align: center;

    color: white;

    background:

        radial-gradient(
            circle at 20% 30%,
            rgba(47,143,131,.30),
            transparent 25%
        ),

        radial-gradient(
            circle at 80% 80%,
            rgba(93,74,141,.22),
            transparent 25%
        ),

        var(--cp-navy);

}


.cta-ring {

    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.07);

}


.ring-one {

    width: 500px;
    height: 500px;

    left: -240px;
    top: -320px;

}


.ring-two {

    width: 350px;
    height: 350px;

    right: -170px;
    bottom: -260px;

}


.coaching-cta-card h2 {

    max-width: 850px;

    margin: 18px auto;

    font-family: "Playfair Display", serif;

    font-size: clamp(2.7rem, 5vw, 4.8rem);

    line-height: 1.04;

    font-weight: 500;

    letter-spacing: -.04em;

}


.coaching-cta-card h2 span {

    display: block;

    color: var(--cp-teal);

    font-style: italic;

}


.coaching-cta-card p {

    max-width: 620px;

    margin: 25px auto 35px;

    color: rgba(255,255,255,.62);

    line-height: 1.8;

}


.coaching-gold-btn {

    display: inline-flex;

    align-items: center;

    padding: 14px 25px;

    border-radius: 100px;

    background: var(--cp-gold);

    border: 1px solid var(--cp-gold);

    color: var(--cp-navy);

    font-weight: 800;

    transition: .3s ease;

}


.coaching-gold-btn:hover {

    color: var(--cp-navy);

    background: #f1cc79;

    border-color: #f1cc79;

    transform: translateY(-3px);

}


.coaching-gold-btn i {

    margin-left: 8px;

}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.coaching-page .reveal-up {

    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity .8s ease,
        transform .8s ease;

}


.coaching-page .reveal-right {

    opacity: 0;

    transform: translateX(45px);

    transition:
        opacity .9s ease,
        transform .9s ease;

}


.coaching-page .reveal-up.is-visible,
.coaching-page .reveal-right.is-visible {

    opacity: 1;

    transform: translate(0);

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .coaching-hero {

        min-height: auto;

        padding-top: 145px;

    }


    .coaching-hero-card {

        min-height: 400px;

    }


    .coaching-hero-bottom {

        margin-top: 55px;

    }


    .coaching-intro,
    .coaching-cycle-section,
    .instructional-focus,
    .rhythm-section {

        padding: 85px 0;

    }


    .equity-section {

        padding-bottom: 85px;

    }


    .equity-card {

        padding: 60px 45px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .coaching-hero {

        padding-top: 125px;
        padding-bottom: 60px;

    }


    .coaching-hero-title {

        font-size: clamp(3rem, 14vw, 4.5rem);

    }


    .coaching-hero-text {

        font-size: 1rem;

    }


    .coaching-hero-actions {

        flex-direction: column;

    }


    .coaching-hero-actions .btn {

        width: 100%;

        text-align: center;

    }


    .coaching-hero-card {

        min-height: 360px;

        padding: 25px;

        border-radius: 24px;

    }


    .hero-card-quote {

        font-size: 2rem;

    }


    .coaching-hero-bottom {

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 18px;

    }


    .coaching-section-number {

        font-size: 4rem;

    }


    .coaching-display-title {

        font-size: 3rem;

    }


    .coaching-section-title {

        font-size: 2.8rem;

    }


    .cycle-card {

        min-height: 390px;

    }


    .focus-card {

        min-height: 600px;

        padding: 30px;

    }


    .focus-card h3 {

        font-size: 2.5rem;

    }


    .focus-card-footer {

        left: 30px;
        right: 30px;

    }


    .equity-card {

        padding: 55px 30px;

        border-radius: 25px;

    }


    .equity-card h2 {

        font-size: 2.7rem;

    }


    .rhythm-item {

        grid-template-columns: 80px 50px 1fr;

        gap: 15px;

    }


    .rhythm-day {

        font-size: .9rem;

    }


    .rhythm-content h3 {

        font-size: 1.3rem;

    }


    .coaching-cta-card {

        padding: 65px 25px;

        border-radius: 25px;

    }


    .coaching-cta-card h2 {

        font-size: 2.7rem;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .coaching-hero-title {

        font-size: 2.9rem;

    }


    .coaching-hero-bottom {

        grid-template-columns: 1fr;

    }


    .cycle-card {

        min-height: 370px;

        padding: 25px;

    }


    .cycle-detail {

        left: 25px;
        right: 25px;

    }


    .focus-card {

        min-height: 650px;

        padding: 25px;

    }


    .focus-card h3 {

        font-size: 2.25rem;

    }


    .focus-card-footer {

        left: 25px;
        right: 25px;

    }


    .rhythm-item {

        grid-template-columns: 1fr;

        gap: 12px;

    }


    .rhythm-icon {

        width: 45px;
        height: 45px;

    }


    .coaching-cta-card h2 {

        font-size: 2.35rem;

    }

}

/* =========================================================
   IMPACT PAGE
   Jamelia S. Moore, M.Ed.
========================================================= */

.impact-page {
    --impact-navy: #102a43;
    --impact-dark: #081c2d;
    --impact-blue: #246b8f;
    --impact-teal: #2f8f83;
    --impact-gold: #e7b85c;
    --impact-purple: #5d4a8d;
    --impact-cream: #f7f5f1;
    --impact-muted: #657789;
    --impact-border: rgba(16, 42, 67, .10);
    background: #fff;
}


/* =========================================================
   HERO
========================================================= */

.impact-page .impact-hero {
    position: relative;
    min-height: 820px;
    padding: 170px 0 70px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 80% 25%, rgba(47,143,131,.18), transparent 28%),
        radial-gradient(circle at 20% 80%, rgba(36,107,143,.18), transparent 30%),
        linear-gradient(135deg, #081c2d 0%, #102a43 55%, #123b55 100%);
}

.impact-page .impact-hero-grid {
    position: absolute;
    inset: 0;
    opacity: .08;
    background-image:
        linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(to bottom, black, transparent);
}

.impact-page .impact-hero-grid::after {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    right: -250px;
    top: 80px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    box-shadow:
        0 0 0 80px rgba(255,255,255,.025),
        0 0 0 160px rgba(255,255,255,.02);
}

.impact-page .impact-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: rgba(255,255,255,.72);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.impact-page .impact-eyebrow span {
    width: 34px;
    height: 2px;
    background: var(--impact-gold);
}

.impact-page .impact-hero-title {
    max-width: 780px;
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(55px, 7vw, 94px);
    font-weight: 500;
    line-height: .98;
    letter-spacing: -.045em;
}

.impact-page .impact-hero-title em {
    display: block;
    color: var(--impact-gold);
    font-style: italic;
}

.impact-page .impact-hero-text {
    max-width: 650px;
    margin: 34px 0 0;
    color: rgba(255,255,255,.72);
    font-size: 18px;
    line-height: 1.8;
}

.impact-page .impact-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 35px;
}

.impact-page .btn-impact-primary,
.impact-page .btn-impact-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all .3s ease;
}

.impact-page .btn-impact-primary {
    color: var(--impact-dark);
    background: #fff;
}

.impact-page .btn-impact-primary:hover {
    transform: translateY(-3px);
    color: var(--impact-dark);
    box-shadow: 0 15px 30px rgba(0,0,0,.2);
}

.impact-page .btn-impact-secondary {
    color: #fff;
    border: 1px solid rgba(255,255,255,.22);
}

.impact-page .btn-impact-secondary:hover {
    color: #fff;
    border-color: rgba(255,255,255,.5);
    background: rgba(255,255,255,.08);
}


/* =========================================================
   HERO CARD
========================================================= */

.impact-page .impact-hero-card {
    position: relative;
    max-width: 430px;
    margin-left: auto;
    padding: 30px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 24px;
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(18px);
    box-shadow: 0 30px 80px rgba(0,0,0,.2);
}

.impact-page .impact-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.impact-page .impact-card-label {
    color: rgba(255,255,255,.55);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
}

.impact-page .impact-card-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--impact-gold);
    background: rgba(231,184,92,.10);
    border: 1px solid rgba(231,184,92,.22);
}

.impact-page .impact-card-number {
    margin-top: 45px;
    color: #fff;
    font-size: 76px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -.06em;
}

.impact-page .impact-card-title {
    margin-top: 8px;
    color: var(--impact-gold);
    font-size: 18px;
    font-weight: 700;
}

.impact-page .impact-card-location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: rgba(255,255,255,.65);
    font-size: 13px;
}

.impact-page .impact-card-line {
    height: 1px;
    margin: 25px 0;
    background: rgba(255,255,255,.12);
}

.impact-page .impact-hero-card p {
    margin: 0;
    color: rgba(255,255,255,.63);
    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   HERO BOTTOM
========================================================= */

.impact-page .impact-hero-bottom {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-top: 85px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,.13);
}

.impact-page .impact-hero-bottom > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.impact-page .impact-hero-bottom strong {
    color: #fff;
    font-size: 13px;
}

.impact-page .impact-hero-bottom span {
    color: rgba(255,255,255,.48);
    font-size: 11px;
}

.impact-page .impact-hero-bottom > i {
    color: var(--impact-gold);
}


/* =========================================================
   SECTION HEADING
========================================================= */

.impact-page .impact-section-heading {
    max-width: 760px;
    margin-bottom: 60px;
}

.impact-page .impact-section-heading h2 {
    margin-top: 10px;
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 5vw, 65px);
    line-height: 1.05;
    letter-spacing: -.035em;
    color: var(--impact-navy);
}

.impact-page .impact-section-heading h2 span {
    color: var(--impact-blue);
    font-style: italic;
}

.impact-page .impact-section-heading p {
    max-width: 600px;
    margin-top: 20px;
    color: var(--impact-muted);
    line-height: 1.8;
}


/* =========================================================
   STAT CARDS
========================================================= */

.impact-page .impact-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.impact-page .impact-stat-card {
    position: relative;
    min-height: 350px;
    padding: 32px;
    overflow: hidden;
    border: 1px solid var(--impact-border);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 40px rgba(16,42,67,.05);
    transition: transform .35s ease, box-shadow .35s ease;
}

.impact-page .impact-stat-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 25px 55px rgba(16,42,67,.10);
}

.impact-page .impact-stat-card.featured {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(145deg, var(--impact-navy), #174e69);
    box-shadow: 0 25px 60px rgba(16,42,67,.20);
}

.impact-page .stat-card-index {
    color: var(--impact-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
}

.impact-page .featured .stat-card-index {
    color: rgba(255,255,255,.45);
}

.impact-page .stat-icon {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--impact-blue);
    background: rgba(36,107,143,.08);
}

.impact-page .featured .stat-icon {
    color: var(--impact-gold);
    background: rgba(231,184,92,.12);
}

.impact-page .stat-number {
    margin-top: 55px;
    font-size: 68px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -.06em;
    color: var(--impact-navy);
}

.impact-page .featured .stat-number {
    color: #fff;
}

.impact-page .stat-label {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .02em;
}

.impact-page .impact-stat-card p {
    max-width: 270px;
    margin-top: 25px;
    color: var(--impact-muted);
    font-size: 13px;
    line-height: 1.75;
}

.impact-page .featured p {
    color: rgba(255,255,255,.62);
}

.impact-page .growth-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 10px;
    padding: 7px 11px;
    border-radius: 999px;
    color: var(--impact-gold);
    background: rgba(231,184,92,.10);
    font-size: 10px;
    font-weight: 700;
}


/* =========================================================
   CASE STUDY
========================================================= */

.impact-page .impact-case-section {
    overflow: hidden;
}

.impact-page .case-study-visual {
    padding: 32px;
    border-radius: 26px;
    color: #fff;
    background:
        radial-gradient(circle at 85% 15%, rgba(47,143,131,.3), transparent 30%),
        linear-gradient(145deg, var(--impact-dark), var(--impact-navy));
    box-shadow: 0 30px 70px rgba(16,42,67,.16);
}

.impact-page .case-visual-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.impact-page .case-visual-top span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    color: rgba(255,255,255,.5);
}

.impact-page .case-visual-main {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    align-items: center;
    gap: 10px;
    padding: 65px 0;
}

.impact-page .case-before,
.impact-page .case-after {
    display: flex;
    flex-direction: column;
}

.impact-page .case-before span,
.impact-page .case-after span {
    color: rgba(255,255,255,.45);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
}

.impact-page .case-before strong,
.impact-page .case-after strong {
    margin-top: 10px;
    font-size: 62px;
    line-height: 1;
    letter-spacing: -.06em;
}

.impact-page .case-after strong {
    color: var(--impact-gold);
}

.impact-page .case-before small,
.impact-page .case-after small {
    margin-top: 8px;
    color: rgba(255,255,255,.5);
}

.impact-page .case-arrow {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    color: var(--impact-gold);
}

.impact-page .case-growth {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.12);
}

.impact-page .case-growth small {
    display: block;
    color: rgba(255,255,255,.42);
    font-size: 9px;
    letter-spacing: .15em;
}

.impact-page .case-growth strong {
    display: block;
    margin-top: 3px;
    color: var(--impact-gold);
    font-size: 26px;
}

.impact-page .case-growth i {
    color: var(--impact-teal);
    font-size: 30px;
}

.impact-page .case-study-content {
    padding-left: 30px;
}

.impact-page .case-study-content h2 {
    margin-top: 15px;
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -.04em;
    color: var(--impact-navy);
}

.impact-page .case-study-content h2 span {
    color: var(--impact-blue);
    font-style: italic;
}

.impact-page .case-study-content .lead {
    margin-top: 25px;
    color: #3d5263;
    font-size: 17px;
    line-height: 1.75;
}

.impact-page .case-study-content > p:not(.lead) {
    margin-top: 20px;
    color: var(--impact-muted);
    line-height: 1.8;
}

.impact-page .case-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 30px;
}

.impact-page .case-pill-list span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border: 1px solid var(--impact-border);
    border-radius: 999px;
    color: var(--impact-navy);
    background: #fff;
    font-size: 11px;
    font-weight: 700;
}

.impact-page .case-pill-list i {
    color: var(--impact-teal);
}


/* =========================================================
   PROCESS
========================================================= */

.impact-page .impact-process-section {
    background: #fff;
}

.impact-page .impact-process-section h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(43px, 5vw, 66px);
    line-height: 1.02;
    letter-spacing: -.04em;
    color: var(--impact-navy);
}

.impact-page .impact-process-section h2 span {
    color: var(--impact-blue);
    font-style: italic;
}

.impact-page .impact-process-list {
    border-top: 1px solid var(--impact-border);
}

.impact-page .impact-process-item {
    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 20px;
    padding: 30px 0;
    border-bottom: 1px solid var(--impact-border);
}

.impact-page .process-number {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid var(--impact-border);
    border-radius: 50%;
    color: var(--impact-blue);
    font-size: 11px;
    font-weight: 700;
}

.impact-page .impact-process-item h3 {
    margin: 0;
    color: var(--impact-navy);
    font-size: 18px;
    font-weight: 700;
}

.impact-page .impact-process-item p {
    max-width: 600px;
    margin: 9px 0 0;
    color: var(--impact-muted);
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   EVIDENCE CARDS
========================================================= */

.impact-page .leadership-evidence-card {
    height: 100%;
    padding: 38px;
    border: 1px solid var(--impact-border);
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 15px 45px rgba(16,42,67,.05);
    transition: transform .35s ease, box-shadow .35s ease;
}

.impact-page .leadership-evidence-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(16,42,67,.10);
}

.impact-page .hours-card {
    color: #fff;
    border: none;
    background: linear-gradient(145deg, var(--impact-navy), #174e69);
}

.impact-page .evidence-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.impact-page .evidence-card-header > span {
    color: var(--impact-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
}

.impact-page .hours-card .evidence-card-header > span {
    color: rgba(255,255,255,.48);
}

.impact-page .evidence-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: var(--impact-blue);
    background: rgba(36,107,143,.08);
    font-size: 21px;
}

.impact-page .hours-card .evidence-icon {
    color: var(--impact-gold);
    background: rgba(231,184,92,.10);
}

.impact-page .leadership-evidence-card h2 {
    margin-top: 35px;
    font-family: "Playfair Display", serif;
    font-size: 38px;
    line-height: 1.1;
    letter-spacing: -.035em;
    color: var(--impact-navy);
}

.impact-page .leadership-evidence-card h2 span {
    color: var(--impact-blue);
    font-style: italic;
}

.impact-page .hours-card h2 {
    color: #fff;
}

.impact-page .hours-card h2 span {
    color: var(--impact-gold);
}

.impact-page .leadership-evidence-card > p {
    margin-top: 17px;
    color: var(--impact-muted);
    line-height: 1.8;
}

.impact-page .hours-card > p {
    color: rgba(255,255,255,.62);
}

.impact-page .evidence-list {
    margin-top: 28px;
}

.impact-page .evidence-list > div {
    display: flex;
    gap: 12px;
    padding: 13px 0;
    border-top: 1px solid var(--impact-border);
    color: var(--impact-navy);
    font-size: 13px;
    line-height: 1.6;
}

.impact-page .hours-card .evidence-list > div {
    border-color: rgba(255,255,255,.10);
    color: rgba(255,255,255,.75);
}

.impact-page .evidence-list i {
    flex: 0 0 auto;
    margin-top: 3px;
    color: var(--impact-teal);
}

.impact-page .hours-card .evidence-list i {
    color: var(--impact-gold);
}


/* =========================================================
   PHILOSOPHY
========================================================= */

.impact-page .impact-philosophy {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 15% 40%, rgba(47,143,131,.20), transparent 28%),
        linear-gradient(135deg, var(--impact-dark), var(--impact-navy));
}

.impact-page .impact-philosophy::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -300px;
    right: -100px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
}

.impact-page .impact-philosophy-inner {
    position: relative;
    max-width: 850px;
    margin: auto;
    text-align: center;
}

.impact-page .impact-quote-mark {
    height: 45px;
    color: var(--impact-gold);
    font-family: "Playfair Display", serif;
    font-size: 85px;
    line-height: .6;
}

.impact-page .impact-philosophy .eyebrow {
    margin-top: 30px;
    color: rgba(255,255,255,.5);
}

.impact-page .impact-philosophy h2 {
    margin-top: 20px;
    font-family: "Playfair Display", serif;
    font-size: clamp(45px, 6vw, 72px);
    line-height: 1.05;
    letter-spacing: -.04em;
}

.impact-page .impact-philosophy h2 em {
    color: var(--impact-gold);
    font-style: italic;
}

.impact-page .impact-philosophy p {
    margin-top: 22px;
    color: rgba(255,255,255,.65);
    font-size: 20px;
}

.impact-page .philosophy-line {
    width: 60px;
    height: 2px;
    margin: 35px auto 20px;
    background: var(--impact-gold);
}

.impact-page .impact-philosophy-inner > span {
    color: rgba(255,255,255,.45);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}


/* =========================================================
   FINAL CTA
========================================================= */

.impact-page .impact-final-cta {
    background: var(--impact-cream);
}

.impact-page .impact-cta-box {
    position: relative;
    overflow: hidden;
    padding: 65px;
    border-radius: 28px;
    color: #fff;
    background: linear-gradient(135deg, var(--impact-blue), var(--impact-navy));
}

.impact-page .cta-decoration {
    position: absolute;
    width: 350px;
    height: 350px;
    right: -100px;
    top: -170px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    box-shadow:
        0 0 0 55px rgba(255,255,255,.025),
        0 0 0 110px rgba(255,255,255,.02);
}

.impact-page .impact-cta-box h2 {
    margin: 12px 0 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(40px, 5vw, 62px);
    line-height: 1.05;
    letter-spacing: -.04em;
}

.impact-page .impact-cta-box h2 em {
    color: var(--impact-gold);
    font-style: italic;
}

.impact-page .btn-light-impact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 23px;
    border-radius: 999px;
    color: var(--impact-dark);
    background: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all .3s ease;
}

.impact-page .btn-light-impact:hover {
    color: var(--impact-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,.2);
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.impact-page .reveal-up,
.impact-page .reveal-right {
    opacity: 0;
    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.2,.7,.2,1);
}

.impact-page .reveal-up {
    transform: translateY(28px);
}

.impact-page .reveal-right {
    transform: translateX(35px);
}

.impact-page .reveal-up.is-visible,
.impact-page .reveal-right.is-visible {
    opacity: 1;
    transform: translate(0);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .impact-page .impact-hero {
        min-height: auto;
        padding: 150px 0 65px;
    }

    .impact-page .impact-hero-card {
        margin: 20px 0 0;
        max-width: none;
    }

    .impact-page .impact-hero-bottom {
        margin-top: 60px;
    }

    .impact-page .impact-stat-grid {
        grid-template-columns: 1fr;
    }

    .impact-page .impact-stat-card {
        min-height: 300px;
    }

    .impact-page .case-study-content {
        padding-left: 0;
    }

    .impact-page .leadership-evidence-card {
        padding: 30px;
    }

    .impact-page .impact-cta-box {
        padding: 45px;
    }

}


@media (max-width: 767px) {

    .impact-page .impact-hero {
        padding: 125px 0 50px;
    }

    .impact-page .impact-hero-title {
        font-size: clamp(48px, 14vw, 70px);
    }

    .impact-page .impact-hero-text {
        font-size: 16px;
    }

    .impact-page .impact-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .impact-page .btn-impact-primary,
    .impact-page .btn-impact-secondary {
        justify-content: center;
    }

    .impact-page .impact-hero-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .impact-page .impact-hero-bottom > i {
        display: none;
    }

    .impact-page .case-study-visual {
        padding: 25px;
    }

    .impact-page .case-visual-main {
        padding: 45px 0;
        grid-template-columns: 1fr 45px 1fr;
    }

    .impact-page .case-before strong,
    .impact-page .case-after strong {
        font-size: 48px;
    }

    .impact-page .case-arrow {
        width: 40px;
        height: 40px;
    }

    .impact-page .impact-philosophy {
        padding: 100px 0;
    }

    .impact-page .impact-cta-box {
        padding: 40px 28px;
    }

    .impact-page .impact-cta-box .text-lg-end {
        text-align: left !important;
    }

}


@media (max-width: 480px) {

    .impact-page .impact-hero-title {
        font-size: 47px;
    }

    .impact-page .impact-card-number {
        font-size: 60px;
    }

    .impact-page .impact-stat-card {
        padding: 27px;
    }

    .impact-page .stat-number {
        font-size: 58px;
    }

    .impact-page .case-visual-main {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .impact-page .case-arrow {
        transform: rotate(90deg);
    }

    .impact-page .impact-process-item {
        grid-template-columns: 48px 1fr;
        gap: 14px;
    }

    .impact-page .process-number {
        width: 42px;
        height: 42px;
    }

    .impact-page .leadership-evidence-card h2 {
        font-size: 32px;
    }

}

/* =========================================================
   FIRST 90 DAYS PAGE
   Jamelia S. Moore, M.Ed.
========================================================= */

.ninety-page {

    --ninety-navy: #102a43;
    --ninety-dark: #081c2d;
    --ninety-blue: #246b8f;
    --ninety-teal: #2f8f83;
    --ninety-gold: #e7b85c;
    --ninety-purple: #5d4a8d;
    --ninety-cream: #f7f5f1;
    --ninety-muted: #657789;
    --ninety-border: rgba(16,42,67,.10);

    background: #fff;

}


/* =========================================================
   HERO
========================================================= */

.ninety-page .ninety-hero {

    position: relative;

    min-height: 820px;

    padding: 170px 0 60px;

    display: flex;

    align-items: center;

    overflow: hidden;

    color: #fff;

    background:
        radial-gradient(
            circle at 78% 25%,
            rgba(231,184,92,.13),
            transparent 25%
        ),
        radial-gradient(
            circle at 20% 80%,
            rgba(47,143,131,.18),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #081c2d 0%,
            #102a43 55%,
            #174d67 100%
        );

}


.ninety-page .ninety-hero-pattern {

    position: absolute;

    inset: 0;

    opacity: .06;

    background-image:
        linear-gradient(
            rgba(255,255,255,.35) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.35) 1px,
            transparent 1px
        );

    background-size: 65px 65px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent
        );

}


.ninety-page .ninety-eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 25px;

    color: rgba(255,255,255,.65);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .18em;

    text-transform: uppercase;

}


.ninety-page .ninety-eyebrow span {

    width: 34px;

    height: 2px;

    background: var(--ninety-gold);

}


.ninety-page .ninety-hero-title {

    margin: 0;

    font-family: "Playfair Display", serif;

    font-size: clamp(
        60px,
        8vw,
        100px
    );

    line-height: .94;

    letter-spacing: -.055em;

    font-weight: 500;

}


.ninety-page .ninety-hero-title em {

    display: block;

    color: var(--ninety-gold);

    font-style: italic;

}


.ninety-page .ninety-hero-text {

    max-width: 620px;

    margin-top: 35px;

    color: rgba(255,255,255,.70);

    font-size: 18px;

    line-height: 1.8;

}


.ninety-page .ninety-hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 35px;

}


.ninety-page .ninety-btn-primary,
.ninety-page .ninety-btn-secondary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 11px;

    padding: 15px 22px;

    border-radius: 999px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition: .3s ease;

}


.ninety-page .ninety-btn-primary {

    color: var(--ninety-dark);

    background: #fff;

}


.ninety-page .ninety-btn-primary:hover {

    color: var(--ninety-dark);

    transform: translateY(-3px);

    box-shadow:
        0 18px 40px rgba(0,0,0,.2);

}


.ninety-page .ninety-btn-secondary {

    color: #fff;

    border: 1px solid rgba(255,255,255,.20);

}


.ninety-page .ninety-btn-secondary:hover {

    color: #fff;

    border-color: rgba(255,255,255,.45);

    background: rgba(255,255,255,.07);

}


/* =========================================================
   HERO ORBIT VISUAL
========================================================= */

.ninety-page .ninety-hero-visual {

    position: relative;

    width: 470px;

    height: 470px;

    margin-left: auto;

    display: grid;

    place-items: center;

}


.ninety-page .orbit {

    position: absolute;

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 50%;

}


.ninety-page .orbit-one {

    width: 300px;

    height: 300px;

}


.ninety-page .orbit-two {

    width: 440px;

    height: 440px;

    border-color: rgba(231,184,92,.15);

}


.ninety-page .ninety-center {

    position: relative;

    z-index: 3;

    width: 190px;

    height: 190px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255,255,255,.20);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,.10),
            rgba(255,255,255,.025)
        );

    box-shadow:
        0 25px 80px rgba(0,0,0,.25);

    backdrop-filter: blur(15px);

}


.ninety-page .ninety-center span {

    color: rgba(255,255,255,.45);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .2em;

}


.ninety-page .ninety-center strong {

    margin: 2px 0;

    color: var(--ninety-gold);

    font-size: 70px;

    line-height: 1;

    letter-spacing: -.08em;

}


.ninety-page .floating-point {

    position: absolute;

    z-index: 4;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 9px 12px;

    border: 1px solid rgba(255,255,255,.14);

    border-radius: 999px;

    background: rgba(255,255,255,.07);

    backdrop-filter: blur(12px);

    color: rgba(255,255,255,.72);

    font-size: 11px;

}


.ninety-page .floating-point span {

    color: var(--ninety-gold);

    font-weight: 700;

}


.ninety-page .point-one {

    top: 35px;

    left: 60px;

}


.ninety-page .point-two {

    top: 190px;

    right: -5px;

}


.ninety-page .point-three {

    bottom: 40px;

    left: 75px;

}


/* =========================================================
   HERO FOOTER
========================================================= */

.ninety-page .ninety-hero-footer {

    display: flex;

    align-items: center;

    gap: 40px;

    margin-top: 70px;

    padding-top: 25px;

    border-top: 1px solid rgba(255,255,255,.12);

}


.ninety-page .ninety-hero-footer div {

    display: flex;

    align-items: center;

    gap: 9px;

    color: rgba(255,255,255,.55);

    font-size: 12px;

    font-weight: 600;

}


.ninety-page .ninety-hero-footer i {

    color: var(--ninety-gold);

}


/* =========================================================
   INTRO
========================================================= */

.ninety-page .ninety-intro {

    padding-top: 130px;

    padding-bottom: 130px;

}


.ninety-page .ninety-section-title {

    max-width: 750px;

    margin-top: 15px;

    font-family: "Playfair Display", serif;

    font-size: clamp(
        43px,
        5vw,
        68px
    );

    line-height: 1.05;

    letter-spacing: -.045em;

    color: var(--ninety-navy);

}


.ninety-page .ninety-section-title span {

    color: var(--ninety-blue);

    font-style: italic;

}


.ninety-page .ninety-intro-text {

    max-width: 500px;

    margin: 0;

    color: var(--ninety-muted);

    font-size: 16px;

    line-height: 1.9;

}


/* =========================================================
   ROADMAP
========================================================= */

.ninety-page .ninety-heading {

    max-width: 720px;

    margin-bottom: 70px;

}


.ninety-page .ninety-heading h2 {

    margin-top: 12px;

    font-family: "Playfair Display", serif;

    font-size: clamp(
        44px,
        5vw,
        67px
    );

    line-height: 1;

    letter-spacing: -.045em;

    color: var(--ninety-navy);

}


.ninety-page .ninety-heading h2 em {

    color: var(--ninety-blue);

    font-style: italic;

}


.ninety-page .ninety-heading p {

    max-width: 600px;

    margin-top: 20px;

    color: var(--ninety-muted);

    line-height: 1.8;

}


/* =========================================================
   TIMELINE
========================================================= */

.ninety-page .ninety-timeline {

    position: relative;

}


.ninety-page .ninety-timeline::before {

    content: "";

    position: absolute;

    left: 88px;

    top: 0;

    bottom: 0;

    width: 1px;

    background: rgba(16,42,67,.12);

}


.ninety-page .ninety-phase {

    position: relative;

    display: grid;

    grid-template-columns: 180px 1fr;

    gap: 45px;

    padding-bottom: 55px;

}


.ninety-page .phase-marker {

    position: relative;

    z-index: 2;

    width: 118px;

    height: 118px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #fff;

    background: var(--ninety-navy);

    box-shadow:
        0 15px 35px rgba(16,42,67,.15);

}


.ninety-page .phase-marker span {

    color: rgba(255,255,255,.45);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .15em;

}


.ninety-page .phase-marker strong {

    margin-top: 3px;

    color: var(--ninety-gold);

    font-size: 37px;

    line-height: 1;

}


.ninety-page .phase-marker small {

    margin-top: 4px;

    color: rgba(255,255,255,.45);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .15em;

}


.ninety-page .phase-content {

    padding: 35px 40px;

    border: 1px solid var(--ninety-border);

    border-radius: 24px;

    background: #fff;

    box-shadow:
        0 15px 45px rgba(16,42,67,.05);

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}


.ninety-page .phase-content:hover {

    transform: translateY(-5px);

    box-shadow:
        0 25px 60px rgba(16,42,67,.10);

}


.ninety-page .phase-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.ninety-page .phase-label {

    color: var(--ninety-muted);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .16em;

}


.ninety-page .phase-top i {

    width: 42px;

    height: 42px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: var(--ninety-blue);

    background: rgba(36,107,143,.07);

}


.ninety-page .phase-content h3 {

    margin-top: 24px;

    font-family: "Playfair Display", serif;

    font-size: 40px;

    line-height: 1.05;

    letter-spacing: -.035em;

    color: var(--ninety-navy);

}


.ninety-page .phase-intro {

    max-width: 700px;

    margin-top: 15px;

    color: var(--ninety-muted);

    line-height: 1.8;

}


.ninety-page .phase-divider {

    height: 1px;

    margin: 27px 0;

    background: var(--ninety-border);

}


.ninety-page .phase-actions {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 14px 30px;

}


.ninety-page .phase-actions > div {

    display: flex;

    align-items: flex-start;

    gap: 11px;

    color: #3d5263;

    font-size: 13px;

    line-height: 1.65;

}


.ninety-page .phase-actions i {

    flex: 0 0 auto;

    margin-top: 3px;

    color: var(--ninety-teal);

}


.ninety-page .phase-outcome {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 30px;

    padding: 16px 18px;

    border-radius: 13px;

    background: var(--ninety-cream);

}


.ninety-page .phase-outcome span {

    color: var(--ninety-muted);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .15em;

}


.ninety-page .phase-outcome strong {

    color: var(--ninety-navy);

    font-size: 12px;

}


/* =========================================================
   PHASE COLORS
========================================================= */

.ninety-page .phase-two .phase-marker {

    background: var(--ninety-blue);

}


.ninety-page .phase-three .phase-marker {

    background: var(--ninety-teal);

}


/* =========================================================
   PRINCIPLES
========================================================= */

.ninety-page .ninety-principles {

    background: #fff;

}


.ninety-page .ninety-principles-title {

    margin-top: 15px;

    font-family: "Playfair Display", serif;

    font-size: clamp(
        44px,
        5vw,
        66px
    );

    line-height: 1;

    letter-spacing: -.045em;

    color: var(--ninety-navy);

}


.ninety-page .ninety-principles-title span {

    display: block;

    color: var(--ninety-blue);

    font-style: italic;

}


.ninety-page .principle-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 16px;

}


.ninety-page .principle-card {

    position: relative;

    min-height: 245px;

    padding: 27px;

    border: 1px solid var(--ninety-border);

    border-radius: 20px;

    background: #fff;

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


.ninety-page .principle-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 20px 45px rgba(16,42,67,.08);

}


.ninety-page .principle-number {

    color: rgba(16,42,67,.28);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .14em;

}


.ninety-page .principle-card > i {

    display: block;

    margin-top: 28px;

    color: var(--ninety-blue);

    font-size: 24px;

}


.ninety-page .principle-card h3 {

    margin-top: 20px;

    color: var(--ninety-navy);

    font-size: 18px;

}


.ninety-page .principle-card p {

    margin-top: 8px;

    color: var(--ninety-muted);

    font-size: 13px;

    line-height: 1.7;

}


/* =========================================================
   SUCCESS
========================================================= */

.ninety-page .ninety-success {

    position: relative;

    padding: 120px 0;

    overflow: hidden;

    color: #fff;

    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(47,143,131,.20),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            var(--ninety-dark),
            var(--ninety-navy)
        );

}


.ninety-page .success-inner {

    position: relative;

    padding: 60px;

    border: 1px solid rgba(255,255,255,.10);

    border-radius: 27px;

    background: rgba(255,255,255,.035);

}


.ninety-page .success-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.ninety-page .success-icon {

    width: 50px;

    height: 50px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: var(--ninety-gold);

    border: 1px solid rgba(231,184,92,.25);

}


.ninety-page .success-inner h2 {

    margin-top: 30px;

    max-width: 780px;

    font-family: "Playfair Display", serif;

    font-size: clamp(
        43px,
        5vw,
        65px
    );

    line-height: 1.05;

    letter-spacing: -.04em;

}


.ninety-page .success-inner h2 em {

    color: var(--ninety-gold);

    font-style: italic;

}


.ninety-page .success-inner p {

    max-width: 410px;

    margin: 0;

    color: rgba(255,255,255,.62);

    font-size: 14px;

    line-height: 1.85;

}


/* =========================================================
   FINAL CTA
========================================================= */

.ninety-page .ninety-final-cta {

    background: var(--ninety-cream);

}


.ninety-page .ninety-cta-box {

    position: relative;

    overflow: hidden;

    padding: 60px;

    border-radius: 27px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--ninety-blue),
            var(--ninety-navy)
        );

}


.ninety-page .ninety-cta-decoration {

    position: absolute;

    width: 400px;

    height: 400px;

    right: -120px;

    top: -190px;

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 50%;

    box-shadow:
        0 0 0 60px rgba(255,255,255,.025),
        0 0 0 120px rgba(255,255,255,.02);

}


.ninety-page .ninety-cta-box h2 {

    margin-top: 13px;

    font-family: "Playfair Display", serif;

    font-size: clamp(
        43px,
        5vw,
        63px
    );

    line-height: 1.05;

    letter-spacing: -.04em;

}


.ninety-page .ninety-cta-box h2 em {

    color: var(--ninety-gold);

    font-style: italic;

}


.ninety-page .ninety-cta-button {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 16px 24px;

    border-radius: 999px;

    color: var(--ninety-dark);

    background: #fff;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition: .3s ease;

}


.ninety-page .ninety-cta-button:hover {

    color: var(--ninety-dark);

    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(0,0,0,.2);

}


/* =========================================================
   REVEAL
========================================================= */

.ninety-page .reveal-up,
.ninety-page .reveal-right {

    opacity: 0;

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.2,.7,.2,1);

}


.ninety-page .reveal-up {

    transform: translateY(28px);

}


.ninety-page .reveal-right {

    transform: translateX(35px);

}


.ninety-page .reveal-up.is-visible,
.ninety-page .reveal-right.is-visible {

    opacity: 1;

    transform: translate(0);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .ninety-page .ninety-hero {

        min-height: auto;

        padding: 145px 0 60px;

    }


    .ninety-page .ninety-hero-visual {

        width: 400px;

        height: 400px;

        margin: 20px auto 0;

    }


    .ninety-page .ninety-hero-footer {

        margin-top: 55px;

    }


    .ninety-page .ninety-phase {

        grid-template-columns: 130px 1fr;

        gap: 25px;

    }


    .ninety-page .ninety-timeline::before {

        left: 64px;

    }


    .ninety-page .phase-marker {

        width: 95px;

        height: 95px;

    }


    .ninety-page .phase-marker strong {

        font-size: 31px;

    }


    .ninety-page .phase-content {

        padding: 30px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .ninety-page .ninety-hero {

        padding: 120px 0 45px;

    }


    .ninety-page .ninety-hero-title {

        font-size: 57px;

    }


    .ninety-page .ninety-hero-text {

        font-size: 16px;

    }


    .ninety-page .ninety-hero-actions {

        flex-direction: column;

        align-items: stretch;

    }


    .ninety-page .ninety-btn-primary,
    .ninety-page .ninety-btn-secondary {

        justify-content: center;

    }


    .ninety-page .ninety-hero-visual {

        width: 330px;

        height: 330px;

    }


    .ninety-page .orbit-one {

        width: 220px;

        height: 220px;

    }


    .ninety-page .orbit-two {

        width: 310px;

        height: 310px;

    }


    .ninety-page .ninety-center {

        width: 145px;

        height: 145px;

    }


    .ninety-page .ninety-center strong {

        font-size: 53px;

    }


    .ninety-page .point-one {

        left: 0;

    }


    .ninety-page .point-two {

        right: -15px;

    }


    .ninety-page .point-three {

        left: 5px;

        bottom: 10px;

    }


    .ninety-page .ninety-hero-footer {

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 18px;

    }


    .ninety-page .ninety-intro {

        padding-top: 90px;

        padding-bottom: 90px;

    }


    .ninety-page .ninety-timeline::before {

        display: none;

    }


    .ninety-page .ninety-phase {

        display: block;

        padding-bottom: 35px;

    }


    .ninety-page .phase-marker {

        margin-bottom: -20px;

        margin-left: 20px;

        width: 90px;

        height: 90px;

    }


    .ninety-page .phase-content {

        padding: 45px 24px 25px;

    }


    .ninety-page .phase-content h3 {

        font-size: 34px;

    }


    .ninety-page .phase-actions {

        grid-template-columns: 1fr;

        gap: 13px;

    }


    .ninety-page .phase-outcome {

        align-items: flex-start;

        flex-direction: column;

        gap: 7px;

    }


    .ninety-page .principle-grid {

        grid-template-columns: 1fr;

    }


    .ninety-page .success-inner {

        padding: 38px 25px;

    }


    .ninety-page .success-inner p {

        margin-top: 20px;

    }


    .ninety-page .ninety-cta-box {

        padding: 40px 27px;

    }


    .ninety-page .ninety-cta-box .text-lg-end {

        text-align: left !important;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .ninety-page .ninety-hero-title {

        font-size: 50px;

    }


    .ninety-page .ninety-hero-visual {

        width: 285px;

        height: 285px;

    }


    .ninety-page .orbit-one {

        width: 190px;

        height: 190px;

    }


    .ninety-page .orbit-two {

        width: 270px;

        height: 270px;

    }


    .ninety-page .ninety-center {

        width: 125px;

        height: 125px;

    }


    .ninety-page .ninety-center strong {

        font-size: 45px;

    }


    .ninety-page .floating-point {

        font-size: 9px;

        padding: 7px 9px;

    }


    .ninety-page .point-two {

        right: -25px;

    }


    .ninety-page .phase-content {

        padding-left: 20px;

        padding-right: 20px;

    }


    .ninety-page .phase-content h3 {

        font-size: 30px;

    }


    .ninety-page .phase-outcome strong {

        font-size: 11px;

    }

}

/* =========================================
   GLOBAL HERO TITLE VISIBILITY FIX
   ========================================= */

.about-hero-title,
.coaching-hero-title,
.impact-hero-title,
.ninety-page .hero-title,
.page-hero h1 {
    color: #f7f5f1 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Highlighted words */
.about-hero-title span,
.coaching-hero-title span,
.impact-hero-title span,
.ninety-page .hero-title span {
    color: #e7b85c !important;
    opacity: 1 !important;
    visibility: visible !important;
}
/* =========================================
   90 DAYS HERO TITLE VISIBILITY FIX
   ========================================= */

.ninety-hero-title {
    color: #f7f5f1 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.ninety-hero-title em {
    display: block;
    color: #e7b85c !important;
    opacity: 1 !important;
    visibility: visible !important;
}
#form-status {
    margin-bottom: 20px;
}

.form-alert {
    padding: 13px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
}

.form-alert.success {
    background: rgba(47,143,131,.15);
    border: 1px solid rgba(47,143,131,.35);
    color: #9de0d6;
}

.form-alert.error {
    background: rgba(220,80,80,.12);
    border: 1px solid rgba(220,80,80,.25);
    color: #ffb5b5;
}
/* =========================================
   CONTACT PROMISE TEXT VISIBILITY FIX
   ========================================= */

.contact-page .promise-title {
    color: #f7f5f1 !important;
    opacity: 1 !important;
    visibility: visible !important;
    -webkit-text-fill-color: #f7f5f1 !important;
}

.contact-page .promise-text {
    color: rgba(255, 255, 255, 0.72) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.contact-page .promise-box .section-label {
    color: #e7b85c !important;
}

/* =========================================================
   CONTACT PROFILE / MEET JAMELIA
========================================================= */

.contact-page .contact-profile-section {
    position: relative;
    padding: 110px 0;
    background: #f7f5f1;
    overflow: hidden;
}

.contact-page .contact-profile-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    left: -250px;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid rgba(47, 143, 131, .12);
    border-radius: 50%;
}


/* IMAGE */

.contact-page .contact-profile-image-wrap {
    position: relative;
    max-width: 470px;
    margin: 0 auto;
    padding: 14px;
}

.contact-page .contact-profile-image-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(16, 42, 67, .12);
    border-radius: 30px;
    transform: rotate(-3deg);
}

.contact-page .contact-profile-image-wrap::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    right: -20px;
    bottom: 20px;
    border: 1px solid rgba(231, 184, 92, .45);
    border-radius: 50%;
    z-index: 0;
}

.contact-page .contact-profile-image {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(16, 42, 67, .15);
}


/* IMAGE BADGE */

.contact-page .contact-profile-badge {
    position: absolute;
    z-index: 3;
    left: -10px;
    bottom: 45px;

    display: flex;
    align-items: center;
    gap: 13px;

    padding: 14px 19px;

    border: 1px solid rgba(255,255,255,.15);
    border-radius: 15px;

    background: #102a43;
    color: #fff;

    box-shadow: 0 15px 35px rgba(16,42,67,.20);
}

.contact-page .badge-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border-radius: 11px;

    background: #e7b85c;
    color: #102a43;

    font-size: 12px;
    font-weight: 800;
}

.contact-page .contact-profile-badge small {
    display: block;
    color: rgba(255,255,255,.55);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contact-page .contact-profile-badge strong {
    display: block;
    margin-top: 2px;
    color: #fff;
    font-size: 15px;
}


/* TEXT */

.contact-page .contact-profile-content {
    max-width: 650px;
    padding-left: 20px;
}

.contact-page .contact-profile-title {
    margin: 14px 0 25px;

    color: #102a43 !important;

    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -.04em;
}

.contact-page .contact-profile-title span {
    display: block;
    color: #2f8f83 !important;
}

.contact-page .contact-profile-lead {
    max-width: 600px;
    margin-bottom: 18px;

    color: #102a43;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.75;
}

.contact-page .contact-profile-text {
    max-width: 600px;

    color: #657789;
    font-size: 15px;
    line-height: 1.85;
}


/* HIGHLIGHTS */

.contact-page .contact-profile-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;

    margin-top: 32px;
}

.contact-page .profile-highlight {
    display: flex;
    align-items: center;
    gap: 11px;

    min-height: 78px;
    padding: 12px;

    border: 1px solid rgba(16,42,67,.08);
    border-radius: 15px;

    background: #fff;

    transition: .25s ease;
}

.contact-page .profile-highlight:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(16,42,67,.08);
}

.contact-page .highlight-icon {
    flex: 0 0 38px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: rgba(47,143,131,.10);
    color: #2f8f83;
}

.contact-page .profile-highlight strong {
    display: block;

    color: #102a43;
    font-size: 12px;
    font-weight: 800;
}

.contact-page .profile-highlight span {
    display: block;
    margin-top: 3px;

    color: #7b8995;
    font-size: 11px;
    line-height: 1.3;
}


/* LINK */

.contact-page .contact-profile-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-top: 30px;

    color: #102a43;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;

    border-bottom: 1px solid #e7b85c;
    padding-bottom: 5px;

    transition: .25s ease;
}

.contact-page .contact-profile-link:hover {
    color: #2f8f83;
    gap: 13px;
}


/* MOBILE */

@media (max-width: 991px) {

    .contact-page .contact-profile-content {
        padding-left: 0;
    }

    .contact-page .contact-profile-image-wrap {
        max-width: 500px;
    }

}


@media (max-width: 767px) {

    .contact-page .contact-profile-section {
        padding: 75px 0;
    }

    .contact-page .contact-profile-title {
        font-size: 43px;
    }

    .contact-page .contact-profile-lead {
        font-size: 17px;
    }

    .contact-page .contact-profile-highlights {
        grid-template-columns: 1fr;
    }

    .contact-page .profile-highlight {
        min-height: 68px;
    }

    .contact-page .contact-profile-badge {
        left: 0;
        bottom: 30px;
    }

}


@media (max-width: 480px) {

    .contact-page .contact-profile-section {
        padding: 60px 0;
    }

    .contact-page .contact-profile-image-wrap {
        padding: 9px;
    }

    .contact-page .contact-profile-image {
        border-radius: 20px;
    }

    .contact-page .contact-profile-title {
        font-size: 38px;
    }

}
/* =========================================================
   ABOUT CLOSING SECTION - TEXT VISIBILITY FIX
========================================================= */

.about-page .about-closing .closing-card h2 {
    color: #f7f5f1 !important;
    opacity: 1 !important;
    visibility: visible !important;
    -webkit-text-fill-color: #f7f5f1 !important;
}

.about-page .about-closing .closing-card h2 span {
    color: #2f8f83 !important;
    opacity: 1 !important;
    visibility: visible !important;
    -webkit-text-fill-color: #2f8f83 !important;
}

.about-page .about-closing .closing-card p {
    color: rgba(255, 255, 255, 0.72) !important;
    opacity: 1 !important;
    visibility: visible !important;
}
/* =========================================================
   THIN / PREMIUM FOOTER
========================================================= */

.portfolio-footer-thin {
    padding: 42px 0 22px !important;
    margin-top: 0 !important;
    background: #081c2d;
}

.portfolio-footer-thin .footer-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.portfolio-footer-thin .footer-brand {
    max-width: 600px;
}

.portfolio-footer-thin .footer-brand .eyebrow {
    color: #e7b85c;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
}

.portfolio-footer-thin .footer-brand h3 {
    margin: 5px 0 6px;
    color: #f7f5f1 !important;
    font-size: 21px;
    font-weight: 700;
}

.portfolio-footer-thin .footer-brand p {
    margin: 0;
    color: rgba(255,255,255,.52) !important;
    font-size: 13px;
}


/* CONTACT AREA */

.portfolio-footer-thin .footer-contact {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.portfolio-footer-thin .footer-contact > a:not(.footer-resume) {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: rgba(255,255,255,.65) !important;
    font-size: 12px;
    text-decoration: none;

    transition: .2s ease;
}

.portfolio-footer-thin .footer-contact > a:not(.footer-resume):hover {
    color: #e7b85c !important;
}

.portfolio-footer-thin .footer-contact i {
    color: #2f8f83;
    font-size: 14px;
}


/* RESUME */

.portfolio-footer-thin .footer-resume {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 16px;

    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50px;

    color: #f7f5f1 !important;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;

    transition: .25s ease;
}

.portfolio-footer-thin .footer-resume i {
    color: #e7b85c;
}

.portfolio-footer-thin .footer-resume:hover {
    border-color: #e7b85c;
    background: rgba(231,184,92,.08);
    color: #e7b85c !important;
    transform: translateY(-2px);
}


/* BOTTOM */

.portfolio-footer-thin .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 28px;
    padding-top: 17px;

    border-top: 1px solid rgba(255,255,255,.09);

    color: rgba(255,255,255,.38);
    font-size: 11px;
}

.portfolio-footer-thin .footer-location {
    color: rgba(255,255,255,.32);
}


/* MOBILE */

@media (max-width: 767px) {

    .portfolio-footer-thin {
        padding: 35px 0 20px !important;
    }

    .portfolio-footer-thin .footer-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .portfolio-footer-thin .footer-contact {
        justify-content: flex-start;
        width: 100%;
    }

    .portfolio-footer-thin .footer-bottom {
        margin-top: 24px;
    }

}


@media (max-width: 480px) {

    .portfolio-footer-thin .footer-contact {
        flex-direction: column;
        align-items: flex-start;
    }

    .portfolio-footer-thin .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

}