:root {
  --coral: #ef8b7d;
  --cream: #fbf0e3;
  --navy: #12145f;
  --ink: #171413;
  --white: #fffdf9;
  --max: 1500px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Libre Baskerville", Georgia, serif;
  line-height: 1.65;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; }

.site-header {
  min-height: 120px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--coral);
  color: var(--white);
  position: relative;
  z-index: 3;
}
.brand {
  text-decoration: none;
  font: 500 clamp(2.1rem, 3.5vw, 3.8rem)/1 "Cormorant Garamond", Georgia, serif;
  white-space: nowrap;
}
nav { display: flex; gap: clamp(1rem, 2.5vw, 2.5rem); flex-wrap: wrap; justify-content: flex-end; }
nav a { text-decoration: none; font: 400 clamp(.95rem, 1.4vw, 1.35rem)/1 "Libre Baskerville", Georgia, serif; }
nav a:hover, nav a:focus-visible { text-decoration: underline; text-underline-offset: .35rem; }

.hero {
  position: relative;
  min-height: min(74vw, 820px);
  max-width: var(--max);
  margin: 0 auto;
  overflow: hidden;
  color: var(--white);
}
.hero > img { position: absolute; inset: 0; }
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,8,10,.20), rgba(20,8,10,.05) 42%, rgba(10,8,12,.48));
}
.hero h1 {
  position: relative;
  margin: 0;
  padding: .05em 3.5vw 0;
  font: 500 clamp(3.5rem, 8.2vw, 8.3rem)/.92 "Cormorant Garamond", Georgia, serif;
  letter-spacing: -.035em;
}
.hero p {
  position: absolute;
  left: 7.5vw;
  bottom: 4.5vw;
  width: min(550px, 72vw);
  margin: 0;
  font-size: clamp(1.05rem, 1.7vw, 1.7rem);
  line-height: 1.75;
  text-shadow: 0 2px 18px rgba(0,0,0,.5);
}

.split {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 760px;
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  background: var(--cream);
}
.image-panel { min-height: 680px; overflow: hidden; }
.copy-panel {
  padding: clamp(3.5rem, 8vw, 8rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.copy-panel h2 {
  margin: 0 0 1.2rem;
  font: 500 clamp(3.1rem, 5vw, 5.3rem)/1 "Cormorant Garamond", Georgia, serif;
  letter-spacing: -.03em;
}
.copy-panel p { font-size: clamp(1rem, 1.35vw, 1.28rem); }
.eyebrow {
  margin: 0 0 .8rem !important;
  color: var(--coral);
  font-size: .92rem !important;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow.navy { color: var(--navy); }
.two-column-copy { columns: 2; column-gap: 3rem; }
.two-column-copy p { break-inside: avoid; margin-top: 0; }

.book {
  grid-template-columns: 1fr 1fr;
  background: var(--white);
}
.book-copy { color: var(--navy); }
.book-copy h2 { max-width: 700px; }
.book-copy p { max-width: 620px; }
.book-image { min-height: 780px; }
.button {
  display: inline-flex;
  align-self: flex-start;
  justify-content: center;
  align-items: center;
  margin-top: 1.2rem;
  min-height: 64px;
  padding: .9rem 2rem;
  border-radius: 999px;
  background: var(--coral);
  color: var(--white);
  text-decoration: none;
  font-size: .95rem;
  text-align: center;
}
.button:hover, .button:focus-visible { filter: brightness(.95); transform: translateY(-1px); }

.recipe { grid-template-columns: 1fr 1fr; }
.recipe-copy { padding-left: clamp(3rem, 13vw, 12rem); }
.recipe-image { min-height: 780px; }
.recipe-intro { max-width: 650px; }
.form-slot {
  margin-top: 1.25rem;
  min-height: 155px;
  max-width: 620px;
  padding: 0;
  border: 0;
  border-radius: 0;
  display: block;
  text-align: left;
  background: transparent;
}
.form-note { margin: 0; color: rgba(23,20,19,.72); }
.fine-print { max-width: 620px; font-size: .82rem !important; opacity: .68; }

footer {
  min-height: 150px;
  padding: 2.5rem 4vw;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
footer p { margin: 0; }
footer a { text-underline-offset: .25rem; }

@media (max-width: 900px) {
  .site-header { min-height: 92px; align-items: flex-start; padding-top: 1.15rem; padding-bottom: 1.15rem; }
  .brand { font-size: 2.1rem; }
  nav { gap: .75rem 1.15rem; }
  nav a { font-size: .82rem; }
  .hero { min-height: 78vh; }
  .hero h1 { padding-top: .22em; font-size: clamp(3.1rem, 13vw, 6.2rem); }
  .hero p { left: 6vw; bottom: 7vw; }
  .split, .book, .recipe { grid-template-columns: 1fr; min-height: 0; }
  .image-panel, .book-image, .recipe-image { min-height: 65vh; }
  .about .image-panel { order: 1; }
  .about .copy-panel { order: 2; }
  .book .copy-panel { order: 1; }
  .book .image-panel { order: 2; }
  .recipe .copy-panel { order: 1; }
  .recipe .image-panel { order: 2; }
  .copy-panel, .recipe-copy { padding: 4.5rem 8vw; }
  .two-column-copy { columns: 1; }
}

@media (max-width: 560px) {
  .site-header { display: block; }
  nav { margin-top: 1rem; justify-content: flex-start; }
  .hero { min-height: 76vh; }
  .hero h1 { font-size: 3.35rem; }
  .hero p { font-size: .95rem; width: 82vw; }
  .copy-panel h2 { font-size: 3.1rem; }
  .image-panel, .book-image, .recipe-image { min-height: 58vh; }
  footer { align-items: flex-start; flex-direction: column; }
}


/* Keep the MailerLite embed to one clean signup row. The page already supplies
   the recipe heading and description above it. */
#mailerlite-form-slot .ml-form-embedContent,
#mailerlite-form-slot .ml-form-successContent h4,
#mailerlite-form-slot .ml-form-successContent p:first-of-type {
  display: none !important;
}
#mailerlite-form-slot .ml-form-embedWrapper,
#mailerlite-form-slot .ml-form-embedBody {
  max-width: 100% !important;
  padding: 0 !important;
  background: transparent !important;
}
