:root {
    --charge-black: #0a141c;
    --charge-red: #cf1a4a;
    --light-grey: #f5f5f7;
    --ink: #0a141c;
    --ink-soft: #4a5560;
    --line: #e6e8ec;
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
  }
  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: 'Poppins', system-ui, sans-serif;
    background: #ffffff;
    color: var(--ink);
    font-weight: 400;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--charge-black);
    margin: 0;
    line-height: 1.1;
  }
  p { margin: 0; }
  .container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

  /* NAV */
  .nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid rgba(10,20,28,0.06);
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 32px; max-width: 1240px; margin: 0 auto;
  }
  .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--charge-black); }
  .logo img { height: 72px; width: auto; display: block; }
  .nav-links { display: flex; align-items: center; gap: 36px; }
  .nav-links a {
    text-decoration: none; color: var(--ink);
    font-size: 14.5px; font-weight: 400; position: relative;
  }
  .nav-links a.active { color: var(--charge-red); font-weight: 500; }
  .nav-item { position: relative; }
  .nav-item > a .caret {
    display: inline-block; margin-left: 6px; font-size: 9px; transition: transform 0.2s;
  }
  .nav-item:hover > a .caret, .nav-item:focus-within > a .caret { transform: translateY(0) rotate(180deg); }
  .nav-dropdown {
    position: absolute; top: 100%; left: 50%;
    transform: translate(-50%, 8px);
    background: white; border: 1px solid var(--line); border-radius: 14px;
    padding: 10px; min-width: 240px;
    box-shadow: 0 18px 40px -18px rgba(10,20,28,0.18);
    opacity: 0; visibility: hidden;
    transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
    z-index: 50; display: flex; flex-direction: column; gap: 2px;
  }
  .nav-item:hover .nav-dropdown, .nav-item:focus-within .nav-dropdown {
    opacity: 1; visibility: visible; transform: translate(-50%, 4px);
  }
  .nav-dropdown::before {
    content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 14px;
  }
  .nav-dropdown a {
    display: block; padding: 10px 14px; border-radius: 9px;
    font-size: 15px; color: var(--ink);
    transition: background 0.15s, color 0.15s;
  }
  .nav-dropdown a:hover { background: var(--light-grey); color: var(--charge-red); }
  .nav-dropdown a .nav-sub-label {
    display: block; font-family: 'Space Grotesk', sans-serif;
    font-size: 11.5px; font-weight: 500;
    color: var(--ink-soft); margin-top: 2px; letter-spacing: 0.02em;
  }
  .nav-cta {
    background: var(--charge-red); color: white !important;
    padding: 11px 20px; border-radius: 100px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px !important; font-weight: 500 !important;
    transition: transform 0.2s, background 0.2s;
  }
  .nav-cta:hover { background: var(--charge-black); transform: translateY(-1px); }

  /* HERO */
  .hero { padding: 80px 0 32px; background: var(--light-grey); }
  .eyebrow {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.18em;
    color: var(--charge-red); margin-bottom: 18px;
    display: inline-flex; align-items: center; gap: 10px;
  }
  .eyebrow::before {
    content: ''; width: 28px; height: 1px; background: var(--charge-red);
  }
  .hero h1 {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 500; letter-spacing: -0.03em;
    line-height: 1.05; margin-bottom: 20px;
    max-width: 800px;
  }
  .hero h1 em { font-style: italic; color: var(--charge-red); font-weight: 500; }
  .hero-lede {
    font-size: 18px; color: var(--ink-soft);
    max-width: 620px; line-height: 1.6;
  }

  /* CONTACT GRID */
  .contact {
    padding: 56px 0 96px;
    background: var(--light-grey);
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 32px;
    align-items: start;
  }

  /* HOST CARD */
  .host-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px 36px 40px;
    position: sticky;
    top: 130px;
  }
  .host-row {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 18px;
    align-items: center;
    margin-bottom: 24px;
  }
  .host-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--charge-red);
    color: white;
    display: grid;
    place-items: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: -0.02em;
  }
  .host-name {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 2px;
  }
  .host-role {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13.5px;
    color: var(--charge-red);
    font-weight: 500;
  }
  .host-card .host-lede {
    color: var(--ink-soft);
    font-size: 15.5px;
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .host-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }
  .host-list-item {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 14px;
    align-items: start;
    font-size: 14.5px;
    color: var(--charge-black);
  }
  .host-list-item .check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--charge-red);
    color: white;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    margin-top: 1px;
  }
  .host-contact {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
  }
  .host-contact a {
    color: var(--charge-black);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
  }
  .host-contact a:hover { color: var(--charge-red); }
  .host-contact .label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11.5px;
    font-weight: 500;
    color: var(--ink-soft);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
  }

  /* CALENDLY WIDGET */
  .calendly-wrap {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 720px;
    box-shadow: 0 20px 50px -28px rgba(10,20,28,0.18);
  }
  .calendly-inline-widget {
    min-width: 320px;
    height: 720px;
  }
  /* Fallback / placeholder shown until Calendly script loads */
  .calendly-fallback {
    padding: 48px 36px;
    text-align: center;
    color: var(--ink-soft);
    font-size: 14.5px;
  }
  .calendly-fallback strong { display: block; color: var(--charge-black); margin-bottom: 8px; font-size: 16px; }

  /* FOOTER */
  @media (max-width: 700px) {
  }

  /* RESPONSIVE */
  @media (max-width: 1000px) {
    .contact-grid { grid-template-columns: 1fr; }
    .host-card { position: static; }
  }
  @media (max-width: 700px) {
    .nav-links { gap: 20px; }
    .nav-links > a:not(.nav-cta), .nav-item { display: none; }
    .hero { padding: 56px 0 24px; }
  }

  /* ---------- FOOTER ---------- */
  footer {
    background: var(--charge-black);
    color: white;
    padding: 56px 0 36px;
    font-size: 13.5px;
  }
  footer .container { display: block; }
  .footer-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 64px;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-cols {
    display: flex;
    gap: 32px;
    flex: 1;
    flex-wrap: wrap;
  }
  .footer-col { min-width: 140px; }
  .footer-col:nth-child(3) { margin-left: auto; }
  .footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer-col h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: white;
    margin: 0 0 6px;
  }
  .footer-col a {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
    font-size: 14px;
  }
  .footer-col a:hover { opacity: 0.7; }
  @media (max-width: 900px) {
    .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  }
  @media (max-width: 700px) {
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; justify-self: stretch; }
  }
  footer .logo { color: white; }
  .footer-fine { padding-top: 28px; }
  .footer-fine-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    color: white;
    margin-bottom: 14px;
  }
  .footer-fine-legal {
    color: white;
    font-size: 12px;
    line-height: 1.6;
    max-width: 920px;
  }

  .container,
  .nav-inner {
    max-width: 1180px;
  }

  h1,
  h2,
  h3,
  h4 {
    letter-spacing: 0;
  }

  .nav {
    background: rgba(255, 255, 255, 0.92);
    border-bottom-color: rgba(10, 20, 28, 0.08);
  }

  .nav-inner {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .logo img {
    height: 62px;
  }

  .hero {
    padding: 88px 0 56px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: 62px;
    line-height: 1.12;
    letter-spacing: 0;
    padding-bottom: 0.08em;
    overflow: visible;
  }

  .hero-lede {
    max-width: 680px;
    font-size: 18px;
    line-height: 1.72;
  }

  .contact-section {
    padding: 72px 0 112px;
  }

  .contact-grid {
    gap: 42px;
  }

  .host-card,
  .booking-fallback,
  .calendly-wrap {
    border-radius: 18px;
  }

  .host-card,
  .booking-fallback {
    border: 1px solid rgba(10, 20, 28, 0.06);
    box-shadow: 0 16px 42px -38px rgba(10, 20, 28, 0.48);
  }

  .host-card {
    padding: 30px;
  }

  .host-list {
    gap: 12px;
  }

  .host-list-item {
    line-height: 1.55;
  }

  @media (max-width: 1000px) {
    .hero h1 {
      font-size: 52px;
    }

    .contact-section {
      padding-top: 52px;
    }
  }

  @media (max-width: 700px) {
    .hero {
      padding: 46px 0 28px !important;
    }

    .hero h1 {
      font-size: 40px !important;
      line-height: 1.14 !important;
    }

    .hero-lede {
      font-size: 16px !important;
      line-height: 1.68 !important;
    }

    .contact-section {
      padding: 42px 0 74px;
    }

    .host-card,
    .booking-fallback {
      padding: 24px !important;
    }
  }
