/* ===== Fonts ===== */
@font-face {
  font-family: "Awesome Serif";
  src: url("font/AwesomeSerif-ExtraTall.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ===== Tokens ===== */
:root {
  --bordeaux: #340202;
  --peche: #fae5d4;
  --beige: #f6f0ed;
  --bouton-peche: #ffd1c1;
  --texte-bouton: #fad2c4;
  --white: #ffffff;
  --black: #1a1a1a;

  --font-serif: "Awesome Serif", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", "Helvetica Neue", Arial, sans-serif;

  --radius: 6px;
  --page-pad: clamp(24px, 3vw, 40px);
  --section-gap: clamp(80px, 8vw, 120px);
  --content-max: 1280px;
}

/* ===== Reset ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ===== Announcement Bar ===== */
.announcement-bar {
  background: var(--bordeaux);
  color: var(--peche);
  text-align: center;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--font-sans);
}

/* ===== Header ===== */
.site-header {
  background: var(--white);
  padding: 22px 16px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.logo {
  display: inline-block;
}

.logo img {
  height: 38px;
  width: auto;
  display: block;
}

/* ===== Buttons ===== */
.btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 22px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
  border: none;
  line-height: 1;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.btn--peche {
  background: var(--bouton-peche);
  color: var(--bordeaux);
}

.btn--bordeaux {
  background: var(--bordeaux);
  color: var(--texte-bouton);
}

.btn--sm {
  padding: 12px 20px;
  font-size: 11px;
}

/* ===== Section Titles ===== */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.2vw, 44px);
  font-weight: 400;
  font-style: normal;
  line-height: 1.3;
  margin: 0 0 20px;
  color: var(--bordeaux);
  letter-spacing: -0.01em;
}

.section-title--center {
  text-align: center;
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1.5;
  margin-bottom: 48px;
}

.section-lead {
  font-size: clamp(14px, 1vw, 16px);
  color: var(--bordeaux);
  margin: 0 0 14px;
  line-height: 1.7;
  font-weight: 400;
}

.section-lead strong {
  font-weight: 700;
}

/* ===== Checklist ===== */
.checklist {
  margin: 0 0 24px;
}

.checklist li {
  font-size: clamp(14px, 1vw, 16px);
  color: var(--bordeaux);
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
  line-height: 1.7;
  font-weight: 400;
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--bordeaux);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 700;
}

.checklist--light li {
  color: var(--peche);
}

.checklist--light li::before {
  color: var(--peche);
}

/* ===== Generic page padding ===== */
main {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  width: 100%;
}

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.hero-card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  height: 700px;
}

.hero-card--text {
  background: var(--beige);
}

.hero-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card--text::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(52, 2, 2, 0) 40%, rgba(52, 2, 2, 0.72) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-card--text .hero-card__content {
  position: relative;
  z-index: 2;
  padding: clamp(24px, 3vw, 42px);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.hero-card--text {
  display: flex;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.2vw, 44px);
  font-weight: 400;
  font-style: normal;
  line-height: 1.25;
  color: var(--bordeaux);
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

.hero-card--text .hero-title {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  color: var(--white);
  font-size: clamp(14px, 1.1vw, 16px);
  margin: 0 0 24px;
  line-height: 1.55;
  opacity: 0.95;
  font-weight: 400;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-card--image {
  background: #f3d8c9;
}

.hero-card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Trust Badges ===== */
.trust-badges {
  background: var(--peche);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 50px;
  height: 90px;
  padding: 0 var(--page-pad);
  border-radius: 0;
  text-align: center;
}

.trust-badges__item {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--bordeaux);
  line-height: 1.5;
  text-transform: uppercase;
}

/* ===== Split sections ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.split--reverse .split__image {
  order: -1;
}

.split__content {
  padding: clamp(40px, 5vw, 80px) clamp(32px, 4vw, 60px);
  border-radius: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split__content--beige {
  background: var(--beige);
}

.split__image {
  border-radius: 0;
  overflow: hidden;
  background: var(--beige);
  height: 720px;
}

.split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split__image--centered img {
  object-fit: cover;
  object-position: center top;
}

.split__image--ulule {
  background: #c26a3c;
}

/* ===== Early Bird ===== */
.early-bird {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bordeaux);
  color: var(--peche);
  border-radius: 0;
  overflow: hidden;
  min-height: 570px;
}

.early-bird__text {
  padding: clamp(40px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.early-bird__title {
  font-family: var(--font-serif);
  color: var(--peche);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(32px, 3.2vw, 44px);
  margin-bottom: 20px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.early-bird__sub {
  font-size: clamp(14px, 1vw, 16px);
  color: var(--peche);
  margin: 0 0 16px;
  line-height: 1.7;
  font-weight: 400;
}

.early-bird__sub strong {
  font-weight: 700;
}

.early-bird__sub em {
  font-style: normal;
  opacity: 0.9;
}

.early-bird__note {
  font-size: clamp(14px, 1vw, 16px);
  color: var(--peche);
  opacity: 0.95;
  margin: 14px 0 24px;
  line-height: 1.7;
  font-weight: 400;
}

.early-bird__image {
  overflow: hidden;
  background: var(--beige);
}

.early-bird__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Ingredients ===== */
.ingredients {
  background: var(--white);
  padding: 100px var(--page-pad);
  border-radius: 0;
}

.ingredients__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
}

.ingredient {
  text-align: center;
}

.ingredient__img {
  width: 100%;
  max-width: 190px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--beige);
}

.ingredient__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ingredient__name {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  font-style: normal;
  color: var(--bordeaux);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.ingredient__desc {
  font-size: clamp(13px, 0.95vw, 15px);
  color: var(--bordeaux);
  margin: 0;
  line-height: 1.6;
  font-weight: 400;
}

/* ===== Testimonials ===== */
.testimonials {
  background: var(--beige);
  padding: 100px var(--page-pad);
  border-radius: 0;
  text-align: center;
}

.stars {
  color: var(--bordeaux);
  font-size: 14px;
  letter-spacing: 3px;
  margin: -24px 0 40px;
  font-weight: 400;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 320px));
  justify-content: center;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial {
  background: var(--white);
  border-radius: 0;
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.testimonial__img {
  position: relative;
  width: 100%;
  height: 340px;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 18px;
}

.testimonial__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial__name {
  position: absolute;
  bottom: 14px;
  left: 18px;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  font-style: normal;
  color: var(--white);
  margin: 0;
  text-align: left;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.testimonial__text {
  font-size: clamp(14px, 1vw, 16px);
  color: var(--bordeaux);
  text-align: left;
  margin: 0 0 18px;
  line-height: 1.7;
  flex: 1;
  font-weight: 400;
}

.testimonial .btn {
  align-self: stretch;
  width: 100%;
}

/* ===== Final CTA ===== */
.final-cta {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  min-height: 575px;
  display: flex;
  align-items: center;
  background: var(--bordeaux);
}

.final-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.final-cta__content {
  position: relative;
  z-index: 2;
  padding: clamp(40px, 5vw, 80px);
  max-width: 500px;
  color: var(--peche);
  background: linear-gradient(90deg, rgba(52, 2, 2, 0.85) 60%, rgba(52, 2, 2, 0));
}

.final-cta__title {
  font-family: var(--font-serif);
  color: var(--peche);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(32px, 3.2vw, 44px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.final-cta__text {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--peche);
  margin: 0 0 24px;
  opacity: 0.95;
  line-height: 1.7;
  font-weight: 400;
}

/* ===== Footer ===== */
.site-footer {
  text-align: center;
  padding: 32px 16px;
  font-size: 12px;
  color: var(--bordeaux);
  background: var(--white);
}

/* ===== Sticky CTA ===== */
.sticky-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: auto;
  display: inline-block;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(52, 2, 2, 0.2);
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
  animation: slideInUp 0.5s ease-out forwards;
}

.sticky-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(52, 2, 2, 0.25);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Cookie Banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--beige);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 20px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.cookie-banner__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.cookie-banner__content p {
  margin: 0;
  font-size: 14px;
  color: var(--bordeaux);
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.cookie-banner__actions .btn {
  width: auto;
  display: inline-block;
}

@media (min-width: 768px) {
  .cookie-banner__content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero,
  .split,
  .early-bird {
    grid-template-columns: 1fr;
  }

  .split__image {
    order: -1;
  }

  .early-bird__image {
    order: -1;
  }

  .ingredients__grid,
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ingredient__img {
    max-width: 200px;
  }

  .trust-badges {
    grid-template-columns: 1fr;
    gap: 14px;
    height: auto;
    padding: 24px var(--page-pad);
  }

  .hero-card--text .hero-card__content {
    max-width: 85%;
  }

  .final-cta__content {
    max-width: 100%;
    background: rgba(52, 2, 2, 0.78);
  }

  .hero-card {
    height: 420px;
  }

  .split__image {
    height: 420px;
    min-height: auto;
  }

  .early-bird,
  .final-cta {
    min-height: auto;
  }

  .sticky-btn {
    bottom: 24px;
    right: 24px;
    font-size: 10px;
    padding: 12px 18px;
  }
}

@media (max-width: 560px) {
  .section-title {
    font-size: clamp(24px, 6vw, 30px);
  }

  .hero-title {
    font-size: clamp(28px, 7vw, 36px);
  }

  .early-bird__title,
  .final-cta__title {
    font-size: clamp(28px, 7vw, 36px);
  }

  .ingredients {
    padding: 60px 20px;
  }

  .testimonials {
    padding: 60px 20px;
  }
}
