
    :root{
      --cream:#fffaf1;
      --warm:#f7efe2;
      --terracotta:#e65324;
      --terracotta-dark:#c9441b;
      --teal:#083f4c;
      --ink:#12333c;
      --shadow:0 24px 60px rgba(8,63,76,.16);
    }

    *{
      box-sizing:border-box;
    }

    html{
      scroll-behavior:smooth;
    }

    body{
      margin:0;
      background:var(--warm);
      color:var(--ink);
      font-family:Inter,system-ui,sans-serif;
    }

    a{
      text-decoration:none;
      color:inherit;
    }

    img{
      max-width:100%;
      display:block;
    }

    .site{
      max-width:1280px;
      margin:24px auto;
      background:var(--cream);
      box-shadow:var(--shadow);
      overflow:hidden;
      border-radius:18px;
    }

    .container{
      width:min(1120px,calc(100% - 40px));
      margin:auto;
    }

    .serif{
      font-family:'Playfair Display',Georgia,serif;
    }

    /* =========================
       HEADER / NAVIGATION
    ========================== */

    header{
      background:rgba(255,250,241,.95);
      border-bottom:1px solid rgba(8,63,76,.08);
    }

    .nav{
      display:flex;
      justify-content:space-between;
      align-items:center;
      padding:22px 0;
    }

    .logo{
      line-height:.88;
      color:var(--teal);
      font-weight:900;
      font-size:31px;
    }

    .logo span{
      display:block;
      color:var(--terracotta);
      font-family:Inter,sans-serif;
      font-size:10px;
      font-weight:900;
      letter-spacing:.12em;
      text-transform:uppercase;
      margin-top:8px;
    }

    .back{
      font-weight:900;
      color:var(--teal);
    }

    /* =========================
       HERO
    ========================== */

    .hero{
      padding:70px 0 50px;
      text-align:center;
      background:linear-gradient(100deg,#fffaf1 0%,#fbefd7 55%,#cbeaf2 100%);
    }

    .eyebrow{
      color:var(--terracotta);
      font-weight:900;
      text-transform:uppercase;
      letter-spacing:.12em;
      font-size:12px;
      margin-bottom:14px;
    }

    h1{
      font-size:58px;
      line-height:1;
      margin:0 0 20px;
      color:var(--teal);
      letter-spacing:-.04em;
    }

    .intro{
      max-width:760px;
      margin:0 auto;
      color:#42636c;
      font-size:18px;
      line-height:1.7;
    }

    /* =========================
       RESOURCE BLOCKS
    ========================== */

    .resources{
      padding:70px 0 90px;
    }

    .resource-block{
      background:white;
      border:1px solid rgba(8,63,76,.08);
      border-radius:24px;
      padding:34px;
      box-shadow:0 16px 40px rgba(8,63,76,.10);
      margin-bottom:34px;
    }

    .resource-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:24px;
      margin-bottom:24px;
    }

    .resource-title h2{
      margin:0 0 10px;
      color:var(--teal);
      font-size:34px;
      line-height:1.1;
    }

    .resource-title p{
      margin:0;
      color:#526d75;
      line-height:1.65;
      font-size:16px;
      max-width:680px;
    }

    .resource-count{
      flex-shrink:0;
      color:var(--terracotta);
      font-weight:900;
      font-size:12px;
      letter-spacing:.12em;
      text-transform:uppercase;
    }

    .image-scroll{
      display:flex;
      gap:22px;
      overflow-x:auto;
      padding:6px 4px 18px;
      scroll-snap-type:x mandatory;
      scrollbar-color:var(--terracotta) #f1e6d8;
    }

    .image-scroll::-webkit-scrollbar{
      height:10px;
    }

    .image-scroll::-webkit-scrollbar-track{
      background:#f1e6d8;
      border-radius:999px;
    }

    .image-scroll::-webkit-scrollbar-thumb{
      background:var(--terracotta);
      border-radius:999px;
    }

    .lesson-image{
      flex:0 0 260px;
      scroll-snap-align:start;
      border-radius:18px;
      overflow:hidden;
      background:#f7efe2;
      border:1px solid rgba(8,63,76,.10);
      box-shadow:0 12px 28px rgba(8,63,76,.10);
      transition:.2s;
    }

    .lesson-image:hover{
      transform:translateY(-4px);
      box-shadow:0 18px 38px rgba(8,63,76,.16);
    }

    .lesson-image img{
      width:100%;
      height:auto;
      display:block;
    }

    .note{
      margin-top:42px;
      background:linear-gradient(135deg,#fff,#fff3d7);
      border:2px solid rgba(8,63,76,.08);
      border-radius:22px;
      padding:38px;
      text-align:center;
    }

    .note h2{
      margin:0 0 12px;
      color:var(--teal);
      font-size:34px;
      line-height:1.1;
    }

    .note p{
      color:#526d75;
      line-height:1.7;
      margin:0 auto 24px;
      max-width:680px;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:15px 24px;
      border-radius:10px;
      background:var(--terracotta);
      color:white;
      font-weight:900;
      transition:.2s;
      text-align:center;
    }

    .btn:hover{
      background:var(--terracotta-dark);
      transform:translateY(-2px);
    }

    footer{
      background:#072f3a;
      color:rgba(255,255,255,.72);
      padding:35px 0;
      text-align:center;
      font-size:13px;
    }

    footer a{
      color:white;
      font-weight:800;
    }

    /* =========================
       RESPONSIVE
    ========================== */

    @media(max-width:900px){
      .site{
        margin:0;
        border-radius:0;
      }

      h1{
        font-size:42px;
      }

      .logo{
        font-size:24px;
      }

      .resource-head{
        display:block;
      }

      .resource-count{
        margin-top:14px;
      }

      .lesson-image{
        flex-basis:230px;
      }
    }

    @media(max-width:560px){
      .container{
        width:min(100% - 28px,1120px);
      }

      .hero{
        padding:58px 0 40px;
      }

      h1{
        font-size:38px;
      }

      .intro{
        font-size:16px;
      }

      .resources{
        padding:48px 0 64px;
      }

      .resource-block{
        padding:24px;
        border-radius:20px;
      }

      .resource-title h2{
        font-size:28px;
      }

      .lesson-image{
        flex-basis:220px;
      }

      .note{
        padding:28px 22px;
      }

      .note h2{
        font-size:28px;
      }

      .btn{
        width:100%;
      }
    }
  