/* BowlPrep merged marketing site — photo landing face + zip shop sections */

:root {
  --white: #ffffff;
  --cream: #f7f5f2;
  --light-grey: #efeeec;
  --charcoal: #2b2b2b;
  --announcement: #6f6f6f;
  --text: #333333;
  --text-muted: #666666;
  --black: #000000;
  --accent: #111111;
  --teal: #10665d;
  --teal-dark: #0b4f48;
  --line: #e6decc;
  --panel: #f4eee1;
  --radius: 14px;
  --max-width: 1120px;
  --font-sans: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Lato", "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Fraunces", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--charcoal);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--charcoal);
  color: var(--white);
  text-decoration: none;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Announcement bar */
.announcement {
  background: var(--announcement);
  color: var(--white);
  text-align: center;
  padding: 0.55rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.announcement a {
  color: var(--white);
  text-decoration: none;
}

.announcement a:hover {
  text-decoration: underline;
}

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--light-grey);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wordmark {
  text-decoration: none;
  color: var(--charcoal);
  font-family: var(--font-sans);
  line-height: 1.25;
}

.wordmark-line1 {
  display: block;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wordmark-line2 {
  display: block;
  font-size: clamp(0.55rem, 1.4vw, 0.72rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 0.2rem;
  color: var(--text-muted);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.site-nav a {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--charcoal);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--charcoal);
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--light-grey);
    display: none;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 1rem 1.5rem 1.5rem;
    align-items: flex-start;
  }

  .site-nav li {
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--light-grey);
    width: 100%;
  }

  .site-nav li:last-child {
    border-bottom: none;
  }

  .site-header {
    position: relative;
  }
}

/* Layout */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.band {
  padding: 4.5rem 0;
}

.band-cream {
  background: var(--cream);
}

.band-white {
  background: var(--white);
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  font-family: var(--font-sans);
  color: var(--charcoal);
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: -0.01em;
  margin: 0 0 1.25rem;
}

h2 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  letter-spacing: 0.02em;
  margin: 0 0 1.25rem;
}

.lead {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 38rem;
  margin: 0;
}

.prose {
  max-width: 40rem;
}

.prose p {
  margin: 0 0 1.25rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

/* Hero — full-bleed food photography */
.hero {
  position: relative;
  min-height: clamp(420px, 70vh, 640px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18)),
    url("../images/melon-pancakes.jpg") center / cover no-repeat;
  padding: 5rem 0;
}

.hero .container {
  width: 100%;
}

.hero-content {
  max-width: 34rem;
  background: rgba(255, 255, 255, 0.88);
  padding: 2.5rem 2rem;
  backdrop-filter: blur(2px);
}

.hero-content .lead {
  margin-bottom: 1.75rem;
}

.hero-cta {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: var(--charcoal);
  border: 2px solid var(--charcoal);
  padding: 0.95rem 2rem;
  transition: background 0.2s, color 0.2s;
}

.hero-cta:hover {
  background: transparent;
  color: var(--charcoal);
}

/* Recipe gallery */
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.recipe-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

@media (max-width: 640px) {
  .recipe-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}

/* Three stages — zip serif/teal on cream */
.sec-head {
  max-width: 560px;
  margin-bottom: 44px;
}

.sec-head h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.sec-head p {
  color: var(--text-muted);
  margin: 0;
}

.plan {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.plan::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--teal) 0 10px, transparent 10px 18px);
  opacity: 0.45;
}

.stage {
  padding: 0 22px;
  text-align: center;
  position: relative;
}

.stage .dot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--teal);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
}

.stage h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.stage p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

/* Buy box — zip sale section */
.buy-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  overflow: hidden;
}

.buy-copy {
  padding: 42px 40px;
}

.buy-copy h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.9rem;
  margin-bottom: 14px;
}

.buy-copy p {
  color: var(--text-muted);
  margin: 0 0 8px;
}

.buy-copy ul {
  list-style: none;
  margin: 18px 0 22px;
  padding: 0;
}

.buy-copy li {
  padding: 7px 0 7px 30px;
  position: relative;
  color: var(--text-muted);
}

.buy-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.sample-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--charcoal);
}

.sample-link:hover {
  text-decoration: underline;
}

.buy-side {
  background: var(--panel);
  padding: 42px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  border-left: 1px solid var(--line);
  text-align: center;
}

.price {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  color: var(--charcoal);
  margin: 0;
}

.price small {
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text-muted);
  font-weight: 400;
}

.btn-teal {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-body);
  border: 1.5px solid var(--teal);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.btn-teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--teal);
}

.btn-ghost:hover {
  background: var(--teal);
  color: #fff;
}

.guest-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: -4px 0 0;
}

.or {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

.or::before,
.or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.resend-note {
  font-size: 0.85rem;
  text-align: center;
  margin: 6px 0 0;
  color: var(--text-muted);
}

.resend-note a {
  color: var(--teal);
}

.app-store {
  margin-top: 0.25rem;
}

.app-store a {
  display: inline-block;
}

.app-store img {
  width: 160px;
  height: auto;
  margin: 0 auto;
}

/* Authors */
.people {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.person {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
}

.person h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.person .role {
  font-size: 0.85rem;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.person p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

.person a {
  color: var(--teal);
}

/* FAQ */
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.faq-list details:first-of-type {
  border-top: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--charcoal);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--teal);
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  margin-top: 12px;
  color: var(--text-muted);
  max-width: 65ch;
}

.faq-list details a {
  color: var(--teal);
}

/* Contact */
.contact-block {
  text-align: center;
  padding: 3rem 0;
}

.contact-block a {
  color: var(--teal);
}

.contact-block .btn-ghost {
  margin-top: 0.5rem;
}

/* About / privacy inner pages */
.page-hero {
  padding: 4rem 0 2rem;
  background: var(--cream);
}

.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.privacy-content {
  padding: 3rem 0 5rem;
}

.privacy-content h2 {
  font-size: 1.15rem;
  margin-top: 2rem;
}

.privacy-content ul {
  padding-left: 1.25rem;
}

.privacy-content a {
  color: var(--teal);
}

/* Footer */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 2.5rem 0;
  font-size: 0.9rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.footer-inner p {
  margin: 0 0 0.75rem;
}

.footer-inner a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.footer-nav {
  margin-top: 1rem;
}

.footer-nav a {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  margin: 0 0.75rem;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.disclaimer {
  max-width: 52ch;
  margin: 1rem auto 0;
  font-size: 0.82rem;
  color: #cfcfcf;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 860px) {
  .plan {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .plan::before {
    display: none;
  }

  .people {
    grid-template-columns: 1fr;
  }

  .buy-box {
    grid-template-columns: 1fr;
  }

  .buy-side {
    border-left: none;
    border-top: 1px solid var(--line);
  }

  .buy-copy {
    padding: 32px 24px;
  }

  .hero-content {
    padding: 2rem 1.35rem;
  }
}
