/* ============================================
   Robert van der Zwart — Personal Website
   Dark Executive Theme
   ============================================ */

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

:root {
  --navy: #0f1a2e;
  --navy-light: #1a2d4a;
  --navy-mid: #152238;
  --gold: #c9a84c;
  --gold-light: #d4b96a;
  --gold-dark: #b8953a;
  --white: #ffffff;
  --off-white: #f5f5f7;
  --gray-100: #e8e8ec;
  --gray-200: #d1d1d8;
  --gray-400: #9898a6;
  --gray-600: #6b6b7b;
  --gray-800: #2e2e3a;
  --text-dark: #1a1a2e;
  --text-light: #e0e0e8;
  --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --max-width: 1200px;
  --section-padding: 100px 0;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}


/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}


/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(15, 26, 46, 0.3);
}


/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 26, 46, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.nav-cta {
  padding: 0.55rem 1.4rem !important;
  font-size: 0.85rem !important;
  border-radius: 4px;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-120%);
    transition: transform var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav-links.open {
    transform: translateY(0);
  }
}


/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 72px;
}

.hero h1 {
  color: var(--white);
  max-width: 700px;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}


/* --- Logos / Trusted By --- */
.logos-section {
  padding: 60px 0;
  background: var(--off-white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.logos-section p {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 2rem;
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Placeholder logos (text-based until real logos are added) */
.logo-placeholder {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-600);
  letter-spacing: 0.05em;
  white-space: nowrap;
}


/* --- Stats Strip --- */
.stats {
  padding: 70px 0;
  background: var(--navy);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 500;
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1rem;
  }
}


/* --- Services Overview --- */
.services {
  padding: var(--section-padding);
  background: var(--white);
}

.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.services-header p {
  color: var(--gray-600);
  margin-top: 1rem;
  font-size: 1.05rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  transition: all var(--transition);
  position: relative;
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(15, 26, 46, 0.08);
}

.service-card-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.service-card h3 {
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.service-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-card .card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.service-card .card-link:hover {
  color: var(--navy);
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}


/* --- Testimonial --- */
.testimonial {
  padding: var(--section-padding);
  background: var(--off-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.testimonial-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.testimonial blockquote {
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  line-height: 1.7;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial blockquote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--gold);
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--gray-600);
  font-weight: 500;
}

.testimonial cite strong {
  color: var(--text-dark);
  display: block;
  margin-bottom: 0.2rem;
}


/* --- Speaker Reel --- */
.reel {
  padding: var(--section-padding);
  background: var(--navy);
}

.reel-header {
  text-align: center;
  margin-bottom: 3rem;
}

.reel-header h2 {
  color: var(--white);
}

.reel-header p {
  color: rgba(255,255,255,0.55);
  margin-top: 0.75rem;
}

.reel-wrapper {
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: var(--navy-mid);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.reel-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.3);
}

.reel-placeholder .play-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  transition: all var(--transition);
  cursor: pointer;
}

.reel-placeholder .play-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.reel-wrapper iframe,
.reel-wrapper video {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  object-fit: cover;
}


/* --- CTA Banner --- */
.cta-banner {
  padding: 80px 0;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.cta-banner p {
  color: rgba(255,255,255,0.55);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  position: relative;
}

.availability-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  font-size: 0.85rem !important;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  margin-bottom: 1.5rem !important;
  position: relative;
  letter-spacing: 0.02em;
}

.page-header .availability-badge {
  color: var(--gold-dark) !important;
  background: rgba(201, 168, 76, 0.1);
  margin-top: 0.5rem;
}


/* --- Footer --- */
.footer {
  background: #0a1220;
  padding: 50px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  max-width: 300px;
  line-height: 1.6;
}

.footer-links h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact a {
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255,255,255,0.25);
  font-size: 0.8rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: rgba(255,255,255,0.3);
  font-size: 1.1rem;
  transition: color var(--transition);
}

.footer-social a:hover {
  color: var(--gold);
}


/* --- Page Header (inner pages) --- */
.page-header {
  padding: 140px 0 60px;
  background: var(--navy);
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-header p {
  color: rgba(255,255,255,0.5);
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto;
}


/* --- Speaking Page --- */
.topics {
  padding: var(--section-padding);
}

.topic-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.topic-item:last-child {
  border-bottom: none;
}

.topic-item.reverse {
  direction: rtl;
}

.topic-item.reverse > * {
  direction: ltr;
}

.topic-number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: 1rem;
}

.topic-item h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.topic-item p {
  color: var(--gray-600);
  line-height: 1.7;
}

.topic-visual {
  background: var(--off-white);
  border-radius: 8px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .topic-item {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .topic-item.reverse { direction: ltr; }
}


/* --- Formats section --- */
.formats {
  padding: var(--section-padding);
  background: var(--off-white);
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.format-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
}

.format-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.format-card h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.format-card .duration {
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.format-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.7;
}

.format-card-featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.04) 0%, var(--white) 100%);
  position: relative;
}

.format-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.format-card .card-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition);
}

.format-card .card-link:hover {
  color: var(--gold);
}

@media (max-width: 768px) {
  .formats-grid {
    grid-template-columns: 1fr;
  }
}


/* --- About Page --- */
.about-story {
  padding: var(--section-padding);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-photo {
  background: var(--off-white);
  border-radius: 8px;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 0.9rem;
  border: 1px solid var(--gray-100);
}

.about-text p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.about-text p:first-of-type {
  font-size: 1.1rem;
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.credentials {
  padding: var(--section-padding);
  background: var(--off-white);
}

.credentials-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 700px;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.credential-item .check {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.credential-item p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .credentials-list {
    grid-template-columns: 1fr;
  }
}

.press {
  padding: var(--section-padding);
}

.press-header {
  text-align: center;
  margin-bottom: 3rem;
}

.press-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}


/* --- Book Page --- */
.booking {
  padding: var(--section-padding);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
}

.booking-form {
  background: var(--white);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-family: var(--font-body);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  background: var(--white);
  color: var(--text-dark);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.booking-info {
  padding-top: 1rem;
}

.booking-info h3 {
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.contact-item .icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item p {
  font-size: 0.95rem;
  color: var(--gray-600);
}

.contact-item p strong {
  color: var(--text-dark);
  display: block;
  margin-bottom: 0.15rem;
}

.response-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}


/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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


/* --- Utilities --- */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }


/* --- Hero with portrait --- */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding-top: 72px;
}

.hero-portrait {
  position: relative;
}

.hero-portrait img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  margin-left: auto;
  display: block;
}

.hero-portrait::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--gold);
  border-radius: 12px;
  opacity: 0.2;
  z-index: -1;
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding-top: 100px;
    min-height: auto;
    padding-bottom: 4rem;
  }
  .hero-portrait { order: -1; }
  .hero-portrait img {
    max-width: 260px;
    margin: 0 auto;
  }
  .hero-buttons { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
}


/* --- Logo placeholders styled --- */
.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 56px;
  padding: 0.5rem;
  transition: all var(--transition);
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.75);
  transition: all var(--transition);
}

.logo-item:hover img {
  filter: grayscale(0) opacity(1);
}

.logo-item span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .logo-item {
    width: 110px;
    height: 48px;
    padding: 0.4rem;
  }
  .logo-item span {
    font-size: 0.7rem;
  }
}


/* --- Reel with poster --- */
.reel-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: opacity var(--transition);
}

.reel-poster:hover {
  opacity: 0.85;
}


/* --- Topic visual images --- */
.topic-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}


/* --- About photo image --- */
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}


/* --- Press logo items --- */
.press-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 64px;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  z-index: 1;
}

a.press-item {
  text-decoration: none;
  display: flex;
  cursor: pointer;
}

.press-item:hover {
  border-color: var(--gold);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.press-item img {
  max-width: 85%;
  max-height: 80%;
  object-fit: contain;
  pointer-events: none;
}

.press-item span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-400);
}


/* --- Form success state --- */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
}

.form-success .success-icon {
  width: 64px;
  height: 64px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
}

.form-success h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--gray-600);
  font-size: 0.95rem;
}


/* --- About Summary (GEO block) --- */
.about-summary {
  padding: 5rem 0;
  background: var(--off-white);
}

.about-summary article {
  max-width: 780px;
}

.about-summary h2 {
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.about-summary p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-summary p:last-child {
  margin-bottom: 0;
}

.about-photo-wide {
  margin-top: 3rem;
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.about-photo-wide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  max-height: 480px;
}

@media (max-width: 768px) {
  .about-photo-wide img {
    max-height: 300px;
  }
}


/* --- Blog Feed --- */
.blog-feed {
  padding: 4rem 0 5rem;
}

.substack-subscribe {
  max-width: 480px;
  margin: 0 auto 3rem;
  text-align: center;
}

.substack-embed {
  max-width: 780px;
  margin: 0 auto 4rem;
}

.blog-cta {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.blog-cta h2 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.blog-cta p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}


/* --- Booking Process Steps --- */
.booking-process {
  padding: 4rem 0;
  background: var(--white);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.process-step h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.process-connector {
  width: 60px;
  min-width: 60px;
  height: 2px;
  background: var(--gray-200);
  margin-top: 24px;
  position: relative;
}

.process-connector::after {
  content: '\2192';
  position: absolute;
  top: -10px;
  right: -4px;
  color: var(--gold);
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .process-connector {
    width: 2px;
    height: 40px;
    min-width: 2px;
    margin-top: 0;
  }

  .process-connector::after {
    content: '\2193';
    top: auto;
    bottom: -4px;
    right: -8px;
  }
}
