  :root {
    --cream: #f5f0e8;
    --dark: #1c1a17;
    --brown: #8b5c3a;
    --olive: #3d4a2e;
    --tan: #c4a882;
    --muted: #7a7060;
    --border: #ddd5c4;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--cream);
    color: var(--dark);
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 18px;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 48px;
    background: rgba(245,240,232,0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
  }
  nav.scrolled { border-color: var(--border); }
  .nav-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
  }
  .nav-brand img {
    display: block;
    width: auto;
    height: 72px;
    object-fit: contain;
  }
  .nav-right {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* HERO */
  .hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 120px 60px 52px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1208 0%, #3d2a10 40%, #6b4220 70%, #8b5c3a 100%);
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
  }
  .hero-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 24px;
    animation: fadeUp 1s ease both;
  }
  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 300;
    line-height: 0.92;
    color: #fff;
    margin-bottom: 24px;
    animation: fadeUp 1s 0.15s ease both;
  }
  .hero-sub {
    max-width: 560px;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,0.72);
    margin-bottom: 0;
    animation: fadeUp 1s 0.3s ease both;
  }
  .hero-cta {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--dark);
    background: var(--cream);
    padding: 16px 36px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    animation: fadeUp 1s 0.45s ease both;
  }
  .hero-cta:hover { background: var(--tan); }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* TICKER */
  .ticker-wrap {
    background: var(--dark);
    overflow: hidden;
    padding: 28px 0;
  }
  .ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 22s linear infinite;
  }
  .ticker span {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--tan);
    padding: 0 32px;
  }
  .ticker span.dot { color: var(--brown); padding: 0 8px; }
  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* SECTIONS */
  section { padding: 100px 60px; }
  .section-label {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--brown);
    margin-bottom: 40px;
  }

  /* VISION */
  .vision { max-width: 1100px; margin: 0 auto; }
  .vision-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 860px;
  }
  .vision-body {
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 620px;
    margin-bottom: 36px;
  }
  .pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--border);
  }
  .pillar {
    padding: 20px 0 20px 0;
    border-bottom: 1px solid var(--border);
  }
  .pillar:nth-child(odd) { padding-right: 48px; border-right: 1px solid var(--border); }
  .pillar:nth-child(even) { padding-left: 48px; }
  .pillar-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 6px;
  }
  .pillar-desc {
    font-size: 16px;
    line-height: 1.65;
    color: var(--muted);
  }

  /* DETAILS */
  .details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    max-width: 1100px;
    margin: 0 auto;
  }
  .detail-block {
    background: var(--cream);
    padding: 48px 40px;
  }
  .detail-label {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--brown);
    margin-bottom: 16px;
  }
  .detail-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 8px;
  }
  .detail-sub {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6;
  }

  /* FORMAT */
  .format-section { background: var(--dark); }
  .format-section .section-label { color: var(--tan); }
  .format-inner { max-width: 1100px; margin: 0 auto; }
  .format-section .section-label { margin-bottom: 16px; }
  .format-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 20px;
    max-width: 700px;
    line-height: 1.15;
  }
  .format-items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
    background: rgba(255,255,255,0.08);
  }
  .format-item {
    background: var(--dark);
    padding: 16px 24px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: border-color 0.3s;
  }
  .format-item:hover { border-color: var(--tan); }
  .format-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--brown);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 6px;
  }
  .format-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--cream);
    margin-bottom: 0;
  }
  .format-item-desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
  }

  /* PANELISTS */
  .panelists-section { max-width: 1200px; margin: 0 auto; }
  .panelists-intro {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 400;
    line-height: 1.2;
    max-width: 700px;
    margin-bottom: 64px;
  }
  .panelists-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
  .panelist-card { cursor: default; }
  .panelist-avatar {
    width: 100%;
    aspect-ratio: 1;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 300;
    color: rgba(245,240,232,0.85);
    position: relative;
    overflow: hidden;
  }
  .panelist-avatar.brown { background: linear-gradient(135deg, #8b5c3a, #6b3e22); }
  .panelist-avatar.olive { background: linear-gradient(135deg, #3d4a2e, #2a3520); }
  .panelist-avatar.tan { background: linear-gradient(135deg, #c4a882, #a08060); }
  .panelist-avatar.sage { background: linear-gradient(135deg, #7a8a6a, #5a6a4a); }
  .panelist-role {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brown);
    margin-bottom: 8px;
  }
  .panelist-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 4px;
    line-height: 1.2;
  }
  .panelist-brand {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 14px;
    letter-spacing: 0.05em;
  }
  .panelist-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-style: italic;
    color: var(--muted);
    line-height: 1.6;
    border-left: 2px solid var(--border);
    padding-left: 14px;
  }
  .more-panelists {
    margin-top: 48px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    color: var(--muted);
  }

  /* AUDIENCE */
  .audience-section {
    background: #f0ead8;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .audience-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .audience-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 20px;
  }
  .audience-sub {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
  }
  .audience-list { list-style: none; padding: 0; }
  .audience-list li {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--dark);
    transition: color 0.2s;
  }
  .audience-list li:first-child { border-top: 1px solid var(--border); }
  .audience-list li::before {
    content: '◆';
    font-size: 8px;
    color: var(--brown);
    flex-shrink: 0;
  }

  /* RSVP */
  .rsvp-section {
    background: var(--olive);
    color: var(--cream);
  }
  .rsvp-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .rsvp-section .section-label { color: var(--tan); }
  .rsvp-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 12px;
    line-height: 1.1;
  }
  .rsvp-sub {
    font-size: 14px;
    color: rgba(245,240,232,0.55);
    margin-bottom: 48px;
  }
  .rsvp-spots {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--tan);
    border: 1px solid rgba(196,168,130,0.3);
    padding: 8px 18px;
    margin-bottom: 48px;
  }
  .rsvp-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .form-group { display: flex; flex-direction: column; }
  .form-group.full { grid-column: 1 / -1; }
  .form-group label {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.45);
    margin-bottom: 10px;
  }
  .form-group input,
  .form-group textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(245,240,232,0.2);
    color: var(--cream);
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 300;
    padding: 10px 0;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: rgba(245,240,232,0.25); }
  .form-group input:focus,
  .form-group textarea:focus { border-bottom-color: var(--tan); }
  .form-group textarea { resize: none; height: 44px; }
  .rsvp-submit {
    margin-top: 8px;
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
  }
  .btn-submit {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: var(--cream);
    color: var(--dark);
    border: none;
    padding: 12px 36px;
    cursor: pointer;
    transition: background 0.2s;
  }
  .btn-submit:hover { background: var(--tan); }
  .form-success {
    display: none;
    grid-column: 1 / -1;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    color: var(--tan);
    padding: 24px 0;
  }

  /* PARTNERS */
  .partners-section { max-width: 1100px; margin: 0 auto; }
  .partner-tier {
    display: grid;
    grid-template-columns: minmax(180px, 0.32fr) 1fr;
    gap: 48px;
    align-items: center;
    padding: 38px 0;
    border-top: 1px solid var(--border);
  }
  .partner-tier:last-child { padding-bottom: 0; }
  .partner-tier-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 400;
    line-height: 1.05;
    color: var(--dark);
  }
  .partner-tier-title span {
    display: block;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    color: inherit;
  }
  .partner-list {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
  }
  .partner-card {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    background: transparent;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .partner-card:hover { opacity: 0.7; transform: translateY(-2px); }
  .partner-card:focus-visible { outline: 1px solid var(--brown); outline-offset: 10px; }
  .partner-card img {
    height: 88px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    background: transparent;
  }
  .partner-card--ramp img { height: 72px; }

  /* BRAND SHOWCASE */
  .showcase-section { max-width: 1100px; margin: 0 auto; }
  .showcase-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 400;
    max-width: 700px;
    line-height: 1.15;
    margin-bottom: 20px;
  }
  .showcase-sub {
    font-size: 16px;
    color: var(--muted);
    max-width: 640px;
    line-height: 1.75;
    margin-bottom: 48px;
  }
  .showcase-sub strong { color: var(--dark); font-weight: 600; }
  .showcase-sub a { color: var(--brown); text-decoration: none; border-bottom: 1px solid var(--tan); }
  .showcase-sub a:hover { color: var(--dark); }
  .showcase-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-bottom: 48px;
  }
  .showcase-stat { background: var(--cream); padding: 32px 36px; }
  .showcase-stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 8px;
  }
  .showcase-stat-label {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .showcase-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 56px;
  }
  .showcase-step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--brown);
    opacity: 0.5;
    margin-bottom: 6px;
  }
  .showcase-step-title {
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 8px;
  }
  .showcase-step-desc { font-size: 15px; color: var(--muted); line-height: 1.65; }
  .showcase-brands {
    margin-bottom: 48px;
  }
  .showcase-brands-label {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brown);
    margin-bottom: 20px;
  }
  .showcase-brand-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }
  .showcase-brand-chip {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    color: var(--dark);
    border: 1px solid var(--border);
    padding: 10px 20px;
    border-radius: 3px;
    background: #fff;
  }
  .showcase-includes {
    border-top: 1px solid var(--border);
    padding-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 48px;
    margin-bottom: 48px;
  }
  .showcase-include-item {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
    display: flex;
    gap: 12px;
    align-items: baseline;
  }
  .showcase-include-item span.dot { color: var(--brown); font-size: 8px; flex-shrink: 0; }
  .showcase-include-item strong { color: var(--dark); font-weight: 600; }
  .showcase-also {
    font-size: 14px;
    color: var(--muted);
    letter-spacing: 0.02em;
    margin-bottom: 48px;
  }
  .showcase-also strong { color: var(--dark); font-weight: 500; }
  .showcase-cta-row {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    border-top: 1px solid var(--border);
    padding-top: 40px;
  }
  .showcase-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--dark);
  }

  /* SPONSORS */
  .sponsors-section { max-width: 1100px; margin: 0 auto; }
  .sponsors-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 400;
    max-width: 600px;
    line-height: 1.15;
    margin-bottom: 16px;
  }
  .sponsors-sub {
    font-size: 16px;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 48px;
  }
  .sponsor-cta {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream);
    background: var(--dark);
    padding: 18px 40px;
    text-decoration: none;
    transition: background 0.2s;
  }
  .sponsor-cta:hover { background: var(--brown); }

  /* FOOTER */
  footer {
    background: var(--dark);
    padding: 48px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: rgba(245,240,232,0.6);
  }
  .footer-right {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.3);
  }

  /* DIVIDER */
  .divider { height: 1px; background: var(--border); }

  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    .nav-brand img { height: 56px; }
    .nav-right { font-size: 10px; letter-spacing: 0.12em; }
    section { padding: 72px 24px; }
    .hero { padding: 0 24px 64px; }
    .panelists-grid { grid-template-columns: 1fr 1fr; }
    .format-items { grid-template-columns: 1fr; }
    .details-grid { grid-template-columns: 1fr; }
    .audience-inner { grid-template-columns: 1fr; gap: 40px; }
    .rsvp-form { grid-template-columns: 1fr; }
    footer { flex-direction: column; gap: 16px; text-align: center; }
    .pillars { grid-template-columns: 1fr; }
    .pillar:nth-child(odd) { border-right: none; padding-right: 0; }
    .pillar:nth-child(even) { padding-left: 0; }
    .partner-tier { grid-template-columns: 1fr; gap: 24px; padding: 32px 0; }
    .partner-card img { max-width: min(100%, 280px); }
  }

  /* NAV LINKS (multi-page) */
  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
  }
  .nav-links a {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
  }
  .nav-links a:hover { color: var(--dark); }
  .nav-links a.active { color: var(--dark); border-bottom-color: var(--brown); }
  .nav-links a.nav-rsvp {
    color: var(--dark);
    border: 1px solid var(--dark);
    padding: 8px 18px;
    border-bottom: 1px solid var(--dark);
  }
  .nav-links a.nav-rsvp:hover { background: var(--dark); color: var(--cream); }
  @media (max-width: 860px) {
    .nav-links { gap: 18px; }
    .nav-links a:not(.nav-rsvp) { display: none; }
  }
  .page-hero {
    padding: 160px 60px 60px;
    background: linear-gradient(135deg, #1a1208 0%, #3d2a10 40%, #6b4220 70%, #8b5c3a 100%);
    position: relative;
    overflow: hidden;
  }
  .page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
  }
  .page-hero-inner { position: relative; max-width: 1100px; margin: 0 auto; }
  .page-hero-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 20px;
  }
  .page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 300;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 16px;
  }
  .page-hero p {
    max-width: 620px;
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255,255,255,0.72);
  }
