/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "DM Sans", sans-serif;
  background: #f5f5f5;
  color: #2b2b2b;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ===== CSS VARIABLES ===== */
:root {
  --red: #c62828;
  --red-hover: #b71c1c;
  --red-light: #ffebee;
  --grey-bg: #f5f5f5;
  --grey-card: #ffffff;
  --grey-border: #e0e0e0;
  --grey-text: #616161;
  --dark: #212121;
  --radius: 12px;
  --shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --max-w: 1120px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  color: var(--dark);
  line-height: 1.25;
}
h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
p {
  color: var(--grey-text);
  margin-bottom: 1rem;
}
a {
  color: var(--red);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--red-hover);
}

/* ===== UTILITY ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section {
  padding: 4rem 0;
}
.section--alt {
  background: #fff;
}
.text-center {
  text-align: center;
}
.badge {
  display: inline-block;
  background: var(--red-light);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

/* ===== HEADER / NAV ===== */
.header {
  background: #fff;
  border-bottom: 1px solid var(--grey-border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.92);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.5px;
}
.logo span {
  color: var(--red);
}
.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.875rem;
  color: var(--grey-text);
  font-weight: 500;
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--red);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  padding: 3.5rem 0 4rem;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero__content {
  max-width: 520px;
}
.hero__content h1 {
  margin-bottom: 1.25rem;
}
.hero__content h1 span {
  color: var(--red);
}
.hero__desc {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}
.hero__disclaimer {
  background: var(--red-light);
  border-left: 3px solid var(--red);
  padding: 0.75rem 1rem;
  font-size: 0.78rem;
  color: #b71c1c;
  border-radius: 0 8px 8px 0;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.hero__cta:hover {
  background: var(--red-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(198, 40, 40, 0.3);
}
.hero__image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.1));
}
.hero__image-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: #fff;
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: var(--shadow);
}
.hero__image-badge span {
  color: var(--red);
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow);
}
.feature-card__icon {
  width: 48px;
  height: 48px;
  background: var(--red-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.feature-card h3 {
  color: var(--dark);
}
.feature-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ===== CONTENT IMAGE SECTIONS ===== */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.content-split--reverse {
  direction: rtl;
}
.content-split--reverse > * {
  direction: ltr;
}
.content-split img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.content-split__text h2 {
  margin-bottom: 0.75rem;
}

/* ===== INGREDIENTS ===== */
.ingredients-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.ingredient-item {
  background: #fff;
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  transition: var(--transition);
}
.ingredient-item:hover {
  border-color: var(--red);
}
.ingredient-item h4 {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  color: var(--dark);
}
.ingredient-item p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* ===== AUDIENCE / HOW-TO ===== */
.audience-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.audience-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--grey-border);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.audience-card:hover {
  border-color: var(--red);
}
.audience-card__emoji {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.audience-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.audience-card p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  counter-reset: step;
}
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.step:hover {
  border-color: var(--red);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h3 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}
.step p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* ===== ORDER FORM ===== */
.order-section {
  background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
  border: 2px solid var(--red);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 540px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.order-section h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}
.order-section > p {
  text-align: center;
  font-size: 0.9rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.form-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--grey-border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
  background: #fff;
}
.form-group input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.12);
}
.form-submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
}
.form-submit:hover {
  background: var(--red-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(198, 40, 40, 0.3);
}
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--grey-text);
  margin-top: 0.75rem;
}
.price-tag {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--red);
  margin: 0.75rem 0 1.25rem;
}

/* ===== FOOTER ===== */
.footer {
  background: #212121;
  color: #bdbdbd;
  padding: 3rem 0 1.5rem;
  font-size: 0.85rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer h4 {
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
.footer p {
  color: #9e9e9e;
  margin-bottom: 0.5rem;
  font-size: 0.82rem;
}
.footer a {
  color: #bdbdbd;
  transition: var(--transition);
}
.footer a:hover {
  color: var(--red);
}
.footer__links {
  list-style: none;
}
.footer__links li {
  margin-bottom: 0.4rem;
}
.footer__disclaimer {
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: #757575;
  line-height: 1.6;
}
.footer__bottom {
  border-top: 1px solid #333;
  padding-top: 1rem;
  margin-top: 1rem;
  text-align: center;
  font-size: 0.75rem;
  color: #616161;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--grey-border);
  padding: 1.25rem;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  display: none;
}
.cookie-banner.active {
  display: block;
  animation: slideUp 0.4s ease;
}
.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner p {
  margin: 0;
  font-size: 0.85rem;
  flex: 1;
}
.cookie-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: var(--transition);
}
.cookie-btn--accept {
  background: var(--red);
  color: #fff;
}
.cookie-btn--accept:hover {
  background: var(--red-hover);
}
.cookie-btn--decline {
  background: var(--grey-border);
  color: var(--dark);
}
.cookie-btn--decline:hover {
  background: #ccc;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

/* ===== INNER PAGES ===== */
.page-header {
  background: #fff;
  border-bottom: 1px solid var(--grey-border);
  padding: 3rem 0;
}
.page-header h1 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 0.5rem;
}
.page-content {
  padding: 3rem 0;
}
.page-content h2 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.page-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.page-content p,
.page-content li {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--grey-text);
}
.page-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}
.page-content ul li {
  margin-bottom: 0.4rem;
}
.page-content a {
  color: var(--red);
}

/* ===== SUCCESS PAGE ===== */
.success-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
}
.success-card {
  background: #fff;
  border-radius: 16px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 520px;
}
.success-icon {
  width: 72px;
  height: 72px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}
.success-card h1 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}
.success-card p {
  font-size: 0.95rem;
}
.success-card .hero__cta {
  margin-top: 1.5rem;
  display: inline-flex;
  text-decoration: none;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
}
.contact-card__icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}
.contact-card h3 {
  margin-bottom: 0.35rem;
}
.contact-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
}
.contact-card a {
  font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__content {
    max-width: 100%;
  }
  .hero__image {
    order: -1;
  }
  .content-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .content-split--reverse {
    direction: ltr;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid var(--grey-border);
    box-shadow: var(--shadow);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .order-section {
    padding: 1.5rem;
  }
  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }
}
