
    :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;
    }

    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 45px;
      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:720px;
      margin:0 auto;
      color:#42636c;
      font-size:18px;
      line-height:1.7;
    }

    /* =========================
       FAQ CONTENT
    ========================== */

    .faq-section{
      padding:65px 0 80px;
    }

    .faq-list{
      display:grid;
      gap:18px;
    }

    details{
      background:white;
      border:1px solid rgba(8,63,76,.08);
      border-radius:18px;
      padding:24px 26px;
      box-shadow:0 12px 30px rgba(8,63,76,.06);
    }

    summary{
      cursor:pointer;
      color:var(--teal);
      font-weight:900;
      font-size:19px;
      line-height:1.35;
      list-style:none;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:20px;
    }

    summary::-webkit-details-marker{
      display:none;
    }

    summary::after{
      content:"+";
      color:var(--terracotta);
      font-size:28px;
      font-weight:900;
      line-height:1;
      flex-shrink:0;
    }

    details[open] summary::after{
      content:"–";
    }

    details p{
      color:#42636c;
      line-height:1.75;
      font-size:16px;
      margin:18px 0 0;
    }

    .cta{
      margin-top:48px;
      background:linear-gradient(135deg,#fff,#fff3d7);
      border:2px solid rgba(8,63,76,.08);
      border-radius:22px;
      padding:38px;
      text-align:center;
    }

    .cta h2{
      margin:0 0 12px;
      color:var(--teal);
      font-size:34px;
      line-height:1.1;
    }

    .cta p{
      color:#526d75;
      line-height:1.7;
      margin:0 auto 24px;
      max-width:620px;
    }

    .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;
    }

    @media(max-width:900px){
      .site{
        margin:0;
        border-radius:0;
      }

      h1{
        font-size:42px;
      }

      .logo{
        font-size:24px;
      }

      .intro{
        font-size:16px;
      }

      details{
        padding:22px;
      }

      summary{
        font-size:17px;
      }
    }

    @media(max-width:560px){
      .container{
        width:min(100% - 28px,900px);
      }

      .hero{
        padding:58px 0 38px;
      }

      h1{
        font-size:38px;
      }

      .faq-section{
        padding:48px 0 62px;
      }

      .cta{
        padding:28px 22px;
      }

      .cta h2{
        font-size:28px;
      }

      .btn{
        width:100%;
      }
    }
  