/* ===== FONTS ===== */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/playfair-display-v37-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/playfair-display-v37-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/playfair-display-v37-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/playfair-display-v37-latin-400italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/source-sans-3-v15-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/source-sans-3-v15-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/source-sans-3-v15-latin-700.woff2') format('woff2');
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #1C1713;
  background-color: #FAF7F2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-weight: 400; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --bg-primary: #FAF7F2;
  --bg-secondary: #F2EDE4;
  --bg-dark: #1C1713;
  --bg-dark-lighter: #2E2219;
  --bg-card: #FFFFFF;
  --text-primary: #1C1713;
  --text-secondary: #5C5046;
  --text-muted: #9C8E82;
  --brand-primary: #C4522A;
  --brand-secondary: #A84422;
  --accent-warm: #E8A87C;
  --accent-forest: #3D5A47;
  --success: #3D7A5C;
  --error: #C0392B;
  --border: #E3DDD5;
  --border-strong: #C8BFB4;
  --shadow-xs: 0 1px 2px rgba(28,23,19,0.05);
  --shadow-sm: 0 1px 4px rgba(28,23,19,0.06);
  --shadow-md: 0 4px 12px rgba(28,23,19,0.08);
  --shadow-lg: 0 6px 20px rgba(28,23,19,0.10);
  --shadow-xl: 0 12px 40px rgba(28,23,19,0.14);
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1240px;
  --section-padding: 72px;
  --section-padding-desktop: 120px;
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute; left: -9999px; top: auto; z-index: 500;
  padding: 8px 16px; background: var(--brand-primary); color: #fff;
  font-size: 14px; font-weight: 600;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ===== CONTAINER ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }

/* ===== TYPOGRAPHY ===== */
.h1 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(32px, 5vw + 16px, 68px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(26px, 3vw + 14px, 44px);
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
@media (min-width: 1024px) { .h3 { font-size: 26px; } }
.eyebrow {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 16px;
  display: block;
}
@media (min-width: 1024px) { .eyebrow { font-size: 12px; } }
.pull-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
}
@media (min-width: 1024px) { .pull-quote { font-size: 28px; } }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-sans);
  font-weight: 600; font-size: 15px; letter-spacing: 0.03em;
  border-radius: 4px;
  transition: all 200ms ease;
  white-space: nowrap;
  text-align: center;
}
.btn-primary {
  background: var(--brand-primary); color: #FFFFFF;
  padding: 14px 28px;
  box-shadow: 0 2px 8px rgba(196,82,42,0.25);
}
.btn-primary:hover {
  background: var(--brand-secondary);
  box-shadow: 0 4px 16px rgba(196,82,42,0.35);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(196,82,42,0.25); }
.btn-primary:disabled, .btn-primary.disabled {
  background: var(--border); color: var(--text-muted);
  box-shadow: none; cursor: not-allowed; transform: none;
}
.btn-secondary {
  background: transparent; color: var(--brand-primary);
  padding: 13px 27px;
  border: 1.5px solid var(--brand-primary);
}
.btn-secondary:hover { background: var(--brand-primary); color: #FFFFFF; }
.btn-secondary--white {
  color: #FAF7F2; border-color: rgba(250,247,242,0.5);
}
.btn-secondary--white:hover { background: rgba(250,247,242,0.15); color: #FAF7F2; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-nav { padding: 10px 20px; font-size: 14px; height: 38px; }

/* ===== SECTION SPACING ===== */
.section { padding: var(--section-padding) 0; }
@media (min-width: 1024px) { .section { padding: var(--section-padding-desktop) 0; } }
.section--secondary { background: var(--bg-secondary); }
.section--dark { background: linear-gradient(160deg, #1C1713 0%, #2E2219 100%); color: #FAF7F2; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; height: 64px;
  transition: background 300ms ease, box-shadow 300ms ease;
}
.nav--transparent { background: transparent; }
.nav--solid {
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-xl);
}
.nav__inner {
  max-width: var(--max-width); margin: 0 auto;
  padding: 0 20px; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
@media (min-width: 768px) { .nav__inner { padding: 0 32px; } }
.nav__logo {
  font-family: var(--font-serif); font-weight: 700; font-size: 20px;
  display: flex; align-items: center;
}
@media (min-width: 1024px) { .nav__logo { font-size: 22px; } }
.nav__logo-reise { color: var(--text-primary); }
.nav__logo-kopf { color: var(--brand-primary); }
.nav__links { display: none; gap: 32px; align-items: center; }
@media (min-width: 1024px) { .nav__links { display: flex; } }
.nav__link {
  font-size: 15px; color: var(--text-secondary);
  transition: color 150ms ease;
}
.nav__link:hover { color: var(--text-primary); }
.nav__cta { display: none; }
@media (min-width: 1024px) { .nav__cta { display: inline-flex; } }
.nav__hamburger {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
}
@media (min-width: 1024px) { .nav__hamburger { display: none; } }

/* Mobile menu */
.mobile-menu-overlay {
  position: fixed; inset: 0; background: rgba(28,23,19,0.4);
  z-index: 200; opacity: 0; pointer-events: none;
  transition: opacity 300ms ease;
}
.mobile-menu-overlay.active { opacity: 1; pointer-events: auto; }
.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 280px; background: var(--bg-primary);
  z-index: 201; padding: 24px;
  transform: translateX(280px);
  transition: transform 300ms cubic-bezier(0.16,1,0.3,1);
  display: flex; flex-direction: column;
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu__close {
  align-self: flex-end; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.mobile-menu__links {
  display: flex; flex-direction: column; gap: 20px;
  margin-top: 32px;
}
.mobile-menu__link {
  font-family: var(--font-sans); font-weight: 600; font-size: 18px;
  color: var(--text-primary);
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 70vh; overflow: hidden;
  display: flex; align-items: flex-end;
}
@media (min-width: 768px) { .hero { min-height: 80vh; } }
@media (min-width: 1024px) { .hero { min-height: 90vh; } }
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover; background-position: center;
  will-change: transform;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(28,23,19,0.0) 0%, rgba(28,23,19,0.55) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  padding: 0 20px 48px;
  max-width: var(--max-width); margin: 0 auto; width: 100%;
}
@media (min-width: 768px) { .hero__content { padding: 0 32px 64px; } }
@media (min-width: 1024px) { .hero__content { max-width: 720px; margin: 0 0 0 max(32px, calc((100vw - var(--max-width))/2 + 32px)); padding-bottom: 80px; } }
.hero__eyebrow {
  font-family: var(--font-sans); font-weight: 600; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--brand-primary); margin-bottom: 16px;
  opacity: 0; transform: translateY(16px);
}
@media (min-width: 1024px) { .hero__eyebrow { font-size: 12px; } }
.hero__title {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(32px, 5vw + 16px, 68px);
  line-height: 1.1; letter-spacing: -0.02em;
  color: #FAF7F2; margin-bottom: 20px;
  opacity: 0; transform: translateY(20px);
}
.hero__subtitle {
  font-size: 18px; line-height: 1.6; color: rgba(250,247,242,0.85);
  max-width: 540px; margin-bottom: 28px;
  opacity: 0; transform: translateY(20px);
}
@media (min-width: 1024px) { .hero__subtitle { font-size: 20px; } }
.hero__ctas {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px;
  opacity: 0; transform: translateY(20px);
}
.hero__privacy {
  font-size: 13px; color: var(--text-muted);
  opacity: 0; transform: translateY(10px);
}

/* ===== PROBLEM SECTION ===== */
.problem__grid {
  display: grid; gap: 40px;
}
@media (min-width: 768px) { .problem__grid { grid-template-columns: 1fr 1fr; gap: 48px; } }
.problem__narrative p {
  font-size: 17px; line-height: 1.7; color: var(--text-primary);
  margin-bottom: 16px;
}
.problem__spots { display: flex; flex-direction: column; gap: 24px; }
.problem__spot {
  display: flex; gap: 16px; align-items: flex-start;
}
.problem__spot-icon {
  flex-shrink: 0; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(196,82,42,0.1); border-radius: 8px;
}
.problem__spot-icon svg { width: 20px; height: 20px; stroke: var(--brand-primary); }
.problem__spot-title {
  font-weight: 600; font-size: 16px; color: var(--text-primary); margin-bottom: 4px;
}
.problem__spot-desc { font-size: 15px; color: var(--text-secondary); line-height: 1.55; }
.problem__transition {
  font-family: var(--font-serif); font-style: italic;
  font-size: 20px; color: var(--text-secondary); text-align: center;
  margin-top: 48px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  position: relative; overflow: hidden;
}
.how-it-works__bg {
  position: absolute; inset: 0;
  background-image: url('../images/hintergrund-wie-es-funktioniert.jpg');
  background-size: cover; background-position: center;
}
.how-it-works__bg-overlay {
  position: absolute; inset: 0;
  background: rgba(250,247,242,0.90);
}
.how-it-works__content { position: relative; z-index: 2; }
.how-it-works__phases {
  display: grid; gap: 48px; margin-top: 48px;
}
@media (min-width: 1024px) {
  .how-it-works__phases { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
}
.phase { position: relative; }
.phase__number {
  font-family: var(--font-serif); font-weight: 700; font-size: 64px;
  color: rgba(196,82,42,0.12); line-height: 1; margin-bottom: 8px;
}
@media (min-width: 1024px) { .phase__number { font-size: 80px; } }
.phase__icon {
  width: 48px; height: 48px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(61,90,71,0.1); border-radius: 12px;
}
.phase__icon svg { width: 24px; height: 24px; stroke: var(--accent-forest); }
.phase__name {
  font-family: var(--font-serif); font-weight: 600; font-size: 22px;
  margin-bottom: 12px; color: var(--text-primary);
}
.phase__desc {
  font-size: 16px; line-height: 1.7; color: var(--text-primary);
  margin-bottom: 16px;
}
.phase__features { display: flex; flex-direction: column; gap: 8px; }
.phase__feature {
  display: flex; gap: 8px; align-items: flex-start;
  font-size: 14px; color: var(--text-secondary);
}
.phase__feature svg { width: 16px; height: 16px; stroke: var(--accent-forest); flex-shrink: 0; margin-top: 2px; }
.phase__image {
  width: 100%; border-radius: 8px; margin-bottom: 16px;
  aspect-ratio: 3/2; object-fit: cover;
}
.how-it-works__cta-wrap {
  text-align: center; margin-top: 48px;
}
.how-it-works__microcopy {
  font-size: 13px; color: var(--text-muted); margin-top: 12px;
}

/* ===== FEATURES ===== */
.features__grid {
  display: grid; gap: 24px; margin-top: 48px;
}
@media (min-width: 768px) { .features__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .features__grid { grid-template-columns: 1fr 1fr 1fr; } }
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 250ms ease, box-shadow 250ms ease;
}
@media (min-width: 1024px) { .feature-card { padding: 32px; } }
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.feature-card__icon {
  width: 48px; height: 48px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(61,90,71,0.1); border-radius: 12px;
}
.feature-card__icon svg { width: 24px; height: 24px; stroke: var(--accent-forest); }
.feature-card__title {
  font-weight: 600; font-size: 18px; color: var(--text-primary);
  margin-bottom: 8px;
}
.feature-card__desc {
  font-size: 15px; color: var(--text-secondary); line-height: 1.65;
  margin-bottom: 12px;
}
.feature-card__example {
  font-size: 14px; font-style: italic; color: var(--text-muted); line-height: 1.5;
}

/* ===== SOCIAL PROOF / COUNTERS ===== */
.social-proof {
  position: relative; overflow: hidden;
  padding: var(--section-padding) 0;
}
@media (min-width: 1024px) { .social-proof { padding: var(--section-padding-desktop) 0; } }
.social-proof__bg {
  position: absolute; inset: 0;
  background-image: url('../images/zahlen-hintergrund.jpg');
  background-size: cover; background-position: center;
}
.social-proof__overlay {
  position: absolute; inset: 0;
  background: rgba(28,23,19,0.65);
}
.social-proof__overlay::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(196,82,42,0.08);
}
.social-proof__content {
  position: relative; z-index: 2;
}
.counters {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}
@media (min-width: 1024px) { .counters { grid-template-columns: repeat(4, 1fr); } }
.counter { text-align: center; }
.counter__number {
  font-family: var(--font-serif); font-weight: 700; font-size: 40px;
  color: #FAF7F2; line-height: 1.1;
}
@media (min-width: 1024px) { .counter__number { font-size: 56px; } }
.counter__label {
  font-size: 15px; color: rgba(250,247,242,0.8); margin-top: 8px;
}
@media (min-width: 1024px) { .counter__label { font-size: 16px; } }

/* ===== TESTIMONIALS ===== */
.testimonials__grid {
  margin-top: 48px;
}
@media (min-width: 1024px) {
  .testimonials__grid {
    columns: 3; column-gap: 24px;
  }
  .testimonials__grid .testimonial-card { break-inside: avoid; margin-bottom: 24px; }
}
.testimonial-card {
  background: var(--bg-primary);
  border-radius: 8px; padding: 28px;
  margin-bottom: 24px; position: relative;
}
.testimonial-card__stars {
  display: flex; gap: 2px; margin-bottom: 12px;
}
.testimonial-card__stars svg { width: 14px; height: 14px; fill: var(--accent-warm); stroke: var(--accent-warm); }
.testimonial-card__stars svg.empty { fill: none; }
.testimonial-card__quote-glyph {
  font-family: var(--font-serif); font-size: 72px; line-height: 0.8;
  color: var(--accent-warm); margin-bottom: 8px;
}
.testimonial-card__text {
  font-family: var(--font-serif); font-style: italic;
  font-size: 16px; line-height: 1.75; color: var(--text-primary);
  margin-bottom: 16px;
}
@media (min-width: 1024px) { .testimonial-card__text { font-size: 17px; } }
.testimonial-card__attribution { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(196,82,42,0.15);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-sans); font-weight: 600; font-size: 14px;
  color: var(--brand-primary); flex-shrink: 0;
}
.testimonial-card__name {
  font-weight: 600; font-size: 14px; color: var(--text-secondary);
}
.testimonial-card__role {
  font-size: 13px; color: var(--text-muted);
}

/* Swiper overrides for mobile */
.swiper-testimonials { display: none; }
@media (max-width: 1023px) {
  .testimonials__grid--desktop { display: none; }
  .swiper-testimonials { display: block; margin-top: 48px; }
  .swiper-testimonials .testimonial-card { margin-bottom: 0; }
  .swiper-pagination-bullet { background: var(--text-muted); }
  .swiper-pagination-bullet-active { background: var(--brand-primary); }
}

/* ===== PRICING ===== */
.pricing__toggle-wrap {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin: 32px 0 48px;
}
.pricing__toggle {
  position: relative; display: inline-flex;
  background: var(--bg-secondary); border-radius: 4px; overflow: hidden;
}
.pricing__toggle-option {
  padding: 10px 20px; font-size: 14px; font-weight: 600;
  color: var(--text-secondary); cursor: pointer;
  transition: all 200ms ease; position: relative; z-index: 1;
  border: none; background: none;
}
.pricing__toggle-option.active {
  color: #FAF7F2; background: var(--brand-primary); border-radius: 4px;
}
.pricing__toggle-badge {
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--accent-forest); margin-left: 8px;
}
.pricing__cards {
  display: grid; gap: 24px;
}
@media (min-width: 1024px) {
  .pricing__cards { grid-template-columns: 1fr 1fr 1fr; align-items: start; }
}
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; padding: 32px; position: relative;
}
.pricing-card--featured {
  border: 2px solid var(--brand-primary);
  box-shadow: 0 8px 32px rgba(196,82,42,0.12);
}
@media (min-width: 1024px) { .pricing-card--featured { transform: scale(1.03); } }
.pricing-card--plus { background: var(--bg-secondary); }
.pricing-card__badge {
  position: absolute; top: -1px; right: 24px;
  background: var(--brand-primary); color: #FAF7F2;
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
  padding: 6px 12px; border-radius: 0 0 4px 4px;
}
.pricing-card__name {
  font-family: var(--font-serif); font-weight: 600; font-size: 22px;
  color: var(--text-primary); margin-bottom: 8px;
}
.pricing-card__price {
  font-family: var(--font-serif); font-weight: 700; font-size: 40px;
  color: var(--text-primary); display: flex; align-items: baseline; gap: 4px;
}
.pricing-card__price-period {
  font-family: var(--font-sans); font-weight: 400; font-size: 14px;
  color: var(--text-muted);
}
.pricing-card__billing-note {
  font-size: 13px; color: var(--text-muted); margin-top: 4px; min-height: 20px;
}
.pricing-card__savings {
  font-size: 13px; color: var(--accent-forest); font-weight: 600;
  margin-top: 4px; display: none;
}
.pricing-card__features {
  margin: 24px 0; display: flex; flex-direction: column; gap: 10px;
}
.pricing-card__feature {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px;
}
.pricing-card__feature--included svg { stroke: var(--accent-forest); width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.pricing-card__feature--included { color: var(--text-primary); }
.pricing-card__feature--excluded svg { stroke: var(--text-muted); width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.pricing-card__feature--excluded { color: var(--text-muted); }
.pricing-card__cta { width: 100%; }
.pricing-card__cta-hint {
  font-size: 13px; color: var(--text-muted); text-align: center; margin-top: 8px;
}
.pricing__reassurance {
  text-align: center; font-size: 14px; color: var(--text-secondary);
  margin-top: 32px;
}

/* ===== INTEGRATIONS ===== */
.integrations__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
  margin-top: 40px;
}
@media (min-width: 768px) { .integrations__grid { grid-template-columns: repeat(4, 1fr); } }
.integration-badge {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; padding: 16px; text-align: center;
  font-size: 14px; color: var(--text-secondary);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.integration-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.integration-badge svg { width: 24px; height: 24px; stroke: var(--accent-forest); }
.integrations__note {
  text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 24px;
}

/* ===== FAQ ===== */
.faq__list {
  max-width: 760px; margin: 48px auto 0;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item__question {
  width: 100%; text-align: left; padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-sans); font-weight: 600; font-size: 17px;
  color: var(--text-primary); cursor: pointer;
  background: none; border: none;
}
.faq-item__question:hover { color: var(--brand-primary); }
.faq-item__icon {
  width: 20px; height: 20px; flex-shrink: 0; margin-left: 16px;
  transition: transform 200ms ease;
}
.faq-item__icon svg { width: 20px; height: 20px; stroke: var(--text-muted); }
.faq-item.active .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer {
  max-height: 0; overflow: hidden;
  transition: max-height 300ms ease;
}
.faq-item__answer-inner {
  padding: 0 0 20px;
  font-size: 15px; color: var(--text-secondary); line-height: 1.7;
}
.faq-item__answer-inner a { color: var(--brand-primary); text-decoration: underline; }

/* ===== TEAM ===== */
.team__grid {
  display: grid; gap: 24px; margin-top: 48px;
}
@media (min-width: 768px) { .team__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .team__grid { grid-template-columns: repeat(4, 1fr); } }
.team-card { text-align: center; }
.team-card__avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(196,82,42,0.15);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-sans); font-weight: 700; font-size: 20px;
  color: var(--brand-primary); margin: 0 auto 16px;
}
.team-card__name {
  font-weight: 700; font-size: 16px; color: var(--text-primary); margin-bottom: 4px;
}
.team-card__role {
  font-size: 14px; color: var(--brand-primary); margin-bottom: 12px;
}
.team-card__bio {
  font-size: 14px; color: var(--text-secondary); line-height: 1.65; text-align: left;
}
.team__attribution {
  text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 40px;
}

/* ===== BLOG PREVIEW ===== */
.blog-preview__grid {
  display: grid; gap: 24px; margin-top: 48px;
}
@media (min-width: 1024px) { .blog-preview__grid { grid-template-columns: 1fr 1fr 1fr; } }
.blog-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.blog-card__image-wrap {
  overflow: hidden; aspect-ratio: 16/9;
}
.blog-card__image {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 400ms ease;
}
.blog-card:hover .blog-card__image { transform: scale(1.04); }
.blog-card__content { padding: 20px; }
.blog-card__category {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--brand-primary);
  background: rgba(232,168,124,0.2); padding: 4px 10px;
  border-radius: 3px; margin-bottom: 12px;
}
.blog-card__title {
  font-weight: 600; font-size: 18px; color: var(--text-primary);
  margin-bottom: 8px; line-height: 1.35;
}
.blog-card__excerpt {
  font-size: 14px; color: var(--text-secondary); line-height: 1.6;
  margin-bottom: 12px;
}
.blog-card__meta {
  font-size: 13px; color: var(--text-muted);
}
.blog-preview__header {
  display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 16px;
}
.blog-preview__all-link {
  font-weight: 600; font-size: 15px; color: var(--brand-primary);
  transition: opacity 150ms;
}
.blog-preview__all-link:hover { opacity: 0.7; }

/* ===== FINAL CTA ===== */
.final-cta { text-align: center; }
.final-cta__title {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(28px, 4vw + 12px, 52px);
  line-height: 1.15; color: #FAF7F2; margin-bottom: 20px;
}
.final-cta__subtitle {
  font-size: 18px; line-height: 1.6;
  color: rgba(250,247,242,0.75);
  max-width: 580px; margin: 0 auto 32px;
}
@media (min-width: 1024px) { .final-cta__subtitle { font-size: 20px; } }
.final-cta__form {
  display: flex; gap: 12px; max-width: 480px; margin: 0 auto;
  flex-direction: column;
}
@media (min-width: 768px) { .final-cta__form { flex-direction: row; } }
.final-cta__input {
  flex: 1; padding: 14px 16px;
  background: rgba(250,247,242,0.08);
  border: 1.5px solid rgba(250,247,242,0.2);
  border-radius: 4px; color: #FAF7F2;
  font-family: var(--font-sans); font-size: 16px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.final-cta__input::placeholder { color: var(--text-muted); }
.final-cta__input:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(196,82,42,0.2);
}
.final-cta__privacy {
  font-size: 13px; color: rgba(250,247,242,0.4); margin-top: 16px;
}
.form-success {
  display: none; font-size: 16px; color: #FAF7F2;
  padding: 20px 0;
}
.form-success svg { display: inline-block; vertical-align: middle; margin-right: 8px; }
.form-error {
  font-size: 13px; color: var(--error); margin-top: 8px; display: none;
}

/* ===== FOOTER ===== */
.footer { background: var(--bg-dark); color: rgba(250,247,242,0.65); padding: 64px 0 0; }
.footer__grid {
  display: grid; gap: 40px;
}
@media (min-width: 768px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }
.footer__col-heading {
  font-weight: 600; font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(250,247,242,0.4);
  margin-bottom: 16px;
}
.footer__brand-desc {
  font-size: 14px; line-height: 1.65; margin-top: 16px; margin-bottom: 20px;
}
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid rgba(250,247,242,0.15);
  transition: border-color 150ms ease;
}
.footer__social a:hover { border-color: rgba(250,247,242,0.5); }
.footer__social svg { width: 18px; height: 18px; stroke: rgba(250,247,242,0.65); }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__link {
  font-size: 14px; color: rgba(250,247,242,0.65);
  transition: color 150ms ease;
}
.footer__link:hover { color: #FAF7F2; }
.footer__newsletter-desc {
  font-size: 14px; line-height: 1.5; margin-bottom: 16px;
}
.footer__newsletter-form {
  display: flex; gap: 8px;
}
.footer__newsletter-input {
  flex: 1; padding: 10px 14px;
  background: rgba(250,247,242,0.06);
  border: 1px solid rgba(250,247,242,0.15);
  border-radius: 4px; color: #FAF7F2;
  font-family: var(--font-sans); font-size: 14px;
}
.footer__newsletter-input::placeholder { color: rgba(250,247,242,0.35); }
.footer__newsletter-input:focus {
  outline: none; border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(196,82,42,0.2);
}
.footer__newsletter-btn {
  padding: 10px 16px; font-size: 14px;
}
.footer__newsletter-success { display: none; font-size: 14px; color: var(--success); }
.footer__newsletter-hint {
  font-size: 12px; color: rgba(250,247,242,0.3); margin-top: 8px;
}
.footer__bottom {
  border-top: 1px solid var(--bg-dark-lighter);
  margin-top: 48px; padding: 20px 0;
  display: flex; flex-wrap: wrap; gap: 8px 24px;
  font-size: 13px; color: rgba(250,247,242,0.4);
  align-items: center; justify-content: space-between;
}
.footer__bottom a { color: rgba(250,247,242,0.4); transition: color 150ms; }
.footer__bottom a:hover { color: #FAF7F2; }
.footer__bottom-legal { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.footer__bottom-attribution { font-weight: 600; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 300; background: var(--bg-dark);
  padding: 20px; display: none;
  border-top: 1px solid var(--bg-dark-lighter);
}
.cookie-banner.visible { display: block; }
.cookie-banner__inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: center; justify-content: space-between;
}
.cookie-banner__text {
  font-size: 14px; color: rgba(250,247,242,0.8); flex: 1; min-width: 200px;
}
.cookie-banner__text a { color: var(--brand-primary); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 12px; }
.cookie-banner__btn {
  padding: 10px 20px; font-size: 14px; font-weight: 600;
  border-radius: 4px; border: none;
}
.cookie-banner__btn--accept {
  background: var(--brand-primary); color: #FAF7F2;
}
.cookie-banner__btn--reject {
  background: transparent; color: rgba(250,247,242,0.6);
  border: 1px solid rgba(250,247,242,0.2);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 50; width: 44px; height: 44px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 50%; box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 300ms ease, transform 200ms ease;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.scroll-top svg { width: 20px; height: 20px; stroke: var(--text-primary); }

/* ===== LEGAL PAGES ===== */
.legal-page { padding-top: 100px; }
.legal-content {
  max-width: 760px; margin: 0 auto;
}
.legal-content h1 {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(28px, 4vw + 12px, 44px);
  margin-bottom: 32px;
}
.legal-content h2 {
  font-family: var(--font-serif); font-weight: 600;
  font-size: 24px; margin-top: 40px; margin-bottom: 16px;
}
.legal-content h3 {
  font-weight: 600; font-size: 18px;
  margin-top: 24px; margin-bottom: 12px;
}
.legal-content p {
  margin-bottom: 16px; font-size: 16px; line-height: 1.7;
  color: var(--text-secondary);
}
.legal-content ul, .legal-content ol {
  margin-bottom: 16px; padding-left: 24px;
}
.legal-content li {
  margin-bottom: 8px; font-size: 16px; line-height: 1.7;
  color: var(--text-secondary); list-style: disc;
}
.legal-content ol li { list-style: decimal; }
.legal-content a { color: var(--brand-primary); text-decoration: underline; }
.legal-content strong { font-weight: 600; color: var(--text-primary); }
.legal-content table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.legal-content th, .legal-content td {
  text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.legal-content th { font-weight: 600; color: var(--text-primary); }
.legal-content td { color: var(--text-secondary); }
.legal-breadcrumb {
  font-size: 14px; color: var(--text-muted); margin-bottom: 24px;
}
.legal-breadcrumb a { color: var(--brand-primary); }

/* ===== BLOG ARTICLE PAGES ===== */
.blog-article { padding-top: 100px; }
.blog-article__header {
  max-width: 760px; margin: 0 auto 40px; text-align: center;
}
.blog-article__category {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--brand-primary);
  background: rgba(232,168,124,0.2); padding: 4px 10px;
  border-radius: 3px; margin-bottom: 16px;
}
.blog-article__title {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(28px, 4vw + 12px, 44px);
  line-height: 1.2; margin-bottom: 16px;
}
.blog-article__meta {
  font-size: 14px; color: var(--text-muted);
}
.blog-article__hero-img {
  width: 100%; max-width: 900px; margin: 0 auto 48px;
  border-radius: 8px; aspect-ratio: 16/9; object-fit: cover;
}
.blog-article__body {
  max-width: 760px; margin: 0 auto;
}
.blog-article__body h2 {
  font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(22px, 2.5vw + 10px, 32px);
  margin-top: 48px; margin-bottom: 20px;
}
.blog-article__body h3 {
  font-weight: 600; font-size: 20px;
  margin-top: 32px; margin-bottom: 12px;
}
.blog-article__body p {
  margin-bottom: 20px; font-size: 17px; line-height: 1.75;
  color: var(--text-primary);
}
.blog-article__body strong { font-weight: 600; }
.blog-article__body a { color: var(--brand-primary); text-decoration: underline; }
.blog-article__body ul, .blog-article__body ol {
  margin-bottom: 20px; padding-left: 24px;
}
.blog-article__body li {
  margin-bottom: 10px; font-size: 17px; line-height: 1.75;
  color: var(--text-primary); list-style: disc;
}
.blog-article__body ol li { list-style: decimal; }
.blog-article__body em { font-style: italic; }
.blog-article__body table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.blog-article__body th, .blog-article__body td {
  text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.blog-article__body th { font-weight: 600; background: var(--bg-secondary); }
.blog-article__body hr {
  border: none; border-top: 1px solid var(--border); margin: 40px 0;
}
.blog-article__author-bio {
  max-width: 760px; margin: 48px auto 0;
  padding-top: 24px; border-top: 1px solid var(--border);
  font-size: 15px; font-style: italic; color: var(--text-muted);
}
.blog-article__back {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 15px; color: var(--brand-primary);
  margin-bottom: 32px;
}

/* ===== BLOG INDEX ===== */
.blog-index { padding-top: 100px; }
.blog-index__grid {
  display: grid; gap: 24px; margin-top: 48px;
}
@media (min-width: 768px) { .blog-index__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .blog-index__grid { grid-template-columns: 1fr 1fr 1fr; } }

/* ===== 404 ===== */
.page-404 {
  padding-top: 100px; text-align: center; min-height: 60vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.page-404 h1 {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(32px, 5vw + 12px, 56px);
  margin-bottom: 20px;
}
.page-404 p { font-size: 18px; color: var(--text-secondary); margin-bottom: 32px; max-width: 480px; }
.page-404__hint { font-size: 14px; color: var(--text-muted); margin-top: 24px; }

/* ===== SECTION HEADER UTILITY ===== */
.section-header { margin-bottom: 8px; }
.section-header--center { text-align: center; }

/* ===== FORMS COMMON ===== */
.form-input {
  width: 100%; padding: 12px 16px;
  background: var(--bg-card);
  border: 1.5px solid var(--border-strong);
  border-radius: 4px;
  font-family: var(--font-sans); font-size: 16px; color: var(--text-primary);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(196,82,42,0.12);
}
.form-input--error { border-color: var(--error); }
.form-input--error:focus { box-shadow: 0 0 0 3px rgba(192,57,43,0.12); }

/* ===== ANIMATIONS (AOS supplement) ===== */
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-animate {
  animation: heroFadeIn 500ms ease forwards;
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding-top: 100px;
  padding-bottom: 0;
  margin-bottom: 0;
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumb__item a {
  color: var(--brand-primary);
  transition: opacity 150ms;
}
.breadcrumb__item a:hover { opacity: 0.8; }
.breadcrumb__item + .breadcrumb__item::before {
  content: '/';
  margin-right: 8px;
  color: var(--text-muted);
}

/* ===== BLOG ARTICLE ADDITIONS ===== */
.blog-article__hero-image {
  max-width: 900px;
  margin: 24px auto 48px;
}
.blog-article__hero-image img {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.blog-article__content {
  max-width: 760px;
  margin: 0 auto;
}
.blog-article__content h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(22px, 2.5vw + 10px, 32px);
  margin-top: 48px;
  margin-bottom: 20px;
}
.blog-article__content h3 {
  font-weight: 600;
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 12px;
}
.blog-article__content p {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-primary);
}
.blog-article__content strong { font-weight: 600; }
.blog-article__content a { color: var(--brand-primary); text-decoration: underline; }
.blog-article__content ul, .blog-article__content ol {
  margin-bottom: 20px;
  padding-left: 24px;
}
.blog-article__content li {
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-primary);
  list-style: disc;
}
.blog-article__content ol li { list-style: decimal; }
.blog-article__content em { font-style: italic; }
.blog-article__reading-time {
  display: inline-block;
  margin-left: 12px;
}
.blog-article__meta > *:not(:first-child)::before {
  content: '\00b7';
  margin: 0 8px;
  color: var(--text-muted);
}
.blog-article__meta > .blog-article__category::before {
  content: none;
}
.blog-article__footer {
  max-width: 760px;
  margin: 48px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-article__author {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.blog-article__author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(196,82,42,0.2);
  color: var(--brand-primary);
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.blog-article__author-info strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}
.blog-article__author-info p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
  max-width: 400px;
}

/* ===== BLOG RELATED ===== */
.blog-related {
  padding-top: 64px;
  padding-bottom: 80px;
}
.blog-related__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 32px;
}
.blog-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
.blog-grid--index {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .blog-grid--index { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .blog-grid--index { grid-template-columns: 1fr 1fr 1fr; }
}

/* Blog card body (used in new blog pages) */
.blog-card__body { padding: 20px; }
.blog-card__body .blog-card__category { margin-bottom: 8px; }
.blog-card__body .blog-card__title { margin-bottom: 8px; }
.blog-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.blog-card:hover .blog-card__image-wrap img { transform: scale(1.04); }
.blog-card__date {
  font-size: 13px;
  color: var(--text-muted);
  display: block;
}
.blog-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-muted);
}
.blog-card__author {
  font-weight: 600;
  color: var(--text-secondary);
}

/* ===== BLOG INDEX HEADER ===== */
.blog-index__header {
  padding-top: 100px;
  padding-bottom: 48px;
}
.blog-index__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(36px, 5vw + 12px, 56px);
  margin-bottom: 12px;
}
.blog-index__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
}

/* ===== ERROR PAGE ===== */
.error-page {
  padding-top: 100px;
  text-align: center;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.error-page__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.error-page__code {
  font-family: var(--font-serif);
  font-size: clamp(80px, 15vw, 160px);
  font-weight: 700;
  color: var(--accent-warm);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 8px;
}
.error-page__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(28px, 4vw + 10px, 44px);
  margin-bottom: 16px;
}
.error-page__text {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.error-page__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== LEGAL PAGE TABLE ===== */
.legal-page__table-wrap {
  overflow-x: auto;
  margin: 24px 0;
}
.legal-page__table {
  width: 100%;
  border-collapse: collapse;
}
.legal-page__table th,
.legal-page__table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.legal-page__table th {
  font-weight: 600;
  background: var(--bg-secondary);
  color: var(--text-primary);
}
.legal-page__table td {
  color: var(--text-secondary);
}
.legal-page__table code {
  font-family: monospace;
  font-size: 13px;
  background: var(--bg-secondary);
  padding: 2px 6px;
  border-radius: 3px;
}
