/* ===== THE WILLOW BEAN — HOME PAGE STYLES ===== */
/* Page-specific styles for index.html. Shared styles are in styles.css. */
/* ===== FORCE LIGHT MODE - prevent iOS Safari dark mode ===== */
html,
body,
div,
section,
nav,
header,
footer,
main,
p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
a,
ul,
li,
button,
input,
textarea,
select,
label {
  -webkit-text-size-adjust: 100%;
}

html {
  background-color: var(--cream);
}

body {
  background-color: var(--cream);
  color: var(--espresso);
}

.section,
.about,
.story,
.expect,
.contact,
.features,
.coming-soon,
.she-believed {
  background-color: inherit;
}

/* Explicit light-mode colours — @media block below prevents OS dark-mode bleeding through */
.about-text p,
.story-text p,
.expect-item p,
.feature-desc {
  color: var(--mocha);
}

.section-title,
h1,
h2,
h3 {
  color: var(--espresso);
}

.features .section-title,
.features .feature-title {
  color: var(--cream);
}

.features .feature-desc {
  color: rgba(245, 240, 232, 0.65);
}

.contact-info-card h2,
.contact-info-card p {
  color: var(--cream);
}

@media (prefers-color-scheme: dark) {
  html { background-color: var(--cream); }
  body { background-color: var(--cream); color: var(--espresso); }
  .about-text p, .story-text p, .expect-item p, .feature-desc { color: var(--mocha); }
  .section-title, h1, h2, h3 { color: var(--espresso); }
  .features .section-title, .features .feature-title { color: var(--cream); }
  .features .feature-desc { color: rgba(245, 240, 232, 0.65); }
  .contact-info-card h2, .contact-info-card p { color: var(--cream); }
}





/* ===== HERO ===== */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 100px;
  overflow: hidden;
  background: var(--cream);
}

/* Large background coffee cup illustration */
.hero-bg-cup {
  position: absolute;
  bottom: -60px;
  right: -80px;
  width: 520px;
  opacity: 0.055;
  pointer-events: none;
  transform: rotate(8deg);
}



.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 110px);
  color: var(--espresso);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 8px;
  animation: fadeSlideUp 0.9s ease 0.1s both;
}


.hero-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto 32px;
  animation: fadeIn 1s ease 0.4s both;
}

.hero-divider-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--latte));
}

.hero-divider-line.right {
  background: linear-gradient(to left, transparent, var(--latte));
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(15px, 2vw, 18px);
  color: var(--mocha);
  max-width: 600px;
  line-height: 1.8;
  font-weight: 300;
  margin: 0 auto 44px;
  animation: fadeSlideUp 0.9s ease 0.3s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.9s ease 0.5s both;
}

.btn-primary {
  background: var(--espresso);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--mocha);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 18, 9, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--espresso);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 100px;
  border: 2px solid var(--espresso);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  background: var(--espresso);
  color: var(--cream);
  transform: translateY(-2px);
}

/* Logo area in hero */
.hero-logo-wrap {
  position: relative;
  margin-bottom: 32px;
  animation: logoEntrance 0.8s ease both;
}

.hero-logo-wrap img {
  width: min(600px, 88vw);
  height: auto;
  mix-blend-mode: multiply;
  filter: contrast(1.02) saturate(1.05);
  display: block;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 40%, transparent 75%);
}



/* ===== ABOUT ===== */
.section {
  position: relative;
  padding: 100px 40px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--latte-text);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--latte);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  color: var(--espresso);
  line-height: 1.15;
  margin-bottom: 24px;
}

.section-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2vw, 21px);
  font-style: italic;
  color: var(--latte-text);
  margin-bottom: 24px;
  font-weight: 400;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--mocha);
  margin-bottom: 20px;
  font-weight: 300;
}

.about-text p strong {
  font-weight: 700;
  color: var(--espresso);
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Illustrated coffee cup card */
.cup-card {
  background: var(--foam);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-warm);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(160, 112, 74, 0.15);
}

.cup-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--blush-light);
  opacity: 0.4;
}

.cup-card-svg {
  width: 240px;
  margin: 0 auto 24px;
}

.cup-card-quote {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--espresso);
  line-height: 1.6;
  margin-bottom: 16px;
}

.cup-card-attr {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--latte-text);
}

/* ===== FEATURES ===== */
.features {
  background: var(--espresso);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(92, 46, 14, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(140, 158, 126, 0.15) 0%, transparent 50%);
}

.features .section-label {
  color: var(--blush);
}

.features .section-label::before {
  background: var(--blush);
}

.features .section-title {
  color: var(--cream);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}

.feature-card {
  background: rgba(245, 240, 232, 0.06);
  border: 1px solid rgba(245, 240, 232, 0.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
  cursor: default;
}

.feature-card:hover {
  background: rgba(245, 240, 232, 0.1);
  transform: translateY(-4px);
  border-color: rgba(245, 240, 232, 0.22);
}

.events-pill {
  margin-top: 32px;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  border-radius: 20px;
  background: rgba(245, 240, 232, 0.07);
  border: 1px solid rgba(245, 240, 232, 0.12);
  cursor: default;
}

.events-pill.reveal {
  transition: background 0.3s, border-color 0.3s, transform 0.3s, opacity 0.7s, box-shadow 0.3s;
}

.events-pill:hover {
  background: rgba(245, 240, 232, 0.14);
  border-color: rgba(245, 240, 232, 0.3);
  transform: translateY(-4px);
}

.events-pill-btn {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--espresso);
  background: var(--cream);
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.events-pill-btn:hover {
  background: var(--espresso);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 18, 9, 0.35);
}

.events-pill-body {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.events-pill-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(232, 180, 184, 0.15);
  border: 1px solid rgba(232, 180, 184, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.events-pill-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 4px;
}

.events-pill-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.6;
  max-width: 580px;
}

.feature-age-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(232, 180, 184, 0.7);
  margin-bottom: 6px;
}

.cup-card-placeholder {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 2px dashed rgba(160, 112, 74, 0.3);
  background: var(--cream-dark);
  box-shadow: none;
}

.cup-card-placeholder-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(160, 112, 74, 0.5);
  margin: 0;
}

/* ===== PARKING ===== */
.parking-intro {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.parking-body {
  font-size: 16px;
  line-height: 1.9;
  color: var(--mocha);
  font-weight: 300;
  margin-bottom: 36px;
}

.parking-address {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 4px;
}

.parking-cards {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.parking-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--foam);
  border-radius: var(--radius);
  padding: 14px 20px;
  border: 1px solid rgba(160, 112, 74, 0.15);
}

.parking-card-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--espresso);
}

.parking-map {
  margin-top: 36px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(160, 112, 74, 0.15);
  box-shadow: var(--shadow-card);
}

.parking-map iframe {
  display: block;
  border: none;
}

.parking-map-footer {
  background: var(--foam);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.parking-map-caption {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--latte-text);
}

.parking-map-link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--mocha);
  text-decoration: none;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ===== FORM NOTES ===== */
.form-required-note {
  font-size: 12px;
  color: var(--mocha);
  opacity: 0.7;
  margin: 0;
}

.form-privacy-note {
  font-size: 12px;
  color: var(--latte);
  text-align: center;
  font-weight: 300;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(245, 240, 232, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 12px;
}

.feature-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.65);
  font-weight: 300;
}

/* ===== STORY / FOUNDER ===== */
.story {
  background: var(--cream-mid);
  position: relative;
}

.story-inner {
  display: block;
  max-width: 760px;
  margin: 0 auto;
}

.story-text p {
  font-size: 16px;
  line-height: 1.95;
  color: var(--mocha);
  margin-bottom: 24px;
  font-weight: 300;
}

.story-text p strong {
  font-weight: 700;
  color: var(--espresso);
}

/* Pull quote */
.pull-quote {
  position: relative;
  background: rgba(232, 180, 184, 0.13);
  border-radius: var(--radius);
  padding: 24px 28px 24px 56px;
  margin: 32px 0;
}

.pull-quote::before {
  content: '\201C';
  position: absolute;
  left: 18px;
  top: 10px;
  font-family: var(--font-serif);
  font-size: 56px;
  color: var(--blush);
  line-height: 1;
  opacity: 0.65;
}

.pull-quote p {
  font-family: var(--font-serif) !important;
  font-size: 22px !important;
  font-style: italic;
  color: var(--espresso) !important;
  line-height: 1.55 !important;
  font-weight: 400 !important;
}

/* ===== PRESS MENTION ===== */
.press-mention {
  background: var(--foam);
}

.press-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.press-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--latte-text);
  margin-bottom: 10px;
}

.press-publication {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 40px;
}

.press-quote {
  position: relative;
  margin: 0 0 36px;
  padding: 0 32px;
}

.press-quote::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 120px;
  color: var(--latte);
  opacity: 0.18;
  position: absolute;
  top: -28px;
  left: 0;
  line-height: 1;
  pointer-events: none;
}

.press-quote p {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2.2vw, 22px);
  font-style: italic;
  color: var(--espresso);
  line-height: 1.75;
  margin-bottom: 20px;
}

.press-attribution {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--mocha);
  font-weight: 400;
}

.press-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mocha);
  text-decoration: none;
  border-bottom: 2px solid var(--latte);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  margin-bottom: 20px;
}

.press-link:hover {
  color: var(--espresso);
  border-color: var(--espresso);
}

.press-link:focus-visible {
  border-radius: 2px;
}

.press-meta {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--latte-text);
}

/* ===== COMING SOON COUNTDOWN ===== */
.coming-soon {
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream-accent) 50%, var(--cream-deep) 100%);
  position: relative;
  text-align: center;
  overflow: hidden;
}

.countdown-wrap {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 48px 0;
  flex-wrap: wrap;
}

.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 80px);
  color: var(--espresso);
  line-height: 1;
  min-width: 100px;
  background: var(--foam);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(160, 112, 74, 0.12);
  margin-bottom: 10px;
}

.countdown-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--latte-text);
}

.countdown-sep {
  font-family: var(--font-display);
  font-size: 60px;
  color: var(--latte);
  opacity: 0.4;
  align-self: center;
  margin-bottom: 20px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(to right, var(--latte), var(--mocha));
  border-radius: 4px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== SOCIAL FOLLOW ===== */
.social-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
}

.social-strip p {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--mocha);
}

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

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--espresso);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.social-btn:hover {
  background: var(--mocha);
  transform: translateY(-2px);
}

.social-btn svg {
  width: 16px;
  height: 16px;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--foam);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: stretch;
}

.contact-info-card {
  background: var(--espresso);
  border-radius: var(--radius-xl);
  padding: 48px 36px;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.06);
}

.contact-info-card .section-label {
  color: var(--blush);
}

.contact-info-card .section-label::before {
  background: var(--blush);
}

.contact-info-card .section-title {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--cream);
  margin-bottom: 16px;
}

.contact-info-card p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.7);
  font-weight: 300;
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(245, 240, 232, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 16px;
  height: 16px;
}

.contact-detail-text {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.8);
  font-weight: 300;
}

.contact-detail-text strong {
  display: block;
  font-weight: 700;
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 0.5px;
}

.contact-detail-text a {
  color: rgba(245, 240, 232, 0.8);
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 240, 232, 0.25);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.contact-detail-text a:hover {
  color: var(--cream);
  border-color: rgba(245, 240, 232, 0.55);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mocha);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--cream);
  border: 1.5px solid rgba(160, 112, 74, 0.25);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--espresso);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--latte);
  box-shadow: 0 0 0 3px rgba(160, 112, 74, 0.12);
}

.form-group textarea {
  min-height: 220px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(92, 46, 14, 0.5);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 5px;
  margin-top: 2px;
  accent-color: var(--espresso);
  cursor: pointer;
}

.form-checkbox span {
  font-size: 13px;
  color: var(--mocha);
  line-height: 1.6;
  font-weight: 300;
}

.form-submit {
  background: var(--espresso);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 18px 40px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-submit:hover {
  background: var(--mocha);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 18, 9, 0.2);
}

.form-success {
  display: none;
  background: var(--sage-pale);
  border: 1px solid var(--sage-pale);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  color: var(--espresso);
}

.form-success.show {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.form-success strong {
  font-family: var(--font-serif);
  font-size: 18px;
}

.form-success p {
  font-size: 14px;
  color: var(--mocha);
  font-weight: 300;
}

.form-error {
  display: none;
  background: rgba(192, 73, 58, 0.07);
  border: 1px solid rgba(192, 73, 58, 0.28);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: #7A2218;
  font-size: 13.5px;
  line-height: 1.6;
  font-weight: 300;
}

.form-error.show {
  display: block;
}

.field-error {
  font-size: 12px;
  color: #7A2218;
  font-weight: 400;
  min-height: 1em;
  display: block;
}

.form-error a {
  color: #7A2218;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===== FAQ / WHAT TO EXPECT ===== */
.expect {
  background: var(--cream);
  position: relative;
}

.expect-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.expect-item::before {
  content: attr(data-num);
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 60px;
  color: rgba(160, 112, 74, 0.08);
  line-height: 1;
}


/* ===== PLAY STAT CARDS ===== */
.play-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.play-stat-card {
  border-radius: var(--radius);
  padding: 20px 22px;
  text-align: left;
}

.play-stat-card--cream {
  background: var(--cream-dark);
  border: 1px solid rgba(160, 112, 74, 0.12);
}

.play-stat-card--blush {
  background: var(--blush-light);
  border: 1px solid rgba(232, 180, 184, 0.3);
}

.play-stat-card--sage {
  background: var(--sage-pale);
  border: 1px solid rgba(140, 158, 126, 0.25);
}

.play-stat-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.play-stat-card--cream .play-stat-label { color: var(--latte-text); }
.play-stat-card--blush .play-stat-label { color: var(--mocha); }
.play-stat-card--sage  .play-stat-label { color: var(--sage); }

.play-stat-value {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--espresso);
  line-height: 1.1;
}

.play-stat-body {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--espresso);
  line-height: 1.6;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeScaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* LCP-safe logo entrance — scale only so the image is always painted */
@keyframes logoEntrance {
  from { transform: scale(0.92); }
  to   { transform: scale(1); }
}

@keyframes scrollWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  80% {
    transform: translateY(10px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 0;
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.7;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(-2deg);
  }

  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

@keyframes leafSway {

  0%,
  100% {
    transform: rotate(-3deg) translate(-8px, 8px);
  }

  50% {
    transform: rotate(-5deg) translate(-10px, 6px);
  }
}

@keyframes leafSway2 {

  0%,
  100% {
    transform: rotate(1.5deg) translate(4px, 4px);
  }

  50% {
    transform: rotate(3deg) translate(6px, 2px);
  }
}

/* Scroll reveal - only active when JS adds .js-reveal-ready to body */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

body.js-reveal-ready .reveal {
  opacity: 0;
  transform: translateY(32px);
}

body.js-reveal-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* Story cards animation */

/* Cup float */
.cup-card-svg {
  animation: float 4s ease-in-out infinite;
}

/* ===== RESPONSIVE ===== */

/* ===== WHAT TO EXPECT ===== */
.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.expect-item {
  background: var(--foam);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid rgba(160,112,74,0.1);
  box-shadow: var(--shadow-card);
}

.expect-item-icon {
  width: 44px;
  height: 44px;
  background: var(--cream-dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.expect-item-icon svg {
  width: 22px;
  height: 22px;
  color: var(--latte);
}

.expect-item h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--espresso);
  margin-bottom: 10px;
}

.expect-item p {
  font-size: 14px;
  color: var(--mocha);
  line-height: 1.7;
}

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

/* ===== SHE BELIEVED ===== */
.she-believed-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.she-believed-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 72px 10%;
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}

.she-believed-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(140, 158, 126, 0.1) 0%, transparent 65%);
}


.she-believed-words {
  position: relative;
  margin-bottom: 32px;
}

.she-believed-line1 {
  font-family: var(--font-body);
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 4px;
  opacity: 0.85;
}

.she-believed-line2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 8px;
}

.she-believed-line3 {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 28px);
  font-style: italic;
  color: var(--blush);
  margin-bottom: 8px;
}


@media (max-width: 900px) {
  .she-believed-content {
    padding: 48px 28px;
  }

  .section {
    padding: 72px 24px;
  }

  .about-grid,
  .story-inner,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    order: -1;
  }

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .events-pill {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
    gap: 20px;
  }

  .events-pill > a {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .hero {
    padding: 100px 24px 70px;
  }

  .countdown-sep {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 90px 16px 72px;
  }

  .section {
    padding: 56px 16px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .countdown-num {
    font-size: 44px;
    min-width: 68px;
  }

  .feature-card {
    padding: 28px 18px;
  }

  .about-grid,
  .story-inner,
  .contact-grid {
    gap: 24px;
  }

  .she-believed-content {
    padding: 36px 20px;
  }

  .events-pill {
    padding: 24px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

@keyframes steamRise {
  0% {
    transform: translateY(0) scaleX(1);
    opacity: 0;
  }

  15% {
    opacity: 0.38;
  }

  80% {
    opacity: 0.12;
  }

  100% {
    transform: translateY(-18px) scaleX(1.5);
    opacity: 0;
  }
}

.steam-waft {
  animation: steamRise 2.8s ease-in-out infinite;
  transform-origin: bottom center;
}

.steam-waft:nth-child(2) {
  animation-delay: 0.95s;
}

.steam-waft:nth-child(3) {
  animation-delay: 1.9s;
}

/* ===== COOKIE NOTICE ===== */
#cookie-notice {
  position: fixed;
  bottom: 20px;
  left: 16px;
  right: 16px;
  margin: 0 auto;
  z-index: 9997;
  width: min(600px, calc(100vw - 32px));
  background: var(--espresso);
  color: var(--cream);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 8px 40px rgba(44, 18, 9, 0.45);
  border: 1px solid rgba(245, 240, 232, 0.1);
  animation: fadeIn 0.4s ease both;
}

#cookie-notice span {
  flex: 1;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.78);
  font-weight: 300;
}

#cookie-notice span a {
  color: var(--blush);
  text-decoration: underline;
  text-underline-offset: 2px;
}

#cookie-notice button {
  background: var(--cream);
  color: var(--espresso);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s;
}

#cookie-notice button:hover {
  background: var(--cream-dark);
}

#cookie-notice button:focus-visible {
  outline: 3px solid var(--latte);
  outline-offset: 3px;
}

@media (max-width: 480px) {
  #cookie-notice {
    flex-direction: column;
    align-items: flex-start;
    bottom: 12px;
  }

  #cookie-notice button {
    width: 100%;
    text-align: center;
  }
}
  