﻿:root {
  --blue: #102f5f;
  --blue-2: #1f5f9f;
  --light-blue: #dcebf5;
  --off-white: #fbf7ef;
  --warm: #efe3d2;
  --warm-2: #f4eadc;
  --ink: #1d2633;
  --muted: #627085;
  --line: rgba(16, 47, 95, 0.14);
  --shadow: 0 24px 70px rgba(16, 47, 95, 0.13);
  --font-ui: "Inter", system-ui, -apple-system, sans-serif;
}

/* Acting page */
.acting-page .acting-hero {
  background: #fbf6eb;
}

.acting-hero-media,
.showreel-thumb {
  position: relative;
  overflow: hidden;
  background: #eee;
}

.acting-hero-media {
  min-height: 460px;
  border-radius: 32px 32px 86px 32px;
  box-shadow: 0 28px 80px rgba(11, 50, 104, 0.12);
}

.acting-hero-media img,
.acting-profile-photo,
.acting-gallery-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.acting-hero-media img {
  position: absolute;
  inset: 0;
}

.acting-showreel,
.acting-profile,
.acting-testimonials {
  background: #fff;
}

.acting-credits,
.acting-gallery {
  background: #fbf6eb;
}

.showreel-featured,
.showreel-card,
.credit-column {
  height: 100%;
  border: 1px solid rgba(11, 50, 104, 0.1);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}

.showreel-thumb {
  height: 220px;
}

.showreel-thumb-large {
  height: 430px;
}

.showreel-thumb video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.showreel-thumb img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showreel-thumb.is-ready video {
  opacity: 1;
}

.showreel-thumb::before {
  content: "Showreel";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(11, 50, 104, 0.72);
  background: linear-gradient(135deg, rgba(220, 238, 250, 0.92), rgba(251, 246, 235, 0.92));
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.showreel-placeholder::after {
  content: "Binnenkort";
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 2;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  color: var(--ck-blue);
  background: rgba(255, 255, 255, 0.9);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.showreel-thumb .media-control,
.acting-hero-media .media-control {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: auto;
}

.showreel-body,
.showreel-card h3,
.credit-column {
  padding: 1.5rem;
}

.showreel-card h3,
.showreel-body h3,
.credit-column h3 {
  color: var(--ck-blue-dark);
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 800;
}

.credit-column ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.credit-column li {
  padding: 0.85rem 0;
  border-top: 1px solid rgba(11, 50, 104, 0.1);
  color: rgba(11, 50, 104, 0.72);
}

.acting-profile-photo {
  min-height: 520px;
  border-radius: 28px 28px 72px 28px;
}

.acting-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.acting-labels span {
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(11, 50, 104, 0.12);
  border-radius: 999px;
  color: var(--ck-blue);
  background: rgba(220, 238, 250, 0.42);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.acting-gallery-photo {
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(11, 50, 104, 0.08);
}

.acting-gallery-item {
  margin: 0;
}

.acting-gallery-item figcaption,
.gallery-caption {
  margin-top: 0.75rem;
  color: rgba(11, 50, 104, 0.62);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.acting-testimonials .col-lg-6 .voice-quote blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.2;
}

@media (max-width: 991.98px) {
  .acting-hero-media {
    min-height: 380px;
  }

  .showreel-thumb-large {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .acting-hero-media {
    min-height: 320px;
    border-radius: 24px 24px 56px 24px;
  }

  .acting-profile-photo {
    min-height: 380px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--off-white);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  color: var(--blue-2);
}

.site-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.site-section-sm {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.site-section-lg {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.bg-cream {
  background: #fbf6eb;
}

.bg-white {
  background: #fff;
}

.navbar {
  min-height: 64px;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.site-navbar {
  background-color: #f5f2ed;
  border-bottom: none;
  box-shadow: none;
  transition: box-shadow 0.25s ease;
}

.site-navbar.is-scrolled {
  box-shadow: none;
}

.navbar {
  border-bottom: none !important;
  box-shadow: none !important;
  background-color: #f5f2ed;
}

.navbar::before,
.navbar::after {
  display: none !important;
  content: none !important;
}

header,
.header-wrapper,
.nav-wrapper {
  border-bottom: none !important;
  box-shadow: none !important;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-weight: 800;
}

.navbar-brand span:not(.brand-mark) {
  font-size: 1rem;
  font-weight: 600;
}

.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 0.78rem;
}

.navbar-nav {
  gap: 1.5rem;
}

.nav-link {
  color: var(--blue);
  font-weight: 650;
  font-size: 0.95rem;
  padding: 0;
}

.navbar .btn {
  padding: 0.45rem 1rem;
  font-size: 0.9rem;
  border-radius: 999px;
}

.btn {
  border-radius: 999px;
  padding: 0.86rem 1.4rem;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

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

.btn-lg {
  padding: 1rem 1.7rem;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:focus {
  background: var(--blue);
  border-color: var(--blue);
}

.hero-actions .btn-primary {
  box-shadow: 0 12px 30px rgba(12, 45, 89, 0.18);
}

.btn-outline-primary {
  color: var(--blue);
  border-color: rgba(16, 47, 95, 0.34);
}

.hero-actions .btn-outline-primary {
  border-width: 1.5px;
}

.btn-outline-primary:hover {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.btn-primary-soft {
  color: var(--blue);
  background: var(--light-blue);
  border-color: transparent;
}

.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #f5f2ed;
  background-color: #f5f2ed;
}

.hero-overlay {
  width: 100%;
}

.hero-copy {
  max-width: 720px;
}

.section-heading h2,
section h2 {
  color: var(--blue);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-title {
  max-width: 720px;
  color: var(--blue);
  font-size: clamp(3rem, 6vw, 6.2rem);
  font-weight: 850;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

section h2 {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
}

.section-intro {
  color: var(--muted);
  font-size: 1.16rem;
  max-width: 720px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-eyebrow {
  margin-bottom: 28px;
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 540px;
  color: rgba(10, 42, 85, 0.72);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 10px;
}

.trust-line {
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 800;
  opacity: 0.72;
}

.eyebrow,
.section-kicker {
  margin-bottom: 14px;
  color: var(--blue-2);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  left: -70px;
  top: 16%;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: var(--light-blue);
  opacity: 0.45;
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 0.82;
  border-radius: 28px 28px 80px 28px;
  box-shadow: 0 32px 90px rgba(7, 38, 82, 0.18);
  object-fit: cover;
}

.about-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.books-section,
.contact-cta {
  background: #fff;
}

.vo-intro {
  max-width: 640px;
}

.voice-section h2 {
  font-size: clamp(2.4rem, 4.5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.045em;
  margin-bottom: 1.2rem;
}

.voice-section p {
  margin-bottom: 1.8rem;
}

.voice-profile-card {
  background: #fbf7ef;
  border: 1px solid rgba(12, 45, 89, 0.10);
  border-radius: 32px;
  padding: 2.4rem;
  box-shadow: 0 30px 80px rgba(12, 45, 89, 0.07);
}

.voice-profile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.profile-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #0b3268;
}

.profile-badge {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(12, 45, 89, 0.12);
  font-weight: 700;
  font-size: 0.8rem;
}

.voice-profile-card h3 {
  font-size: clamp(1.7rem, 2.4vw, 2.3rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #0b3268;
  margin-bottom: 1rem;
}

.voice-profile-card p {
  color: rgba(12, 45, 89, 0.72);
  line-height: 1.65;
  margin-bottom: 1.6rem;
}

.voice-wave {
  display: flex;
  align-items: end;
  gap: 0.35rem;
  height: 44px;
  margin-bottom: 1.8rem;
}

.voice-wave span {
  display: block;
  width: 8px;
  border-radius: 999px;
  background: #0b3268;
  opacity: 0.75;
}

.voice-wave span:nth-child(1) {
  height: 18px;
}

.voice-wave span:nth-child(2) {
  height: 34px;
}

.voice-wave span:nth-child(3) {
  height: 24px;
}

.voice-wave span:nth-child(4) {
  height: 40px;
}

.voice-wave span:nth-child(5) {
  height: 22px;
}

.voice-profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.voice-profile-grid div {
  background: #fff;
  border: 1px solid rgba(12, 45, 89, 0.08);
  border-radius: 18px;
  padding: 1rem;
}

.voice-profile-grid strong {
  display: block;
  color: #0b3268;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.voice-profile-grid span {
  display: block;
  color: rgba(12, 45, 89, 0.65);
  font-size: 0.9rem;
  line-height: 1.35;
}

.letter-spacing {
  letter-spacing: 0.12em;
}

.voice-trust {
  margin-top: 0.8rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  opacity: 0.7;
}

.section-eyebrow {
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.voice-services {
  border-top: 1px solid rgba(12, 45, 89, 0.10);
}

.services-title {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #0b3268;
}

.services-intro {
  max-width: 360px;
  color: rgba(12, 45, 89, 0.65);
  line-height: 1.6;
}

.service-chip {
  height: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(12, 45, 89, 0.10);
  font-weight: 800;
  color: #0b3268;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(12, 45, 89, 0.22);
  box-shadow: 0 14px 34px rgba(12, 45, 89, 0.08);
}

.service-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #0b3268;
  opacity: 0.28;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.audio-section,
.acting-section,
.testimonials-section {
  background: linear-gradient(180deg, var(--off-white), #fff);
}

.audio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  overflow-x: auto;
}

.filter-btn {
  flex: 0 0 auto;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue);
  background: #fff;
  font-weight: 800;
  white-space: nowrap;
}

.filter-btn.active,
.filter-btn:hover {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.audio-card,
.world-card,
.testimonial-card {
  height: 100%;
  min-height: 330px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 46px rgba(16, 47, 95, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.audio-card:hover,
.world-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.audio-card.is-playing {
  border-color: rgba(31, 95, 159, 0.45);
  background: linear-gradient(180deg, #fff, rgba(220, 235, 245, 0.42));
}

.audio-card h3,
.world-card h3 {
  color: var(--blue);
  font-size: 1.34rem;
  font-weight: 850;
}

.audio-description,
.audio-meta {
  color: var(--muted);
  font-size: 0.96rem;
}

.audio-controls {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  margin: 28px 0;
}

.play-btn {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 1.1rem;
  box-shadow: 0 12px 26px rgba(16, 47, 95, 0.22);
}

.audio-card.is-playing .play-btn {
  background: var(--blue-2);
}

.progress-track {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--light-blue);
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: var(--blue-2);
  transition: width 0.12s linear;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.card-actions .btn {
  padding: 0.66rem 1rem;
  font-size: 0.9rem;
}

.world-card {
  background: linear-gradient(180deg, #fff, rgba(220, 235, 245, 0.2));
}

.world-card:hover {
  background: linear-gradient(180deg, #fff, rgba(239, 227, 210, 0.55));
}

.world-card:hover .world-orb {
  transform: rotate(-8deg) scale(1.08);
}

.world-orb {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  color: #fff;
  background: radial-gradient(circle at 30% 25%, #6ea9d0, var(--blue));
  font-weight: 850;
  font-size: 1.24rem;
  transition: transform 0.25s ease;
}

.world-tone {
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: 1.06rem;
  line-height: 1.35;
}

.video-frame {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(rgba(16, 47, 95, 0.35), rgba(16, 47, 95, 0.76)),
    url("../assets/img/Kools.jpeg") center 28% / cover;
  box-shadow: var(--shadow);
  text-align: center;
}

.play-symbol {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  margin: 0 auto 16px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
}

.credits-list {
  padding-left: 20px;
  color: var(--muted);
}

.book-cover {
  min-height: 500px;
  display: grid;
  place-items: center;
  padding: 34px;
  border-radius: 8px;
  color: #fff;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.24), transparent 26%),
    linear-gradient(160deg, var(--blue), #1f5f9f 54%, #d8c3a6);
  box-shadow: var(--shadow);
  font-family: Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.98;
  text-align: center;
}

blockquote {
  margin: 28px 0;
  padding-left: 24px;
  border-left: 3px solid var(--blue-2);
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: 1.35rem;
}

.millefeuille-section {
  background: var(--warm-2);
}

.millefeuille-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 6vw, 76px);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow);
}

.millefeuille-logo {
  position: absolute;
  right: 4vw;
  top: 22px;
  color: var(--blue);
  opacity: 0.05;
  font-family: Georgia, serif;
  font-size: clamp(5rem, 12vw, 12rem);
  line-height: 1;
  pointer-events: none;
}

.millefeuille-subtitle {
  color: var(--blue-2);
  font-family: Georgia, serif;
  font-size: 1.7rem;
}

.lifestyle-visual {
  min-height: 420px;
  display: grid;
  place-items: center;
  border-radius: 8px 80px 8px 8px;
  color: var(--blue);
  background:
    radial-gradient(circle at 25% 25%, rgba(31, 95, 159, 0.18), transparent 30%),
    linear-gradient(145deg, #fff, #eadbc8);
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  text-align: center;
}

.about-photo {
  min-height: 560px;
  border-radius: 80px 8px 8px 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  background: var(--warm);
}

.highlight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.highlight-list span {
  padding: 11px 15px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--light-blue);
  font-weight: 850;
}

.testimonial-track {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 24px;
}

.testimonial-item.featured .testimonial-card {
  background: var(--blue);
  color: #fff;
}

.testimonial-item.featured blockquote,
.testimonial-item.featured figcaption,
.testimonial-item.featured .client-logo {
  color: #fff;
}

.testimonial-card {
  margin: 0;
  min-height: 100%;
}

.testimonial-card blockquote {
  margin: 22px 0;
  padding: 0;
  border: 0;
  font-size: 1.28rem;
}

.testimonial-item.featured blockquote {
  font-size: 1.55rem;
}

.testimonial-card figcaption {
  display: grid;
  gap: 2px;
  color: var(--muted);
}

.testimonial-card figcaption strong {
  color: inherit;
}

.client-logo {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: var(--light-blue);
  font-weight: 850;
}

.cta-panel {
  padding: clamp(54px, 9vw, 110px);
  border-radius: 8px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 18%, rgba(220, 235, 245, 0.24), transparent 30%),
    linear-gradient(135deg, #102f5f 0%, #1f5f9f 58%, #6a8fb7 100%);
}

.cta-panel h2,
.cta-panel .section-kicker {
  color: #fff;
}

.cta-panel h2 {
  max-width: 900px;
  font-size: clamp(2.8rem, 5.7vw, 5.4rem);
}

.site-footer {
  padding: 32px 0;
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
}

.mobile-nav {
  display: grid;
  gap: 10px;
}

.mobile-nav a:not(.btn) {
  padding: 12px 0;
  color: var(--blue);
  font-size: 1.2rem;
  font-weight: 850;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
  }

  .hero-visual {
    justify-content: center;
  }

  .hero-visual::before {
    left: -28px;
    top: 10%;
  }

  .testimonial-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .testimonial-item {
    flex: 0 0 82%;
    scroll-snap-align: start;
  }
}

@media (max-width: 768px) {
  .site-section,
  .site-section-lg {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .site-section-sm {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .voice-profile-card {
    padding: 1.5rem;
    border-radius: 24px;
  }

  .voice-profile-grid {
    grid-template-columns: 1fr;
  }
}

.section-eyebrow {
  font-size: 0.72rem;
  opacity: 0.78;
}

.section-lead {
  max-width: 560px;
}

.simple-lines {
  border-top: 0;
  padding-top: 0.5rem;
}

.simple-lines li {
  border-bottom-color: rgba(33, 87, 173, 0.12);
  padding: 1.25rem 0;
}

.simple-lines .usp-highlight {
  color: var(--ck-blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
  font-weight: 700;
}

.audio-card {
  padding: 1.55rem;
  border-color: rgba(33, 87, 173, 0.10);
  border-radius: 16px;
}

.audio-card h3 {
  min-height: 2.5em;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.25;
}

.audio-player {
  margin-top: 0;
  gap: 0.9rem;
}

.audio-play {
  width: 46px;
  height: 46px;
  flex-basis: 46px;
  font-size: 1rem;
}

.audio-timeline {
  height: 2px;
}

.audio-time {
  min-width: 76px;
  font-size: 0.76rem;
}

.world-simple-list {
  margin-top: 0;
}

.world-simple-list li {
  padding: 0;
}

.world-simple-list a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 1.05rem 0;
  color: var(--ck-blue-dark);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.world-simple-list a:hover {
  color: var(--ck-blue);
  padding-left: 0.45rem;
}

.world-simple-list a span {
  display: inline-block;
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  border-radius: 50%;
  background: var(--ck-blue);
  opacity: 0.42;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.world-simple-list a:hover span {
  opacity: 1;
  transform: scale(1.2);
}

.testimonial-card {
  border-color: rgba(33, 87, 173, 0.12);
}

.testimonial-card-featured blockquote {
  max-width: 680px;
}

.contact-cta h2 {
  white-space: normal;
  max-width: 680px;
}

@media (max-width: 767.98px) {
  .audio-filters {
    flex-wrap: nowrap;
    white-space: nowrap;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: clamp(2.7rem, 15vw, 4.4rem);
    line-height: 0.98;
  }

  .hero-actions .btn,
  .vo-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .hero-visual img {
    border-radius: 24px 24px 56px 24px;
  }

  .about-photo {
    min-height: 420px;
  }

  .audio-card,
  .world-card,
  .testimonial-card {
    min-height: 0;
    padding: 26px;
  }

  .audio-controls {
    grid-template-columns: 56px 1fr;
  }

  .play-btn {
    width: 56px;
    height: 56px;
  }

  .lifestyle-visual {
    min-height: 320px;
  }
}

/* Editorial personal brand direction */
:root {
  --ck-blue: #0b3268;
  --ck-cream: #f7f3ea;
  --ck-paper: #fffaf2;
  --ck-line: rgba(11, 50, 104, 0.12);
  --blue: var(--ck-blue);
  --blue-2: #2e699e;
  --light-blue: #e8f0f5;
  --off-white: var(--ck-cream);
  --warm: #efe4d3;
  --warm-2: #f3eadc;
  --ink: var(--ck-blue);
  --muted: rgba(11, 50, 104, 0.66);
  --line: var(--ck-line);
  --shadow: 0 18px 55px rgba(11, 50, 104, 0.08);
}

body {
  color: var(--ck-blue);
  background: var(--ck-cream);
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
}

h1,
h2,
h3,
.editorial-title,
.hero-title,
.section-heading h2,
section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.035em;
}

h1,
.hero-title {
  font-size: clamp(3rem, 5.8vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

h2,
section h2,
.section-title {
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  line-height: 1.08;
}

.site-navbar,
.navbar {
  background-color: var(--ck-cream);
}

.navbar-brand,
.nav-link,
.navbar .btn,
.btn {
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
}

.btn {
  border-radius: 999px;
  font-weight: 600;
  padding: 0.85rem 1.25rem;
  box-shadow: none;
}

.btn-lg {
  padding: 0.92rem 1.35rem;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:focus {
  background: var(--ck-blue);
  border-color: var(--ck-blue);
}

.btn-outline-primary {
  background: transparent;
  border-color: var(--ck-line);
}

.hero-actions .btn-primary,
.play-btn {
  box-shadow: none;
}

.hero {
  background: var(--ck-cream);
}

.hero-title {
  max-width: 560px;
}

.section-title {
  max-width: 620px;
}

.feature-title {
  max-width: 540px;
}

.lead,
.section-lead {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.7;
  max-width: 620px;
}

.hero-lead,
.section-intro,
.services-intro,
.audio-description,
.audio-meta {
  color: rgba(11, 50, 104, 0.66);
}

.hero-visual::before {
  opacity: 0.22;
}

.hero-visual img {
  box-shadow: 0 24px 70px rgba(11, 50, 104, 0.12);
}

.hero-visual::after {
  content: "Catherine Kools";
  position: absolute;
  right: 0;
  bottom: -2rem;
  color: rgba(11, 50, 104, 0.48);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-kicker,
.section-eyebrow,
.hero-eyebrow {
  color: rgba(11, 50, 104, 0.72);
  font-weight: 700;
}

.voice-profile-card {
  background: var(--ck-paper);
  border-color: rgba(11, 50, 104, 0.08);
  box-shadow: 0 18px 55px rgba(11, 50, 104, 0.06);
}

.profile-badge {
  border-color: rgba(11, 50, 104, 0.10);
}

.voice-profile-list {
  display: grid;
  gap: 0.95rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.voice-profile-list li {
  display: grid;
  gap: 0.15rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(11, 50, 104, 0.10);
}

.voice-profile-list strong {
  color: var(--ck-blue);
  font-weight: 700;
}

.voice-profile-list span {
  color: rgba(11, 50, 104, 0.62);
  font-size: 0.95rem;
}

.voice-services {
  border-top-color: rgba(11, 50, 104, 0.10);
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
}

.service-list span {
  color: var(--ck-blue);
  font-weight: 600;
}

.service-list span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 0.55rem;
  border-radius: 999px;
  background: var(--ck-blue);
  opacity: 0.28;
  vertical-align: middle;
}

.audio-section,
.acting-section,
.testimonials-section,
.books-section,
.voice-section {
  background: var(--ck-paper) !important;
}

.audio-card,
.testimonial-card {
  border-color: rgba(11, 50, 104, 0.08);
  border-radius: 18px;
  box-shadow: none;
}

.audio-card:hover {
  box-shadow: 0 18px 45px rgba(11, 50, 104, 0.07);
}

.filter-btn {
  font-weight: 600;
  border-color: rgba(11, 50, 104, 0.12);
}

.worlds-section {
  background: var(--ck-cream);
}

.world-links {
  border-top: 1px solid var(--ck-line);
}

.world-link-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) 1fr;
  gap: 1.5rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--ck-line);
  color: var(--ck-blue);
}

.world-link-row span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1;
  letter-spacing: -0.025em;
}

.world-link-row small {
  color: rgba(11, 50, 104, 0.62);
  font-size: 1rem;
  line-height: 1.5;
}

.world-link-row:hover {
  color: var(--ck-blue);
}

.testimonial-quotes {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 2rem;
  border-top: 1px solid var(--ck-line);
  padding-top: 2rem;
}

.testimonial-quote {
  margin: 0;
}

.testimonial-quote blockquote {
  margin: 0 0 1.4rem;
  padding: 0;
  border: 0;
  color: var(--ck-blue);
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  line-height: 1.35;
}

.testimonial-quote.featured blockquote {
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
}

.testimonial-quote figcaption {
  color: var(--ck-blue);
  font-weight: 700;
}

.testimonial-quote figcaption span {
  display: block;
  color: rgba(11, 50, 104, 0.58);
  font-weight: 500;
}

.highlight-list span {
  background: transparent;
  border: 1px solid var(--ck-line);
  font-weight: 600;
}

.millefeuille-panel,
.book-cover,
.video-frame,
.about-photo,
.cta-panel {
  box-shadow: 0 18px 55px rgba(11, 50, 104, 0.08);
}

@media (max-width: 991.98px) {
  .testimonial-quotes {
    grid-template-columns: 1fr;
  }

  .world-link-row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .hero-visual::after {
    position: static;
    display: block;
    margin-top: 1rem;
    text-align: right;
  }
}

/* Unified media demos */
.media-tabs {
  display: inline-flex;
  gap: 0.4rem;
  padding: 0.35rem;
  border: 1px solid var(--ck-line);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.72);
}

.media-tabs button {
  border: 0;
  border-radius: 999px;
  padding: 0.62rem 1rem;
  color: var(--ck-blue);
  background: transparent;
  font-weight: 600;
}

.media-tabs button.active {
  color: #fff;
  background: var(--ck-blue);
}

.media-grid {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.media-grid.is-fading {
  opacity: 0;
  transform: translateY(8px);
}

.media-grid [class*="col-"],
.video-demo-row [class*="col-"] {
  animation: fadeUp 0.25s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.demo-card {
  height: 100%;
  border: 1px solid rgba(11, 50, 104, 0.09);
  border-radius: 22px;
  padding: 1.35rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.demo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 50, 104, 0.2);
  box-shadow: 0 14px 34px rgba(11, 50, 104, 0.07);
}

.demo-card.audio {
  background: #fff;
}

.demo-card.video {
  background: #f8f6f2;
}

.demo-category {
  margin: 0 0 0.55rem;
  color: rgba(11, 50, 104, 0.58);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.demo-card h4 {
  margin: 0 0 1.15rem;
  color: var(--ck-blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  line-height: 1.08;
}

.demo-card.audio .play-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(11, 50, 104, 0.12);
  background: var(--ck-blue);
}

.play-icon {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid #fff;
}

.demo-card.is-playing .play-icon {
  width: 12px;
  height: 14px;
  margin-left: 0;
  border: 0;
  border-left: 4px solid #fff;
  border-right: 4px solid #fff;
}

.demo-card .progress {
  height: 6px;
  margin: 1.1rem 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(11, 50, 104, 0.10);
}

.demo-card .progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--ck-blue);
  transition: width 0.12s linear;
}

.featured-media {
  background: #fff;
  border: 1px solid rgba(11, 50, 104, 0.10);
  border-radius: 26px;
  overflow: hidden;
}

.featured-video-thumb {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  padding: 0;
  background: transparent;
}

.featured-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.34), transparent);
}

.featured-media-content {
  height: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-media-content h3 {
  color: var(--ck-blue);
}

.featured-media-content p:not(.section-eyebrow) {
  color: rgba(11, 50, 104, 0.64);
}

.play-circle {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  color: var(--ck-blue);
  display: grid;
  place-items: center;
}

.audio-grid-header h3 {
  color: var(--ck-blue);
}

.audio-card,
.demo-card.audio {
  background: #fff;
  border: 1px solid rgba(11, 50, 104, 0.10);
  border-radius: 20px;
  padding: 1.25rem;
}

.demo-card.audio h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.audio-player-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.audio-progress {
  flex: 1;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(11, 50, 104, 0.14);
}

.audio-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--ck-blue);
  transition: width 0.12s linear;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.actions a {
  color: var(--ck-blue);
  font-size: 0.92rem;
  font-weight: 650;
}

.video-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #e8e1d6;
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.video-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.play-video {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 56px;
  height: 56px;
  margin: auto;
  border: 0;
  border-radius: 999px;
  background: #fff;
}

.play-video::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 18px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 14px solid var(--ck-blue);
}

.featured-video {
  margin-bottom: 2rem;
}

.featured-video[hidden] {
  display: none;
}

.featured-video-card {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
  gap: 2rem;
  align-items: end;
  padding: 1.25rem;
  border: 1px solid rgba(11, 50, 104, 0.09);
  border-radius: 28px;
  background: #f8f6f2;
}

.featured-video-card h3 {
  color: var(--ck-blue);
  max-width: 420px;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(7, 24, 48, 0.74);
}

.video-modal.is-open {
  display: flex;
}

.video-modal-dialog {
  width: min(980px, 100%);
}

.video-modal video {
  display: block;
  width: 100%;
  max-height: 78vh;
  border-radius: 18px;
  background: #000;
}

.video-modal-close {
  display: block;
  margin: 0 0 0.8rem auto;
  border: 0;
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  color: var(--ck-blue);
  background: #fff;
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .featured-video-card {
    grid-template-columns: 1fr;
  }

  .featured-video-thumb {
    min-height: 240px;
    max-height: 240px;
  }

  .media-tabs {
    max-width: 100%;
    overflow-x: auto;
  }
}

/* Compact editorial media library */
.video-demo-card {
  height: 100%;
}

.video-thumb {
  position: relative;
  width: 100%;
  height: 220px;
  border: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #eee;
}

.video-thumb video,
.video-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-demo-card h3 {
  font-size: 1.15rem;
  margin-top: 0.75rem;
}

.audio-card {
  min-height: auto;
  background: #fff;
  border: 1px solid rgba(11, 50, 104, 0.10);
  border-radius: 20px;
  padding: 1.25rem;
}

.audio-card h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.audio-player {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.audio-play {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 999px;
  border: 0;
  background: var(--ck-blue);
  color: #fff;
}

.audio-timeline {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: rgba(11, 50, 104, 0.14);
  cursor: pointer;
  overflow: hidden;
}

.audio-progress {
  width: 0;
  height: 100%;
  background: var(--ck-blue);
}

.audio-time {
  min-width: 72px;
  font-size: 0.8rem;
  color: rgba(11, 50, 104, 0.65);
}

@media (max-width: 768px) {
  .video-thumb {
    height: 190px;
  }
}

/* Book section with real mockup visual */
.book-section {
  background: linear-gradient(to bottom, #fff, #f9f5ee);
}

.book-visual {
  position: relative;
}

.book-visual img {
  width: 100%;
  max-width: 360px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.15));
}

.book-content .section-title {
  color: var(--ck-blue-dark);
}

.book-content .section-lead {
  margin-top: 1.25rem;
}

.book-quote {
  font-style: italic;
  margin: 1.5rem 0;
  color: rgba(11, 50, 104, 0.75);
  border-left: 3px solid rgba(11, 50, 104, 0.2);
  padding-left: 1rem;
}

@media (max-width: 768px) {
  .book-visual img {
    max-width: 260px;
    margin-bottom: 2rem;
  }
}

/* Catherine Kools brand balance: 60% modern UX, 40% playful legacy identity */
:root {
  --ck-blue: #2157ad;
  --ck-blue-dark: #103a78;
  --ck-cream: #fbf6eb;
  --ck-paper: #ffffff;
  --ck-soft-blue: #dceefa;
  --ck-line: rgba(33, 87, 173, 0.16);
  --blue: var(--ck-blue-dark);
  --blue-2: var(--ck-blue);
  --light-blue: var(--ck-soft-blue);
  --off-white: var(--ck-cream);
  --warm: #f1e4cf;
  --warm-2: #f7efe2;
  --ink: var(--ck-blue-dark);
  --muted: rgba(16, 58, 120, 0.68);
  --line: var(--ck-line);
  --shadow: 0 18px 45px rgba(33, 87, 173, 0.08);
}

body {
  background: var(--ck-cream);
  color: var(--ck-blue-dark);
}

h1,
h2,
.section-title,
.hero-title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.navbar,
.btn,
.section-eyebrow,
.section-kicker,
.hero-eyebrow,
.card-title,
.service-chip,
.audio-card h3,
.demo-category,
.profile-label,
.profile-badge {
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  font-weight: 800;
}

.site-navbar,
.navbar,
.hero {
  background-color: var(--ck-cream);
}

.btn-primary,
.btn-primary:hover,
.btn-primary:focus {
  background: var(--ck-blue);
  border-color: var(--ck-blue);
  color: #fff;
}

.btn-primary:hover {
  background: var(--ck-blue-dark);
  border-color: var(--ck-blue-dark);
}

.btn-outline-primary {
  border-color: var(--ck-blue);
  color: var(--ck-blue);
}

.btn-primary-soft {
  color: var(--ck-blue-dark);
  background: var(--ck-soft-blue);
}

.brand-mark {
  background: var(--ck-blue-dark);
}

.hero {
  background-image:
    radial-gradient(circle at 7% 18%, rgba(33, 87, 173, 0.07), transparent 18%),
    linear-gradient(var(--ck-cream), var(--ck-cream));
}

.hero-title,
section h2,
.section-title {
  color: var(--ck-blue-dark);
}

.hero-doodle {
  width: 170px;
  height: 34px;
  margin-top: 1.25rem;
  color: var(--ck-blue);
  opacity: 0.7;
}

.hero-doodle span {
  display: block;
  width: 100%;
  height: 100%;
  border-bottom: 2px solid currentColor;
  border-radius: 50%;
  transform: rotate(-3deg);
}

.creative-stamp-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.6rem;
}

.creative-stamp-row a,
.world-stamp {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border: 2px solid rgba(33, 87, 173, 0.35);
  border-radius: 50%;
  color: var(--ck-blue);
  background: rgba(255, 255, 255, 0.54);
  text-align: center;
  transform: rotate(-3deg);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.creative-stamp-row a:nth-child(even),
.world-stamp:nth-child(even) {
  transform: rotate(3deg);
}

.creative-stamp-row span,
.world-stamp span {
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.world-stamp small {
  max-width: 82px;
  color: rgba(16, 58, 120, 0.64);
  font-size: 0.68rem;
  line-height: 1.15;
}

.creative-stamp-row a:hover,
.world-stamp:hover {
  color: #fff;
  background: var(--ck-blue);
  transform: rotate(0deg) scale(1.04);
}

.creative-stamp-row a:hover small,
.world-stamp:hover small {
  color: rgba(255, 255, 255, 0.82);
}

.hero-visual::before {
  background: var(--ck-soft-blue);
  opacity: 0.55;
}

.voice-section,
.audio-section,
.acting-section,
.books-section,
.testimonials-section {
  background: var(--ck-paper) !important;
}

.voice-profile-card {
  background: #fff;
  border: 1px solid var(--ck-line);
  box-shadow: 0 18px 45px rgba(33, 87, 173, 0.06);
}

.voice-wave span,
.audio-play,
.play-btn,
.play-video::before {
  background-color: var(--ck-blue);
}

.play-video::before {
  background-color: transparent;
  border-left-color: var(--ck-blue);
}

.voice-drawn-wave {
  width: 150px;
  height: 28px;
  margin: -0.6rem 0 1.25rem;
  background:
    radial-gradient(circle at 8px 14px, var(--ck-blue) 2px, transparent 3px),
    radial-gradient(circle at 36px 14px, var(--ck-blue) 2px, transparent 3px),
    radial-gradient(circle at 64px 14px, var(--ck-blue) 2px, transparent 3px),
    radial-gradient(circle at 92px 14px, var(--ck-blue) 2px, transparent 3px),
    radial-gradient(circle at 120px 14px, var(--ck-blue) 2px, transparent 3px);
  opacity: 0.45;
}

.media-tabs {
  background: transparent;
  border-color: var(--ck-line);
}

.media-tabs button {
  color: var(--ck-blue);
}

.media-tabs button.active {
  background: var(--ck-blue);
}

.video-demo-card {
  padding: 0.55rem;
  border: 1px solid rgba(33, 87, 173, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
}

.video-thumb {
  border-radius: 18px;
  border: 1px solid rgba(33, 87, 173, 0.10);
}

.audio-card {
  border-color: rgba(33, 87, 173, 0.12);
  box-shadow: none;
}

.audio-card:hover {
  box-shadow: 0 12px 28px rgba(33, 87, 173, 0.08);
}

.audio-progress,
.audio-play,
.demo-card .progress span {
  background: var(--ck-blue);
}

.grid-pattern {
  background-image:
    linear-gradient(rgba(33, 87, 173, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 87, 173, 0.13) 1px, transparent 1px);
  background-size: 24px 24px;
}

.worlds-section {
  background-color: var(--ck-paper);
}

.world-stamp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(112px, 1fr));
  gap: 1.4rem;
  justify-items: center;
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 28px;
}

.book-feature-section {
  background: linear-gradient(180deg, var(--ck-cream), #fff) !important;
}

.book-cover {
  color: #fff;
  background:
    radial-gradient(circle at 74% 18%, rgba(220, 238, 250, 0.65), transparent 24%),
    linear-gradient(155deg, var(--ck-blue), var(--ck-blue-dark) 55%, #e9dcc8);
  box-shadow: 0 18px 45px rgba(33, 87, 173, 0.14);
}

blockquote {
  border-left-color: var(--ck-blue);
  color: var(--ck-blue);
}

.testimonial-quotes {
  padding: 2rem;
  border: 0;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 28px;
}

.testimonial-quote {
  padding: 1.4rem;
  background: #fff;
  border: 1px solid rgba(33, 87, 173, 0.12);
  border-radius: 4px;
}

.testimonial-quote blockquote {
  color: var(--ck-blue);
}

.cta-panel {
  background:
    radial-gradient(circle at 90% 15%, rgba(220, 238, 250, 0.26), transparent 30%),
    linear-gradient(135deg, var(--ck-blue), var(--ck-blue-dark));
}

@media (max-width: 991.98px) {
  .world-stamp-grid {
    grid-template-columns: repeat(2, minmax(112px, 1fr));
  }
}

@media (max-width: 575.98px) {
  .creative-stamp-row {
    justify-content: center;
  }

  .world-stamp-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1rem;
  }

  .creative-stamp-row a,
  .world-stamp {
    width: 96px;
    height: 96px;
  }
}

/* Reset to simpler impact structure */
.simple-hero,
.simple-voice,
.simple-demos,
.simple-acting,
.simple-book,
.simple-about,
.simple-worlds,
.simple-testimonials,
.simple-cta {
  background: var(--ck-cream);
}

.simple-voice,
.simple-demos,
.simple-book,
.simple-testimonials {
  background: #fff;
}

.simple-hero h1 {
  max-width: 600px;
  color: var(--ck-blue-dark);
}

.simple-portrait,
.about-simple-photo {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: 28px 28px 80px 28px;
  box-shadow: 0 22px 55px rgba(33, 87, 173, 0.12);
}

.simple-lines {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ck-line);
}

.simple-lines li {
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--ck-line);
  color: var(--ck-blue-dark);
  font-size: 1.15rem;
  font-weight: 800;
}

.video-demo-card {
  padding: 0;
  border: 0;
  background: transparent;
}

.video-thumb {
  height: 220px;
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(33, 87, 173, 0.08);
}

.video-demo-card h3,
.audio-card h3 {
  color: var(--ck-blue-dark);
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  font-weight: 800;
}

.audio-card {
  min-height: auto;
  border-radius: 18px;
  border: 1px solid var(--ck-line);
  background: #fff;
  box-shadow: none;
}

.large-video-frame {
  min-height: 460px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background:
    linear-gradient(rgba(16, 58, 120, 0.12), rgba(16, 58, 120, 0.28)),
    url("../assets/img/kools-cat.jpeg") center 25% / cover;
  box-shadow: 0 22px 55px rgba(33, 87, 173, 0.12);
}

.play-video-frame {
  width: 70px;
  height: 70px;
  border: 0;
  border-radius: 50%;
  color: var(--ck-blue);
  background: #fff;
  font-weight: 900;
}

.book-blue-block {
  min-height: 460px;
  display: grid;
  place-items: center;
  padding: 2rem;
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(220, 238, 250, 0.35), transparent 28%),
    linear-gradient(145deg, var(--ck-blue), var(--ck-blue-dark));
  border-radius: 8px;
  box-shadow: 0 20px 45px rgba(33, 87, 173, 0.18);
  text-align: center;
}

.book-blue-block span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 0.95;
  font-weight: 700;
}

.about-short-list,
.world-simple-list {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.about-short-list li {
  display: inline-flex;
  margin: 0 0.75rem 0.75rem 0;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--ck-line);
  border-radius: 999px;
  color: var(--ck-blue);
  font-weight: 800;
}

.world-simple-list {
  border-top: 1px solid var(--ck-line);
}

.world-simple-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--ck-line);
  color: var(--ck-blue-dark);
  font-size: 1.2rem;
  font-weight: 800;
}

.world-simple-list span {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border-radius: 50%;
  background: var(--ck-blue);
  opacity: 0.45;
}

.quote-large,
.quote-small {
  height: 100%;
  margin: 0;
  padding: 2rem;
  border: 1px solid var(--ck-line);
  background: #fff;
}

.quote-large blockquote,
.quote-small blockquote {
  margin: 0 0 1.4rem;
  padding: 0;
  border: 0;
  color: var(--ck-blue);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.28;
}

.quote-large blockquote {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.quote-small blockquote {
  font-size: 1.35rem;
}

.quote-large figcaption,
.quote-small figcaption {
  color: var(--ck-blue-dark);
  font-weight: 800;
}

.quote-large figcaption span {
  display: block;
  color: rgba(16, 58, 120, 0.6);
  font-weight: 600;
}

.cta-panel {
  border-radius: 10px;
}

@media (max-width: 768px) {
  .video-thumb {
    height: 190px;
  }

  .large-video-frame,
  .book-blue-block {
    min-height: 320px;
  }
}

/* Final testimonials + CTA structure */
.testimonials-section {
  background: #fff;
}

.testimonial-card {
  height: 100%;
  min-height: 0;
  background: #fff;
  border: 1px solid rgba(33, 87, 173, 0.16);
  border-radius: 0;
  padding: 2rem;
  box-shadow: none;
}

.testimonial-card-featured {
  background: #fbf6eb;
}

.testimonial-card blockquote {
  margin: 0 0 1.5rem;
  padding: 0;
  border: 0;
  color: var(--ck-blue);
  font-size: 1rem;
  line-height: 1.7;
}

.testimonial-card-featured blockquote {
  font-size: clamp(1.45rem, 2.4vw, 2.3rem);
  line-height: 1.15;
  font-family: Georgia, "Times New Roman", serif;
}

.testimonial-card figcaption {
  color: var(--ck-blue-dark);
  font-weight: 800;
}

.testimonial-card figcaption span {
  display: block;
  color: rgba(16, 58, 120, 0.62);
  font-weight: 600;
}

.contact-cta-section {
  background: #fbf6eb;
}

.contact-cta {
  background: linear-gradient(135deg, #103a78, #2d69b8);
  color: #fff;
  border-radius: 8px;
  padding: clamp(2rem, 5vw, 4rem);
}

.contact-cta h2 {
  max-width: 720px;
  color: #fff;
  font-size: clamp(2.4rem, 4.8vw, 5rem);
  line-height: 0.95;
}

.contact-cta .section-eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 1.5rem;
  }

  .contact-cta h2 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }
}

/* UI font contrast */
:root {
  --font-ui: "Inter", system-ui, -apple-system, sans-serif;
}

.btn {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
}

.btn-primary {
  font-weight: 700;
}

.btn-outline-primary {
  font-weight: 600;
  border-width: 1.5px;
}

.contact-cta .btn {
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.section-eyebrow,
.service-chip,
.audio-card h3,
.navbar {
  font-family: var(--font-ui);
}

/* Final polish */
.audio-card {
  min-height: 92px;
  padding: 1.1rem 1.25rem;
}

.voice-facts li {
  padding: 1rem 0;
  font-size: 1rem;
}

.voice-facts li:first-child {
  font-size: 1.35rem;
  font-family: Georgia, "Times New Roman", serif;
}

.about-section .section-lead {
  font-size: 1rem;
  line-height: 1.75;
  max-width: 560px;
}

.worlds-list li {
  padding: 1rem 0;
}

.worlds-list a {
  display: grid;
  grid-template-columns: 12px 1fr;
  column-gap: 0.85rem;
  align-items: start;
}

.worlds-list i {
  width: 12px;
  height: 12px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--ck-blue);
  opacity: 0.45;
}

.worlds-list strong {
  display: block;
  color: var(--ck-blue-dark);
  font-weight: 800;
}

.worlds-list span {
  display: block;
  width: auto;
  height: auto;
  margin-top: 0.25rem;
  color: rgba(11, 50, 104, 0.6);
  background: transparent;
  opacity: 1;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.45;
}

.testimonial-card-featured blockquote {
  font-size: clamp(1.5rem, 2.2vw, 2.25rem);
  line-height: 1.18;
}

.contact-cta {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-logo {
  height: 44px;
  width: auto;
  display: block;
  filter: contrast(1.05) saturate(1.05);
}

.brand-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: #0b3268;
  opacity: 0.8;
}

.site-section.pb-0 {
  padding-bottom: 0;
}

.site-section.pt-0 {
  padding-top: 0;
}

.worlds-list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(11, 50, 104, 0.12);
}

.worlds-list strong {
  display: block;
  font-weight: 700;
  color: #0b3268;
}

.worlds-list span {
  display: block;
  width: auto;
  height: auto;
  margin-top: 0.25rem;
  font-size: 0.95rem;
  color: rgba(11, 50, 104, 0.6);
  background: transparent;
  opacity: 1;
}

.about-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about-image-wrapper {
  overflow: hidden;
  border-radius: 24px;
}

.video-thumb {
  background: #eee;
}

.video-thumb video {
  object-fit: cover;
}

@media (max-width: 768px) {
  h1,
  .hero-title {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  h2,
  section h2,
  .section-title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .navbar-logo {
    height: 36px;
  }
}

/* Final UX polish */
a,
button {
  transition: all 0.2s ease;
}

img {
  display: block;
}

#voice-over {
  border-top: 1px solid rgba(11, 50, 104, 0.08);
}

.voice-facts li:first-child {
  font-size: 1.25rem;
  font-family: Georgia, "Times New Roman", serif;
}

.video-thumb {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-thumb:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.audio-card {
  border-color: rgba(11, 50, 104, 0.08);
}

#acting h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

#book .book-actions {
  margin-top: 1rem;
}

.about-section .section-lead {
  font-size: 1.05rem;
}

.worlds-list li {
  transition: color 0.2s ease;
}

.worlds-list li:hover {
  color: #103a78;
}

.testimonial-card-featured {
  background: #f4ede2;
}

.contact-cta .btn {
  margin-right: 0.5rem;
}

.worlds-stamp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.5rem;
  row-gap: 3rem;
  justify-items: center;
  align-items: start;
}

.world-stamp {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  min-height: 205px;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  color: var(--ck-blue);
  transform: none;
}

.world-stamp img {
  width: 180px;
  height: 180px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: contain;
  opacity: 0.9;
  transform: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.world-stamp-visual {
  width: 170px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.world-stamp-visual img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  aspect-ratio: 1 / 1;
  display: block;
}

.world-stamp.has-fallback::before {
  content: attr(data-label);
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  border: 2px solid rgba(33, 87, 173, 0.36);
  border-radius: 50%;
  color: var(--ck-blue);
  background: rgba(255, 255, 255, 0.7);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.world-stamp strong {
  width: 100%;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  margin-top: 0.25rem;
}

.world-stamp small {
  width: 100%;
  text-align: center;
  color: rgba(11, 50, 104, 0.6);
  font-size: 0.8rem;
}

.world-stamp:hover img,
.world-stamp:hover::before {
  transform: translateY(-2px);
  opacity: 1;
}

.world-stamp:hover .world-stamp-visual {
  transform: translateY(-2px);
}

.world-stamp:hover {
  color: var(--ck-blue);
  background: transparent;
  transform: none;
}

.world-stamp:hover small {
  color: rgba(11, 50, 104, 0.6);
}

.world-stamp {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.world-stamp,
.world-stamp * {
  text-align: center !important;
}

.world-stamp strong,
.world-stamp span,
.world-stamp small,
.world-stamp p {
  display: block;
  width: 100%;
}

.world-stamp-text {
  display: block;
  width: 100%;
  max-width: 180px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  align-self: center;
}

.world-stamp-text strong,
.world-stamp-text small {
  display: block;
  width: 100%;
  max-width: none;
  text-align: center !important;
}

.world-stamp-text strong {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 0;
}

.world-stamp-text small {
  margin-top: 0.35rem;
  line-height: 1.35;
  color: rgba(11, 50, 104, 0.6);
  font-size: 0.8rem;
}

.worlds-section .section-lead {
  max-width: 360px;
}

.worlds-section .section-title {
  max-width: 420px;
}

.worlds-section {
  background: #fff;
}

.testimonials-section {
  background: linear-gradient(
    to bottom,
    #fbf6eb 0%,
    #ffffff 100%
  );
  border-top: 1px solid rgba(11, 50, 104, 0.08);
}

.testimonial-card {
  background: #fff;
}

.testimonial-card-featured {
  background: #fffaf2;
}

.contact-cta h2 {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.75rem;
  max-width: 640px;
}

.contact-cta {
  text-align: center;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.contact-cta p {
  max-width: 520px;
  margin: 0 auto 1rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .world-stamp {
    min-height: 165px;
  }

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

  .world-stamp img,
  .world-stamp.has-fallback::before {
    width: 130px;
    height: 130px;
  }

  .world-stamp-visual {
    width: 130px;
    height: 130px;
  }
}

@media (min-width: 1200px) {
  .world-stamp img,
  .world-stamp.has-fallback::before {
    width: 180px;
    height: 180px;
  }
}

/* Hard override: center stamp labels under the circles */
#worlds .worlds-stamp-grid .world-stamp {
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: center !important;
}

#worlds .worlds-stamp-grid .world-stamp-visual {
  margin-left: auto !important;
  margin-right: auto !important;
}

#worlds .worlds-stamp-grid .world-stamp-text {
  display: flex !important;
  width: 100% !important;
  max-width: 180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

#worlds .worlds-stamp-grid .world-stamp-text strong,
#worlds .worlds-stamp-grid .world-stamp-text small {
  display: block !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

/* Rebuilt worlds stamp grid */
#worlds .worlds-stamp-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 3rem 2.5rem !important;
  align-items: start !important;
  justify-items: center !important;
}

#worlds .world-stamp {
  display: flex !important;
  width: 100% !important;
  max-width: 220px !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--ck-blue) !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 0.5rem !important;
  text-align: center !important;
  text-decoration: none !important;
  transform: none !important;
}

#worlds .world-stamp img {
  display: block !important;
  width: 170px !important;
  height: 170px !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 auto 0.5rem !important;
  object-fit: contain !important;
  aspect-ratio: 1 / 1 !important;
}

#worlds .world-stamp strong,
#worlds .world-stamp small {
  display: block !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

#worlds .world-stamp strong {
  font-family: var(--font-ui) !important;
  font-size: 0.9rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

#worlds .world-stamp small {
  max-width: 150px !important;
  margin-top: 0.15rem !important;
  color: rgba(11, 50, 104, 0.6) !important;
  font-size: 0.8rem !important;
  line-height: 1.35 !important;
}

#worlds .world-stamp:hover {
  color: var(--ck-blue) !important;
  background: transparent !important;
  transform: none !important;
}

#worlds .world-stamp:hover img {
  transform: translateY(-2px) !important;
}

@media (max-width: 768px) {
  #worlds .worlds-stamp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 2.5rem 1.5rem !important;
  }

  #worlds .world-stamp {
    max-width: 160px !important;
  }

  #worlds .world-stamp img {
    width: 130px !important;
    height: 130px !important;
  }
}

/* Voice-over portfolio page */
.voice-page {
  background: #fbf6eb;
}

.voice-hero {
  background:
    radial-gradient(circle at 90% 20%, rgba(33, 87, 173, 0.08), transparent 26%),
    #fbf6eb;
}

.voice-hero h1 {
  max-width: 760px;
  color: var(--ck-blue-dark);
  font-size: clamp(3rem, 5.6vw, 5.8rem);
  line-height: 0.96;
}

.voice-portrait,
.voice-profile-photo,
.voice-studio-photo {
  width: 100%;
  display: block;
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(33, 87, 173, 0.11);
}

.voice-portrait {
  max-height: 640px;
  border-radius: 28px 28px 80px 28px;
  object-position: center top;
}

.voice-profile-photo,
.voice-studio-photo {
  max-height: 520px;
  border-radius: 8px;
  object-position: top center;
}

.voice-profile-section {
  background: #fff;
}

.voice-profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.voice-profile-tags span {
  padding: 0.6rem 0.9rem;
  border: 1px solid rgba(11, 50, 104, 0.12);
  color: var(--ck-blue);
  background: #fbf6eb;
  font-family: var(--font-ui);
  font-weight: 800;
}

.voice-personal-quote {
  max-width: 620px;
  margin: 0;
  padding-left: 1.25rem;
  border-left: 3px solid rgba(33, 87, 173, 0.24);
  color: var(--ck-blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
  line-height: 1.18;
}

.voice-personal-quote cite {
  display: block;
  margin-top: 1rem;
  color: rgba(11, 50, 104, 0.62);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 800;
}

.voice-library,
.tone-section,
.voice-testimonials {
  background: #fff;
}

.voice-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.voice-filter-bar button {
  border: 1px solid rgba(11, 50, 104, 0.16);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  color: var(--ck-blue);
  background: transparent;
  font-family: var(--font-ui);
  font-weight: 700;
}

.voice-filter-bar button.active,
.voice-filter-bar button:hover {
  color: #fff;
  background: var(--ck-blue);
  border-color: var(--ck-blue);
}

.voice-subtitle {
  color: var(--ck-blue-dark);
  font-family: Georgia, "Times New Roman", serif;
}

.voice-video-card {
  height: 100%;
}

.voice-video-thumb {
  position: relative;
  width: 100%;
  height: 230px;
  display: block;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: #e9edf2;
}

.voice-video-thumb video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  inset: 0;
  width: 70px;
  height: 70px;
  margin: auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ck-blue);
  background: #fff;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(11, 50, 104, 0.16);
}

.voice-video-card h3 {
  margin-top: 0.4rem;
  color: var(--ck-blue-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.08;
}

.voice-demo-card {
  min-height: 172px;
  height: 100%;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(11, 50, 104, 0.09);
  background: #fff;
}

.voice-demo-category {
  margin: 0 0 0.35rem;
  color: rgba(11, 50, 104, 0.58);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.voice-demo-card h3 {
  margin: 0;
  color: var(--ck-blue-dark);
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 800;
}

.voice-demo-player {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.voice-demo-play {
  width: 48px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--ck-blue);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 800;
}

.voice-demo-track {
  flex: 1;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(11, 50, 104, 0.13);
  cursor: pointer;
}

.voice-demo-progress {
  width: 0;
  height: 100%;
  display: block;
  background: var(--ck-blue);
}

.voice-demo-duration {
  min-width: 78px;
  color: rgba(11, 50, 104, 0.62);
  font-size: 0.78rem;
}

.voice-studio,
.voice-uses {
  background: #fbf6eb;
}

.voice-studio-list {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 560px;
}

.voice-studio-list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(11, 50, 104, 0.12);
  color: var(--ck-blue-dark);
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 800;
}

.tone-card,
.voice-quote {
  height: 100%;
  padding: 2rem;
  border: 1px solid rgba(11, 50, 104, 0.1);
  background: #fffaf2;
}

.tone-card h3 {
  margin: 0;
  color: var(--ck-blue-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.05;
}

.voice-use-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.voice-use-grid span {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(11, 50, 104, 0.1);
  background: #fff;
  color: var(--ck-blue-dark);
  font-family: var(--font-ui);
  font-weight: 800;
}

.voice-quote blockquote {
  margin: 0 0 1rem;
  color: var(--ck-blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.25;
}

.voice-quote span {
  color: rgba(11, 50, 104, 0.65);
  font-family: var(--font-ui);
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .featured-voice-media,
  .featured-voice-media video {
    min-height: 260px;
  }

  .voice-use-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .voice-filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.35rem;
  }

  .voice-filter-bar button {
    white-space: nowrap;
  }

  .voice-use-grid {
    grid-template-columns: 1fr;
  }
}

/* Voice-over page personal layout refresh */
.voice-hero-visual {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11, 50, 104, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(220, 238, 250, 0.38)),
    #fff;
  overflow: hidden;
}

.voice-wave-large {
  height: 210px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.voice-wave-large span {
  width: 12px;
  border-radius: 999px;
  background: var(--ck-blue);
  opacity: 0.72;
}

.voice-wave-large span:nth-child(1) { height: 52px; }
.voice-wave-large span:nth-child(2) { height: 118px; }
.voice-wave-large span:nth-child(3) { height: 76px; }
.voice-wave-large span:nth-child(4) { height: 178px; }
.voice-wave-large span:nth-child(5) { height: 96px; }
.voice-wave-large span:nth-child(6) { height: 146px; }
.voice-wave-large span:nth-child(7) { height: 62px; }
.voice-wave-large span:nth-child(8) { height: 128px; }
.voice-wave-large span:nth-child(9) { height: 84px; }

.voice-hero-mini-photo {
  position: absolute;
  right: clamp(1rem, 4vw, 2.5rem);
  bottom: clamp(1rem, 4vw, 2.5rem);
  width: 150px;
  height: 190px;
  object-fit: cover;
  object-position: center top;
  border: 6px solid #fff;
  box-shadow: 0 18px 45px rgba(11, 50, 104, 0.16);
}

.voice-hero-caption {
  position: absolute;
  left: clamp(1rem, 4vw, 2.5rem);
  bottom: clamp(1rem, 4vw, 2.5rem);
  max-width: 190px;
  color: rgba(11, 50, 104, 0.68);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.voice-video-thumb {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.voice-video-thumb:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(11, 50, 104, 0.14);
}

.video-play-btn {
  text-indent: -999px;
  overflow: hidden;
}

.video-play-btn::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid var(--ck-blue);
  transform: translateX(2px);
}

.voice-profile-section {
  background: #fbf6eb;
}

.voice-testimonials {
  background: #fff;
}

.voice-studio {
  background: #fbf6eb;
}

.voice-check-list li {
  position: relative;
  padding-left: 2.2rem;
}

.voice-check-list li::before {
  content: "âœ“";
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 1.35rem;
  height: 1.35rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ck-blue);
  font-size: 0.8rem;
  font-weight: 900;
}

.tone-card p {
  margin: 0.75rem 0 0;
  color: rgba(11, 50, 104, 0.62);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 991.98px) {
  .voice-hero-visual {
    min-height: 340px;
  }
}

@media (max-width: 768px) {
  .voice-wave-large {
    height: 170px;
    gap: 0.5rem;
  }

  .voice-wave-large span {
    width: 9px;
  }

  .voice-hero-mini-photo {
    width: 118px;
    height: 150px;
  }
}

/* Voice-over hero final fix */
.voice-hero h1 {
  max-width: 620px;
  font-size: clamp(3rem, 5.2vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  overflow-wrap: normal;
}

.voice-hero-card {
  position: relative;
  min-height: 360px;
  background: #fff;
  border: 1px solid rgba(11, 50, 104, 0.10);
  box-shadow: 0 28px 80px rgba(11, 50, 104, 0.08);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.voice-hero-card .voice-wave-large {
  height: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.voice-hero-card .voice-wave-large span {
  width: 8px;
  border-radius: 999px;
  background: #2157ad;
  opacity: 0.75;
}

.voice-hero-card .voice-wave-large span:nth-child(1) { height: 56px; }
.voice-hero-card .voice-wave-large span:nth-child(2) { height: 96px; }
.voice-hero-card .voice-wave-large span:nth-child(3) { height: 72px; }
.voice-hero-card .voice-wave-large span:nth-child(4) { height: 104px; }
.voice-hero-card .voice-wave-large span:nth-child(5) { height: 64px; }

.voice-hero-photo {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  width: 150px;
  height: 150px;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
}

.voice-hero-card p {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  max-width: 190px;
  margin: 0;
  color: rgba(11, 50, 104, 0.68);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

@media (max-width: 768px) {
  .voice-hero h1 {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  .voice-hero-card {
    min-height: 280px;
    padding: 2rem;
  }

  .voice-hero-photo {
    width: 110px;
    height: 110px;
  }
}

/* Voice-over hero video + unified play controls */
.voice-hero-video {
  max-width: 520px;
  margin-left: auto;
}

.video-thumb-large {
  width: 100%;
  height: 380px;
  aspect-ratio: 16 / 9;
  border: 0;
  padding: 0;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  background: #eee;
  box-shadow: 0 28px 80px rgba(11, 50, 104, 0.12);
}

.video-thumb-large video,
.video-thumb-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-caption {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: rgba(11, 50, 104, 0.65);
  text-align: right;
}

.media-control,
.play-circle,
.audio-play,
.play-btn {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 999px;
  border: 0;
  background: #fff;
  color: var(--ck-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(11, 50, 104, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.media-control svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
  display: block;
}

.play-circle:hover,
.media-control:hover,
.audio-play:hover,
.play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(11, 50, 104, 0.2);
}

.video-thumb .play-circle,
.voice-video-thumb .play-circle,
.portfolio-thumb .play-circle,
.video-thumb .media-control,
.voice-video-thumb .media-control,
.portfolio-thumb .media-control {
  position: absolute;
  inset: 0;
  margin: auto;
}

.audio-player {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.audio-time {
  min-width: 52px;
  text-align: right;
  font-size: 0.8rem;
  color: rgba(11, 50, 104, 0.6);
}

.audio-timeline {
  height: 3px;
  border-radius: 999px;
  background: rgba(11, 50, 104, 0.16);
  overflow: hidden;
}

.audio-progress {
  display: block;
  width: 0;
  height: 100%;
  background: var(--ck-blue);
}

.bi-play-fill::before {
  content: "â–¶";
  font-style: normal;
  font-size: 0.85rem;
  line-height: 1;
}

.bi-pause-fill::before {
  content: "â…¡";
  font-style: normal;
  font-size: 0.85rem;
  line-height: 1;
}

.video-demo-card,
.voice-video-card {
  height: 100%;
}

.video-demo-card .video-thumb,
.voice-video-card .voice-video-thumb {
  height: 190px;
  border-radius: 18px;
}

.video-demo-card h3,
.voice-video-card h3 {
  min-height: 2.4em;
}

@media (max-width: 768px) {
  .video-thumb-large {
    height: 260px;
  }

  .voice-hero-video {
    max-width: 100%;
  }
}

/* Voice-over portfolio grid */
.portfolio-tabs {
  font-family: var(--font-ui);
}

.portfolio-tabs button {
  border: 1px solid rgba(11, 50, 104, 0.14);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  color: var(--ck-blue);
  background: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.portfolio-tabs button:hover,
.portfolio-tabs button.active {
  border-color: var(--ck-blue);
  color: #fff;
  background: var(--ck-blue);
  transform: translateY(-1px);
}

.portfolio-card {
  height: 100%;
  background: #fff;
  border: 1px solid rgba(11, 50, 104, 0.10);
  border-radius: 18px;
  overflow: hidden;
}

.portfolio-video {
  box-shadow: 0 18px 45px rgba(11, 50, 104, 0.05);
}

.portfolio-thumb {
  position: relative;
  width: 100%;
  height: 190px;
  border: 0;
  padding: 0;
  background: #eee;
  overflow: hidden;
  display: block;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.portfolio-thumb::before {
  content: "Voice-over demo";
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  color: rgba(11, 50, 104, 0.72);
  background:
    linear-gradient(135deg, rgba(220, 238, 250, 0.92), rgba(251, 246, 235, 0.92)),
    #dceefa;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portfolio-thumb video,
.portfolio-thumb img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.portfolio-thumb.is-ready video,
.portfolio-thumb.is-ready img {
  opacity: 1;
}

.portfolio-thumb .play-circle {
  z-index: 2;
}

.portfolio-thumb .media-control {
  z-index: 2;
}

.portfolio-thumb:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(11, 50, 104, 0.12);
}

.portfolio-card-body {
  padding: 1.25rem;
}

.portfolio-type {
  margin-bottom: 0.45rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(11, 50, 104, 0.6);
  font-family: var(--font-ui);
  font-weight: 800;
}

.portfolio-card h3 {
  margin-bottom: 1rem;
  color: var(--ck-blue-dark);
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
}

.portfolio-audio .portfolio-card-body {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: space-between;
}

.portfolio-audio {
  border-color: rgba(11, 50, 104, 0.08);
}

.portfolio-audio.is-playing {
  border-color: rgba(33, 87, 173, 0.32);
  box-shadow: 0 18px 40px rgba(33, 87, 173, 0.08);
}

@media (max-width: 768px) {
  .portfolio-tabs {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    padding-bottom: 0.35rem;
  }

  .portfolio-tabs button {
    white-space: nowrap;
  }
}

/* Voice-over final conversion polish */
.voice-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.8rem;
  margin-top: 1.5rem;
  color: rgba(11, 50, 104, 0.68);
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.voice-trust-bar span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.voice-trust-bar span + span::before {
  content: "";
  width: 4px;
  height: 4px;
  margin-right: 0.8rem;
  border-radius: 999px;
  background: rgba(11, 50, 104, 0.24);
}

.portfolio-video .portfolio-thumb {
  height: 190px;
}

.tone-card {
  position: relative;
  overflow: hidden;
}

.tone-card small {
  display: block;
  max-height: 0;
  margin-top: 0;
  color: rgba(11, 50, 104, 0.68);
  font-size: 0.92rem;
  line-height: 1.55;
  opacity: 0;
  transition: max-height 0.25s ease, margin-top 0.25s ease, opacity 0.25s ease;
}

.tone-card:hover small {
  max-height: 6rem;
  margin-top: 1rem;
  opacity: 1;
}

.footer-nav,
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.25rem;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 700;
}

.footer-nav a,
.footer-socials a {
  color: rgba(11, 50, 104, 0.72);
  text-decoration: none;
}

.footer-nav a:hover,
.footer-socials a:hover {
  color: var(--ck-blue);
}

.portfolio-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.75rem;
  padding: 0.32rem 0.62rem;
  border: 1px solid rgba(11, 50, 104, 0.12);
  border-radius: 999px;
  color: var(--ck-blue);
  background: rgba(220, 238, 250, 0.45);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portfolio-footer {
  margin-top: 2rem;
  margin-bottom: 0;
}

.voice-page .voice-testimonials {
  padding-top: 0;
}

.voice-studio-photos {
  position: relative;
  max-width: 430px;
}

.voice-studio-photos .voice-studio-photo {
  width: 100%;
}

.profile-audio-demo {
  max-width: 520px;
  margin-top: 1rem;
}

.mini-demo-player {
  grid-template-columns: 48px 1fr auto;
}

.voice-testimonials .row.g-4 .col-lg-6 .voice-quote blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.2;
}

@media (max-width: 768px) {
  .media-control,
  .play-circle,
  .audio-play,
  .play-btn {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .media-control svg {
    width: 17px;
    height: 17px;
  }

  .voice-trust-bar {
    flex-direction: column;
    gap: 0.45rem;
  }

  .voice-trust-bar span + span::before {
    display: none;
  }

}

/* Book page */
.book-page .book-hero,
.book-page .book-story,
.book-page .book-extra,
.book-page .contact-cta-section {
  background: var(--ck-cream);
}

.book-quotes,
.book-about {
  background: #fff;
}

.book-testimonials {
  background-color: #fff;
}

.book-hero h1 {
  max-width: 620px;
  font-size: clamp(3rem, 5.8vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.book-hero-visual,
.book-secondary-visual {
  display: flex;
  justify-content: center;
}

.book-hero-visual img {
  width: min(100%, 520px);
  height: auto;
  filter: drop-shadow(0 32px 70px rgba(11, 50, 104, 0.18));
}

.book-secondary-visual img {
  width: min(100%, 300px);
  height: auto;
  filter: drop-shadow(0 24px 55px rgba(11, 50, 104, 0.14));
}

.book-hero-quote {
  max-width: 420px;
  margin: 1.6rem 0 0;
  color: rgba(11, 50, 104, 0.74);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.25;
}

.book-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.book-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(33, 87, 173, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--ck-blue);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.book-quote-card {
  height: 100%;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  background: #fff;
  border-left: 3px solid rgba(33, 87, 173, 0.26);
  box-shadow: 0 18px 45px rgba(11, 50, 104, 0.05);
}

.book-quote-card blockquote {
  margin: 0 0 1.25rem;
  color: var(--ck-blue-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 2.15rem);
  line-height: 1.18;
}

.book-quote-card span {
  color: rgba(11, 50, 104, 0.68);
  font-family: var(--font-ui);
  font-size: 0.86rem;
  font-weight: 800;
}

.book-signup {
  display: flex;
  gap: 0.75rem;
  max-width: 560px;
}

.book-signup input {
  flex: 1;
  min-width: 0;
  min-height: 52px;
  border: 1px solid rgba(11, 50, 104, 0.14);
  border-radius: 999px;
  padding: 0 1.15rem;
  background: #fff;
  color: var(--ck-blue);
  font-family: var(--font-ui);
}

.book-signup input:focus {
  border-color: rgba(33, 87, 173, 0.42);
  box-shadow: 0 0 0 0.18rem rgba(33, 87, 173, 0.12);
  outline: 0;
}

.book-form-link {
  display: inline-flex;
  margin-top: 1rem;
  color: rgba(11, 50, 104, 0.7);
  font-family: var(--font-ui);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.book-form-link:hover {
  color: var(--ck-blue);
}

.book-about-photo {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: top center;
  border-radius: 28px 28px 72px 28px;
  box-shadow: 0 24px 65px rgba(11, 50, 104, 0.12);
}

.book-testimonials .testimonial-card {
  background: rgba(255, 255, 255, 0.92);
}

@media (max-width: 768px) {
  .book-hero h1 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .book-hero-visual img {
    width: min(100%, 360px);
  }

  .book-secondary-visual img {
    width: min(100%, 240px);
  }

  .book-signup {
    flex-direction: column;
  }

  .book-signup .btn {
    width: 100%;
  }

  .book-about-photo {
    min-height: 340px;
    border-radius: 24px 24px 56px 24px;
  }
}

/* Book page editorial refinement */
.book-page .book-hero .section-title {
  max-width: 620px;
}

.book-hero-visual img {
  max-width: 520px;
  filter: drop-shadow(0 35px 70px rgba(11, 50, 104, 0.18));
}

.book-story-accent {
  max-width: 560px;
  margin: 0 0 1.5rem;
  color: rgba(11, 50, 104, 0.78);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.3;
}

.book-pill,
.book-tags span.book-pill {
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  background: #fff;
  border: 1px solid rgba(11, 50, 104, 0.12);
}

.book-quote-card {
  min-height: 100%;
  border: 1px solid rgba(11, 50, 104, 0.1);
  border-left: 0;
  box-shadow: none;
}

.review-card-featured blockquote {
  font-size: clamp(1.6rem, 2.4vw, 2.5rem);
  line-height: 1.15;
}

.book-extra {
  background: linear-gradient(135deg, #fbf6eb 0%, #ffffff 100%);
}

.book-signup-form {
  display: flex;
  gap: 0.75rem;
  max-width: 520px;
}

.book-signup-note {
  max-width: 520px;
  margin: 1rem 0 0;
  color: rgba(11, 50, 104, 0.62);
  font-family: var(--font-ui);
  font-size: 0.86rem;
  line-height: 1.55;
}

.book-about {
  background: #fff;
}

.book-about-image {
  overflow: hidden;
  border-radius: 28px 28px 64px 28px;
}

.book-about-image img,
.book-about-photo {
  width: 100%;
  max-height: 520px;
  min-height: 0;
  object-fit: cover;
  object-position: top center;
  border-radius: 0;
}

.readers-section {
  background: #fbf6eb;
}

.reader-card {
  height: 100%;
  min-height: 220px;
  padding: 2rem;
  background: #fff;
  border: 1px solid rgba(11, 50, 104, 0.1);
}

.reader-card blockquote {
  margin: 0 0 1.4rem;
  color: var(--ck-blue-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  line-height: 1.28;
}

.reader-card figcaption {
  color: rgba(11, 50, 104, 0.68);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 800;
}

.book-page .readers-section.grid-pattern,
.book-page .book-testimonials.grid-pattern {
  background-image: none;
}

@media (max-width: 768px) {
  .book-hero-visual img {
    max-width: 380px;
  }

  .book-signup-form {
    flex-direction: column;
  }

  .book-signup-form .btn {
    width: 100%;
  }

  .reader-card {
    min-height: auto;
    padding: 1.5rem;
  }
}


.book-page .book-hero h1 {
  max-width: 620px;
}


/* Book page top refinement */
.book-hero {
  background: radial-gradient(circle at 80% 45%, rgba(33, 87, 173, 0.10), transparent 34%), #fbf6eb;
  overflow: hidden;
}

.book-hero-visual {
  position: relative;
  align-items: flex-end;
  min-height: 540px;
}

.book-hero-visual::before {
  content: "";
  position: absolute;
  right: 4%;
  bottom: 8%;
  width: min(78%, 470px);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  background: rgba(33, 87, 173, 0.10);
  z-index: 0;
}

.book-hero-visual img {
  position: relative;
  z-index: 1;
  max-width: 560px;
  transform: translateY(24px);
  filter: drop-shadow(0 40px 80px rgba(11, 50, 104, 0.18));
}

.why-book-section {
  background: #fff;
}

.why-book-copy {
  max-width: 760px;
  border-left: 2px solid rgba(33, 87, 173, 0.22);
  padding-left: 2rem;
}

.why-book-copy .lead {
  margin-bottom: 1.4rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.35;
  color: #0b3268;
}

.why-book-copy p:not(.lead) {
  max-width: 640px;
  color: rgba(11, 50, 104, 0.72);
  line-height: 1.75;
}

.why-book-points {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .book-hero-visual {
    min-height: auto;
  }

  .book-hero-visual img {
    transform: none;
  }

  .why-book-copy {
    padding-left: 1.25rem;
  }
}

/* Book hero / why-book alignment fix */
.book-hero .book-hero-visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-hero .book-hero-visual::before {
  display: none;
}

.book-hero-orb {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(33, 87, 173, 0.10);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.book-hero .book-hero-visual img {
  position: relative;
  z-index: 2;
  max-width: 420px;
  width: 100%;
  transform: translateY(28px);
  filter: drop-shadow(0 35px 70px rgba(11, 50, 104, 0.18));
}

.why-book-title {
  max-width: 520px;
  font-size: clamp(2.4rem, 4vw, 4.25rem);
  line-height: 0.95;
}

.why-book-copy {
  max-width: 680px;
  border-left: 2px solid rgba(33, 87, 173, 0.22);
  padding-left: 2rem;
}

.why-book-copy .lead {
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
  line-height: 1.35;
}

@media (max-width: 991px) {
  .why-book-copy {
    border-left: 0;
    padding-left: 0;
  }

  .book-hero .book-hero-visual {
    min-height: 320px;
  }

  .book-hero-orb {
    width: 260px;
    height: 260px;
  }

  .book-hero .book-hero-visual img {
    max-width: 300px;
    transform: translateY(12px);
  }
}

/* Cooking / Millefeuille page */
.cooking-page {
  background: var(--ck-cream);
}

.cooking-hero {
  background: radial-gradient(circle at 82% 42%, rgba(33, 87, 173, 0.10), transparent 34%), #fbf6eb;
}

.cooking-hero h1,
.recipe-detail h1 {
  max-width: 660px;
  font-size: clamp(3rem, 5.8vw, 5.8rem);
  line-height: 0.95;
}

.cooking-brand-visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  text-align: center;
}

.cooking-brand-visual img {
  position: relative;
  z-index: 2;
  width: min(72%, 360px);
  filter: drop-shadow(0 22px 54px rgba(11, 50, 104, 0.12));
}

.cooking-brand-visual span {
  position: absolute;
  bottom: 3rem;
  color: rgba(11, 50, 104, 0.62);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
}

.cooking-plate {
  position: absolute;
  width: min(80%, 380px);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(11, 50, 104, 0.08);
  box-shadow: 0 28px 80px rgba(11, 50, 104, 0.07);
}

.featured-recipe-section,
.recipes-section,
.recipe-detail {
  background: #fff;
}

.featured-recipe {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  overflow: hidden;
  background: #fbf6eb;
  border: 1px solid rgba(11, 50, 104, 0.10);
}

.featured-recipe-content {
  padding: clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.recipe-image {
  min-height: 260px;
  background-color: #f4ede2;
  background-position: center;
  background-size: cover;
}

.recipe-image-salad {
  background-image: radial-gradient(circle at 25% 30%, rgba(116, 169, 112, .42), transparent 26%), radial-gradient(circle at 70% 52%, rgba(255, 217, 118, .62), transparent 24%), linear-gradient(135deg, #fbf6eb, #dceefa);
}

.recipe-image-citrus {
  background-image: radial-gradient(circle at 35% 42%, rgba(255, 210, 91, .85), transparent 22%), radial-gradient(circle at 62% 56%, rgba(112, 181, 154, .42), transparent 20%), linear-gradient(135deg, #fff, #fbf6eb);
}

.recipe-image-pasta {
  background-image: radial-gradient(circle at 45% 52%, rgba(247, 216, 139, .82), transparent 28%), radial-gradient(circle at 64% 36%, rgba(116, 169, 112, .32), transparent 18%), linear-gradient(135deg, #fffaf2, #f4ede2);
}

.recipe-image-veg {
  background-image: radial-gradient(circle at 32% 42%, rgba(178, 103, 78, .42), transparent 22%), radial-gradient(circle at 68% 52%, rgba(116, 169, 112, .50), transparent 24%), linear-gradient(135deg, #fbf6eb, #fff);
}

.recipe-image-sweet {
  background-image: radial-gradient(circle at 45% 38%, rgba(220, 238, 250, .95), transparent 24%), radial-gradient(circle at 64% 58%, rgba(219, 156, 158, .38), transparent 20%), linear-gradient(135deg, #fff, #fbf6eb);
}

.recipe-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(11, 50, 104, 0.10);
  transition: transform .2s ease, box-shadow .2s ease;
}

.recipe-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(11, 50, 104, 0.08);
}

.recipe-card .recipe-image {
  min-height: 190px;
}

.recipe-card-body {
  padding: 1.35rem;
}

.recipe-card h3 {
  margin-bottom: .75rem;
  color: var(--ck-blue-dark);
  font-size: clamp(1.35rem, 1.9vw, 1.8rem);
}

.recipe-card p {
  color: rgba(11, 50, 104, 0.68);
  line-height: 1.65;
}

.recipe-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 1.1rem;
  color: rgba(11, 50, 104, 0.65);
  font-family: var(--font-ui);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.recipe-meta span + span::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: .55rem;
  border-radius: 999px;
  background: rgba(11, 50, 104, 0.28);
  vertical-align: middle;
}

.recipe-filters button {
  border: 1px solid rgba(11, 50, 104, 0.12);
  border-radius: 999px;
  padding: .48rem .8rem;
  background: #fff;
  color: var(--ck-blue);
  font-family: var(--font-ui);
  font-size: .82rem;
  font-weight: 800;
}

.recipe-filters button.active,
.recipe-filters button:hover {
  background: var(--ck-blue);
  color: #fff;
  border-color: var(--ck-blue);
}

.millefeuille-note {
  background: #fbf6eb;
}

.millefeuille-cardmark {
  min-height: 300px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(11, 50, 104, 0.10);
}

.millefeuille-cardmark img {
  width: min(72%, 300px);
}

.recipe-detail-image {
  min-height: 420px;
  border-radius: 24px 24px 70px 24px;
}

.recipe-detail-list,
.recipe-detail-steps {
  color: rgba(11, 50, 104, 0.76);
  line-height: 1.85;
}

.recipe-detail-list li,
.recipe-detail-steps li {
  padding: .45rem 0;
  border-bottom: 1px solid rgba(11, 50, 104, 0.08);
}

@media (max-width: 991px) {
  .featured-recipe {
    grid-template-columns: 1fr;
  }

  .cooking-brand-visual {
    min-height: 320px;
  }
}

@media (max-width: 768px) {
  .cooking-hero h1,
  .recipe-detail h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .recipe-filters {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    padding-bottom: .25rem;
  }

  .recipe-filters button {
    white-space: nowrap;
  }
}

/* Cooking page Millefeuille brand refinement */
.cooking-brand-visual img {
  width: min(88%, 460px);
  min-width: min(100%, 420px);
}

.cooking-plate {
  width: min(92%, 500px);
}

.millefeuille-intro {
  background: #fff;
}

.millefeuille-intro-photo {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: top center;
  border-radius: 28px 28px 72px 28px;
  box-shadow: 0 24px 65px rgba(11, 50, 104, 0.10);
}

.featured-recipe-section {
  background: #fbf6eb;
}

.featured-recipe-story {
  background: transparent;
  border: 0;
  overflow: visible;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.featured-recipe-story .recipe-image {
  min-height: 440px;
  border-radius: 28px 28px 86px 28px;
  box-shadow: 0 24px 70px rgba(11, 50, 104, 0.10);
}

.featured-recipe-story .featured-recipe-content {
  padding: 0;
}

.featured-recipe-subtitle {
  margin: 0 0 1rem;
  color: var(--ck-blue-dark);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recipe-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.recipe-card-link:hover {
  color: inherit;
}

.recipe-card-link .recipe-card-body {
  min-height: 168px;
}

.millefeuille-note {
  background: #fff;
}

.millefeuille-note .section-title {
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: 0.9;
  max-width: 620px;
}

.millefeuille-note .section-lead {
  max-width: 620px;
}

.millefeuille-cardmark {
  min-height: 420px;
  border-radius: 0;
  background: #fbf6eb;
}

.millefeuille-cardmark img {
  width: min(86%, 420px);
}

.season-table-section {
  background: #fbf6eb;
}

.season-card {
  height: 100%;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid rgba(11, 50, 104, 0.10);
}

.season-card span {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--ck-blue-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1;
}

.season-card p {
  margin: 0;
  color: rgba(11, 50, 104, 0.66);
  line-height: 1.6;
}

@media (max-width: 991px) {
  .cooking-brand-visual img {
    min-width: 0;
    width: min(82%, 360px);
  }

  .featured-recipe-story .recipe-image {
    min-height: 320px;
  }
}

/* Temporary generated cooking hero image */
.cooking-hero-image {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
}

.cooking-hero-image::before {
  content: "";
  position: absolute;
  inset: 9% -5% -7% 12%;
  border-radius: 999px;
  background: rgba(33, 87, 173, 0.10);
  z-index: 0;
}

.cooking-hero-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: min(100%, 420px);
  display: block;
  border-radius: 30px 30px 84px 30px;
  box-shadow: 0 32px 85px rgba(11, 50, 104, 0.16);
  object-fit: cover;
}

@media (max-width: 991px) {
  .cooking-hero-image {
    max-width: 480px;
    margin: 0 auto;
  }

  .cooking-hero-image img {
    min-width: 0;
  }
}

/* Adviseert / Catch Vastgoedadvies page */
.advice-page {
  background: var(--ck-cream);
}

.advice-hero {
  background: radial-gradient(circle at 82% 42%, rgba(33, 87, 173, 0.10), transparent 34%), #fbf6eb;
}

.advice-hero h1 {
  max-width: 680px;
  font-size: clamp(3rem, 5.8vw, 5.8rem);
  line-height: 0.95;
}

.advice-hero-photo {
  position: relative;
  max-width: 520px;
  margin-left: auto;
}

.advice-hero-photo::before {
  content: "";
  position: absolute;
  inset: 12% -8% -8% 16%;
  border-radius: 999px;
  background: rgba(33, 87, 173, 0.10);
}

.advice-hero-photo img,
.advice-personal-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: top center;
  border-radius: 28px 28px 78px 28px;
  box-shadow: 0 30px 78px rgba(11, 50, 104, 0.14);
}

.advice-why,
.advice-audience,
.advice-testimonials {
  background: #fff;
}

.advice-process,
.catch-section,
.advice-personal {
  background: #fbf6eb;
}

.advice-editorial-text {
  max-width: 720px;
  margin: 0 0 2rem;
  color: var(--ck-blue-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  line-height: 1.3;
}

.advice-points,
.advice-labels {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.advice-points span,
.advice-labels span {
  border: 1px solid rgba(11, 50, 104, 0.12);
  border-radius: 999px;
  padding: .48rem .85rem;
  background: #fff;
  color: var(--ck-blue);
  font-family: var(--font-ui);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.advice-steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(11, 50, 104, 0.12);
}

.advice-steps span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--ck-blue);
  color: #fff;
  font-family: var(--font-ui);
  font-weight: 800;
}

.advice-steps strong {
  display: block;
  color: var(--ck-blue-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1;
}

.advice-steps p {
  grid-column: 2;
  margin: .35rem 0 0;
  color: rgba(11, 50, 104, 0.66);
  line-height: 1.65;
}

.catch-mark {
  min-height: 330px;
  display: grid;
  place-items: center;
  align-content: center;
  background: #fff;
  border: 1px solid rgba(11, 50, 104, 0.10);
  color: var(--ck-blue);
  text-align: center;
}

.catch-mark span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 7vw, 7rem);
  font-weight: 700;
  line-height: .9;
}

.catch-mark small {
  margin-top: .75rem;
  font-family: var(--font-ui);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.advice-card {
  height: 100%;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid rgba(11, 50, 104, 0.10);
}

.advice-card h3 {
  margin-bottom: .75rem;
  color: var(--ck-blue-dark);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.advice-card p {
  margin: 0;
  color: rgba(11, 50, 104, 0.66);
  line-height: 1.65;
}

@media (max-width: 991px) {
  .advice-hero-photo {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .advice-hero h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .advice-steps li {
    grid-template-columns: 42px 1fr;
  }
}

/* Adviseert page refinements */
.advice-timeline {
  position: relative;
  padding-left: 0;
}

.advice-timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 2rem;
  bottom: 2rem;
  width: 1px;
  background: rgba(11, 50, 104, 0.16);
}

.advice-timeline li {
  position: relative;
  grid-template-columns: 48px 1fr;
  border-bottom: 0;
}

.advice-timeline span {
  position: relative;
  z-index: 1;
  background: #fbf6eb;
  border: 2px solid var(--ck-blue);
  color: var(--ck-blue);
}

.catch-quote {
  margin: 0 0 1.5rem;
  color: var(--ck-blue-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.8vw, 2.8rem);
  line-height: 1.12;
}

.advice-personal-quote {
  margin: 1.5rem 0 0;
  color: rgba(11, 50, 104, 0.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  font-style: italic;
  line-height: 1.35;
}

.advice-personal-quote cite {
  display: block;
  margin-top: 0.85rem;
  color: rgba(11, 50, 104, 0.62);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.advice-testimonials .col-lg-6 .voice-quote blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  line-height: 1.18;
}

/* Adviseert final editorial polish */
.advice-main-quote {
  margin: 0 0 1.4rem;
  color: var(--ck-blue-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.advice-support-text {
  max-width: 620px;
  margin: 0 0 2rem;
  color: rgba(11, 50, 104, 0.72);
  line-height: 1.75;
}

.advice-timeline::before {
  top: 0;
  bottom: 0;
  height: 100%;
}

.advice-timeline span {
  width: 46px;
  height: 46px;
  font-size: 1rem;
}

.catch-section-refined .row {
  --bs-gutter-x: 2.5rem;
}

.catch-title {
  max-width: 360px;
  font-size: clamp(2rem, 3.2vw, 3.3rem);
}

.catch-section-refined .catch-quote {
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.advice-editorial-card {
  padding: 1.1rem 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(11, 50, 104, 0.12);
}

.advice-editorial-card h3 {
  margin-bottom: 0.75rem;
}

.advice-editorial-card p {
  max-width: 280px;
}

/* Over Catherine page */
.about-page {
  background: var(--ck-cream);
}

.about-hero {
  background: radial-gradient(circle at 82% 42%, rgba(33, 87, 173, 0.10), transparent 34%), #fbf6eb;
}

.about-hero h1 {
  max-width: 680px;
  font-size: clamp(3rem, 5.8vw, 5.8rem);
  line-height: 0.95;
}

.about-hero-photo {
  position: relative;
  max-width: 520px;
  margin-left: auto;
}

.about-hero-photo::before {
  content: "";
  position: absolute;
  inset: 10% -8% -8% 16%;
  border-radius: 999px;
  background: rgba(33, 87, 173, 0.10);
}

.about-hero-photo img,
.about-story-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: top center;
  border-radius: 28px 28px 78px 28px;
  box-shadow: 0 30px 78px rgba(11, 50, 104, 0.14);
}

.about-intro-story,
.about-gallery-section,
.about-testimonials {
  background: #fff;
}

.about-worlds-section,
.about-timeline-section,
.about-values-section {
  background: #fbf6eb;
}

.about-timeline {
  position: relative;
  max-width: 760px;
}

.about-timeline::before {
  content: "";
  position: absolute;
  left: 132px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(11, 50, 104, 0.14);
}

.about-timeline li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 2rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(11, 50, 104, 0.10);
}

.about-timeline span {
  color: rgba(11, 50, 104, 0.62);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-timeline strong {
  display: block;
  color: var(--ck-blue-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.1;
}

.about-image-tile {
  margin: 0;
}

.about-image-tile img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px 20px 54px 20px;
}

.about-image-tile figcaption {
  margin-top: 0.75rem;
  color: rgba(11, 50, 104, 0.68);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-value {
  height: 100%;
  padding: 1.3rem 0;
  border-top: 1px solid rgba(11, 50, 104, 0.12);
}

.about-value h3 {
  margin-bottom: 0.75rem;
  color: var(--ck-blue-dark);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.about-value p {
  max-width: 280px;
  margin: 0;
  color: rgba(11, 50, 104, 0.66);
  line-height: 1.65;
}

.about-quote-section {
  background: #fff;
}

.about-big-quote {
  max-width: 980px;
  margin: 0 auto;
  color: var(--ck-blue-dark);
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.about-big-quote cite {
  display: block;
  margin-top: 1.5rem;
  color: rgba(11, 50, 104, 0.62);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-testimonials .col-lg-6 .voice-quote blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  line-height: 1.18;
}

@media (max-width: 991px) {
  .about-hero-photo {
    margin: 0 auto;
  }

  .about-timeline::before {
    left: 0;
  }

  .about-timeline li {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    padding-left: 1.25rem;
  }
}

@media (max-width: 768px) {
  .about-hero h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }
}

/* Contact and booking pages */
.contact-page,
.booking-page {
  background: var(--ck-cream);
}

.contact-page-section,
.booking-hero {
  background: radial-gradient(circle at 82% 42%, rgba(33, 87, 173, 0.10), transparent 34%), #fbf6eb;
}

.contact-page-section h1,
.booking-hero h1 {
  max-width: 720px;
  color: var(--ck-blue-dark);
  font-size: clamp(3rem, 5.8vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.contact-info-list {
  display: grid;
  gap: 1rem;
}

.contact-info-card {
  display: block;
  padding: 1.25rem 0;
  color: var(--ck-blue);
  text-decoration: none;
  border-top: 1px solid rgba(11, 50, 104, 0.12);
}

.contact-info-card span,
.contact-form label {
  display: block;
  margin-bottom: 0.35rem;
  color: rgba(11, 50, 104, 0.62);
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-info-card strong {
  display: block;
  color: var(--ck-blue-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  line-height: 1.1;
}

.contact-info-card:hover strong {
  color: var(--ck-blue);
}

.contact-form {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: #fff;
  border: 1px solid rgba(11, 50, 104, 0.10);
  border-radius: 24px 24px 64px 24px;
  box-shadow: 0 24px 70px rgba(11, 50, 104, 0.07);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  color: var(--ck-blue-dark);
  background: #fbf6eb;
  border: 1px solid rgba(11, 50, 104, 0.12);
  border-radius: 14px;
  outline: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(33, 87, 173, 0.42);
  box-shadow: 0 0 0 0.2rem rgba(33, 87, 173, 0.08);
}

.contact-personal-note {
  max-width: 580px;
  margin: 2rem 0 0;
  color: var(--ck-blue-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-style: italic;
  line-height: 1.25;
}

.contact-personal-note cite {
  display: block;
  margin-top: 0.9rem;
  color: rgba(11, 50, 104, 0.62);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-hero-photo {
  position: relative;
  max-width: 460px;
  margin-left: auto;
}

.booking-hero-photo::before {
  content: "";
  position: absolute;
  inset: 10% -8% -10% 18%;
  border-radius: 999px;
  background: rgba(33, 87, 173, 0.10);
}

.booking-hero-photo img,
.booking-personal-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 28px 28px 78px 28px;
  box-shadow: 0 30px 78px rgba(11, 50, 104, 0.14);
}

.booking-hero-photo img {
  aspect-ratio: 4 / 5;
}

.booking-options,
.booking-conversations,
.booking-personal {
  background: #fff;
}

.booking-work,
.booking-collab {
  background: #fbf6eb;
}

.booking-card {
  height: 100%;
  padding: 1.4rem 0;
  background: transparent;
  border-top: 1px solid rgba(11, 50, 104, 0.12);
}

.booking-card h3,
.booking-feature h2 {
  color: var(--ck-blue-dark);
}

.booking-card h3 {
  margin-bottom: 0.75rem;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 800;
}

.booking-card p,
.booking-feature p {
  margin: 0;
  color: rgba(11, 50, 104, 0.68);
  line-height: 1.65;
}

.booking-feature {
  height: 100%;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: #fff;
  border: 1px solid rgba(11, 50, 104, 0.10);
  border-radius: 22px;
}

.booking-feature h2 {
  max-width: 440px;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
}

.booking-feature p {
  margin-bottom: 1.5rem;
}

.booking-personal-photo {
  max-height: 560px;
}

@media (max-width: 991px) {
  .booking-hero-photo {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .contact-page-section h1,
  .booking-hero h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .contact-form {
    border-radius: 20px 20px 48px 20px;
  }
}

/* Booking conversion polish */
.booking-availability,
.booking-request-section {
  background: #fff;
}

.booking-availability-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  background: #fbf6eb;
  border: 1px solid rgba(11, 50, 104, 0.10);
  border-radius: 24px;
}

.booking-availability-panel h2 {
  margin-bottom: 0.75rem;
  color: var(--ck-blue-dark);
  font-size: clamp(2rem, 3.2vw, 3.6rem);
  line-height: 1;
}

.booking-availability-panel p {
  max-width: 620px;
  margin: 0;
  color: rgba(11, 50, 104, 0.68);
  line-height: 1.65;
}

.booking-availability-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.booking-availability-list span {
  padding: 0.55rem 0.8rem;
  color: var(--ck-blue-dark);
  background: #fff;
  border: 1px solid rgba(11, 50, 104, 0.10);
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 800;
}

.booking-service-card {
  height: 100%;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid rgba(11, 50, 104, 0.10);
  border-radius: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.booking-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(33, 87, 173, 0.22);
  box-shadow: 0 18px 44px rgba(11, 50, 104, 0.08);
}

.booking-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.25rem;
  color: var(--ck-blue);
  background: #dceefa;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.booking-service-card h3 {
  margin-bottom: 0.75rem;
  color: var(--ck-blue-dark);
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 800;
}

.booking-service-card p {
  margin-bottom: 1.2rem;
  color: rgba(11, 50, 104, 0.68);
  line-height: 1.65;
}

.booking-service-card a {
  color: var(--ck-blue);
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.booking-request-form {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: #fff;
  border: 1px solid rgba(11, 50, 104, 0.10);
  border-radius: 24px 24px 64px 24px;
  box-shadow: 0 24px 70px rgba(11, 50, 104, 0.07);
}

.booking-request-form label {
  display: block;
  margin-bottom: 0.35rem;
  color: rgba(11, 50, 104, 0.62);
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-request-form input,
.booking-request-form select,
.booking-request-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  color: var(--ck-blue-dark);
  background: #fbf6eb;
  border: 1px solid rgba(11, 50, 104, 0.12);
  border-radius: 14px;
  outline: 0;
}

.booking-request-form input:focus,
.booking-request-form select:focus,
.booking-request-form textarea:focus {
  border-color: rgba(33, 87, 173, 0.42);
  box-shadow: 0 0 0 0.2rem rgba(33, 87, 173, 0.08);
}

@media (max-width: 991px) {
  .booking-availability-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .booking-availability-panel .btn {
    width: 100%;
  }

  .booking-request-form {
    border-radius: 20px 20px 48px 20px;
  }
}

/* Booking page refinement */
.booking-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.booking-hero-pills span {
  padding: 0.5rem 0.75rem;
  color: var(--ck-blue-dark);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(11, 50, 104, 0.10);
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 800;
}

.booking-service-card-featured {
  min-height: 280px;
  padding: clamp(1.6rem, 3vw, 2.25rem);
  background: #fbf6eb;
}

.booking-service-card-featured h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.booking-why {
  background: #fbf6eb;
}

.booking-reason {
  height: 100%;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(11, 50, 104, 0.14);
}

.booking-reason h3 {
  margin-bottom: 0.75rem;
  color: var(--ck-blue-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
  line-height: 1.08;
}

.booking-reason p {
  max-width: 340px;
  margin: 0;
  color: rgba(11, 50, 104, 0.68);
  line-height: 1.65;
}

.booking-conversation-quote {
  max-width: 760px;
  margin: 0 0 1.5rem;
  color: var(--ck-blue-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.booking-request-form label span {
  color: rgba(11, 50, 104, 0.45);
  font-weight: 700;
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .booking-service-card-featured {
    min-height: 0;
  }
}

.booking-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(33, 87, 173, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2157AD;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.booking-icon i {
  line-height: 1;
}

/* Fix voice-over studio check icons without relying on encoded glyphs */
.voice-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--ck-blue);
}

.voice-check-list li::after {
  content: "";
  position: absolute;
  left: 0.48rem;
  top: 1.22rem;
  width: 0.42rem;
  height: 0.7rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}
