  :root {
      --green-deep: #0d3d2b;
      --green-mid: #1a5c3a;
      --green-light: #2a7a50;
      --gold: #c9a94e;
      --gold-light: #e8c97a;
      --gold-pale: #f5e8c0;
      --cream: #faf6ed;
      --white: #ffffff;
      --dark: #0a0a0a;
      --text-dark: #1a1a1a;
      --text-mid: #3d3d3d;
      --text-light: #6b6b6b;
  }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--text-dark);
      overflow-x: hidden;
  }

  .btn-primary {
      background: var(--gold);
      color: var(--green-deep);
      padding: 14px 32px;
      border-radius: 6px;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      letter-spacing: 0.04em;
      transition: all 0.25s;
      border: none;
      cursor: pointer;
  }

  .btn-primary:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(201, 169, 78, 0.35);
  }

  .btn-outline {
      background: transparent;
      color: var(--white);
      padding: 14px 32px;
      border-radius: 6px;
      font-weight: 500;
      font-size: 14px;
      text-decoration: none;
      letter-spacing: 0.04em;
      border: 1px solid rgba(255, 255, 255, 0.3);
      transition: all 0.25s;
      cursor: pointer;
  }

  .btn-outline:hover {
      border-color: var(--gold);
      color: var(--gold);
      transform: translateY(-2px);
  }

  .hero-right {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .hero-img-wrapper {
      position: relative;
      width: 480px;
      max-width: 100%;
  }

  .hero-img-frame {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  }

  .hero-img-frame img {
      width: 100%;
      display: block;
      object-fit: cover;
  }

  .hero-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(13, 61, 43, 0.4) 0%, transparent 60%);
  }

  .hero-badge {
      position: absolute;
      bottom: -20px;
      right: -20px;
      background: var(--gold);
      color: var(--green-deep);
      width: 100px;
      height: 100px;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      box-shadow: 0 12px 30px rgba(201, 169, 78, 0.4);
      z-index: 3;
  }

  .hero-badge .num {
      font-size: 28px;
      font-weight: 700;
      line-height: 1;
  }

  .hero-badge .lbl {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      line-height: 1.3;
      text-align: center;
  }

  .hero-gold-line {
      position: absolute;
      top: -20px;
      left: -20px;
      width: 80px;
      height: 80px;
      border-top: 3px solid var(--gold);
      border-left: 3px solid var(--gold);
      border-radius: 4px 0 0 0;
  }

  /* ─── MARQUEE ─── */
  .marquee-strip {
      background: var(--gold);
      padding: 14px 0;
      overflow: hidden;
      position: relative;
  }

  .marquee-track {
      display: flex;
      gap: 0;
      animation: marquee 20s linear infinite;
      white-space: nowrap;
  }

  .marquee-item {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 0 32px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--green-deep);
      flex-shrink: 0;
  }

  .marquee-item::after {
      content: '✦';
      font-size: 10px;
      color: var(--green-deep);
      opacity: 0.5;
  }

  @keyframes marquee {
      from {
          transform: translateX(0);
      }

      to {
          transform: translateX(-50%);
      }
  }

  /* ─── SECTION BASE ─── */


  .section-inner {
      max-width: 1200px;
      margin: 0 auto;
  }

  .section-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 0px;
  }

  .section-label::before,
  .section-label::after {
      content: '';
      display: block;
      height: 1px;
      width: 30px;
      background: var(--gold);
  }

  .section-label span {
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
  }

  .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(30px, 4vw, 50px);
      font-weight: 700;
      line-height: 0.8;
      color: var(--green-deep);
      padding-bottom: 10px;
  }

  .section-title.light {
      color: var(--white);
  }

  .section-subtitle {
      /* font-family: 'Cormorant Garamond', serif; */
      font-size: 16px;
      color: var(--text-mid);
      line-height: 1.2;
      margin-top: 0px;
      font-weight: 400;
  }

  .section-subtitle.light {
      color: rgba(255, 255, 255, 0.75);
  }

  /* ─── ABOUT / EDUCATION BEYOND SCHOOLING ─── */
  .about-section {
      background: var(--cream);
      padding: 0px 0px 50px;
  }

  .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
  }

  .about-img-stack {
      position: relative;
      height: 100%;
  }

  .about-img-main {
      position: relative;
      top: 0;
      left: 0;
      width: 85%;
      height: 90%;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 24px 60px rgba(13, 61, 43, 0.2);
  }

  .about-img-main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .about-img-accent {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 50%;
      height: 50%;
      border-radius: 12px;
      overflow: hidden;
      border: 4px solid var(--cream);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  }

  .about-img-accent img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .about-stat-box {
      position: absolute;
      top: 50%;
      left: -30px;
      transform: translateY(-50%);
      background: var(--green-deep);
      color: white;
      padding: 20px 24px;
      border-radius: 10px;
      box-shadow: 0 16px 40px rgba(13, 61, 43, 0.3);
      text-align: center;
      min-width: 120px;
  }

  .about-stat-box .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 32px;
      font-weight: 700;
      color: var(--gold-light);
      line-height: 1;
  }

  .about-stat-box .stat-label {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.7);
      margin-top: 4px;
      letter-spacing: 0.05em;
  }



  .questions-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 0px 0;
      /* border-bottom: 1px solid rgba(201, 169, 78, 0.2); */
      /* font-family: 'Cormorant Garamond', serif; */
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.5;
  }

  .questions-list li::before {
      content: '◆';
      color: var(--gold);
      font-size: 9px;
      margin-top: 7px;
      flex-shrink: 0;
  }

  .about-note {
      font-size: 15px;
      line-height: 1.2;
      color: var(--text-mid);
      padding: 10px 24px;
      border-left: 3px solid var(--gold);
      background: rgba(201, 169, 78, 0.06);
      border-radius: 0 8px 8px 0;
      font-style: italic;
      font-family: 'Cormorant Garamond', serif !important;
      font-size: 18px;
      margin-top: 10px;
  }

  /* ─── JOURNEY ─── */
  .journey-section {
      background: var(--green-deep);
      position: relative;
      overflow: hidden;
      padding: 0px 0px 20px;
  }

  .journey-section::before {
      content: '';
      position: absolute;
      top: -200px;
      right: -200px;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201, 169, 78, 0.06), transparent 70%);
  }

  .journey-header {
      text-align: center;
      padding: 0px 0px 20px;
  }

  .journey-cards {
      display: flex;
      z-index: 2;
      width: 100%;
      flex-wrap: wrap;
  }

  .journey-cards>div {
      width: 33.3%;
  }

  .journey-cards>div:nth-child(4),
  .journey-cards>div:nth-child(5) {
      width: 50%;
  }

  .journey-card {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(201, 169, 78, 0.2);
      padding: 14px 36px;
      position: relative;
      overflow: hidden;
      transition: all 0.35s ease;
  }

  .journey-card:first-child {
      border-radius: 12px 0 0 12px;
  }

  .journey-card:last-child {
      border-radius: 0 12px 12px 0;
  }

  .journey-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(201, 169, 78, 0.08), transparent);
      opacity: 0;
      transition: opacity 0.35s;
  }

  .journey-card:hover::before {
      opacity: 1;
  }

  .journey-card:hover {
      border-color: rgba(201, 169, 78, 0.5);
      transform: translateY(-4px);
  }

  .journey-num {
      font-family: 'Playfair Display', serif;
      font-size: 72px;
      font-weight: 700;
      color: rgba(201, 169, 78, 0.12);
      line-height: 1;
      margin-bottom: 20px;
      position: absolute;
      top: 16px;
      right: 24px;
  }

  .journey-grade {
      display: inline-block;
      background: rgba(201, 169, 78, 0.15);
      border: 1px solid rgba(201, 169, 78, 0.3);
      color: var(--gold-light);
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 600;
      padding: 5px 12px;
      border-radius: 100px;
      margin-bottom: 5px;
  }

  .journey-title {
      font-family: 'Playfair Display', serif;
      font-size: 26px;
      font-weight: 700;
      color: var(--white);
      line-height: 1.3;
      margin-bottom: 5px;
  }

  .journey-age {
      font-size: 13px;
      color: var(--gold);
      font-weight: 600;
      letter-spacing: 0.05em;
      margin-bottom: 16px;
      text-transform: uppercase;
  }

  .journey-desc {
      font-size: 15px;
      line-height: 1.75;
      color: rgba(255, 255, 255, 0.65);
  }

  /* ─── THREE PILLARS ─── */
  .pillars-section {
      background: var(--cream);
  }

  .pillars-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      padding: 0px 0px 50px;
  }


  .pillar-items {
      margin-top: 10px;
  }

  .pillar-item {
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 20px;
      align-items: start;
      padding: 0px;
      /* border-bottom: 1px solid rgba(201, 169, 78, 0.2); */
  }

  .pillar-item:last-child {
      border-bottom: none;
  }

  .pillar-icon {
      width: 56px;
      height: 56px;
      background: var(--green-deep);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      flex-shrink: 0;
  }

  .pillar-content h3 {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--green-deep);
      margin-bottom: 0px;
      line-height: 25px;
  }

  .pillar-content p {
      font-size: 15px;
      line-height: 1.7;
      color: var(--text-mid);
  }

  .pillars-right {
      position: relative;
  }

  .pillars-quote-card {
      background: var(--green-deep);
      border-radius: 16px;
      padding: 22px 44px;
      position: relative;
      overflow: hidden;
  }

  .pillars-quote-card::before {
      content: '❝';
      position: absolute;
      top: 20px;
      right: 32px;
      font-size: 120px;
      line-height: 1;
      color: rgba(201, 169, 78, 0.08);
      font-family: serif;
  }

  .pq-kicker {
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
      margin-bottom: 24px;
  }

  .pq-main {
      font-family: 'Playfair Display', serif;
      font-size: 30px;
      font-weight: 700;
      color: var(--gold-light);
      line-height: 1.3;
      margin-bottom: 8px;
  }

  .pq-text {
      font-size: 15px;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.72);
      margin-bottom: 20px;
  }

  .pq-divider {
      width: 60px;
      height: 2px;
      background: linear-gradient(to right, var(--gold), transparent);
      margin: 8px 0;
  }

  .pq-result {
      font-size: 15px;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.72);
  }

  .pq-result strong {
      color: var(--gold-light);
      font-weight: 600;
  }

  /* ─── PHILOSOPHY ─── */
  .philosophy-section {
      background: var(--green-deep);
      position: relative;
      padding: 0px 0px 60px;
  }

  .philosophy-header {
      text-align: center;
      margin-bottom: 20px;
  }

  .phil-cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
  }

  .phil-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(201, 169, 78, 0.2);
      border-radius: 14px;
      padding: 16px 18px;
      text-align: center;
      transition: all 0.35s;
  }

  .phil-card:hover {
      background: rgba(201, 169, 78, 0.08);
      border-color: rgba(201, 169, 78, 0.45);
      transform: translateY(-6px);
  }

  .phil-icon {
      width: 68px;
      height: 68px;
      border-radius: 16px;
      background: rgba(201, 169, 78, 0.12);
      border: 1px solid rgba(201, 169, 78, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      margin: 0 auto 10px;
  }

  .phil-title {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 12px;
  }

  .phil-desc {
      font-size: 14px;
      line-height: 1.75;
      color: rgba(255, 255, 255, 0.62);
  }

  .phil-quote {
      margin-top: 64px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(201, 169, 78, 0.2);
      border-radius: 12px;
      padding: 16px 48px;
      text-align: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 16px;
      line-height: 1.2;
      color: rgba(255, 255, 255, 0.75);
      font-style: italic;
  }

  .phil-quote strong {
      color: var(--gold-light);
      font-style: normal;
      font-weight: 600;
  }

  /* ─── MORE THAN A SCHOOL ─── */
  .more-section {
      background: var(--cream);
      padding: 0px 0px 50px;
  }

  .more-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      padding: 10px 0px;
  }

  .more-content {}

  .more-list {
      margin: 0px 0px 10px;
      list-style: none;
  }

  .more-list li {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 0px 0;
      font-size: 16px;
      line-height: 1.6;
      color: var(--text-mid);
      /* border-bottom: 1px solid rgba(201, 169, 78, 0.15); */
  }

  .more-list li:last-child {
      border-bottom: none;
  }

  .more-list-icon {
      width: 28px;
      height: 28px;
      background: var(--green-deep);
      border-radius: 6px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      margin-top: 2px;
  }

  .more-tagline {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      line-height: 1.65;
      color: var(--text-mid);
      font-style: italic;
      border-left: 3px solid var(--gold);
      padding-left: 20px;
  }

  /* .more-img-mosaic {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 200px 200px;
      gap: 12px;
      border-radius: 16px;
      overflow: hidden;
  } */

  .more-img-mosaic .img-big {
      grid-row: span 2;
      border-radius: 12px;
      overflow: hidden;
  }

  .more-img-mosaic img {
      width: 100%;
      height: 350px;
      object-fit: cover;
      border-radius: 12px;
      transition: transform 0.4s ease;
  }

  .more-img-mosaic img:hover {
      transform: scale(1.04);
  }

  /* ─── PARENTS ─── */
  .parents-section {
      background: var(--green-deep);
      position: relative;
      overflow: hidden;
      padding: 0px 0px 50px;
  }

  .parents-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
  }

  .parents-img {
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
      position: relative;
  }

  .parents-img img {
      width: 100%;
      display: block;
      object-fit: cover;
      height: 420px;
  }

  .parents-img-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(13, 61, 43, 0.9), transparent);
      padding: 32px 28px 24px;
      color: white;
      font-family: 'Cormorant Garamond', serif;
      font-size: 17px;
      font-style: italic;
  }

  .parents-content {}

  .parents-intro {
      font-size: 14px;
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.72);
      margin-bottom: 10px;
  }

  .parents-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
  }

  .parent-trait {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(201, 169, 78, 0.2);
      border-radius: 8px;
      padding: 5px 16px;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.82);
      transition: all 0.25s;
  }

  .parent-trait:hover {
      background: rgba(201, 169, 78, 0.1);
      border-color: rgba(201, 169, 78, 0.4);
  }

  .parent-trait::before {
      content: '✓';
      color: var(--gold);
      font-weight: 700;
      font-size: 14px;
      flex-shrink: 0;
  }

  .parents-note {
      margin-top: 8px;
      font-size: 15px;
      color: rgba(255, 255, 255, 0.55);
      font-style: italic;
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
  }

  /* ─── INVITATION ─── */
  .invitation-section {
      background: var(--cream);
  }

  .invitation-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
      padding: 10px 0px 50px;
  }

  .invitation-text {}

  .invitation-intro {
      font-size: 16px;
      line-height: 1.8;
      color: var(--text-mid);
      margin-bottom: 10px;
  }

  .invitation-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
  }

  .invite-group {}

  .invite-group-title {
      font-size: 12px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--green-mid);
      margin-bottom: 0px;
  }

  .invite-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 15px;
      color: var(--text-mid);
      padding: 0px 0;
  }

  .invite-item::before {
      content: '→';
      color: var(--gold);
      font-weight: 700;
      flex-shrink: 0;
  }

  .invitation-right {
      background: var(--green-deep);
      border-radius: 16px;
      overflow: hidden;
  }

  .invitation-img {
      /* height: 260px; */
      overflow: hidden;
  }

  .invitation-img img {
      width: 100%;
      height: 300px;
      object-fit: cover;
  }

  .invitation-card-body {
      padding: 36px;
  }

  .invitation-card-body h3 {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      color: var(--white);
      margin-bottom: 16px;
  }

  .invitation-card-body p {
      font-size: 15px;
      line-height: 1.75;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 28px;
  }

  /* ─── FINAL CTA ─── */
  .final-cta {
      background: var(--green-deep);
      position: relative;
      overflow: hidden;
      padding: 100px 5%;
      text-align: center;
      padding: 0px 0px 10px;
  }

  .final-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at center, rgba(201, 169, 78, 0.08), transparent 70%);
  }

  .cta-inner {
      position: relative;
      z-index: 2;
      max-width: 100%;
      margin: 0 auto;
  }

  .cta-inner h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 700;
      color: var(--white);
      line-height: 1.0;
      margin-bottom: 0px;
  }

  .cta-inner h2 em {
      color: var(--gold-light);
      font-style: italic;
  }

  .cta-inner p {
      font-size: 17px;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.75;
      margin-bottom: 44px;
      font-family: 'Cormorant Garamond', serif;
  }



  /* ─── SCROLL ANIMATIONS ─── */
  .reveal {
      opacity: 1;
      transform: translateY(32px);
      transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
      opacity: 1;
      transform: translateY(0);
  }

  .reveal-delay-1 {
      transition-delay: 0.1s;
  }

  .reveal-delay-2 {
      transition-delay: 0.2s;
  }

  .reveal-delay-3 {
      transition-delay: 0.3s;
  }

  .reveal-delay-4 {
      transition-delay: 0.4s;
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {


      .about-grid,
      .pillars-layout,
      .more-grid,
      .parents-layout,
      .invitation-layout {
          grid-template-columns: 1fr;
          gap: 50px;
      }

      .about-img-stack {
          height: auto;
      }

      .about-stat-box {
          left: 16px;
      }

      .about-img-accent {
          display: none;
      }

      .journey-cards {
          grid-template-columns: 1fr;
          gap: 2px;
          padding-bottom: 20px;
      }

      .journey-card:first-child,
      .journey-card:last-child {
          border-radius: 0;
      }

      .journey-card:first-child {
          border-radius: 12px 12px 0 0;
      }

      .journey-card:last-child {
          border-radius: 0 0 12px 12px;
      }

      .phil-cards {
          grid-template-columns: 1fr 1fr;
      }

      .parents-layout {
          grid-template-columns: 1fr;
      }


  }

  @media (max-width: 768px) {
      section {
          padding: 20px 15px;
      }

      section.slider-one {
          padding: 0px;
      }

      .hamburger {
          display: flex;
      }


      .phil-cards {
          grid-template-columns: 1fr;
      }

      .parents-grid {
          grid-template-columns: 1fr;
      }

      .invitation-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 20px 6px;
      }

      .more-img-mosaic {
          grid-template-rows: 160px 160px;
      }

      .pillars-quote-card {
          padding: 36px 28px;
      }

      .pq-main {
          font-size: 24px;
      }

      .phil-quote {
          padding: 28px 24px;
      }

      .about-img-main {
          width: 100%;
      }

      .about-grid,
      .pillars-layout,
      .more-grid,
      .parents-layout,
      .invitation-layout {
          gap: 20px;
      }

      .section-inner {
          padding: 0 15px;
      }

      .journey-card:not(:last-child) {
          margin: 0;
      }

      .journey-cards>div {
          width: 49%;
      }

      .journey-cards>div:nth-child(5) {
          width: 100%;
      }

      .philosophy-header {
          margin-bottom: 20px;
      }

      section#philosophy .col-lg-12 {
          padding: 0;
      }

      section#philosophy .section-inner {
          padding: 0;
      }

      .phil-quote.reveal {
          margin-top: 30px !important;
      }

      .more-section .more-grid {
          padding: 0 15px;
      }

      section#parents .section-inner {
          padding: 0 15px;
      }

      .final-cta {
          padding: 0px 15px;
      }

      .about-section {
          padding: 0 0 30px;
      }

      .about-img-main {
          height: auto;
      }

      section#about .about-content.reveal {
          margin: 10px 0 0 0;
      }

      .about-img-accent {
          display: block;
          bottom: 0;
          box-shadow: none;
          border: 2px solid #fff;
          display: none;
      }

      .about-note {
          margin: 20px 0;
      }

      .journey-section {
          padding: 0px 0px 40px;
      }

      section#pillars .section-inner {
          padding: 0;
      }

      section#more .more-grid {
          padding: 0;
      }

      .parents-img img {
          height: 310px;
      }

      .parents-img img {
          height: 310px;
      }

      section#parents .parents-layout .parents-img {
          order: 2;
      }

      section#parents .parents-layout .parents-content.reveal {
          order: 1;
      }

      section#invitation .invitation-layout {
          padding: 0px 0px 30px;
      }

      section#invitation .section-inner {
          padding: 0;
      }

      .journey-title {
          font-size: 20px;
      }

  }

  @media (max-width: 767px) {

      .journey-cards>div:nth-child(4),
      .journey-cards>div:nth-child(5) {
          width: 100%;
      }

      .journey-cards>div {
          width: 100%;
      }
  }

  @media (max-width: 480px) {

      .more-img-mosaic {
          display: block;
      }

      .slider-one .swiper-slide {
          padding: 40px 0px 100px;
          margin-top: 0px;
      }

      .more-img-mosaic .img-small {
          display: none;
      }

      .journey-cards {
          border-radius: 12px;
          overflow: hidden;
      }

  }


  body {
      background: #0f3d2e;
      font-family: Arial, sans-serif;
  }

  /* Container */
  .journey-flow {
      display: flex;
      justify-content: center;
      margin: 50px 20px 20px;
  }

  /* Step */
  .step {
      position: relative;
      padding: 5px 35px;
      background: #1f6f54;
      color: #fff;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
  }

  /* Arrow Shape */
  .step::after {
      content: "";
      position: absolute;
      top: 0;
      right: -20px;
      width: 0;
      height: 0;
      border-top: 20px solid transparent;
      border-bottom: 12px solid transparent;
      border-left: 20px solid #1f6f54;
      z-index: 2;
  }

  /* Cut effect (left side) */
  .step::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 0;
      border-top: 20px solid transparent;
      border-bottom: 15px solid transparent;
      border-left: 20px solid #0f3d2e;
  }

  /* First step fix */
  .step:first-child::before {
      display: none;
  }

  /* Last step remove arrow */
  .step:last-child::after {
      display: none;
  }

  /* Alternate shades for depth */
  .step:nth-child(even) {
      background: #155a43;
  }

  .step:nth-child(even)::after {
      border-left-color: #155a43;
  }

  /* Hover */
  .step:hover {
      background: #caa64b;
      color: #000;
  }

  .step:hover::after {
      border-left-color: #caa64b;
  }

  /* Tablet */
  @media (max-width: 992px) {
      .journey-flow {
          flex-wrap: wrap;
          justify-content: center;
      }

      .step {
          margin-bottom: 15px;
      }

      .step::after,
      .step::before {
          display: none;
          /* arrows hata do (clean layout) */
      }
  }

  /* Mobile */
  @media (max-width: 576px) {
      .journey-flow {
          flex-direction: column;
          align-items: stretch;
      }

      .step {
          text-align: center;
          margin-bottom: 10px;
          border-radius: 6px;
      }

      .step::after,
      .step::before {
          display: none;
          /* arrows remove */
      }
  }