:root {
  --green: #278D27;
  --green-dark: #1B5E20;
  --green-deep: #0F3D14;
  --orange: #F97D09;
  --orange-dark: #E06A00;
  --navy: #0B1F2A;
  --cream: #FAF8F5;
  --soft-gray: #F3F4F6;
  --border: #E5E7EB;
  --text: #1F2937;
  --text-muted: #6B7280;
  --white: #FFFFFF;
  --shadow: 0 8px 30px rgba(15, 61, 20, 0.08);
  --shadow-sm: 0 4px 14px rgba(15, 61, 20, 0.06);
  --radius: 14px;
  --radius-sm: 10px;
  --font-heading: "Poppins", "Manrope", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--orange); }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
  margin: 0 0 .6rem;
}
p { margin: 0 0 1rem; }
.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.section { padding: 4.5rem 0; }
.section-sm { padding: 3rem 0; }
.section-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  text-align: center;
  margin-bottom: .4rem;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.bg-cream { background: var(--cream); }
.bg-soft { background: var(--soft-gray); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.4rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline-green {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green);
}
.btn-outline-green:hover {
  background: var(--green);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.85);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--green-dark);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-sm { padding: .5rem 1rem; font-size: .85rem; }
.btn-block { width: 100%; }

/* Top bar & Nav */
.topbar {
  background: var(--green-deep);
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  padding: .35rem 0;
}
.topbar .container {
  display: flex;
  justify-content: flex-end;
  gap: .85rem;
  align-items: center;
}
.topbar a { color: rgba(255,255,255,.85); }
.topbar a:hover { color: var(--orange); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--navy);
}
.brand:hover { color: var(--navy); }
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.brand-text strong { display: block; font-size: .95rem; line-height: 1.2; }
.brand-text small { color: var(--text-muted); font-size: .72rem; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: .92rem;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-actions { display: flex; gap: .6rem; align-items: center; }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--navy);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: center;
  color: white;
  background: var(--navy) center/cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(11,31,42,.88) 0%, rgba(27,94,32,.55) 55%, rgba(11,31,42,.35) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem;
  align-items: center;
  padding: 4rem 0;
}
.hero h1 {
  color: white;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: .8rem;
}
.hero .lead {
  font-size: 1.05rem;
  opacity: .92;
  max-width: 540px;
  margin-bottom: 1.6rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.countdown-card {
  background: rgba(255,255,255,.97);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow);
  max-width: 360px;
  margin-left: auto;
  animation: fadeUp .7s ease both;
}
.countdown-card h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}
.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .55rem;
}
.countdown-item {
  background: var(--cream);
  border-radius: var(--radius-sm);
  text-align: center;
  padding: .7rem .3rem;
}
.countdown-item .num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-dark);
}
.countdown-item .lbl {
  font-size: .7rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Cards */
.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.event-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.04);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.event-card-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--soft-gray);
}
.event-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-date-ribbon {
  position: absolute;
  left: 0;
  top: 1rem;
  background: var(--orange);
  color: white;
  font-size: .78rem;
  font-weight: 600;
  padding: .35rem .8rem;
  border-radius: 0 999px 999px 0;
}
.event-card-body { padding: 1.2rem 1.25rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.event-card-body h3 { font-size: 1.05rem; }
.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1rem;
  color: var(--text-muted);
  font-size: .85rem;
  margin: .4rem 0 .8rem;
}
.event-card .price {
  font-weight: 700;
  color: var(--green-dark);
  margin-top: auto;
  margin-bottom: .9rem;
}

/* Why attend */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.2rem;
}
.benefit-item {
  text-align: center;
  padding: .5rem;
}
.benefit-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  border: 2px solid #E8C547;
  display: grid;
  place-items: center;
  color: #C9A227;
  font-size: 1.4rem;
  background: white;
}
.benefit-item h4 { font-size: .9rem; margin: 0; }

/* Speakers */
.speaker-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}
.speaker-card { text-align: center; }
.speaker-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto .75rem;
  border: 3px solid var(--green);
  background: var(--soft-gray);
}
.speaker-card h4 { font-size: .92rem; margin-bottom: .2rem; }
.speaker-card p { font-size: .78rem; color: var(--text-muted); margin: 0; }

/* Stats */
.stats-bar {
  background: linear-gradient(90deg, var(--green-deep), var(--green-dark));
  color: white;
  padding: 2.2rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  display: block;
}
.stat-label { font-size: .82rem; opacity: .9; }

/* Gallery / partners */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.gallery-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
.gallery-mini a {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
}
.gallery-mini img { width: 100%; height: 100%; object-fit: cover; }
.partner-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: center;
}
.partner-logos .logo-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  display: grid;
  place-items: center;
  min-height: 72px;
  font-weight: 700;
  color: var(--text-muted);
}

/* Testimonials & news */
.testimonial-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 1.5rem;
}
.testimonial-block .quote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 1.2rem;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.news-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow .25s ease;
}
.news-card:hover { box-shadow: var(--shadow-sm); }
.news-card img { aspect-ratio: 16/10; width: 100%; object-fit: cover; }
.news-card-body { padding: 1rem 1.1rem 1.2rem; }
.news-card time { font-size: .75rem; color: var(--text-muted); }
.news-card h3 { font-size: .95rem; margin: .35rem 0; }

/* Newsletter */
.newsletter-band {
  background: linear-gradient(90deg, var(--orange), #FF9A3C);
  color: white;
  padding: 2rem 0;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.newsletter-form {
  display: flex;
  gap: .6rem;
  flex: 1;
  max-width: 480px;
}
.newsletter-form input {
  flex: 1;
  border: 0;
  border-radius: 999px;
  padding: .8rem 1.1rem;
  font: inherit;
}
.newsletter-form .btn {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: white;
}

/* Footer */
.site-footer {
  background: var(--green-deep);
  color: rgba(255,255,255,.88);
  padding-top: 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.site-footer h4 { color: white; font-size: 1rem; margin-bottom: 1rem; }
.site-footer a { color: rgba(255,255,255,.8); }
.site-footer a:hover { color: var(--orange); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .45rem; }
.footer-contact p { margin: 0 0 .5rem; font-size: .9rem; }
.footer-qr {
  width: 90px;
  height: 90px;
  background: white;
  border-radius: 8px;
  padding: 6px;
  margin-top: .75rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .85rem;
}
.socials { display: flex; gap: .7rem; }
.socials a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  display: grid; place-items: center;
}

/* Event details */
.event-hero { min-height: 520px; }
.event-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.5rem;
  margin: 1.2rem 0 1.5rem;
  font-size: .95rem;
}
.event-sticky-nav {
  position: sticky;
  top: 78px;
  z-index: 50;
  background: white;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.event-sticky-nav ul {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  margin: 0;
  padding: .85rem 0;
  overflow-x: auto;
}
.event-sticky-nav a {
  white-space: nowrap;
  font-weight: 500;
  font-size: .9rem;
  color: var(--text-muted);
}
.event-sticky-nav a:hover, .event-sticky-nav a.active { color: var(--green); }
.event-layout {
  display: grid;
  grid-template-columns: 1.55fr .75fr;
  gap: 2rem;
  align-items: start;
}
.highlight-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem 1rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}
.highlight-list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: .92rem;
}
.highlight-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.mini-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .8rem;
  margin: 1.5rem 0;
}
.mini-stat {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 1rem .7rem;
  text-align: center;
}
.mini-stat strong { display: block; color: var(--green-dark); font-size: 1.2rem; }
.mini-stat span { font-size: .75rem; color: var(--text-muted); }

.schedule-tabs { display: flex; gap: .5rem; margin-bottom: 1rem; flex-wrap: wrap; }
.schedule-tab {
  border: 1px solid var(--border);
  background: white;
  border-radius: 999px;
  padding: .45rem 1rem;
  cursor: pointer;
  font-weight: 600;
  font-size: .85rem;
}
.schedule-tab.active {
  background: var(--green);
  border-color: var(--green);
  color: white;
}
.schedule-list { list-style: none; padding: 0; margin: 0; }
.schedule-item {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: .9rem 0;
  border-bottom: 1px solid var(--border);
}
.schedule-item time { color: var(--orange); font-weight: 600; font-size: .9rem; }

.sidebar-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
  position: sticky;
  top: 140px;
}
.pass-option {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .9rem;
  margin-bottom: .7rem;
  cursor: pointer;
  transition: border-color .2s ease;
  display: block;
}
.pass-option:has(input:checked), .pass-option.active {
  border-color: var(--orange);
  background: #FFF8F1;
}
.pass-option input { accent-color: var(--orange); margin-right: .5rem; }
.pass-option .pass-top {
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  font-weight: 600;
}
.pass-option .seats { font-size: .75rem; color: var(--orange); font-weight: 600; }
.pass-option .desc { font-size: .8rem; color: var(--text-muted); margin-top: .35rem; }

/* Forms */
.form-card {
  max-width: 520px;
  margin: 2rem auto;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .88rem;
  margin-bottom: .35rem;
}
.form-control {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .7rem .9rem;
  font: inherit;
  background: white;
  transition: border-color .2s ease;
}
.form-control:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(39,141,39,.15);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.alert {
  padding: .85rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-size: .92rem;
}
.alert-success { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }
.alert-error { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }
.alert-info { background: #EFF6FF; color: #1E40AF; border: 1px solid #BFDBFE; }

/* Page hero small */
.page-hero {
  background: linear-gradient(120deg, var(--green-deep), var(--green-dark));
  color: white;
  padding: 3.5rem 0 2.8rem;
}
.page-hero h1 { color: white; }

/* Dashboard / Admin */
.dash-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  min-height: calc(100vh - 78px);
}
.dash-sidebar {
  background: var(--green-deep);
  color: white;
  padding: 1.5rem 1rem;
}
.dash-sidebar a {
  display: block;
  color: rgba(255,255,255,.85);
  padding: .65rem .85rem;
  border-radius: 8px;
  margin-bottom: .25rem;
  font-size: .92rem;
}
.dash-sidebar a:hover, .dash-sidebar a.active {
  background: rgba(255,255,255,.12);
  color: white;
}
.dash-content { padding: 1.75rem; background: var(--soft-gray); }
.dash-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.dash-card {
  background: white;
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  border: 1px solid var(--border);
}
.dash-card .label { color: var(--text-muted); font-size: .82rem; }
.dash-card .value { font-size: 1.6rem; font-weight: 700; color: var(--green-dark); font-family: var(--font-heading); }
.table-wrap {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: auto;
}
table.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
table.data-table th, table.data-table td {
  padding: .85rem 1rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
table.data-table th {
  background: var(--cream);
  font-weight: 600;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--text-muted);
}
.badge {
  display: inline-block;
  padding: .2rem .55rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 600;
}
.badge-success { background: #DCFCE7; color: #166534; }
.badge-warning { background: #FEF3C7; color: #92400E; }
.badge-danger { background: #FEE2E2; color: #991B1B; }
.badge-info { background: #DBEAFE; color: #1E40AF; }

.admin-actions {
  display: flex;
  align-items: flex-start;
  gap: .45rem;
  min-width: 145px;
}
.admin-actions form { margin: 0; }
.edit-panel { position: relative; }
.edit-panel > summary {
  list-style: none;
  user-select: none;
}
.edit-panel > summary::-webkit-details-marker { display: none; }
.inline-edit-form {
  position: absolute;
  z-index: 100;
  right: 0;
  top: calc(100% + .45rem);
  width: 320px;
  display: grid;
  gap: .65rem;
  padding: 1rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 14px 35px rgba(11,31,42,.18);
}
.inline-edit-form label {
  font-size: .8rem;
  font-weight: 500;
}
.inline-edit-form .form-control {
  font-size: .82rem;
  padding: .55rem .7rem;
}
@media (max-width: 640px) {
  .inline-edit-form {
    position: fixed;
    left: 1rem;
    right: 1rem;
    top: 20%;
    width: auto;
    max-height: 70vh;
    overflow: auto;
  }
}

.checkout-steps {
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.checkout-steps .step {
  padding: .4rem .9rem;
  border-radius: 999px;
  background: var(--soft-gray);
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
}
.checkout-steps .step.active { background: var(--orange); color: white; }
.checkout-steps .step.done { background: var(--green); color: white; }

.reveal { opacity: 0; transform: translateY(18px); transition: all .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .benefit-grid, .speaker-grid, .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links, .nav-actions {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    background: white;
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    align-items: stretch;
  }
  .site-header.open .nav-links,
  .site-header.open .nav-actions { display: flex; }
  .hero-inner, .event-layout, .split-grid, .footer-grid, .dash-layout {
    grid-template-columns: 1fr;
  }
  .countdown-card { margin: 1.5rem auto 0; }
  .event-grid { grid-template-columns: 1fr; }
  .highlight-list, .mini-stats, .form-row { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .dash-sidebar { display: flex; gap: .35rem; overflow-x: auto; padding: .75rem; }
  .dash-sidebar a { white-space: nowrap; }
}
@media (max-width: 640px) {
  .benefit-grid, .speaker-grid, .stats-grid, .news-grid, .partner-logos {
    grid-template-columns: repeat(2, 1fr);
  }
  .schedule-item { grid-template-columns: 1fr; gap: .35rem; }
}

/* Reference-accurate public homepage */
.site-header {
  position: relative;
  box-shadow: 0 1px 8px rgba(0,0,0,.07);
  border: 0;
}
.topbar {
  position: absolute;
  right: max(1rem, calc((100vw - var(--container)) / 2));
  top: 7px;
  z-index: 2;
  padding: 0;
  background: transparent;
}
.topbar .container {
  width: auto;
  gap: .55rem;
}
.topbar .socials a,
.topbar a {
  width: auto;
  height: auto;
  border: 0;
  color: #124f2a;
  font-size: .7rem;
}
.navbar-inner {
  min-height: 104px;
  padding-top: 17px;
  align-items: center;
}
.brand-logo {
  width: 320px;
  height: 84px;
  object-fit: contain;
  object-position: left center;
}
.nav-links {
  gap: 1.65rem;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 600;
  color: #222;
  padding: 1.15rem 0 .5rem;
  position: relative;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: 0;
  height: 2px;
  background: var(--orange);
}
.nav-actions {
  padding-top: 1.1rem;
}
.nav-actions .btn {
  border-radius: 5px;
  padding: .52rem 1.15rem;
  font-size: .76rem;
}

.home-page {
  --container: 1140px;
  font-size: 14px;
}
.home-page .section {
  padding: 2.2rem 0;
}
.home-hero {
  min-height: 390px;
  overflow: visible;
  background-position: right center;
  background-size: auto 100%;
  background-color: #06491d;
}
.home-hero::before {
  background:
    linear-gradient(105deg, #034619 0%, #064f22 36%, rgba(4,72,28,.84) 48%, rgba(4,57,22,.08) 72%),
    linear-gradient(0deg, rgba(4,58,24,.25), rgba(4,58,24,.05));
}
.home-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 54px;
  background: white;
  clip-path: ellipse(62% 48% at 48% 100%);
}
.home-hero .hero-inner {
  z-index: 2;
}
.home-hero .hero-inner {
  grid-template-columns: 1fr 1fr;
  min-height: 390px;
  padding: 2rem 0 4rem;
}
.home-hero-copy {
  max-width: 500px;
}
.home-hero h1 {
  font-size: clamp(2.6rem, 4.2vw, 4rem);
  letter-spacing: -.04em;
  line-height: 1.06;
  margin: 0 0 1rem;
}
.home-hero h1 span {
  color: var(--orange);
}
.home-hero .lead {
  max-width: 465px;
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: .8rem;
}
.hero-points {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  font-size: .76rem;
}
.hero-points li::before {
  content: "✓";
  color: #ffb300;
  margin-right: .35rem;
}
.home-hero .btn {
  border-radius: 5px;
  padding: .67rem 1.45rem;
  font-size: .8rem;
}
.home-hero .countdown-card {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: -36px;
  width: 380px;
  max-width: none;
  border-radius: 0;
  padding: 1rem 1.25rem 1.1rem;
  box-shadow: 0 8px 22px rgba(0,0,0,.13);
}
.home-hero .countdown-card h3 {
  font-size: .87rem;
  margin-bottom: .7rem;
}
.home-hero .countdown-grid {
  gap: 0;
}
.home-hero .countdown-item {
  background: transparent;
  border-radius: 0;
  padding: .2rem;
  border-right: 1px solid #eee;
}
.home-hero .countdown-item:last-child { border-right: 0; }
.home-hero .countdown-item .num {
  color: var(--orange);
  font-size: 1.55rem;
}
.home-hero .countdown-item .lbl {
  color: #333;
  text-transform: none;
}
.home-hero .countdown-card > p { display: none; }

.home-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.home-section-head .section-title {
  text-align: left;
  font-size: 1.28rem;
  margin: 0;
  padding-bottom: .35rem;
  position: relative;
}
.home-section-head .section-title::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--orange);
  margin: 0 0 .25rem .65rem;
}
.home-section-head > a,
.section-more {
  color: #51603e;
  font-size: .72rem;
  font-weight: 600;
}
.home-events {
  padding-top: 3rem !important;
}
.home-events .event-grid {
  gap: 1rem;
}
.home-events .event-card {
  border-radius: 5px;
  box-shadow: 0 3px 12px rgba(0,0,0,.12);
}
.home-events .event-card-media {
  aspect-ratio: 3.25/1;
}
.home-events .event-date-ribbon {
  top: 0;
  left: 0;
  height: 100%;
  width: 72px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(9,91,40,.92);
  font-size: .74rem;
  line-height: 1.35;
}
.home-events .event-card-body {
  padding: .85rem 1rem 1rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .2rem .75rem;
}
.home-events .event-card-body h3 {
  grid-column: 1/-1;
  font-size: .92rem;
}
.home-events .event-meta,
.home-events .event-card-body p {
  grid-column: 1/-1;
  margin: 0 0 .25rem;
  font-size: .7rem !important;
}
.home-events .event-card .price {
  margin: .2rem 0 0;
  font-size: .82rem;
}
.home-events .event-card .btn {
  border-radius: 4px;
  padding: .4rem .8rem;
  font-size: .7rem;
}

.home-benefits {
  padding: 1.25rem 0 1.5rem !important;
  background: linear-gradient(90deg, #fffaf2, #fff, #fffaf2);
  border-top: 1px solid #f2e7d8;
  border-bottom: 1px solid #f2e7d8;
}
.home-benefits .section-title {
  font-size: 1.16rem;
  margin-bottom: 1.1rem;
}
.home-benefits .benefit-grid {
  gap: 0;
}
.home-benefits .benefit-item {
  border-right: 1px solid #eadfcf;
  padding: 0 .8rem;
}
.home-benefits .benefit-item:last-child { border-right: 0; }
.home-benefits .benefit-icon {
  width: 40px;
  height: 40px;
  border: 0;
  color: #24853b;
  background: transparent;
  margin-bottom: .3rem;
  font-size: 1.55rem;
}
.home-benefits .benefit-item h4 {
  font-size: .7rem;
  font-weight: 500;
  line-height: 1.4;
}

.home-speakers .speaker-grid { gap: .7rem; }
.home-speakers .speaker-card {
  padding: .75rem .4rem;
  border: 1px solid #edf0ec;
  border-radius: 5px;
}
.home-speakers .speaker-photo {
  width: 92px;
  height: 92px;
  border: 0;
  margin-bottom: .45rem;
}
.home-speakers .speaker-card h4 { font-size: .76rem; }
.home-speakers .speaker-card p { font-size: .66rem; }

.home-page .stats-bar {
  padding: 1.25rem 0;
  background: #08752d;
  border-top: 2px solid #f1a900;
}
.home-page .stats-grid > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  text-align: left;
  gap: .3rem;
  padding: 0 1rem;
  border-right: 1px solid rgba(255,255,255,.17);
}
.home-page .stats-grid > div:last-child { border-right: 0; }
.home-page .stat-num {
  color: white;
  font-size: 1.2rem;
}
.home-page .stat-label {
  font-size: .62rem;
  line-height: 1.3;
}

.home-showcase {
  background: #fff;
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.05fr .95fr;
  gap: 1.5rem;
}
.showcase-column .home-section-head {
  border-bottom: 1px solid #eee;
  padding-bottom: .35rem;
}
.showcase-column .home-section-head .section-title {
  font-size: 1rem;
}
.showcase-column .gallery-mini {
  gap: .4rem;
}
.showcase-column .gallery-mini a {
  border-radius: 3px;
  aspect-ratio: 2.05/1;
}
.showcase-column .partner-logos {
  gap: .35rem;
}
.showcase-column .partner-logos .logo-box {
  min-height: 58px;
  border-radius: 3px;
  font-size: .9rem;
  padding: .55rem;
}
.section-more {
  display: block;
  text-align: center;
  margin-top: .6rem;
}
.testimonial-column {
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 0 .8rem .75rem;
}
.testimonial-column .testimonial-block {
  text-align: left;
  padding: 1rem .7rem .4rem;
}
.testimonial-column .testimonial-block .quote {
  font-size: .76rem;
  line-height: 1.65;
  font-style: normal;
  margin-bottom: .6rem;
}
.testimonial-column .testimonial-block .quote::before {
  content: "“";
  color: var(--orange);
  font-size: 2rem;
  line-height: 0;
  margin-right: .3rem;
}
.testimonial-column strong { font-size: .72rem; }
.testimonial-column .testimonial-block div { font-size: .62rem !important; }
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: .35rem;
}
.testimonial-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d8d8d8;
}
.testimonial-dots span:first-child { background: var(--orange); }

.home-news {
  padding-top: .3rem !important;
}
.home-news .news-grid { gap: .8rem; }
.home-news .news-card {
  display: grid;
  grid-template-columns: 105px 1fr;
  border: 0;
  border-radius: 0;
}
.home-news .news-card img {
  width: 105px;
  height: 65px;
  aspect-ratio: auto;
}
.home-news .news-card-body {
  padding: .05rem .6rem;
}
.home-news .news-card time { font-size: .58rem; }
.home-news .news-card h3 {
  font-size: .7rem;
  line-height: 1.45;
}

.home-page + .newsletter-band,
.newsletter-band {
  padding: 1.1rem 0;
  background: var(--orange);
}
.newsletter-inner h3 { font-size: 1rem; }
.newsletter-inner p { font-size: .68rem; }
.newsletter-form { max-width: 470px; }
.newsletter-form input {
  border-radius: 3px;
  padding: .6rem .8rem;
  font-size: .75rem;
}
.newsletter-form .btn {
  border-radius: 3px;
  padding: .55rem 1rem;
  font-size: .72rem;
}
.site-footer {
  padding-top: 2rem;
  background: #07521e;
}
.site-footer .footer-grid {
  grid-template-columns: 1.4fr .8fr .8fr 1.2fr;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
}
.site-footer .brand-mark {
  width: 42px;
  height: 42px;
}
.footer-brand {
  display: block;
  margin-bottom: .85rem;
}
.footer-brand img {
  width: 260px;
  max-height: 82px;
  object-fit: contain;
  object-position: left center;
  background: rgba(255,255,255,.96);
  border-radius: 4px;
  padding: .2rem .45rem;
}
.site-footer p,
.site-footer .footer-links,
.site-footer .footer-contact p { font-size: .7rem !important; }
.site-footer h4 { font-size: .8rem; }
.site-footer .socials a { width: 27px; height: 27px; font-size: .7rem; }
.footer-bottom { font-size: .65rem; padding: .7rem 0; }

@media (max-width: 1050px) {
  .brand-logo { width: 270px; height: 72px; }
  .nav-links { gap: .8rem; }
  .nav-links a { font-size: .7rem; }
  .home-hero .countdown-card { right: 1rem; }
}
@media (max-width: 900px) {
  .topbar { display: none; }
  .navbar-inner { min-height: 76px; padding-top: 0; }
  .brand-logo { width: 245px; height: 66px; }
  .home-hero { min-height: 520px; background-position: 65% center; }
  .home-hero .hero-inner { min-height: 520px; grid-template-columns: 1fr; align-content: center; }
  .home-hero .countdown-card { position: relative; right: auto; bottom: auto; margin: 1rem 0 0; width: min(100%, 380px); }
  .showcase-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-column { grid-column: 1/-1; }
}
@media (max-width: 640px) {
  .home-hero h1 { font-size: 2.55rem; }
  .hero-points { flex-wrap: wrap; }
  .home-page .section { padding: 1.7rem 0; }
  .home-section-head { align-items: flex-end; }
  .home-section-head .section-title { font-size: 1.05rem; }
  .home-benefits .benefit-grid { grid-template-columns: repeat(2,1fr); gap: 1rem 0; }
  .home-benefits .benefit-item:nth-child(2n) { border-right: 0; }
  .home-speakers .speaker-grid { grid-template-columns: repeat(2,1fr); }
  .home-page .stats-grid { grid-template-columns: repeat(2,1fr); gap: .8rem 0; }
  .showcase-grid { grid-template-columns: 1fr; }
  .testimonial-column { grid-column: auto; }
  .home-news .news-grid { grid-template-columns: 1fr; }
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
}
