/* ═══════════════════════════════════════════
   PRAIA Cold Mate — styles.css
   Mobile-first. No framework.
═══════════════════════════════════════════ */

/* ─── Variables ─── */
:root {
  --navy:       #06224A;
  --navy-hover: #0d3870;
  --sand:       #F5F0E6;
  --sand-light: #FBF8F0;
  --sand-mid:   #EDE5D5;
  --limao:      #9AB52E;
  --maracuja:   #F0A12B;
  --muted-gold: #B7A66A;
  --text-body:  #344a65;
  --border:     rgba(6, 34, 74, 0.14);

  --serif: Georgia, 'Times New Roman', Times, serif;
  --sans:  -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, Helvetica, Arial, sans-serif;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --max-width: 1100px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
img   { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
[hidden] { display: none !important; }

body {
  background: var(--sand);
  color: var(--navy);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ─── Container ─── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ─── Typography ─── */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
}
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.375rem, 3vw, 1.875rem); }
p  { color: var(--text-body); }

/* ─── Section header ─── */
.section-header { margin-bottom: 2.5rem; }
.section-header--center { text-align: center; }
.section-header--center .section-intro { margin-inline: auto; }

.section-intro {
  font-size: 1.0625rem;
  color: var(--text-body);
  max-width: 560px;
  line-height: 1.75;
  margin-top: 0.625rem;
}

/* ─── Wave rule ─── */
.wave-rule {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--limao);
  border-radius: 2px;
  margin-block: 0.875rem 1.75rem;
}
.wave-rule--center   { margin-inline: auto; }
.wave-rule--maracuja { background: var(--maracuja); }

/* ─── Card accent underline ─── */
.card-accent {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--limao);
  border-radius: 2px;
  margin-top: 1rem;
}
.card-accent--small { width: 24px; margin-top: 0.75rem; }

/* ─── Icon frame ─── */
.icon-frame {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 1rem;
}
.icon-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

/* Combo icon frame — lime + passionfruit as one grouped icon */
.icon-frame--combo {
  position: relative;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(6, 34, 74, 0.18);
  border-radius: 999px;
  display: grid;
  place-items: center;
}
.icon-frame--combo img {
  position: absolute;
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.icon-frame--combo img:first-child {
  left: 13px;
  top: 24px;
  transform: rotate(-12deg);
}
.icon-frame--combo img:last-child {
  right: 13px;
  top: 14px;
  transform: rotate(5deg);
}

/* Bare frame — for SVGs that include their own circle */
.icon-frame--bare {
  border-color: transparent;
  background: transparent;
}
.icon-frame--bare .icon-img {
  width: 50px;
  height: 50px;
}

/* Still icon — inline SVG diagonal line for "not sparkling" */
.icon-frame--still {
  position: relative;
}
.icon-frame--still .icon-slash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.icon-frame--still .icon-slash line {
  stroke: var(--navy);
  stroke-width: 1.6;
  stroke-linecap: round;
  opacity: 0.9;
}

/* ─── Primary button ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--sand);
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.875rem 2rem;
  border: 2px solid var(--navy);
  border-radius: var(--radius-sm);
  cursor: pointer;
  min-height: 52px;
  transition: background-color 0.18s ease, border-color 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary:hover          { background: var(--navy-hover); border-color: var(--navy-hover); }
.btn-primary:focus-visible  { outline: 3px solid var(--maracuja); outline-offset: 3px; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  background: var(--sand);
  padding-block: 3rem 3.5rem;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.badge {
  display: inline-block;
  border: 1px solid rgba(6, 34, 74, 0.28);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.logo         { margin-bottom: 1.25rem; }
.brand-logo   {
  display: block;
  width: min(100%, 460px);
  height: auto;
  margin: 0 auto 0.75rem 0;
}
.logo-sub {
  display: block;
  font-family: var(--sans);
  font-size: clamp(0.7rem, 2.2vw, 0.9375rem);
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.6;
  margin-top: 0.2rem;
}

.claim {
  font-size: clamp(2rem, 6.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 1.25rem;
}

.hero-copy {
  font-size: 1.0625rem;
  color: var(--text-body);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--sand);
  box-shadow: none;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(245,240,230,0.82) 0%, rgba(245,240,230,0.34) 28%, rgba(245,240,230,0) 58%),
    linear-gradient(0deg, rgba(245,240,230,0.55) 0%, rgba(245,240,230,0.14) 36%, rgba(245,240,230,0) 72%);
}
.hero-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 58% center;
}

/* ═══════════════════════════════════════════
   WAS IST PRAIA?
═══════════════════════════════════════════ */
.section-about {
  background: var(--sand-light);
  border-bottom: 1px solid var(--border);
}
.section { padding-block: 4.5rem; }

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.about-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0 1.35rem;
  align-items: center;
  padding: 1.5rem 1.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 2px 12px rgba(6, 34, 74, 0.05);
}
.about-card .icon-frame {
  grid-column: 1;
  grid-row: 1 / span 3;
  align-self: center;
  margin-bottom: 0;
}

.about-card-title {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.about-card-desc {
  grid-column: 2;
  grid-row: 2;
  font-size: 0.9375rem;
  color: var(--text-body);
}
.about-card .card-accent {
  grid-column: 2;
  grid-row: 3;
}

/* ═══════════════════════════════════════════
   DIE SORTEN
═══════════════════════════════════════════ */
.section-flavours { background: var(--sand-mid); }

.flavour-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.flavour-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  background: var(--sand-light);
  border: 1.5px solid var(--border);
  overflow: hidden;
  box-shadow: 0 3px 18px rgba(6, 34, 74, 0.07);
  min-height: 230px;
}
.flavour-limao   { border-top: 3px solid var(--limao); }
.flavour-maracuja { border-top: 3px solid var(--maracuja); }

.flavour-body {
  padding: 2.15rem 2rem;
  padding-right: 45%;
  flex: 1;
}

.flavour-name {
  font-family: var(--serif);
  font-size: clamp(1.625rem, 4vw, 2.125rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.625rem;
}
.flavour-limao   .flavour-name { color: var(--limao); }
.flavour-maracuja .flavour-name { color: var(--maracuja); }

.flavour-wave {
  display: block;
  width: 72px;
  height: 8px;
  margin-bottom: 1rem;
  overflow: visible;
}
.flavour-limao   .flavour-wave { color: var(--limao); }
.flavour-maracuja .flavour-wave { color: var(--maracuja); }

.flavour-desc {
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 0.5rem;
}
.flavour-notes {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.flavour-limao   .flavour-notes { color: var(--limao); }
.flavour-maracuja .flavour-notes { color: var(--maracuja); }

.flavour-visual {
  position: absolute;
  right: 1.25rem;
  bottom: 0.35rem;
  width: 42%;
  max-width: 240px;
  min-width: 170px;
  pointer-events: none;
}
.flavour-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.98;
}

/* ═══════════════════════════════════════════
   WARUM PRAIA?
═══════════════════════════════════════════ */
.section-why {
  background: var(--sand);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.why-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem 1.375rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.45);
}

.why-title {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.why-desc {
  font-size: 0.875rem;
  color: var(--text-body);
}

/* ═══════════════════════════════════════════
   DIE IDEE
═══════════════════════════════════════════ */
.section-story { background: var(--sand-mid); }

.story-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.story-text h2 { margin-bottom: 0; }
.story-text p  {
  max-width: 520px;
  font-size: 1rem;
  line-height: 1.85;
}

.story-illustration {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.rio-img {
  display: block;
  width: min(100%, 860px);
  height: auto;
  opacity: 0.84;
  mix-blend-mode: multiply;
}

/* ═══════════════════════════════════════════
   FEEDBACK FORM
═══════════════════════════════════════════ */
.section-feedback {
  background: var(--sand);
  border-top: 2px solid var(--navy);
}

.feedback-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.feedback-title {
  font-size: clamp(2rem, 5.5vw, 3rem);
  margin-bottom: 0;
}
.feedback-intro {
  font-size: 1rem;
  max-width: 400px;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.required-note {
  font-size: 0.8125rem;
  color: var(--text-body);
  opacity: 0.7;
}
.req-marker { color: var(--maracuja); }

/* Form blocks */
.form-block {
  border: none;
  padding: 0;
  margin-bottom: 1.375rem;
}

legend {
  font-family: var(--serif);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.625rem;
  line-height: 1.4;
  float: left;
  width: 100%;
}

/* ─── Pill buttons ─── */
.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  clear: both;
}

.pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9375rem;
  font-family: var(--sans);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.6);
  min-height: 44px;
  transition: background 0.14s ease, border-color 0.14s ease, color 0.14s ease;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.pill input[type="radio"],
.pill input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.pill:hover {
  border-color: rgba(6, 34, 74, 0.38);
  background: rgba(6, 34, 74, 0.05);
}

.pill:has(input:checked) {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--sand);
}

.pill:focus-within {
  outline: 2px solid var(--maracuja);
  outline-offset: 2px;
}

/* ─── Rating row ─── */
.rating-pills {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  clear: both;
  width: max-content;
  max-width: 100%;
}
.rating-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.pill-group--rating {
  flex-wrap: nowrap;
  gap: 0.375rem;
}

.pill--num {
  width: 44px;
  height: 44px;
  padding: 0;
  font-weight: 600;
  flex-shrink: 0;
}

.rating-end-label {
  font-size: 0.8125rem;
  color: var(--text-body);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ─── JAR Scale ─── */
.jar-scale {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  width: max-content;
  max-width: 100%;
}
.jar-labels {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.jar-label {
  font-size: 0.6875rem;
  color: var(--text-body);
  opacity: 0.6;
  line-height: 1.25;
  white-space: nowrap;
  flex-shrink: 0;
}
.jar-label--mid {
  text-align: center;
  flex: 1;
  padding-inline: 0.25rem;
}

/* ─── Visually hidden (Honeypot) ─── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* ─── Textarea ─── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-label {
  font-family: var(--serif);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
}
.form-group textarea {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.65);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
  resize: vertical;
  width: 100%;
  min-height: 96px;
  line-height: 1.6;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
}
.form-group textarea::placeholder { color: rgba(6, 34, 74, 0.35); }

/* ─── Error / submit / success ─── */
.form-error {
  font-size: 0.9375rem;
  color: #b5370a;
  font-weight: 500;
  min-height: 1.4rem;
  margin-bottom: 0.5rem;
}

.btn-submit {
  width: 100%;
  font-size: 1rem;
  padding-block: 1rem;
}

/* ─── Email input ─── */
.form-input {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.65);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
  width: 100%;
  min-height: 52px;
  line-height: 1.6;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.form-input:focus {
  outline: none;
  border-color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
}
.form-input::placeholder { color: rgba(6, 34, 74, 0.35); }
.form-input:focus-visible { outline: 3px solid var(--maracuja); outline-offset: 2px; }

/* ─── Privacy note ─── */
.privacy-note {
  font-size: 0.8125rem;
  color: var(--text-body);
  opacity: 0.7;
  margin-top: 0.625rem;
  line-height: 1.65;
  max-width: 480px;
}

/* ─── Legend hint (Mehrere möglich) ─── */
.legend-hint {
  display: block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-body);
  opacity: 0.65;
  margin-top: 0.2rem;
}

.success-state {
  text-align: center;
  padding: 3.5rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.45);
}
.success-heading {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 1rem;
}
.success-body { font-size: 1.0625rem; color: var(--text-body); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  padding-block: 2rem 2.5rem;
  text-align: center;
}
.footer-wave {
  display: block;
  width: 100%;
  margin-bottom: 1.125rem;
}
.site-footer p {
  color: rgba(245, 240, 230, 0.55);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════
   MOBILE ONLY — max 767px
═══════════════════════════════════════════ */
@media (max-width: 767px) {
  /* ── Hero ── */
  .hero {
    min-height: auto !important;
    padding-top: 1.75rem;
    padding-bottom: 2.5rem;
    overflow: hidden;
  }
  .hero-inner {
    min-height: auto !important;
    display: block !important;
  }
  /* actual logo class: .brand-logo (not .hero-logo) */
  .brand-logo {
    width: min(82vw, 315px) !important;
    max-width: 315px !important;
  }
  /* actual text wrapper class: .hero-text (not .hero-content) */
  .hero-text {
    position: relative;
    z-index: 2;
  }
  .hero-visual {
    position: relative !important;
    inset: auto !important;
    z-index: 1;
    width: calc(100% + 2rem) !important;
    margin-left: -1rem;
    margin-right: -1rem;
    margin-top: 0.9rem;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: none;
    background: transparent;
  }
  .hero-visual::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 22%;
    pointer-events: none;
    background: linear-gradient(
      0deg,
      var(--sand) 0%,
      rgba(245, 240, 230, 0.65) 34%,
      rgba(245, 240, 230, 0) 100%
    );
  }
  /* target both the container and the actual .hero-img class */
  .hero-img,
  .hero-visual img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: 58% center;
    display: block;
  }
  .hero-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      linear-gradient(0deg, rgba(245,240,230,0.45), rgba(245,240,230,0.08) 35%, rgba(245,240,230,0) 70%);
  }

  /* ── Flavour cards ── */
  .flavour-card {
    min-height: 225px;
  }
  .flavour-body {
    position: relative;
    z-index: 2;
    padding-right: 9.75rem;
  }
  .flavour-visual {
    right: 0.55rem;
    top: 61%;
    bottom: auto;
    transform: translateY(-50%);
    width: clamp(120px, 33vw, 145px);
    min-width: unset;
    max-width: unset;
    height: auto;
    z-index: 1;
  }
}

/* ═══════════════════════════════════════════
   TABLET — 768px+
═══════════════════════════════════════════ */
@media (min-width: 768px) {
  /* About */
  .about-cards {
    flex-direction: row;
    align-items: stretch;
    gap: 1.25rem;
  }
  .about-card { flex: 1; }

  /* Sorten: side by side with fruit image right */
  .flavour-cards {
    flex-direction: row;
    gap: 1.5rem;
    align-items: stretch;
  }
  .flavour-card { flex: 1; }

  /* Why: 4-column strip */
  .why-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .why-tile {
    border-radius: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    border-left: 1px solid var(--border);
    border-right: none;
    align-items: center;
    text-align: center;
  }
  .why-tile .icon-frame { margin-inline: auto; }
  .why-tile .card-accent { margin-inline: auto; }
  .why-tile:first-child { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
  .why-tile:last-child  { border-right: 1px solid var(--border); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

  /* Rating pills: restore desktop row layout */
  .rating-pills {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.625rem;
    width: auto;
  }
  .rating-labels {
    display: contents;
  }
  .pill-group--rating       { order: 2; }
  .rating-labels .rating-end-label:first-child { order: 1; }
  .rating-labels .rating-end-label:last-child  { order: 3; }
  /* JAR: reset order so buttons stay above labels in column layout */
  .jar-scale .pill-group--rating { order: 0; }
}

/* ═══════════════════════════════════════════
   DESKTOP — 1024px+
═══════════════════════════════════════════ */
@media (min-width: 1024px) {
  /* Hero — product image as full-height absolute layer */
  .hero {
    padding-block: 5rem 6rem;
    position: relative;
    overflow: hidden;
    min-height: 760px;
  }
  .hero-inner {
    flex-direction: column;
    justify-content: center;
    min-height: 760px;
    position: relative;
    z-index: 3;
  }
  .hero-text {
    position: relative;
    z-index: 4;
    max-width: 560px;
  }
  .hero-visual {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    width: 58vw;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: hidden;
  }
  .hero-img {
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    object-fit: cover;
    object-position: 50% center;
  }
  .hero-visual::before {
    background:
      linear-gradient(90deg, var(--sand) 0%, rgba(245,240,230,0.90) 10%, rgba(245,240,230,0) 30%);
  }

  /* Sections */
  .section { padding-block: 5.5rem; }

  /* Flavour cards: fruit absolutely positioned bottom-right */
  .flavour-card {
    flex-direction: column;
    align-items: stretch;
    min-height: 235px;
  }
  .flavour-body { padding-right: 44%; }
  .flavour-visual {
    width: 40%;
    max-width: 250px;
    min-width: 185px;
    right: 1.4rem;
    bottom: 0.45rem;
  }

  /* Story */
  .story-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
    align-items: center;
    gap: clamp(3rem, 6vw, 6rem);
  }

  /* Feedback: left column heading, right column form */
  .feedback-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: start;
  }
  .feedback-header {
    position: sticky;
    top: 2rem;
  }

  .btn-submit {
    width: auto;
    min-width: 220px;
  }
}
