/* =========================================================
   SOBER SISTERS – Web Stylesheet
   Brand: Sober Sisters / Střízlivé ženy
   Version: 1.0 (trial)
   Date: 20. února 2026
   ========================================================= */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Caveat:wght@400;500;600&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Primary */
  --color-mauve: #9B7EA6;
  --color-mauve-dark: #7B5E86;
  --color-mauve-light: #C4A8CF;

  /* Neutrals */
  --color-warm-white: #FAF8F6;
  --color-cream: #F2EDE8;
  --color-sand: #E8E0D8;
  --color-anthracit: #2D2D2D;
  --color-grey: #5A5A5A;
  --color-white: #FFFFFF;

  /* Accents */
  --color-dusty-rose: #C9A0A0;
  --color-sage: #8FA98C;
  --color-gold: #D4A574;
  --color-soft-pink: #E8B4B4;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Caveat', cursive;

  /* Spacing */
  --section-padding-desktop: 100px 0;
  --section-padding-mobile: 56px 0;
  --container-max: 1280px;
  --container-padding: 24px;

  /* Radius */
  --radius-card: 16px;
  --radius-btn: 50px;
  --radius-input: 12px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-btn: 0 4px 16px rgba(155, 126, 166, 0.3);

  /* Transitions */
  --transition: 0.3s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-anthracit);
  background-color: var(--color-warm-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-mauve);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-mauve-dark);
}

ul, ol {
  list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-anthracit);
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 24px;
}

h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 16px;
}

h4 {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 12px;
}

p {
  color: var(--color-grey);
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 1rem;
}

.text-large {
  font-size: 1.125rem;
  line-height: 1.75;
}

.text-small {
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--section-padding-desktop);
}

.section--cream {
  background-color: var(--color-cream);
}

.section--white {
  background-color: var(--color-warm-white);
}

.section--mauve {
  background-color: var(--color-mauve);
  color: var(--color-white);
}

.section--mauve h2,
.section--mauve h3,
.section--mauve p {
  color: var(--color-white);
}

.section--mauve-dark {
  background-color: var(--color-mauve-dark);
  color: var(--color-white);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-header p {
  font-size: 1.125rem;
}

/* ---------- Grid helpers ---------- */
.grid {
  display: grid;
  gap: 32px;
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.btn--primary {
  background-color: var(--color-mauve);
  color: var(--color-white);
  box-shadow: var(--shadow-btn);
}

a.btn--primary,
button.btn--primary {
  color: #FFFFFF;
}

.btn--primary:hover {
  background-color: var(--color-mauve-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(155, 126, 166, 0.4);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-mauve);
  border: 2px solid var(--color-mauve);
  padding: 14px 36px;
}

.btn--secondary:hover {
  background-color: var(--color-mauve);
  color: var(--color-white);
}

.btn--ghost {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
  padding: 14px 36px;
}

.btn--ghost:hover {
  background-color: var(--color-white);
  color: var(--color-anthracit);
}

.btn--white {
  background-color: var(--color-white);
  color: var(--color-mauve);
}

.btn--white:hover {
  background-color: var(--color-cream);
  color: var(--color-mauve-dark);
  transform: translateY(-2px);
}

.text-link {
  color: var(--color-mauve);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.text-link:hover {
  color: var(--color-mauve-dark);
  text-decoration: underline;
}

.text-link .arrow {
  transition: transform var(--transition);
}

.text-link:hover .arrow {
  transform: translateX(4px);
}

/* ---------- HEADER / NAVIGATION ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.header--scrolled {
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  padding: 12px 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-anthracit);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  height: 40px;
  width: auto;
}

.logo:hover {
  color: var(--color-mauve);
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links {
  display: flex;
  gap: 32px;
}

.nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-anthracit);
  transition: var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-mauve);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-mauve);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
}

.lang-switch__link {
  display: flex;
  align-items: center;
  opacity: 0.5;
  transition: var(--transition);
  text-decoration: none;
  font-size: 0.8rem;
  border-radius: 2px;
  overflow: hidden;
  line-height: 1;
}

.lang-switch__link:hover,
.lang-switch__link--active {
  opacity: 1;
}

.lang-switch__flag {
  width: 24px;
  height: 16px;
  display: block;
}

/* Mobile menu toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--color-anthracit);
  transition: var(--transition);
  transform-origin: center;
}

/* Hamburger → X animation */
.mobile-toggle--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle--open span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-white);
  z-index: 999;
  padding: 100px 32px 40px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-anthracit);
}

.mobile-nav a:hover {
  color: var(--color-mauve);
}

.mobile-nav a.btn--primary {
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 1rem;
}

.mobile-nav a.btn--primary:hover {
  color: #FFFFFF;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero--small {
  min-height: 50vh;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(123, 94, 134, 0.75) 0%,
    rgba(155, 126, 166, 0.5) 50%,
    rgba(250, 248, 246, 0.3) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  color: var(--color-white);
}

.hero__content h1 {
  color: var(--color-white);
  font-size: 3.5rem;
  margin-bottom: 24px;
}

.hero__content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero gradient fallback (no image) */
.hero--gradient {
  background: linear-gradient(
    135deg,
    var(--color-mauve-dark) 0%,
    var(--color-mauve) 40%,
    var(--color-mauve-light) 80%,
    var(--color-cream) 100%
  );
}

/* ---------- Social Proof Bar ---------- */
.proof-bar {
  background-color: var(--color-cream);
  padding: 40px 0;
}

.proof-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.proof-bar__item {
  padding: 16px;
}

.proof-bar__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-mauve);
  line-height: 1;
  margin-bottom: 8px;
}

.proof-bar__label {
  font-size: 0.875rem;
  color: var(--color-grey);
  font-weight: 500;
}

/* ---------- Cards ---------- */
.card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 40px 32px;
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.card__icon {
  width: 64px;
  height: 64px;
  background-color: var(--color-cream);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.75rem;
}

.card__title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.card__text {
  color: var(--color-grey);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* Product card */
.product-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.product-card__badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.product-card__badge--premium {
  background-color: var(--color-gold);
  color: var(--color-white);
}

.product-card__badge--new {
  background-color: var(--color-sage);
  color: var(--color-white);
}

.product-card__image {
  height: 200px;
  background: linear-gradient(135deg, var(--color-cream), var(--color-mauve-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.product-card__body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-card__tagline {
  color: var(--color-mauve);
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.product-card__features {
  margin-bottom: 24px;
  flex: 1;
}

.product-card__features li {
  padding: 6px 0;
  font-size: 0.9375rem;
  color: var(--color-grey);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.product-card__features li::before {
  content: '✓';
  color: var(--color-sage);
  font-weight: 700;
  flex-shrink: 0;
}

.product-card__footer {
  padding-top: 16px;
  border-top: 1px solid var(--color-cream);
}

/* ---------- Blockquote / Testimonial ---------- */
.quote {
  position: relative;
  padding: 40px;
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.quote::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--color-mauve-light);
  position: absolute;
  top: -10px;
  left: 24px;
  line-height: 1;
}

.quote__text {
  font-family: var(--font-accent);
  font-size: 1.375rem;
  line-height: 1.6;
  color: var(--color-anthracit);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.quote__author {
  font-weight: 600;
  color: var(--color-mauve);
  font-size: 0.875rem;
}

/* Inline quote */
blockquote {
  border-left: 4px solid var(--color-mauve-light);
  padding: 24px 32px;
  margin: 32px 0;
  background: var(--color-cream);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
}

blockquote p {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  color: var(--color-anthracit);
  margin-bottom: 0;
}

/* ---------- Pillar / Feature row ---------- */
.pillar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 0;
}

.pillar:nth-child(even) {
  direction: rtl;
}

.pillar:nth-child(even) > * {
  direction: ltr;
}

.pillar__visual {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--color-cream), var(--color-mauve-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.pillar__content h3 {
  margin-bottom: 16px;
}

.pillar__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-mauve);
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 16px;
}

/* ---------- Story / Příběh ---------- */
.story {
  padding: 60px 0;
  border-bottom: 1px solid var(--color-sand);
}

.story:last-child {
  border-bottom: none;
}

.story__header h3 {
  font-size: 1.75rem;
  margin-bottom: 24px;
  color: var(--color-mauve-dark);
}

.story__body {
  max-width: 760px;
}

.story__body p {
  margin-bottom: 20px;
}

.story__quote {
  margin: 32px 0;
}

/* ---------- CTA Section ---------- */
.cta-section {
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  max-width: 560px;
  margin: 0 auto 32px;
}

.cta-section .privacy-note {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  margin-top: 16px;
}

/* ---------- FOOTER ---------- */
.footer {
  background-color: var(--color-mauve-dark);
  color: var(--color-white);
  padding: 60px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  margin-top: 12px;
}

.footer h4 {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer__links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  padding: 4px 0;
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--color-white);
}

.footer__newsletter {
  margin-top: 20px;
}

.footer__newsletter-form {
  display: flex;
  gap: 8px;
}

.footer__newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-input);
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.875rem;
}

.footer__newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer__newsletter-form button {
  padding: 12px 24px;
  background: var(--color-white);
  color: var(--color-mauve-dark);
  border: none;
  border-radius: var(--radius-input);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
  font-size: 0.875rem;
}

.footer__newsletter-form button:hover {
  background: var(--color-cream);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.5);
}

.footer__bottom a:hover {
  color: var(--color-white);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

/* ---------- Contact Form ---------- */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-anthracit);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--color-sand);
  border-radius: var(--radius-input);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-anthracit);
  background: var(--color-white);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-mauve);
  box-shadow: 0 0 0 3px rgba(155, 126, 166, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* ---------- Page intro (sub-pages) ---------- */
.page-intro {
  padding-top: 140px;
  padding-bottom: 60px;
  text-align: center;
}

.page-intro h1 {
  margin-bottom: 16px;
}

.page-intro p {
  font-size: 1.125rem;
  max-width: 640px;
  margin: 0 auto;
}

/* ---------- Separator ---------- */
.separator {
  width: 60px;
  height: 3px;
  background-color: var(--color-mauve-light);
  margin: 24px auto;
  border-radius: 2px;
}

/* ---------- Image placeholder ---------- */
.img-placeholder {
  background: linear-gradient(135deg, var(--color-cream), var(--color-mauve-light));
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-mauve);
  font-size: 0.875rem;
  font-weight: 500;
  min-height: 200px;
  overflow: hidden;
}

.img-placeholder:has(img) {
  background: none;
  min-height: auto;
}

.img-placeholder img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-card);
}

/* ---------- Section images ---------- */
.section-img {
  width: 100%;
  border-radius: var(--radius-card);
  object-fit: cover;
}

.section-img--portrait {
  aspect-ratio: 3 / 4;
  max-height: 500px;
}

.section-img--landscape {
  aspect-ratio: 4 / 3;
  max-height: 400px;
}

.section-img--square {
  aspect-ratio: 1 / 1;
  max-height: 350px;
}

.section-img--product {
  aspect-ratio: 16 / 9;
  max-height: 250px;
}

/* ---------- Facts / Proč my ---------- */
.fact-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.fact-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--color-cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.fact-item__content h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.fact-item__content p {
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* ---------- Two-column layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col--reverse {
  direction: rtl;
}

.two-col--reverse > * {
  direction: ltr;
}

/* ---------- Rule / Pravidlo ---------- */
.rule-box {
  background: var(--color-cream);
  border-radius: var(--radius-card);
  padding: 40px;
  text-align: center;
  margin: 40px 0;
}

.rule-box p {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-anthracit);
  margin-bottom: 0;
}

/* ---------- Sisu section ---------- */
.sisu-practices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.sisu-practice {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.sisu-practice__icon {
  font-size: 2rem;
  flex-shrink: 0;
}

/* ---------- Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }

  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-col {
    gap: 40px;
  }

  .pillar {
    gap: 40px;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: var(--section-padding-mobile);
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }

  .hero {
    min-height: 70vh;
  }

  .hero__content h1 {
    font-size: 2.25rem;
  }

  .hero__content p {
    font-size: 1.0625rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    text-align: center;
    justify-content: center;
  }

  .proof-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .two-col--reverse {
    direction: ltr;
  }

  .pillar {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pillar:nth-child(even) {
    direction: ltr;
  }

  .sisu-practices {
    grid-template-columns: 1fr;
  }

  /* Navigation */
  .nav__links,
  .nav__actions {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer__legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }

  .container {
    padding: 0 16px;
  }

  .hero__content h1 {
    font-size: 1.875rem;
  }

  .proof-bar__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .proof-bar__number {
    font-size: 2rem;
  }

  .card {
    padding: 28px 24px;
  }

  .quote {
    padding: 28px 24px;
  }
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 1.125rem;
  color: var(--color-mauve-dark);
}

.legal-content p,
.legal-content li {
  line-height: 1.8;
  color: var(--color-anthracit);
}

.legal-content ul,
.legal-content ol {
  margin: 12px 0 12px 24px;
}

.legal-content li {
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--color-mauve);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--color-mauve-dark);
}

.legal-meta {
  font-size: 0.875rem;
  color: #888;
  margin-bottom: 32px;
  font-style: italic;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 16px 0 24px;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.legal-table th,
.legal-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-cream);
}

.legal-table th {
  background-color: var(--color-cream);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-mauve-dark);
}

.legal-table tr:hover td {
  background-color: var(--color-warm-white);
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-cream);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.cookie-banner--visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  min-width: 280px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-anthracit);
}

.cookie-banner__text a {
  color: var(--color-mauve);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid var(--color-mauve);
  font-family: var(--font-body);
}

.cookie-banner__btn--accept {
  background-color: var(--color-mauve);
  color: var(--color-white);
}

.cookie-banner__btn--accept:hover {
  background-color: var(--color-mauve-dark);
  border-color: var(--color-mauve-dark);
}

.cookie-banner__btn--reject {
  background-color: transparent;
  color: var(--color-mauve);
}

.cookie-banner__btn--reject:hover {
  background-color: var(--color-mauve);
  color: var(--color-white);
}

@media (max-width: 600px) {
  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: center;
  }
}
