@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;600;700&family=Roboto:wght@400;500;600&display=swap");

:root {
      --navy: #0f172a;
      --amber: #f59e0b;
      --off-white: #fafaf8;
      --light-gray: #f5f3f0;
      --text-dark: #1a1a1a;
      --text-light: #666;
      --border: #e5e5e0;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Roboto', system-ui, -apple-system, sans-serif;
      color: var(--text-dark);
      background: var(--off-white);
      line-height: 1.6;
    }

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

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

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

    .logo {
      font-family: 'Roboto Slab', serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--navy);
      text-decoration: none;
      letter-spacing: -0.5px;
    }

    nav {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

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

    nav a:hover {
      border-bottom-color: var(--amber);
    }

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

    /* Main Content */
    main {
      min-height: 80vh;
    }

    section {
      padding: 4rem 2rem;
    }

    section.full-bleed {
      padding: 0;
      position: relative;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
    }

    section.full-bleed::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-size: cover;
      background-position: center;
      z-index: 0;
    }

    section.full-bleed .scrim {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(15, 23, 42, 0.5);
      z-index: 1;
    }

    section.full-bleed .content {
      position: relative;
      z-index: 2;
      color: white;
      max-width: 700px;
      padding: 2rem;
    }

    section.narrow {
      max-width: 700px;
      margin: 0 auto;
    }

    section.alt-bg {
      background: var(--light-gray);
    }

    h1 {
      font-family: 'Roboto Slab', serif;
      font-size: 3rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 1rem;
      line-height: 1.2;
      letter-spacing: -1px;
    }

    section.full-bleed h1 {
      color: white;
      font-size: 3.5rem;
    }

    h2 {
      font-family: 'Roboto Slab', serif;
      font-size: 2.25rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 0.75rem;
      line-height: 1.2;
      letter-spacing: -0.5px;
    }

    h3 {
      font-family: 'Roboto Slab', serif;
      font-size: 1.35rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 0.5rem;
    }

    .subheading {
      font-size: 1.25rem;
      color: var(--text-light);
      margin-bottom: 2rem;
      font-weight: 400;
    }

    section.full-bleed .subheading {
      color: rgba(255, 255, 255, 0.9);
    }

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

    .pillars-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin: 2rem 0;
    }

    .pillar-item {
      padding: 1.5rem;
      background: white;
      border-left: 4px solid var(--amber);
      border-radius: 2px;
    }

    .pillar-item h3 {
      color: var(--navy);
      margin-bottom: 0.5rem;
    }

    .pillar-item p {
      font-size: 0.95rem;
      color: var(--text-light);
      margin-bottom: 0;
    }

    .personas {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin: 2rem 0;
    }

    .persona {
      padding: 1.5rem;
      background: white;
      border-radius: 2px;
      border-top: 3px solid var(--amber);
    }

    .persona h3 {
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
    }

    .persona p {
      font-size: 0.95rem;
      color: var(--text-light);
      margin-bottom: 0;
    }

    .rhythm-block {
      padding: 2rem;
      background: white;
      border-radius: 2px;
      margin: 2rem 0;
    }

    .rhythm-block h3 {
      color: var(--amber);
      font-size: 1rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 0.75rem;
    }

    .rhythm-block p {
      color: var(--text-dark);
      margin-bottom: 0;
    }

    /* CTA Section */
    .cta-section {
      text-align: center;
      padding: 3rem 2rem;
    }

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

    .btn {
      display: inline-block;
      padding: 1rem 2rem;
      border-radius: 2px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }

    .btn-primary {
      background: var(--amber);
      color: var(--navy);
    }

    .btn-primary:hover {
      background: #d97706;
      transform: translateY(-2px);
    }

    .btn-secondary {
      background: transparent;
      color: var(--navy);
      border-color: var(--navy);
    }

    .btn-secondary:hover {
      background: var(--navy);
      color: white;
    }

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

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

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

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

    .footer-column a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      font-size: 0.95rem;
      display: block;
      margin-bottom: 0.75rem;
      transition: color 0.2s ease;
    }

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

    .footer-column p {
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.95rem;
      margin-bottom: 0.75rem;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 1.5rem;
      text-align: center;
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.9rem;
    }

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

      section.full-bleed h1 {
        font-size: 2.5rem;
      }

      h2 {
        font-size: 1.75rem;
      }

      nav {
        gap: 1rem;
        font-size: 0.85rem;
      }

      .pillars-list,
      .personas {
        grid-template-columns: 1fr;
      }

      .cta-buttons {
        flex-direction: column;
        align-items: center;
      }

      .btn {
        width: 100%;
        max-width: 300px;
      }

      section {
        padding: 2.5rem 1.5rem;
      }

      .header-container {
        flex-direction: column;
        gap: 1rem;
      }

      nav {
        flex-direction: column;
        gap: 0.5rem;
      }
    }
/* ── image safety ── */
img { max-width: 100%; height: auto; display: block; }
img[style*='width:'] { max-width: 100%; }
