@charset "UTF-8";
:root {
  --teal: #2AA7B8;
  --sand: #F3EFE6;
  --ink: #1F2A33;
  --muted: #5D6B78;
  --line: #CDBFAF;
  --accent: #B08B62;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--ink);
  background: var(--sand);
  line-height: 1.55;
}

.container {
  width: min(1100px, 100% - 48px);
  margin: 0 auto;
}

a {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(42, 167, 184, 0.4);
  transition: all 0.15s ease;
}

a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.muted {
  color: var(--muted);
}

.dot {
  padding: 0 8px;
  color: var(--muted);
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 239, 230, 0.86);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(205, 191, 175, 0.6);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 18px;
}

.nav__inner a {
  border-bottom: none;
}

.nav__brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--ink);
}

.nav__brand-title {
  font-weight: 800;
  letter-spacing: 0.2px;
}

.nav__brand-subtitle {
  font-size: 13px;
  color: var(--muted);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
}

.nav__links a {
  padding: 8px 10px;
  border-radius: 12px;
  color: var(--ink);
  border-bottom: none;
}

.nav__links a:hover {
  background: rgba(42, 167, 184, 0.1);
  text-decoration: none;
  color: var(--ink);
}

/* Banner */
.banner {
  background: rgba(42, 167, 184, 0.12);
  border-bottom: 1px solid rgba(42, 167, 184, 0.18);
}

.banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 14px;
}

/* Hero */
.hero {
  position: relative;
  padding: 56px 0 40px;
}

.hero__card {
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.hero__img {
  height: 400px;
  background-size: cover;
  background-position: center;
}

.hero__content {
  padding: 26px 26px 22px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(176, 139, 98, 0.14);
  color: #5b4632;
  font-weight: 700;
  font-size: 13px;
}

.hero h1 {
  margin: 14px 0 8px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.2px;
  color: var(--ink); /* Change to teal, or use any color like #2AA7B8 */
}

.hero p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  max-width: 80ch;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--muted);
  font-weight: 600;
}

.hero__meta a {
  color: #1d7783;
  font-weight: 500;
}

.hero__meta a::after {
  content: " ↗";
  font-size: 0.8em;
  margin-left: 0.3em;
  opacity: 0.7;
}

.hero__meta a:hover {
  text-decoration: none;
  opacity: 0.85;
}

.hero__actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--teal);
  color: #08333a;
  font-weight: 800;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 18px rgba(42, 167, 184, 0.2);
  text-decoration: none !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.btn:hover {
  text-decoration: none;
  filter: brightness(0.98);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(205, 191, 175, 0.9);
  box-shadow: none;
}

.btn--small {
  padding: 9px 12px;
  border-radius: 12px;
  font-weight: 800;
}

/* Sections */
.section {
  padding: 45px 0;
}

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  color: var(--ink);
}

.section h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.2px;
  color: var(--ink);
}

.section__sub {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.panel {
  grid-column: span 12;
  background: #fff;
  border: 1px solid rgba(205, 191, 175, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

#contact em {
  font-style: italic;
}

@media (min-width: 860px) {
  .panel--half {
    grid-column: span 6;
  }
  .panel--third {
    grid-column: span 4;
  }
}
/* Cards */
.card {
  background: #fff;
  border: 1px solid rgba(205, 191, 175, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.speaker {
  display: flex;
  gap: 16px;
  padding: 16px;
  align-items: center;
}

.speaker__photo {
  width: 78px;
  height: 78px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(176, 139, 98, 0.35);
}

.speaker__name {
  font-weight: 900;
}

.speaker__role {
  font-weight: 700;
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}

.speaker__affil {
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}

.speaker__talk {
  margin-top: 8px;
  font-size: 13px;
}

.speaker__track {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(42, 167, 184, 0.12);
  color: #0a3b43;
}

/* Table */
.table-wrap {
  overflow: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(205, 191, 175, 0.8);
  background: #fff;
  box-shadow: var(--shadow);
}

.table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

.table th, .table td {
  padding: 12px 12px;
  border-bottom: 1px solid rgba(205, 191, 175, 0.6);
  vertical-align: top;
}

.table th {
  text-align: left;
  background: rgba(243, 239, 230, 0.55);
  font-weight: 900;
}

.table td.time {
  white-space: nowrap;
  font-weight: 800;
  color: var(--muted);
}

.cell__title {
  font-weight: 900;
}

.cell__sub {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.note {
  color: var(--muted);
  margin-top: 12px;
}

/* Sponsors */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (min-width: 700px) {
  .sponsor-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.sponsor {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 12px;
  border-radius: 16px;
  border: 1px dashed rgba(176, 139, 98, 0.55);
  background: rgba(243, 239, 230, 0.45);
  color: var(--muted);
  font-weight: 900;
  text-align: center;
}

/* Footer */
.footer {
  padding: 28px 0;
  border-top: 1px solid rgba(205, 191, 175, 0.6);
}

.footer__inner {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer__title {
  font-weight: 900;
}

.footer__meta {
  color: var(--muted);
  font-size: 13px;
}

.footer__right {
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

/*# sourceMappingURL=main.css.map */