:root {
  color-scheme: light;
  --ink: #17202a;
  --muted: #5f6f7c;
  --line: #dfe7ed;
  --paper: #f6f8f8;
  --white: #ffffff;
  --teal: #0a6f72;
  --deep: #0f2d3d;
  --gold: #c89335;
  --coral: #d95f43;
  --sage: #e8f1ed;
  --shadow: 0 22px 55px rgba(15, 45, 61, 0.15);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px clamp(18px, 3vw, 44px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 35px rgba(15, 45, 61, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.88;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
}

.nav-cta {
  padding: 9px 15px;
  color: var(--ink);
  background: var(--white);
  border-radius: 999px;
}

.is-scrolled .nav-cta,
.is-open .nav-cta {
  color: var(--white);
  background: var(--teal);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/images/hero.jpg"), url("assets/images/about/venki2-1.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 29, 41, 0.94), rgba(15, 45, 61, 0.62) 50%, rgba(15, 45, 61, 0.12)),
    linear-gradient(0deg, rgba(7, 29, 41, 0.48), rgba(15, 45, 61, 0.08));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 120px 0 38px;
}

.eyebrow,
.section-kicker,
.card-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6.4vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--coral);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.button.quiet {
  color: var(--teal);
  border-color: #bfdcde;
  background: #effafa;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 780px;
  margin: 34px 0 0;
  background: rgba(255, 255, 255, 0.22);
}

.hero-proof div {
  padding: 20px;
  background: rgba(15, 45, 61, 0.64);
  backdrop-filter: blur(10px);
}

.hero-proof dt {
  font-size: 32px;
  font-weight: 900;
}

.hero-proof dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

section:not(.hero) {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

/* Full-bleed sections must override the generic section container rule. */
section.cred-strip,
section.portrait-band,
section.cio-feature,
section.method,
section.contact {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.cred-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  max-width: none;
  padding: 0;
  background: var(--line);
}

.cred-strip div {
  min-height: 150px;
  padding: 32px clamp(18px, 4vw, 42px);
  background: var(--white);
}

.cred-strip span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.cred-strip strong {
  display: block;
  max-width: 260px;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.1;
}

.intro-grid,
.section-heading,
.shows,
.booking,
.contact,
.portrait-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: 18px;
}

.section-note {
  align-self: end;
  max-width: 440px;
  color: var(--muted);
  font-size: 17px;
}

.timeline {
  padding-top: 30px;
}

.timeline-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
}

.timeline-track article {
  min-height: 300px;
  padding: 28px;
  background: var(--white);
}

.timeline-track span,
.topic-grid span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.timeline-track p,
.topic-grid p {
  color: var(--muted);
}

.portrait-band {
  align-items: center;
  width: 100%;
  max-width: none;
  padding: 0;
  background: var(--deep);
  color: var(--white);
}

.portrait-band img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center top;
}

.portrait-band div {
  max-width: 580px;
  padding: clamp(36px, 7vw, 92px) clamp(18px, 8vw, 96px) clamp(36px, 7vw, 92px) 0;
}

.quote {
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 850;
  line-height: 1.12;
}

.text-link {
  align-self: end;
  color: var(--teal);
  font-weight: 900;
}

.service-grid {
  display: grid;
  gap: 22px;
}

.service-card {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(15, 45, 61, 0.08);
}

.service-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 6px;
}

.service-card p {
  color: var(--muted);
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.service-card li {
  padding: 8px 11px;
  border: 1px solid #d5e6e7;
  border-radius: 999px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  background: #f0fbfb;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.service-card .card-actions .button {
  min-height: 44px;
  padding: 11px 16px;
  font-size: 14px;
}

.service-card img[src*="cio-mirror-logo"] {
  object-fit: contain;
  padding: 44px;
  background: linear-gradient(135deg, #effafa, #ffffff);
}

.cio-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1120px) / 2));
  background: var(--sage);
}

.cio-feature p {
  color: var(--muted);
  font-size: 18px;
}

.workshop-meta {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.workshop-meta div {
  display: grid;
  gap: 3px;
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  background: var(--white);
}

.workshop-meta strong {
  color: var(--deep);
}

.workshop-meta span {
  color: var(--muted);
}

.mirror-panel {
  padding: clamp(24px, 4vw, 42px);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(15, 45, 61, 0.95), rgba(10, 111, 114, 0.9)),
    var(--deep);
  box-shadow: var(--shadow);
}

.mirror-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
}

.speaking-topics {
  padding-bottom: 30px;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.topic-grid article {
  min-height: 280px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(15, 45, 61, 0.08);
}

.mirror-panel ol {
  display: grid;
  gap: 18px;
  padding-left: 22px;
  margin: 24px 0;
}

.mirror-panel li {
  color: rgba(255, 255, 255, 0.82);
}

.mirror-panel strong,
.mirror-panel .text-link {
  color: var(--white);
}

.method {
  color: var(--white);
  background: var(--deep);
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1120px) / 2));
}

.method h2 {
  max-width: 760px;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  background: rgba(255, 255, 255, 0.16);
}

.method-grid div {
  min-height: 260px;
  padding: 26px;
  background: #12384a;
}

.method-grid span {
  color: var(--gold);
  font-weight: 900;
}

.method-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.shows {
  align-items: center;
}

.shows-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: 18px;
}

.link-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.link-panel a,
.contact-actions a {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(15, 45, 61, 0.08);
  font-weight: 850;
}

.link-panel a:first-child {
  grid-column: 1 / -1;
  color: var(--white);
  background: var(--deep);
}

.link-panel span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.link-panel strong {
  display: block;
  color: inherit;
  font-size: 20px;
  line-height: 1.15;
}

.booking {
  align-items: stretch;
}

.booking-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: 18px;
}

.booking-widget {
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.conversation-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: clamp(30px, 4vw, 52px);
  background:
    linear-gradient(135deg, rgba(10, 111, 114, 0.07), rgba(200, 147, 53, 0.09)),
    var(--white);
}

.conversation-panel h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
}

.conversation-list {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.conversation-list span {
  display: block;
  padding: 13px 16px;
  border: 1px solid rgba(10, 111, 114, 0.18);
  border-radius: 999px;
  background: rgba(232, 241, 242, 0.6);
  color: var(--teal);
  font-weight: 800;
}

.conversation-note {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.contact {
  align-items: stretch;
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1120px) / 2));
  background: #e8f1f2;
}

.contact > div p {
  color: var(--muted);
  font-size: 18px;
}

form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--deep);
  font-size: 13px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #ccd9df;
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

textarea {
  resize: vertical;
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.78);
  background: #071d29;
}

.site-footer strong {
  color: var(--white);
}

.site-footer p {
  margin: 4px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.success-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 18px;
  background: #e8f1f2;
}

.success-card {
  width: min(620px, 100%);
  padding: 44px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

@media (max-width: 900px) {
  .site-header {
    padding: 10px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 13px 14px;
  }

  .nav-cta {
    color: var(--white);
    background: var(--teal);
  }

  .hero {
    min-height: 820px;
  }

  .hero-media {
    background-position: 58% center;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(15, 45, 61, 0.9), rgba(15, 45, 61, 0.34));
  }

  .hero-inner {
    padding-top: 120px;
  }

  .hero-proof,
  .cred-strip,
  .intro-grid,
  .section-heading,
  .shows,
  .booking,
  .contact,
  .portrait-band,
  .service-card,
  .cio-feature,
  .timeline-track,
  .topic-grid,
  .method-grid {
    grid-template-columns: 1fr;
  }

  .portrait-band div {
    padding: 36px 18px 48px;
  }

  .portrait-band img {
    height: min(540px, 68vh);
  }

  .service-card img {
    min-height: 220px;
  }

  .method-grid div {
    min-height: 190px;
  }

  .cred-strip div,
  .timeline-track article,
  .topic-grid article {
    min-height: auto;
  }

  .link-panel {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .brand span {
    max-width: min(150px, 42vw);
    line-height: 1.1;
    font-size: 15px;
  }

  .site-nav {
    top: 64px;
    right: 12px;
    left: 12px;
  }

  .hero-inner {
    width: min(100% - 28px, 1120px);
    padding-top: 104px;
    padding-bottom: 28px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions,
  .card-actions,
  .mirror-actions,
  .contact-actions {
    align-items: stretch;
  }

  .hero-actions .button,
  .card-actions .button,
  .mirror-actions .button,
  .contact-actions a {
    width: 100%;
  }

  .service-card {
    padding: 16px;
  }

  .service-card img {
    min-height: 190px;
    max-height: 260px;
  }

  .cio-feature,
  .contact,
  .method {
    padding-inline: 14px;
  }

  .booking-widget {
    min-height: 360px;
  }

  .conversation-panel {
    min-height: 360px;
    padding: 24px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  section:not(.hero) {
    padding: 68px 0;
  }

  .hero-proof div {
    padding: 16px;
  }

  form,
  .success-card {
    padding: 22px;
  }
}

/* Inline booking CTAs */
.inline-cta {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(26, 47, 57, 0.12);
  border-radius: 18px;
  background: #f6f8f7;
}
.inline-cta h2 { margin: 0; max-width: 720px; }
.inline-cta .button { flex: 0 0 auto; }
.inline-cta-dark { background: #17343d; color: #fff; border-color: #17343d; }
.inline-cta-dark .section-kicker { color: #b8ded2; }
.inline-cta-dark h2 { color: #fff; }

@media (max-width: 700px) {
  .inline-cta {
    width: calc(100% - 32px);
    padding: 28px 22px;
    align-items: flex-start;
    flex-direction: column;
  }
  .inline-cta .button { width: 100%; text-align: center; }
}
