/* ─── DESIGN TOKENS ─── */
:root {
  /* Palette */
  --bordeaux: #7b2d42;
  --bordeaux-dark: #5e2234;
  --bordeaux-light: #9e4a62;
  --bordeaux-soft: rgba(123, 45, 66, 0.06);
  --bordeaux-mid: rgba(123, 45, 66, 0.12);
  --navy: #1a2e4a;
  --navy-deep: #0f1d30;
  --navy-soft: rgba(26, 46, 74, 0.05);

  /* Surfaces */
  --bg: #eae0cc;
  --bg-warm: #dfd3b6;
  --surface: #faf6ee;
  --surface-elevated: #fffdf5;

  /* Text */
  --text: #1c1410;
  --text-secondary: #5c4e42;
  --text-tertiary: #9c8e84;
  --text-muted: #bdb2a8;

  /* Borders */
  --border: rgba(28, 20, 16, 0.08);
  --border-soft: rgba(28, 20, 16, 0.04);
  --border-hover: rgba(123, 45, 66, 0.2);

  /* Type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Jost", system-ui, sans-serif;

  /* Scale */
  --text-xs: 0.7rem;
  --text-sm: 0.82rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.6rem;
  --text-3xl: 2rem;
  --text-4xl: 2.6rem;
  --text-5xl: 3.4rem;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* Misc */
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 4px rgba(80, 40, 10, 0.07);
  --shadow-md: 0 4px 16px rgba(80, 40, 10, 0.09);
  --shadow-lg: 0 12px 40px rgba(80, 40, 10, 0.11);
  --shadow-xl: 0 20px 60px rgba(80, 40, 10, 0.13);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: rgba(123, 45, 66, 0.15);
  color: var(--navy);
}

/* ─── PAGE SYSTEM ─── */
.page {
  display: none;
}
.page.active {
  display: block;
  animation: pageFadeIn 0.2s ease;
}
@keyframes pageFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ─── ENTRY ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-d1 {
  transition-delay: 0.08s;
}
.reveal-d2 {
  transition-delay: 0.16s;
}
.reveal-d3 {
  transition-delay: 0.24s;
}
.reveal-d4 {
  transition-delay: 0.32s;
}
.reveal-d5 {
  transition-delay: 0.4s;
}

/* ─── HEADER ─── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(254, 253, 251, 0.92);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
header.scrolled {
  box-shadow: 0 1px 12px rgba(26, 46, 74, 0.06);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-8);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}
.logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  letter-spacing: 0.01em;
  line-height: 1.2;
  flex-shrink: 0;
  transition: color var(--transition);
  text-decoration: none;
}
.logo:hover {
  color: var(--bordeaux);
}
.logo-sub {
  display: block;
  font-size: var(--text-xs);
  font-family: var(--sans);
  font-weight: 400;
  color: var(--text-tertiary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.desktop-nav a {
  font-family: var(--sans);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
  transition:
    color var(--transition),
    background var(--transition);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
}
.desktop-nav a:hover {
  color: var(--bordeaux);
  background: var(--bordeaux-soft);
}
.desktop-nav a.active {
  color: var(--bordeaux);
}
.desktop-nav a.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--bordeaux);
  border-radius: 1px;
}
.nav-cta {
  font-size: var(--text-sm) !important;
  background: var(--bordeaux) !important;
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: var(--radius) !important;
  margin-left: var(--space-2);
  letter-spacing: 0.03em !important;
}
.nav-cta:hover {
  background: var(--bordeaux-dark) !important;
}
.nav-cta::after {
  display: none !important;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  color: var(--text);
  font-size: 1.3rem;
  line-height: 1;
}

/* ─── LAYOUT ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-8);
}
.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-8);
}
.section {
  padding: var(--space-24) 0;
}
.section-sm {
  padding: var(--space-16) 0;
}

/* ─── TYPOGRAPHY ─── */
h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, var(--text-5xl));
  font-weight: 400;
  line-height: 1.12;
  color: var(--navy);
  letter-spacing: -0.02em;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, var(--text-3xl));
  font-weight: 500;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: var(--space-6);
  letter-spacing: -0.01em;
}
h3 {
  font-family: var(--sans);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-3);
  letter-spacing: 0.01em;
}
p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}
p:last-child {
  margin-bottom: 0;
}

.label {
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin-bottom: var(--space-3);
  display: block;
}
.lead {
  font-family: var(--serif);
  font-size: var(--text-xl);
  font-weight: 400;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-6);
}

/* ─── DIVIDER ─── */
.divider {
  width: 40px;
  height: 2px;
  background: var(--bordeaux);
  margin: var(--space-6) 0;
  border-radius: 1px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--sans);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  border-radius: var(--radius);
  padding: 12px 28px;
  line-height: 1;
}
.btn-primary {
  background: var(--bordeaux);
  color: #fff;
  box-shadow: 0 1px 3px rgba(123, 45, 66, 0.2);
}
.btn-primary:hover {
  background: var(--bordeaux-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(123, 45, 66, 0.25);
}
.btn-outline {
  background: transparent;
  color: var(--bordeaux);
  border: 1.5px solid var(--bordeaux);
  padding: 11px 27px;
}
.btn-outline:hover {
  background: var(--bordeaux-soft);
}
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: var(--space-2) 0;
  font-weight: 400;
}
.btn-ghost::after {
  content: " →";
  transition: transform var(--transition);
  display: inline-block;
}
.btn-ghost:hover {
  color: var(--bordeaux);
}
.btn-ghost:hover::after {
  transform: translateX(3px);
}
.btn-white {
  background: #fff;
  color: var(--bordeaux);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.btn-white-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  padding: 11px 27px;
}
.btn-white-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  background: var(--surface);
  padding: var(--space-24) 0 var(--space-20);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  right: -8%;
  top: -25%;
  width: 60%;
  height: 150%;
  background: radial-gradient(
    ellipse at 55% 45%,
    rgba(123, 45, 66, 0.05) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  left: -10%;
  bottom: -30%;
  width: 40%;
  height: 60%;
  background: radial-gradient(
    ellipse at center,
    rgba(26, 46, 74, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 {
  margin-bottom: var(--space-6);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-10);
  max-width: 540px;
}
.hero-actions {
  display: flex;
  gap: var(--space-4);
  align-items: center;
  flex-wrap: wrap;
}

/* Hero Cards */
.hero-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.hero-card {
  background: var(--surface-elevated);
  border: 1px solid rgba(28, 20, 16, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-8);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--space-4);
  box-shadow: var(--shadow-sm);
}
.hero-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--bordeaux);
  opacity: 0;
  transition: opacity var(--transition);
}
.hero-card:hover {
  border-color: var(--border-hover);
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}
.hero-card:hover::before {
  opacity: 1;
}
.hero-card h3 {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: var(--space-1);
}
.hero-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}
.hero-card .arrow {
  font-size: 1.1rem;
  color: var(--bordeaux);
  opacity: 0;
  transition: all var(--transition);
  transform: translateX(-4px);
}
.hero-card:hover .arrow {
  opacity: 1;
  transform: none;
}

/* ─── CREDENTIAL STRIP ─── */
.strip {
  background: var(--navy);
  padding: 18px 0;
  overflow: hidden;
}
.strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-8);
  display: flex;
  gap: var(--space-12);
  align-items: center;
  flex-wrap: wrap;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 1);
  white-space: nowrap;
}
.strip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--bordeaux-light);
  flex-shrink: 0;
}

/* ─── ABOUT PREVIEW ─── */
.about-preview {
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-16);
  align-items: start;
}
.quote-block {
  border-left: 3px solid var(--bordeaux);
  padding: var(--space-6) var(--space-8);
  margin: var(--space-8) 0;
  background: var(--bordeaux-light);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.quote-block p {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(255, 255, 255, 1);
  margin: 0 0 10px 0;
  line-height: 1.6;
  font-weight: 700;
}
.quote-block i {
  color: rgba(255, 255, 255, 1);
  font-size: 1rem;
}
.feature-list {
  list-style: none;
}
.feature-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  line-height: 1.5;
}
.feature-list li::before {
  content: "—";
  color: var(--bordeaux);
  flex-shrink: 0;
  font-weight: 400;
}

/* ─── SERVICE CARDS ─── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.card {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-10) var(--space-8);
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--bordeaux);
  transform: scaleX(0);
  transition: transform var(--transition-slow);
  transform-origin: left;
}
.card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.card:hover::after {
  transform: scaleX(1);
}
.card-icon {
  width: 44px;
  height: 44px;
  background: var(--bordeaux-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  color: var(--bordeaux);
  font-size: 1.2rem;
}
.card h3 {
  color: var(--navy);
  font-size: 1.05rem;
}
.card p {
  font-size: 0.92rem;
  line-height: 1.7;
}
.card-link {
  font-size: 0.78rem;
  color: var(--bordeaux);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: var(--space-4);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.card:hover .card-link {
  gap: 10px;
}

/* ─── NEWS GRID ─── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.news-item {
  padding: var(--space-6) 0;
  border-top: 2px solid var(--bordeaux);
  transition: border-color var(--transition);
}
.news-item:nth-child(2) {
  border-top-color: var(--bordeaux-mid);
}
.news-item:nth-child(3) {
  border-top-color: var(--border);
}
.news-year {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--bordeaux);
  letter-spacing: 0.06em;
}
.news-title {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  margin: var(--space-2) 0 var(--space-1);
  line-height: 1.4;
}
.news-meta {
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--bordeaux);
  position: relative;
  overflow: hidden;
  padding: var(--space-20) 0;
}
.cta-banner::before {
  content: "";
  position: absolute;
  right: -5%;
  top: -40%;
  width: 50%;
  height: 180%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2rem);
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}
.cta-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-8);
}

/* ══════════════════════════════════════════════
   PAGE HERO (Inner pages)
══════════════════════════════════════════════ */
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: var(--space-16) 0 var(--space-12);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 100%;
  background: radial-gradient(
    ellipse at 80% 60%,
    rgba(123, 45, 66, 0.2) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.page-hero .label {
  color: rgba(255, 255, 255, 0.55);
}
.page-hero h1 {
  color: #fff;
  margin-bottom: var(--space-4);
}
.page-hero .lead {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0;
}

/* Breadcrumb */
.breadcrumb {
  padding-bottom: var(--space-4);
  font-size: var(--text-xs);
  display: flex;
  gap: 8px;
  align-items: center;
  letter-spacing: 0.02em;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  text-decoration: none;
  transition: color var(--transition);
}
.breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.4);
}
.breadcrumb .current {
  color: rgba(255, 255, 255, 0.7);
}

/* ─── FEATURE GRID (2-col) ─── */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

/* ─── INFO BOX ─── */
.info-box {
  background: var(--surface-elevated);
  border: 1px solid rgba(123, 45, 66, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin: 0 0 var(--space-6) 0;
}
.info-box h3 {
  color: var(--bordeaux-dark);
}

/* ─── HIGHLIGHT ─── */
.highlight {
  background: var(--bordeaux-soft);
  border-left: 3px solid var(--bordeaux);
  padding: var(--space-6) var(--space-8);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: var(--space-8) 0;
}
.highlight p {
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  margin: 0;
  line-height: 1.65;
}

/* ─── NOTE BANNER ─── */
.note-banner {
  background: var(--navy-soft);
  border: 1px solid rgba(26, 46, 74, 0.12);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 0.88rem;
  color: var(--navy);
  display: flex;
  gap: 12px;
  align-items: center;
  margin: var(--space-6) 0;
}
.note-banner .note-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

/* ─── TIMELINE ─── */
.timeline {
  position: relative;
  padding-left: 36px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--bordeaux), var(--border));
}
.timeline-item {
  position: relative;
  margin-bottom: var(--space-10);
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bordeaux);
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 2px var(--bordeaux);
}
.timeline-year {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--bordeaux);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-1);
}
.timeline-title {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
  margin-bottom: var(--space-1);
}
.timeline-desc {
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

/* ─── CREDENTIAL LIST ─── */
.credential-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.credential-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: 13px var(--space-4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.4;
  transition: border-color var(--transition);
}
.credential-list li:hover {
  border-color: var(--border-hover);
}
.credential-list li::before {
  content: "✓";
  color: var(--bordeaux);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── FORMAT GRID (Supervision) ─── */
.format-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
.format-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  background: var(--surface);
  transition: all var(--transition);
}
.format-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-sm);
}
.format-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--bordeaux-soft);
  color: var(--bordeaux);
  margin-bottom: var(--space-3);
}

/* ─── PRICING ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all var(--transition);
}
.pricing-card:hover {
  border-color: var(--border-hover);
}
.pricing-card.featured {
  border-color: var(--bordeaux);
  border-width: 2px;
}
.price-tag {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}
.price-unit {
  font-size: 0.78rem;
  color: var(--text-tertiary);
  margin-top: var(--space-1);
}

/* ─── ACCORDION ─── */
.accordion-item {
  border-bottom: 1px solid var(--border);
}
.accordion-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: var(--space-6) 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
}
.accordion-trigger:hover {
  color: var(--bordeaux);
}
.accordion-trigger .icon {
  color: var(--bordeaux);
  transition: transform var(--transition);
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
}
.accordion-trigger.open .icon {
  transform: rotate(45deg);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.accordion-body.open {
  max-height: 400px;
  padding-bottom: var(--space-6);
}

/* ─── PUBLICATION FILTER ─── */
.pub-filter {
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: none;
  color: var(--text-secondary);
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: all var(--transition);
}
.pub-filter:hover {
  border-color: var(--bordeaux-mid);
  color: var(--bordeaux);
}
.pub-filter.active {
  background: var(--bordeaux) !important;
  color: #fff !important;
  border-color: var(--bordeaux) !important;
}
.pub-section {
  margin-bottom: var(--space-12);
}
.pub-item {
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--border-soft);
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: var(--space-4);
  align-items: start;
  transition: background var(--transition);
}
.pub-item:hover {
  background: var(--bordeaux-soft);
  margin: 0 calc(-1 * var(--space-4));
  padding-left: var(--space-4);
  padding-right: var(--space-4);
  border-radius: var(--radius);
}
.pub-year {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--bordeaux);
  letter-spacing: 0.05em;
  padding-top: 4px;
}
.pub-title {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: var(--space-1);
}
.pub-meta {
  font-size: 0.8rem;
  color: var(--text-tertiary);
}
.pub-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 2px;
  margin-right: 8px;
  vertical-align: middle;
}
.tag-book {
  background: rgba(26, 46, 74, 0.08);
  color: var(--navy);
}
.tag-article {
  background: rgba(123, 45, 66, 0.08);
  color: var(--bordeaux);
}
.tag-pdf {
  background: rgba(6, 78, 59, 0.08);
  color: #065f46;
}

/* ─── PUBLICATION TABLE (dynamic) ─── */
.pub-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  align-items: flex-end;
}
.pub-filter-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pub-filter-group label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pub-filter-group select {
  font-family: var(--sans);
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  color: var(--text);
  background: var(--surface);
  min-width: 200px;
  cursor: pointer;
  transition: border-color var(--transition);
}
.pub-filter-group select:focus {
  outline: none;
  border-color: var(--bordeaux);
}
.pub-result-count {
  font-family: var(--sans);
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  margin-bottom: var(--space-4);
}
.pub-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.pub-table thead th {
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: left;
  position: sticky;
  top: 0;
  z-index: 10;
}
.pub-table thead th:first-child {
  width: 70px;
  border-radius: var(--radius) 0 0 0;
}
.pub-table thead th:last-child {
  width: 100px;
  text-align: center;
  border-radius: 0 var(--radius) 0 0;
}
.pub-table tbody tr {
  transition: background 0.15s;
  background: var(--surface-elevated);
}
.pub-table tbody tr:hover {
  background: var(--bordeaux-soft);
}
.pub-table tbody tr:nth-child(even) {
  background: var(--surface);
}
.pub-table tbody tr:nth-child(even):hover {
  background: var(--bordeaux-soft);
}
.pub-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border-soft);
  vertical-align: top;
  font-size: var(--text-sm);
  line-height: 1.55;
}
.pub-table .year-cell {
  font-weight: 600;
  color: var(--bordeaux);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  font-family: var(--sans);
}
.pub-table .content-cell {
  line-height: 1.55;
}
.pub-table .content-cell .sub-entries {
  margin-top: 6px;
  padding-left: 16px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  border-left: 2px solid var(--border);
  padding-top: 4px;
  padding-bottom: 2px;
}
.pub-table .content-cell .sub-entries a {
  color: var(--bordeaux);
  text-decoration: none;
}
.pub-table .content-cell .sub-entries a:hover {
  text-decoration: underline;
}
.pub-table .category-badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.62rem;
  padding: 2px 8px;
  border-radius: 2px;
  font-weight: 700;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pub-table .badge-buch {
  background: rgba(26, 46, 74, 0.1);
  color: var(--navy);
}
.pub-table .badge-artikel {
  background: rgba(123, 45, 66, 0.1);
  color: var(--bordeaux);
}
.pub-table .badge-vortrag {
  background: rgba(139, 90, 43, 0.1);
  color: #6b4a1e;
}
.pub-table .download-cell {
  text-align: center;
  vertical-align: middle;
}
.pub-table .download-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  background: var(--bordeaux);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  transition: background var(--transition);
  white-space: nowrap;
}
.pub-table .download-btn:hover {
  background: var(--bordeaux-dark);
}
.pub-table .download-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.pub-no-results {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-tertiary);
  font-family: var(--sans);
  font-size: var(--text-base);
}
.pub-filters-new {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.pub-search-wrap {
  position: relative;
}
.pub-search-wrap input {
  width: 100%;
  padding: 0.65rem 1rem 0.65rem 2.4rem;
  font: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-card, #fff);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  box-sizing: border-box;
}
.pub-search-wrap::before {
  content: "🔍";
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.82rem;
  pointer-events: none;
}
.pub-search-wrap input:focus {
  outline: none;
  border-color: var(--bordeaux);
  box-shadow: 0 0 0 3px rgba(123, 45, 66, 0.12);
}
.pub-cat-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  overflow-x: auto;
}
.pub-cat-tab {
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  padding: 0.55rem 1.1rem;
  font: inherit;
  font-size: 0.88rem;
  color: var(--text-muted, #666);
  position: relative;
  transition: color 0.15s;
}
.pub-cat-tab:hover {
  color: var(--bordeaux);
}
.pub-cat-tab.active {
  color: var(--bordeaux);
  font-weight: 600;
}
.pub-cat-tab.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--bordeaux);
}
.pub-tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.4em;
  padding: 0 0.3em;
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--bordeaux-soft);
  color: var(--bordeaux);
  border-radius: 10px;
  margin-left: 0.3rem;
  vertical-align: middle;
}
.pub-cat-tab.active .pub-tab-count {
  background: var(--bordeaux);
  color: #fff;
}
.pub-secondary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.pub-pill-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pub-pill-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted, #888);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pub-pills {
  display: flex;
  gap: 0.3rem;
}
.pub-pill {
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 0.2rem 0.7rem;
  font: inherit;
  font-size: 0.8rem;
  cursor: pointer;
  color: var(--text-muted, #666);
  transition: all 0.15s;
}
.pub-pill:hover {
  border-color: var(--bordeaux);
  color: var(--bordeaux);
}
.pub-pill.active {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
  color: #fff;
}
.pub-toggle-label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--text-muted, #666);
  user-select: none;
}
.pub-toggle-switch {
  position: relative;
  display: inline-block;
}
.pub-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.pub-toggle-track {
  display: block;
  width: 34px;
  height: 19px;
  background: var(--border);
  border-radius: 10px;
  transition: background 0.2s;
  position: relative;
}
.pub-toggle-track::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.pub-toggle-switch input:checked + .pub-toggle-track {
  background: var(--bordeaux);
}
.pub-toggle-switch input:checked + .pub-toggle-track::after {
  transform: translateX(15px);
}
@media (max-width: 768px) {
  .pub-filters {
    flex-direction: column;
  }
  .pub-filter-group select {
    min-width: 100%;
  }
  .pub-table td,
  .pub-table th {
    padding: 8px 10px;
    font-size: 0.8rem;
  }
  .pub-table thead th:first-child {
    width: 50px;
  }
  .pub-table thead th:last-child {
    width: 70px;
  }
  .pub-table .download-btn {
    padding: 4px 8px;
    font-size: 0.68rem;
  }
  .pub-table .category-badge {
    font-size: 0.58rem;
  }
}

/* ─── NETWORK GRID ─── */
.network-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
.network-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all var(--transition);
}
.network-item:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.network-item h3 {
  font-size: 0.92rem;
  margin-bottom: var(--space-2);
  color: var(--navy);
}
.network-item p {
  font-size: 0.84rem;
}
a.network-item {
  text-decoration: none;
  color: inherit;
  display: block;
}
.ext-link {
  font-size: 0.75rem;
  color: var(--bordeaux);
  margin-top: 10px;
  display: block;
  cursor: pointer;
  font-weight: 500;
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
}
.contact-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-top: var(--space-6);
  margin-bottom: var(--space-2);
  display: block;
}
.form-group {
  margin-bottom: var(--space-6);
}
.form-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
  display: block;
  margin-bottom: var(--space-2);
}
.form-control {
  width: 100%;
  padding: 11px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--bordeaux);
  box-shadow: 0 0 0 3px rgba(123, 45, 66, 0.08);
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--navy-deep);
  color: #fff;
  padding: var(--space-16) 0 var(--space-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: var(--space-3);
  font-weight: 400;
}
.footer-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}
.footer-heading {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-4);
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  cursor: pointer;
  transition: color var(--transition);
}
.footer-links a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.footer-copy {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.55);
}
.footer-legal {
  display: flex;
  gap: var(--space-6);
}
.footer-legal a {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ═══════════════════════════════════════
   MOBILE NAV
═══════════════════════════════════════ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--surface);
  z-index: 200;
  flex-direction: column;
  padding: var(--space-20) var(--space-8) var(--space-10);
  gap: var(--space-1);
  overflow-y: auto;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  font-size: 1.5rem;
  font-family: var(--serif);
  color: var(--navy);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  cursor: pointer;
  transition: color var(--transition);
}
.mobile-nav a:hover {
  color: var(--bordeaux);
}
.mobile-close {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--text);
  padding: var(--space-2);
  line-height: 1;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }

  .hero-grid,
  .about-grid,
  .feature-grid,
  .cards-grid,
  .contact-grid,
  .footer-grid,
  .pricing-grid,
  .network-grid,
  .format-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: var(--space-16) 0 var(--space-12);
  }
  .hero-grid {
    gap: var(--space-10);
  }
  .hero::before {
    display: none;
  }

  h1 {
    font-size: clamp(2rem, 6vw, 2.6rem);
  }
  .section {
    padding: var(--space-16) 0;
  }
  .section-sm {
    padding: var(--space-12) 0;
  }

  .container,
  .container-narrow {
    padding: 0 var(--space-6);
  }
  .header-inner {
    padding: 0 var(--space-6);
  }

  .feature-grid {
    gap: var(--space-10);
  }
  .strip-inner {
    gap: var(--space-6);
  }
  .footer-grid {
    gap: var(--space-8);
  }
}

@media (max-width: 600px) {
  .header-inner {
    height: 60px;
  }
  .logo {
    font-size: 1rem;
  }
  .logo-sub {
    font-size: 0.6rem;
  }
  .cards-grid {
    gap: var(--space-4);
  }
  .card {
    padding: var(--space-6);
  }
  .format-grid {
    grid-template-columns: 1fr;
  }
  .flow-steps {
    gap: var(--space-2);
  }
  .page-hero .lead {
    font-size: var(--text-base);
  }
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(123, 45, 66, 0.2);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(123, 45, 66, 0.35);
}

/* ─── SKIP LINK ─── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--bordeaux);
  color: #fff;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  z-index: 1000;
  text-decoration: none;
}
.skip-link:focus {
  top: var(--space-2);
}

/* ─── FOCUS VISIBLE ─── */
:focus-visible {
  outline: 2px solid var(--bordeaux);
  outline-offset: 2px;
}
button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
  outline: none;
}

/* ─── TOUCH FEEDBACK ─── */
@media (hover: none) and (pointer: coarse) {
  .hero-card:active {
    transform: scale(0.98);
  }
  .card:active {
    transform: scale(0.98);
    box-shadow: var(--shadow-sm);
  }
  .btn:active {
    transform: scale(0.97);
  }
  .network-item:active {
    transform: scale(0.98);
  }
  .format-card:active {
    transform: scale(0.98);
  }
  .credential-list li:active {
    background: var(--bordeaux-soft);
  }
}

/* ─── UTILITY CLASSES (replacing inline styles) ─── */
.mt-4 {
  margin-top: var(--space-4);
}
.mt-6 {
  margin-top: var(--space-6);
}
.mt-8 {
  margin-top: var(--space-8);
}
.mb-0 {
  margin-bottom: 0;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.text-center {
  text-align: center;
}
.w-full {
  width: 100%;
}
.justify-center {
  justify-content: center;
}
.bg-surface {
  background: var(--surface);
}
.border-top {
  border-top: 1px solid var(--border);
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-10);
  flex-wrap: wrap;
  gap: var(--space-4);
}
.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-lead {
  margin-bottom: 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-info-box {
  margin-bottom: 0;
  background: var(--bg-warm);
}
.pricing-card-inner {
  margin-top: var(--space-4);
  padding: 20px;
}
.format-grid-single {
  grid-template-columns: 1fr;
}
.feature-grid-spaced {
  margin-top: var(--space-12);
}
.footer-address {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.25);
  margin-top: var(--space-4);
}
.praxis-address {
  font-size: 0.88rem;
}
.method-box {
  margin-top: var(--space-8);
  padding: var(--space-6);
  border-left: 3px solid var(--bordeaux);
  background: var(--surface);
  border-radius: var(--radius);
}
.method-box h3 {
  margin-bottom: var(--space-3);
  color: var(--navy);
}
.sidebar-box {
  margin-top: var(--space-6);
  padding: var(--space-6);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.sidebar-box h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
  color: var(--navy);
}
.supervision-info {
  font-size: 16px;
  margin-top: var(--space-6);
}
.format-badge-block {
  margin-bottom: var(--space-3);
  display: inline-block;
}
.pricing-heading {
  font-size: 1.3rem;
  margin-bottom: var(--space-3);
}
.current-offers-text {
  font-size: 1rem;
  margin-top: var(--space-2);
}
.offer-list-spaced {
  margin-top: var(--space-4);
}
.contact-dsgvo {
  margin-bottom: var(--space-6);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.dsgvo-checkbox {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--bordeaux);
}
.dsgvo-label {
  font-size: 0.78rem;
  color: var(--text-tertiary);
  cursor: pointer;
}
.form-hint {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  margin-top: var(--space-3);
  text-align: center;
}
.btn-full {
  width: 100%;
  justify-content: center;
  padding: 14px;
}
.photo-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.profile-photo {
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.supervision-size-info {
  font-size: 120%;
}
a.card,
a.hero-card {
  text-decoration: none;
  color: inherit;
  display: block;
}
.link-bordeaux {
  color: var(--bordeaux);
}
.link-bordeaux-underline {
  color: var(--bordeaux);
  text-decoration: underline;
}
.email-highlight {
  color: var(--bordeaux);
  font-weight: 500;
}
.format-card h3 {
  font-size: 0.88rem;
  margin-bottom: var(--space-1);
}
.format-card p {
  font-size: 0.82rem;
}
.pricing-note {
  font-size: 0.8rem;
  margin-top: var(--space-3);
  color: var(--text-tertiary);
}

/* ─── NOSCRIPT ─── */
.noscript-banner {
  background: var(--bordeaux);
  color: #fff;
  padding: var(--space-4) var(--space-8);
  text-align: center;
  font-family: var(--sans);
  font-size: var(--text-sm);
}

/* ─── FORM VALIDATION ─── */
.form-control:invalid:not(:placeholder-shown) {
  border-color: #c53030;
}
.form-control:valid:not(:placeholder-shown) {
  border-color: #2f855a;
}
.form-success {
  background: rgba(47, 133, 90, 0.08);
  border: 1px solid rgba(47, 133, 90, 0.2);
  border-radius: var(--radius);
  padding: var(--space-6);
  text-align: center;
  color: #2f855a;
  font-weight: 500;
  display: none;
}
.form-success.visible {
  display: block;
}
.form-error {
  font-size: 0.78rem;
  color: #c53030;
  margin-top: var(--space-1);
  display: none;
}
.form-error.visible {
  display: block;
}

/* ─── DARK MODE ─── */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1a1612;
    --bg-warm: #231e18;
    --surface: #2a2420;
    --surface-elevated: #342d28;
    --text: #e8e0d6;
    --text-secondary: #bfb5a8;
    --text-tertiary: #8a7d73;
    --text-muted: #6e6259;
    --navy: #c8d4e4;
    --navy-deep: #0a0e14;
    --border: rgba(255, 255, 255, 0.08);
    --border-soft: rgba(255, 255, 255, 0.04);
    --border-hover: rgba(158, 74, 98, 0.4);
    --bordeaux-light: #c87a90;
    --bordeaux-soft: rgba(123, 45, 66, 0.15);
    --bordeaux-mid: rgba(123, 45, 66, 0.25);
    --navy-soft: rgba(200, 212, 228, 0.06);
    --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.35);
  }
  header {
    background: rgba(42, 36, 32, 0.92);
  }
  ::selection {
    background: rgba(123, 45, 66, 0.3);
    color: #e8e0d6;
  }
  ::-webkit-scrollbar-track {
    background: var(--bg);
  }
  ::-webkit-scrollbar-thumb {
    background: rgba(123, 45, 66, 0.35);
  }
  .strip {
    background: #0d1520;
  }
  .hero::before,
  .hero::after {
    opacity: 0.5;
  }
  .page-hero {
    background: #0d1520;
  }
  .cta-banner {
    background: var(--bordeaux-dark);
  }
  footer {
    background: #0a0e14;
  }
  .pub-table thead th {
    background: #0d1520;
  }
  img {
    filter: brightness(0.92);
  }
}
