/* =====================================================
   Maaike Coppens — portfolio
   Palette: navy / cream / orange (+ touch of yellow)
   No gradients. Ever.
   ===================================================== */

:root {
  --navy: #1e3a5f;
  --navy-deep: #162d4b;
  --orange: #ff7c44;
  --orange-soft: #ffb38f;
  --yellow: #f2b84b;
  --cream: #efe7da;
  --cream-light: #faf7f1;
  --white: #ffffff;
  --ink: #223047;
  --ink-soft: #4d5b72;
  --brown: #9c6b4e;

  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-border: rgba(255, 255, 255, 0.75);
  --glass-shadow: 0 8px 32px rgba(30, 58, 95, 0.10);

  --font-head: "Poppins", "Avenir Next", sans-serif;
  --font-body: "Inter", "Helvetica Neue", sans-serif;
  --font-quote: "Lora", Georgia, serif;

  --radius: 22px;
  --radius-sm: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--cream-light);
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

h1, h2, h3 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.9rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }

p { color: var(--ink-soft); }

section { position: relative; }

.section { padding: 110px 0; }

.section-tinted { background-color: var(--cream); }

.section-eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--orange);
  margin-bottom: 14px;
}

.section-eyebrow.light { color: var(--orange-soft); }

.section-title { margin-bottom: 52px; }

.services-lede {
  max-width: 640px;
  margin: -32px 0 52px;
  font-size: 1.12rem;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

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

.btn-primary {
  background-color: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(255, 124, 68, 0.35);
}
.btn-primary:hover { background-color: #f06c33; }

.btn-ghost {
  color: var(--navy);
  border: 2px solid var(--navy);
  background-color: transparent;
}
.btn-ghost:hover { background-color: rgba(30, 58, 95, 0.06); }

.btn-cream {
  background-color: var(--cream);
  color: var(--navy);
}
.btn-cream:hover { background-color: var(--white); }

.btn-outline-cream {
  color: var(--cream);
  border: 2px solid rgba(239, 231, 218, 0.7);
}
.btn-outline-cream:hover { background-color: rgba(239, 231, 218, 0.12); }

/* ---------- Glass ---------- */

.glass, .glass-card, .glass-chip {
  background-color: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

/* ---------- Logo ---------- */

.logo-mark { height: 30px; width: auto; display: block; }
.logo-mark-big { height: 90px; width: auto; }
.logo-m { fill: var(--navy); }
.logo-c { fill: var(--orange); }

/* ---------- Nav ---------- */

.nav-wrap {
  position: sticky;
  top: 16px;
  z-index: 50;
  width: min(1120px, 94%);
  margin: 16px auto 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 12px 22px;
  border-radius: 999px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.15s ease;
}

.nav-links a:hover { color: var(--orange); }

.nav-cta { padding: 10px 24px; font-size: 0.95rem; white-space: nowrap; }

/* dropdowns */

.has-dropdown { position: relative; }

.nav-top { display: inline-block; padding: 8px 0; }

.nav-top::after {
  content: "▾";
  font-size: 0.7em;
  margin-left: 6px;
  color: var(--orange);
}

/* invisible hover bridge between the trigger and the panel */
.has-dropdown::before {
  content: "";
  position: absolute;
  top: 100%;
  left: -16px;
  right: -16px;
  height: 26px;
}

.dropdown {
  list-style: none;
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 230px;
  padding: 10px;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 18px 44px rgba(30, 58, 95, 0.16);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dropdown a {
  display: block;
  padding: 9px 14px;
  border-radius: 10px;
  white-space: nowrap;
  font-size: 0.92rem;
}

.dropdown a:hover {
  background-color: var(--cream);
  color: var(--navy);
}

/* burger (hidden on desktop) */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: none;
  border-radius: 12px;
  background-color: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background-color: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  padding: 90px 0 100px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--navy);
  margin-bottom: 22px;
}

.eyebrow-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background-color: var(--orange);
  display: inline-block;
}

.accent-underline {
  position: relative;
  white-space: nowrap;
}

.accent-underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 6px;
  height: 12px;
  background-color: rgba(255, 124, 68, 0.35);
  z-index: -1;
  border-radius: 6px;
}

.lede {
  font-size: 1.15rem;
  max-width: 560px;
  margin: 24px 0 34px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 38px; }

.cred-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
}

.glass-chip {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 999px;
}

.glass-chip em { font-style: italic; }

/* hero shapes */

.hero-shapes { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.dot-wave { position: absolute; }

.dot-wave-hero {
  width: 380px;
  right: -40px;
  bottom: 30px;
  opacity: 0.9;
}

.shape { position: absolute; }

.shape-quarter {
  width: 190px; height: 190px;
  background-color: var(--cream);
  border-radius: 0 0 0 190px;
  top: 0; right: 0;
}

.shape-pill {
  width: 60px; height: 150px;
  background-color: rgba(242, 184, 75, 0.5);
  border-radius: 999px;
  left: -28px; bottom: 60px;
  transform: rotate(24deg);
}

/* hero photo */

.hero-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}

.hero-photo img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(30, 58, 95, 0.22);
}

.hero-photo::before {
  content: "";
  position: absolute;
  width: 120px; height: 120px;
  background-color: var(--orange);
  border-radius: 50%;
  right: -34px; top: -34px;
  z-index: -1;
}

.photo-fallback { display: none; }

.hero-photo.empty .photo-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 5;
  background-color: var(--cream);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(30, 58, 95, 0.16);
}

.photo-tag {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
  white-space: nowrap;
}

/* ---------- Trust strip ---------- */

.trust { padding: 34px 0 30px; border-top: 1px solid rgba(30, 58, 95, 0.08); border-bottom: 1px solid rgba(30, 58, 95, 0.08); }

.trust-label {
  text-align: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 46px;
  list-style: none;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: rgba(30, 58, 95, 0.55);
}

.trust-logos a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

.trust-logos a:hover { color: var(--orange); }

.od-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 124, 68, 0.35);
  transition: color 0.15s ease;
}

.od-link:hover { color: var(--orange); }

/* ---------- About ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.6fr;
  gap: 70px;
  align-items: start;
}

.big-number {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(6rem, 11vw, 9.5rem);
  line-height: 0.9;
  color: var(--orange);
  display: block;
}

.big-number sup { font-size: 0.35em; color: var(--navy); }

.big-number-label {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy);
  margin-top: 14px;
  max-width: 220px;
}

.about-body h2 { margin-bottom: 24px; }
.about-body p + p { margin-top: 18px; }

.inline-link {
  color: var(--orange);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 124, 68, 0.4);
}

.inline-link:hover { border-bottom-color: var(--orange); }

.pull-quote {
  margin: 32px 0;
  padding: 26px 30px;
  border-left: 4px solid var(--orange);
  background-color: var(--cream);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.pull-quote p {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 1.18rem;
  color: var(--navy);
}

/* ---------- Services ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  border-radius: var(--radius);
  padding: 38px 32px 34px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(30, 58, 95, 0.14);
}

/* oversized numbers overhang the card frame, like the carousel templates */
.card-number {
  position: absolute;
  top: -44px;
  right: -12px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 7.5rem;
  line-height: 1;
  color: rgba(255, 124, 68, 0.35);
  user-select: none;
  pointer-events: none;
}

.card h3 { margin-bottom: 14px; position: relative; }
.card p { position: relative; }

.card-list {
  margin-top: 18px;
  list-style: none;
  position: relative;
}

.card-list li {
  padding-left: 24px;
  position: relative;
  margin-top: 8px;
  font-size: 0.95rem;
  color: var(--ink);
}

.card-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background-color: var(--yellow);
}

/* ---------- Speaking ---------- */

.speaking-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 70px;
  align-items: center;
}

.speaking-copy h2 { margin-bottom: 20px; }

.topic-list {
  list-style: none;
  margin: 28px 0 34px;
}

.topic-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--navy);
  padding: 10px 0;
  border-bottom: 1px dashed rgba(30, 58, 95, 0.18);
}

.topic-dot {
  flex: none;
  width: 12px; height: 12px;
  border-radius: 50%;
  background-color: var(--orange);
}

.award-stack { display: flex; flex-direction: column; gap: 16px; }

.award {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: var(--radius-sm);
}

.award-icon {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  background-color: var(--navy);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.award strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--navy);
  line-height: 1.3;
}

.award span:not(.award-icon) {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ---------- Work ---------- */

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.work-card {
  border-radius: var(--radius);
  padding: 34px 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.work-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(30, 58, 95, 0.14);
}

.work-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brown);
  background-color: rgba(156, 107, 78, 0.12);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.work-card h3 { margin-bottom: 12px; }

/* ---------- Books ---------- */

.books-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.book-visual { position: relative; }

.book-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(30, 58, 95, 0.25);
  transform: rotate(-2deg);
}

.book-frame img { width: 100%; display: block; }

.dot-wave-books {
  width: 240px;
  bottom: -46px;
  right: -30px;
}

.books-copy h2 { margin-bottom: 30px; }

.book-item + .book-item { margin-top: 26px; }

.book-item h3 { margin-bottom: 8px; }

.book-pub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--orange);
}

.book-link {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--orange);
  text-decoration: none;
}

.book-link:hover { text-decoration: underline; }

/* ---------- Contact ---------- */

.contact-card {
  position: relative;
  overflow: hidden;
  background-color: var(--navy);
  border-radius: 34px;
  padding: 80px 70px;
  text-align: center;
}

.contact-card h2 {
  color: var(--cream-light);
  max-width: 640px;
  margin: 0 auto 18px;
}

.contact-lede {
  color: rgba(239, 231, 218, 0.8);
  max-width: 520px;
  margin: 0 auto 38px;
}

.contact-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.contact-shapes { position: absolute; inset: 0; pointer-events: none; }

.shape-quarter-cream {
  width: 150px; height: 150px;
  background-color: rgba(239, 231, 218, 0.12);
  border-radius: 0 0 0 150px;
  top: 0; right: 0;
}

.dot-wave-contact {
  width: 230px;
  left: 30px;
  bottom: 20px;
  opacity: 0.85;
}

/* ---------- Footer ---------- */

.footer {
  padding: 46px 0 40px;
  background-color: var(--cream);
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-note {
  margin-left: auto;
  font-size: 0.9rem;
}

.footer-copy { font-size: 0.85rem; color: rgba(34, 48, 71, 0.55); width: 100%; margin-top: 10px; }

/* ---------- Language switch ---------- */

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  margin-left: 8px;
}

.lang-switch a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.15s ease;
}

.lang-switch a:hover { color: var(--orange); }

.lang-current { color: var(--navy); }

.lang-sep { color: rgba(30, 58, 95, 0.3); }

.nav-links .nav-current { color: var(--orange); }

/* ---------- Work "more" link ---------- */

.work-more {
  margin-top: 36px;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 500;
}

.work-more a {
  color: var(--orange);
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 124, 68, 0.4);
}

.work-more a:hover { border-bottom-color: var(--orange); }

/* ---------- Portfolio gate ---------- */

.portfolio-section { min-height: 60vh; }

.gate {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

.gate[hidden] { display: none; }

.gate-card {
  border-radius: var(--radius);
  padding: 54px 48px;
  max-width: 520px;
  text-align: center;
}

.gate-logo { height: 40px; margin: 0 auto 26px; }

.gate-card h1 {
  font-size: 1.9rem;
  margin-bottom: 14px;
}

.gate-card > p { margin-bottom: 28px; }

#gate-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

#gate-password {
  flex: 1 1 220px;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 20px;
  border-radius: 999px;
  border: 2px solid rgba(30, 58, 95, 0.2);
  background-color: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease;
}

#gate-password:focus { border-color: var(--orange); }

.gate-error {
  margin-top: 18px;
  color: #c0392b;
  font-weight: 500;
  font-size: 0.95rem;
}

.gate-request {
  margin-top: 22px;
  font-size: 0.9rem;
}

.gate-request a { color: var(--orange); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Portfolio content (decrypted) ---------- */

.portfolio-content { max-width: 780px; margin: 0 auto; }

.portfolio-content h2 { margin-bottom: 16px; }

.portfolio-intro {
  font-size: 1.1rem;
  margin-bottom: 48px;
}

.case-study {
  background-color: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius);
  padding: 42px 44px;
  margin-bottom: 30px;
}

.case-study h3 { margin: 6px 0 4px; font-size: 1.4rem; }

.cs-role {
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 18px;
}

.case-study h4 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin: 22px 0 8px;
}

/* ---------- Article (Perspective page) ---------- */

.article-container { max-width: 760px; }

.article-header { padding-bottom: 30px; }

.article-header h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 22px;
}

.article-header .lede { max-width: 660px; }

.article-body { padding-bottom: 110px; }

.article-body h2 {
  margin: 54px 0 18px;
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
}

.article-body p + p { margin-top: 16px; }

.article-list, .article-steps {
  margin: 20px 0 20px 0;
  padding-left: 0;
  list-style: none;
}

.article-list li {
  position: relative;
  padding: 12px 0 12px 32px;
  border-bottom: 1px dashed rgba(30, 58, 95, 0.15);
}

.article-list li:last-child { border-bottom: none; }

.article-list li::before {
  content: "";
  position: absolute;
  left: 4px; top: 21px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background-color: var(--orange);
}

.article-steps { counter-reset: step; }

.article-steps li {
  counter-increment: step;
  position: relative;
  margin: 14px 0;
  padding: 22px 26px 22px 74px;
  background-color: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-sm);
}

.article-steps li::before {
  content: counter(step);
  position: absolute;
  left: 22px; top: 22px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background-color: var(--navy);
  color: var(--cream);
  font-family: var(--font-head);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-list strong, .article-steps strong { color: var(--navy); }

.article-cta {
  margin-top: 60px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.recent-talk {
  margin-bottom: 26px;
  padding: 14px 18px;
  border-left: 4px solid var(--yellow);
  background-color: var(--cream);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.95rem;
}

.recent-talk a { color: var(--navy); }
.recent-talk a:hover { color: var(--orange); }

.essay-link {
  margin-top: 20px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.95rem;
}

.essay-link a {
  color: var(--orange);
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 124, 68, 0.4);
}

.essay-link a:hover { border-bottom-color: var(--orange); }

/* ---------- Media page ---------- */

.media-hero { padding-bottom: 60px; }

.media-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  margin-bottom: 18px;
}

.media-block { padding: 64px 0; }

.media-block h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.media-block .media-list a { font-size: 1.02rem; }

.media-featured { padding-top: 0; }

.media-featured .article-container { max-width: 980px; }

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.video-item { margin: 0; }

.video-wide { grid-column: 1 / -1; }

.video-embed video {
  width: 100%;
  height: 100%;
  display: block;
  background-color: var(--navy);
}

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

.video-embed {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(30, 58, 95, 0.18);
  background-color: var(--navy);
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-caption {
  margin-top: 16px;
  font-size: 0.95rem;
}

.video-caption strong { color: var(--navy); }

/* ---------- Blog ---------- */

.blog-list { padding: 70px 0; }

.post-card {
  border-radius: var(--radius);
  padding: 36px 38px;
  margin-bottom: 26px;
}

.post-card h2 { margin: 10px 0 12px; font-size: 1.5rem; }

.post-card h2 a {
  color: var(--navy);
  text-decoration: none;
}

.post-card h2 a:hover { color: var(--orange); }

.blog-coming {
  margin-top: 34px;
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

/* ---------- Newsletter ---------- */

.newsletter { padding: 90px 0; }

.newsletter-card {
  border-radius: var(--radius);
  padding: 48px 46px;
  text-align: center;
}

.newsletter-card h2 { margin-bottom: 10px; font-size: 1.6rem; }

.newsletter-card > p { max-width: 460px; margin: 0 auto 26px; }

.newsletter-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1 1 260px;
  max-width: 340px;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 20px;
  border-radius: 999px;
  border: 2px solid rgba(30, 58, 95, 0.2);
  background-color: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease;
}

.newsletter-form input:focus { border-color: var(--orange); }

.newsletter-note {
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
}

/* ---------- Media & writing ---------- */

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.media-col {
  border-radius: var(--radius);
  padding: 32px 30px;
}

.media-col h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 1.1rem;
}

.media-col-icon {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  background-color: var(--navy);
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.media-list { list-style: none; }

.media-list li {
  padding: 12px 0;
  border-bottom: 1px dashed rgba(30, 58, 95, 0.15);
}

.media-list li:last-child { border-bottom: none; }

.media-list a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy);
  text-decoration: none;
  line-height: 1.4;
  display: block;
  transition: color 0.15s ease;
}

.media-list a:hover { color: var(--orange); }

.media-meta {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 3px;
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .hero-grid, .about-grid, .speaking-grid, .books-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .card-grid, .work-grid, .media-grid { grid-template-columns: 1fr; }
  .gate-card { padding: 44px 28px; }
  .case-study { padding: 32px 26px; }

  /* --- mobile header --- */
  .nav { gap: 12px; padding: 10px 14px; }
  .nav-name { font-size: 0.95rem; }
  .nav-cta { margin-left: auto; padding: 9px 18px; font-size: 0.9rem; }
  .nav-toggle { display: flex; flex: none; }

  .nav-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    margin-left: 0;
    padding: 20px;
    border-radius: 22px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    background-color: var(--white);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 18px 44px rgba(30, 58, 95, 0.18);
  }

  .nav.menu-open .nav-menu { display: flex; }

  .nav-links { flex-direction: column; gap: 2px; }

  .has-dropdown::before { display: none; }

  .nav-top {
    display: block;
    padding: 10px 10px 4px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--navy);
    pointer-events: none; /* group label only — tap the links below */
  }

  .nav-top::after { content: none; }

  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    min-width: 0;
    padding: 0 0 10px 6px;
    border: none;
    box-shadow: none;
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: none;
  }

  .dropdown a { white-space: normal; font-size: 1rem; padding: 10px 12px; }

  .lang-switch { margin: 4px 0 0 12px; }

  .hero { padding-top: 60px; }
  .hero-photo-col { max-width: 420px; }
  .contact-card { padding: 60px 30px; }
  .big-number-label { max-width: none; }
}

@media (max-width: 420px) {
  .nav-name { display: none; }
  .nav { padding: 10px 12px; }
}
