
    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Roboto', sans-serif;
      background: #F7F6F2;
      color: #1A1A18;
      font-size: 17px;
      line-height: 1.6;
      overflow-x: hidden;
    }

    :root {
      --pink: #FF1F8E;
      --pink-light: #FFE8F4;
      --pink-mid: #FF6DB6;
      --black: #4D4D4B;
      --gray-dark: #3D3D3A;
      --gray-mid: #888780;
      --gray-light: #D8D6CE;
      --cream: #F7F6F2;
      --white: #FFFFFF;
      --radius: 16px;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: 'Saira', sans-serif;
      font-weight: 600;
      line-height: 1.15;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    p {
      color: var(--gray-dark);
    }

        h1 {
      font-size: clamp(3rem, 6vw, 5.5rem);
    }

    h2 {
      font-size: clamp(2rem, 4vw, 3.2rem);
    }

    h3 {
      font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    }

    /* ── NAV ── */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 68px;
      padding: 0 20px;
      background: #F7F6F2;
      border-bottom: 1px solid #D8D6CE;
      display: flex;
      align-items: center;
      justify-content: space-between;
      z-index: 100;
    }

    .nav-logo {
      font-weight: 600;
      font-size: 1.2rem;
      display: flex;
      gap: 5px;
      align-items: flex-end;
      color:  var(--pink);
    }


    /* LINKS */
    .nav-links {
      display: flex;
      gap: 30px;
      align-items: center;
    }

    .nav-links a {
      text-decoration: none;
      color: #4D4D4B;
      font-size: 0.9rem;
    }

    .nav-cta {
      background: #4D4D4B;
      color: white;
      padding: 8px 18px;
      border-radius: 999px;
    }

    .nav-links a.nav-cta {
      color: white;
    }

    /* BURGER */
    .burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
    }

    .burger span {
      width: 24px;
      height: 2px;
      background: #4D4D4B;
      display: block;
    }

    /* MOBILE */
    @media (max-width: 768px) {
      .burger {
        display: flex;
      }

      .nav-links {
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: #F7F6F2;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        display: none;
      }

      .nav-links.active {
        display: flex;
      }
    }

     /* ── FOOTER ── */
    footer {
      background: #111110;
      padding: 64px 40px 40px;
    }

    .footer-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      padding-bottom: 48px;
      border-bottom: 1px solid #2A2A28;
    }

    .footer-brand h3 {
      font-family: 'Saira', sans-serif;
      color: var(--white);
      font-size: 1.3rem;
      margin-bottom: 12px;
    }

    .footer-brand p {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.4);
      max-width: 30ch;
      margin: 0;
    }

    .footer-col h4 {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.35);
      margin-bottom: 16px;
    }

    .footer-col a {
      display: block;
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.55);
      margin-bottom: 10px;
      transition: color 0.2s;
    }

    .footer-col a:hover {
      color: var(--white);
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 32px;
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.25);
    }

    @media (max-width: 450px) {
      .footer-bottom {
        flex-direction: column;
        gap: 20px;
      }
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-up {
      opacity: 0;
      animation: fadeUp 0.7s ease forwards;
    }

    .fade-up:nth-child(1) {
      animation-delay: 0.1s;
    }

    .fade-up:nth-child(2) {
      animation-delay: 0.2s;
    }

    .fade-up:nth-child(3) {
      animation-delay: 0.3s;
    }

    .fade-up:nth-child(4) {
      animation-delay: 0.4s;
    }