/* =========================
   Pink Tree Coffee Roasters — Simplified v2
   Text over background video only
========================= */

* { box-sizing:border-box; margin:0; padding:0; }
html, body { height:100%; }

body {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: transparent;
  color: #111;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  overflow-y: scroll;
}

/* Background Video — reverted to centered crop (how it was before) */
#bg-video {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  pointer-events: none;
}

/* Frosted overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(255, 246, 250, 0.72);
  z-index: -1;
  pointer-events: none;
}

/* Sections — strict snap */
section {
  height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 8vh, 100px) clamp(20px, 5vw, 80px);
  text-align: center;
}

/* Content */
.content,
.hero-content {
  max-width: 720px;
  width: 100%;
  text-align: center;
}

/* Hero */
.hero-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.hero-image img {
  max-width: 280px;
  width: 100%;
  height: auto;
}

/* Typography */
.kicker {
  color: #e24a86;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

h1, h2 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 18px;
  color: #111;
}

.lead {
  font-size: 1.15rem;
  line-height: 1.65;
  color: #222;
}

/* Brew steps */
.brew-steps {
  margin: 40px 0;
  display: grid;
  gap: 24px;
}
.brew-steps > div {
  font-size: 1.1rem;
  line-height: 1.6;
  padding-left: 28px;
  position: relative;
  text-align: left;
  max-width: 520px;
  margin: 0 auto;
}
.brew-steps > div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background: #e24a86;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}

/* Buttons */
.cta-row {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 9999px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all 0.2s ease;
}
.btn.primary {
  background: #e24a86;
  color: #fff;
}
.btn.primary:hover { background: #b71753; transform: translateY(-1px); }
.btn.ghost {
  background: #fff;
  color: #e24a86;
  border: 1px solid #e24a86;
}
.btn.ghost:hover {
  background: #e24a86;
  color: #fff;
}

/* Footer */
footer {
  margin-top: 60px;
  color: rgba(17,17,17,0.65);
  font-size: 0.95rem;
}

/* Mobile */
@media (max-width: 640px) {
  .hero-image img { max-width: 220px; }
  .lead { font-size: 1.05rem; }
  section { padding: clamp(30px, 6vh, 80px) 20px; }
}
.brand-name {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 1000;
  line-height: 1.05;
  letter-spacing: 0em;
  color: #f8a1c3;   /* light pink */
  margin-bottom: 12px;
  -webkit-text-stroke: 8px black;
  paint-order: stroke fill;
}