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

    :root {
      --white:        #ffffff;
      --off-white:    #f4f3f0;
      --surface:      #eceae4;
      --surface-mid:  #e2ddd6;
      --navy:         #071628;
      --navy-mid:     #0e2040;
      --navy-light:   #183358;
      --slate:        #2c3f56;
      --accent:       #0f2d54;
      --accent-light: #1e4480;
      --rule:         #b0a89c;
      --text-body:    #2a2a2a;
      --text-muted:   #4a4742;
      --text-strong:  #0a0a0a;
      --serif: 'Playfair Display', Georgia, serif;
      --sans:  'DM Sans', system-ui, sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--sans);
      background: var(--white);
      color: var(--text-body);
      font-size: 16px;
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* ── Utility ── */
    .container {
      max-width: 860px;
      margin: 0 auto;
      padding: 0 2rem;
      position: relative;
    }

    .divider {
      width: 48px;
      height: 2px;
      background: var(--accent);
      margin: 1.5rem 0;
      opacity: 0.4;
    }
    .divider.center { margin: 1.5rem auto; }

    /* ── Navigation ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 1.25rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--rule);
    }

    .nav-name {
      font-family: var(--serif);
      font-size: 1.05rem;
      color: var(--navy);
      letter-spacing: 0.02em;
    }

    .nav-name a {
      color: inherit;
      text-decoration: none;
    }

    .nav-cta {
      font-family: var(--sans);
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent);
      text-decoration: none;
      border: 1px solid var(--accent);
      padding: 0.5rem 1.2rem;
      border-radius: 2px;
      transition: all 0.2s;
    }
    .nav-cta:hover {
      background: var(--accent);
      color: var(--white);
    }

    /* ── Hero ── */
    #hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 7rem 0 5rem;
      background: var(--off-white);
      position: relative;
      overflow: hidden;
    }

    /* Subtle geometric accents */
    #hero::after {
      content: '';
      position: absolute;
      top: -100px;
      right: -160px;
      width: 560px;
      height: 560px;
      border: 1px solid rgba(11, 31, 58, 0.06);
      border-radius: 50%;
      pointer-events: none;
    }
    #hero::before {
      content: '';
      position: absolute;
      top: -40px;
      right: -100px;
      width: 360px;
      height: 360px;
      border: 1px solid rgba(11, 31, 58, 0.04);
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
    }

    /* Thin top accent bar */
    .hero-accent-bar {
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--navy) 0%, var(--accent-light) 60%, transparent 100%);
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 4rem;
      align-items: center;
      width: 100%;
      position: relative;
      z-index: 1;
    }

    .hero-eyebrow {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1.2rem;
      opacity: 0.75;
    }

    .hero-name {
      font-family: var(--serif);
      font-size: clamp(2.8rem, 5vw, 4rem);
      font-weight: 600;
      color: var(--navy);
      line-height: 1.1;
      margin-bottom: 0.5rem;
      letter-spacing: -0.01em;
    }

    .hero-title {
      font-family: var(--serif);
      font-size: clamp(1rem, 2vw, 1.2rem);
      font-weight: 400;
      color: var(--slate);
      margin-bottom: 2rem;
      font-style: italic;
    }

    .hero-text {
      font-size: 1.05rem;
      line-height: 1.85;
      color: var(--text-body);
      max-width: 560px;
      margin-bottom: 2.5rem;
    }

    .hero-text strong {
      color: var(--navy);
      font-weight: 500;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: var(--navy);
      color: var(--white);
      font-family: var(--sans);
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 0.9rem 2rem;
      border-radius: 2px;
      transition: all 0.2s;
      border: none;
      cursor: pointer;
    }
    .btn-primary:hover {
      background: var(--accent);
      transform: translateY(-1px);
    }
    .btn-primary svg { width: 14px; height: 14px; }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--text-muted);
      font-size: 0.85rem;
      text-decoration: none;
      transition: color 0.2s;
      margin-left: 1.5rem;
    }
    .btn-secondary:hover { color: var(--navy); }

    /* Photo placeholder */
    .hero-photo {
      width: 200px;
      height: 240px;
      border: 1px solid var(--rule);
      border-radius: 2px;
      flex-shrink: 0;
      background: var(--surface);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      color: var(--text-muted);
      font-size: 0.75rem;
      letter-spacing: 0.05em;
      text-align: center;
      padding: 1rem;
      position: relative;
      overflow: hidden;
    }
    .hero-photo::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: var(--navy);
      opacity: 0.15;
    }
    .hero-photo svg {
      width: 48px;
      height: 48px;
      color: var(--rule);
    }

    /* ── Stats bar ── */
    #stats {
      background: var(--navy);
      padding: 2rem 0;
    }

    .stats-grid {
      display: flex;
      gap: 0;
      flex-wrap: wrap;
    }

    .stat-item {
      flex: 1;
      min-width: 140px;
      padding: 0.75rem 2rem;
      border-right: 1px solid rgba(255,255,255,0.08);
      text-align: center;
    }
    .stat-item:last-child { border-right: none; }

    .stat-number {
      font-family: var(--serif);
      font-size: 1.8rem;
      color: var(--white);
      line-height: 1;
      margin-bottom: 0.3rem;
    }

    .stat-label {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.62);
    }

    /* ── Sections shared ── */
    section { padding: 5rem 0; }

    .section-label {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.75rem;
      opacity: 0.7;
    }

    .section-heading {
      font-family: var(--serif);
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      color: var(--navy);
      line-height: 1.2;
      font-weight: 600;
    }

    /* ── Services ── */
    #services { background: var(--white); }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1px;
      margin-top: 3rem;
      background: var(--rule);
      border: 1px solid var(--rule);
    }

    .service-card {
      background: var(--white);
      padding: 2.5rem 2rem;
      transition: background 0.2s;
      position: relative;
    }
    .service-card:hover {
      background: var(--off-white);
    }
    .service-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 2rem; right: 2rem;
      height: 0;
      background: var(--navy);
      transition: height 0.25s;
    }
    .service-card:hover::after { height: 2px; }

    .service-icon {
      width: 36px;
      height: 36px;
      margin-bottom: 1.25rem;
      color: var(--accent);
      opacity: 0.7;
    }

    .service-name {
      font-family: var(--serif);
      font-size: 1.1rem;
      color: var(--navy);
      margin-bottom: 0.75rem;
      font-weight: 600;
    }

    .service-desc {
      font-size: 0.9rem;
      line-height: 1.75;
      color: var(--text-body);
    }

    /* ── About ── */
    #about { background: var(--off-white); }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
      margin-top: 3rem;
    }

    .about-text p {
      font-size: 0.98rem;
      line-height: 1.85;
      color: var(--text-body);
      margin-bottom: 1rem;
    }
    .about-text p:last-child { margin-bottom: 0; }
    .about-text strong { color: var(--navy); font-weight: 500; }

    .certs-label {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1rem;
      opacity: 0.7;
    }

    .cert-item {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      padding: 0.9rem 0;
      border-bottom: 1px solid var(--rule);
    }
    .cert-item:first-of-type { border-top: 1px solid var(--rule); }

    .cert-dot {
      width: 5px;
      height: 5px;
      background: var(--navy);
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 0.6rem;
      opacity: 0.4;
    }

    .cert-name {
      font-size: 0.88rem;
      color: var(--navy);
      font-weight: 500;
      line-height: 1.3;
    }
    .cert-full {
      font-size: 0.78rem;
      color: var(--text-muted);
      margin-top: 0.2rem;
    }

    /* ── Speaking ── */
    #speaking { background: var(--white); }

    /* Featured cards (top 4) */
    .speaking-highlights {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 1rem;
      margin-top: 2.5rem;
      margin-bottom: 1px;
    }

    .speaking-card {
      background: var(--off-white);
      border: 1px solid var(--rule);
      border-radius: 2px;
      padding: 1.5rem;
      transition: border-color 0.2s, background 0.2s;
    }
    .speaking-card:hover {
      border-color: var(--slate);
      background: var(--surface);
    }

    .speaking-type {
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.5rem;
      opacity: 0.7;
    }

    .speaking-event {
      font-family: var(--serif);
      font-size: 1rem;
      color: var(--navy);
      margin-bottom: 0.4rem;
      line-height: 1.3;
      font-weight: 600;
    }

    .speaking-topic {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* More events label */
    .speaking-more-label {
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent);
      opacity: 0.6;
      margin-top: 3rem;
      margin-bottom: 0.5rem;
    }

    .speaking-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 0.75rem;
      font-size: 0.9rem;
    }
    .speaking-table thead tr {
      border-bottom: 2px solid var(--navy);
    }
    .speaking-table thead th {
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--accent);
      opacity: 0.7;
      padding: 0 1rem 0.75rem 0;
      text-align: left;
    }
    .speaking-table tbody tr {
      border-bottom: 1px solid var(--rule);
      transition: background 0.15s;
    }
    .speaking-table tbody tr:hover {
      background: var(--off-white);
    }
    .speaking-table tbody td {
      padding: 0.9rem 1rem 0.9rem 0;
      color: var(--text-body);
      vertical-align: top;
      line-height: 1.5;
    }
    .speaking-table .td-event {
      color: var(--navy);
      font-weight: 500;
    }
    .speaking-table .td-type {
      width: 1%;
      white-space: nowrap;
      color: var(--text-muted);
      font-size: 0.82rem;
    }
    .speaking-table .td-year {
      width: 5%;
      white-space: nowrap;
      color: var(--text-muted);
      font-size: 0.82rem;
    }

    /* ── Booking ── */
    #booking {
      background: var(--off-white);
      border-top: 1px solid var(--rule);
    }

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

    .booking-inner .section-label { display: block; }
    .booking-inner .section-heading { text-align: center; margin-bottom: 1rem; }

    .booking-text {
      font-size: 0.98rem;
      color: var(--text-body);
      line-height: 1.8;
      margin-bottom: 2.5rem;
    }

    .calendly-placeholder {
      background: var(--white);
      border: 1px dashed var(--rule);
      border-radius: 2px;
      padding: 3rem 2rem;
      color: var(--text-muted);
      font-size: 0.85rem;
      line-height: 1.7;
      margin-bottom: 2rem;
    }
    .calendly-placeholder strong {
      display: block;
      color: var(--accent);
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }



    /* ── Footer ── */
    footer {
      background: var(--navy);
      padding: 2rem 0;
    }

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

    .footer-name {
      font-family: var(--serif);
      font-size: 0.95rem;
      color: rgba(255,255,255,0.62);
    }

    .footer-links {
      display: flex;
      gap: 1.5rem;
      align-items: center;
    }

    .footer-links a {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.62);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: rgba(255,255,255,0.95); }

    .footer-copy {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.55);
    }

    /* ── Animations ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .fade-up {
      opacity: 0;
      animation: fadeUp 0.65s ease forwards;
    }
    .delay-1 { animation-delay: 0.12s; }
    .delay-2 { animation-delay: 0.24s; }
    .delay-3 { animation-delay: 0.36s; }
    .delay-4 { animation-delay: 0.5s; }

    /* ── Responsive ── */
    @media (max-width: 680px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-photo { display: none; }
      .about-grid { grid-template-columns: 1fr; gap: 2rem; }
      .stat-item { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
      .stat-item:last-child { border-bottom: none; }
      .instructor-card { flex-direction: column; text-align: center; }
      .footer-inner { flex-direction: column; text-align: center; }
    }
