/* ==========================================================================
   Gregory La Blanc — personal site
   Editorial design system: warm paper, Berkeley navy, California gold.
   ========================================================================== */

:root {
    --paper: #fbf6ea;
    --paper-tint: #f4ecd6;
    --ink: #14264d;
    --ink-soft: #4a5677;
    --navy: #0e2350;
    --navy-deep: #0a1d3d;
    --gold: #b8860b;
    --gold-bright: #e9b639;
    --line: rgba(10, 33, 74, 0.16);
    --line-strong: rgba(10, 33, 74, 0.4);

    --font-display: "Bricolage Grotesque", "Arial Black", sans-serif;
    --font-body: "Instrument Sans", system-ui, -apple-system, sans-serif;
    --font-mono: "Instrument Sans", system-ui, sans-serif;
    --sketch: 255px 12px 225px 18px / 18px 225px 12px 255px;

    --container: 1180px;
    --nav-h: 72px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }

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

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--navy);
    color: #fff;
    padding: 0.75rem 1.25rem;
    z-index: 200;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------------------
   Type
   -------------------------------------------------------------------------- */

.eyebrow {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.eyebrow-num {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--ink-soft);
}

.eyebrow-num::after {
    content: "";
    display: inline-block;
    width: 2.5rem;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(2.1rem, 4.5vw, 3.4rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-top: 1rem;
    max-width: 22ch;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.section-intro {
    max-width: 58ch;
    margin-top: 1.25rem;
    color: var(--ink-soft);
    font-size: 1.125rem;
}

.sub-head {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 1.5rem;
}

.lead {
    font-family: var(--font-display);
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 500;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 0.9rem 1.75rem;
    border-radius: var(--sketch);
    border: 2px solid var(--ink);
    cursor: pointer;
    box-shadow: 3px 3px 0 rgba(10, 33, 74, 0.25);
    transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.btn:hover { transform: translate(-1px, -2px) rotate(-0.5deg); box-shadow: 5px 5px 0 rgba(10, 33, 74, 0.3); }

.btn-dark {
    background: var(--navy);
    color: #fff;
}
.btn-dark:hover { background: var(--navy-deep); }

.btn-ghost {
    color: var(--ink);
    background: transparent;
}
.btn-ghost:hover { background: rgba(233, 182, 57, 0.18); }

.btn-gold {
    background: var(--gold-bright);
    color: var(--navy-deep);
}
.btn-gold:hover { background: #f0c355; }

.btn-small { padding: 0.5rem 1.1rem; font-size: 0.875rem; box-shadow: 2px 2px 0 rgba(10, 33, 74, 0.25); }

.btn-arrow { transition: transform 0.25s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */

.nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}

.nav.scrolled {
    background: rgba(251, 246, 234, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--line);
}

.nav-inner {
    width: min(var(--container), 100% - 3rem);
    margin-inline: auto;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-right: auto;
}

.nav-brand-mark {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 120px 8px 110px 10px / 10px 110px 8px 120px;
    object-fit: cover;
    border: 1.5px solid var(--ink);
}

.nav-brand-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.nav-links {
    display: flex;
    gap: 1.6rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink-soft);
    transition: color 0.2s;
    position: relative;
    padding: 0.25rem 0;
}

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

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1.5px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: none;
    border: 0;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin-inline: auto;
    background: var(--ink);
    transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
    display: none;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1.5rem 1.5rem;
}

.mobile-menu ul { display: grid; gap: 0.25rem; }

.mobile-menu a {
    display: block;
    padding: 0.65rem 0.25rem;
    font-size: 1.05rem;
    font-weight: 500;
    border-bottom: 1px solid var(--line);
}

.mobile-menu .mobile-cta {
    margin-top: 0.75rem;
    text-align: center;
    background: var(--navy);
    color: #fff;
    border-radius: 999px;
    border-bottom: 0;
}

.nav.menu-open .mobile-menu { display: block; }
.nav.menu-open {
    background: var(--paper);
    box-shadow: 0 1px 0 var(--line);
}

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

.hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    background: var(--paper);
    overflow: hidden;
}

.hero-inner {
    width: min(var(--container), 100% - 3rem);
    margin-inline: auto;
    padding-top: calc(var(--nav-h) + 4rem);
    padding-bottom: 4.5rem;
}

.hero-eyebrow { margin-bottom: 2rem; }

.hero-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.8rem, 8.2vw, 6.5rem);
    line-height: 1.02;
    letter-spacing: -0.02em;
    max-width: 14ch;
}

.hero-title em {
    font-style: normal;
    color: var(--gold);
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 14' preserveAspectRatio='none'%3E%3Cpath d='M4 9 C 60 3, 120 12, 170 7 S 260 4, 296 8' fill='none' stroke='%23e9b639' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat bottom / 100% 0.35em;
    padding-bottom: 0.28em;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
}

.hero-lede {
    font-size: 1.2rem;
    line-height: 1.65;
    color: var(--ink-soft);
    max-width: 46ch;
    margin-top: 2.25rem;
}

.hero-lede strong { color: var(--ink); font-weight: 600; }

.hero-portrait {
    position: relative;
    margin-bottom: 1.75rem;
}

.hero-portrait::before {
    content: "";
    position: absolute;
    inset: 1.1rem -1.1rem -1.1rem 1.1rem;
    border: 2px solid var(--gold-bright);
    border-radius: var(--sketch);
    transform: rotate(1.2deg);
}

.hero-portrait img {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: 50% 30%;
    border: 2px solid var(--ink);
    border-radius: var(--sketch);
    box-shadow: 6px 6px 0 rgba(10, 33, 74, 0.2);
}

.hero-roles {
    display: grid;
    gap: 0.55rem;
    font-size: 0.9375rem;
    border-left: 2px solid var(--gold);
    padding-left: 1.4rem;
}

.hero-roles li { color: var(--ink); font-weight: 550; line-height: 1.45; }

.hero-roles span {
    display: block;
    font-family: var(--font-display);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
}

.hero-roles a {
    color: inherit;
    text-decoration: none;
}

.hero-roles a:hover,
.hero-roles a:focus-visible {
    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.75rem;
}

/* Institutions strip */

.inst-strip {
    width: min(var(--container), 100% - 3rem);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
    padding: 1.5rem 0;
}

.hero .inst-strip {
    border-top: 1px solid var(--line);
}

.inst-strip img {
    height: 2.1rem;
    width: auto;
    max-width: 11rem;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.7;
    transition: filter 0.3s, opacity 0.3s;
}

.inst-strip img:hover { filter: none; opacity: 1; }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }

.section-tint { background: var(--paper-tint); }

.section-dark {
    background: var(--navy-deep);
    color: #ece9df;
}

.section-dark .section-title { color: #fff; }
.section-dark .section-title em { color: var(--gold-bright); }
.section-dark .section-intro,
.section-dark .sub-head { color: #9fb0c0; }
.section-dark .eyebrow { color: var(--gold-bright); }
.section-dark .eyebrow-num { color: #9fb0c0; }
.section-dark .eyebrow-num::after { background: var(--gold-bright); }

.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }

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

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;
}

.about-text p + p { margin-top: 1.25rem; }
.about-text .lead { margin-bottom: 1.75rem; }
.about-text em { color: var(--gold); }

.stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line-strong);
    border-left: 1px solid var(--line-strong);
}

.stat {
    padding: 1.5rem 1.25rem;
    border-right: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 3.5vw, 2.8rem);
    line-height: 1;
    color: var(--navy);
    display: block;
}

.stat-label {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    letter-spacing: 0.02em;
    color: var(--ink-soft);
    line-height: 1.4;
}

.about-figure {
    margin-top: clamp(2.5rem, 5vw, 4rem);
}

.about-figure img {
    width: 100%;
    aspect-ratio: 5 / 2;
    object-fit: cover;
    object-position: 62% 20%;
    border: 2px solid var(--ink);
    border-radius: var(--sketch);
    box-shadow: 6px 6px 0 rgba(233, 182, 57, 0.5);
}

@media (max-width: 720px) {
    .about-figure img { aspect-ratio: 16 / 10; }
    .hero-portrait img { aspect-ratio: 1 / 1; }
}

.about-figure figcaption {
    margin-top: 0.9rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ink-soft);
}

.about-portrait {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: 50% 25%;
    border: 2px solid var(--ink);
    border-radius: var(--sketch);
    box-shadow: 6px 6px 0 rgba(233, 182, 57, 0.5);
    margin-bottom: 1.75rem;
    transform: rotate(-0.8deg);
}

.side-quote {
    margin-top: 2rem;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.5;
    color: var(--navy);
    border-left: 2px solid var(--gold);
    padding-left: 1.4rem;
}

/* --------------------------------------------------------------------------
   Expertise
   -------------------------------------------------------------------------- */

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

.expertise-card {
    background: var(--paper);
    border: 1.5px solid var(--line-strong);
    border-radius: var(--sketch);
    padding: 1.9rem 1.7rem;
    position: relative;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}

.expertise-card:hover {
    transform: translateY(-4px) rotate(-0.4deg);
    border-color: var(--ink);
    box-shadow: 5px 5px 0 rgba(233, 182, 57, 0.55);
}

.card-num {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    color: var(--gold);
}

.expertise-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.3;
    margin: 0.8rem 0 0.6rem;
}

.expertise-card p { font-size: 0.95rem; color: var(--ink-soft); }

.pull-quote {
    margin-top: clamp(3rem, 6vw, 4.5rem);
    max-width: 46ch;
    margin-inline: auto;
    text-align: center;
}

.pull-quote blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.6vw, 1.8rem);
    line-height: 1.45;
    color: var(--navy);
}

.pull-quote em { font-style: italic; color: var(--gold); }

.pull-quote blockquote::before {
    content: "\201C";
    display: block;
    font-size: 3rem;
    line-height: 0.6;
    color: var(--gold);
    margin-bottom: 1.1rem;
}

.section-dark .pull-quote blockquote { color: #e8ecf1; }

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

.topics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.topic-card {
    border-top: 2px solid var(--navy);
    padding: 1.5rem 0.25rem 0.5rem 0;
    transition: border-color 0.3s;
}

.topic-card:hover { border-color: var(--gold); }

.topic-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 0.6rem;
}

.topic-card p { color: var(--ink-soft); font-size: 0.975rem; max-width: 52ch; }

.engagements { margin-top: clamp(3rem, 6vw, 4.5rem); }

.engagement-list {
    border-top: 1px solid var(--line);
    margin-bottom: 2.25rem;
}

.engagement-list li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    gap: 1.5rem;
    padding: 0.95rem 0.25rem;
    border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
    transition: background 0.2s;
}

.engagement-list li:hover { background: rgba(240, 179, 45, 0.07); }

.engagement-list .venue { font-weight: 600; }
.engagement-list .talk { color: var(--ink-soft); font-style: italic; font-family: var(--font-display); font-size: 1.02rem; }

/* --------------------------------------------------------------------------
   Offerings
   -------------------------------------------------------------------------- */

.offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.offer-card {
    background: var(--paper);
    border: 1.5px solid var(--line-strong);
    border-radius: var(--sketch);
    padding: 1.9rem 1.7rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s var(--ease);
}

.offer-card:hover {
    transform: translateY(-4px) rotate(-0.3deg);
    border-color: var(--ink);
    box-shadow: 5px 5px 0 rgba(233, 182, 57, 0.55);
}

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

.offer-meta {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

.offer-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.offer-card > p { font-size: 0.975rem; color: var(--ink-soft); }

.offer-editions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    width: 100%;
    margin: 0.25rem 0;
}

.offer-edition {
    border-left: 3px solid var(--gold-bright);
    padding-left: 1.1rem;
}

.offer-edition h4 {
    font-family: var(--font-display);
    font-size: 1.02rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.offer-edition p { font-size: 0.925rem; color: var(--ink-soft); }

.offer-best { font-size: 0.875rem; color: var(--ink-soft); }
.offer-best strong { color: var(--ink); }

.offer-card .btn { margin-top: auto; }

/* Chooser form */

.chooser {
    margin-top: clamp(2.5rem, 5vw, 4rem);
    background: var(--navy-deep);
    color: #ece9df;
    border-radius: var(--sketch);
    padding: clamp(2rem, 4.5vw, 3rem);
    box-shadow: 6px 6px 0 rgba(233, 182, 57, 0.55);
}

.chooser-head h3 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 600;
    color: #fff;
}

.chooser-head p { color: #aebad3; margin: 0.5rem 0 1.75rem; max-width: 56ch; }

.format-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem 1.5rem;
}

.format-form label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-bright);
}

.format-form input,
.format-form select,
.format-form textarea {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--ink);
    background: var(--paper);
    border: 2px solid transparent;
    border-radius: 14px 5px 16px 6px / 6px 16px 5px 14px;
    padding: 0.65rem 0.9rem;
    width: 100%;
}

.format-form input:focus,
.format-form select:focus,
.format-form textarea:focus {
    outline: none;
    border-color: var(--gold-bright);
}

.format-form textarea { resize: vertical; }

.phone-row {
    display: flex;
    gap: 0.5rem;
}

.phone-row select { flex: 0 0 9rem; min-width: 0; }
.phone-row input { flex: 1; min-width: 0; }

.form-full { grid-column: 1 / -1; }

.form-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.form-note { font-size: 0.85rem; color: #aebad3; max-width: 46ch; text-transform: none; letter-spacing: 0; font-family: var(--font-body); font-weight: 400; }

.form-note.form-note-ok { color: var(--gold-bright); font-weight: 600; }

.form-result[hidden] { display: none; }

.form-result {
    margin-top: 1.75rem;
    border-top: 1px solid rgba(233, 182, 57, 0.3);
    padding-top: 1.75rem;
    display: grid;
    gap: 1rem;
}

.form-rec {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold-bright);
}

.form-result textarea {
    font-family: var(--font-body);
    font-size: 0.925rem;
    color: var(--ink);
    background: var(--paper);
    border: 2px solid transparent;
    border-radius: 14px 5px 16px 6px / 6px 16px 5px 14px;
    padding: 0.9rem 1rem;
    width: 100%;
    resize: vertical;
}

.form-result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.chooser .btn-ghost {
    color: #fff;
    border-color: var(--gold-bright);
    box-shadow: 3px 3px 0 rgba(233, 182, 57, 0.35);
}

.chooser .btn-ghost:hover { background: rgba(233, 182, 57, 0.2); }

/* --------------------------------------------------------------------------
   Podcast
   -------------------------------------------------------------------------- */

.podcast-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 5vw, 4.5rem);
}

.topic-bars { display: grid; gap: 0.7rem; }

.topic-bar {
    display: grid;
    grid-template-columns: 6.2rem 1fr 2.2rem;
    align-items: center;
    gap: 0.9rem;
    font-size: 0.875rem;
}

.topic-name { color: #b9c5d1; }

.bar-track {
    height: 0.55rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    width: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-bright) 100%);
    transition: width 1.1s var(--ease);
}

.topic-count {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gold-bright);
    text-align: right;
}

.podcast-cover {
    width: min(15rem, 100%);
    border-radius: var(--sketch);
    border: 2px solid var(--gold-bright);
    box-shadow: 6px 6px 0 rgba(233, 182, 57, 0.3);
    margin-bottom: 2rem;
    transform: rotate(1deg);
}

.guest-list {
    display: grid;
    gap: 0.2rem;
    margin-bottom: 2.25rem;
}

.guest-list a {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.45rem 0.4rem 0.55rem;
    font-size: 0.925rem;
    border-radius: 0.4rem;
    transition: background 0.2s;
}

.guest-list a:hover { background: rgba(240, 179, 45, 0.1); }

.guest-list strong { color: #fff; font-weight: 600; }
.guest-list span { color: #8fa2b5; text-align: right; }
.guest-list a:hover span { color: var(--gold-bright); }

.listen-links { display: flex; flex-wrap: wrap; gap: 0.7rem; }

.listen-badge {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.55rem 1.15rem;
    border-radius: 200px 10px 180px 14px / 14px 180px 10px 200px;
    border: 1.5px solid rgba(233, 182, 57, 0.5);
    transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.listen-badge:hover {
    background: var(--gold-bright);
    border-color: var(--gold-bright);
    color: var(--navy-deep);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: clamp(3rem, 5vw, 4rem);
}

.review {
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(233, 182, 57, 0.35);
    border-radius: var(--sketch);
    padding: 1.6rem 1.5rem;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.02rem;
    line-height: 1.55;
    color: #d3dce4;
}

/* --------------------------------------------------------------------------
   Global advisory / credentials / media
   -------------------------------------------------------------------------- */

.two-col-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.list-card {
    border: 1.5px solid var(--line-strong);
    border-radius: var(--sketch);
    padding: 1.9rem 1.7rem;
    background: rgba(255, 255, 255, 0.45);
}

.list-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.list-card-text {
    font-size: 0.95rem;
    color: var(--ink-soft);
    margin-bottom: 1rem;
}

.list-card ul { display: grid; gap: 0.6rem; }

.list-card li {
    position: relative;
    padding-left: 1.4rem;
    font-size: 0.95rem;
    color: var(--ink-soft);
}

.list-card li::before {
    content: "\25C6";
    position: absolute;
    left: 0;
    top: 0.1em;
    font-size: 0.55rem;
    color: var(--gold);
}

.cred-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.cred-list { border-top: 1px solid var(--line-strong); }

.cred-list li {
    padding: 1rem 0.25rem;
    border-bottom: 1px solid var(--line);
}

.cred-list strong { display: block; font-weight: 600; font-size: 0.975rem; }
.cred-list span { font-size: 0.85rem; color: var(--ink-soft); }

.roles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.role {
    border: 1.5px solid var(--line);
    border-radius: 200px 10px 180px 14px / 14px 180px 10px 200px;
    background: var(--paper);
    padding: 1.15rem 1.1rem;
    transition: border-color 0.3s;
}

.role:hover { border-color: var(--gold); }

.role strong { display: block; font-size: 0.9rem; font-weight: 600; line-height: 1.35; }
.role span { display: block; margin-top: 0.3rem; font-size: 0.8rem; color: var(--ink-soft); line-height: 1.4; }

.media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.75rem, 3.5vw, 3rem);
}

.video-card-channel { display: block; }

/* Track record wall */

.wall-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2.75rem;
}

.wall-grid li {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--ink-soft);
    border: 1.5px solid var(--line);
    border-radius: 200px 10px 180px 14px / 14px 180px 10px 200px;
    padding: 0.45rem 1.1rem;
    background: rgba(255, 255, 255, 0.5);
    transition: border-color 0.25s, color 0.25s;
}

.wall-grid li:hover {
    border-color: var(--gold);
    color: var(--ink);
}

.wall-note {
    font-family: var(--font-mono);
    font-style: italic;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gold);
}

.scroll-hint {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-left: 0.75rem;
    text-transform: uppercase;
}

.logo-scroller {
    overflow-x: auto;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.4);
    margin-bottom: 2.25rem;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
}

.logo-scroller::-webkit-scrollbar { height: 6px; }
.logo-scroller::-webkit-scrollbar-track { background: transparent; }
.logo-scroller::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 999px; }

.logo-track {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    width: max-content;
    padding: 2rem clamp(1.5rem, 50vw - var(--container) / 2, 20rem);
}

.logo-track img {
    height: 2.5rem;
    width: auto;
    max-width: 11rem;
    object-fit: contain;
    scroll-snap-align: start;
    filter: grayscale(1);
    opacity: 0.72;
    transition: filter 0.3s, opacity 0.3s;
}

.logo-track img:hover { filter: none; opacity: 1; }

.logo-scroller + .container .sub-head { margin-top: 2.5rem; }

.media-list { display: grid; gap: 0.85rem; border-top: 1px solid var(--line-strong); padding-top: 1.25rem; }

.media-list li {
    font-size: 0.925rem;
    color: var(--ink-soft);
    line-height: 1.55;
}

.media-list strong { color: var(--ink); font-weight: 600; }

.talk-link { transition: color 0.2s; }
.talk-link:hover { color: var(--ink); }
.talk-link:hover strong { color: var(--gold); }

/* Video cards */

.watch-block { margin-top: clamp(2.5rem, 5vw, 4rem); }

.more-talks { margin-top: clamp(1.75rem, 3.5vw, 2.5rem); max-width: 46rem; }

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

.video-card {
    position: relative;
    aspect-ratio: 16 / 9;
    border: 2px solid var(--ink);
    border-radius: var(--sketch);
    overflow: hidden;
    cursor: pointer;
    background: var(--navy-deep);
    padding: 0;
    text-align: left;
    font-family: var(--font-body);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -20px rgba(9, 44, 71, 0.5);
}

.video-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
}

.video-card:hover img { transform: scale(1.04); }

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 50%;
    background: var(--gold-bright);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s var(--ease);
}

.video-play::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 0.55rem 0 0.55rem 0.95rem;
    border-color: transparent transparent transparent var(--navy-deep);
}

.video-card:hover .video-play { transform: translate(-50%, -60%) scale(1.1); }

.video-title {
    position: absolute;
    inset: auto 0 0 0;
    padding: 2.2rem 1.1rem 0.9rem;
    background: linear-gradient(transparent, rgba(6, 31, 51, 0.92));
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.35;
}

.video-title em {
    display: block;
    font-style: normal;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-top: 0.3rem;
}

.video-card iframe,
.video-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* --------------------------------------------------------------------------
   Contact + footer
   -------------------------------------------------------------------------- */

.contact-title { max-width: none; }

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.contact-option {
    border: 1.5px solid rgba(233, 182, 57, 0.4);
    border-radius: var(--sketch);
    padding: 1.7rem 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    transition: border-color 0.3s, background 0.3s;
}

.contact-option:hover {
    border-color: var(--gold-bright);
    background: rgba(240, 179, 45, 0.07);
}

.contact-option h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.5rem;
}

.contact-option p { font-size: 0.925rem; color: #b9c5d1; }

.section-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: clamp(2.25rem, 4vw, 3rem);
}

.section-dark .btn-ghost {
    border-color: var(--gold-bright);
    color: #fff;
    box-shadow: 3px 3px 0 rgba(233, 182, 57, 0.35);
}

.section-dark .btn-ghost:hover { border-color: var(--gold-bright); color: var(--gold-bright); }

.card-link {
    display: inline-block;
    margin-top: 1.1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    border-bottom: 1.5px solid var(--gold);
    transition: color 0.2s;
}

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

.contact-form {
    margin-bottom: clamp(2rem, 4vw, 3rem);
    max-width: 46rem;
}

.contact-form .sub-head { color: var(--gold-bright); margin-bottom: 0.5rem; }

.contact-direct {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.social-link {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.6rem 1.3rem;
    border-radius: 200px 10px 180px 14px / 14px 180px 10px 200px;
    border: 1.5px solid rgba(233, 182, 57, 0.5);
    transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.social-link:hover {
    background: var(--gold-bright);
    border-color: var(--gold-bright);
    color: var(--navy-deep);
}

.footer {
    background: var(--navy-deep);
    color: #8fa2b5;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.75rem 0;
    font-size: 0.875rem;
}

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

.footer-tag { font-family: var(--font-mono); font-style: italic; font-size: 0.9rem; font-weight: 500; color: var(--gold-bright); }

.footer-top { color: #b9c5d1; transition: color 0.2s; }
.footer-top:hover { color: var(--gold-bright); }

/* --------------------------------------------------------------------------
   Reveal animation
   -------------------------------------------------------------------------- */

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    transition-delay: var(--reveal-delay, 0s);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    [data-reveal] { opacity: 1; transform: none; transition: none; }
    .bar-fill { transition: none; }
}

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

@media (max-width: 1024px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }

    .expertise-grid,
    .programs-grid,
    .reviews-grid,
    .contact-grid,
    .media-grid { grid-template-columns: 1fr 1fr; }

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

    .video-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
    body { font-size: 1rem; }

    .hero-grid,
    .video-grid,
    .offer-grid,
    .offer-editions,
    .format-form,
    .about-grid,
    .topics-grid,
    .two-col-cards,
    .cred-grid,
    .podcast-grid { grid-template-columns: 1fr; }

    .expertise-grid,
    .programs-grid,
    .reviews-grid,
    .contact-grid,
    .media-grid { grid-template-columns: 1fr; }

    .engagement-list li { grid-template-columns: 1fr; gap: 0.15rem; }

    .stats { grid-template-columns: 1fr 1fr; }

    .roles-grid { grid-template-columns: 1fr; }

    .nav-brand-name { font-size: 1rem; }
}
