﻿:root {
  --bg-slate: #F8FAFC;
  --card-bg: #FFFFFF;
  --dark-slate: #0F172A;
  --dark-card: #1E293B;
  --orange: #F97316;
  --orange-hover: #EA580C;
  --cyan: #06B6D4;
  --text-main: #334155;
  --text-muted: #64748B;
  --border: #E2E8F0;
  --radius: 12px;
  --font-h: 'Syne', sans-serif;
  --font-b: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-b);
  background-color: var(--bg-slate);
  color: var(--text-main);
  line-height: 1.6;
}
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-hover); }

/* Top Banner */
.top-banner {
  background: var(--dark-slate);
  color: #F8FAFC;
  padding: 8px 0;
  font-size: 0.82rem;
}
.top-banner-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.pill-zero {
  background: var(--orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

/* Header */
.site-header {
  background: rgba(248, 250, 252, 0.95);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.nav-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark-slate);
}
.logo em {
  color: var(--orange);
  font-style: normal;
}
.nav-links {
  display: flex;
  gap: 26px;
}
.nav-links a {
  color: var(--dark-slate);
  font-size: 0.92rem;
  font-weight: 600;
}
.nav-links a:hover { color: var(--orange); }
.nav-burger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark-slate);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.94rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-align: center;
}
.btn-orange {
  background: var(--orange);
  color: #FFFFFF;
}
.btn-orange:hover {
  background: var(--orange-hover);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}
.btn-outline-light {
  background: transparent;
  border: 1px solid var(--border);
  color: #F8FAFC;
}
.btn-block { width: 100%; }
.btn-large { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }

/* Hero */
.hero-section {
  padding: 60px 0 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.tag-gradient {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  background: #FFEDD5;
  color: #C2410C;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-h);
  font-size: 2.8rem;
  line-height: 1.2;
  color: var(--dark-slate);
  margin-bottom: 18px;
}
.hero-title em {
  color: var(--orange);
  font-style: normal;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 560px;
}
.highlight-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}
.hl-item {
  font-size: 0.88rem;
  color: var(--dark-slate);
  font-weight: 600;
}
.check { color: #16A34A; }

/* Form Card */
.form-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
.form-head h3 {
  font-family: var(--font-h);
  font-size: 1.35rem;
  color: var(--dark-slate);
  margin-bottom: 6px;
}
.form-head p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.input-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.inp-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark-slate);
  margin-bottom: 5px;
}
.inp-group input {
  width: 100%;
  padding: 12px;
  background: #F1F5F9;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
}
.inp-group input:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
}
.agree-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.agree-box input { margin-top: 3px; }
.safe-note {
  display: block;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 10px;
}

/* Hero Right Photo & Floating Card */
.hero-img-wrap {
  position: relative;
}
.main-hero-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}
.floating-recipe-card {
  position: absolute;
  bottom: -25px;
  left: -20px;
  background: var(--dark-slate);
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #334155;
  max-width: 280px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}
.r-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1px;
}
.floating-recipe-card h4 {
  font-family: var(--font-h);
  font-size: 1.15rem;
  margin: 6px 0;
  color: #fff;
}
.floating-recipe-card p {
  font-size: 0.8rem;
  color: #CBD5E1;
  margin-bottom: 12px;
}
.r-stats {
  display: flex;
  gap: 10px;
  font-size: 0.72rem;
  color: #94A3B8;
  border-top: 1px solid #334155;
  padding-top: 8px;
}

/* Recipes Section */
.recipes-section {
  padding: 90px 0;
  background: #FFFFFF;
}
.section-title {
  max-width: 680px;
  margin: 0 auto 50px;
}
.sub-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-block;
}
.section-title h2 {
  font-family: var(--font-h);
  font-size: 2.2rem;
  color: var(--dark-slate);
  margin-bottom: 12px;
}
.recipes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.recipe-card {
  background: var(--bg-slate);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease;
}
.recipe-card:hover { transform: translateY(-4px); }
.r-photo img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.r-graphic-bg {
  height: 180px;
  background: #FEF3C7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.r-graphic-bg2 {
  height: 180px;
  background: #E0F2FE;
  display: flex;
  align-items: center;
  justify-content: center;
}
.recipe-glyph { font-size: 3.5rem; }
.r-info { padding: 22px; }
.r-step {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1px;
}
.recipe-card h3 {
  font-family: var(--font-h);
  font-size: 1.15rem;
  color: var(--dark-slate);
  margin: 6px 0 10px;
}
.recipe-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.pill-tag {
  display: inline-block;
  background: #E2E8F0;
  color: var(--dark-slate);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
}

/* Alchemy Section */
.alchemy-section {
  padding: 80px 0;
}
.alchemy-box {
  background: var(--dark-slate);
  color: #fff;
  border-radius: var(--radius);
  padding: 50px;
}
.alchemy-text h2 {
  font-family: var(--font-h);
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 14px;
}
.alchemy-text > p {
  color: #CBD5E1;
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 780px;
}
.comp-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.comp-col {
  background: var(--dark-card);
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #334155;
}
.comp-col.highlight {
  border-color: var(--orange);
  background: #241D1E;
}
.comp-col h4 {
  font-family: var(--font-h);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 14px;
}
.comp-col.highlight h4 { color: var(--orange); }
.comp-col ul { list-style: none; }
.comp-col ul li {
  margin-bottom: 10px;
  font-size: 0.92rem;
  color: #CBD5E1;
}

/* Instructor */
.instructor-section {
  padding: 80px 0;
  background: #fff;
}
.instructor-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  background: var(--bg-slate);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  align-items: center;
}
.inst-photo img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}
.inst-details {
  padding: 40px 40px 40px 0;
}
.inst-details h2 {
  font-family: var(--font-h);
  font-size: 2.2rem;
  color: var(--dark-slate);
  margin-bottom: 4px;
}
.inst-role {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.inst-details p {
  color: var(--text-main);
  font-size: 1rem;
  margin-bottom: 24px;
}
.inst-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.inst-badges span {
  background: #fff;
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--dark-slate);
  font-weight: 600;
}

/* FAQ */
.faq-section {
  padding: 80px 0;
}
.faq-wrap {
  max-width: 800px;
}
.f-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 14px;
}
.f-question {
  padding: 18px 22px;
  font-family: var(--font-h);
  font-size: 1.05rem;
  color: var(--dark-slate);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.f-answer {
  padding: 0 22px 18px;
  color: var(--text-muted);
  font-size: 0.92rem;
  display: none;
}
.f-item.active .f-answer { display: block; }

/* Bottom CTA */
.bottom-cta {
  padding: 80px 0;
  background: var(--dark-slate);
  color: #fff;
}
.bottom-cta h2 {
  font-family: var(--font-h);
  font-size: 2.4rem;
  margin-bottom: 12px;
}
.bottom-cta p {
  color: #94A3B8;
  font-size: 1.1rem;
  margin-bottom: 28px;
}

/* Footer */
.site-footer {
  background: #06090F;
  color: #94A3B8;
  padding: 60px 0 30px;
  font-size: 0.88rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col .logo-text {
  color: #fff;
  font-family: var(--font-h);
  font-size: 1.25rem;
  display: block;
  margin-bottom: 12px;
}
.footer-col .logo-text em { color: var(--orange); }
.footer-col h4 {
  color: #fff;
  font-family: var(--font-h);
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col a { color: #94A3B8; }
.footer-col a:hover { color: #fff; }
.footer-col address { font-style: normal; line-height: 1.7; }
.copy { margin-top: 16px; font-size: 0.8rem; }
.disclaimer-box {
  border-top: 1px solid #1E293B;
  padding-top: 24px;
  font-size: 0.78rem;
  line-height: 1.6;
}

/* Cookie Bar */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.98);
  border-top: 1px solid #334155;
  color: #F8FAFC;
  padding: 16px 0;
  z-index: 999;
  display: none;
}
.cookie-bar.active { display: block; }
.cookie-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.86rem;
}
.cookie-actions { display: flex; gap: 10px; }
.cookie-bar a { color: var(--orange); text-decoration: underline; }

/* Modal */
.modal-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  padding: 20px;
}
.modal-wrap.active {
  opacity: 1;
  visibility: visible;
}
.modal-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}
.modal-x {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--text-muted);
}
.modal-ico { font-size: 2.8rem; margin-bottom: 12px; }
.modal-box h3 { font-family: var(--font-h); font-size: 1.5rem; color: var(--dark-slate); margin-bottom: 10px; }
.modal-box p { color: var(--text-muted); font-size: 0.94rem; margin-bottom: 20px; }
.modal-gift {
  background: #FFEDD5;
  border: 1px dashed var(--orange);
  padding: 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  color: #C2410C;
  margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; }
  .floating-recipe-card { position: static; width: 100%; margin-top: 16px; }
  .recipes-grid { grid-template-columns: repeat(2, 1fr); }
  .comp-table { grid-template-columns: 1fr; }
  .instructor-card { grid-template-columns: 1fr; }
  .inst-details { padding: 30px; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero-title { font-size: 2.2rem; }
  .input-duo { grid-template-columns: 1fr; }
  .recipes-grid { grid-template-columns: 1fr; }
  .nav-burger { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.active { display: flex; }
  .nav-btn { display: none; }
}