  :root{
    --navy: #182640;
    --navy-2: #223761;
    --navy-3: #0f1929;
    --gold: #e3a23c;
    --gold-soft: #f0c37a;
    --terracotta: #c25a2a;
    --cream: #f6efe1;
    --cream-2: #efe4cd;
    --ink: #16223a;
    --white: #fffaf0;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    background: var(--cream);
    color: var(--ink);
    font-family: 'Source Sans 3', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x:hidden;
  }
  a{color:inherit;}
  img{display:block; max-width:100%;}

  .eyebrow{
    font-family:'Barlow Condensed', sans-serif;
    font-weight:600;
    letter-spacing:.22em;
    text-transform:uppercase;
    font-size:0.78rem;
  }
  h1,h2,h3{
    font-family:'Fraunces', serif;
    font-weight:700;
    line-height:1.05;
  }

  /* ---------- awning stripe divider ---------- */
  .awning{
    height:26px;
    background: repeating-linear-gradient(
      90deg,
      var(--cream) 0px, var(--cream) 34px,
      var(--terracotta) 34px, var(--terracotta) 68px
    );
    position:relative;
    box-shadow: 0 3px 10px rgba(0,0,0,.25) inset;
  }
  .awning.flip{
    background: repeating-linear-gradient(
      90deg,
      var(--navy) 0px, var(--navy) 34px,
      var(--gold) 34px, var(--gold) 68px
    );
  }
  .awning::after{
    content:"";
    position:absolute; left:0; right:0; bottom:-9px; height:9px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,.18), transparent);
  }

  /* ---------- nav ---------- */
  header{
    position:sticky; top:0; z-index:50;
    background: var(--navy);
    border-bottom: 3px solid var(--gold);
  }
  .nav-wrap{
    max-width:1180px; margin:0 auto;
    display:flex; align-items:center; justify-content:space-between;
    padding:12px 28px;
  }
  .brand{ display:flex; align-items:center; gap:12px; }
  .brand img{ width:42px; height:42px; border-radius:8px; }
  .brand-name{
    font-family:'Fraunces', serif;
    font-weight:700;
    font-size:1.25rem;
    color: var(--white);
    letter-spacing:.01em;
  }
  .brand-name span{ color: var(--gold); }
  nav.links{ display:flex; gap:26px; }
  nav.links a{
    font-family:'Barlow Condensed', sans-serif;
    font-weight:600;
    letter-spacing:.06em;
    text-transform:uppercase;
    font-size:0.92rem;
    color: var(--cream-2);
    text-decoration:none;
    transition: color .15s ease;
    padding:6px 2px;
    border-bottom: 2px solid transparent;
  }
  nav.links a:hover, nav.links a:focus-visible{
    color: var(--gold-soft);
    border-bottom-color: var(--gold);
    outline: none;
  }
  .nav-toggle{
    display:none;
    background:none;
    border:none;
    cursor:pointer;
    width:40px; height:40px;
    align-items:center; justify-content:center;
    border-radius:6px;
  }
  .nav-toggle:focus-visible{ outline:2px solid var(--gold); outline-offset:2px; }
  .nav-toggle svg{ width:24px; height:24px; }

  /* ---------- hero ---------- */
  .hero{
    background:
      radial-gradient(ellipse at 50% -10%, rgba(227,162,60,.18), transparent 55%),
      var(--navy);
    color: var(--white);
    padding: 78px 28px 64px;
    text-align:center;
    position:relative;
    overflow:hidden;
  }
  .hero::before, .hero::after{
    content:"";
    position:absolute; top:-40%; width:520px; height:520px;
    border-radius:50%;
    background: radial-gradient(circle, rgba(227,162,60,.10), transparent 70%);
  }
  .hero::before{ left:-160px; }
  .hero::after{ right:-160px; top:10%; }

  .hero-logo{
    width:128px; height:128px;
    margin:0 auto 26px;
    border-radius:20px;
    box-shadow: 0 18px 40px rgba(0,0,0,.45), 0 0 0 4px rgba(227,162,60,.35);
  }
  .hero .eyebrow{ color: var(--gold-soft); margin-bottom:14px; }
  .hero h1{
    font-size: clamp(2.4rem, 5.4vw, 4rem);
    color: var(--white);
    max-width: 22ch;
    margin: 0 auto 18px;
  }
  .hero h1 em{
    font-style: italic;
    color: var(--gold);
  }
  .hero p.lede{
    max-width: 60ch;
    margin: 0 auto 30px;
    font-size: 1.15rem;
    line-height:1.6;
    color: var(--cream-2);
  }
  .verse{
    font-family:'Fraunces', serif;
    font-style:italic;
    font-weight:500;
    font-size:1.02rem;
    color: var(--gold-soft);
    max-width:50ch;
    margin: 0 auto 34px;
    line-height:1.55;
    position:relative;
    padding: 0 8px;
  }
  .cta-row{
    display:flex; gap:16px; justify-content:center; flex-wrap:wrap;
  }
  .btn{
    font-family:'Barlow Condensed', sans-serif;
    font-weight:700;
    letter-spacing:.05em;
    text-transform:uppercase;
    font-size:1rem;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration:none;
    display:inline-block;
    transition: transform .15s ease, box-shadow .15s ease;
  }
  .btn:hover, .btn:focus-visible{ transform: translateY(-2px); outline:none; }
  .btn-primary{
    background: var(--gold);
    color: var(--navy-3);
    box-shadow: 0 8px 22px rgba(227,162,60,.35);
  }
  .btn-primary:hover{ box-shadow: 0 12px 26px rgba(227,162,60,.5); }
  .btn-ghost{
    background: transparent;
    color: var(--cream);
    border: 2px solid rgba(246,239,225,.4);
  }
  .btn-ghost:hover{ border-color: var(--gold-soft); color: var(--gold-soft); }

  /* ---------- shelf / resource section ---------- */
  .shelf-section{
    padding: 76px 28px 90px;
    max-width: 1180px;
    margin: 0 auto;
  }
  .section-head{ text-align:center; margin-bottom:52px; }
  .section-head .eyebrow{ color: var(--terracotta); margin-bottom:10px; }
  .section-head h2{ font-size: clamp(1.9rem, 3.6vw, 2.6rem); color: var(--navy); }
  .section-head p{ max-width:52ch; margin: 14px auto 0; color:#4a5163; font-size:1.02rem; }

  .shelf{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position:relative;
    padding-bottom: 22px;
  }
  .shelf::after{
    content:"";
    position:absolute; left:-14px; right:-14px; bottom:0; height:16px;
    background: linear-gradient(180deg, #8a5a2e, #6b4322);
    border-radius: 3px;
    box-shadow: 0 10px 18px rgba(0,0,0,.22);
  }
  .shelf-item{
    background: var(--white);
    border: 1px solid #e6d9bd;
    border-radius: 10px 10px 3px 3px;
    padding: 26px 18px 22px;
    text-align:center;
    text-decoration:none;
    color: var(--ink);
    position:relative;
    box-shadow: 0 6px 0 0 rgba(0,0,0,.04), 0 10px 24px rgba(24,38,64,.06);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  }
  .shelf-item:hover, .shelf-item:focus-visible{
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 14px 28px rgba(24,38,64,.14);
    outline:none;
  }
  .shelf-icon{
    width:52px; height:52px;
    margin: 0 auto 16px;
    border-radius:50%;
    background: var(--navy);
    display:flex; align-items:center; justify-content:center;
  }
  .shelf-icon svg{ width:26px; height:26px; }
  .shelf-item h3{
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 8px;
  }
  .shelf-item p{
    font-size: 0.88rem;
    color: #6a7182;
    line-height:1.45;
  }
  .shelf-item .go{
    display:inline-block; margin-top:14px;
    font-family:'Barlow Condensed', sans-serif;
    font-weight:600; letter-spacing:.06em; text-transform:uppercase;
    font-size:0.78rem; color: var(--terracotta);
  }

  @media (max-width: 780px){
    .shelf{ grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 480px){
    .shelf{ grid-template-columns: 1fr; }
  }

  /* ---------- about / verse panel ---------- */
  .about{
    background: var(--navy);
    color: var(--cream);
    padding: 84px 28px;
    position:relative;
  }
  .about-wrap{
    max-width:900px; margin:0 auto; text-align:center;
  }
  .about .eyebrow{ color: var(--gold-soft); margin-bottom:16px; }
  .about h2{
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    color: var(--white);
    margin-bottom: 22px;
  }
  .about p{
    font-size: 1.08rem;
    line-height:1.75;
    color: var(--cream-2);
    max-width: 62ch;
    margin: 0 auto 18px;
  }
  .about-verse{
    margin-top: 34px;
    font-family:'Fraunces', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--gold);
    max-width: 34ch;
    margin-left:auto; margin-right:auto;
    line-height:1.5;
  }
  .about-verse cite{
    display:block;
    font-style: normal;
    font-family:'Barlow Condensed', sans-serif;
    letter-spacing:.15em;
    text-transform:uppercase;
    font-size:0.8rem;
    color: var(--cream-2);
    margin-top: 14px;
  }

  /* ---------- social / follow section ---------- */
  .follow{
    background: var(--cream);
    padding: 80px 28px 90px;
    text-align:center;
  }
  .follow .section-head{ margin-bottom: 40px; }
  .social-row{
    display:flex; gap:18px; justify-content:center; flex-wrap:wrap;
    max-width: 720px; margin: 0 auto;
  }
  .social-btn{
    display:flex; align-items:center; gap:10px;
    background: var(--white);
    border: 1px solid #e6d9bd;
    padding: 14px 22px;
    border-radius: 999px;
    text-decoration:none;
    color: var(--navy);
    font-family:'Barlow Condensed', sans-serif;
    font-weight:600; letter-spacing:.04em; text-transform:uppercase;
    font-size:0.92rem;
    transition: all .18s ease;
  }
  .social-btn svg{ width:20px; height:20px; }
  .social-btn:hover, .social-btn:focus-visible{
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    transform: translateY(-3px);
    outline:none;
  }

  /* ---------- footer ---------- */
  footer{
    background: var(--navy-3);
    color: var(--cream-2);
    padding: 44px 28px 34px;
    text-align:center;
  }
  footer .brand{ justify-content:center; margin-bottom:14px; }
  footer .brand-name{ font-size:1.05rem; }
  footer p{ font-size:0.86rem; color:#8b93a8; }
  footer .foot-links{
    display:flex; gap:20px; justify-content:center; margin-top:16px;
    font-family:'Barlow Condensed', sans-serif;
    letter-spacing:.05em; text-transform:uppercase; font-size:0.82rem;
  }
  footer .foot-links a{ text-decoration:none; color:#b9c0d1; }
  footer .foot-links a:hover{ color: var(--gold); }

  @media (max-width: 760px){
    .nav-toggle{ display:flex; }
    .nav-wrap{ position:relative; flex-wrap:wrap; }
    nav.links{
      display:none;
      width:100%;
      flex-direction:column;
      gap:0;
      position:absolute;
      top:100%; left:0; right:0;
      background: var(--navy);
      border-bottom:3px solid var(--gold);
      box-shadow: 0 12px 24px rgba(0,0,0,.25);
    }
    nav.links.open{ display:flex; }
    nav.links a{
      padding:14px 28px;
      border-bottom:1px solid rgba(255,255,255,.08);
    }
  }
