:root {
  --primary: #ff6b9d;
  --primary-dark: #e85a8b;
  --secondary: #C44569;
  --secondary-dark: #a33858;
  --navy: #071428;
  --navy-2: #0a1e36;
  --navy-3: #0d2744;
  --ink: #1b2430;
  --muted: #5c6b7a;
  --paper: #f4f7fb;
  --white: #ffffff;
  --line: rgba(7, 20, 40, 0.08);
  --shadow: 0 14px 40px rgba(7, 20, 40, 0.08);
  --shadow-hover: 0 22px 50px rgba(7, 20, 40, 0.14);
  --radius: 16px;
  --header-h: 82px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

html,
body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.row > * {
  min-width: 0;
}

a {
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  background: var(--primary);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  z-index: 2000;
}

.skip-link:focus {
  top: 12px;
}

h1, h2, h3 {
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-head {
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
}

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(255, 247, 250, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196, 69, 105, 0.08);
  transition: background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 28px rgba(196, 69, 105, 0.08);
}

.navbar {
  min-height: var(--header-h);
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar-brand {
  max-width: calc(100% - 56px);
}

.brand-logo {
  height: 50px;
  width: auto;
  max-width: min(180px, 52vw);
}

.navbar-nav .nav-link {
  color: var(--ink) !important;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 0.85rem !important;
}

.navbar-nav .nav-link:hover {
  color: var(--secondary) !important;
}

.btn-register {
  margin-left: 8px;
  border: 1.5px solid var(--secondary);
  color: var(--secondary) !important;
  border-radius: 999px;
  padding: 0.55rem 1.15rem !important;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.btn-register:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff !important;
}

.navbar-toggler {
  border-color: rgba(196, 69, 105, 0.35);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.15rem rgba(255, 107, 157, 0.35);
}

/* ========== BUTTONS ========== */
.btn-primary-cta,
.btn-secondary-cta,
.event-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  padding: 1.05rem 1.55rem;
  font-weight: 700;
  font-size: 1rem;
  border: 0;
  color: #fff !important;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), filter 0.2s;
}

.btn-primary-cta {
  background: var(--primary);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 12px 36px rgba(255, 107, 157, 0.55);
}

.btn-secondary-cta {
  background: var(--secondary);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 12px 36px rgba(196, 69, 105, 0.5);
}

.btn-primary-cta:hover{
    color: var(--secondary) !important;
}

.btn-secondary-cta:hover{
    color: var(--primary) !important;
}

.event-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
  color: #fff !important;
}

.hero .btn-primary-cta:hover {
  box-shadow: 0 0 28px rgba(255, 107, 157, 0.7), 0 16px 40px rgba(255, 107, 157, 0.45);
}

.hero .btn-secondary-cta:hover {
  box-shadow: 0 0 28px rgba(196, 69, 105, 0.65), 0 16px 40px rgba(196, 69, 105, 0.4);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 28px) 0 56px;
  background:
    radial-gradient(ellipse 46% 58% at 8% 72%, rgba(255, 107, 157, 0.22), transparent 64%),
    radial-gradient(ellipse 52% 64% at 92% 28%, rgba(196, 69, 105, 0.12), transparent 60%),
    linear-gradient(180deg, #fff7fa 0%, #fff 46%, #f7eef3 100%);
  color: var(--ink);
  overflow: hidden;
}

.hero-wrap {
  position: relative;
  z-index: 1;
}

.site-breadcrumb {
  margin: 0 0 22px;
}

.site-breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.site-breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.site-breadcrumb li + li::before {
  content: "/";
  color: var(--muted);
  font-weight: 500;
}

.site-breadcrumb a {
  color: var(--secondary);
}

.site-breadcrumb a:hover {
  color: var(--primary);
}

.site-breadcrumb li[aria-current="page"] {
  color: var(--ink);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-map-col {
  position: relative;
  z-index: 1;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 69, 105, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 69, 105, 0.07) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.7;
  mask-image: radial-gradient(ellipse at 70% 48%, #000 38%, transparent 82%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.hero-glow--left {
  width: 420px;
  height: 420px;
  left: -80px;
  bottom: 8%;
  background: rgba(255, 107, 157, 0.1);
}

.hero-glow--right {
  width: 560px;
  height: 560px;
  right: -60px;
  top: 18%;
  background: rgba(255, 107, 157, 0.1);
}

.hero h1 {
  color: var(--ink);
  font-size: clamp(1.7rem, 6vw, 4rem);
  font-weight: 700;
  margin: 0 0 18px;
  letter-spacing: -0.045em;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.hero-kicker {
  margin: 0 0 16px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #000;
  overflow-wrap: anywhere;
}

.hero-kicker span {
  color: var(--primary);
}

.hero-tagline {
  margin: 0 0 20px;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-weight: 700;
  color: var(--ink);
}

.hero-lead {
  margin: 0 0 12px;
  color: #000;
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 36px;
}

.hero-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px 0 0;
}

.hero-stat + .hero-stat {
  padding-left: 28px;
  border-left: 1px solid rgba(196, 69, 105, 0.18);
}

.hero-stat-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 107, 157, 0.45);
  background: rgba(255, 107, 157, 0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #000;
  font-size: 18px;
  box-shadow: 0 0 16px rgba(255, 107, 157, 0.16);
  justify-content: center;
}

.hero-stat strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.1;
  color: var(--ink);
}

.hero-stat .stats-description span {
  display: block;
  font-size: 0.86rem;
  color: #000;
}

.hero-copy,
.hero-map-wrap,
.hero-map {
  max-width: 100%;
  min-width: 0;
}

.hero-map-wrap {
  overflow: visible;
}

.hero-map {
  position: relative;
  min-height: 0;
  overflow: visible;
}

.hero-tagline,
.map-banner {
  overflow-wrap: anywhere;
}

.map-banner {
  text-align: center;
  margin: 0 0 4px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--secondary);
}

.map-aura {
  position: absolute;
  inset: 8% 6% 10% 6%;
  background: radial-gradient(ellipse at 55% 48%, rgba(255, 107, 157, 0.22), rgba(196, 69, 105, 0.08) 42%, transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}

.hero-map canvas {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 36px rgba(196, 69, 105, 0.16));
}

.map-label {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.96);
  border: 1.5px solid rgba(196, 69, 105, 0.45);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 10px 14px;
  min-width: 148px;
  color: var(--ink);
  box-shadow:
    0 0 0 3px rgba(255, 107, 157, 0.12),
    0 12px 28px rgba(196, 69, 105, 0.16);
  text-align: center;
}

.map-label::before {
  content: "";
  position: absolute;
  top: -7px;
  left: var(--caret-x, 50%);
  width: 12px;
  height: 12px;
  margin-left: -6px;
  background: #fff;
  border-left: 1.5px solid rgba(196, 69, 105, 0.45);
  border-top: 1.5px solid rgba(196, 69, 105, 0.45);
  transform: rotate(45deg);
}

.map-label span {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.map-label strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

.map-label--west {
  left: 2%;
  bottom: 18%;
}

.map-label--west span {
  color: var(--secondary);
}

.map-label--east {
  right: 2%;
  top: 28%;
}

.map-label--east span {
  color: var(--secondary);
}

/* ========== WHY TWO EDITIONS ========== */
.why-editions {
  padding: 100px 0;
  background: aliceblue;
}

.why-editions h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 800;
  margin-bottom: 22px;
}

.why-editions p {
  color: #000;
  margin-bottom: 14px;
}

.feature-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 26px 28px;
  text-align: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.25rem;
}

.feature-icon--primary {
  background: var(--primary);
}

.feature-icon--secondary {
  background: var(--secondary);
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.feature-card p {
  margin: 0;
  font-size: 0.92rem;
}

/* ========== EVENT CARDS ========== */
.editions {
  padding: 40px 0 100px;
  /*background: ;*/
}

.event-card {
  height: 100%;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.event-media {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.event-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 6px;
}

.event-card--east .event-badge,
.event-card--east .event-btn,
.event-card--east .date-block {
  background: var(--primary);
}

.event-card--west .event-badge,
.event-card--west .event-btn,
.event-card--west .date-block {
  background: var(--secondary);
}

.event-countdown {
  position: absolute;
  right: 14px;
  top: 14px;
  bottom: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 64px;
}

.count-unit {
  background: rgba(7, 20, 40, 0.78);
  color: #fff;
  border-radius: 8px;
  text-align: center;
  padding: 6px 4px 5px;
  backdrop-filter: blur(6px);
}

.count-unit strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1;
}

.count-unit span {
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}

.event-body {
  padding: 22px;
}

.event-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.date-block {
  flex: 0 0 72px;
  height: 86px;
  border-radius: 12px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
}

.date-block span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.date-block strong {
  font-size: 1.7rem;
  font-weight: 800;
}

.event-info h3 {
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 6px;
  overflow-wrap: anywhere;
}

.event-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.event-info i {
  color: inherit;
  margin-right: 6px;
}

.event-card--east .event-info i {
  color: var(--primary);
}

.event-card--west .event-info i {
  color: var(--secondary);
}

.event-btn {
  width: 100%;
  border-radius: 10px;
}

/* ========== COMPARE ========== */
.compare {
  padding: 90px 0;
  background: var(--paper);
}

.table-wrap {
  overflow-x: auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.compare-table th,
.compare-table td {
  padding: 16px 22px;
  text-align: left;
  vertical-align: middle;
}

.compare-table thead th {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-table thead th:first-child {
  background: var(--navy-2);
  border-radius: 18px 0 0 0;
}

.th-east {
  background: var(--primary);
}

.th-west {
  background: var(--secondary);
  border-radius: 0 18px 0 0;
}

.compare-table tbody td {
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.compare-table tbody td:first-child {
  font-weight: 600;
  color: var(--ink);
}

.compare-table tbody td:first-child i {
  width: 22px;
  color: var(--primary);
  margin-right: 8px;
}

.compare-table tbody tr:nth-child(even) {
  background: #f7fafc;
}

.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.check-east {
  color: var(--primary);
  font-size: 1.15rem;
}

.check-west {
  color: var(--secondary);
  font-size: 1.15rem;
}

/* ========== WHY ATTEND BAR ========== */
.why-attend {
  padding: 36px 0;
  background: #eef3f8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.why-attend-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.why-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 0.92rem;
}

.why-item + .why-item {
  border-left: 1px dashed rgba(7, 20, 40, 0.18);
}

.why-item i {
  color: var(--primary);
  font-size: 1.15rem;
}

/* ========== ABOUT + GALLERY ========== */
.about-forum {
  padding: 100px 0;
  background: #fff;
}

.about-forum h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  margin-bottom: 18px;
}

.about-forum p {
  color: var(--muted);
  margin-bottom: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.text-link:hover {
  color: var(--secondary);
}

.gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 14px;
}

.gallery figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  height: 320px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.gallery figure:hover img {
  transform: scale(1.05);
}

/* ========== FAQ ========== */
.faq {
  padding: 40px 0 100px;
  background: #fff;
}

.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
}

.faq-accordion .accordion-item {
  border: 1px solid var(--line);
  border-radius: 12px !important;
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
}

.faq-accordion .accordion-button {
  font-weight: 700;
  box-shadow: none !important;
  background: #fff;
  color: var(--ink);
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--secondary);
  background: #fff7fa;
}

.faq-accordion .accordion-button::after {
  filter: hue-rotate(300deg);
}

.faq-accordion .accordion-body {
  color: var(--muted);
}

/* Footer */
.footer-bg {
    background-color: #C44569;
}
.footer-bg .our-moto {
    font-size: 20px;
    margin-top: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
}
.footer-widget-social {
    gap: 5px;
    margin: 18px 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: none;
    padding-top: 0;
    text-align: center;
    width: 73%;
}
.footer-widget-social a {
    height: auto;
    width: 43px;
    line-height: 46px;
    border-radius: 50%;
    font-size: 22px;
    color: #C44569;
    transition: all 1s ease-out;
}
.footer-section h5 {
    color: #fff;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 1rem;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: .5rem;
}
.footer-links a {
    color: #fff;
    text-decoration: none;
    display: flex;
    font-size: 20px;
    width: max-content;
    align-items: center;
    transition: all 0.5s cubic-bezier(.645, .045, .355, 1);
}
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.contact-icon {
    background-color: #fff;
    color: #C44569;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}
.contact-content h6 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: .25rem;
}
.contact-content .contact-value a {
    color: #fff;
    font-weight: 700;
    transition: all 0.5s cubic-bezier(.645, .045, .355, 1);
}
.footer-bottom {
    background-color: #FF6B9D;
    color: #fff;
}
.footer-bottom a {
    color: #fff;
    text-decoration: none;
}
.footer-links .fa-circle {
    color: #fff;
    font-size: .5rem;
    margin-right: .75rem;
}
.footer-bottom .fa-circle {
    color: #fff;
    font-size: .5rem;
    margin: 0 .5rem;
}
.footer-links a:hover {
    color: #FF6B9D;
}
.contact-content .contact-value a:hover {
    color: #FF6B9D;
}

@media (max-width: 1199.98px) {
  .hero-map {
    min-height: 0;
  }
}

@media (max-width: 991.98px) {
  :root {
    --header-h: 72px;
  }

  .navbar-collapse {
    background: #fff;
    border: 1px solid rgba(196, 69, 105, 0.12);
    border-radius: 14px;
    padding: 12px 16px 18px;
    margin-top: 8px;
    box-shadow: 0 12px 28px rgba(196, 69, 105, 0.1);
  }

  .btn-register {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin: 8px 0 0;
  }

  .hero {
    padding: calc(var(--header-h) + 20px) 0 40px;
    min-height: auto;
    align-items: flex-start;
  }

  .hero-actions {
    margin: 22px 0 24px;
  }

  .why-editions,
  .about-forum {
    padding: 56px 0;
  }

  .editions {
    padding: 12px 0 64px;
  }

  .why-attend-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .why-item {
    justify-content: flex-start;
    padding: 16px 10px;
    border-left: 0 !important;
    border-bottom: 1px dashed rgba(7, 20, 40, 0.14);
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery figure {
    height: 220px;
  }

    .footer-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-footer {
        padding: 3.5rem 0 1.75rem;
    }
  
  
}

@media (max-width: 767.98px) {
  .hero-kicker {
    letter-spacing: 0.12em;
    font-size: 0.78rem;
  }

  .hero-lead {
    font-size: 0.95rem;
    max-width: none;
  }

  .map-banner {
    letter-spacing: 0.1em;
    font-size: 0.64rem;
    line-height: 1.4;
    padding: 0 4px;
  }

  .hero-glow--left,
  .hero-glow--right {
    width: 240px;
    height: 240px;
  }

  .event-media {
    height: 200px;
  }

  .event-body {
    padding: 16px;
  }
  
  .site-breadcrumb {
    margin-bottom: 16px;
  }

  .site-breadcrumb li {
    font-size: 0.72rem;
  }

  .btn-primary-cta,
  .btn-secondary-cta,
  .event-btn {
    padding: 0.85rem 1.1rem;
    font-size: 0.9rem;
  }
    .footer-cta-buttons {
        justify-content: start;
    }
}

@media (max-width: 575.98px) {
  .hero h1 {
    font-size: 1.7rem;
  }

  .hero-tagline {
    font-size: 1.05rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats {
    flex-direction: column;
    gap: 14px;
  }

  .hero-stat,
  .hero-stat + .hero-stat {
    padding: 0;
    border: 0;
  }

  .hero-map {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
    max-width: 100%;
  }

  .hero-map canvas {
    grid-column: 1 / -1;
    width: 100% !important;
    max-width: 100%;
    min-width: 0;
    height: auto;
  }

  .map-label {
    position: static !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    min-width: 0;
    width: 100%;
    padding: 8px 10px;
  }

  .map-label::before {
    display: none;
  }

  .map-label strong {
    font-size: 0.78rem;
  }

  .map-label span {
    font-size: 0.62rem;
  }

  .event-countdown {
    width: 48px;
  }

  .count-unit {
    padding: 4px 2px 3px;
  }

  .count-unit strong {
    font-size: 0.9rem;
  }

  .event-badge {
    max-width: calc(100% - 70px);
    font-size: 0.62rem;
    padding: 6px 8px;
    letter-spacing: 0.06em;
  }

  .event-meta {
    gap: 10px;
  }

  .date-block {
    flex: 0 0 58px;
    height: 74px;
  }

  .date-block strong {
    font-size: 1.35rem;
  }

  .event-info h3 {
    font-size: 0.95rem;
  }

  .why-attend-row {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 22px 16px 20px;
  }

  .section-head {
    margin-bottom: 28px;
  }
  
      .footer-main-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 400.98px) {
    .footer-inner {
        padding-inline: 0;
    }
    .footer-main-copy {
        font-size: 12px;
        line-height: normal;
    }
    .footer-main-title {
        font-size: 16px;
    }
}

@media (max-width: 359.98px) {
  .container,
  .hero-wrap {
    padding-left: 10px;
    padding-right: 10px;
  }

  .brand-logo {
    height: 32px;
    max-width: 132px;
  }

  .hero h1 {
    font-size: 1.55rem;
  }

  .hero-tagline {
    font-size: 0.98rem;
  }

  .hero-kicker {
    letter-spacing: 0.08em;
    font-size: 0.7rem;
  }

  .map-banner {
    letter-spacing: 0.06em;
    font-size: 0.58rem;
  }

  .map-label {
    grid-column: 1 / -1;
  }

  .event-media {
    height: 168px;
  }

  .event-countdown {
    width: 42px;
    right: 8px;
    top: 8px;
    bottom: 8px;
  }

  .date-block {
    flex: 0 0 52px;
    height: 68px;
  }

  .why-editions,
  .editions {
    padding-left: 0;
    padding-right: 0;
  }
}
