:root {
  --color-primary: #c44a3a;
  --color-secondary: #d97a2b;
  --color-accent: #f2d479;
  --color-success: #6faf4f;
  --color-primary-dark: #8f2f22;
  --color-muted: #6a635d;
  --color-bg: #fffaf5;
  --color-text: #2a2a2a;
  --color-white: #ffffff;
  --color-surface: #fff4ea;
  --font-base: "Segoe UI", Arial, sans-serif;
  --font-heading: "Trebuchet MS", "Segoe UI", sans-serif;
  --shadow-soft: 0 8px 20px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 16px 32px rgba(0, 0, 0, 0.14);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-bg);
  scroll-behavior: smooth;
}

body {
  background-image: radial-gradient(circle at 80% -20%, #f8e2cf, transparent 40%), radial-gradient(circle at 10% 0%, #f6eec6, transparent 35%);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-secondary);
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  left: 12px;
  z-index: 1000;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  border-bottom: 1px solid #f0e4d8;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) 0;
}

.brand {
  display: block;
}

.brand img {
  width: 4rem;
  position: relative;
  z-index: 20;
}

.brand img {
  display: inline-block;
  transform: rotate(-5deg);
  transition: transform var(--transition-normal);
}

.brand:hover img {
  transform: rotate(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .brand img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 768px) {
  .brand img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 576px) {
  .brand img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 400px) {
  .brand img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

.menu {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--space-2);
}

.menu a {
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--color-muted);
}

.menu a:hover {
  background: var(--color-accent);
}

.section {
  padding: var(--space-6) 0 var(--space-4);
}

.card {
  background: linear-gradient(180deg, var(--color-white), var(--color-surface));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: var(--space-4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-4);
  align-items: center;
}

.hero-figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.hero-figure img:hover {
  transform: translateY(-6px) scale(1.02);
  filter: saturate(1.1);
}

.eyebrow {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--color-accent);
  font-size: 14px;
  animation: pulse 3s ease infinite;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
}

h1 {
  font-size: clamp(30px, 4vw, 48px);
  margin: var(--space-2) 0;
}

.lead {
  font-size: 18px;
  color: #3a352f;
}

.rating-row,
.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.badge {
  background: #f6efe7;
  border-radius: var(--radius-sm);
  padding: 6px 10px;
}

.trust {
  background: #e9f4e5;
}

.price-new {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 28px;
}

.price-old {
  text-decoration: line-through;
  opacity: 0.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
textarea {
  width: 100%;
  border: 1px solid #d6cfc7;
  border-radius: var(--radius-sm);
  padding: 12px;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid var(--color-accent);
  border-color: transparent;
}

.consent {
  margin: var(--space-3) 0 var(--space-1);
  flex-direction: row;
  align-items: flex-start;
}

.btn {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  border: 0;
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font: inherit;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 16px rgba(196, 74, 58, 0.2);
}

.btn:hover {
  background: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(217, 122, 43, 0.25);
}

.btn-secondary {
  background: #545454;
}

.btn-secondary:hover {
  background: #444;
}

.cta {
  text-align: center;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.feature-card,
.quote-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  border: 1px solid #f0ded2;
}

.benefit-list {
  display: grid;
  gap: var(--space-2);
}

.benefit-list article {
  background: #fff8ef;
  border-left: 4px solid var(--color-success);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
}

.timeline {
  margin-top: var(--space-3);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-2);
}

.timeline article {
  background: #fff6ea;
  border-radius: var(--radius-sm);
  padding: var(--space-2);
  border: 1px dashed #e4c9aa;
}

.ingredient-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.ingredient-pill {
  background: #ecf6e8;
  color: #2b4b1f;
  border-radius: 999px;
  padding: 10px 14px;
  transform: translateZ(0);
  transition: transform 0.25s ease, background 0.25s ease;
}

.ingredient-pill:hover {
  background: #ddf0d5;
  transform: translateY(-2px) scale(1.02);
}

.faq-list {
  display: grid;
  gap: var(--space-2);
}

.faq-item {
  border: 1px solid #eddccf;
  border-radius: var(--radius-sm);
  padding: var(--space-2);
  background: var(--color-white);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
}

.soft-note {
  color: var(--color-muted);
  font-size: 14px;
}

.tilt-card {
  transform-style: preserve-3d;
}

.map-frame {
  width: 100%;
  height: 340px;
  border: 0;
  border-radius: var(--radius-md);
}

.site-footer {
  padding: var(--space-4) 0;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: var(--space-3);
  right: var(--space-3);
  bottom: var(--space-3);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: var(--space-3);
  max-width: 840px;
  margin: 0 auto;
  animation: fadeInUp 0.35s ease;
}

.cookie-content {
  display: grid;
  gap: var(--space-2);
}

.cookie-settings {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.error {
  min-height: 18px;
  color: #b42318;
  font-size: 14px;
}

.cookie-manage {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 9;
  border: 0;
  border-radius: 999px;
  background: #2c2c2c;
  color: var(--color-white);
  padding: 10px 14px;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.cookie-manage:hover {
  transform: translateY(-2px);
  background: #1e1e1e;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: var(--space-5) 0 var(--space-3);
  }

  .card {
    padding: var(--space-3);
  }

  .header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu {
    gap: 4px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }
}