:root {
  --ink: #102033;
  --muted: #4f5f6c;
  --paper: #fffdf8;
  --white: #ffffff;
  --warm: #f7f1e8;
  --soft: #f3f5f2;
  --line: #d9ded8;
  --accent: #083f4d;
  --accent-2: #0d6676;
  --gold: #c7822b;
  --focus: #f5b642;
  --shadow: 0 18px 42px rgba(16, 32, 51, 0.1);
  --container: 1120px;
  --radius: 8px;
  --text-scale: 1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: calc(18px * var(--text-scale));
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

html.readable-font body {
  font-family: Arial, Verdana, Tahoma, sans-serif;
}

html.high-contrast {
  --ink: #000000;
  --muted: #111111;
  --paper: #ffffff;
  --white: #ffffff;
  --warm: #f4f4f4;
  --soft: #f1f1f1;
  --line: #222222;
  --accent: #000000;
  --accent-2: #333333;
  --gold: #000000;
  --focus: #ffbf00;
  --shadow: none;
}

html.high-contrast a {
  color: #000000;
  text-decoration-thickness: 2px;
}

html.high-contrast .button-primary,
html.high-contrast .nav-links .nav-cta,
html.high-contrast .contact-panel,
html.high-contrast .skip-link {
  color: #ffffff;
  background: #000000;
}

html.high-contrast .button-secondary,
html.high-contrast .accessibility-panel button,
html.high-contrast .contact-link,
html.high-contrast .carousel-play-toggle,
html.high-contrast .carousel-arrow {
  color: #000000;
  background: #ffffff;
  border-color: #000000;
}

html.high-contrast .media-card {
  border-left-color: #000000;
}

html.high-contrast .faq-list details,
html.high-contrast .statement-panel {
  border-color: #000000;
}

html.reduce-motion *,
html.reduce-motion *::before,
html.reduce-motion *::after {
  scroll-behavior: auto !important;
  transition-duration: 0.001ms !important;
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
}

img,
svg {
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: var(--accent);
  text-underline-offset: 0.22em;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

button {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: 0;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.45rem, 5.4vw, 4.25rem);
  line-height: 1.04;
}

h2 {
  max-width: 16ch;
  margin-bottom: 1rem;
  font-size: clamp(1.9rem, 3.3vw, 2.75rem);
  line-height: 1.1;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
  line-height: 1.25;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(3rem, 5.2vw, 4.75rem) 0;
}

.skip-link {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 20;
  transform: translateY(-140%);
  padding: 0.75rem 1rem;
  color: #ffffff;
  background: var(--accent);
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.accessibility-tools {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  display: grid;
  justify-items: end;
  gap: 0.55rem;
}

.accessibility-toggle {
  min-height: 44px;
  padding: 0.65rem 0.9rem;
  color: #ffffff;
  background: var(--accent);
  border: 2px solid transparent;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(16, 32, 51, 0.18);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 850;
}

.accessibility-toggle:hover {
  background: var(--accent-2);
}

.accessibility-panel {
  width: min(92vw, 320px);
  max-height: min(82vh, 640px);
  overflow: auto;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.accessibility-title {
  margin-bottom: 0.75rem;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 850;
}

.accessibility-actions {
  display: grid;
  gap: 0.45rem;
}

.accessibility-actions button {
  min-height: 44px;
  padding: 0.62rem 0.75rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 750;
  text-align: left;
}

.accessibility-actions button:hover,
.accessibility-actions button[aria-pressed="true"] {
  color: #ffffff;
  background: var(--accent);
  border-color: var(--accent);
}

.accessibility-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.audio-status {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

html.easy-read .hero-text,
html.easy-read .section-copy,
html.easy-read .talks-main p,
html.easy-read .contact-panel p {
  max-width: 58ch;
  line-height: 1.78;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  color: var(--ink);
  text-decoration: none;
}

.brand-name,
.brand-role {
  display: block;
}

.brand-name {
  font-size: 1.22rem;
  font-weight: 850;
  line-height: 1.1;
}

.brand-role {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 750;
  text-decoration: none;
}

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

.nav-links .nav-cta {
  min-height: 42px;
  padding: 0 0.85rem;
  color: #ffffff;
  background: var(--accent);
  border-radius: var(--radius);
}

.nav-links .nav-cta:hover {
  color: #ffffff;
  background: var(--accent-2);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle-line,
.nav-toggle-line::before,
.nav-toggle-line::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  content: "";
}

.nav-toggle-line {
  position: relative;
}

.nav-toggle-line::before,
.nav-toggle-line::after {
  position: absolute;
  left: 0;
}

.nav-toggle-line::before {
  top: -7px;
}

.nav-toggle-line::after {
  top: 7px;
}

.hero {
  padding-top: clamp(3.5rem, 7vw, 6rem);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
  background:
    linear-gradient(115deg, rgba(255, 248, 237, 0.98) 0%, rgba(255, 253, 248, 0.86) 56%),
    var(--paper);
}

.hero-grid,
.talks-layout,
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
}

.hero-grid,
.contact-panel {
  align-items: center;
}

.hero-text {
  max-width: 58ch;
  margin-bottom: 1.6rem;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.22rem);
  line-height: 1.55;
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.15rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.button-primary {
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 12px 22px rgba(8, 63, 77, 0.16);
}

.button-primary:hover {
  color: #ffffff;
  background: var(--accent-2);
}

.button-secondary {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.82);
  border-color: #b9ccd3;
}

.button-secondary:hover {
  color: var(--accent);
  background: var(--soft);
}

.hero-panel,
.carousel {
  margin: 0;
  padding: 0.85rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-image {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center;
  border-radius: calc(var(--radius) - 2px);
}

.hero-panel figcaption {
  margin-top: 0.85rem;
  padding: 0 0.2rem 0.2rem;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.45;
}

.about,
.talks {
  background: var(--warm);
}

.editorial-block {
  max-width: 920px;
}

.editorial-block h2 {
  margin-bottom: 1.25rem;
}

.section-copy,
.section-heading p,
.talks-main p,
.intro {
  max-width: 64ch;
  color: var(--muted);
}

.section-copy p {
  margin-bottom: 1.05rem;
}

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

.section-heading h2 {
  max-width: 100%;
}

.section-heading p {
  margin-bottom: 0;
}

.gallery-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--paper) 100%);
}

.gallery-layout {
  max-width: 980px;
}

.carousel-viewport {
  position: relative;
  overflow: hidden;
  background: var(--soft);
  border-radius: calc(var(--radius) - 2px);
}

.carousel-slide {
  display: none;
  margin: 0;
  opacity: 0;
}

.carousel-slide.is-active {
  display: block;
  opacity: 1;
  animation: fade-in 320ms ease-out;
}

@keyframes fade-in {
  from {
    opacity: 0.72;
  }

  to {
    opacity: 1;
  }
}

.carousel-slide img {
  display: block;
  width: 100%;
  height: min(58vw, 500px);
  object-fit: contain;
  background: var(--soft);
}

.carousel-slide figcaption {
  padding: 0.9rem 1rem 0.95rem;
  color: var(--muted);
  background: var(--white);
  font-size: 0.96rem;
  line-height: 1.45;
}

.carousel-controls {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.9rem 0.2rem 0.1rem;
}

.carousel-arrow {
  display: inline-flex;
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(8, 63, 77, 0.22);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(16, 32, 51, 0.14);
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 900;
  transform: translateY(-50%);
}

.carousel-arrow:hover {
  color: #ffffff;
  background: var(--accent);
}

.carousel-arrow-prev {
  left: 0.8rem;
}

.carousel-arrow-next {
  right: 0.8rem;
}

.carousel-dots {
  display: flex;
  grid-column: 2;
  justify-content: center;
  gap: 0.55rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  background: #9aa9af;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition:
    width 180ms ease,
    background 180ms ease;
}

.carousel-dot.is-active {
  width: 28px;
  background: var(--accent);
}

.carousel-play-toggle {
  display: inline-flex;
  grid-column: 3;
  min-height: 42px;
  align-items: center;
  justify-self: end;
  padding: 0.55rem 0.8rem;
  color: var(--accent);
  background: var(--white);
  border: 1px solid #bfd1d7;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
}

.carousel-play-toggle:hover {
  color: #ffffff;
  background: var(--accent);
}

.talks-layout {
  align-items: start;
}

.talks-main {
  max-width: 680px;
}

.text-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  margin-top: 0.5rem;
  color: var(--accent);
  font-weight: 850;
}

.text-cta::after {
  margin-left: 0.45rem;
  content: "→";
}

.speaking-profile {
  padding-top: 0.35rem;
}

.client-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.client-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 730;
}

.client-list li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "•";
}

.media {
  background: var(--white);
}

.media-layout {
  display: block;
}

.media-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.media-card {
  display: flex;
  min-height: 245px;
  flex-direction: column;
  padding: 1.3rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
}

.media-source {
  margin-bottom: 0.45rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-card h3 {
  max-width: 26ch;
  margin-bottom: 0.65rem;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.18;
}

.media-card p {
  color: var(--muted);
  font-size: 1rem;
}

.media-card a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: auto;
  font-weight: 850;
}

.faq {
  background: var(--warm);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(1.8rem, 4vw, 3.25rem);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-list summary {
  min-height: 52px;
  padding: 0.85rem 1rem;
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
  line-height: 1.35;
}

.faq-list summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.faq-list details[open] summary {
  border-bottom: 1px solid var(--line);
}

.faq-list p {
  padding: 0.9rem 1rem 1rem;
  color: var(--muted);
}

.contact {
  background: var(--paper);
}

.contact-panel {
  padding: clamp(1.75rem, 4vw, 3rem);
  color: #ffffff;
  background: var(--accent);
  border-radius: var(--radius);
}

.contact-panel h2,
.contact-panel p {
  color: #ffffff;
}

.contact-note {
  max-width: 56ch;
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  font-size: 0.98rem;
}

.contact-details {
  display: grid;
  gap: 0.85rem;
  font-style: normal;
}

.contact-details p {
  display: grid;
  gap: 0.35rem;
  margin: 0;
}

.contact-details span {
  color: #ffffff;
  font-weight: 850;
}

.contact-link {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  padding: 0.9rem 1.05rem;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  font-weight: 850;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-link:hover {
  color: var(--accent);
  background: #edf6f8;
}

.accessibility-statement {
  padding-top: clamp(2.25rem, 4vw, 3.25rem);
  background: var(--paper);
}

.statement-panel {
  max-width: 920px;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.statement-panel h2 {
  max-width: 100%;
  margin-bottom: 0.65rem;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
}

.statement-panel p {
  max-width: 72ch;
  color: var(--muted);
}

.site-footer {
  padding: 2rem 0;
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer p {
  margin: 0;
  font-size: 0.95rem;
}

.site-footer a {
  font-weight: 850;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem 1.1rem;
}

@media (max-width: 980px) {
  .nav {
    min-height: 74px;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    right: 1rem;
    left: 1rem;
    top: calc(100% + 1px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.6rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 0.65rem 0.75rem;
  }

  .nav-links .nav-cta {
    justify-content: center;
    margin-top: 0.35rem;
    padding: 0.65rem 0.75rem;
  }

  .hero-grid,
  .talks-layout,
  .contact-panel,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-content,
  .section-copy,
  .talks-main {
    max-width: 720px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: calc(16.5px * var(--text-scale));
  }

  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .section {
    padding: 3rem 0;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(2.35rem, 12vw, 3.25rem);
  }

  h2 {
    max-width: 100%;
    font-size: clamp(1.75rem, 9vw, 2.25rem);
  }

  .hero {
    padding-top: 3.2rem;
    padding-bottom: 3.4rem;
  }

  .brand-role {
    display: none;
  }

  .button-row,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .contact-link {
    width: 100%;
  }

  .hero-panel,
  .carousel,
  .contact-panel {
    padding: 1rem;
  }

  .hero-image {
    aspect-ratio: 4 / 3;
  }

  .carousel-arrow {
    width: 44px;
    min-height: 44px;
    font-size: 1.05rem;
  }

  .carousel-arrow-prev {
    left: 0.45rem;
  }

  .carousel-arrow-next {
    right: 0.45rem;
  }

  .carousel-slide img {
    height: min(72vw, 360px);
  }

  .carousel-controls {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .carousel-dots,
  .carousel-play-toggle {
    grid-column: 1;
    justify-self: center;
  }

  .accessibility-tools {
    right: 0.65rem;
    bottom: 0.65rem;
    left: 0.65rem;
  }

  .accessibility-toggle {
    justify-self: end;
    min-height: 42px;
    padding: 0.55rem 0.75rem;
    font-size: 0.86rem;
  }

  .accessibility-panel {
    width: 100%;
  }

  .media-list {
    grid-template-columns: 1fr;
  }

  .media-card {
    min-height: auto;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .carousel-slide.is-active {
    animation: none;
  }
}
