:root {
  --forest-950: #151515;
  --forest-900: #242424;
  --forest-800: #353535;
  --forest-700: #505050;
  --sage-200: #d5d5d2;
  --sage-100: #ececea;
  --cream-100: #f7f7f4;
  --cream-200: #eeeeeb;
  --cream-300: #dcdcd7;
  --poppy-700: #bf9e42;
  --poppy-600: #aa8a33;
  --poppy-500: #aa8a33;
  --honey-500: #0b7c2f;
  --violet-500: #575d63;
  --ink: #1b1b1b;
  --muted: #636363;
  --white: #ffffff;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.11);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shell: 1180px;
  --story: 760px;
  --sans: Inter, "Helvetica Neue", Arial, ui-sans-serif, system-ui, sans-serif;
  --serif: Inter, "Helvetica Neue", Arial, ui-sans-serif, system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--cream-100);
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fff 0, var(--cream-100) 22rem, var(--cream-100) 100%);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

body.dialog-open::before {
  position: fixed;
  z-index: 900;
  inset: 0;
  background: rgba(8, 8, 8, 0.74);
  content: "";
  backdrop-filter: blur(4px);
}

dialog.is-fallback-open[open] {
  position: fixed;
  z-index: 901;
  top: 50%;
  left: 50%;
  margin: 0;
  animation: none;
  transform: translate(-50%, -50%);
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

:focus-visible {
  outline: 3px solid var(--honey-500);
  outline-offset: 4px;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--forest-950);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.offer-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 7px 20px;
  color: var(--white);
  background: var(--forest-950);
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: 0.03em;
  text-align: center;
}

.offer-bar__pulse {
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: #edc55f;
  box-shadow: 0 0 0 0 rgba(237, 197, 95, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 7px rgba(237, 197, 95, 0); }
  100% { box-shadow: 0 0 0 0 rgba(237, 197, 95, 0); }
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid #d5d5d2;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 4px;
  color: var(--white);
  background: var(--forest-950);
  box-shadow: inset 0 -4px 0 var(--honey-500);
  font-family: var(--sans);
  font-size: 25px;
  font-weight: 700;
}

.brand > span:last-child {
  display: grid;
  line-height: 1.08;
}

.brand strong {
  color: var(--forest-950);
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.germany-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest-900);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.germany-flag {
  display: flex;
  flex-direction: column;
  width: 30px;
  height: 20px;
  overflow: hidden;
  border: 1px solid rgba(15, 35, 28, 0.16);
  border-radius: 2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.germany-flag i {
  flex: 1;
}

.germany-flag i:nth-child(1) { background: #111; }
.germany-flag i:nth-child(2) { background: #dd0000; }
.germany-flag i:nth-child(3) { background: #ffcc00; }

.news-ribbon {
  border-bottom: 1px solid var(--cream-300);
  background: var(--cream-200);
}

.news-ribbon__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 44px;
  color: #5f665f;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sponsored-label {
  padding: 4px 9px;
  border-radius: 3px;
  color: #fff;
  background: var(--poppy-700);
}

.news-ribbon__date {
  margin-left: auto;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, var(--story)) 310px;
  align-items: start;
  justify-content: center;
  gap: 44px;
  padding-block: 54px 78px;
}

.story {
  min-width: 0;
}

.page-grid > *,
.feature-split > *,
.final-offer > * {
  min-width: 0;
}

.story-header {
  margin-bottom: 34px;
}

.eyebrow,
.section-kicker {
  margin-bottom: 12px;
  color: var(--poppy-700);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.story-header h1 {
  max-width: 740px;
  margin-bottom: 18px;
  color: var(--forest-950);
  font-family: var(--serif);
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 780;
  hyphens: auto;
  overflow-wrap: break-word;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.standfirst {
  max-width: 760px;
  margin-bottom: 20px;
  color: #37463e;
  font-family: var(--serif);
  font-size: clamp(20px, 2.3vw, 25px);
  font-weight: 500;
  line-height: 1.42;
}

.intro {
  max-width: 700px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 17px;
}

.rating-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.rating-line img {
  width: 116px;
  height: auto;
}

.rating-line strong {
  color: var(--forest-950);
}

.feature-figure {
  margin: 0 0 48px;
}

.feature-figure img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 800 / 449;
  object-fit: cover;
}

.feature-figure figcaption {
  margin: 14px 14px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.prose-section,
.facts-section,
.learning-section,
.gallery-section,
.benefits-section,
.reviews-section,
.closing-section {
  margin-block: 58px;
}

.prose-section h2,
.facts-section h2,
.learning-section h2,
.gallery-section h2,
.benefits-section h2,
.reviews-section h2,
.guarantee-card h2,
.closing-section h2,
.final-offer h2,
.update-card h2,
.legal-document h1,
.legal-document h2 {
  color: var(--forest-950);
  font-family: var(--serif);
  font-weight: 740;
  letter-spacing: -0.018em;
  line-height: 1.18;
}

.prose-section h2,
.facts-section h2,
.learning-section h2,
.gallery-section h2,
.benefits-section h2,
.reviews-section h2,
.closing-section h2 {
  margin-bottom: 24px;
  font-size: clamp(28px, 3.4vw, 40px);
}

.prose-section p,
.closing-section p {
  max-width: 710px;
  margin-bottom: 22px;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.72;
}

.prose-section blockquote {
  position: relative;
  margin: 34px 0;
  padding: 4px 0 4px 32px;
  border-left: 4px solid var(--honey-500);
  color: var(--forest-800);
  font-family: var(--sans);
  font-size: 22px;
  font-style: normal;
  font-weight: 650;
  line-height: 1.5;
}

.pull-quote {
  margin-top: 34px;
  color: var(--forest-800);
  font-size: 25px !important;
  font-style: italic;
}

.article-link-row {
  margin: -34px 0 58px;
  font-size: 15px;
  font-weight: 800;
}

.article-link {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  gap: 8px;
  color: var(--poppy-700);
  background: none;
  text-decoration-color: var(--poppy-700);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
  transition: color 150ms ease, background 150ms ease;
}

.article-link:visited {
  color: var(--poppy-700);
}

.article-link:hover {
  color: var(--forest-950);
  background: none;
  text-decoration-color: var(--forest-950);
}

.article-link span {
  flex: 0 0 auto;
  transition: transform 150ms ease;
}

.article-link:hover span {
  transform: translateX(3px);
}

.facts-section {
  padding: 38px;
  border: 1px solid var(--sage-200);
  border-radius: var(--radius-lg);
  background: var(--cream-200);
}

.facts-section h2 {
  max-width: 620px;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.fact-card {
  min-height: 165px;
  padding: 24px;
  border: 1px solid rgba(23, 63, 50, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
}

.fact-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--poppy-700);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}

.fact-card span {
  color: #536158;
  font-size: 14px;
  line-height: 1.5;
}

.source-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.story-chapter {
  position: relative;
}

.story-chapter::before {
  display: none;
  content: "";
}

.learning-section {
  overflow: hidden;
  padding: 42px;
  border: 1px solid #3a3a3a;
  border-top: 4px solid var(--honey-500);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--forest-950);
  box-shadow: var(--shadow-md);
}

.learning-section .section-kicker {
  color: #f0cb6c;
}

.learning-section h2 {
  max-width: 620px;
  color: var(--white);
}

.learning-list {
  display: grid;
  gap: 0;
  margin: 32px 0;
  padding: 0;
  list-style: none;
}

.learning-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.learning-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.learning-list li > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 3px;
  color: #f0cb6c;
  font-size: 11px;
  font-weight: 800;
}

.learning-list p {
  margin: 0;
  color: #dce9e1;
  font-size: 15px;
  line-height: 1.6;
}

.learning-list strong {
  color: var(--white);
}

.handwritten {
  margin: 26px 0 0;
  color: #f4dfaa;
  font-family: var(--sans);
  font-size: 20px;
  font-style: normal;
  font-weight: 650;
}

.section-heading-row,
.reviews-summary {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-heading-row h2,
.reviews-summary h2 {
  margin-bottom: 0;
}

.gallery-controls {
  display: flex;
  gap: 8px;
  padding-bottom: 6px;
}

.icon-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--sage-200);
  border-radius: 4px;
  color: var(--forest-900);
  background: var(--white);
  cursor: pointer;
  transition: color 150ms ease, background 150ms ease, transform 150ms ease;
}

.icon-button:hover {
  color: var(--white);
  background: var(--forest-900);
  transform: translateY(-2px);
}

.gallery {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--forest-950);
  box-shadow: var(--shadow-md);
}

.gallery__slide {
  display: none;
  margin: 0;
}

.gallery__slide.is-active {
  display: block;
  animation: reveal 360ms ease both;
}

@keyframes reveal {
  from { opacity: 0; transform: scale(1.015); }
  to { opacity: 1; transform: scale(1); }
}

.gallery__slide img {
  width: 100%;
  aspect-ratio: 800 / 447;
  object-fit: cover;
}

.gallery__slide figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  width: fit-content;
  max-width: calc(100% - 36px);
  margin: 0;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  color: var(--white);
  background: rgba(14, 43, 34, 0.76);
  backdrop-filter: blur(8px);
  font-size: 12px;
  line-height: 1.4;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.gallery-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: #bec7c0;
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.gallery-dot.is-active {
  width: 28px;
  background: var(--poppy-600);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.benefit-grid article {
  padding: 24px;
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: none;
}

.benefit-grid article > span {
  color: var(--honey-500);
  font-size: 24px;
}

.benefit-grid h3 {
  margin: 11px 0 8px;
  color: var(--forest-950);
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 750;
}

.benefit-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.product-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 12px;
  border: 1px solid var(--sage-200);
  border-radius: 4px;
  color: var(--forest-900);
  background: var(--sage-100);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.price-line del {
  color: var(--muted);
  font-size: 16px;
}

.price-line strong {
  color: var(--poppy-700);
  font-family: var(--sans);
  font-size: 34px;
  line-height: 1;
}

.price-line span {
  padding: 4px 8px;
  border-radius: 3px;
  color: #fff;
  background: var(--poppy-700);
  font-size: 10px;
  font-weight: 900;
}

.size-and-color {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-block: 22px;
}

.option-group > strong {
  display: block;
  margin-bottom: 9px;
  color: var(--forest-950);
  font-size: 12px;
}

.size-chips,
.color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.size-chips li {
  display: grid;
  min-width: 38px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--sage-200);
  border-radius: 8px;
  color: var(--forest-900);
  background: #fff;
  font-size: 10px;
  font-weight: 800;
}

.color-swatches li {
  display: grid;
  gap: 5px;
  justify-items: center;
  color: var(--muted);
  font-size: 8px;
}

.color-swatches i {
  width: 26px;
  height: 26px;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--sage-200);
}

.swatch--sky { background: #a9c7d9; }
.swatch--navy { background: #253c55; }
.swatch--grey { background: #8d9395; }
.swatch--sand { background: #c5ad86; }
.swatch--black { background: #25282a; }
.swatch--ecru { background: #f2f0e9; }

.rating-breakdown {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 34px;
  margin-block: 68px;
  padding: 34px;
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: none;
}

.rating-breakdown__score {
  display: grid;
  align-content: start;
  justify-items: start;
}

.rating-breakdown__score strong {
  color: var(--forest-950);
  font-family: var(--sans);
  font-size: 64px;
  line-height: 1;
}

.rating-breakdown__score img {
  width: 112px;
  margin-block: 10px 6px;
}

.rating-breakdown__score span {
  color: var(--muted);
  font-size: 11px;
}

.rating-bars {
  display: grid;
  gap: 10px;
}

.rating-bar {
  display: grid;
  grid-template-columns: 62px 1fr 36px;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
}

.rating-bar i {
  position: relative;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--sage-100);
}

.rating-bar i::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--honey-500), var(--poppy-500));
  content: "";
}

.rating-bar--5 i::after { width: 90%; }
.rating-bar--4 i::after { width: 7%; }
.rating-bar--3 i::after { width: 2%; }
.rating-bar--2 i::after { width: 0; }
.rating-bar--1 i::after { width: 1%; }

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 34px;
  margin-block: 68px;
}

.feature-split__visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.feature-split__content h2 {
  color: var(--forest-950);
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 740;
  letter-spacing: -0.025em;
  line-height: 1.14;
}

.feature-split__content p {
  color: var(--muted);
  font-size: 15px;
}

.update-card {
  margin-block: 70px;
  padding: 42px;
  border: 1px solid #e9c4bb;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0, rgba(200, 82, 66, 0.1), transparent 18rem),
    #fff5f1;
  box-shadow: var(--shadow-sm);
}

.update-card__label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--poppy-700);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.update-card h2 {
  max-width: 650px;
  margin-bottom: 18px;
  font-size: clamp(31px, 4vw, 44px);
}

.update-card > p {
  max-width: 680px;
  color: #5f5b58;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  gap: 10px;
  padding: 12px 20px;
  border: 0;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--white);
  background: var(--poppy-700);
  box-shadow: 0 4px 12px rgba(169, 0, 24, 0.2);
}

.button--primary:hover {
  background: #850013;
  box-shadow: 0 6px 16px rgba(169, 0, 24, 0.26);
}

.button--large {
  min-height: 58px;
  padding-inline: 30px;
  font-size: 16px;
}

.button--block {
  width: 100%;
}

.score-card {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 4px 10px;
  padding: 15px 18px;
  border: 1px solid var(--sage-200);
  border-radius: var(--radius-md);
  background: var(--white);
}

.score-card strong {
  grid-row: span 2;
  color: var(--forest-950);
  font-family: var(--sans);
  font-size: 42px;
  line-height: 1;
}

.score-card img {
  width: 94px;
}

.score-card span {
  color: var(--muted);
  font-size: 10px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.review-card {
  padding: 22px;
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: none;
}

.review-card header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.review-card header img {
  width: 50px;
  height: 50px;
  border: 2px solid var(--cream-300);
  border-radius: 50%;
  object-fit: cover;
}

.review-card header div {
  display: grid;
}

.review-card header strong {
  color: var(--forest-950);
  font-size: 14px;
}

.review-card header span {
  color: var(--muted);
  font-size: 10px;
}

.review-card > p {
  margin: 0;
  color: #4d5a52;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
}

.guarantee-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 26px;
  margin-block: 68px;
  padding: 32px;
  border: 1px solid var(--sage-200);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.guarantee-seal {
  display: grid;
  width: 104px;
  height: 104px;
  align-content: center;
  justify-items: center;
  border: 2px solid var(--forest-950);
  border-radius: 50%;
  color: var(--forest-950);
  background: var(--cream-100);
  box-shadow: inset 0 0 0 5px var(--cream-100), inset 0 0 0 6px var(--honey-500);
  line-height: 1;
}

.guarantee-seal strong {
  font-size: 36px;
  font-weight: 850;
}

.guarantee-seal span {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.guarantee-card h2 {
  margin-bottom: 10px;
  font-size: 32px;
  hyphens: auto;
  overflow-wrap: anywhere;
}

.guarantee-card > div:last-child {
  min-width: 0;
}

.guarantee-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.closing-section {
  padding-block: 18px;
  text-align: center;
}

.closing-section h2,
.closing-section p {
  margin-inline: auto;
}

.closing-mantra {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-block: 32px !important;
  font-family: var(--sans) !important;
  font-size: 14px !important;
}

.closing-mantra strong {
  padding: 8px 13px;
  border: 1px solid var(--sage-200);
  border-radius: 999px;
  color: var(--forest-900);
  background: var(--white);
}

.final-offer {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  margin-block: 76px 36px;
  border: 1px solid #333;
  border-top: 4px solid #dd0000;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--forest-950);
  box-shadow: var(--shadow-md);
}

.final-offer__visual {
  position: relative;
  min-height: 440px;
}

.final-offer__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--forest-950) 100%);
  content: "";
}

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

.discount-badge {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 22px;
  display: grid;
  width: 94px;
  height: 58px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  color: var(--forest-950);
  background: var(--honey-500);
  font-size: 20px;
  font-weight: 900;
  transform: none;
}

.final-offer__content {
  align-self: center;
  padding: 42px 42px 42px 22px;
}

.final-offer .section-kicker {
  color: #edc862;
}

.final-offer h2 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: 40px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 27px;
  color: #deebe3;
  font-size: 14px;
}

.check-list li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--forest-950);
  background: #edc862;
  content: "✓";
  font-size: 11px;
  font-weight: 900;
}

.microcopy {
  margin: 13px 0 0;
  color: #aac0b4;
  font-size: 10px;
  line-height: 1.45;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.trust-row article {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-md);
  background: var(--white);
  text-align: center;
}

.trust-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 2px solid var(--forest-950);
  border-radius: 50%;
  color: var(--forest-950) !important;
  background: var(--cream-100);
  font-size: 20px !important;
  font-weight: 850 !important;
}

.trust-row span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  line-height: 1.3;
}

.purchase-card {
  position: sticky;
  top: 24px;
  overflow: hidden;
  margin-top: 12px;
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.purchase-card__image {
  position: relative;
}

.purchase-card__image > span {
  position: absolute;
  z-index: 1;
  top: 13px;
  left: 13px;
  padding: 6px 10px;
  border-radius: 3px;
  color: var(--white);
  background: var(--poppy-700);
  font-size: 13px;
  font-weight: 900;
}

.purchase-card__image img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

.purchase-card__body {
  padding: 24px;
}

.purchase-card__eyebrow {
  margin-bottom: 8px;
  color: var(--poppy-700);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.purchase-card h2 {
  margin-bottom: 8px;
  color: var(--forest-950);
  font-family: var(--sans);
  font-size: 27px;
  line-height: 1.1;
}

.purchase-card__body > p:not(.purchase-card__eyebrow) {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.purchase-card__rating {
  color: var(--muted);
  font-size: 12px;
}

.purchase-card__rating span {
  color: var(--honey-500);
  letter-spacing: 0.06em;
}

.purchase-card ul {
  display: grid;
  gap: 6px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.purchase-card li {
  position: relative;
  padding-left: 21px;
  color: #536158;
  font-size: 12px;
}

.purchase-card li::before {
  position: absolute;
  left: 0;
  color: var(--forest-700);
  content: "✓";
  font-weight: 900;
}

.purchase-card small {
  display: block;
  margin-top: 11px;
  color: #909890;
  font-size: 9px;
  line-height: 1.4;
  text-align: center;
}

.site-footer {
  color: #dce8e1;
  background: #151515;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand--footer .brand__mark {
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.brand--footer strong {
  color: var(--white);
}

.brand--footer small {
  color: #aabdb3;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
}

.legal-nav a,
.legal-nav__button {
  color: #e9f0ec;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-nav__button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.legal-nav a:hover,
.legal-nav__button:hover {
  color: #f1cb68;
}

.disclosure {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-block: 24px 34px;
  color: #9db2a7;
  font-size: 10px;
  line-height: 1.6;
}

.disclosure p {
  margin: 0;
}

.disclosure p:first-child {
  max-width: 780px;
}

.disclosure p:last-child {
  flex: 0 0 auto;
}

.mobile-offer {
  position: fixed;
  z-index: 60;
  right: 14px;
  bottom: max(14px, env(safe-area-inset-bottom));
  left: 14px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 10px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--white);
  background: rgba(21, 21, 21, 0.97);
  box-shadow: 0 16px 44px rgba(7, 25, 19, 0.32);
  backdrop-filter: blur(12px);
  transform: translateY(calc(100% + 30px));
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.mobile-offer.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.mobile-offer > div {
  display: grid;
  min-width: 0;
  line-height: 1.25;
}

.mobile-offer strong {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-offer span {
  color: #edc862;
  font-size: 10px;
}

.mobile-offer .button {
  min-height: 42px;
  flex: 0 0 auto;
  padding-inline: 17px;
  font-size: 12px;
}

.offer-dialog {
  width: min(680px, calc(100% - 28px));
  max-height: calc(100vh - 28px);
  overflow: auto;
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.35);
}

.offer-dialog::backdrop {
  background: rgba(7, 25, 19, 0.72);
  backdrop-filter: blur(5px);
}

.offer-dialog[open] {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  animation: dialog-in 220ms ease both;
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 4px;
  color: var(--forest-950);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.offer-dialog__visual img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
}

.offer-dialog__content {
  align-self: center;
  padding: 46px 34px;
}

.offer-dialog__content h2 {
  margin-bottom: 14px;
  color: var(--forest-950);
  font-family: var(--sans);
  font-size: 34px;
  line-height: 1.1;
}

.offer-dialog__content > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.policy-dialog {
  width: min(820px, calc(100% - 28px));
  max-height: min(88vh, 850px);
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

.policy-dialog::backdrop {
  background: rgba(7, 25, 19, 0.74);
  backdrop-filter: blur(5px);
}

.policy-dialog[open] {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  animation: dialog-in 220ms ease both;
}

.policy-dialog__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 70px 20px 30px;
  border-bottom: 1px solid var(--cream-300);
  background: var(--white);
}

.policy-dialog__header p {
  margin-bottom: 4px;
  color: var(--poppy-700);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.policy-dialog__header h2 {
  margin: 0;
  color: var(--forest-950);
  font-family: var(--sans);
  font-size: clamp(27px, 4vw, 38px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.dialog-close--policy {
  top: 22px;
  right: 22px;
  color: var(--white);
  background: var(--forest-900);
}

.policy-dialog__body {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 28px 32px 40px;
  scrollbar-color: var(--sage-200) transparent;
  scrollbar-width: thin;
}

.policy-dialog__body h3 {
  margin: 32px 0 10px;
  color: var(--forest-900);
  font-family: var(--sans);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.25;
}

.policy-dialog__body p,
.policy-dialog__body li {
  color: #48554e;
  font-size: 14px;
  line-height: 1.72;
}

.policy-dialog__body ul {
  display: grid;
  gap: 7px;
  padding-left: 22px;
}

.policy-notice {
  padding: 16px 18px;
  border: 1px solid #e2bd64;
  border-radius: var(--radius-sm);
  color: #58451b;
  background: #fff5d9;
  font-size: 12px;
  line-height: 1.55;
}

.policy-updated {
  margin: 20px 0 26px;
  color: var(--muted) !important;
  font-size: 11px !important;
}

/* Legal pages */
.legal-body {
  background: var(--cream-100);
}

.legal-hero {
  padding: 70px 0 58px;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 15%, rgba(228, 173, 50, 0.2), transparent 20rem),
    var(--forest-950);
}

.legal-hero .shell {
  max-width: 920px;
}

.legal-hero .eyebrow {
  color: #edc862;
}

.legal-hero h1 {
  max-width: 780px;
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: clamp(43px, 6vw, 66px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.legal-hero p:last-child {
  max-width: 700px;
  margin-bottom: 0;
  color: #c6d7ce;
}

.legal-main {
  width: min(calc(100% - 40px), 920px);
  margin: -28px auto 80px;
}

.template-alert {
  position: relative;
  z-index: 2;
  margin-bottom: 22px;
  padding: 20px 24px;
  border: 1px solid #e2bd64;
  border-radius: var(--radius-md);
  color: #58451b;
  background: #fff5d9;
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  line-height: 1.55;
}

.template-alert strong {
  color: #6d4f08;
}

.legal-document {
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.legal-document .updated {
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 12px;
}

.legal-document h2 {
  margin: 42px 0 16px;
  padding-top: 8px;
  font-size: 29px;
}

.legal-document h3 {
  margin: 28px 0 10px;
  color: var(--forest-900);
  font-size: 17px;
}

.legal-document p,
.legal-document li {
  color: #48554e;
  font-size: 15px;
  line-height: 1.72;
}

.legal-document ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.legal-document a {
  color: var(--forest-800);
  text-underline-offset: 3px;
}

.placeholder {
  display: inline-block;
  padding: 1px 6px;
  border-radius: 5px;
  color: #7a362d;
  background: #f8e0da;
  font-size: 0.93em;
  font-weight: 750;
}

.legal-callout {
  margin-block: 28px;
  padding: 20px 22px;
  border-left: 4px solid var(--honey-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--cream-200);
}

.legal-callout p:last-child {
  margin-bottom: 0;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--forest-900);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 1080px) {
  .page-grid {
    grid-template-columns: minmax(0, var(--story));
  }

  .purchase-card {
    display: none;
  }

  .mobile-offer {
    display: flex;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .offer-bar {
    min-height: 42px;
    padding-inline: 14px;
    font-size: 11px;
  }

  .site-header__inner {
    min-height: 68px;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .brand strong {
    font-size: 22px;
  }

  .brand small {
    font-size: 8px;
  }

  .germany-label {
    font-size: 0;
  }

  .news-ribbon__inner {
    min-height: 39px;
    gap: 10px;
    font-size: 9px;
  }

  .news-ribbon__date {
    display: none;
  }

  .page-grid {
    padding-block: 34px 58px;
  }

  .story-header h1 {
    font-size: clamp(30px, 8.4vw, 36px);
    line-height: 1.12;
    letter-spacing: -0.02em;
  }

  .standfirst {
    font-size: clamp(18px, 4.8vw, 20px);
    line-height: 1.45;
  }

  .intro {
    font-size: 15px;
  }

  .feature-figure {
    margin-bottom: 48px;
  }

  .feature-figure img,
  .gallery {
    border-radius: 10px;
  }

  .prose-section,
  .facts-section,
  .learning-section,
  .gallery-section,
  .benefits-section,
  .reviews-section,
  .closing-section {
    margin-block: 48px;
  }

  .prose-section h2,
  .facts-section h2,
  .learning-section h2,
  .gallery-section h2,
  .benefits-section h2,
  .reviews-section h2,
  .closing-section h2 {
    font-size: clamp(25px, 6.8vw, 30px);
    line-height: 1.2;
  }

  .prose-section p,
  .closing-section p {
    font-size: 17px;
    line-height: 1.7;
  }

  .prose-section blockquote {
    padding-left: 22px;
    font-size: 19px;
  }

  .story-chapter::before {
    right: -10px;
  }

  .article-link-row {
    margin: -24px 0 48px;
    font-size: 14px;
  }

  .facts-section,
  .learning-section,
  .update-card {
    padding: 28px 22px;
    border-radius: 10px;
  }

  .fact-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .size-and-color,
  .rating-breakdown,
  .feature-split {
    grid-template-columns: 1fr;
  }

  .rating-breakdown {
    gap: 24px;
    padding: 26px 22px;
  }

  .fact-card {
    min-height: 0;
  }

  .section-heading-row,
  .reviews-summary {
    align-items: start;
  }

  .gallery__slide figcaption {
    border-radius: 14px;
  }

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

  .score-card {
    flex: 0 0 auto;
    padding: 12px;
  }

  .score-card strong {
    font-size: 34px;
  }

  .score-card span {
    display: none;
  }

  .guarantee-card {
    grid-template-columns: 82px 1fr;
    gap: 18px;
    padding: 24px 20px;
  }

  .guarantee-seal {
    width: 76px;
    height: 76px;
  }

  .guarantee-seal strong {
    font-size: 28px;
  }

  .guarantee-card h2 {
    font-size: 24px;
  }

  .final-offer {
    grid-template-columns: 1fr;
  }

  .final-offer__visual {
    min-height: 280px;
  }

  .final-offer__visual::after {
    background: linear-gradient(0deg, var(--forest-950) 0, transparent 35%);
  }

  .final-offer__content {
    padding: 12px 24px 30px;
  }

  .final-offer h2 {
    font-size: 28px;
  }

  .trust-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__inner,
  .disclosure {
    align-items: start;
    flex-direction: column;
  }

  .legal-nav {
    justify-content: flex-start;
  }

  .disclosure {
    gap: 14px;
  }

  .mobile-offer {
    bottom: calc(8px + env(safe-area-inset-bottom));
  }

  .offer-dialog[open] {
    grid-template-columns: 1fr;
  }

  .offer-dialog__visual img {
    min-height: 190px;
    max-height: 230px;
  }

  .offer-dialog__content {
    padding: 28px 24px 30px;
  }

  .offer-dialog__content h2 {
    font-size: 27px;
  }

  .policy-dialog {
    width: calc(100% - 16px);
    max-height: calc(100vh - 16px);
    border-radius: 10px;
  }

  .policy-dialog__header {
    padding: 20px 62px 17px 20px;
  }

  .dialog-close--policy {
    top: 17px;
    right: 17px;
  }

  .policy-dialog__body {
    padding: 22px 20px 32px;
  }

  .policy-dialog__body h3 {
    font-size: 21px;
  }

  .policy-dialog__header h2 {
    font-size: 25px;
  }

  .legal-hero {
    padding-block: 52px 48px;
  }

  .legal-main {
    width: min(calc(100% - 28px), 920px);
    margin-top: -20px;
  }

  .legal-document {
    padding: 28px 20px;
    border-radius: 22px;
  }

  .legal-document h2 {
    font-size: 26px;
  }
}

@media (max-width: 430px) {
  .section-heading-row {
    display: block;
  }

  .gallery-controls {
    justify-content: flex-end;
    margin-top: 14px;
  }

  .reviews-summary {
    display: block;
  }

  .score-card {
    width: fit-content;
    margin-top: 16px;
  }

  .mobile-offer > div {
    max-width: 46%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .offer-bar,
  .site-header,
  .news-ribbon,
  .purchase-card,
  .mobile-offer,
  .offer-dialog,
  .policy-dialog,
  .gallery-controls,
  .gallery-dots,
  .site-footer {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .page-grid {
    display: block;
    padding: 0;
  }

  .story {
    width: 100%;
  }
}
