/* ── KMC MAIN STYLESHEET ─────────────────────────────────────────────────────
   Kai Memorial Cup WordPress Theme v1.0
   ─────────────────────────────────────────────────────────────────────────── */

/* ── CSS VARIABLES ── */
:root {
  --red:       #C41230;
  --red-dark:  #8B0C22;
  --red-light: #FAE8EB;
  --navy:      #1C2B5E;
  --navy-light:#E8EAF2;
  --gold:      #C9941A;
  --white:     #FFFFFF;
  --off-white: #FAF8F5;
  --black:     #111111;
  --grey:      #555555;
  --light-grey:#F2F2F2;
  --ff-display:'Playfair Display', Georgia, serif;
  --ff-body:   'Barlow', sans-serif;
  --ff-cond:   'Barlow Condensed', sans-serif;
  --max-w:     1200px;
  --radius:    4px;
  --transition:0.3s ease;
  --shadow:    0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  color: var(--black);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-dark); }
ul { list-style: none; padding: 0; margin: 0; }

/* Accessibility */
.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 9999;
  background: var(--red); color: var(--white); padding: .5rem 1rem;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }
.screen-reader-text {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap;
}

/* ── LAYOUT ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 5rem 0; }
.text-center { text-align: center; }
.bg-off   { background: var(--off-white); }
.bg-navy  { background: var(--navy); }
.bg-red   { background: var(--red); }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── TYPOGRAPHY ── */
.section-label {
  font-family: var(--ff-cond);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--red); display: block; margin-bottom: .6rem;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900; line-height: 1.15;
  color: var(--navy); margin-bottom: 1.2rem;
}
.section-title.light { color: var(--white); }
.section-intro { font-size: 1.05rem; color: var(--grey); max-width: 620px; line-height: 1.8; }
.red-rule { width: 56px; height: 4px; background: var(--red); margin: 1.2rem 0 1.8rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: .85rem 2.2rem;
  font-family: var(--ff-cond);
  font-size: .95rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: all var(--transition); border: none;
  line-height: 1;
}
.btn-red     { background: var(--red);   color: var(--white); }
.btn-navy    { background: var(--navy);  color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-white-red { background: var(--white); color: var(--red); }
.btn-block   { width: 100%; text-align: center; }
.btn-red:hover     { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(196,18,48,.3); color: var(--white); }
.btn-navy:hover    { background: #142050; transform: translateY(-2px); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-white-red:hover { background: var(--off-white); }

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-group.justify-center { justify-content: center; }

/* ── NAVIGATION ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
}
.main-nav { height: 68px; }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo, .nav-logo:hover {
  font-family: var(--ff-display); font-size: 1.1rem; font-weight: 700;
  color: var(--white); letter-spacing: .03em;
  display: flex; align-items: center; gap: .75rem;
  text-decoration: none;
}
.logo-text em { color: var(--red); font-style: normal; }
.nav-logo img { height: 40px; width: auto; }

.nav-links { display: flex; gap: 0; }
.nav-links li a, .nav-links li > a {
  display: block; padding: .5rem 1rem;
  color: rgba(255,255,255,.78);
  font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  text-decoration: none;
  transition: color var(--transition);
  border-bottom: 2px solid transparent;
}
.nav-links li a:hover,
.nav-links li.current-menu-item > a,
.nav-links li.current_page_item > a {
  color: var(--white); border-bottom-color: var(--red);
}
/* Dropdown */
.nav-links li { position: relative; }
.nav-links li ul {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--navy); min-width: 200px;
  box-shadow: var(--shadow-lg); padding: .5rem 0;
}
.nav-links li:hover > ul { display: block; }
.nav-links li ul li a { border-bottom: none; padding: .6rem 1.2rem; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span { width: 24px; height: 2px; background: white; display: block; transition: var(--transition); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── PAGE TOP PADDING ── */
.site-main { padding-top: 68px; }

/* ── HERO (HOME) ── */
.hero {
  position: relative; min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .18; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(28,43,94,.97) 0%, rgba(28,43,94,.75) 60%, rgba(196,18,48,.4) 100%);
}
.hero-content {
  position: relative; z-index: 1; padding-top: 5rem; padding-bottom: 5rem;
}
.hero-eyebrow {
  font-family: var(--ff-cond); font-size: .75rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.6);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900; color: var(--white); line-height: 1;
  margin-bottom: .5rem;
}
.hero-title em { color: var(--red); font-style: normal; display: block; }
.hero-subtitle {
  font-family: var(--ff-display); font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 700; font-style: italic; color: rgba(255,255,255,.7);
  margin-bottom: 2rem;
}
.hero-text {
  font-size: 1.05rem; color: rgba(255,255,255,.75);
  max-width: 540px; line-height: 1.8; margin-bottom: 2.5rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── PAGE HEROES (inner pages) ── */
.page-hero-section {
  padding: 8rem 0 5rem;
  position: relative; overflow: hidden;
}
.about-hero, .kai-hero, .causes-hero, .contact-hero { background: var(--navy); }
.event-hero, .sponsor-hero { background: var(--red); }
.event-hero::before {
  content: 'KMC3';
  position: absolute; right: -2rem; top: 50%; transform: translateY(-50%);
  font-family: var(--ff-display); font-size: 18rem; font-weight: 900;
  color: rgba(255,255,255,.05); line-height: 1; pointer-events: none;
}

/* Kai Hero special */
.kai-hero {
  position: relative; min-height: 60vh;
  display: flex; align-items: flex-end; padding-bottom: 4rem; overflow: hidden;
}
.kai-hero-bg {
  position: absolute; inset: 0; overflow: hidden;
}
.kai-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; opacity: .2; }
.kai-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--navy) 30%, rgba(28,43,94,.5) 100%);
}
.kai-hero-content { position: relative; z-index: 1; }

/* ── MOTTO STRIP ── */
.motto-strip { background: var(--red); padding: 1.2rem 2rem; text-align: center; }
.motto-strip p {
  font-family: var(--ff-display); font-size: 1.2rem;
  font-style: italic; color: var(--white); letter-spacing: .04em;
}

/* ── STATS BAR ── */
.stats-bar { background: var(--navy); padding: 3.5rem 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
}
.stat-item {
  text-align: center; padding: 1rem;
  border-right: 1px solid rgba(255,255,255,.12);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900; color: var(--white); line-height: 1; display: block;
}
.stat-num small { color: var(--red); font-size: 55%; }
.stat-label {
  font-size: .78rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.55); margin-top: .4rem;
}

/* ── HOME ABOUT ── */
.home-about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.home-about-img { position: relative; }
.home-about-img img { width: 100%; display: block; object-fit: cover; }
.img-accent {
  position: absolute; bottom: -20px; right: -20px;
  width: 120px; height: 120px; background: var(--red); z-index: -1;
}
.img-placeholder { background: var(--light-grey); width: 100%; aspect-ratio: 4/3; }

/* ── MISSION CARDS ── */
.mission-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.mission-card {
  background: var(--off-white); padding: 2.2rem;
  border-top: 4px solid var(--red);
}
.mission-card.navy { background: var(--navy); border-top-color: var(--gold); }
.mission-card.navy .mc-title, .mission-card.navy .mc-text { color: var(--white); }
.mission-card.navy .mc-text { color: rgba(255,255,255,.75); }
.mc-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.mc-title { font-family: var(--ff-display); font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: .6rem; }
.mc-text { font-size: .92rem; color: var(--grey); line-height: 1.7; }

/* ── GALLERY STRIP ── */
.gallery-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  height: 280px; overflow: hidden;
}
.gallery-strip img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease; display: block;
}
.gallery-strip img:hover { transform: scale(1.05); }

/* ── SAVE THE DATE ── */
.std-inner {
  display: grid; grid-template-columns: 1fr auto;
  gap: 3rem; align-items: center;
}
.std-details { font-size: 1.05rem; color: rgba(255,255,255,.85); margin-bottom: 1rem; }
.std-details strong { color: var(--white); }
.std-poster { width: 220px; flex-shrink: 0; }
.std-poster img { width: 100%; display: block; box-shadow: 0 20px 60px rgba(0,0,0,.35); }

/* ── IMAGE BANNER ── */
.img-banner { position: relative; height: 400px; overflow: hidden; }
.img-banner img { width: 100%; height: 100%; object-fit: cover; }
.img-banner-overlay {
  position: absolute; inset: 0;
  background: rgba(28,43,94,.55);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  gap: 1.5rem;
}
.img-banner-text {
  text-align: center; color: var(--white);
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 900; font-style: italic; padding: 0 2rem;
}

/* ── KAI'S STORY ── */
.kai-story-grid {
  display: grid; grid-template-columns: 340px 1fr;
  gap: 4rem; align-items: start;
}
.kai-photo { position: sticky; top: 88px; }
.kai-photo img { width: 100%; display: block; object-fit: cover; }
.kai-photo-caption {
  background: var(--navy); padding: 1.2rem 1.5rem;
  font-size: .85rem; color: rgba(255,255,255,.75); font-style: italic;
}
.kai-story-text p { font-size: 1.05rem; color: #333; line-height: 1.9; margin-bottom: 1.4rem; }
.kai-quote {
  border-left: 5px solid var(--red); padding: 1.5rem 2rem;
  margin: 2.5rem 0; background: var(--red-light);
}
.kai-quote p {
  font-family: var(--ff-display); font-size: 1.3rem;
  font-style: italic; color: var(--navy); margin: 0 !important; line-height: 1.6;
}

/* ── ABOUT US ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center; padding: 2rem 0;
}
.about-grid.reverse { direction: rtl; }
.about-grid.reverse > * { direction: ltr; }
.about-img img { width: 100%; display: block; object-fit: cover; }

.cups-timeline {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; max-width: 900px; margin: 2rem auto 0;
  text-align: left;
}
.cup-item { border-top: 4px solid var(--red); padding-top: 1.2rem; }
.cup-item.cup-upcoming { background: var(--navy-light); padding: 1.2rem; border-top-color: var(--navy); }
.cup-edition { font-family: var(--ff-display); font-size: 1.8rem; font-weight: 900; color: var(--navy); }
.cup-year { font-size: .85rem; color: var(--grey); margin-top: .3rem; }
.cup-item p { font-size: .9rem; color: #555; margin-top: .8rem; line-height: 1.7; }

/* ── EVENT ── */
.event-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.event-card {
  background: var(--white); border: 1px solid #eee; padding: 2.5rem;
  border-top: 4px solid var(--red);
}
.event-card.navy { background: var(--navy); border-top-color: var(--gold); }
.event-card h3 {
  font-family: var(--ff-cond); font-size: 1rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--red); margin-bottom: 1.2rem;
}
.event-card.navy h3 { color: var(--gold); }
.event-card.navy p { color: rgba(255,255,255,.8); }
.event-detail-item { display: flex; gap: 1rem; margin-bottom: 1.2rem; align-items: flex-start; }
.event-detail-icon { font-size: 1.3rem; flex-shrink: 0; }
.event-detail-text strong { display: block; font-weight: 600; color: var(--navy); margin-bottom: .1rem; }
.event-card.navy .event-detail-text strong { color: var(--white); }
.event-detail-text span { font-size: .9rem; color: var(--grey); }
.event-card.navy .event-detail-text span { color: rgba(255,255,255,.7); }
.age-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; margin-top: 1rem; }
.age-pill {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25);
  padding: .4rem .8rem; font-size: .82rem; color: rgba(255,255,255,.85);
  font-weight: 600; text-align: center;
}
.schedule-section { padding: 4rem 0; }
.schedule-list { margin-top: 2rem; }
.schedule-item {
  display: flex; gap: 2rem; padding: 1.2rem 0;
  border-bottom: 1px solid #e0e0e0; align-items: baseline;
}
.schedule-time {
  font-family: var(--ff-cond); font-size: 1rem; font-weight: 700;
  color: var(--red); min-width: 80px; letter-spacing: .05em;
}
.schedule-desc { font-size: .95rem; color: var(--grey); }
.on-the-day-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 2rem;
}
.otd-card { padding: 1.5rem; background: var(--off-white); }
.otd-icon { font-size: 2rem; display: block; margin-bottom: .5rem; }
.otd-card strong { display: block; margin-bottom: .3rem; color: var(--navy); }
.otd-card span { font-size: .85rem; color: var(--grey); }

/* ── CAUSES ── */
.raised-banner { background: var(--navy); padding: 4rem 0; text-align: center; }
.raised-num {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900; color: var(--white); display: block;
}
.raised-num em { color: var(--red); font-style: normal; }
.raised-label {
  font-size: .85rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin-top: .5rem; display: block;
}
.cause-block {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 400px; border-bottom: 1px solid #eee;
}
.cause-block:nth-child(even) .cause-img { order: 2; }
.cause-block:nth-child(even) .cause-content { order: 1; }
.cause-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cause-content {
  padding: 3.5rem; display: flex; flex-direction: column; justify-content: center;
  background: var(--white);
}
.cause-block:nth-child(even) .cause-content { background: var(--off-white); }
.cause-content h2 {
  font-family: var(--ff-display); font-size: 1.7rem; font-weight: 900;
  color: var(--navy); margin-bottom: .8rem; margin-top: .5rem;
}
.cause-content p { font-size: .95rem; color: var(--grey); line-height: 1.8; margin-bottom: 1rem; }
.cause-content a { color: var(--red); }

/* ── SPONSORSHIP ── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.why-card { text-align: center; padding: 2rem 1.5rem; }
.why-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.why-card h4 { font-family: var(--ff-display); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: .6rem; }
.why-card p { font-size: .88rem; color: var(--grey); line-height: 1.7; }
.tiers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; }
.tier-card {
  padding: 2.5rem; border: 2px solid #eee; position: relative; overflow: hidden;
}
.tier-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
}
.tier-card.t1 { border-color: var(--red); }   .tier-card.t1::before { background: var(--red); }
.tier-card.t2 { border-color: var(--navy); }  .tier-card.t2::before { background: var(--navy); }
.tier-card.t3 { border-color: var(--gold); }  .tier-card.t3::before { background: var(--gold); }
.tier-card.t4 { border-color: #888; }         .tier-card.t4::before { background: #888; }
.tier-card.t5 { border-color: var(--red-light); background: var(--off-white); grid-column: span 2; text-align: center; }
.tier-card.t5::before { background: linear-gradient(to right, var(--red), var(--navy)); }
.tier-name { font-family: var(--ff-cond); font-size: .75rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; margin-bottom: .3rem; }
.t1 .tier-name { color: var(--red); } .t2 .tier-name { color: var(--navy); }
.t3 .tier-name { color: var(--gold); } .t4 .tier-name { color: #666; } .t5 .tier-name { color: var(--grey); }
.tier-title { font-family: var(--ff-display); font-size: 1.6rem; font-weight: 900; color: var(--navy); margin-bottom: .8rem; }
.tier-desc { font-size: .9rem; color: var(--grey); line-height: 1.7; margin-bottom: 1.2rem; }
.tier-benefits { padding: 0; }
.tier-benefits li { font-size: .88rem; color: #444; padding: .3rem 0; display: flex; gap: .5rem; align-items: flex-start; }
.tier-benefits li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; }
.tier-enquiry-footer {
  text-align: center; margin-top: 3rem; padding: 2rem;
  background: var(--off-white);
}
.tier-enquiry-footer p { color: var(--grey); font-style: italic; margin-bottom: 1.2rem; }
.sponsors-grid {
  display: flex; flex-wrap: wrap; gap: 2rem;
  justify-content: center; margin-top: 2rem;
}
.sponsor-logo {
  width: 140px; height: 80px; display: flex;
  align-items: center; justify-content: center;
  filter: grayscale(100%); opacity: .6;
  transition: all var(--transition);
}
.sponsor-logo:hover { filter: none; opacity: 1; }
.sponsor-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info h3 { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; }
.contact-detail { display: flex; gap: 1.2rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-icon {
  width: 44px; height: 44px; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; color: var(--white);
}
.contact-text strong { display: block; font-weight: 600; color: var(--navy); margin-bottom: .2rem; }
.contact-text a, .contact-text span { font-size: .95rem; color: var(--grey); }
.contact-text a:hover { color: var(--red); }
.contact-quote {
  margin-top: 2rem; padding: 1.5rem;
  background: var(--navy); color: var(--white);
}
.contact-quote p { font-family: var(--ff-display); font-size: 1.1rem; font-style: italic; line-height: 1.6; }
.contact-quote span { font-size: .82rem; color: rgba(255,255,255,.55); margin-top: .6rem; display: block; }
.contact-form-wrap { background: var(--off-white); padding: 2.5rem; }
.form-title { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; }
.form-row { margin-bottom: 1.2rem; }
.form-row label { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); margin-bottom: .4rem; }
.form-row label span { color: var(--red); }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: .75rem 1rem;
  border: 2px solid #ddd; font-family: var(--ff-body); font-size: .95rem;
  color: var(--black); background: var(--white);
  transition: border-color var(--transition); outline: none; border-radius: 0;
  appearance: none;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { border-color: var(--red); }
.form-row textarea { min-height: 120px; resize: vertical; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
#kmc-form-status { padding: 1rem; margin-bottom: 1rem; font-size: .9rem; }
#kmc-form-status.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
#kmc-form-status.error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
#kmc-form-status.loading { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }

/* ── FOOTER ── */
.site-footer { background: var(--black); padding: 4rem 0 2rem; }
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-logo-text {
  font-family: var(--ff-display); font-size: 1.2rem; font-weight: 700; color: var(--white);
}
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.8; margin-top: .8rem; max-width: 280px; }
.footer-motto { color: var(--red) !important; font-style: italic; font-family: var(--ff-display); }
.footer-socials { margin-top: 1rem; display: flex; gap: .75rem; }
.social-link { color: rgba(255,255,255,.4); transition: color var(--transition); }
.social-link:hover { color: var(--white); }
.footer-col h4 {
  font-family: var(--ff-cond); font-size: .75rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 1.2rem;
}
.footer-links li { margin-bottom: .5rem; }
.footer-links a, .footer-contact-list a { font-size: .88rem; color: rgba(255,255,255,.55); transition: color var(--transition); cursor: pointer; }
.footer-links a:hover, .footer-contact-list a:hover { color: var(--white); }
.footer-contact-list li { font-size: .88rem; color: rgba(255,255,255,.55); margin-bottom: .5rem; }
.footer-event-info { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.7; margin-top: .5rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.3); }
.footer-motto-bottom { font-family: var(--ff-display); font-size: .9rem; font-style: italic; color: var(--red); }

/* ── BLOG / DEFAULT PAGE ── */
.page-hero { background: var(--navy); padding: 6rem 0 3rem; }
.page-hero-title { font-family: var(--ff-display); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; color: var(--white); }
.content-narrow { max-width: 760px; }
.page-content-area { padding: 4rem 0; }
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.post-card { border: 1px solid #eee; overflow: hidden; }
.post-card-img img { width: 100%; height: 200px; object-fit: cover; }
.post-card-body { padding: 1.5rem; }
.post-card-title { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: .8rem; }
.post-card-title a { color: var(--navy); }
.post-card-title a:hover { color: var(--red); }
.post-card-excerpt { font-size: .9rem; color: var(--grey); line-height: 1.7; margin-bottom: 1rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .cups-timeline { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .event-info-grid { grid-template-columns: 1fr; }
  .on-the-day-grid { grid-template-columns: repeat(2, 1fr); }
  .tiers-grid { grid-template-columns: 1fr; }
  .tier-card.t5 { grid-column: span 1; }
  .cause-block { grid-template-columns: 1fr; min-height: auto; }
  .cause-block:nth-child(even) .cause-img,
  .cause-block:nth-child(even) .cause-content { order: unset; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: var(--navy); flex-direction: column; padding: 1rem 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: .9rem 2rem; border-bottom: 1px solid rgba(255,255,255,.08); border-left: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  .home-about-inner { grid-template-columns: 1fr; }
  .img-accent { display: none; }
  .mission-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); height: 200px; }
  .std-inner { grid-template-columns: 1fr; }
  .std-poster { display: none; }

  .kai-story-grid { grid-template-columns: 1fr; }
  .kai-photo { position: static; }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-grid.reverse { direction: ltr; }
  .cups-timeline { grid-template-columns: 1fr; }

  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-2col { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; }

  .posts-grid { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .hero-ctas { flex-direction: column; }
  .btn-group { flex-direction: column; }
  .on-the-day-grid { grid-template-columns: 1fr; }
}

/* ── CAUSES SUMMARY LIST ── */
.causes-summary-list {
    list-style: none; padding: 0; margin: 1.5rem 0;
}
.causes-summary-list li {
    padding: .9rem 1rem .9rem 2.2rem;
    position: relative;
    font-size: .97rem; color: #333; line-height: 1.75;
    border-bottom: 1px solid #eee;
}
.causes-summary-list li::before {
    content: '✓';
    position: absolute; left: 0; top: .95rem;
    color: var(--red); font-weight: 700; font-size: 1rem;
}

/* ── PRINT ── */
@media print {
  .site-header, .site-footer, .hero-ctas, .btn-group { display: none; }
  body { font-size: 12pt; }
  .section-title { font-size: 18pt; }
}
