:root {
  --green: #097140;
  --green-deep: #075b35;
  --green-soft: #e7f1eb;
  --red: #d92d20;
  --red-dark: #b72319;
  --ink: #1c2520;
  --muted: #607068;
  --warm: #f7f4ed;
  --white: #ffffff;
  --line: #dce5df;
  --shadow: 0 20px 48px rgba(17, 54, 34, .11);
  --shadow-soft: 0 10px 30px rgba(17, 54, 34, .08);
  --radius: 16px;
  --radius-small: 10px;
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: "Lato", Arial, sans-serif;
  --shell: min(1200px, calc(100vw - 48px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img, video { display: block; max-width: 100%; }

button, input, textarea, select { font: inherit; }

a { color: inherit; }

h1, h2, h3, h4 {
  margin: 0 0 .65em;
  font-family: var(--serif);
  line-height: 1.16;
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 5.7vw, 5.4rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.35rem); }
h3 { font-size: clamp(1.32rem, 2.1vw, 1.75rem); }
p { margin: 0 0 1.25em; text-wrap: pretty; }

.shell { width: var(--shell); margin-inline: auto; }
.narrow { max-width: 760px; margin-inline: auto; }
.center { text-align: center; }
.muted { color: var(--muted); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow::before { width: 30px; height: 2px; background: currentColor; content: ""; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.announcement-bar { color: var(--white); background: var(--green); font-size: .82rem; }
.announcement-inner { display: flex; justify-content: space-between; gap: 24px; padding-block: 8px; }
.announcement-inner a { font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 3px; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(220, 229, 223, .85);
  backdrop-filter: blur(16px);
}
.header-inner { display: flex; align-items: center; min-height: 92px; gap: 28px; }
.brand { flex: 0 0 auto; }
.brand img { width: 218px; height: auto; }
.desktop-nav { display: flex; align-items: center; justify-content: flex-end; gap: 8px; margin-left: auto; }
.desktop-nav > a,
.nav-dropdown-toggle {
  padding: 12px 13px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.desktop-nav > a:hover,
.desktop-nav > a.active,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active { color: var(--green); background: var(--green-soft); }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle span { display: inline-block; transition: transform .2s ease; }
.nav-dropdown.open .nav-dropdown-toggle span { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  display: grid;
  width: 270px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: .2s ease;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.nav-dropdown-menu a { display: grid; padding: 12px 14px; border-radius: 10px; text-decoration: none; }
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active { background: var(--green-soft); }
.nav-dropdown-menu small { color: var(--muted); font-size: .75rem; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  color: var(--white);
  background: var(--red);
  border: 2px solid var(--red);
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.button:hover { background: var(--red-dark); border-color: var(--red-dark); box-shadow: 0 10px 24px rgba(185, 38, 28, .24); transform: translateY(-2px); }
.button:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible { outline: 3px solid #f6bd21; outline-offset: 3px; }
.button-secondary { color: var(--green); background: var(--white); border-color: var(--white); }
.button-outline { color: var(--green); background: transparent; border-color: var(--green); }
.button-outline:hover { color: var(--white); background: var(--green); border-color: var(--green); }
.button-small { min-height: 42px; padding: 9px 17px; font-size: .88rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.menu-toggle { display: none; margin-left: auto; padding: 10px 18px; color: var(--white); background: var(--red); border: 0; border-radius: 999px; font-weight: 900; text-transform: uppercase; }
.mobile-menu { position: fixed; z-index: 150; inset: 0; display: block; visibility: hidden; opacity: 0; pointer-events: none; background: rgba(7, 44, 26, .48); backdrop-filter: blur(7px); transition: opacity .22s ease, visibility 0s linear .22s; }
.mobile-menu.open { visibility: visible; opacity: 1; pointer-events: auto; transition-delay: 0s; }
.mobile-menu-panel { width: min(86vw, 390px); height: 100%; margin-left: auto; padding: 24px; overflow-y: auto; background: var(--white); box-shadow: -24px 0 54px rgba(0, 0, 0, .2); transform: translateX(100%); transition: transform .26s ease; }
.mobile-menu.open .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.35rem; font-weight: 700; }
.menu-close { width: 44px; height: 44px; color: var(--ink); background: var(--green-soft); border: 0; border-radius: 50%; font-size: 1.6rem; cursor: pointer; }
.mobile-menu nav { display: grid; padding-block: 18px; }
.mobile-menu nav > a,
.mobile-menu-group > span { padding: 12px 4px; font-family: var(--serif); font-weight: 700; text-decoration: none; }
.mobile-menu nav a.active { color: var(--red); }
.mobile-menu-group { display: grid; padding-block: 6px; border-block: 1px solid var(--line); }
.mobile-menu-group a { padding: 8px 4px 8px 20px; color: var(--muted); text-decoration: none; }
.mobile-menu-contact { display: grid; gap: 5px; margin-top: 30px; padding: 18px; color: var(--white); background: var(--green); border-radius: var(--radius-small); }

.hero {
  position: relative;
  display: grid;
  min-height: 610px;
  place-items: end start;
  overflow: hidden;
  color: var(--white);
  background: #10271c;
}
.hero.hero-home { min-height: min(780px, calc(100vh - 80px)); }
.hero-media,
.hero-media img,
.hero-media video,
.hero::after { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img,
.hero-media video { object-fit: cover; }
.hero::after { background: linear-gradient(90deg, rgba(5, 27, 16, .88) 0%, rgba(5, 27, 16, .58) 52%, rgba(5, 27, 16, .24) 100%), linear-gradient(0deg, rgba(0,0,0,.48), transparent 48%); content: ""; }
.hero-content { position: relative; z-index: 1; width: var(--shell); margin: 0 auto; padding-block: 100px 76px; }
.hero-content h1 { max-width: 980px; margin-bottom: 20px; }
.hero-content > p { max-width: 700px; font-size: clamp(1.05rem, 2vw, 1.35rem); }
.hero .eyebrow { color: #ffd5ce; }
.hero-kicker { display: inline-flex; margin-bottom: 22px; padding: 8px 14px; color: var(--white); background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3); border-radius: 999px; font-size: .8rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(8px); }

.event-facts {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: var(--shell);
  margin: -36px auto 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.event-fact { padding: 24px 26px; border-right: 1px solid var(--line); }
.event-fact:last-child { border-right: 0; }
.event-fact span { display: block; margin-bottom: 4px; color: var(--muted); font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.event-fact strong { font-family: var(--serif); font-size: 1.05rem; }

.section { padding-block: 92px; }
.section-small { padding-block: 62px; }
.section-warm { background: var(--warm); }
.section-green { color: var(--white); background: var(--green); }
.section-green .eyebrow { color: #ffcbc4; }
.section-green .muted { color: rgba(255,255,255,.78); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 40px; }
.section-head > div { max-width: 760px; }
.section-head p { margin-bottom: 0; color: var(--muted); }
.section-green .section-head p { color: rgba(255,255,255,.8); }

.split { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); align-items: center; gap: clamp(48px, 7vw, 96px); }
.split.reverse > :first-child { order: 2; }
.media-frame { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--green-soft); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.media-frame img { display: block; width: 100%; height: 100%; object-fit: cover; }
.media-frame.portrait { aspect-ratio: 4 / 5; }
.media-frame::after { position: absolute; inset: 14px; border: 1px solid rgba(255,255,255,.54); border-radius: 10px; pointer-events: none; content: ""; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--red); font-weight: 900; text-decoration: none; }
.text-link::after { content: "→"; transition: transform .18s ease; }
.text-link:hover::after { transform: translateX(5px); }

.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; background: rgba(255,255,255,.24); border: 1px solid rgba(255,255,255,.24); border-radius: var(--radius); }
.stat { padding: 34px; background: var(--green); }
.stat strong { display: block; margin-bottom: 10px; font-family: var(--serif); font-size: clamp(2.15rem, 3.25vw, 3.05rem); line-height: 1.1; letter-spacing: -.025em; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.card > a { display: flex; height: 100%; flex-direction: column; color: inherit; text-decoration: none; }
.card-image { aspect-ratio: 16 / 10; overflow: hidden; background: var(--green-soft); }
.card-image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.card:hover .card-image img { transform: scale(1.035); }
.card-body { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.card-body h3 { margin-bottom: 9px; }
.card-body p { color: var(--muted); font-size: .96rem; }
.card-body .text-link { margin-top: auto; }
.card-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 15px; }
.tag { display: inline-flex; padding: 5px 9px; color: var(--green-deep); background: var(--green-soft); border-radius: 999px; font-size: .7rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.tag-red { color: var(--red-dark); background: #fde9e6; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { display: flex; flex-direction: column; padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.feature-card .text-link { margin-top: auto; }
.feature-card .icon { display: grid; width: 48px; height: 48px; place-items: center; margin-bottom: 22px; color: var(--white); background: var(--green); border-radius: 50%; font-weight: 900; }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-item { position: relative; overflow: hidden; padding: 0; background: var(--green-soft); border: 0; border-radius: 12px; cursor: zoom-in; }
.gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: span 2; }
.gallery-item img { width: 100%; height: 240px; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.04); }

.timeline { position: relative; display: grid; gap: 0; }
.timeline::before { position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: var(--line); content: ""; }
.timeline-item { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; padding-block: 55px; }
.timeline-item:nth-child(even) .timeline-media { order: 2; }
.timeline-copy { position: relative; align-self: center; }
.timeline-copy::before { position: absolute; top: 8px; width: 15px; height: 15px; background: var(--red); border: 4px solid var(--white); border-radius: 50%; box-shadow: 0 0 0 1px var(--line); content: ""; }
.timeline-item:nth-child(odd) .timeline-copy::before { left: -43px; }
.timeline-item:nth-child(even) .timeline-copy::before { right: -43px; }
.timeline-year { color: var(--red); font-family: var(--serif); font-size: 2rem; font-weight: 700; }
.timeline-media { aspect-ratio: 4 / 3; overflow: hidden; }
.timeline-media img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-soft); }

.programme-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 46px; }
.programme-summary { align-self: start; padding: 30px; color: var(--white); background: var(--green); border-radius: var(--radius); position: sticky; top: 126px; }
.schedule { position: relative; display: grid; }
.schedule::before { position: absolute; top: 10px; bottom: 10px; left: 83px; width: 2px; background: var(--green-soft); content: ""; }
.schedule-item { position: relative; display: grid; grid-template-columns: 68px 1fr; gap: 32px; padding: 0 0 34px; }
.schedule-item time { color: var(--red); font-weight: 900; }
.schedule-item > div { padding: 22px; background: var(--warm); border-radius: 12px; }
.schedule-item > div::before { position: absolute; left: 77px; top: 25px; width: 14px; height: 14px; background: var(--red); border: 3px solid var(--white); border-radius: 50%; box-shadow: 0 0 0 1px var(--line); content: ""; }
.schedule-item h3 { margin-bottom: 6px; font-size: 1.25rem; }
.schedule-item p { margin: 0; color: var(--muted); font-size: .94rem; }

.quote-card { position: relative; padding: 44px; color: var(--white); background: var(--green); border-radius: var(--radius); }
.quote-card::before { display: block; margin-bottom: 8px; color: #ffc9c2; font-family: var(--serif); font-size: 4.8rem; line-height: .65; content: "“"; }
.quote-card blockquote { margin: 0 0 20px; font-family: var(--serif); font-size: clamp(1.35rem, 2.4vw, 2rem); line-height: 1.55; }

.logo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.logo-card { display: grid; grid-template-rows: 150px auto; align-items: start; color: var(--ink); text-align: center; text-decoration: none; }
.logo-box { display: grid; height: 150px; place-items: center; padding: 8px; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-soft); }
.logo-box img { width: 100%; height: 100%; object-fit: contain; transform: scale(1.08); transition: transform .2s ease; }
.logo-name { min-height: 64px; padding: 12px 8px 0; font-size: .9rem; line-height: 1.35; }
.logo-box { transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.logo-card:hover .logo-box { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-3px); }
.logo-card:hover .logo-box img { transform: scale(1.11); }
.supported-grid { grid-template-columns: repeat(2, minmax(0, 340px)); justify-content: center; }
.supported-grid .logo-card { grid-template-rows: 170px auto; }
.supported-grid .logo-box { height: 170px; }

.cta-band { padding-block: 70px; color: var(--white); background: var(--green); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-band h2 { max-width: 760px; margin-bottom: 0; }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: steps; }
.step-card { position: relative; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); counter-increment: steps; }
.step-card::before { display: grid; width: 44px; height: 44px; place-items: center; margin-bottom: 24px; color: var(--white); background: var(--red); border-radius: 50%; font-weight: 900; content: counter(steps, decimal-leading-zero); }
.step-card h3 { min-height: 2.3em; }

.check-list { display: grid; gap: 12px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 31px; }
.check-list li::before { position: absolute; left: 0; top: .18em; display: grid; width: 21px; height: 21px; place-items: center; color: var(--white); background: var(--green); border-radius: 50%; font-size: .72rem; content: "✓"; }

.faq { display: grid; gap: 12px; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: 12px; }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 24px; font-family: var(--serif); font-weight: 700; list-style: none; cursor: pointer; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { display: grid; width: 30px; height: 30px; flex: 0 0 30px; place-items: center; color: var(--green); background: var(--green-soft); border-radius: 50%; font-family: var(--sans); font-size: 1.15rem; line-height: 1; content: "+"; }
.faq details[open] summary::after { content: "−"; }
.faq details p { padding: 0 24px 20px; color: var(--muted); }

.contact-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 34px; align-items: start; }
.contact-info { display: grid; gap: 14px; }
.contact-card { padding: 24px; background: var(--green-soft); border-radius: 12px; }
.contact-card span { display: block; color: var(--muted); font-size: .74rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.contact-card a { color: var(--green-deep); font-family: var(--serif); font-size: 1.15rem; font-weight: 700; text-decoration: none; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 36px; background: var(--warm); border: 1px solid var(--line); border-radius: var(--radius); }
.field { display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 900; }
.field input,
.field textarea,
.field select { width: 100%; min-height: 50px; padding: 13px 15px; color: var(--ink); background: var(--white); border: 1px solid #bdcac2; border-radius: 9px; transition: border-color .16s ease, box-shadow .16s ease; }
.field input:hover,
.field textarea:hover,
.field select:hover { border-color: #869b8e; }
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(9, 113, 64, .1); }
.field textarea { min-height: 150px; resize: vertical; }
.form-status { min-height: 1.3em; margin: 8px 0 0; font-size: .86rem; }

.image-panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.image-panel { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.image-panel img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.image-panel figcaption { padding: 14px 18px; color: var(--muted); font-size: .85rem; }

.site-footer { color: rgba(255,255,255,.88); background: #075532; }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 58px; padding-block: 70px 54px; }
.site-footer h2 { color: var(--white); font-family: var(--sans); font-size: 1rem; }
.site-footer a { display: block; width: fit-content; margin-bottom: 8px; color: var(--white); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer-brand img { width: 240px; padding: 12px; background: var(--white); border-radius: 10px; }
.footer-brand p { max-width: 300px; margin-top: 20px; }
.social-links { display: flex; gap: 9px; }
.social-links a { display: grid; width: 38px; height: 38px; place-items: center; background: rgba(255,255,255,.12); border-radius: 50%; font-weight: 900; }
.newsletter-form { display: flex; overflow: hidden; background: var(--white); border-radius: 999px; }
.newsletter-form input { min-width: 0; flex: 1; padding: 12px 15px; border: 0; }
.newsletter-form button { width: 48px; color: var(--white); background: var(--red); border: 0; cursor: pointer; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-block: 20px; border-top: 1px solid rgba(255,255,255,.18); font-size: .78rem; }
.footer-bottom div { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-bottom a { margin: 0; }

.lightbox { max-width: min(1000px, 92vw); padding: 0; overflow: visible; color: var(--white); background: transparent; border: 0; }
.lightbox::backdrop { background: rgba(0,0,0,.86); backdrop-filter: blur(6px); }
.lightbox img { max-height: 78vh; margin-inline: auto; border-radius: 10px; }
.lightbox p { margin: 12px 0 0; text-align: center; }
.lightbox-close { position: absolute; top: -48px; right: 0; width: 40px; height: 40px; color: var(--white); background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.5); border-radius: 50%; font-size: 1.4rem; cursor: pointer; }

.notice-page { min-height: 50vh; display: grid; place-items: center; padding: 80px 24px; text-align: center; }
.notice-page div { max-width: 720px; }

@media (max-width: 1050px) {
  :root { --shell: min(100% - 36px, 960px); }
  .desktop-nav, .desktop-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .event-facts { grid-template-columns: repeat(2, 1fr); }
  .event-fact:nth-child(2) { border-right: 0; }
  .event-fact:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .card-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  :root { --shell: calc(100% - 32px); }
  body { font-size: 17px; }
  .announcement-inner { justify-content: center; }
  .announcement-inner > span { display: none; }
  .header-inner { min-height: 82px; }
  .brand img { width: 212px; }
  .hero, .hero.hero-home { min-height: 650px; }
  .hero::after { background: linear-gradient(0deg, rgba(5,27,16,.9), rgba(5,27,16,.34)); }
  .hero-content { padding-block: 84px 58px; }
  .hero-content h1 { font-size: clamp(2.45rem, 12vw, 4rem); }
  .event-facts { width: calc(100% - 32px); }
  .split, .contact-layout, .programme-grid { grid-template-columns: 1fr; gap: 34px; }
  .split.reverse > :first-child { order: initial; }
  .section { padding-block: 64px; }
  .section-small { padding-block: 48px; }
  .section-head { display: grid; align-items: start; }
  .section-head .button { width: fit-content; }
  .stats-grid { grid-template-columns: 1fr; }
  .card-grid, .feature-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: span 1; }
  .gallery-item img { height: 180px; }
  .timeline::before { left: 7px; }
  .timeline-item { grid-template-columns: 1fr; gap: 24px; padding: 34px 0 34px 34px; }
  .timeline-item:nth-child(even) .timeline-media { order: initial; }
  .timeline-copy::before,
  .timeline-item:nth-child(odd) .timeline-copy::before,
  .timeline-item:nth-child(even) .timeline-copy::before { left: -34px; right: auto; }
  .programme-summary { position: static; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .logo-card { grid-template-rows: 122px auto; }
  .logo-box { height: 122px; padding: 5px; }
  .supported-grid { grid-template-columns: repeat(2, 1fr); }
  .supported-grid .logo-card { grid-template-rows: 132px auto; }
  .supported-grid .logo-box { height: 132px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card h3 { min-height: 0; }
  .cta-band-inner { display: grid; }
  .contact-form { grid-template-columns: 1fr; padding: 24px; }
  .field-full { grid-column: auto; }
  .image-panel-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { display: grid; }
}

@media (max-width: 480px) {
  :root { --shell: calc(100% - 28px); }
  .announcement-bar { font-size: .72rem; }
  .announcement-inner { padding-block: 7px; text-align: center; }
  .header-inner { gap: 10px; }
  .brand img { width: clamp(176px, 52vw, 205px); }
  .menu-toggle { padding-inline: 13px; }
  .hero, .hero.hero-home { min-height: 670px; }
  .hero-content { padding-bottom: 50px; }
  .hero-content h1 { font-size: 2.55rem; }
  .hero-content > p { font-size: 1rem; }
  .button-row { display: grid; }
  .button-row .button { width: 100%; }
  .event-facts { grid-template-columns: 1fr; margin-top: 0; width: 100%; border-radius: 0; }
  .event-fact { padding: 18px 22px; border-right: 0; border-bottom: 1px solid var(--line); }
  .event-fact:last-child { border-bottom: 0; }
  .gallery-item img { height: 150px; }
  .schedule::before { left: 65px; }
  .schedule-item { grid-template-columns: 52px 1fr; gap: 27px; }
  .schedule-item > div::before { left: 59px; }
  .quote-card { padding: 30px; }
  .logo-grid { gap: 12px; }
  .logo-name { font-size: .78rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
