:root {
  --cream: #faf7f2;
  --charcoal: #2b2b28;
  --rose: #a8534a;
  --rose-soft: #e9dcd6;
  --line: #e4ddd3;
  --coral: #f49374;
  --coral-deep: #d9714f;
  --coral-soft: #fbe4da;
  --brown: #4a1b0c;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

a { color: inherit; }

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 247, 242, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}

.brand {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--charcoal);
  border: 1.5px solid var(--brown);
  border-radius: 999px;
  padding: 10px 22px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
  margin: 0;
  padding: 0;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

nav a.nav-link {
  text-decoration: none;
  color: var(--charcoal);
  opacity: 0.75;
  transition: opacity 0.2s;
}
nav a.nav-link:hover, nav a.nav-link.active { opacity: 1; }
nav a.nav-link.active { border-bottom: 1px solid var(--rose); padding-bottom: 4px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--charcoal);
}


/* HERO (home) */
.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  padding-top: 88px;
  padding-bottom: 96px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--rose);
  margin-bottom: 22px;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.05;
}

.hero h1 em {
  font-style: italic;
  color: var(--rose);
}

.hero p.lede {
  font-size: 1.12rem;
  max-width: 46ch;
  margin-top: 26px;
  color: #4a473f;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--cream);
  padding: 15px 30px;
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.2s, background 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--rose); transform: translateY(-1px); }

.btn-ghost {
  padding: 15px 8px;
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--charcoal);
  display: inline-block;
}

.hero-photo {
  position: relative;
}

.hero-photo img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top center;
  border-radius: 4px;
  box-shadow: 0 30px 60px -20px rgba(43,43,40,0.35);
}

.hero-photo::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -20px;
  right: 20px;
  bottom: -20px;
  border: 1px solid var(--rose);
  border-radius: 4px;
  z-index: -1;
}

/* PAGE HERO (subpages) */
.page-hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 88px;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 4.4vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.keep-together {
  white-space: nowrap;
}

.lede-theme {
  display: inline-block;
  margin-bottom: 10px;
}

.page-hero p.lede {
  font-size: 1.08rem;
  max-width: 48ch;
  margin-top: 24px;
  color: #4a473f;
}

.page-hero .hero-photo img { height: 460px; }

/* CREDENTIALS / BRAND STRIP */
.credentials {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}

.credentials .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 28px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b675d;
}

/* PILLARS / ABOUT */
.about {
  padding: 110px 0 90px;
}

.about-tight {
  padding: 0;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-head .eyebrow { display: block; text-align: center; }

.section-head h2 {
  font-size: clamp(2rem, 3.4vw, 2.7rem);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.pillar {
  border-top: 2px solid var(--charcoal);
  padding-top: 26px;
}

.pillar .num {
  font-family: 'Fraunces', serif;
  font-size: 0.95rem;
  color: var(--rose);
  margin-bottom: 14px;
  display: block;
}

.pillar h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.pillar p {
  font-size: 0.98rem;
  color: #4a473f;
  margin: 0 0 16px;
}

.pillar-link {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--rose);
  border-bottom: 1px solid var(--rose);
  padding-bottom: 2px;
}

/* STORY */
.story {
  padding: 90px 0 110px;
}

.story .wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: center;
}

.story img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: top center;
  border-radius: 4px;
}

.story h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  margin-bottom: 28px;
}

.story p {
  font-size: 1.02rem;
  color: #4a473f;
  margin: 0 0 20px;
}

.story p:last-child { margin-bottom: 0; }

.story p.signature {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--rose);
  font-size: 1.1rem;
  margin-top: 30px;
}

/* OFFER / HELP CARDS */
.offers {
  padding: 100px 0;
}

.event-details {
  padding: 150px 0;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.offer-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
}

.offer-card .tag {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 16px;
}

.offer-card h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.offer-card p {
  font-size: 0.96rem;
  color: #4a473f;
  margin: 0 0 26px;
  flex-grow: 1;
}

.offer-card .btn-primary {
  align-self: flex-start;
  padding: 12px 24px;
  font-size: 0.88rem;
}

/* BRAND / TOPIC STRIP GRID */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 20px;
}

.brand-cell {
  background: var(--cream);
  padding: 34px 18px;
  text-align: center;
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  color: var(--charcoal);
}

/* CONTENT PILLARS (creator) */
.content-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.content-pillar {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.content-pillar h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  color: var(--rose);
}

.content-pillar p {
  font-size: 0.98rem;
  color: #4a473f;
  margin: 0;
}

/* SPEAKER TOPICS */
.topics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.topic-card {
  border-left: 2px solid var(--rose);
  padding: 6px 0 6px 22px;
}

.topic-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.topic-card p {
  font-size: 0.92rem;
  color: #4a473f;
  margin: 0;
}

.formats {
  margin-top: 70px;
  text-align: center;
}

.formats .eyebrow { display: block; }

.format-list {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.format-chip {
  border: 1px solid var(--charcoal);
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 0.9rem;
}

/* CONTACT */
.contact {
  background: var(--charcoal);
  color: var(--cream);
  padding: 110px 0;
}

.contact .wrap {
  text-align: center;
}

.contact .eyebrow { color: var(--rose-soft); }

.contact h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  max-width: 16ch;
  margin: 0 auto 26px;
  color: var(--cream);
}

.contact p {
  max-width: 48ch;
  margin: 0 auto 40px;
  color: #d8d4c9;
  font-size: 1.05rem;
}

.contact-wide h2 {
  max-width: none;
}

.contact-wide p {
  max-width: none;
}

.contact .btn-primary {
  background: var(--rose);
}
.contact .btn-primary:hover {
  background: var(--rose-soft);
  color: var(--charcoal);
}

footer {
  padding: 32px 0;
  text-align: center;
  font-size: 0.82rem;
  color: #8a8779;
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* EVENTS PAGE */
.tinted-coral {
  background: var(--coral-soft);
}

.tinted-brown {
  background: var(--brown);
}

.tinted-brown h2 {
  color: var(--cream);
}

.tinted-brown .timeline-step {
  border-left-color: var(--coral);
}

.tinted-brown .timeline-step .year {
  color: var(--coral);
}

.tinted-brown .timeline-step h3 {
  color: var(--cream);
}

.tinted-brown .timeline-step p {
  color: #d8cfc7;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 20px;
}

.timeline-step {
  border-left: 2px solid var(--brown);
  padding: 4px 36px;
}

.timeline-step .year {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  color: var(--brown);
  display: block;
  margin-bottom: 10px;
}

.timeline-step h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.timeline-step p {
  font-size: 0.95rem;
  color: #4a473f;
  margin: 0;
}

.legacy-section {
  padding-bottom: 110px;
}

.legacy-statement {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.legacy-statement h3 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin-bottom: 22px;
  color: var(--brown);
}

.legacy-statement p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #4a473f;
  margin: 0;
}

.slideshow {
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
}

.slideshow-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.slideshow-track::-webkit-scrollbar {
  display: none;
}

.slideshow .slide {
  flex: 0 0 33.333%;
  scroll-snap-align: start;
  overflow: hidden;
}

.slideshow .slide img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.slideshow-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(250, 247, 242, 0.9);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background 0.2s;
  box-shadow: 0 4px 14px rgba(43,43,40,0.2);
}
.slideshow-arrow:hover { background: var(--cream); }
.slideshow-arrow.prev { left: -16px; }
.slideshow-arrow.next { right: -16px; }

.upcoming-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}

.upcoming-card .eyebrow { color: var(--coral-deep); }

.upcoming-card h3 {
  font-size: 2.3rem;
  color: var(--brown);
  margin-bottom: 14px;
}

.upcoming-card p.subtitle {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--coral-deep);
  text-wrap: balance;
  margin: 0 0 18px;
}

.upcoming-card p {
  color: #4a473f;
  margin: 0;
  font-size: 1.02rem;
}

.upcoming-card .btn-primary {
  background: var(--brown);
  white-space: nowrap;
}
.upcoming-card .btn-primary:hover { background: var(--coral-deep); }

/* FORGING FORWARD (dedicated event page) */
.back-link {
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--rose);
  border-bottom: 1px solid var(--rose);
  padding-bottom: 2px;
  display: block;
  width: max-content;
  margin-bottom: 22px;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.event-meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.event-meta-item .label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  color: var(--coral-deep);
  font-weight: 500;
}

.event-meta-item .value {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  color: var(--brown);
}

.narrative { padding: 0 0 100px; }
.narrative .wrap { max-width: 760px; }
.narrative p { font-size: 1.14rem; color: #4a473f; margin: 0 0 26px; }
.narrative p:last-child { margin-bottom: 0; }

.takeaways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
  text-align: center;
}

.takeaway-card .num {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  color: var(--coral-deep);
  display: block;
  margin-bottom: 14px;
}

.takeaway-card h3 {
  font-size: 1.25rem;
  color: var(--brown);
  margin-bottom: 12px;
}

.takeaway-card p {
  font-size: 0.96rem;
  color: #4a473f;
  margin: 0;
}

.who-list { margin-top: 30px; justify-content: flex-start; }

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.ticket-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 44px 38px;
  display: flex;
  flex-direction: column;
}

.ticket-card.featured {
  border: 2px solid var(--brown);
}

.ticket-card .tag {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  color: var(--coral-deep);
  font-weight: 500;
  margin-bottom: 18px;
}

.ticket-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.ticket-price {
  font-family: 'Fraunces', serif;
  font-size: 2.6rem;
  color: var(--brown);
  margin: 0 0 20px;
}

.ticket-price span {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #6b675d;
  margin-left: 6px;
}

.ticket-card p.desc {
  font-size: 0.98rem;
  color: #4a473f;
  margin: 0 0 30px;
  flex-grow: 1;
}

.btn-ticket {
  background: var(--brown);
  color: var(--cream);
  padding: 18px 30px;
  border-radius: 2px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: center;
  transition: transform 0.2s, background 0.2s;
}
.btn-ticket:hover { background: var(--coral-deep); transform: translateY(-1px); }

.ticket-note {
  margin-top: 32px;
  font-size: 0.9rem;
  color: #6b675d;
  text-align: center;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* NO-PHOTO HERO VARIANT */
.hero-solo.page-hero .wrap {
  grid-template-columns: 1fr;
  max-width: 760px;
}

@media (max-width: 1024px) {
  .slideshow .slide { flex-basis: 50%; }
}

@media (max-width: 480px) {
  .slideshow .slide { flex-basis: 100%; }
  .slideshow .slide img { height: 220px; }
  .keep-together { white-space: normal; }
  .page-hero h1 { font-size: 2.1rem; }
  .hero h1 { font-size: 2.1rem; }
  .section-head h2 { font-size: 1.7rem; }
  .story h2 { font-size: 1.7rem; }
  .contact h2 { font-size: 1.9rem; }
  .legacy-statement h3 { font-size: 1.7rem; }
  .upcoming-card h3 { font-size: 1.9rem; }
  .upcoming-card p.subtitle { font-size: 1.05rem; }
  .hide-mobile { display: none; }
  .ticket-price { font-size: 2.1rem; }
  .narrative p { font-size: 1.02rem; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 8px 32px 16px;
  }
  nav ul.nav-open { display: flex; }
  nav ul li { border-top: 1px solid var(--line); }
  nav ul li:first-child { border-top: none; }
  nav ul li a { display: block; padding: 14px 0; }
  .hero .wrap, .page-hero .wrap { grid-template-columns: 1fr; padding-top: 48px; }
  .hero-photo { order: -1; }
  .events-hero-photo { order: 0; }
  .hero-photo img, .page-hero .hero-photo img { height: 380px; }
  .home-hero-img { object-position: center 60%; transform: scale(1.1); transform-origin: center 60%; }
  .hero-photo { overflow: hidden; }
  .hero-photo::before { display: none; }
  .pillars { grid-template-columns: 1fr; gap: 48px; }
  .story .wrap { grid-template-columns: 1fr; gap: 40px; }
  .story img { height: 380px; }
  .credentials .wrap { justify-content: center; text-align: center; }
  .offer-grid { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .content-pillars { grid-template-columns: 1fr; }
  .topics { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; gap: 32px; }
  .slideshow-arrow { width: 36px; height: 36px; }
  .slideshow .slide img { height: 260px; }
  .upcoming-card { grid-template-columns: 1fr; text-align: center; padding: 40px 28px; }
  .event-meta { flex-direction: column; gap: 20px; }
  .takeaways-grid { grid-template-columns: 1fr; gap: 36px; }
  .ticket-grid { grid-template-columns: 1fr; }
  .who-list { justify-content: center; }
  .lede-theme { display: inline-block; margin-bottom: 10px; }
}
