/* Mise — NXT 2.0 Redesign: bright paint splatter aesthetic
   Premium food magazine meets bold energy. Sophisticated, not gaudy. */

:root {
  --bg: #f7f5f0;
  --surface: #ffffff;
  --surface-2: #f0ede8;
  --ink: #1a1817;
  --ink-2: #3d3830;
  --ink-muted: #7a726a;
  --terracotta: #c0674a;
  --terracotta-dim: #a85840;
  --green: #4a7c59;
  --paint-teal: #2dd4bf;
  --paint-pink: #f472b6;
  --paint-yellow: #fbbf24;
  --paint-red: #ef4444;
  --paint-blue: #60a5fa;
  --paint-purple: #a78bfa;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  /* Aliases for inner page compatibility (was dark theme) */
  --cream: #1a1817;
  --cream-dim: #7a726a;
  --bg-dark: #0f0f0e;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ───────────────────────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 60px;
  border-bottom: 1px solid rgba(26,24,23,0.07);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-brand { display: flex; flex-direction: column; gap: 2px; }

.wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--ink);
}

.nav-tagline {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 400;
}

.nav-links { display: flex; gap: 36px; }
.nav-links a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.03em;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--terracotta); }

.nav-cta {
  background: var(--ink);
  color: var(--bg);
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 22px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  letter-spacing: 0.02em;
}
.nav-cta:hover { background: var(--ink-2); }

/* ─── HERO ─────────────────────────────────────────────────────── */
.hero {
  padding: 0 60px;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--bg);
}

/* Paint splash blobs scattered across hero */
.hero-paint-1 {
  position: absolute;
  top: -60px;
  right: 160px;
  width: 480px;
  height: 480px;
  background: radial-gradient(ellipse, rgba(45,212,191,0.14) 0%, rgba(45,212,191,0.05) 50%, transparent 75%);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  pointer-events: none;
  animation: blob-morph 14s ease-in-out infinite alternate;
  z-index: 1;
}

.hero-paint-2 {
  position: absolute;
  bottom: -40px;
  left: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(ellipse, rgba(244,114,182,0.12) 0%, transparent 70%);
  border-radius: 50% 60% 40% 50% / 60% 40% 60% 40%;
  pointer-events: none;
  animation: blob-morph 18s ease-in-out infinite alternate-reverse;
  z-index: 1;
}

.hero-paint-3 {
  position: absolute;
  top: 20%;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(ellipse, rgba(251,191,36,0.10) 0%, transparent 70%);
  border-radius: 40% 60% 50% 40% / 50% 50% 60% 50%;
  pointer-events: none;
  animation: blob-morph 16s ease-in-out infinite alternate;
  z-index: 1;
}

.hero-paint-4 {
  position: absolute;
  bottom: 10%;
  right: 30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(167,139,250,0.10) 0%, transparent 70%);
  border-radius: 50% 50% 60% 40% / 40% 60% 50% 50%;
  pointer-events: none;
  z-index: 1;
}

@keyframes blob-morph {
  0%   { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; }
  33%  { border-radius: 50% 70% 30% 60% / 40% 50% 60% 50%; }
  66%  { border-radius: 40% 60% 50% 70% / 60% 40% 50% 50%; }
  100% { border-radius: 70% 30% 40% 60% / 50% 70% 40% 50%; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 120px 0 100px;
}

.hero-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 19px;
  color: var(--ink-2);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 52px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: var(--ink);
  color: var(--bg);
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 16px 32px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
  letter-spacing: 0.02em;
}
.btn-hero-primary:hover { background: var(--ink-2); }

.btn-hero-secondary {
  background: transparent;
  color: var(--ink-muted);
  border: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  padding: 16px 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.btn-hero-secondary:hover { color: var(--ink); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 48px;
  margin-top: 48px;
  border-top: 1px solid rgba(26,24,23,0.1);
}

.stat { display: flex; flex-direction: column; gap: 4px; }

.stat-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.stat-div {
  width: 1px;
  height: 40px;
  background: rgba(26,24,23,0.12);
}

/* ─── SECTIONS ──────────────────────────────────────────────────── */
.section-header {
  max-width: 640px;
  margin-bottom: 60px;
}

.section-rule {
  width: 48px;
  height: 3px;
  background: var(--terracotta);
  margin-bottom: 20px;
  border-radius: 2px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.1;
}

.section-lead {
  font-size: 17px;
  color: var(--ink-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ─── HOW ───────────────────────────────────────────────────────── */
.how {
  padding: 100px 60px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

/* Section paint accents */
.how-paint {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(251,191,36,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(26,24,23,0.06);
  position: relative;
  z-index: 2;
}

.step { background: var(--surface); padding: 52px 44px; }

.step-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  font-style: italic;
  color: rgba(192,103,74,0.18);
  margin-bottom: 20px;
  line-height: 1;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.step p {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ─── DIFFERENTIATORS ───────────────────────────────────────────── */
.diff {
  padding: 100px 60px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.diff-paint-1 {
  position: absolute;
  bottom: -60px;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(45,212,191,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.diff-paint-2 {
  position: absolute;
  top: -40px;
  right: 8%;
  width: 220px;
  height: 220px;
  background: radial-gradient(ellipse, rgba(244,114,182,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.diff-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.diff-left .section-rule { margin-bottom: 20px; }

.diff-left h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.15;
}

.diff-list { display: flex; flex-direction: column; gap: 0; }

.diff-item {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(26,24,23,0.07);
  align-items: flex-start;
}
.diff-item:first-child { border-top: 1px solid rgba(26,24,23,0.07); }

.diff-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(192,103,74,0.10);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  margin-top: 2px;
}

.diff-item h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.diff-item p {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ─── CHEFS ─────────────────────────────────────────────────────── */
.chefs {
  padding: 100px 60px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.chefs-paint {
  position: absolute;
  top: 20%;
  right: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(167,139,250,0.09) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.chef-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(26,24,23,0.06);
  position: relative;
  z-index: 2;
}

.chef-card { background: var(--surface); padding: 44px 36px; }

.chef-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 22px;
}

.chef-card-icon-teal { background: rgba(45,212,191,0.12); }
.chef-card-icon-pink { background: rgba(244,114,182,0.12); }
.chef-card-icon-yellow { background: rgba(251,191,36,0.12); }
.chef-card-icon-purple { background: rgba(167,139,250,0.12); }

.chef-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.chef-card p {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ─── PRICING ───────────────────────────────────────────────────── */
.pricing {
  padding: 100px 60px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.pricing-paint {
  position: absolute;
  bottom: -80px;
  left: 30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(251,191,36,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.price-block {
  background: var(--surface);
  padding: 48px 40px;
  border-radius: 16px;
  border: 1px solid rgba(26,24,23,0.08);
  position: relative;
  overflow: hidden;
}

.price-block-featured {
  background: var(--ink);
  border-color: var(--ink);
}

.price-block-featured .price-num,
.price-block-featured .price-label,
.price-block-featured .price-block p {
  color: var(--bg);
}

.price-block-featured .price-label { color: var(--paint-teal); }

.price-num {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.price-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 20px;
  font-weight: 500;
}

.price-block p {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ─── CLOSING ───────────────────────────────────────────────────── */
.closing {
  padding: 120px 60px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.closing-paint-1 {
  position: absolute;
  top: -60px;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(45,212,191,0.08) 0%, rgba(244,114,182,0.05) 50%, transparent 70%);
  border-radius: 50% 0% 50% 50%;
  pointer-events: none;
}

.closing-paint-2 {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 260px;
  height: 260px;
  background: radial-gradient(ellipse, rgba(251,191,36,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.closing-inner {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.closing-rule {
  width: 48px;
  height: 3px;
  background: var(--terracotta);
  margin-bottom: 36px;
  border-radius: 2px;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 28px;
}

.closing p {
  font-size: 17px;
  color: var(--ink-muted);
  line-height: 1.8;
  max-width: 620px;
  font-weight: 300;
}

.closing-cta {
  display: flex;
  gap: 14px;
  margin-top: 40px;
  align-items: center;
  flex-wrap: wrap;
}

/* ─── FOOTER ────────────────────────────────────────────────────── */
.footer {
  padding: 64px 60px;
  border-top: 1px solid rgba(26,24,23,0.08);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  background: var(--bg);
}

.footer-wordmark {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
}

.footer-tagline {
  font-size: 13px;
  color: var(--ink-muted);
  max-width: 240px;
  line-height: 1.6;
  font-weight: 300;
}

.footer-links { display: flex; gap: 60px; }

.footer-col { display: flex; flex-direction: column; gap: 12px; }

.footer-col h5 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 4px;
  font-weight: 500;
}

.footer-col a,
.footer-col span {
  font-size: 14px;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 300;
}
.footer-col a:hover { color: var(--ink); }

/* ─── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav { padding: 22px 32px; }
  .hero { padding: 0 32px; }
  .how, .diff, .chefs, .pricing, .closing { padding: 80px 32px; }
  .footer { padding: 48px 32px; flex-direction: column; }
  .steps-grid { grid-template-columns: 1fr; }
  .chef-features { grid-template-columns: repeat(2, 1fr); }
  .diff-inner { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
}

@media (max-width: 640px) {
  .nav { padding: 18px 24px; }
  .nav-links { display: none; }
  .hero { padding: 0 24px; }
  .how, .diff, .chefs, .pricing, .closing { padding: 60px 24px; }
  .footer { padding: 40px 24px; }
  .chef-features { grid-template-columns: 1fr; }
  .section-header h2, .diff-left h2 { font-size: 30px; }
  .closing h2 { font-size: 30px; }
}