/* =============================================
   ANDGC 2026 — Style Sheet
   Design: Bold editorial meets Australian outdoors
   ============================================= */

/* --- RESET & ROOT ---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Palette */
  --c-forest:   #1a3a2a;   /* Deep bush green — primary dark */
  --c-pine:     #2d5a3f;   /* Mid green */
  --c-canopy:   #3d7a55;   /* Active green */
  --c-lime:     #a8d560;   /* ACT spring yellow-green — accent */
  --c-sand:     #f5f0e8;   /* Warm off-white */
  --c-linen:    #ede8dc;   /* Alt section bg */
  --c-red:      #c84b2f;   /* Warning / dev */
  --c-text:     #1c1c1c;
  --c-text-mid: #4a4a4a;
  --c-text-lt:  #777;
  --c-border:   rgba(0,0,0,.1);
  --c-white:    #ffffff;

  /* Typography — fallback fonts are metric-matched to avoid layout reflow */
  --ff-display: 'Bebas Neue', 'Bebas Neue Fallback', 'Impact', sans-serif;
  --ff-body:    'DM Sans', 'DM Sans Fallback', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-w: 1140px;
  --gap:   clamp(1rem, 3vw, 2rem);
  --section-py: clamp(3.5rem, 8vw, 6rem);

  /* Transitions */
  --ease: cubic-bezier(.22,.68,0,1.2);
}

html { 
  scroll-behavior: smooth; 
  scroll-padding-top: 76px; 
}

body {
  font-family: var(--ff-body);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-sand);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* --- UTILITY --------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2.5rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 2rem;
  font-family: var(--ff-display);
  font-size: 1.15rem;
  letter-spacing: .06em;
  border-radius: 3px;
  transition: transform .2s var(--ease), box-shadow .2s;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: var(--c-lime);
  color: var(--c-forest);
  box-shadow: 0 4px 16px rgba(168,213,96,.3);
}
.btn--primary:hover { box-shadow: 0 6px 24px rgba(168,213,96,.45); }
.btn--outline {
  background: transparent;
  color: var(--c-white);
  border: 2px solid rgba(255,255,255,.55);
}
.btn--outline:hover { border-color: var(--c-lime); color: var(--c-lime); }

.link-inline {
  color: var(--c-canopy);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}
.link-inline:hover { color: var(--c-pine); }

.link-external {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--c-canopy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}
.link-external:hover { color: var(--c-pine); }

.icon-ext  { width: 14px; height: 14px; flex-shrink: 0; }
.icon-pin  { width: 18px; height: 18px; flex-shrink: 0; vertical-align: middle; }
.icon-contact { width: 20px; height: 20px; flex-shrink: 0; }


/* --- HEADER / NAV ---------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--c-forest);
  border-bottom: 2px solid var(--c-pine);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.35); }

.header-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2.5rem);
  height: 68px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  flex-shrink: 0;
}
.logo-badge {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  letter-spacing: .08em;
  color: var(--c-lime);
  line-height: 1;
}
.logo-year {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  letter-spacing: .1em;
  color: rgba(255,255,255,.55);
  line-height: 1;
}

/* Nav */
.main-nav { margin-left: auto; }

.nav-list {
  display: flex;
  align-items: center;
  gap: .1rem;
}

.nav-link {
  display: block;
  padding: .45rem .7rem;
  font-size: .875rem;
  font-weight: 400;
  color: rgba(255,255,255,.78);
  letter-spacing: .03em;
  border-radius: 3px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active { color: var(--c-lime); background: rgba(255,255,255,.05); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 180px;
  background: var(--c-forest);
  border: 1px solid var(--c-pine);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s;
  z-index: 10;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown .nav-link {
  padding: .55rem 1rem;
  font-size: .85rem;
  border-radius: 0;
}

/* Dev nav item */
.nav-link--dev { color: rgba(200,75,47,.85) !important; }
.nav-link--dev:hover { color: var(--c-red) !important; background: rgba(200,75,47,.1) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  margin-left: auto;
  border-radius: 3px;
  transition: background .2s;
}
.nav-toggle:hover { background: rgba(255,255,255,.08); }
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,.8);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* --- HERO ------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-forest);
  overflow: hidden;
  /* padding-top: 68px; TODO UNCOMMENT*/ 
}

/* Subtle grid background */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(168,213,96,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,213,96,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 60%, rgba(45,90,63,.45) 0%, transparent 70%);
  pointer-events: none;
}

/* Large decorative disc */
.hero::after {
  content: '';
  position: absolute;
  width: clamp(300px, 55vw, 700px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px solid rgba(168,213,96,.08);
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem clamp(1rem, 5vw, 3rem);
  max-width: 860px;
}

.hero-eyebrow {
  font-size: clamp(.75rem, 1.5vw, .9rem);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-lime);
  margin-bottom: 1rem;
  opacity: .9;
}

.hero-title {
  font-family: var(--ff-display);
  line-height: .92;
  margin-bottom: 1.25rem;
}
.hero-title-adgc {
  display: block;
  font-size: clamp(5rem, 18vw, 13rem);
  color: var(--c-white);
  letter-spacing: -.01em;
}
.hero-title-year {
  display: block;
  font-size: clamp(3rem, 10vw, 7.5rem);
  color: var(--c-lime);
  letter-spacing: .06em;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: clamp(.85rem, 2vw, 1rem);
  color: rgba(255,255,255,.65);
  margin-bottom: .4rem;
}

.hero-date {
  font-size: clamp(.85rem, 2vw, .95rem);
  color: rgba(255,255,255,.4);
  margin-bottom: 2.5rem;
  font-style: italic;
}

/* Countdown */
.countdown-wrap {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(168,213,96,.2);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
  display: inline-block;
  min-width: min(100%, 480px);
  transition: opacity .4s;
}
.countdown-wrap.hidden { display: none; }

.countdown-label {
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-lime);
  margin-bottom: .75rem;
  opacity: .9;
}

.countdown {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: .5rem;
  margin-bottom: .75rem;
}
.countdown-unit { text-align: center; min-width: 60px; }
.countdown-num {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 6vw, 3.5rem);
  color: var(--c-white);
  line-height: 1;
  letter-spacing: .02em;
}
.countdown-lbl {
  display: block;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-top: .2rem;
}
.countdown-sep {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: rgba(168,213,96,.4);
  line-height: 1.1;
  align-self: flex-start;
  padding-top: .05em;
}
.countdown-opens {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* Registrations open state */
.countdown-wrap.registrations-open .countdown { display: none; }
.countdown-wrap.registrations-open .countdown-label { display: none; }
.countdown-wrap.registrations-open .countdown-opens { display: none; }

.registrations-open-msg { display: none; }
.countdown-wrap.registrations-open .registrations-open-msg {
  display: block;
  padding: .5rem 0 .25rem;
}
.registrations-open-msg .reg-open-heading {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--c-lime);
  letter-spacing: .04em;
  margin-bottom: 1rem;
  display: block;
}
.reg-open-links {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.reg-open-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .6rem 1.25rem;
  background: rgba(168,213,96,.12);
  border: 1px solid rgba(168,213,96,.3);
  border-radius: 5px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--c-lime);
  transition: background .2s, border-color .2s;
}
.reg-open-link:hover {
  background: rgba(168,213,96,.22);
  border-color: var(--c-lime);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}




/* --- SECTIONS -------------------------------------------- */
.section {
  padding-block: var(--section-py);
  background: var(--c-sand);
}
.section--alt { background: var(--c-linen); }
.section--dev { background: #fff8f6; border-top: 3px solid var(--c-red); }

.section-header {
  margin-bottom: 2.5rem;
}
.section-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-canopy);
  background: rgba(61,122,85,.1);
  padding: .2rem .7rem;
  border-radius: 2px;
  margin-bottom: .65rem;
}
.section-tag--dev {
  color: var(--c-red);
  background: rgba(200,75,47,.1);
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1;
  letter-spacing: .03em;
  color: var(--c-forest);
}
.section-intro {
  max-width: 700px;
  color: var(--c-text-mid);
  font-size: clamp(.95rem, 1.5vw, 1.05rem);
  margin-bottom: 2rem;
}


/* --- PAGE HERO (interior pages) -------------------------- */
.page-hero {
  background: var(--c-forest);
  padding-top: calc(68px + 3.5rem);
  padding-bottom: 3rem;
  border-bottom: 3px solid var(--c-canopy);
}
.page-hero--dev { border-bottom-color: var(--c-red); }
.page-hero .section-tag { margin-bottom: .6rem; }
.page-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: var(--c-white);
  letter-spacing: .03em;
  line-height: 1;
}


/* --- ABOUT ----------------------------------------------- */
.about-body {
  max-width: 760px;
  margin-bottom: 2.5rem;
}
.about-body p + p { margin-top: .9rem; }
.about-lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--c-text-mid);
  font-weight: 300;
}

.about-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-canopy);
  border-radius: 6px;
  padding: 1.75rem;
  margin-top: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: box-shadow .25s, transform .25s;
}
.about-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.08); transform: translateY(-2px); }
.about-card-icon { font-size: 2rem; flex-shrink: 0; line-height: 1; }
.about-card-content h3 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  letter-spacing: .04em;
  color: var(--c-forest);
  margin-bottom: .6rem;
}
.about-card-content p + p { margin-top: .6rem; }
.about-card-content p { color: var(--c-text-mid); }


/* --- SPONSORS -------------------------------------------- */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
.sponsor-placeholder {
  background: var(--c-white);
  border: 2px dashed var(--c-border);
  border-radius: 6px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: var(--c-text-lt);
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: border-color .2s;
}
.sponsor-placeholder:hover { border-color: var(--c-canopy); }


/* --- SCHEDULE -------------------------------------------- */
.schedule-placeholder {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 4rem;
  text-align: center;
  color: var(--c-text-lt);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.schedule-placeholder-icon { font-size: 3rem; margin-bottom: 1rem; }


/* --- REGISTRATION ---------------------------------------- */
.registration-callout {
  background: var(--c-forest);
  border-radius: 10px;
  padding: 2.5rem;
  max-width: 700px;
  box-shadow: 0 8px 40px rgba(26,58,42,.25);
}
.registration-callout h3 {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--c-white);
  letter-spacing: .04em;
  margin-bottom: .5rem;
}
.registration-callout p { color: rgba(255,255,255,.65); margin-bottom: 1.5rem; }
.registration-callout strong { color: var(--c-lime); }


/* --- FORMS ----------------------------------------------- */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.contact-form .form-group label { color: var(--c-text-mid); }

input, textarea, select {
  width: 100%;
  padding: .65rem 1rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 4px;
  color: var(--c-white);
  outline: none;
  transition: border-color .2s, background .2s;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,.3); }
input:focus, textarea:focus, select:focus {
  border-color: var(--c-lime);
  background: rgba(255,255,255,.12);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  color: var(--c-text);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--c-text-lt); }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--c-canopy);
  background: #fff;
}
select option { background: var(--c-forest); color: var(--c-white); }
.contact-form select option { background: #fff; color: var(--c-text); }

textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: .78rem;
  color: rgba(255,255,255,.35) !important;
  margin-top: .75rem !important;
  margin-bottom: 0 !important;
}
.form-success {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.25rem;
  background: rgba(168,213,96,.15);
  border: 1px solid rgba(168,213,96,.3);
  border-radius: 5px;
  color: var(--c-lime);
  font-weight: 600;
}
.form-success[hidden] { display: none; }


/* --- VOLUNTEERS ------------------------------------------ */
.volunteers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.volunteer-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
  transition: box-shadow .25s, transform .25s;
}
.volunteer-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.09); transform: translateY(-3px); }
.volunteer-card-icon { font-size: 1.75rem; margin-bottom: .75rem; }
.volunteer-card h4 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  letter-spacing: .04em;
  color: var(--c-forest);
  margin-bottom: .4rem;
}
.volunteer-card p { font-size: .9rem; color: var(--c-text-mid); }
.volunteers-cta { color: var(--c-text-mid); }


/* --- CANBERRA -------------------------------------------- */
.canberra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.canberra-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-top: 3px solid var(--c-canopy);
  border-radius: 6px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.canberra-card h4 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  letter-spacing: .04em;
  color: var(--c-forest);
  margin-bottom: .6rem;
}
.canberra-card p { font-size: .9rem; color: var(--c-text-mid); }


/* --- CONTACT --------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
.contact-info p { color: var(--c-text-mid); margin-bottom: 1.5rem; }
.contact-list { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.75rem; }
.contact-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
  color: var(--c-text-mid);
}

.social-links { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-weight: 600;
  font-size: .9rem;
  color: var(--c-canopy);
  transition: color .2s, gap .2s;
}
.social-link:hover { color: var(--c-pine); gap: .9rem; }
.social-link svg { width: 20px; height: 20px; flex-shrink: 0; }


/* --- DEV PANEL ------------------------------------------- */
.dev-card {
  background: #fff;
  border: 2px solid rgba(200,75,47,.3);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.dev-card h3 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: var(--c-red);
  letter-spacing: .04em;
  margin-bottom: .5rem;
}
.dev-card p { color: var(--c-text-mid); margin-bottom: 1rem; }

.dev-controls { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.dev-toggle-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 420px;
  gap: 1.5rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--c-text-mid);
  cursor: pointer;
}
.dev-toggle {
  position: relative;
  width: 50px;
  height: 28px;
  background: #ddd;
  border-radius: 14px;
  flex-shrink: 0;
  transition: background .25s;
}
.dev-toggle[aria-checked="true"] { background: var(--c-red); }
.dev-toggle-knob {
  position: absolute;
  top: 3px; left: 3px;
  width: 22px; height: 22px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
  transition: transform .25s var(--ease);
}
.dev-toggle[aria-checked="true"] .dev-toggle-knob { transform: translateX(22px); }

.dev-info {
  background: #f8f5f0;
  border: 1px solid var(--c-border);
  border-radius: 5px;
  padding: 1rem 1.25rem;
  font-size: .85rem;
}
.dev-info p + p { margin-top: .4rem; }
.dev-info code {
  font-family: 'Courier New', monospace;
  font-size: .8rem;
  background: rgba(0,0,0,.06);
  padding: .1em .4em;
  border-radius: 3px;
}


/* --- FOOTER ---------------------------------------------- */
.site-footer {
  background: var(--c-forest);
  color: rgba(255,255,255,.65);
  padding-block: 3.5rem 2rem;
  border-top: 3px solid var(--c-canopy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo { margin-bottom: .75rem; }
.footer-tagline {
  font-size: .85rem;
  line-height: 1.7;
  color: rgba(255,255,255,.4);
}

.footer-nav-col h5,
.footer-social-col h5 {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-lime);
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer-nav-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav-col a {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-nav-col a:hover { color: var(--c-lime); }

.footer-social {
  display: flex;
  gap: .75rem;
  margin-bottom: 2rem;
}
.footer-social-link {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  color: rgba(255,255,255,.7);
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.footer-social-link:hover {
  background: rgba(168,213,96,.15);
  border-color: var(--c-lime);
  color: var(--c-lime);
  transform: translateY(-2px);
}
.footer-social-link svg { width: 18px; height: 18px; }

.footer-adgc p {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: .4rem;
}
.footer-adgc-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--c-lime);
  transition: color .2s;
}
.footer-adgc-link:hover { color: #c8e87a; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}
.footer-bottom a { color: rgba(255,255,255,.45); transition: color .2s; }
.footer-bottom a:hover { color: var(--c-lime); }


/* --- RESPONSIVE ------------------------------------------ */
@media (max-width: 960px) {
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  /* Nav mobile */
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--c-forest);
    border-bottom: 2px solid var(--c-pine);
    padding: .75rem 0 1rem;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s, transform .25s;
    max-height: calc(100svh - 68px);
    overflow-y: auto;
  }
  .main-nav.open { opacity: 1; pointer-events: all; transform: translateY(0); }
  .nav-list { flex-direction: column; gap: 0; }
  .nav-link { padding: .7rem 1.5rem; font-size: .95rem; }
  .dropdown {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    background: rgba(0,0,0,.2);
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
  .dropdown .nav-link { padding-left: 2.5rem; font-size: .9rem; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }
  
  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .4rem; }
}

@media (max-width: 520px) {
  .hero-title-adgc { font-size: clamp(3.5rem, 22vw, 5rem); }
  .countdown-wrap { padding: 1rem 1.25rem; }
  .countdown-unit { min-width: 48px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
  .about-card { flex-direction: column; }
  .schedule-placeholder { padding: 2.5rem 1.5rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* Logo badge: ADG image */
.logo-badge { 
  display: inline-flex; 
  align-items: center; 
}

.logo-badge img { 
  height: 32px; 
  width: auto; 
  display: block; 
  border-radius: 3px; 
}

.logo .logo-year { 
  display: none; 
}

/* Hero background photo */
.hero-bg-photo {
  position: absolute;
  inset: 0;
  background: url('images/weston-park.jpg') center center / cover no-repeat;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-grid,
.hero-content { 
  z-index: 1; 
}

/* Hero dates */
.hero-dates { 
  margin-bottom: 2rem; 
}

.hero-dates-range {
  font-size: clamp(.85rem, 2vw, 1rem);
  color: var(--c-lime);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: .9rem;
  text-align: center;
}

.hero-dates-grid {
  display: flex;
  gap: 0;
  border: 1px solid rgba(168,213,96,.2);
  border-radius: 6px;
  overflow: hidden;
  max-width: 860px;
  margin-inline: auto;
}

.hero-dates-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  padding: .9rem 1.25rem;
  text-align: center;
  border-right: 1px solid rgba(168,213,96,.15);
}

.hero-dates-block:last-child { 
  border-right: none; 
}

.hero-dates-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-lime);
  opacity: .8;
}

.hero-dates-when {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: #fff;
  letter-spacing: .03em;
  line-height: 1;
}

.hero-dates-divs {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  width: 100%;
}

.div-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  font-size: .7rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .02em;
  white-space: nowrap;
}

.div-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.div-dot--red    { background: #e05252; }
.div-dot--green  { background: #52c97a; }
.div-dot--yellow { background: #f0c030; }
.div-dot--blue   { background: #5299e0; }

/* Footer: partner cols */
.footer-brand   { display: none; }
.footer-nav-col { display: none; }
.footer-grid { display: flex; flex-direction: row; align-items: flex-start; gap: 0; }
.footer-partner,
.footer-social-col { flex: 1; display: flex; flex-direction: column; align-items: flex-start; gap: .6rem; }
.footer-partner h5,
.footer-social-col h5 { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--c-lime); font-weight: 600; margin: 0; white-space: nowrap; }
.footer-partner-link { display: inline-block; transition: opacity .2s; }
.footer-partner-link:hover { opacity: .8; }
.footer-partner-link img { height: 80px; width: auto; object-fit: contain; border-radius: 4px; display: block; }

/* Responsive overrides */
@media (max-width: 640px) {
  .footer-grid { flex-direction: column; gap: 1.5rem; align-items: center; }
  .footer-partner,
  .footer-social-col { align-items: center; text-align: center; width: 100%; }
  .footer-social { justify-content: center; }
  .footer-adgc { text-align: center; }
  .footer-adgc-link { justify-content: center; }
  .footer-bottom { text-align: center; flex-direction: column; align-items: center; }
}

@media (max-width: 560px) {
  .hero-dates-grid { flex-direction: column; }
  .hero-dates-block { border-right: none; border-bottom: 1px solid rgba(168,213,96,.15); }
  .hero-dates-block:last-child { border-bottom: none; }
  .div-row { white-space: normal; }
}