@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Source+Sans+3:wght@400;500;600&display=swap");

:root {
      --navy: #0f172a;
      --amber: #f59e0b;
      --off-white: #f9fafb;
      --light-gray: #e5e7eb;
      --dark-gray: #4b5563;
      --serif: 'Playfair Display', serif;
      --sans: 'Source Sans 3', sans-serif;
    }

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

    html, body {
      height: 100%;
    }

    body {
      font-family: var(--sans);
      color: var(--navy);
      background-color: var(--off-white);
      line-height: 1.6;
    }

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

    /* Header & Navigation */
    header {
      background-color: var(--off-white);
      border-bottom: 1px solid var(--light-gray);
      padding: 1.5rem 2rem;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    header nav {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .nav-brand {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

    .nav-brand h1 {
      font-family: var(--serif);
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--navy);
      margin: 0;
    }

    .nav-brand p {
      font-size: 0.75rem;
      color: var(--dark-gray);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin: 0;
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--navy);
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.2s;
      border-bottom: 2px solid transparent;
    }

    .nav-links a:hover {
      color: var(--amber);
    }

    .nav-links a.active {
      color: var(--amber);
      border-bottom-color: var(--amber);
    }

    /* Main Content */
    main {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    section {
      padding: 4rem 0;
      border-bottom: 1px solid var(--light-gray);
    }

    section:last-of-type {
      border-bottom: none;
    }

    h2 {
      font-family: var(--serif);
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 0.5rem;
    }

    h3 {
      font-family: var(--serif);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 0.75rem;
    }

    .section-subtitle {
      font-size: 1.1rem;
      color: var(--dark-gray);
      margin-bottom: 2rem;
      font-weight: 500;
    }

    /* Hero Editorial Section */
    #hero_editorial {
      padding: 5rem 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      border-bottom: 1px solid var(--light-gray);
    }

    .hero-image {
      position: relative;
      height: 500px;
      border: 1px solid var(--light-gray);
      overflow: hidden;
    }

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

    .hero-content h2 {
      margin-bottom: 1rem;
    }

    .hero-content .hero-subheading {
      font-size: 1.3rem;
      color: var(--amber);
      font-weight: 600;
      margin-bottom: 2rem;
      font-family: var(--serif);
    }

    .hero-content p {
      font-size: 1rem;
      line-height: 1.8;
      color: var(--navy);
      margin-bottom: 1.5rem;
    }

    .hero-content ul {
      list-style: none;
      margin-top: 2rem;
    }

    .hero-content li {
      padding-left: 1.5rem;
      margin-bottom: 0.75rem;
      position: relative;
      color: var(--navy);
    }

    .hero-content li:before {
      content: "▪";
      position: absolute;
      left: 0;
      color: var(--amber);
    }

    /* Mission Statement Section */
    #mission_statement {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .mission-content {
      order: 2;
    }

    .mission-image {
      order: 1;
      height: 400px;
      border: 1px solid var(--light-gray);
      overflow: hidden;
    }

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

    .mission-content h2 {
      margin-bottom: 1rem;
    }

    .mission-content p {
      font-size: 1rem;
      line-height: 1.8;
      color: var(--navy);
      margin-bottom: 1.5rem;
    }

    /* Content Pillars */
    #content_pillars {
      padding: 4rem 0;
    }

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

    .pillar-card {
      display: flex;
      gap: 1.5rem;
      border: 1px solid var(--light-gray);
      padding: 1.5rem;
    }

    .pillar-icon {
      flex-shrink: 0;
      width: 80px;
      height: 80px;
      border: 1px solid var(--light-gray);
      overflow: hidden;
    }

    .pillar-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .pillar-content h3 {
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
    }

    .pillar-content p {
      font-size: 0.95rem;
      color: var(--dark-gray);
      line-height: 1.6;
    }

    /* Trust Strip */
    #trust_strip {
      background-color: var(--navy);
      color: var(--off-white);
      padding: 3rem 2rem;
      margin: 4rem -2rem;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      text-align: center;
    }

    .stat-item h3 {
      font-family: var(--serif);
      font-size: 2.5rem;
      color: var(--amber);
      margin-bottom: 0.5rem;
    }

    .stat-item p {
      font-size: 0.95rem;
      color: var(--off-white);
    }

    /* Featured Content */
    #featured_content {
      padding: 4rem 0;
    }

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

    .featured-item:nth-child(even) {
      direction: rtl;
    }

    .featured-item:nth-child(even) > * {
      direction: ltr;
    }

    .featured-image {
      height: 300px;
      border: 1px solid var(--light-gray);
      overflow: hidden;
    }

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

    .featured-text h3 {
      margin-bottom: 0.75rem;
    }

    .featured-text p {
      font-size: 0.95rem;
      color: var(--dark-gray);
      margin-bottom: 1.5rem;
      line-height: 1.7;
    }

    .featured-link {
      display: inline-block;
      color: var(--amber);
      text-decoration: none;
      font-weight: 600;
      border-bottom: 1px solid var(--amber);
      transition: color 0.2s;
    }

    .featured-link:hover {
      color: var(--navy);
      border-bottom-color: var(--navy);
    }

    /* CTA Explore Section */
    #cta_explore {
      background-color: var(--navy);
      color: var(--off-white);
      padding: 5rem 2rem;
      margin: 4rem -2rem 0 -2rem;
      text-align: center;
      border-bottom: none;
    }

    #cta_explore h2 {
      color: var(--off-white);
      margin-bottom: 1rem;
    }

    #cta_explore .section-subtitle {
      color: var(--off-white);
    }

    .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-top: 2.5rem;
      flex-wrap: wrap;
    }

    .cta-button {
      display: inline-block;
      padding: 1rem 2.5rem;
      background-color: var(--amber);
      color: var(--navy);
      text-decoration: none;
      font-weight: 600;
      border: 1px solid var(--amber);
      transition: all 0.2s;
    }

    .cta-button:hover {
      background-color: transparent;
      color: var(--amber);
    }

    /* Footer */
    footer {
      background-color: var(--navy);
      color: var(--off-white);
      padding: 3rem 2rem 1.5rem;
      margin-top: 4rem;
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      margin-bottom: 2rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      padding-bottom: 2rem;
    }

    .footer-column h4 {
      font-family: var(--serif);
      font-size: 1rem;
      margin-bottom: 1rem;
      color: var(--amber);
    }

    .footer-column ul {
      list-style: none;
    }

    .footer-column li {
      margin-bottom: 0.75rem;
    }

    .footer-column a {
      color: var(--off-white);
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s;
    }

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

    .footer-column p {
      font-size: 0.9rem;
      line-height: 1.6;
      color: var(--off-white);
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.7);
    }

    /* Responsive */
    @media (max-width: 768px) {
      header nav {
        flex-direction: column;
        gap: 1rem;
      }

      .nav-links {
        flex-direction: column;
        gap: 1rem;
      }

      #hero_editorial,
      #mission_statement,
      .pillars-grid,
      #trust_strip,
      .footer-content {
        grid-template-columns: 1fr;
      }

      #mission_statement .mission-image {
        order: 1;
      }

      #mission_statement .mission-content {
        order: 2;
      }

      .featured-item {
        grid-template-columns: 1fr;
      }

      .featured-item:nth-child(even) {
        direction: ltr;
      }

      h2 {
        font-size: 2rem;
      }

      .hero-image,
      .mission-image {
        height: 350px;
      }

      .featured-image {
        height: 250px;
      }

      .cta-buttons {
        flex-direction: column;
      }

      .cta-button {
        width: 100%;
        text-align: center;
      }

      main {
        padding: 0 1rem;
      }

      header {
        padding: 1rem;
      }
    }
/* ── image safety ── */
img { max-width: 100%; height: auto; display: block; }
img[style*='width:'] { max-width: 100%; }
