@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&family=Outfit:wght@400;700&display=swap");

:root {
      --dusty-rose: #be185d;
      --cream: #fffbeb;
      --dark-brown: #451a03;
      --light-gray: #f5f1e8;
      --text-dark: #2a2a2a;
      --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      width: 100%;
      overflow-x: hidden;
    }

    body {
      font-family: 'Raleway', sans-serif;
      color: var(--text-dark);
      background-color: var(--cream);
      line-height: 1.6;
    }

    /* Typography */
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      line-height: 1.2;
    }

    h1 {
      font-size: 3.5rem;
      margin-bottom: 1rem;
    }

    h2 {
      font-size: 2.5rem;
      margin-bottom: 0.8rem;
      color: var(--dark-brown);
    }

    h3 {
      font-size: 1.5rem;
      margin-bottom: 0.6rem;
      color: var(--dusty-rose);
    }

    p {
      font-size: 1rem;
      margin-bottom: 1.2rem;
      color: var(--text-dark);
    }

    a {
      color: var(--dusty-rose);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    a:hover {
      color: var(--dark-brown);
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Header & Navigation */
    header {
      background-color: var(--cream);
      padding: 2rem 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .header-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-family: 'Outfit', sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--dark-brown);
      letter-spacing: 0.05em;
    }

    nav a {
      display: inline-block;
      margin-left: 2.5rem;
      font-size: 0.95rem;
      font-weight: 400;
      letter-spacing: 0.08em;
      color: var(--text-dark);
      text-transform: uppercase;
      transition: color 0.3s ease;
    }

    nav a:hover {
      color: var(--dusty-rose);
    }

    nav a.active {
      color: var(--dusty-rose);
      font-weight: 700;
    }

    /* Main Content */
    main {
      width: 100%;
    }

    section {
      padding: 4rem 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Hero Editorial Section */
    #hero_editorial {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
      padding: 5rem 2rem;
    }

    .hero-text h1 {
      color: var(--dark-brown);
      margin-bottom: 1rem;
    }

    .hero-text .subheading {
      font-size: 1.3rem;
      color: var(--dusty-rose);
      font-weight: 400;
      margin-bottom: 1.5rem;
    }

    .hero-text p {
      font-size: 1.05rem;
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    .hero-image {
      height: 500px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
    }

    .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .cta-button {
      display: inline-block;
      background-color: var(--dusty-rose);
      color: var(--cream);
      padding: 1rem 2rem;
      border-radius: 4px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-family: 'Raleway', sans-serif;
      font-size: 0.95rem;
    }

    .cta-button:hover {
      background-color: var(--dark-brown);
    }

    /* Core Pillars Section */
    #core_pillars {
      background-color: var(--light-gray);
    }

    .pillars-heading {
      text-align: center;
      margin-bottom: 3rem;
    }

    .bento-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .pillar-card {
      background-color: var(--cream);
      padding: 2rem;
      border-radius: 8px;
      box-shadow: var(--shadow-soft);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .pillar-card:nth-child(1) {
      grid-column: span 1;
      grid-row: span 2;
    }

    .pillar-card:nth-child(2) {
      grid-column: span 2;
    }

    .pillar-card:nth-child(3) {
      grid-column: span 2;
    }

    .pillar-card h3 {
      margin-bottom: 1rem;
    }

    .pillar-card p {
      font-size: 0.95rem;
      margin-bottom: 0;
    }

    /* Featured Stat Section */
    #featured_stat {
      background: linear-gradient(135deg, var(--dusty-rose), #c2185b);
      color: var(--cream);
      text-align: center;
      padding: 5rem 2rem;
      border-radius: 8px;
      margin: 4rem auto;
      max-width: 900px;
    }

    #featured_stat h2 {
      color: var(--cream);
      font-size: 2.2rem;
      margin-bottom: 1rem;
    }

    #featured_stat p {
      color: var(--cream);
      font-size: 1.1rem;
      margin-bottom: 0;
    }

    .stat-number {
      font-size: 3rem;
      font-weight: 700;
      display: block;
      margin-bottom: 0.5rem;
    }

    /* Experience Flow Section */
    #experience_flow {
      padding: 4rem 2rem;
    }

    .flow-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
      margin-bottom: 4rem;
    }

    .flow-container:nth-child(even) {
      direction: rtl;
    }

    .flow-container:nth-child(even) > * {
      direction: ltr;
    }

    .flow-image {
      height: 350px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
    }

    .flow-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .flow-text h3 {
      margin-bottom: 1rem;
    }

    .flow-text p {
      font-size: 0.95rem;
      line-height: 1.8;
    }

    /* CTA Footer Section */
    #cta_footer_section {
      background-color: var(--dark-brown);
      color: var(--cream);
      text-align: center;
      padding: 5rem 2rem;
      margin-top: 4rem;
    }

    #cta_footer_section h2 {
      color: var(--cream);
      margin-bottom: 1.5rem;
    }

    #cta_footer_section p {
      color: var(--cream);
      font-size: 1.05rem;
      margin-bottom: 2rem;
    }

    .cta-button-light {
      display: inline-block;
      background-color: var(--dusty-rose);
      color: var(--cream);
      padding: 1rem 2.5rem;
      border-radius: 4px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-family: 'Raleway', sans-serif;
      font-size: 0.95rem;
    }

    .cta-button-light:hover {
      background-color: var(--cream);
      color: var(--dark-brown);
    }

    /* Footer */
    footer {
      background-color: var(--dark-brown);
      color: var(--cream);
      padding: 3rem 2rem 1.5rem;
      margin-top: 4rem;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .footer-column h4 {
      font-family: 'Outfit', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: var(--cream);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .footer-column p {
      font-size: 0.9rem;
      margin-bottom: 0.8rem;
      color: rgba(255, 251, 235, 0.85);
    }

    .footer-column a {
      display: block;
      font-size: 0.9rem;
      margin-bottom: 0.6rem;
      color: rgba(255, 251, 235, 0.85);
      transition: color 0.3s ease;
    }

    .footer-column a:hover {
      color: var(--dusty-rose);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 251, 235, 0.2);
      padding-top: 1.5rem;
      text-align: center;
      font-size: 0.85rem;
      color: rgba(255, 251, 235, 0.7);
    }

    /* Responsive */
    @media (max-width: 768px) {
      h1 {
        font-size: 2.2rem;
      }

      h2 {
        font-size: 1.8rem;
      }

      #hero_editorial {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
      }

      .hero-image {
        height: 350px;
      }

      .bento-grid {
        grid-template-columns: 1fr;
      }

      .pillar-card:nth-child(1),
      .pillar-card:nth-child(2),
      .pillar-card:nth-child(3) {
        grid-column: span 1;
        grid-row: auto;
      }

      .flow-container {
        grid-template-columns: 1fr;
      }

      .flow-container:nth-child(even) {
        direction: ltr;
      }

      .flow-image {
        height: 300px;
      }

      nav a {
        margin-left: 1.5rem;
        font-size: 0.85rem;
      }

      .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
      }

      #featured_stat {
        padding: 3rem 2rem;
      }

      #featured_stat h2 {
        font-size: 1.8rem;
      }

      .stat-number {
        font-size: 2.2rem;
      }
    }

    @media (max-width: 480px) {
      h1 {
        font-size: 1.8rem;
      }

      h2 {
        font-size: 1.4rem;
      }

      nav a {
        margin-left: 1rem;
        font-size: 0.75rem;
      }

      .header-container {
        padding: 0 1rem;
      }

      section {
        padding: 2rem 1rem;
      }

      #hero_editorial {
        padding: 2rem 1rem;
      }

      .footer-container {
        grid-template-columns: 1fr;
      }

      .cta-button, .cta-button-light {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
      }
    }
/* ── image safety ── */
img { max-width: 100%; height: auto; display: block; }
img[style*='width:'] { max-width: 100%; }
