:root {
  color-scheme: light;
  --ink: #30243a;
  --muted: #6d5d6e;
  --cream: #fff8e9;
  --rose: #eb787a;
  --rose-dark: #b84f5b;
  --rose-soft: #f7b4b5;
  --plum: #42263f;
  --gold: #ffd36e;
  --white: #ffffff;
  --shadow: 0 24px 54px rgba(80, 31, 55, 0.26);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: "Quicksand", "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.55;
}

body.modal-locked {
  height: 100vh;
  overflow: hidden;
}

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

a {
  color: inherit;
}

.wrap {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.page-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 72% 34%, rgba(255, 211, 110, 0.38), transparent 26%),
    linear-gradient(135deg, #8f3f67 0%, #eb787a 52%, #f4adae 100%);
  color: var(--white);
}

.site-header {
  position: relative;
  z-index: 5;
  padding: 18px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  width: 120px;
  height: auto;
}

.header-cta,
.button,
.cookie-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 7px;
  min-height: 52px;
  padding: 13px 20px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.header-cta {
  min-height: 42px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.hero {
  display: grid;
  align-items: center;
  min-height: calc(100vh - 86px);
  padding: 22px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  gap: 42px;
  align-items: center;
}

.section-label {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

h1,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  max-width: 700px;
  font-size: 4rem;
  line-height: 1.03;
  letter-spacing: 0;
}

.lead {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.93);
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 22px;
}

.button.primary,
.cookie-button.primary {
  background: linear-gradient(180deg, #ffe18b, #ffc847);
  color: #331f13;
  box-shadow: 0 16px 26px rgba(92, 34, 51, 0.28);
}

.button.secondary,
.cookie-button.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.58);
}

.proof-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

.proof-list li {
  position: relative;
  padding-left: 28px;
}

.proof-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(255, 211, 110, 0.18);
}

.hero-media {
  display: grid;
  justify-items: center;
  gap: 18px;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: var(--shadow);
}

.product {
  width: min(560px, 100%);
  filter: drop-shadow(0 24px 26px rgba(67, 27, 42, 0.3));
}

.certifications {
  width: min(430px, 100%);
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(22, 13, 27, 0.66);
  backdrop-filter: blur(6px);
}

.cookie-modal {
  position: relative;
  width: min(510px, 100%);
  border-radius: 10px;
  padding: 30px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 28px 70px rgba(11, 7, 14, 0.34);
}

.cookie-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 0;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  background: #f2e8ea;
  color: var(--plum);
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 900;
}

.cookie-modal h2 {
  margin: 0 0 10px;
  color: var(--plum);
  font-size: 1.7rem;
  line-height: 1.1;
}

.cookie-modal p {
  color: var(--muted);
  font-size: 1rem;
}

.cookie-modal a {
  color: var(--rose-dark);
  font-weight: 900;
}

.cookie-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.cookie-button.secondary {
  background: #f6ecee;
  color: var(--plum);
  box-shadow: none;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 3rem;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 17px;
  }

  .wrap {
    width: min(100% - 24px, 1120px);
  }

  .logo {
    width: 102px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 18px 0 38px;
  }

  h1 {
    font-size: 2.15rem;
  }

  .lead {
    font-size: 1.02rem;
  }

  .hero-actions,
  .cookie-actions {
    grid-template-columns: 1fr;
    display: grid;
  }

  .button,
  .cookie-button {
    width: 100%;
  }

  .hero-media {
    padding: 18px;
  }

  .cookie-modal {
    padding: 28px 18px 20px;
  }
}
