body{
  font-family: Nunito, sans-serif;
  background:#fffdf8;
  margin:0;
  color:#222;
}

*{
  box-sizing:border-box;
}

img{
  max-width:100%;
  display:block;
}

.hidden{
  display:none !important;
}

.topbar{
  position:relative;
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:20px;
  padding:14px 24px;
  min-height:96px;
  background:#fff;
  border-bottom:1px solid #eee;
}

.topbar-spacer{
  width:240px;
  flex:0 0 240px;
}

.brand-centered{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
}

.brand-centered img{
  width:220px;
  height:auto;
}

.muted{
  color:#666;
}

.topnav{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-left:auto;
}

.pill,
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border:none;
  border-radius:999px;
  font-weight:700;
  font-family:inherit;
  cursor:pointer;
  transition:transform .15s ease, opacity .15s ease, box-shadow .15s ease;
}

.pill:hover,
.btn:hover{
  transform:translateY(-1px);
  opacity:.95;
}

.pill{
  padding:11px 18px;
  background:#171717;
  color:#fff;
}

.pill-red,
.btn-red{
  background:#e4140f;
  color:#fff;
}

.hero{
  padding:64px 20px 48px;
  text-align:center;
}

.hero h1,
.secret-header h1,
.recipe-page-head h1{
  font-family:'Short Stack', cursive;
  font-size:clamp(2.4rem, 4vw, 4.4rem);
  line-height:1.12;
  margin:0 0 16px;
}

.hero p,
.secret-header p,
.recipe-page-head p{
  max-width:760px;
  margin:0 auto;
  font-size:1.08rem;
}

.buttons{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:22px;
}

.center-buttons{
  margin-top:28px;
}

.section{
  padding:32px 20px 40px;
  max-width:980px;
  margin:auto;
}

.section h2{
  font-size:2rem;
  margin:0 0 18px;
}

.cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.single-card{
  grid-template-columns:1fr;
}

.card,
.book-card{
  padding:22px;
  border-radius:24px;
  box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.book-card{
  display:grid;
  grid-template-columns:264px 1fr;
  gap:24px;
  align-items:center;
}

.book-cover{
  width:100%;
  max-width:264px;
  border-radius:18px;
  box-shadow:0 12px 24px rgba(0,0,0,.12);
}

.book-info h3,
.card h3{
  margin-top:0;
  margin-bottom:10px;
  font-size:1.6rem;
}

.book-info p,
.card p{
  margin:0 0 12px;
  font-size:1.04rem;
}

.book-features{
  list-style:none;
  padding:0;
  margin:10px 0 14px;
}

.book-features li{
  margin:0 0 8px;
  font-size:1rem;
}

.yellow{background:#f4e9be;}
.mint{background:#dff3ea;}

.card-secret{
  position:relative;
  overflow:hidden;
}

.card-secret::before,
.card-secret::after{
  content:"";
  position:absolute;
  border-radius:999px;
  background:rgba(255,255,255,.45);
  filter:blur(2px);
}

.card-secret::before{
  width:180px;
  height:180px;
  top:-70px;
  right:-30px;
}

.card-secret::after{
  width:120px;
  height:120px;
  bottom:-40px;
  left:-20px;
}

.btn{
  margin-top:8px;
  padding:12px 18px;
  background:#171717;
  color:#fff;
}

.secret-landing{
  max-width:900px;
  padding-top:56px;
  padding-bottom:60px;
}

.secret-header,
.recipe-page-head{
  text-align:center;
  margin-bottom:24px;
}

.secret-login{
  max-width:680px;
  margin:0 auto 24px;
}

.secret-label{
  display:block;
  font-weight:700;
  margin-bottom:10px;
}

.secret-form-row{
  display:flex;
  gap:12px;
  align-items:center;
}

.secret-input{
  width:100%;
  padding:15px 18px;
  border-radius:18px;
  border:1px solid #d9d1ad;
  font-size:1rem;
  font-family:inherit;
  background:#fffef7;
}

.secret-help{
  margin-top:12px;
  color:#6d6645;
}

.secret-error{
  min-height:24px;
  color:#c42c1b;
  font-weight:700;
  margin-top:8px;
}

.success-card{
  margin-bottom:18px;
}

.recipe-card{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:20px;
  align-items:center;
  background:#fff;
}

.recipe-card-copy{
  padding-right:6px;
}

.secret-badge{
  display:inline-block;
  margin-bottom:10px;
  padding:7px 12px;
  border-radius:999px;
  background:#fbe39a;
  font-weight:700;
  font-size:.92rem;
}

.recipe-thumb{
  width:100%;
  border-radius:18px;
  box-shadow:0 10px 20px rgba(0,0,0,.1);
}

.recipe-page{
  max-width:1050px;
}

.recipe-image-wrap{
  background:#fff;
  border-radius:24px;
  padding:16px;
  box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.recipe-image-full{
  width:100%;
  border-radius:18px;
}

footer{
  text-align:center;
  padding:28px;
  color:#777;
}

@media (max-width: 900px){
  .topbar{
    justify-content:center;
    padding-top:88px;
    min-height:auto;
  }

  .topbar-spacer{
    display:none;
  }

  .brand-centered{
    top:18px;
    transform:translateX(-50%);
  }

  .brand-centered img{
    width:180px;
  }

  .topnav{
    width:100%;
    justify-content:center;
    margin-left:0;
  }

  .recipe-card{
    grid-template-columns:1fr;
  }
}

@media (max-width: 720px){
  .topbar{
    padding-left:16px;
    padding-right:16px;
  }

  .brand-centered img{
    width:160px;
  }

  .book-card,
  .cards{
    grid-template-columns:1fr;
  }

  .book-cover{
    max-width:264px;
    margin:auto;
  }

  .section h2{
    font-size:1.7rem;
  }

  .secret-form-row{
    flex-direction:column;
    align-items:stretch;
  }
  }
  .contact-section{
  padding-top:60px;
}

.contact-card{
  max-width:520px;
  margin:auto;
  padding:18px;
}

.contact-header{
  text-align:center;
  margin-bottom:24px;
}

.contact-header p{
  max-width:520px;
  margin:auto;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.contact-form label{
  display:flex;
  flex-direction:column;
  gap:6px;
  font-weight:700;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:10px 14px;
  border:1px solid #d6d6d6;
  border-radius:14px;
  font:inherit;
  background:#fff;
}

.contact-form textarea{
  resize:vertical;
  min-height:120px;
}

.contact-button{
  align-self:center;
  padding:10px 18px;
}

@media (max-width:700px){
  .contact-grid{
    grid-template-columns:1fr;
  }

  .contact-button{
    width:100%;
  }
}

