    :root {
      --ink: #0a0a0a;
      --paper: #f5f0e8;
      --warm: #f0e8d8;
      --accent: #b45309;
      --accent-light: #d97706;
      --accent-bg: #fef3c7;
      --slate: #44403c;
      --stone: #78716c;
      --muted: #a8a29e;
      --divider: #d6d3d1;
      --card: #faf8f4;
      --serif: 'Playfair Display', Georgia, serif;
      --sans: 'DM Sans', -apple-system, sans-serif;
      --mono: 'JetBrains Mono', monospace;
    }

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

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: var(--sans);
      background: var(--paper);
      color: var(--ink);
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    ::selection { background: var(--accent); color: #fff; }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(245, 240, 232, 0.92);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--divider);
      transition: transform 0.3s ease;
    }
    nav .nav-inner {
      max-width: 1200px; margin: 0 auto;
      display: flex; justify-content: space-between; align-items: center;
      padding: 1rem 2rem;
    }
    nav .logo {
      font-family: var(--serif); font-weight: 900; font-size: 1.25rem;
      color: var(--ink); text-decoration: none; letter-spacing: -0.02em;
    }
    nav .logo span { color: var(--accent); }
    nav ul {
      display: flex; list-style: none; gap: 2rem; align-items: center;
    }
    nav ul li a {
      font-size: 0.85rem; font-weight: 500; text-decoration: none; color: var(--slate);
      letter-spacing: 0.06em; text-transform: uppercase;
      transition: color 0.2s;
    }
    nav ul li a:hover { color: var(--accent); }
    .nav-cta {
      background: var(--ink); color: var(--paper) !important; padding: 0.5rem 1.25rem;
      border-radius: 4px; text-transform: uppercase !important; font-weight: 700 !important;
      transition: background 0.2s !important;
    }
    .nav-cta:hover { background: var(--accent) !important; }

    .hamburger {
      display: none; background: none; border: none; cursor: pointer; padding: 4px;
    }
    .hamburger span {
      display: block; width: 24px; height: 2px; background: var(--ink);
      margin: 5px 0; transition: all 0.3s;
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex; align-items: center;
      padding: 8rem 2rem 4rem;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; top: -200px; right: -200px;
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(180,83,9,0.07) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }
    .hero::after {
      content: 'SG';
      position: absolute; bottom: -60px; right: 40px;
      font-family: var(--serif); font-weight: 900;
      font-size: 28rem; color: rgba(10,10,10,0.025);
      line-height: 1; pointer-events: none;
    }
    .hero-inner {
      max-width: 1200px; margin: 0 auto; width: 100%;
      display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
    }
    .hero-text .overline {
      font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--accent);
      margin-bottom: 1.5rem; display: block;
    }
    .hero-text h1 {
      font-family: var(--serif); font-size: 4.5rem; font-weight: 900;
      line-height: 1.05; letter-spacing: -0.03em;
      margin-bottom: 1.5rem;
    }
    .hero-text h1 em {
      font-style: italic; color: var(--accent);
    }
    .hero-text .subtitle {
      font-size: 1.25rem; color: var(--slate); max-width: 500px;
      margin-bottom: 2rem; line-height: 1.7;
    }
    .hero-links {
      display: flex; gap: 1rem; flex-wrap: wrap;
    }
    .hero-links a, .btn-primary, .btn-secondary {
      display: inline-flex; align-items: center; gap: 0.5rem;
      padding: 0.75rem 1.5rem; font-size: 0.9rem; font-weight: 600;
      text-decoration: none; border-radius: 4px; transition: all 0.25s;
    }
    .btn-primary {
      background: var(--ink); color: var(--paper);
    }
    .btn-primary:hover { background: var(--accent); }
    .btn-secondary {
      background: transparent; color: var(--ink);
      border: 2px solid var(--ink);
    }
    .btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

    .hero-visual {
      display: flex; justify-content: center; align-items: center;
      position: relative;
    }
    .headshot-frame {
      width: 380px; height: 460px;
      background: var(--warm);
      border: 2px solid var(--divider);
      border-radius: 8px;
      position: relative;
      overflow: hidden;
    }
    .headshot-frame::before {
      content: '';
      position: absolute; inset: 8px;
      border: 1px solid var(--accent);
      border-radius: 4px;
      opacity: 0.3;
      z-index: 1;
    }
    .headshot-frame img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center top;
      display: block;
    }

    /* ── SECTION BASE ── */
    section {
      padding: 6rem 2rem;
    }
    .section-inner {
      max-width: 1200px; margin: 0 auto;
    }
    .section-overline {
      font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem;
      display: block;
    }
    .section-title {
      font-family: var(--serif); font-size: 3rem; font-weight: 900;
      line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 1.5rem;
    }
    .section-desc {
      font-size: 1.1rem; color: var(--slate); max-width: 640px;
      line-height: 1.8; margin-bottom: 3rem;
    }
    .divider-line {
      height: 1px; background: var(--divider); border: none;
      max-width: 1200px; margin: 0 auto;
    }

    /* ── ABOUT ── */
    #about { background: var(--ink); color: var(--paper); }
    #about .section-overline { color: var(--accent-light); }
    #about .section-desc { color: #d6d3d1; }
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
    }
    .about-narrative {
      font-size: 1.05rem; line-height: 1.9; color: #d6d3d1;
    }
    .about-narrative p + p { margin-top: 1.5rem; }
    .about-narrative strong { color: var(--paper); font-weight: 600; }
    .stat-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
    }
    .stat-card {
      padding: 2rem; border: 1px solid rgba(255,255,255,0.1);
      border-radius: 6px;
    }
    .stat-card .number {
      font-family: var(--serif); font-size: 3rem; font-weight: 900;
      color: var(--accent-light); line-height: 1;
    }
    .stat-card .label {
      font-size: 0.85rem; color: #a8a29e; margin-top: 0.5rem;
      text-transform: uppercase; letter-spacing: 0.08em;
    }

    /* ── SECTION INTRO WITH PHOTO (reusable: used by Expertise and Career) ── */
    .intro-with-photo {
      display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3rem;
      align-items: start; margin-bottom: 3rem;
    }
    .intro-with-photo .section-desc { margin-bottom: 0; }
    .intro-photo-frame {
      width: 100%; aspect-ratio: var(--photo-ratio, 4 / 5);
      background: var(--warm);
      border: 2px solid var(--divider);
      border-radius: 8px;
      position: relative;
      overflow: hidden;
    }
    .intro-photo-frame::before {
      content: '';
      position: absolute; inset: 8px;
      border: 1px solid var(--accent);
      border-radius: 4px;
      opacity: 0.3;
      z-index: 1;
    }
    .intro-photo-frame img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center top;
      display: block;
    }

    /* ── EXPERTISE PILLARS ── */
    .pillars-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
    }
    .pillar-card {
      background: var(--card);
      border: 1px solid var(--divider);
      border-radius: 6px;
      padding: 2.5rem 2rem;
      transition: all 0.3s;
      position: relative; overflow: hidden;
    }
    .pillar-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 3px; background: var(--accent);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.4s ease;
    }
    .pillar-card:hover::before { transform: scaleX(1); }
    .pillar-card:hover { border-color: var(--accent); }
    .pillar-icon {
      font-size: 2rem; margin-bottom: 1.25rem;
      width: 48px; height: 48px;
      display: flex; align-items: center; justify-content: center;
      background: var(--accent-bg); border-radius: 8px;
    }
    .pillar-card h3 {
      font-family: var(--serif); font-size: 1.35rem; font-weight: 700;
      margin-bottom: 0.75rem;
    }
    .pillar-card p {
      font-size: 0.95rem; color: var(--slate); line-height: 1.7;
    }

    /* ── CAREER TIMELINE ── */
    #career { background: var(--warm); }
    .career-layout {
      display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3rem;
      align-items: start;
    }
    .career-photo {
      position: sticky; top: 6.5rem;
    }
    .timeline {
      position: relative; padding-left: 3rem;
    }
    .timeline::before {
      content: '';
      position: absolute; top: 0; bottom: 0; left: 14px;
      width: 2px; background: var(--divider);
    }
    .timeline-item {
      position: relative; margin-bottom: 2.5rem;
      padding-left: 2rem;
    }
    .timeline-item::before {
      content: '';
      position: absolute; left: -2.45rem; top: 8px;
      width: 12px; height: 12px; background: var(--accent);
      border: 3px solid var(--warm);
      border-radius: 50%;
    }
    .timeline-item .era {
      font-family: var(--mono); font-size: 0.72rem; color: var(--accent);
      letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.25rem;
    }
    .timeline-item h3 {
      font-family: var(--serif); font-size: 1.3rem; font-weight: 700;
      margin-bottom: 0.15rem;
    }
    .timeline-item .org {
      font-weight: 600; color: var(--slate); font-size: 0.95rem;
      margin-bottom: 0.5rem;
    }
    .timeline-item p {
      font-size: 0.9rem; color: var(--stone); line-height: 1.7;
      max-width: 560px;
    }

    /* ── PODCAST / MEDIA ── */
    .media-layout {
      display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 4rem;
      align-items: start;
    }
    .media-photo-frame {
      width: 100%; aspect-ratio: 16 / 9;
      background: var(--warm);
      border: 2px solid var(--divider);
      border-radius: 8px;
      position: relative;
      overflow: hidden;
      margin-bottom: 2rem;
    }
    .media-photo-frame::before {
      content: '';
      position: absolute; inset: 8px;
      border: 1px solid var(--accent);
      border-radius: 4px;
      opacity: 0.3;
      z-index: 1;
    }
    .media-photo-frame img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center top;
      display: block;
    }
    .media-intro h3 {
      font-family: var(--serif); font-size: 1.6rem; font-weight: 700;
      margin-bottom: 1rem;
    }
    .media-intro p {
      color: var(--slate); line-height: 1.8; margin-bottom: 1.5rem;
    }
    .media-list {
      display: flex; flex-direction: column; gap: 1rem;
    }
    .media-group-label {
      font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--stone);
      display: flex; align-items: center; gap: 0.75rem;
      margin-top: 1rem;
    }
    .media-group-label:first-child { margin-top: 0; }
    .media-group-label::after {
      content: ''; flex: 1; height: 1px; background: var(--divider);
    }

    /* Episode cards (hosted episodes with platform links) */
    .episode-card {
      background: var(--card); border: 1px solid var(--divider);
      border-radius: 6px; padding: 1.35rem 1.5rem;
      display: grid; grid-template-columns: 84px 1fr; gap: 1.25rem;
      align-items: start;
      transition: border-color 0.25s, box-shadow 0.25s;
    }
    .episode-card:hover {
      border-color: var(--accent);
      box-shadow: 0 4px 24px rgba(180,83,9,0.08);
    }
    .ep-thumb {
      position: relative; width: 84px; height: 84px;
      border-radius: 5px; overflow: hidden; flex-shrink: 0;
      background: var(--ink);
      display: grid; place-items: center;
    }
    .ep-thumb::before {
      content: attr(data-initials);
      font-family: var(--serif); font-size: 1.4rem; font-weight: 700;
      color: var(--paper); opacity: 0.55;
    }
    .ep-thumb img {
      position: absolute; inset: 0;
      width: 100%; height: 100%; object-fit: cover; display: block;
    }
    .ep-body { min-width: 0; }
    .ep-title {
      font-size: 1rem; font-weight: 600; line-height: 1.4;
      margin-bottom: 0.3rem;
    }
    .ep-title a { color: inherit; text-decoration: none; }
    .ep-title a:hover { color: var(--accent); }
    .ep-meta {
      font-size: 0.78rem; color: var(--stone); margin-bottom: 0.85rem;
    }
    .ep-guest { color: var(--slate); font-weight: 500; }

    /* Platform link pills */
    .ep-links { display: flex; flex-wrap: wrap; gap: 0.5rem; }
    .plat {
      display: inline-flex; align-items: center; gap: 0.4rem;
      font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.08em;
      text-transform: uppercase; font-weight: 500;
      color: var(--slate); text-decoration: none;
      background: var(--paper); border: 1px solid var(--divider);
      border-radius: 999px; padding: 0.38rem 0.7rem;
      transition: border-color 0.2s, transform 0.2s, background 0.2s, color 0.2s;
      white-space: nowrap;
    }
    .plat svg { width: 14px; height: 14px; flex-shrink: 0; }
    .plat:hover { transform: translateY(-1px); color: var(--ink); }
    .plat-spotify:hover { border-color: #1db954; background: rgba(29,185,84,0.08); }
    .plat-apple:hover   { border-color: #9933cc; background: rgba(153,51,204,0.08); }
    .plat-youtube:hover { border-color: #ff0000; background: rgba(255,0,0,0.07); }
    .plat-soon {
      opacity: 0.45; cursor: default; border-style: dashed;
    }
    .plat-soon:hover { transform: none; color: var(--slate); }

    /* Appearance / talk cards (single link) */
    .media-card {
      background: var(--card); border: 1px solid var(--divider);
      border-radius: 6px; padding: 1.5rem 1.75rem;
      text-decoration: none; color: inherit;
      display: flex; align-items: flex-start; gap: 1.25rem;
      transition: all 0.25s;
    }
    .media-card:hover { border-color: var(--accent); transform: translateX(4px); }
    .media-card .type-badge {
      font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--paper);
      padding: 0.25rem 0.5rem; border-radius: 3px;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .badge-podcast { background: #7c3aed; }
    .badge-video { background: #dc2626; }
    .badge-article { background: var(--accent); }
    .badge-talk { background: #0369a1; }
    .badge-keynote { background: #0f766e; }
    .media-card h4 {
      font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; line-height: 1.4;
    }
    .media-card .media-meta {
      font-size: 0.8rem; color: var(--stone);
    }
    .media-card.placeholder-card {
      border-style: dashed; opacity: 0.6; cursor: default;
    }

    /* ── PUBLICATIONS ── */
    #publications { background: var(--warm); }
    .pub-grid {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
    }
    .pub-card {
      background: var(--card); border: 1px solid var(--divider);
      border-radius: 6px; padding: 2rem;
      text-decoration: none; color: inherit;
      transition: all 0.25s;
      display: block;
    }
    .pub-card:hover { border-color: var(--accent); box-shadow: 0 4px 24px rgba(180,83,9,0.08); }
    .pub-card .pub-source {
      font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem;
      display: block;
    }
    .pub-card h4 {
      font-family: var(--serif); font-size: 1.15rem; font-weight: 700;
      line-height: 1.4; margin-bottom: 0.5rem;
    }
    .pub-card p {
      font-size: 0.85rem; color: var(--stone); line-height: 1.6;
    }

    /* ── PHILOSOPHY ── */
    .philosophy-block {
      background: var(--ink); color: var(--paper);
      padding: 5rem 2rem; text-align: center;
    }
    .philosophy-block blockquote {
      font-family: var(--serif); font-size: 2.2rem; font-weight: 400;
      font-style: italic; line-height: 1.5; max-width: 800px; margin: 0 auto 1.5rem;
      letter-spacing: -0.01em;
    }
    .philosophy-block cite {
      font-family: var(--mono); font-size: 0.75rem; font-style: normal;
      color: var(--accent-light); letter-spacing: 0.15em; text-transform: uppercase;
    }

    /* ── CONTACT ── */
    #contact { background: var(--paper); }
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
      align-items: start;
    }
    .contact-links {
      display: flex; flex-direction: column; gap: 1.25rem;
    }
    .contact-link {
      display: flex; align-items: center; gap: 1rem;
      text-decoration: none; color: var(--ink);
      font-size: 1.1rem; font-weight: 500;
      padding: 1rem 1.5rem; border-radius: 6px;
      border: 1px solid var(--divider);
      transition: all 0.25s;
    }
    .contact-link:hover { border-color: var(--accent); color: var(--accent); background: var(--card); }
    .contact-link .link-icon {
      width: 40px; height: 40px; border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; flex-shrink: 0;
    }

    /* ── FOOTER ── */
    footer {
      padding: 2rem;
      text-align: center;
      font-size: 0.8rem; color: var(--stone);
      border-top: 1px solid var(--divider);
    }
    footer a { color: var(--accent); text-decoration: none; }

    /* ── ANIMATIONS ── */
    .reveal {
      opacity: 0; transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1; transform: translateY(0);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 960px) {
      .hero-inner { grid-template-columns: 1fr; text-align: center; }
      .hero-text h1 { font-size: 3rem; }
      .hero-text .subtitle { margin-left: auto; margin-right: auto; }
      .hero-links { justify-content: center; }
      .hero-visual { margin-top: 2rem; }
      .headshot-frame { width: 280px; height: 340px; }
      .about-grid { grid-template-columns: 1fr; }
      .intro-with-photo { grid-template-columns: 1fr; }
      .intro-photo-frame { aspect-ratio: 16 / 10; order: -1; }
      .career-layout { grid-template-columns: 1fr; }
      .career-photo { position: static; }
      .pillars-grid { grid-template-columns: 1fr; }
      .media-layout { grid-template-columns: 1fr; gap: 2.5rem; }
      .pub-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      .section-title { font-size: 2.25rem; }
      nav ul { display: none; }
      .hamburger { display: block; }
      nav ul.open {
        display: flex; flex-direction: column;
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--paper); border-top: 1px solid var(--divider);
        padding: 1.5rem 2rem; gap: 1.25rem;
      }
    }
    @media (max-width: 600px) {
      .hero { padding: 7rem 1.25rem 3rem; }
      .hero-text h1 { font-size: 2.4rem; }
      section { padding: 4rem 1.25rem; }
      .stat-grid { grid-template-columns: 1fr; }
      .hero::after { font-size: 16rem; right: 10px; bottom: -30px; }
      .episode-card { grid-template-columns: 64px 1fr; gap: 1rem; padding: 1.15rem 1.15rem; }
      .ep-thumb { width: 64px; height: 64px; }
      .plat { font-size: 0.6rem; padding: 0.35rem 0.6rem; }
    }
  

    /* ══════════ BE-A-GUEST SUBPAGE ══════════ */
    .back-row { max-width: 1200px; margin: 0 auto; padding: 6.75rem 2rem 0; }
    .back-link {
      font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--accent); text-decoration: none;
      display: inline-flex; align-items: center; gap: 0.5rem;
    }
    .back-link:hover { color: var(--accent-light); }

    .guest-hero { padding: 2.5rem 2rem 3rem; }
    .guest-hero .section-inner { max-width: 1200px; margin: 0 auto; }
    .guest-hero h1 {
      font-family: var(--serif); font-size: 4rem; font-weight: 900;
      line-height: 1.05; letter-spacing: -0.03em; margin: 1.25rem 0 1.5rem; max-width: 15ch;
    }
    .guest-hero h1 em { font-style: italic; color: var(--accent); }
    .guest-hero .subtitle {
      font-size: 1.2rem; color: var(--slate); max-width: 620px; line-height: 1.7; margin-bottom: 0.75rem;
    }
    .guest-hero .host {
      font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--stone); margin-bottom: 2rem;
    }
    .guest-hero .host strong { color: var(--slate); font-weight: 500; }

    /* Steps — editorial numbered list, echoing the timeline / stat numerals */
    .guest-steps { border-top: 1px solid var(--divider); margin-top: 2.5rem; }
    .guest-step {
      display: grid; grid-template-columns: 5rem 1fr; gap: 2rem;
      padding: 2rem 0; border-bottom: 1px solid var(--divider); align-items: start;
    }
    .guest-step .num {
      font-family: var(--serif); font-size: 2.75rem; font-weight: 900;
      color: var(--accent); line-height: 1;
    }
    .guest-step h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; margin-bottom: 0.4rem; }
    .guest-step p { color: var(--slate); line-height: 1.7; max-width: 60ch; font-size: 1rem; }

    /* Booking band — ink treatment, consistent with the philosophy block */
    .booking-band {
      background: var(--ink); color: var(--paper);
      border-radius: 8px; padding: 3rem 2.5rem;
      display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem;
    }
    .booking-band .band-copy { max-width: 34rem; }
    .booking-band h2 {
      font-family: var(--serif); font-size: 2rem; font-weight: 900; line-height: 1.15; margin-bottom: 0.6rem;
    }
    .booking-band p { color: #d6d3d1; line-height: 1.7; }
    .btn-light {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: var(--accent); color: var(--paper);
      padding: 0.85rem 1.6rem; font-size: 0.9rem; font-weight: 700;
      text-decoration: none; border-radius: 4px; white-space: nowrap;
      transition: background 0.2s, transform 0.2s;
    }
    .btn-light:hover { background: var(--accent-light); transform: translateY(-1px); }

    .subpage-foot-links {
      display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; margin-bottom: 0.85rem;
    }
    .subpage-foot-links a {
      font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--stone); text-decoration: none;
    }
    .subpage-foot-links a:hover { color: var(--accent); }

    @media (max-width: 960px) {
      .guest-hero h1 { font-size: 3rem; }
      .booking-band { flex-direction: column; align-items: flex-start; }
    }
    @media (max-width: 600px) {
      .back-row { padding-top: 6rem; }
      .guest-hero h1 { font-size: 2.4rem; }
      .guest-step { grid-template-columns: 3rem 1fr; gap: 1.25rem; }
      .guest-step .num { font-size: 2rem; }
      .booking-band { padding: 2rem 1.5rem; }
    }
