:root {
  --peach: #F6D89E;
  --peach-light: #FBE8C4;
  --marigold: #F2A93B;
  --forest: #1E3D2F;
  --burnt: #DE5A26;
  --cream: #FFF8EA;
  --line: rgba(30,61,47,0.15);
  --max-w: 1040px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--peach);
  color: var(--forest);
  font-family: 'Karla', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

a { color: inherit; }

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3 {
  margin: 0;
}

/* ---------- Nav ---------- */

.site-nav {
  background: var(--forest);
  color: var(--cream);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  gap: 16px;
  flex-wrap: wrap;
}

.site-nav .brand {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.05rem;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  letter-spacing: 0.01em;
}

.site-nav .links {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.site-nav .links a {
  text-decoration: none;
  color: rgba(255,248,234,0.78);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}

.site-nav .links a:hover {
  color: var(--cream);
  background: rgba(255,248,234,0.1);
}

.site-nav .links a.active {
  color: var(--forest);
  background: var(--peach);
}

.site-nav .links a.ticket-link {
  color: var(--cream);
  background: var(--burnt);
}
.site-nav .links a.ticket-link:hover {
  background: #c94d1e;
}

.site-nav .links a:focus-visible,
.site-nav .brand:focus-visible {
  outline: 3px solid var(--marigold);
  outline-offset: 2px;
}

/* ---------- Topbar (homepage only) ---------- */

.topbar {
  text-align: center;
  padding: 22px 0 6px;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: 0.01em;
}

/* ---------- Section jump nav (Guide page) ---------- */

.section-jumps {
  position: sticky;
  top: 60px;
  z-index: 40;
  background: var(--peach);
  border-bottom: 1px solid var(--line);
}

.section-jumps .wrap {
  display: flex;
  gap: 8px;
  padding: 12px 28px;
  flex-wrap: wrap;
}

.section-jumps a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--forest);
  padding: 8px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.section-jumps a:hover {
  background: var(--cream);
  border-color: var(--forest);
}

.section-jumps a:focus-visible {
  outline: 3px solid var(--burnt);
  outline-offset: 2px;
}

/* ---------- Guide sections (combined page) ---------- */

.guide-section {
  padding-top: 56px;
  scroll-margin-top: 116px;
}

.guide-section:first-of-type {
  padding-top: 36px;
}

.section-title {
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.7rem, 4.4vw, 2.3rem);
  text-align: center;
}

.section-sub {
  text-align: center;
  max-width: 620px;
  margin: 14px auto 0;
  color: rgba(30,61,47,0.8);
  font-size: 1.02rem;
}



.page-header {
  padding: 64px 0 20px;
  text-align: center;
}

.page-header .eyebrow {
  color: var(--burnt);
  font-weight: 700;
  font-size: 1.02rem;
  margin-bottom: 10px;
}

.page-header h1 {
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase;
  font-size: clamp(2rem, 5.5vw, 3rem);
}

.page-header p.lede {
  max-width: 560px;
  margin: 16px auto 0;
  font-size: 1.08rem;
  color: rgba(30,61,47,0.8);
}

/* ---------- Hero (homepage) ---------- */

.hero {
  padding: 28px 0 60px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: start;
}

@media (max-width: 760px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.headline {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(3.2rem, 9vw, 5.6rem);
  line-height: 0.92;
  color: var(--forest);
  margin: 0;
  text-transform: uppercase;
}

.event-meta {
  text-align: right;
  font-weight: 700;
  color: var(--forest);
  padding-top: 6px;
}

@media (max-width: 760px) {
  .event-meta { text-align: left; }
}

.event-meta .venue {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  line-height: 1.25;
}

.event-meta .date {
  margin-top: 10px;
  font-size: clamp(1.15rem, 2.6vw, 1.4rem);
}

.event-meta .date sup {
  font-size: 0.6em;
}

.event-meta .time {
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  font-weight: 500;
  margin-top: 2px;
}

.feature-row {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  position: relative;
}

@media (max-width: 760px) {
  .feature-row { grid-template-columns: 1fr; gap: 28px; }
}

.illustration-disc {
  width: 100%;
  aspect-ratio: 1;
  max-width: 420px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #6b8f6f, var(--forest) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--peach-light);
  font-family: 'Karla', sans-serif;
  font-size: 0.95rem;
  text-align: center;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.illustration-disc::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 75%, rgba(222,90,38,0.55) 0%, transparent 35%),
    radial-gradient(circle at 75% 20%, rgba(242,169,59,0.4) 0%, transparent 30%);
}

.illustration-disc span {
  position: relative;
  z-index: 1;
  opacity: 0.85;
}

.badge-circle {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
  margin-left: auto;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--marigold), #ee9b1f 75%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin-top: -30px;
}

@media (max-width: 760px) {
  .badge-circle { margin: 0 auto; }
}

.badge-inner {
  text-align: center;
}

.badge-inner .top {
  font-family: 'Karla', sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  line-height: 1.25;
  color: #17140a;
}

.badge-inner .script {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  color: #17140a;
  margin-top: 6px;
}

/* ---------- CTA row / buttons ---------- */

.cta-row {
  margin-top: 46px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 32px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: var(--forest);
  color: var(--cream);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(30,61,47,0.3); }
.btn-primary:focus-visible { outline: 3px solid var(--burnt); outline-offset: 3px; }

.btn-ghost {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
}
.btn-ghost:hover { background: var(--forest); color: var(--cream); }
.btn-ghost:focus-visible { outline: 3px solid var(--burnt); outline-offset: 3px; }

/* ---------- Presented by ---------- */

.presented {
  padding: 60px 0 20px;
  text-align: center;
}

.presented .label {
  font-weight: 700;
  margin-bottom: 22px;
  font-size: 1.1rem;
}

.presented .logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.logo-pill {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 26px;
  font-weight: 700;
}

.logo-pill.common-good {
  background: var(--burnt);
  color: var(--cream);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.9rem;
  padding: 0;
  line-height: 1.3;
  font-weight: 600;
}

.logo-whc {
  display: flex;
  align-items: center;
  gap: 0;
  background: transparent;
  border: none;
  padding: 0;
}

.logo-whc-text {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 0.95;
  color: var(--forest);
  text-align: left;
}

.aruk-logo {
  height: 84px;
  width: auto;
  border-radius: 12px;
}

.cause-logo-row {
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

/* ---------- Programme summary (homepage) ---------- */

.programme {
  padding: 70px 0;
}

.programme-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 760px) {
  .programme-grid { grid-template-columns: 1fr; }
}

.programme-col h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 0 0 22px;
}

.programme-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.programme-col li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.15rem;
  font-weight: 500;
}
.programme-col li:last-child { border-bottom: none; }

.fitness-note {
  margin-top: 18px;
  font-size: 0.95rem;
  color: rgba(30,61,47,0.7);
}

/* ---------- Featured speaker (Dr Wood virtual session) ---------- */

.featured-speaker {
  padding: 20px 0 70px;
}

.featured-speaker-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 760px) {
  .featured-speaker-grid { grid-template-columns: 1fr; }
}

.featured-disc {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  text-align: center;
}

.featured-disc-photo {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border: 6px solid var(--cream);
  box-shadow: 0 10px 30px rgba(30,61,47,0.2);
}

.featured-disc-caption {
  margin-top: 18px;
}

.featured-disc-label {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  color: var(--burnt);
}

.featured-disc-time {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.3rem;
  margin-top: 8px;
  color: var(--forest);
}

.eyebrow-small {
  color: var(--burnt);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.featured-text h2 {
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 10px;
}

.featured-role {
  font-weight: 700;
  color: var(--forest);
  margin: 0 0 14px;
}

.featured-bio {
  color: rgba(30,61,47,0.85);
  margin: 0;
  font-size: 1.05rem;
}

@media (max-width: 760px) {
  .featured-text { text-align: center; }
}



.info-strip {
  background: var(--forest);
  color: var(--cream);
}

.info-strip .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 44px 28px;
}

.info-item {
  text-align: center;
  padding: 10px 20px;
  border-left: 1px solid rgba(255,248,234,0.18);
}
.info-item:first-child { border-left: none; }

@media (max-width: 640px) {
  .info-strip .wrap { grid-template-columns: 1fr; }
  .info-item { border-left: none; border-top: 1px solid rgba(255,248,234,0.18); padding: 22px 0; }
  .info-item:first-child { border-top: none; }
}

.info-item .label {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--peach);
  margin-bottom: 8px;
}

.info-item .value {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.3rem;
}

.map-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--peach);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.map-link:hover {
  color: var(--cream);
}

/* ---------- Cause ---------- */

.cause {
  padding: 76px 0;
  text-align: center;
}

.cause .wrap { max-width: 620px; }

.cause h2 {
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3.4vw, 2rem);
  margin-bottom: 18px;
}

.cause p {
  color: rgba(30,61,47,0.85);
  font-size: 1.05rem;
}

/* ---------- Final CTA ---------- */

.final-cta {
  background: var(--marigold);
  padding: 90px 0 100px;
  text-align: center;
}

.final-cta h2 {
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase;
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  margin-bottom: 12px;
  color: #17140a;
}

.final-cta .price {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: #17140a;
}

.final-cta .btn-primary {
  background: #17140a;
}

/* ---------- Zones / tents (Programme page) ---------- */

.zones-list {
  padding: 32px 0 40px;
}

.zones-list .wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.zone-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px;
}

@media (max-width: 760px) {
  .zone-block { grid-template-columns: 1fr; }
  .zone-block.reverse .zone-visual { order: -1; }
}

.zone-block.reverse .zone-visual { order: 2; }
.zone-block.reverse .zone-text { order: 1; }

.zone-visual {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}

.zone-text h2 {
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase;
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.zone-text p {
  color: rgba(30,61,47,0.85);
  margin: 0;
}

/* ---------- Schedule table (Schedule page) ---------- */

.schedule-wrap {
  padding: 32px 0 40px;
  overflow-x: auto;
}

table.schedule {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
  background: var(--cream);
  border-radius: 16px;
  overflow: hidden;
}

table.schedule th {
  background: var(--marigold);
  color: #17140a;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  text-align: left;
  padding: 16px 20px;
  font-size: 1rem;
}

table.schedule td {
  padding: 16px 20px;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  vertical-align: top;
}

table.schedule td.time-col {
  background: var(--peach-light);
  font-weight: 700;
  white-space: nowrap;
  width: 110px;
}

table.schedule tr:first-child td { border-top: none; }

.schedule-note {
  margin-top: 20px;
  font-size: 0.92rem;
  color: rgba(30,61,47,0.65);
  text-align: center;
}

/* ---------- Speakers (Speakers page) ---------- */

.speakers-grid {
  padding: 32px 0 40px;
}

.speakers-grid .wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

@media (max-width: 700px) {
  .speakers-grid .wrap { grid-template-columns: 1fr; }
}

.speaker-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

@media (max-width: 480px) {
  .speaker-card { flex-direction: column; align-items: center; text-align: center; }
}

.speaker-photo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--forest), #4a6b52);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.3rem;
}

.speaker-photo.placeholder {
  background: repeating-linear-gradient(
    45deg,
    rgba(30,61,47,0.08),
    rgba(30,61,47,0.08) 8px,
    rgba(30,61,47,0.03) 8px,
    rgba(30,61,47,0.03) 16px
  );
  color: rgba(30,61,47,0.4);
  font-size: 0.8rem;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.speaker-photo-img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}

.speaker-info h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.15rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.speaker-info p {
  font-size: 0.95rem;
  color: rgba(30,61,47,0.82);
  margin: 0;
}

.speaker-card.placeholder-card {
  border-style: dashed;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: rgba(30,61,47,0.5);
  font-size: 0.95rem;
  min-height: 144px;
}

/* ---------- Footer ---------- */

footer {
  padding: 30px 0 46px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(30,61,47,0.65);
}
