:root {
  --cream: #FAF5EF;
  --cream-dark: #F0E8DC;
  --espresso: #1E1410;
  --espresso-soft: #4A3528;
  --gold: #C8963E;
  --gold-light: #D4A853;
  --sage: #8A9B7C;
  --blush: #E8D5C4;
  --white: #FFFFFF;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--espresso);
  font-family: 'Jost', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 3rem;
  border-bottom: 1px solid var(--blush);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--espresso);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 5rem 3rem 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--espresso);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.hero-sub p {
  font-size: 1.1rem;
  color: var(--espresso-soft);
  max-width: 420px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 2rem 0;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--espresso);
  letter-spacing: -0.02em;
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--espresso-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.15rem;
}

.stat-sep {
  width: 1px;
  height: 36px;
  background: var(--blush);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.croissant-orb {
  filter: drop-shadow(0 20px 40px rgba(200, 150, 60, 0.3));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  background: var(--white);
  border: 1px solid var(--blush);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--espresso-soft);
  box-shadow: 0 4px 16px rgba(30, 20, 16, 0.06);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4CAF50;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* FEATURES */
.features {
  background: var(--cream-dark);
  padding: 5rem 3rem;
}

.features-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3rem;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background: var(--cream);
  border: 1px solid var(--blush);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(200, 150, 60, 0.12);
}

.feature-icon {
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--espresso-soft);
  line-height: 1.65;
  font-weight: 300;
}

/* BAKERIES */
.bakeries {
  padding: 5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.bakeries-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.bakeries-sub {
  font-size: 1.1rem;
  color: var(--espresso-soft);
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.bakery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.bakery-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--blush);
  border-radius: 12px;
  padding: 1.25rem;
  transition: border-color 0.2s ease;
}

.bakery-card:hover {
  border-color: var(--gold-light);
}

.bakery-img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.bakery-info {
  flex: 1;
  min-width: 0;
}

.bakery-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--espresso);
  letter-spacing: -0.01em;
  margin-bottom: 0.2rem;
}

.bakery-loc {
  font-size: 0.78rem;
  color: var(--espresso-soft);
  margin-bottom: 0.5rem;
  font-weight: 300;
}

.bakery-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.tag {
  font-size: 0.68rem;
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  background: var(--cream-dark);
  border-radius: 100px;
  color: var(--espresso-soft);
  letter-spacing: 0.03em;
}

.bakery-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: 100px;
  flex-shrink: 0;
}

.status-dot-green {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4CAF50;
}

.status-dot-yellow {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FF9800;
}

.status-dot-red {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #E53935;
}

.in-stock { background: #F0F7F0; color: #2E7D32; }
.low-stock { background: #FFF8F0; color: #E65100; }
.sold-out { background: #FFF0F0; color: #C62828; }

/* MANIFESTO */
.manifesto {
  background: var(--espresso);
  color: var(--cream);
  padding: 5rem 3rem;
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.manifesto-quote {
  position: relative;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: var(--gold);
  line-height: 0.5;
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 300;
}

blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--cream);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.quote-attr {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

.manifesto-cta {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cta-text {
  font-size: 0.95rem;
  color: var(--cream);
  opacity: 0.7;
  line-height: 1.7;
  font-weight: 300;
}

.cta-text em {
  font-style: italic;
  color: var(--gold-light);
  opacity: 1;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--blush);
  padding: 2.5rem 3rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--espresso);
  letter-spacing: -0.02em;
}

.footer-brand p {
  font-size: 0.8rem;
  color: var(--espresso-soft);
  margin-top: 0.2rem;
  font-weight: 300;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--espresso-soft);
  font-weight: 400;
}

.footer-sep {
  color: var(--blush);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 1.25rem 1.5rem; }
  .hero { grid-template-columns: 1fr; padding: 3rem 1.5rem; text-align: left; }
  .hero-visual { display: none; }
  .features { padding: 3rem 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .bakeries { padding: 3rem 1.5rem; }
  .bakery-grid { grid-template-columns: 1fr; }
  .manifesto { padding: 3rem 1.5rem; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer { padding: 2rem 1.5rem; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .hero-stats { flex-wrap: wrap; }
}