
    :root{
      --cream:#fffaf1;
      --warm:#f7efe2;
      --terracotta:#e65324;
      --teal:#083f4c;
      --ink:#12333c;
      --shadow:0 24px 60px rgba(8,63,76,.16);
    }

    *{
      box-sizing:border-box;
    }

    body{
      margin:0;
      background:var(--warm);
      color:var(--ink);
      font-family:Inter,system-ui,sans-serif;
    }

    a{
      text-decoration:none;
      color:inherit;
    }

    .site{
      max-width:1280px;
      margin:24px auto;
      background:var(--cream);
      box-shadow:var(--shadow);
      overflow:hidden;
      border-radius:18px;
    }

    .container{
      width:min(900px,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);
    }

    header .container{
      width:min(1120px,calc(100% - 40px));
    }

    .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 35px;
      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;
    }

    /* =========================
       CONTENT
    ========================== */

    .content{
      padding:55px 0 75px;
    }

    h2{
      color:var(--teal);
      font-size:28px;
      margin:34px 0 12px;
    }

    p,
    li{
      color:#42636c;
      line-height:1.75;
      font-size:16px;
    }

    ul{
      padding-left:22px;
    }

    .notice{
      background:white;
      border:1px solid rgba(8,63,76,.08);
      border-radius:18px;
      padding:22px;
      margin:28px 0;
      box-shadow:0 12px 30px rgba(8,63,76,.06);
    }

    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;
    }

    @media(max-width:900px){
      .site{
        margin:0;
        border-radius:0;
      }

      h1{
        font-size:42px;
      }

      .logo{
        font-size:24px;
      }
    }
  