/* ===== DESIGN SYSTEM — Mini Festival Kutlama ===== */
/* Festival poster / paper confetti / clean aesthetic   */

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

:root {
  /* Palette */
  --c-primary: #b8336a;
  --c-primary-dark: #8c1d4e;
  --c-primary-light: #e8a0be;
  --c-secondary: #1d7874;
  --c-secondary-dark: #145753;
  --c-accent: #f2a541;
  --c-accent-light: #fcebd0;
  --c-bg: #faf8f5;
  --c-bg-warm: #f5f0e8;
  --c-bg-card: #ffffff;
  --c-text: #2b2b2b;
  --c-text-muted: #6b6b6b;
  --c-text-inverse: #faf8f5;
  --c-border: #e0dcd4;
  --c-border-light: #eee9e0;
  --c-success: #2d8a4e;
  --c-error: #c4392d;

  /* Typography */
  --ff-heading: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --ff-body: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.375rem;
  --fs-xl: 1.75rem;
  --fs-2xl: 2.25rem;
  --fs-3xl: 3rem;
  --lh-tight: 1.2;
  --lh-normal: 1.6;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* Spacing */
  --sp-xs: 0.25rem;
  --sp-sm: 0.5rem;
  --sp-md: 1rem;
  --sp-lg: 1.5rem;
  --sp-xl: 2rem;
  --sp-2xl: 3rem;
  --sp-3xl: 4rem;
  --sp-4xl: 6rem;

  /* Radius */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);

  /* Transitions */
  --tr-fast: 150ms ease;
  --tr-normal: 250ms ease;
  --tr-slow: 400ms ease;

  /* Layout */
  --max-w: 1200px;
  --max-w-narrow: 900px;
}

/* --- Paper texture background via CSS --- */
html {
  min-height: 100%;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--c-text);
  background-color: var(--c-bg);
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 40px,
      rgba(0,0,0,0.015) 40px,
      rgba(0,0,0,0.015) 41px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 40px,
      rgba(0,0,0,0.01) 40px,
      rgba(0,0,0,0.01) 41px
    );
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Skip link (A11y) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-md);
  background: var(--c-primary);
  color: var(--c-text-inverse);
  padding: var(--sp-sm) var(--sp-md);
  border-radius: var(--r-sm);
  font-weight: var(--fw-semibold);
  z-index: 10000;
  text-decoration: none;
  transition: top var(--tr-fast);
}

.skip-link:focus {
  top: var(--sp-md);
}

/* --- Focus styles (A11y) --- */
:focus-visible {
  outline: 3px solid var(--c-primary);
  outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  line-height: var(--lh-tight);
  color: var(--c-text);
}

h1 {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
}

h4 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
}

p {
  margin-bottom: var(--sp-md);
}

a {
  color: var(--c-primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color var(--tr-fast);
}

a:hover {
  color: var(--c-primary-dark);
}

ul, ol {
  padding-left: var(--sp-xl);
  margin-bottom: var(--sp-md);
}

li {
  margin-bottom: var(--sp-xs);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

.container--narrow {
  max-width: var(--max-w-narrow);
}

.section {
  padding: var(--sp-3xl) 0;
}

.section--alt {
  background-color: var(--c-bg-warm);
}

/* --- Header --- */
.header {
  background: var(--c-bg-card);
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-md) var(--sp-lg);
  max-width: var(--max-w);
  margin: 0 auto;
}

.header__logo {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--c-primary);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.header__logo:hover {
  color: var(--c-primary-dark);
}

.header__logo span {
  color: var(--c-secondary);
}

/* Mobile menu toggle */
.header__toggle {
  display: none;
  background: none;
  border: 2px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: var(--sp-xs) var(--sp-sm);
  cursor: pointer;
  color: var(--c-text);
  font-size: var(--fs-md);
  line-height: 1;
}

.header__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  margin: 5px 0;
  transition: transform var(--tr-normal), opacity var(--tr-normal);
  transform-origin: center;
}

/* Cross (X) state */
.header__toggle[aria-expanded="true"] .header__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__toggle[aria-expanded="true"] .header__toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.header__toggle[aria-expanded="true"] .header__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
}

.nav__link {
  display: inline-block;
  padding: var(--sp-xs) var(--sp-sm);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--c-text);
  text-decoration: none;
  border-radius: var(--r-sm);
  transition: background var(--tr-fast), color var(--tr-fast);
}

.nav__link:hover,
.nav__link--active {
  background: var(--c-bg-warm);
  color: var(--c-primary);
}

.nav__link--cta {
  background: var(--c-primary);
  color: var(--c-text-inverse);
  font-weight: var(--fw-semibold);
  padding: var(--sp-sm) var(--sp-md);
  border-radius: var(--r-full);
}

.nav__link--cta:hover {
  background: var(--c-primary-dark);
  color: var(--c-text-inverse);
}

/* --- Hero --- */
.hero {
  padding: var(--sp-4xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(184,51,106,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(29,120,116,0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(242,165,65,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero__title {
  margin-bottom: var(--sp-lg);
  position: relative;
  visibility: hidden;
}

.hero__title.char-ready {
  visibility: visible;
}

.hero__subtitle {
  font-size: var(--fs-lg);
  color: var(--c-text-muted);
  max-width: 600px;
  margin: 0 auto var(--sp-xl);
  position: relative;
}

/* Confetti dots */
.confetti-dot {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}

.confetti-dot--1 { width: 12px; height: 12px; background: var(--c-primary); top: 15%; left: 8%; }
.confetti-dot--2 { width: 8px; height: 8px; background: var(--c-accent); top: 25%; right: 12%; }
.confetti-dot--3 { width: 10px; height: 10px; background: var(--c-secondary); bottom: 20%; left: 15%; }
.confetti-dot--4 { width: 6px; height: 6px; background: var(--c-primary-light); bottom: 30%; right: 8%; }
.confetti-dot--5 { width: 14px; height: 14px; background: var(--c-accent); top: 10%; left: 45%; }
.confetti-dot--6 { width: 9px; height: 9px; background: var(--c-secondary); bottom: 15%; right: 35%; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: var(--sp-sm) var(--sp-xl);
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: background var(--tr-fast), color var(--tr-fast), border-color var(--tr-fast), transform var(--tr-fast);
  text-align: center;
  line-height: var(--lh-tight);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--c-primary);
  color: var(--c-text-inverse);
  border-color: var(--c-primary);
}

.btn--primary:hover {
  background: var(--c-primary-dark);
  border-color: var(--c-primary-dark);
  color: var(--c-text-inverse);
}

.btn--secondary {
  background: transparent;
  color: var(--c-primary);
  border-color: var(--c-primary);
}

.btn--secondary:hover {
  background: var(--c-primary);
  color: var(--c-text-inverse);
}

.btn--accent {
  background: var(--c-accent);
  color: var(--c-text);
  border-color: var(--c-accent);
}

.btn--accent:hover {
  background: #e0933a;
  border-color: #e0933a;
}

.btn--sm {
  padding: var(--sp-xs) var(--sp-md);
  font-size: var(--fs-sm);
}

/* --- Cards --- */
.card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--tr-normal), transform var(--tr-normal);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card__badge {
  display: inline-block;
  background: var(--c-accent-light);
  color: var(--c-text);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  padding: var(--sp-xs) var(--sp-sm);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-sm);
}

.card__text {
  color: var(--c-text-muted);
  font-size: var(--fs-sm);
}

/* --- Grid --- */
.grid {
  display: grid;
  gap: var(--sp-xl);
}

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

/* --- Konsept Secici (Mood Switcher) --- */
.mood-switcher {
  text-align: center;
  margin-bottom: var(--sp-2xl);
}

.mood-switcher__btns {
  display: inline-flex;
  gap: var(--sp-sm);
  background: var(--c-bg-warm);
  padding: var(--sp-xs);
  border-radius: var(--r-full);
}

.mood-switcher__btn {
  padding: var(--sp-sm) var(--sp-lg);
  border: none;
  background: transparent;
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--c-text-muted);
  border-radius: var(--r-full);
  cursor: pointer;
  transition: background var(--tr-fast), color var(--tr-fast);
}

.mood-switcher__btn:hover {
  color: var(--c-text);
}

.mood-switcher__btn--active {
  background: var(--c-bg-card);
  color: var(--c-primary);
  font-weight: var(--fw-semibold);
  box-shadow: var(--shadow-sm);
}

.mood-panel {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg);
  padding: var(--sp-2xl);
  text-align: center;
  transition: border-color var(--tr-normal);
}

.mood-panel[data-mood="sade"] {
  border-color: var(--c-border);
}

.mood-panel[data-mood="sik"] {
  border-color: var(--c-primary-light);
}

.mood-panel[data-mood="renkli"] {
  border-color: var(--c-accent);
}

.mood-panel__title {
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-sm);
}

.mood-panel__desc {
  color: var(--c-text-muted);
  margin-bottom: var(--sp-md);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.mood-panel__price {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--c-primary);
}

/* --- Table Scroll Wrapper --- */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: var(--sp-xl) 0;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}

/* --- Price Table --- */
.price-table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  background: var(--c-bg-card);
}

.price-table thead {
  background: var(--c-primary);
  color: var(--c-text-inverse);
}

.price-table th {
  padding: var(--sp-md) var(--sp-lg);
  text-align: left;
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.price-table td {
  padding: var(--sp-md) var(--sp-lg);
  border-bottom: 1px solid var(--c-border-light);
  font-size: var(--fs-sm);
}

.price-table tbody tr:last-child td {
  border-bottom: none;
}

.price-table tbody tr:hover {
  background: var(--c-bg-warm);
}

/* --- Timeline (program-akisi) --- */
.timeline {
  position: relative;
  padding-left: var(--sp-2xl);
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--c-border);
}

.timeline__item {
  position: relative;
  margin-bottom: var(--sp-xl);
  padding-bottom: var(--sp-md);
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--sp-2xl) + 4px);
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-primary);
  border: 2px solid var(--c-bg);
}

.timeline__time {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--c-primary);
  margin-bottom: var(--sp-xs);
}

.timeline__title {
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-xs);
}

.timeline__desc {
  color: var(--c-text-muted);
  font-size: var(--fs-sm);
}

/* --- FAQ Accordion --- */
.faq-list {
  list-style: none;
  padding: 0;
}

.faq-item {
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-sm);
  background: var(--c-bg-card);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-md) var(--sp-lg);
  background: none;
  border: none;
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--c-text);
  cursor: pointer;
  text-align: left;
  line-height: var(--lh-normal);
  transition: background var(--tr-fast);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.faq-question:hover {
  background: var(--c-bg-warm);
}

.faq-question::after {
  content: "+";
  font-size: var(--fs-lg);
  font-weight: var(--fw-normal);
  color: var(--c-text-muted);
  transition: transform var(--tr-fast);
  flex-shrink: 0;
  margin-left: var(--sp-md);
}

.faq-item--open .faq-question::after {
  content: "-";
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--tr-slow);
}

.faq-answer > div,
.faq-answer > p {
  overflow: hidden;
}

.faq-item--open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer__inner {
  overflow: hidden;
  padding: 0 var(--sp-lg);
  transition: padding var(--tr-slow);
}

.faq-item--open .faq-answer__inner {
  padding: 0 var(--sp-lg) var(--sp-md);
}

.faq-answer p {
  color: var(--c-text-muted);
  font-size: var(--fs-sm);
  line-height: var(--lh-normal);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* --- Forms --- */
.form-group {
  margin-bottom: var(--sp-lg);
}

.form-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-xs);
  color: var(--c-text);
}

.form-label .required {
  color: var(--c-error);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--sp-sm) var(--sp-md);
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  color: var(--c-text);
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  transition: border-color var(--tr-fast), box-shadow var(--tr-fast);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(184,51,106,0.15);
  outline: none;
}

.form-input.is-error,
.form-textarea.is-error {
  border-color: var(--c-error);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-error {
  font-size: var(--fs-xs);
  color: var(--c-error);
  margin-top: var(--sp-xs);
  display: none;
}

.form-error.is-visible {
  display: block;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  font-size: var(--fs-sm);
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
}

.form-message {
  padding: var(--sp-md);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  margin-top: var(--sp-md);
  display: none;
}

.form-message--success {
  background: #e8f5ed;
  color: var(--c-success);
  border: 1px solid #c3e6cd;
}

.form-message--error {
  background: #fde8e6;
  color: var(--c-error);
  border: 1px solid #f5c6c2;
}

.form-message.is-visible {
  display: block;
}

/* Honeypot */
.form-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* --- Related Pages --- */
.related-pages {
  margin-top: var(--sp-3xl);
  background: var(--c-bg-card);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg);
  padding: var(--sp-xl) var(--sp-2xl);
  box-shadow: var(--shadow-sm);
}

.related-pages__title {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-primary);
  margin-bottom: var(--sp-md);
  padding-bottom: var(--sp-sm);
  border-bottom: 2px solid var(--c-primary-light);
  display: inline-block;
}

.related-pages__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-pages__list a {
  display: inline-block;
  padding: var(--sp-sm) var(--sp-lg);
  background: var(--c-bg-warm);
  color: var(--c-text);
  text-decoration: none;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  border-radius: var(--r-md);
  border: 1px solid var(--c-border-light);
  transition: background var(--tr-fast), border-color var(--tr-fast), color var(--tr-fast), transform var(--tr-fast);
}

.related-pages__list a:hover {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: var(--c-text-inverse);
  transform: translateY(-1px);
}

/* --- Content Blocks (enhanced) --- */
.section h2 {
  margin-bottom: var(--sp-md);
}

.section h3 {
  margin-top: var(--sp-xl);
  margin-bottom: var(--sp-sm);
}

.section p + h3 {
  margin-top: var(--sp-2xl);
}

.info-block {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg);
  padding: var(--sp-xl) var(--sp-2xl);
  margin-bottom: var(--sp-xl);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--tr-normal);
}

.info-block:hover {
  box-shadow: var(--shadow-md);
}

.info-block__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-sm);
  padding-bottom: var(--sp-sm);
  border-bottom: 2px solid var(--c-primary-light);
  color: var(--c-text);
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--sp-2xl);
  align-items: start;
}

.contact-form-wrap {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg);
  padding: var(--sp-2xl);
  box-shadow: var(--shadow-md);
}

.contact-form-wrap h2 {
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-sm);
}

.contact-form-wrap > p {
  color: var(--c-text-muted);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}

.contact-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg);
  padding: var(--sp-lg) var(--sp-xl);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--tr-normal), transform var(--tr-normal);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--c-primary);
  border-radius: var(--r-sm) 0 0 var(--r-sm);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-card__label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-primary);
  margin-bottom: var(--sp-xs);
}

.contact-card__value {
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  color: var(--c-text);
  margin: 0;
}

.contact-card__note {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  margin-top: var(--sp-xs);
  margin-bottom: 0;
}

.contact-sss-link {
  background: var(--c-bg-warm);
  border-radius: var(--r-lg);
  padding: var(--sp-lg) var(--sp-xl);
  margin-top: var(--sp-sm);
}

.contact-sss-link h3 {
  font-size: var(--fs-base);
  margin-bottom: var(--sp-xs);
  margin-top: 0;
}

.contact-sss-link p {
  color: var(--c-text-muted);
  font-size: var(--fs-sm);
  margin: 0;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  color: var(--c-text-inverse);
  text-align: center;
  padding: var(--sp-2xl) var(--sp-lg);
  border-radius: var(--r-lg);
  margin: var(--sp-2xl) 0;
}

.cta-banner h3 {
  color: var(--c-text-inverse);
  margin-bottom: var(--sp-sm);
}

.cta-banner p {
  opacity: 0.9;
  margin-bottom: var(--sp-lg);
}

.cta-banner .btn {
  background: var(--c-accent);
  color: var(--c-text);
  border-color: var(--c-accent);
}

.cta-banner .btn:hover {
  background: #e0933a;
  border-color: #e0933a;
}

/* --- Footer --- */
.footer {
  background: var(--c-text);
  color: var(--c-text-inverse);
  padding: var(--sp-3xl) 0 var(--sp-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-2xl);
  margin-bottom: var(--sp-2xl);
}

.footer__brand {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-sm);
  color: var(--c-text-inverse);
}

.footer__brand span {
  color: var(--c-accent);
}

.footer__desc {
  color: rgba(250,248,245,0.65);
  font-size: var(--fs-sm);
  line-height: var(--lh-normal);
}

.footer__heading {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--sp-md);
  color: var(--c-text-inverse);
}

.footer__links {
  list-style: none;
  padding: 0;
}

.footer__links li {
  margin-bottom: var(--sp-sm);
}

.footer__links a {
  color: rgba(250,248,245,0.65);
  text-decoration: none;
  font-size: var(--fs-sm);
  transition: color var(--tr-fast);
}

.footer__links a:hover {
  color: var(--c-text-inverse);
}

.footer__bottom {
  border-top: 1px solid rgba(250,248,245,0.15);
  padding-top: var(--sp-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
  color: rgba(250,248,245,0.5);
}

.footer__legal {
  display: flex;
  gap: var(--sp-md);
}

.footer__legal a {
  color: rgba(250,248,245,0.5);
  text-decoration: none;
}

.footer__legal a:hover {
  color: var(--c-text-inverse);
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--c-bg-card);
  border-top: 1px solid var(--c-border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: var(--sp-lg);
  z-index: 9999;
  display: none;
}

.cookie-banner[aria-hidden="false"] {
  display: block;
}

.cookie-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: var(--sp-xl);
}

.cookie-banner__text {
  flex: 1;
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
}

.cookie-banner__text a {
  color: var(--c-primary);
}

.cookie-banner__actions {
  display: flex;
  gap: var(--sp-sm);
  flex-shrink: 0;
  align-items: center;
}

.cookie-banner__btn {
  padding: var(--sp-sm) var(--sp-lg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-full);
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  cursor: pointer;
  transition: background var(--tr-fast), color var(--tr-fast), border-color var(--tr-fast);
  background: transparent;
  color: var(--c-text);
}

.cookie-banner__btn--accept {
  background: var(--c-primary);
  color: var(--c-text-inverse);
  border-color: var(--c-primary);
}

.cookie-banner__btn--accept:hover {
  background: var(--c-primary-dark);
  border-color: var(--c-primary-dark);
}

.cookie-banner__btn--reject {
  background: transparent;
  color: var(--c-text);
  border-color: var(--c-border);
}

.cookie-banner__btn--reject:hover {
  background: var(--c-bg-warm);
  border-color: var(--c-text-muted);
}

.cookie-banner__btn--settings {
  background: transparent;
  color: var(--c-text-muted);
  border-color: transparent;
  text-decoration: underline;
}

.cookie-banner__btn--settings:hover {
  color: var(--c-text);
}

/* Cookie settings modal */
.cookie-settings {
  display: none;
  margin-top: var(--sp-md);
  padding: var(--sp-md);
  background: var(--c-bg-warm);
  border-radius: var(--r-md);
}

.cookie-settings.is-visible {
  display: block;
}

.cookie-settings__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-sm) 0;
  border-bottom: 1px solid var(--c-border-light);
}

.cookie-settings__item:last-child {
  border-bottom: none;
}

.cookie-settings__label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
}

.cookie-settings__note {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
}

/* Toggle switch */
.toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle__slider {
  position: absolute;
  inset: 0;
  background: var(--c-border);
  border-radius: var(--r-full);
  cursor: pointer;
  transition: background var(--tr-fast);
}

.toggle__slider::before {
  content: "";
  position: absolute;
  left: 2px;
  bottom: 2px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform var(--tr-fast);
}

.toggle input:checked + .toggle__slider {
  background: var(--c-primary);
}

.toggle input:checked + .toggle__slider::before {
  transform: translateX(20px);
}

.toggle input:disabled + .toggle__slider {
  opacity: 0.5;
  cursor: not-allowed;
}

/* --- Disclaimer --- */
.disclaimer {
  background: var(--c-accent-light);
  border-left: 3px solid var(--c-accent);
  padding: var(--sp-md) var(--sp-lg);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin: var(--sp-xl) 0;
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
}

/* --- Page Header (inner pages) --- */
.page-header {
  padding: var(--sp-2xl) 0;
  text-align: center;
  position: relative;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(184,51,106,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.page-header h1 {
  position: relative;
  margin-bottom: var(--sp-sm);
}

.page-header__lead {
  font-size: var(--fs-md);
  color: var(--c-text-muted);
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}

/* --- Breadcrumb --- */
.breadcrumb {
  padding: var(--sp-sm) 0;
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
}

.breadcrumb a {
  color: var(--c-text-muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--c-primary);
}

.breadcrumb span {
  margin: 0 var(--sp-xs);
}

/* --- 404 --- */
.page-404 {
  text-align: center;
  padding: var(--sp-4xl) 0;
}

.page-404__code {
  font-size: 8rem;
  font-weight: var(--fw-bold);
  color: var(--c-border);
  line-height: 1;
  margin-bottom: var(--sp-md);
}

/* --- Venue / Setup grid --- */

/* --- Legal pages --- */
.legal-content h2 {
  font-size: var(--fs-xl);
  margin-top: var(--sp-2xl);
  margin-bottom: var(--sp-md);
}

.legal-content h3 {
  font-size: var(--fs-lg);
  margin-top: var(--sp-xl);
  margin-bottom: var(--sp-sm);
}

.legal-content p,
.legal-content ul,
.legal-content ol {
  margin-bottom: var(--sp-md);
  color: var(--c-text-muted);
}

/* --- Sitemap Page --- */
.sitemap-list {
  list-style: none;
  padding: 0;
  column-count: 2;
  column-gap: var(--sp-2xl);
}

.sitemap-list li {
  padding: var(--sp-sm) 0;
  border-bottom: 1px solid var(--c-border-light);
  break-inside: avoid;
}

.sitemap-list a {
  text-decoration: none;
  font-weight: var(--fw-medium);
}

/* --- Content with Image --- */
.content-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: start;
  margin: var(--sp-xl) 0;
}

.content-with-image--reverse {
  direction: rtl;
}

.content-with-image--reverse > * {
  direction: ltr;
}

.content-with-image__text {
  align-self: center;
}

.content-with-image__img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --fs-3xl: 2.25rem;
    --fs-2xl: 1.75rem;
    --fs-xl: 1.375rem;
  }

  .header__toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--c-bg-card);
    border-bottom: 1px solid var(--c-border);
    flex-direction: column;
    padding: 0 var(--sp-lg);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height var(--tr-slow), opacity var(--tr-normal), padding var(--tr-normal);
    display: flex;
  }

  .nav--open {
    max-height: 500px;
    opacity: 1;
    padding: var(--sp-md) var(--sp-lg);
  }

  .nav__link {
    display: block;
    padding: var(--sp-sm) 0;
    width: 100%;
  }

  .nav__link--cta {
    text-align: center;
    margin-top: var(--sp-sm);
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .content-with-image {
    grid-template-columns: 1fr;
  }

  .content-with-image--reverse {
    direction: ltr;
  }

  .content-with-image__img {
    max-width: 100%;
    margin: 0 auto;
  }

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

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

  .contact-form-wrap {
    padding: var(--sp-lg);
  }

  .related-pages {
    padding: var(--sp-lg);
  }

  .info-block {
    padding: var(--sp-lg);
  }

  .cookie-banner__inner {
    flex-direction: column;
  }

  .cookie-banner__actions {
    flex-wrap: wrap;
    width: 100%;
  }

  .cookie-banner__btn {
    flex: 1;
    text-align: center;
  }

  .price-table {
    font-size: var(--fs-sm);
  }

  .price-table th,
  .price-table td {
    padding: var(--sp-sm);
  }

  .faq-question {
    font-size: var(--fs-sm);
    padding: var(--sp-sm) var(--sp-md);
  }

  .faq-answer__inner {
    padding: 0 var(--sp-md);
  }

  .faq-item--open .faq-answer__inner {
    padding: 0 var(--sp-md) var(--sp-sm);
  }

  .faq-answer p {
    font-size: var(--fs-sm);
  }

  .sitemap-list {
    column-count: 1;
  }

  .hero {
    padding: var(--sp-2xl) 0;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--sp-sm);
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --fs-3xl: 1.75rem;
    --fs-2xl: 1.5rem;
  }

  .container {
    padding: 0 var(--sp-md);
  }

  .mood-switcher__btns {
    flex-direction: column;
    border-radius: var(--r-md);
  }
}

/* ===== ANIMATIONS ===== */

/* --- Shared keyframes --- */
@keyframes fadeSlideUp {
  to { opacity: 1; transform: translateY(0); }
}

/* --- Hero 3D letter drop --- */
.hero {
  perspective: 900px;
}

.hero__title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(-80px) rotateX(-90deg) scale(0.6);
  transform-origin: center bottom;
  animation: charDrop3D 0.65s cubic-bezier(0.22, 1.2, 0.36, 1) forwards;
  filter: blur(6px);
  text-shadow: 0 0 0 transparent;
}

.hero__title .char-space {
  display: inline-block;
  width: 0.3em;
}

@keyframes charDrop3D {
  0% {
    opacity: 0;
    transform: translateY(-80px) rotateX(-90deg) scale(0.6);
    filter: blur(6px);
    text-shadow: 0 0 20px var(--c-primary);
  }
  50% {
    opacity: 1;
    filter: blur(1px);
    text-shadow: 0 0 12px var(--c-primary);
  }
  75% {
    transform: translateY(3px) rotateX(5deg) scale(1.03);
    filter: blur(0);
    text-shadow: 0 0 6px rgba(184,51,106,0.3);
  }
  90% {
    transform: translateY(-2px) rotateX(-2deg) scale(0.99);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0deg) scale(1);
    filter: blur(0);
    text-shadow: 0 0 0 transparent;
  }
}

/* --- Hero shockwave ring --- */
.hero__shockwave {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--c-primary);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__shockwave--active {
  animation: shockwave 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes shockwave {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.5;
    border-width: 3px;
  }
  100% {
    transform: translate(-50%, -50%) scale(80);
    opacity: 0;
    border-width: 0.5px;
  }
}

/* --- Hero subtitle + buttons stagger --- */
.hero__subtitle {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 1.4s;
}

.hero .btn {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero .btn:nth-of-type(1) { animation-delay: 1.7s; }
.hero .btn:nth-of-type(2) { animation-delay: 1.9s; }

/* --- Confetti float with 3D --- */
.confetti-dot {
  animation: confettiFloat3D 6s ease-in-out infinite alternate;
}

.confetti-dot--1 { animation-delay: 0s; animation-duration: 5s; }
.confetti-dot--2 { animation-delay: 0.8s; animation-duration: 7s; }
.confetti-dot--3 { animation-delay: 1.5s; animation-duration: 6s; }
.confetti-dot--4 { animation-delay: 0.3s; animation-duration: 8s; }
.confetti-dot--5 { animation-delay: 2s; animation-duration: 5.5s; }
.confetti-dot--6 { animation-delay: 1s; animation-duration: 7.5s; }

@keyframes confettiFloat3D {
  0% {
    transform: translateY(0) rotate(0deg) scale(1) translateZ(0);
    opacity: 0.15;
  }
  50% { opacity: 0.3; }
  100% {
    transform: translateY(-25px) rotate(270deg) scale(1.4) translateZ(20px);
    opacity: 0.08;
  }
}

/* --- Hero mouse-follow light orbs (JS positions) --- */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.8s ease;
  z-index: 0;
  will-change: transform;
}

.hero__orb--1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(184,51,106,0.15) 0%, transparent 70%);
}

.hero__orb--2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(29,120,116,0.12) 0%, transparent 70%);
}

.hero__orb--3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(242,165,65,0.1) 0%, transparent 70%);
}

.hero:hover .hero__orb { opacity: 1; }

/* --- Scroll reveal base --- */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered cards */
.reveal-stagger > .card,
.reveal-stagger > .info-block,
.reveal-stagger > div {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal-stagger--visible > .card,
.reveal-stagger--visible > .info-block,
.reveal-stagger--visible > div {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-stagger--visible > :nth-child(1) { transition-delay: 0s; }
.reveal-stagger--visible > :nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger--visible > :nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger--visible > :nth-child(4) { transition-delay: 0.45s; }

/* Slide from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px) rotate(-1deg);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left--visible {
  opacity: 1;
  transform: translateX(0) rotate(0deg);
}

/* Slide from right */
.reveal-right {
  opacity: 0;
  transform: translateX(60px) rotate(1deg);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right--visible {
  opacity: 1;
  transform: translateX(0) rotate(0deg);
}

/* Scale pop */
.reveal-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal-scale--visible {
  opacity: 1;
  transform: scale(1);
}

/* --- Timeline cascade with pulse --- */
.timeline__item {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.timeline__item--visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline__item--visible::before {
  animation: timelinePulse 0.6s ease forwards;
}

@keyframes timelinePulse {
  0% { transform: scale(0); box-shadow: 0 0 0 0 var(--c-primary); }
  50% { transform: scale(1.6); box-shadow: 0 0 0 8px rgba(184,51,106,0.15); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 transparent; }
}

/* --- CTA Banner shimmer --- */
.cta-banner {
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  animation: ctaShimmer 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes ctaShimmer {
  0% { left: -100%; }
  50% { left: 150%; }
  100% { left: 150%; }
}

/* --- Card 3D tilt (JS sets --mx, --my) --- */
.card {
  transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-style: preserve-3d;
  will-change: transform;
}

.card:hover {
  box-shadow: var(--shadow-lg);
}

/* --- Button click particle burst (JS injects spans) --- */
.btn {
  position: relative;
  overflow: hidden;
}

.btn__particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  pointer-events: none;
  animation: btnBurst 0.6s ease-out forwards;
}

@keyframes btnBurst {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.9;
  }
  100% {
    transform: translate(var(--px), var(--py)) scale(0);
    opacity: 0;
  }
}

/* --- Page header text scramble reveal --- */
.page-header h1 {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards 0.1s;
}

.page-header__lead {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.7s ease forwards 0.35s;
}

/* --- Mood panel flip transition --- */
.mood-panel {
  transition: border-color var(--tr-normal), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
}

.mood-panel--switching {
  transform: scale(0.95) rotateX(5deg);
  opacity: 0.5;
}

/* --- Section divider gradient line --- */
.section--alt {
  position: relative;
}

.section--alt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-primary-light), var(--c-accent), var(--c-secondary), transparent);
  opacity: 0.4;
  border-radius: 1px;
}

/* --- Scroll progress bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-accent), var(--c-secondary));
  z-index: 10001;
  width: 0%;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* --- Footer reveal --- */
.footer {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.footer--visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Image parallax tilt on scroll --- */
.content-with-image__img {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* --- prefers-reduced-motion (A11y) --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero__title .char,
  .hero__subtitle,
  .hero .btn,
  .page-header h1,
  .page-header__lead {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .timeline__item,
  .footer {
    opacity: 1 !important;
    transform: none !important;
  }

  .reveal-stagger > .card,
  .reveal-stagger > .info-block,
  .reveal-stagger > div {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero__orb,
  .hero__shockwave,
  .scroll-progress,
  .btn__particle { display: none !important; }

  .card:hover,
  .btn:hover { transform: none; }

  .section--alt::before { display: none; }
}

/* --- Print --- */
@media print {
  .header,
  .footer,
  .cookie-banner,
  .cta-banner,
  .skip-link {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  a {
    color: black;
    text-decoration: underline;
  }
}
