:root {
  --ink: #211d1a;
  --clay: #a8442e;
  --glaze: #4f7268;
  --sand: #c9b896;
  --paper: #efe9df;
  --paper-dim: #e2dbcd;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Work Sans", sans-serif;
  line-height: 1.5;
}
h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}
a {
  color: inherit;
}
.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(239, 233, 223, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--paper-dim);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  max-width: 1080px;
  margin: 0 auto;
}
.logo {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 1.25rem;
}
.logo span {
  color: var(--clay);
}
nav .links {
  display: flex;
  gap: 28px;
  font-size: 0.92rem;
}
nav .links a {
  text-decoration: none;
  opacity: 0.8;
}
nav .links a:hover {
  opacity: 1;
}
.btn {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  padding: 11px 22px;
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition:
    transform 0.15s ease,
    background 0.15s ease;
}
.btn:hover {
  background: var(--clay);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding: 80px 0 100px;
}
.hero .eyebrow {
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: 3.2rem;
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero p {
  max-width: 440px;
  color: #4c443c;
  margin-bottom: 30px;
  font-size: 1.05rem;
}
.hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
}
.hero-cta .secondary {
  font-size: 0.9rem;
  text-decoration: underline;
  opacity: 0.75;
}

.wheel-scene {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wheel {
  width: 100%;
  max-width: 340px;
  animation: spin 14s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .wheel {
    animation: none;
  }
}

section {
  padding: 70px 0;
}
.section-head {
  max-width: 520px;
  margin-bottom: 40px;
}
.section-head .eyebrow {
  color: var(--glaze);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-head h2 {
  font-size: 2rem;
}

.sessions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.session-card {
  background: var(--paper);
  border: 1px solid var(--paper-dim);
  padding: 26px;
  border-radius: 3px;
}
.session-card .tag {
  font-size: 0.75rem;
  color: var(--glaze);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  display: block;
}
.session-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.session-card p {
  font-size: 0.92rem;
  color: #5a5148;
  margin-bottom: 16px;
}
.session-card .meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  border-top: 1px solid var(--paper-dim);
  padding-top: 14px;
  color: #726b60;
}

.quote {
  background: var(--ink);
  color: var(--paper);
  padding: 60px 0;
}
.quote blockquote {
  font-family: "Fraunces", serif;
  font-size: 1.7rem;
  font-weight: 400;
  max-width: 640px;
  line-height: 1.35;
}
.quote cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-size: 0.9rem;
  opacity: 0.7;
}

footer {
  padding: 50px 0;
  border-top: 1px solid var(--paper-dim);
}
.foot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
footer .fine {
  font-size: 0.82rem;
  opacity: 0.6;
}

@media (max-width: 760px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 50px;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .sessions {
    grid-template-columns: 1fr;
  }
  nav .links {
    display: none;
  }
}
