/* ═══════════════════════════════════════
   Roland Gässler Beschichtungs GmbH
   Design System + Styles
   ═══════════════════════════════════════ */

/* ── Tokens ── */
:root {
  --bg:        #F7F4EF;
  --bg-alt:    #EFECE6;
  --white:     #FFFFFF;
  --ink:       #1C1712;
  --ink-2:     #3D3930;
  --ink-3:     #7A756C;
  --rule:      #DDD8CE;
  --accent:    #2B5C6B;
  --accent-dk: #1F4A57;
  --accent-bg: #E8F0F3;

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;

  --shadow-sm: 0 1px 4px rgba(28,23,18,.06), 0 1px 2px rgba(28,23,18,.04);
  --shadow-md: 0 4px 16px rgba(28,23,18,.08), 0 1px 4px rgba(28,23,18,.05);
  --shadow-lg: 0 16px 48px rgba(28,23,18,.12), 0 4px 12px rgba(28,23,18,.06);

  --nav-h: 68px;
  --max-w: 1200px;

  --ease-out: cubic-bezier(.22,.68,0,1.2);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dk); }

/* ── Skip-Link ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--accent);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--r-sm);
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus {
  top: 8px;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  color: var(--ink);
  line-height: 1.15;
}
.h-display { font-size: clamp(36px, 5.5vw, 72px); font-weight: 800; }
.h-1       { font-size: clamp(30px, 4vw, 50px); font-weight: 800; }
.h-2       { font-size: clamp(24px, 3vw, 38px); font-weight: 700; }
.h-3       { font-size: clamp(20px, 2.5vw, 26px); font-weight: 700; }
.h-4       { font-size: 18px; font-weight: 600; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.lead {
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.7;
  color: var(--ink-2);
}

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}
.section--alt {
  background: var(--bg-alt);
}
.section--white {
  background: var(--white);
}

/* ── Focus ── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  text-decoration: none;
  line-height: 1.2;
}
.btn:active { transform: scale(.97); }

.btn--primary {
  background: var(--accent);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--accent-dk);
  color: var(--white);
}

.btn--secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn--secondary:hover {
  background: var(--accent-bg);
  color: var(--accent-dk);
}

.btn--white {
  background: var(--white);
  color: var(--accent);
}
.btn--white:hover {
  background: var(--accent-bg);
}

/* ══════════════════════════════
   NAV
   ══════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: rgba(247,244,239,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  z-index: 1000;
  transition: box-shadow .3s;
}
.nav.scrolled {
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  text-decoration: none;
}
.nav__brand span {
  color: var(--accent);
}
.nav__links {
  display: none;
  list-style: none;
  gap: 28px;
  align-items: center;
}
.nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color .2s;
}
.nav__links a:hover {
  color: var(--accent);
}
.nav__tel {
  font-weight: 600;
  color: var(--accent) !important;
  font-size: 15px;
}
.nav__cta {
  display: none;
}

.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__burger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform .3s, opacity .3s;
  display: block;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  padding: 32px 20px;
  z-index: 999;
}
.nav__mobile.open {
  display: block;
}
.nav__mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav__mobile a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
}
.nav__mobile .btn {
  width: 100%;
  margin-top: 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .nav__links { display: flex; }
  .nav__burger { display: none; }
  .nav__cta { display: inline-flex; }
}

/* ══════════════════════════════
   HERO
   ══════════════════════════════ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  margin-top: var(--nav-h);
  overflow: hidden;
  background: var(--ink);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28,23,18,.78) 0%,
    rgba(28,23,18,.55) 50%,
    rgba(28,23,18,.35) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 20px 80px;
  color: var(--white);
}
.hero__headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  max-width: 680px;
  margin-bottom: 20px;
  color: var(--white);
}
.hero__sub {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.6;
  max-width: 560px;
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.2);
}
.hero__trust-item {
  display: flex;
  flex-direction: column;
}
.hero__trust-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero__trust-unit {
  font-size: .65em;
  font-weight: 700;
}
.hero__trust-label {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  margin-top: 6px;
}

/* ══════════════════════════════
   USP STRIP
   ══════════════════════════════ */
.usp-strip {
  background: var(--accent);
  color: var(--white);
  padding: 0;
  overflow: hidden;
}
.usp-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
}
.usp-strip__item {
  padding: 28px 24px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.usp-strip__item:last-child {
  border-bottom: none;
}
.usp-strip__text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}
.usp-strip__text strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 2px;
}

@media (min-width: 768px) {
  .usp-strip__inner {
    grid-template-columns: repeat(3, 1fr);
  }
  .usp-strip__item {
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,.15);
    padding: 32px 28px;
  }
  .usp-strip__item:last-child {
    border-right: none;
  }
}

/* ══════════════════════════════
   LEISTUNG
   ══════════════════════════════ */
.leistung__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
.leistung__text {
  max-width: 580px;
}
.leistung__text p {
  margin-top: 16px;
  color: var(--ink-2);
}
.leistung__list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.leistung__list li {
  padding-left: 20px;
  position: relative;
  color: var(--ink-2);
  line-height: 1.55;
}
.leistung__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 2px;
  background: var(--accent);
}
#leistung {
  padding: 96px 0;
}
.leistung__aside {
  background: var(--accent-bg);
  border-left: 3px solid var(--accent);
  padding: 32px;
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.leistung__aside h3 {
  margin-bottom: 12px;
}
.leistung__aside p {
  color: var(--ink-2);
  font-size: 15px;
}

@media (min-width: 768px) {
  .leistung__grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
  }
}

/* ══════════════════════════════
   VORHER / NACHHER
   ══════════════════════════════ */
.vorher-nachher__intro {
  max-width: 600px;
  margin-bottom: 48px;
}
.vorher-nachher__intro p {
  margin-top: 12px;
  color: var(--ink-2);
}
.vorher-nachher__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.vorher-nachher__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.vorher-nachher__img {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.vorher-nachher__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vorher-nachher__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.vorher-nachher__label--before {
  background: linear-gradient(0deg, rgba(28,23,18,.7), transparent);
  color: var(--white);
}
.vorher-nachher__label--after {
  background: linear-gradient(0deg, rgba(43,92,107,.7), transparent);
  color: var(--white);
}
.vorher-nachher__caption {
  grid-column: 1 / -1;
  padding: 14px 18px;
  background: var(--white);
  font-size: 14px;
  color: var(--ink-3);
}

@media (min-width: 768px) {
  .vorher-nachher__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ══════════════════════════════
   ABLAUF
   ══════════════════════════════ */
.ablauf__intro {
  max-width: 600px;
  margin-bottom: 48px;
}
.ablauf__intro p {
  margin-top: 12px;
  color: var(--ink-2);
}
.ablauf__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ablauf__item {
  display: flex;
  align-items: start;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
}
.ablauf__item:first-child {
  padding-top: 0;
}
.ablauf__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.ablauf__item-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  width: 72px;
  opacity: .8;
}
.ablauf__item-body {
  padding-top: 8px;
}
.ablauf__item-body h3 {
  margin-bottom: 6px;
}
.ablauf__item-body p {
  color: var(--ink-2);
  font-size: 15px;
  max-width: 480px;
}

@media (min-width: 768px) {
  .ablauf__item {
    gap: 40px;
    padding: 40px 0;
  }
  .ablauf__item-num {
    width: 96px;
  }
}

/* ══════════════════════════════
   BEWERTUNGEN
   ══════════════════════════════ */
.bewertungen__intro {
  max-width: 600px;
  margin-bottom: 40px;
}
.bewertungen__intro p {
  margin-top: 12px;
  color: var(--ink-2);
}
.bewertungen__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.bewertung {
  position: relative;
  background: var(--white);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--accent);
  padding: 36px 32px;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  overflow: hidden;
}
.bewertung__quote {
  position: absolute;
  top: 8px;
  left: 16px;
  font-family: 'Fraunces', serif;
  font-size: 80px;
  font-weight: 800;
  color: var(--accent);
  opacity: .1;
  line-height: 1;
  pointer-events: none;
}
.bewertung__stars {
  position: relative;
  color: #D4A017;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.bewertung__text {
  position: relative;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 16px;
}
.bewertung__author {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-3);
}

@media (min-width: 768px) {
  .bewertungen__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

/* ══════════════════════════════
   ÜBER UNS
   ══════════════════════════════ */
.ueber__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.ueber__text {
  max-width: 620px;
}
.ueber__text p {
  margin-top: 16px;
  color: var(--ink-2);
}
.ueber__values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.ueber__value {
  display: flex;
  gap: 20px;
  align-items: start;
}
.ueber__value-num {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  min-width: 64px;
}
.ueber__value-body h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}
.ueber__value-body p {
  font-size: 14px;
  color: var(--ink-3);
  margin-top: 0;
}

@media (min-width: 768px) {
  .ueber__grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: start;
  }
}

/* ══════════════════════════════
   FORMULAR
   ══════════════════════════════ */
.form-section {
  background: var(--accent);
  padding: 80px 0;
}
.form-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.form-section__text {
  color: var(--white);
}
.form-section__text .eyebrow {
  color: rgba(255,255,255,.7);
}
.form-section__text .eyebrow::before {
  background: rgba(255,255,255,.5);
}
.form-section__text h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.form-section__text p {
  color: rgba(255,255,255,.8);
  font-size: 17px;
  line-height: 1.7;
}
.form-section__promise {
  margin-top: 24px;
  padding: 20px;
  background: rgba(255,255,255,.1);
  border-radius: var(--r-md);
  font-size: 15px;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
}
.form-section__promise strong {
  color: var(--white);
}

.form-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
}

.form__group {
  margin-bottom: 18px;
}
.form__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.form__label .required {
  color: #C0392B;
}
.form__label .optional {
  font-weight: 400;
  color: var(--ink-3);
  font-size: 13px;
}
.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  border: 1px solid var(--rule);
  border-radius: var(--r-sm);
  background: var(--bg);
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(43,92,107,.12);
  outline: none;
}
.form__textarea {
  min-height: 100px;
  resize: vertical;
}
.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237A756C' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form__hint {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 4px;
}

.form__check {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 24px;
}
.form__check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent);
}
.form__check label {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
}
.form__check a {
  text-decoration: underline;
}

.form__submit {
  width: 100%;
  padding: 16px;
  font-size: 17px;
}

.hidden { display: none !important; }

@media (min-width: 768px) {
  .form-section__inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
  .form-card {
    padding: 40px 32px;
  }
}

/* ══════════════════════════════
   KONTAKT FOOTER
   ══════════════════════════════ */
.kontakt {
  padding: 60px 0;
}
.kontakt__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.kontakt__block h3 {
  margin-bottom: 8px;
}
.kontakt__block p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.7;
}
.kontakt__block a {
  font-weight: 600;
}

@media (min-width: 768px) {
  .kontakt__inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
}

.footer {
  background: var(--ink);
  color: rgba(255,255,255,.6);
  padding: 32px 0;
  font-size: 14px;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.footer__links {
  display: flex;
  gap: 24px;
}
.footer__links a {
  color: rgba(255,255,255,.6);
  font-size: 14px;
}
.footer__links a:hover {
  color: var(--white);
}
.footer__cookie-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,.6);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  padding: 0;
}
.footer__cookie-btn:hover {
  color: var(--white);
}

/* ══════════════════════════════
   STICKY MOBILE CTA
   ══════════════════════════════ */
.sticky-cta {
  display: none;
}
@media (max-width: 768px) {
  .sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: var(--white);
    border-top: 1px solid var(--rule);
    box-shadow: 0 -4px 16px rgba(28,23,18,.1);
    padding: 10px 16px;
    gap: 10px;
    transition: transform .3s;
  }
  .sticky-cta.hidden-cta {
    transform: translateY(100%);
  }
  .sticky-cta .btn {
    flex: 1;
    padding: 12px 8px;
    font-size: 15px;
  }
  body {
    padding-bottom: 72px;
  }
}

/* ══════════════════════════════
   COOKIE CONSENT
   ══════════════════════════════ */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 1px solid var(--rule);
  box-shadow: 0 -8px 32px rgba(28,23,18,.15);
  padding: 24px 20px;
}
.cookie-banner.show {
  display: block;
}
.cookie-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.cookie-banner__text {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 16px;
}
.cookie-banner__text a {
  text-decoration: underline;
}
.cookie-banner__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cookie-banner__buttons .btn {
  padding: 10px 20px;
  font-size: 14px;
}

/* Cookie Settings Modal */
.cookie-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(28,23,18,.5);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cookie-modal.show {
  display: flex;
}
.cookie-modal__card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 32px 28px;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  overflow-y: auto;
}
.cookie-modal__card h3 {
  margin-bottom: 20px;
}
.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
}
.cookie-toggle__label {
  font-weight: 600;
  font-size: 15px;
}
.cookie-toggle__desc {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 2px;
}
.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
}
.cookie-modal__save {
  margin-top: 24px;
  width: 100%;
}

/* ══════════════════════════════
   REVEAL ANIMATION
   ══════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════
   THANK YOU PAGE
   ══════════════════════════════ */
.thankyou {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}
.thankyou__content {
  max-width: 520px;
}
.thankyou__content h1 {
  margin-bottom: 16px;
}
.thankyou__content p {
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ══════════════════════════════
   LEGAL PAGES
   ══════════════════════════════ */
.legal {
  padding: 120px 0 80px;
}
.legal__content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}
.legal__content h1 {
  margin-bottom: 32px;
}
.legal__content h2 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 22px;
}
.legal__content p {
  color: var(--ink-2);
  margin-bottom: 16px;
  line-height: 1.7;
}
.legal__content a {
  text-decoration: underline;
}

/* ══════════════════════════════
   404 PAGE
   ══════════════════════════════ */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}
.page-404__content h1 {
  font-size: clamp(60px, 10vw, 120px);
  color: var(--accent);
  margin-bottom: 8px;
}
.page-404__content p {
  color: var(--ink-2);
  font-size: 17px;
  margin-bottom: 24px;
}
