:root {
  --ink: #171514;
  --muted: #665e58;
  --paper: #f6f2ec;
  --surface: #fffaf3;
  --line: #d9d0c4;
  --wine: #84304d;
  --wine-dark: #512034;
  --moss: #4f6f54;
  --brass: #c69a5d;
  --shadow: 0 22px 70px rgba(23, 21, 20, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(246, 242, 236, 0.18);
  background: rgba(23, 21, 20, 0.9);
  color: #fffaf3;
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  width: 38px;
  height: 48px;
  display: grid;
  place-items: center;
  color: currentColor;
}

.brand-mark svg,
.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-mark img {
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 250, 243, 0.82);
  font-size: 14px;
}

.nav-links a {
  padding: 8px 0;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #fff;
  border-bottom: 2px solid var(--brass);
}

.hero,
.page-hero {
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fffaf3;
}

.hero {
  min-height: calc(100svh - 118px);
}

.page-hero {
  min-height: 460px;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 21, 20, 0.9), rgba(23, 21, 20, 0.55) 55%, rgba(23, 21, 20, 0.2)),
    linear-gradient(0deg, rgba(23, 21, 20, 0.78), rgba(23, 21, 20, 0.08) 45%);
  z-index: 1;
}

.hero img,
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-inner,
.page-hero-inner,
.wrap,
.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-inner,
.page-hero-inner {
  position: relative;
  z-index: 2;
  padding: 86px 0 66px;
}

.kicker,
.eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.kicker {
  color: #e9d8c6;
}

.eyebrow {
  color: var(--wine);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: 82px;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 48px;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  line-height: 1.2;
}

.lead {
  max-width: 760px;
  margin-bottom: 34px;
  color: rgba(255, 250, 243, 0.86);
  font-size: 22px;
  line-height: 1.45;
}

.section {
  padding: 88px 0;
}

.section.alt {
  background: var(--surface);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.72fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 42px;
}

.section-head p,
.body-copy {
  color: var(--muted);
  font-size: 18px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 920px;
  background: rgba(255, 250, 243, 0.22);
  border: 1px solid rgba(255, 250, 243, 0.22);
  box-shadow: var(--shadow);
}

.hero-meta div {
  min-height: 98px;
  padding: 20px;
  background: rgba(23, 21, 20, 0.58);
}

.hero-meta strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 20px;
}

.hero-meta span {
  color: rgba(255, 250, 243, 0.74);
  font-size: 14px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--wine);
  border-radius: 6px;
  background: var(--wine);
  color: #fffaf3;
  font-weight: 800;
}

.button.secondary {
  background: transparent;
  color: inherit;
}

.cards,
.zone-grid,
.speaker-grid,
.partner-grid,
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature .cards {
  grid-template-columns: 1fr;
}

.card,
.zone,
.speaker,
.partner,
.info-card,
.schedule-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

.card,
.zone,
.speaker,
.partner,
.info-card {
  padding: 24px;
}

.card h3,
.zone h3,
.speaker h3,
.partner h3,
.info-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.card p,
.zone p,
.speaker p,
.partner p,
.info-card p,
.schedule-item p,
.schedule-item li {
  color: var(--muted);
}

.feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: 46px;
  align-items: center;
}

.feature-media {
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.feature-media img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
}

.callout {
  border-left: 5px solid var(--wine);
  padding: 26px 0 26px 28px;
}

.stat-line {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.stat {
  min-width: 160px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

.stat strong {
  display: block;
  color: var(--wine-dark);
  font-size: 28px;
  line-height: 1;
}

.stat span,
.tag {
  color: var(--muted);
  font-size: 13px;
}

.schedule {
  display: grid;
  gap: 18px;
}

.schedule-day {
  padding-top: 10px;
}

.schedule-day h2 {
  margin-bottom: 22px;
}

.schedule-item {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) 220px;
  gap: 24px;
  padding: 24px;
}

.time {
  color: var(--wine);
  font-weight: 900;
}

.room {
  color: var(--moss);
  font-weight: 800;
}

.speaker-role {
  margin-bottom: 14px;
  color: var(--wine);
  font-weight: 800;
}

.partner {
  min-height: 190px;
}

.partner .tag,
.speaker .tag {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--wine);
  font-weight: 800;
}

.summary-band {
  background: var(--wine-dark);
  color: #fffaf3;
}

.summary {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.65fr);
  gap: 64px;
  align-items: center;
}

.summary p {
  color: rgba(255, 250, 243, 0.78);
  font-size: 18px;
}

.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.plain-list li {
  display: flex;
  gap: 12px;
  color: inherit;
}

.plain-list li::before {
  content: "";
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--brass);
}

footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 980px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-meta,
  .section-head,
  .cards,
  .zone-grid,
  .speaker-grid,
  .partner-grid,
  .info-grid,
  .feature,
  .summary {
    grid-template-columns: 1fr;
  }

  .schedule-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 620px) {
  .nav,
  .wrap,
  .hero-inner,
  .page-hero-inner,
  .footer-inner {
    width: min(100% - 28px, 1180px);
  }

  .brand-mark {
    width: 32px;
    height: 40px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .lead,
  .section-head p,
  .body-copy,
  .summary p {
    font-size: 17px;
  }

  .section {
    padding: 64px 0;
  }

  .hero-inner,
  .page-hero-inner {
    padding: 66px 0 40px;
  }

  .footer-inner {
    display: block;
  }
}
