/* ================================================================
   SKÅL International Taichung — Stylesheet v5
   Brand Fonts: Montserrat family
   Color Strategy: Light & airy base, brand blue as accent only
   ================================================================ */

/* ── Google Fonts: single combined request ── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300&family=Noto+Sans+TC:wght@300;400;500;700&display=swap');


@import url('https://fonts.googleapis.com/icon?family=Material+Icons+Round');

/* ================================================================
   DESIGN TOKENS
   ================================================================ */
:root {
  /* SKÅL Brand Colors */
  --skal-blue:        #314691;      /* Primary dark blue */
  --skal-light-blue:  #65A8DE;      /* Light blue */
  --skal-grey:        #59595B;      /* Grey 80% */
  --skal-cyan:        #70DBF3;      /* Intense blue / accent */
  --skal-yellow:      #EDD945;      /* Happy yellow */
  --skal-green:       #60CDD2;      /* Soft green */
  --skal-lavanda:     #C65AD8;      /* Lavanda */

  /* Surface Colors — light & breathable */
  --bg-page:          #f8faff;      /* Very light blue-white base */
  --bg-section-alt:   #eef3fb;      /* Subtle blue-tinted section bg */
  --bg-card:          #ffffff;
  --border-subtle:    rgba(49,70,145,0.10);
  --border-card:      rgba(49,70,145,0.08);

  /* Text */
  --text-main:        #1a1d2e;
  --text-muted:       #5a6278;
  --text-light:       #8892a4;

  /* Component shortcuts */
  --skal-blue-pale:   rgba(49,70,145,0.08);
  --skal-blue-hover:  rgba(49,70,145,0.12);
  --shadow-card:      0 2px 16px rgba(49,70,145,0.07), 0 1px 3px rgba(49,70,145,0.04);
  --shadow-hover:     0 10px 36px rgba(49,70,145,0.13), 0 2px 6px rgba(49,70,145,0.06);
  --radius-card:      1rem;
  --transition:       0.22s cubic-bezier(0.4,0,0.2,1);
  
  /* Typography system */
  --font-heading: 'Montserrat', system-ui, sans-serif;
  --font-body:    'Noto Sans TC', 'Montserrat', system-ui, sans-serif;
  --font-ui:      'Montserrat', system-ui, sans-serif;
  
  /* Backward-compat aliases */
  --skal-dark-blue:    #314691;   /* = --skal-blue */
  --skal-intense-blue: #70DBF3;   /* = --skal-cyan */
}

/* ================================================================
   BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  /* Body: Noto Sans TC for CJK readability, Montserrat as Latin fallback */
  font-size: 1rem;           /* 16px base — readable for seniors */
  font-weight: 400;
  color: var(--text-main);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
}

/* ================================================================
   TYPOGRAPHY — Montserrat Brand Spec
   ================================================================ */
h1 { font-family: 'Montserrat',sans-serif; font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; color: var(--text-main); }
h2 { font-family: 'Montserrat',sans-serif; font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: var(--text-main); }
h3 { font-family: 'Montserrat',sans-serif; font-weight: 600; line-height: 1.2; color: var(--text-main); }
h4 { font-family: 'Montserrat',sans-serif; font-weight: 600; color: var(--text-main); }

/* ================================================================
   HEADER
   ================================================================ */
#site-header { transition: box-shadow var(--transition); }

/* Logo — bare <img>, clear space via padding */
.nav-logo-link {
  display: flex;
  align-items: center;
  /* Clear space = ½ logo height (56px) = 28px → use 1.75rem on all sides */
  padding: 1.75rem 1.75rem 1.75rem 0;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo-img {
  height: 56px;          /* display height */
  min-width: 248px;      /* 56px × 4.43 aspect ratio */
  width: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 1024px) {
  .nav-logo-link { padding: 1.25rem 1.25rem 1.25rem 0; }
  .nav-logo-img  { height: 48px; min-width: 213px; }
}

@media (max-width: 640px) {
  .nav-logo-link { padding: 1rem 1rem 1rem 0; }
  .nav-logo-img  { height: 40px; min-width: 177px; }
}

/* Thin separator between logo area and nav links */
.nav-logo-sep {
  width: 1px; height: 1.75rem;
  background: var(--border-subtle);
  margin: 0 1.5rem 0 0.5rem;
  flex-shrink: 0;
}

/* Nav links */
.nav-link {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  padding: 0.5rem 0;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--skal-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover { color: var(--skal-blue); }
.nav-link:hover::after,
.nav-link[aria-current="page"]::after { transform: scaleX(1); }
.nav-link[aria-current="page"] { color: var(--skal-blue); font-weight: 700; }

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--bg-section-alt);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  padding: 0.2rem;
  gap: 0.15rem;
}

.lang-btn {
  border-radius: 999px;
  padding: 0.35rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
  color: var(--text-muted);
  cursor: pointer;
  border: none;
  background: transparent;
}

.lang-btn.active {
  background: var(--skal-blue);
  color: #fff;
  box-shadow: 0 1px 6px rgba(49,70,145,0.3);
}

/* ================================================================
   HERO SECTION — keep impact, lighter overlay
   ================================================================ */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

/* Lighter overlay — right side breathes */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    108deg,
    rgba(20,30,70,0.88) 0%,
    rgba(49,70,145,0.72) 50%,
    rgba(49,70,145,0.25) 100%
  );
}

.hero-content { position: relative; z-index: 1; width: 100%; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(112,219,243,0.55);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--skal-cyan);
  background: rgba(112,219,243,0.1);
  backdrop-filter: blur(6px);
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--skal-cyan);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-title {
  word-break: keep-all;
  overflow-wrap: break-word;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.84);
  max-width: 560px;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--skal-blue);
  color: #ffffff !important;  /* Method 2: always white, cannot be overridden */
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.82rem 1.9rem;
  border-radius: 999px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--skal-light-blue);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(49,70,145,0.32);
}

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1.5px solid rgba(255,255,255,0.55);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.82rem 1.9rem;
  border-radius: 999px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.85);
}

.btn-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--skal-blue);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.82rem 1.9rem;
  border-radius: 999px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-gold:hover {
  background: var(--skal-light-blue);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(49,70,145,0.32);
}

.btn-outline-light {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1.5px solid rgba(255,255,255,0.38);
  color: rgba(255,255,255,0.90);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.82rem 1.9rem;
  border-radius: 999px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

/* ================================================================
   ACCENT RULE — blue, not gold
   ================================================================ */
.accent-rule {
  width: 2.5rem; height: 3px;
  background: var(--skal-light-blue);
  border-radius: 2px;
  margin: 0.9rem 0 1.5rem;
}

.accent-rule.center { margin-left: auto; margin-right: auto; }

/* ================================================================
   STATS BAND — lighter, uses gradient not solid navy
   ================================================================ */
.stats-band {
  background: linear-gradient(90deg, var(--skal-blue) 0%, var(--skal-light-blue) 100%);
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><circle cx="30" cy="30" r="25" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>') repeat;
  pointer-events: none;
}

.stat-item { text-align: center; padding: 1.75rem 1rem; position: relative; }

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-top: 0.45rem;
}

/* ================================================================
   SECTION LAYOUT
   ================================================================ */
.section-pad    { padding: 5rem 0; }
.section-pad-sm { padding: 3.5rem 0; }

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--skal-light-blue);
  margin-bottom: 0.55rem;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 3vw, 2.9rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.section-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-muted);
  max-width: 560px;
}

/* ================================================================
   PHOTO CARDS
   ================================================================ */
.photo-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border-card);
}

.photo-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }

.photo-card-img { width: 100%; height: 210px; object-fit: cover; display: block; }

.photo-card-body { padding: 1.5rem 1.75rem 1.85rem; }

.photo-card-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--skal-light-blue); margin-bottom: 0.5rem;
}

.photo-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--text-main); margin-bottom: 0.6rem;
  line-height: 1.3; letter-spacing: -0.01em;
}

.photo-card-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem; font-weight: 300;
  line-height: 1.8; color: var(--text-muted);
}

/* ================================================================
   SPLIT SECTION
   ================================================================ */
.split-img-wrap {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.split-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  min-height: 380px;
}

.split-img-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: rgba(255,255,255,0.92);
  color: var(--skal-blue);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  box-shadow: 0 2px 12px rgba(49,70,145,0.2);
}

/* ================================================================
   FEATURE ICONS — larger, more visible
   ================================================================ */
.feature-item {
  display: flex; align-items: flex-start; gap: 1.1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.feature-item:last-child { border-bottom: none; }

.feature-icon {
  width: 3rem; height: 3rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--skal-blue-pale) 0%, rgba(101,168,222,0.18) 100%);
  border: 1px solid rgba(49,70,145,0.14);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.feature-icon .material-icons-round {
  font-size: 1.4rem;
  color: var(--skal-blue);
}

.feature-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.5;
  /* padding-top: 0.65rem; */
}

/* ================================================================
   PAGE BANNER — less heavy, lighter gradient
   ================================================================ */
.page-banner {
  position: relative; overflow: hidden;
  padding: 4.5rem 0 3.75rem;
  background: linear-gradient(135deg, var(--skal-blue) 0%, var(--skal-light-blue) 100%);
}

.page-banner-bg { position: absolute; inset: 0; opacity: 0.12; }
.page-banner-bg img { width: 100%; height: 100%; object-fit: cover; }

/* Subtle texture overlay */
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.1) 100%);
  pointer-events: none;
}

.page-banner-content {
  position: relative;
  z-index: 10;
  padding: 4rem 0 3rem;
  max-width: 52rem;
}
@media (min-width: 768px) {
  .page-banner-content { padding: 5rem 0 4rem; }
}

.page-banner-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); margin-bottom: 0.75rem;
}

.page-banner-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  font-weight: 800; color: #fff;
  line-height: 1.1; letter-spacing: -0.03em;
}

.page-banner-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.0625rem; font-weight: 300;
  line-height: 1.9; color: rgba(255,255,255,0.82);
  max-width: 580px; margin-top: 0.8rem;
}

/* ================================================================
   CONTENT CARDS
   ================================================================ */
.content-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-card);
  padding: 2rem 2.25rem;
  transition: box-shadow var(--transition);
}

.content-card:hover { box-shadow: var(--shadow-hover); }

.content-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--text-main); margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

/* ================================================================
   CHECK LIST
   ================================================================ */
.check-list { list-style: none; padding: 0; margin: 0; }

.check-list li {
  display: flex; align-items: flex-start; gap: 0.85rem;
  padding: 0.6rem 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem; font-weight: 400;
  line-height: 1.7; color: var(--text-muted);
  border-bottom: 1px solid rgba(49,70,145,0.06);
}

.check-list li:last-child { border-bottom: none; }

.check-list li .material-icons-round {
  font-size: 1.1rem;
  color: var(--skal-light-blue);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* Number grid */
.number-grid { display: grid; gap: 0.9rem; }

.number-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 1.25rem;
  background: var(--bg-section-alt);
  border-radius: 0.75rem;
  transition: background var(--transition);
}

.number-item:hover { background: rgba(49,70,145,0.1); }

.number-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem; font-weight: 800;
  color: var(--skal-light-blue); line-height: 1;
  min-width: 1.5rem;
}

/* ================================================================
   TABLE
   ================================================================ */
.skal-table { width: 100%; border-collapse: collapse; }

.skal-table thead th {
  background: var(--skal-blue);
  color: rgba(255,255,255,0.82);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 0.65rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.9rem 1.3rem; text-align: left;
}

.skal-table tbody tr { border-bottom: 1px solid rgba(49,70,145,0.07); transition: background var(--transition); }
.skal-table tbody tr:last-child { border-bottom: none; }
.skal-table tbody tr:hover { background: var(--bg-section-alt); }

.skal-table tbody td { font-family: 'Montserrat', sans-serif; font-size: 1rem; padding: 1rem 1.3rem; color: var(--text-muted); }
.skal-table tbody td:first-child { font-weight: 700; color: var(--text-main); }

/* ================================================================
   CTA BAND — lighter sky gradient, not dark navy
   ================================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--skal-blue) 0%, #1a6cbb 50%, var(--skal-light-blue) 100%);
  border-radius: var(--radius-card);
  padding: 3.75rem 2.75rem;
  position: relative; overflow: hidden;
}

.cta-band::before {
  content: ''; position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.cta-band::after {
  content: ''; position: absolute;
  bottom: -80px; right: 130px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(112,219,243,0.06);
  border: 1px solid rgba(112,219,243,0.1);
}

.cta-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: #fff; line-height: 1.2;
  letter-spacing: -0.025em;
}

/* ================================================================
   BENEFIT ITEMS (Join page)
   ================================================================ */
.benefit-item {
  display: flex; gap: 1.1rem; align-items: flex-start;
  padding: 1.1rem;
  background: var(--bg-section-alt);
  border-radius: 0.75rem;
  transition: background var(--transition);
}

.benefit-item:hover { background: rgba(49,70,145,0.1); }

.benefit-icon {
  width: 2.75rem; height: 2.75rem;
  background: var(--skal-blue);
  border-radius: 0.6rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.benefit-icon .material-icons-round { font-size: 1.25rem; color: #fff; }

/* ================================================================
   FOOTER — world map bg image, light on dark
   ================================================================ */
.site-footer {
  position: relative;
  overflow: hidden;
  color: rgba(255,255,255,0.75);
}

/* Background image layer */
.footer-bg {
  position: absolute; inset: 0;
  background-image: url('https://skal.org/theme_impacto/static/src/img/footer_bg_skal.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Overlay on top of bg — brand gradient, semi-transparent */
.footer-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(49,70,145,0.93) 0%,
    rgba(30,50,110,0.88) 50%,
    rgba(20,40,90,0.92) 100%
  );
}

.footer-inner {
  position: relative;
  z-index: 1;
}

/* Footer logo clear space */
.footer-logo-wrap {
  margin-bottom: 1.5rem;
  /* Clear space = ½ logo height (56px) = 28px */
  padding: 1.75rem 0 1.75rem 0;
}

.footer-logo-wrap img {
  height: 56px;          /* same as nav logo */
  min-width: 248px;
  width: auto;
  object-fit: contain;
  object-position: left center;
}


/* Footer main logo — same scale as nav logo with clear space */
.footer-main-logo {
  height: 56px;
  min-width: 248px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  display: block;
}
.footer-tagline {
  font-family: 'Montserrat', sans-serif;
  font-style: italic; font-weight: 300;
  font-size: 1rem;
  color: var(--skal-cyan);
  letter-spacing: 0.01em;
}

.footer-section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255,255,255,0.42); margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(112,219,243,0.2);
}

.footer-link {
  display: block; font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem; font-weight: 400;
  color: rgba(255,255,255,0.62);
  transition: color var(--transition); padding: 0.25rem 0;
}

.footer-link:hover { color: var(--skal-cyan); }

/* SNS buttons */
.footer-sns { display: flex; gap: 0.75rem; margin-top: 1.25rem; }

.footer-sns-btn {
  width: 2.4rem; height: 2.4rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  color: rgba(255,255,255,0.65);
  text-decoration: none;
}

.footer-sns-btn:hover {
  background: var(--skal-light-blue);
  border-color: var(--skal-cyan);
  color: #fff;
}

.footer-sns-btn .material-icons-round { font-size: 1.1rem; }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem; font-weight: 400;
  color: rgba(255,255,255,0.35);
  position: relative; z-index: 1;
}

/* ================================================================
   CONTACT CARDS
   ================================================================ */
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 2rem; text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}

.contact-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }

.contact-card-icon {
  width: 3.5rem; height: 3.5rem;
  background: linear-gradient(135deg, var(--skal-blue-pale), rgba(101,168,222,0.18));
  border: 1px solid rgba(49,70,145,0.14);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}

.contact-card-icon .material-icons-round { font-size: 1.5rem; color: var(--skal-blue); }

/* ================================================================
   FADE-IN ANIMATION
   ================================================================ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.12s; }
.fade-up-delay-2 { transition-delay: 0.24s; }
.fade-up-delay-3 { transition-delay: 0.36s; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) { .hero-section { min-height: 80vh; } }
@media (max-width: 640px) {
  .hero-section { min-height: 72vh; padding: 5rem 0; }
  .section-pad  { padding: 3.5rem 0; }
  .cta-band     { padding: 2.5rem 1.5rem; }
  .nav-logo-sep { display: none; }
}

/* ================================================================
   APPLY ONLINE — Standalone hero CTA (join.html)
   ================================================================ */

.apply-cta-section {
  margin-top: 3rem;
}

/* Thick decorative top rule using brand gradient */
.apply-cta-rule {
  height: 4px;
  background: linear-gradient(90deg, var(--skal-blue) 0%, var(--skal-light-blue) 61%, var(--skal-cyan) 100%);
  border-radius: 2px;
  margin-bottom: 2.5rem;
}

/* Main card — white, elevated, centred content */
.apply-cta-card {
  background: #fff;
  border: 1px solid rgba(49,70,145,0.1);
  border-radius: 1.5rem;
  box-shadow:
    0 0 0 4px rgba(49,70,145,0.05),
    0 20px 60px rgba(49,70,145,0.12),
    0 4px 12px rgba(49,70,145,0.06);
  padding: 3.5rem 2.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle background pattern */
.apply-cta-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(49,70,145,0.04), rgba(101,168,222,0.08));
  pointer-events: none;
}

.apply-cta-card::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(112,219,243,0.04), transparent);
  pointer-events: none;
}

/* Large icon badge */
.apply-cta-icon {
  width: 5rem; height: 5rem;
  background: linear-gradient(135deg, var(--skal-blue) 0%, var(--skal-light-blue) 100%);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  box-shadow: 0 8px 24px rgba(49,70,145,0.28);
}

.apply-cta-icon .material-icons-round {
  font-size: 2.2rem;
  color: #fff;
}

/* Headline */
.apply-cta-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Sub-description */
.apply-cta-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2.25rem;
}

/* THE button — large, unmissable */
.apply-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(90deg, var(--skal-blue) 0%, var(--skal-light-blue) 100%);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1.1rem 3rem;
  border-radius: 999px;
  transition: all 0.25s ease;
  box-shadow: 0 6px 24px rgba(49,70,145,0.35);
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.apply-cta-btn:hover {
  background: linear-gradient(90deg, #263a80 0%, var(--skal-blue) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(49,70,145,0.42);
}

.apply-cta-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 16px rgba(49,70,145,0.3);
}

.apply-cta-btn-icon {
  font-size: 1.1rem;
}

/* Helper note under the button */
.apply-cta-note {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-light);
  margin-top: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

/* Secondary contact row */
.apply-secondary-row {
  margin-top: 2rem;
  padding: 1.75rem 2rem;
  background: var(--bg-section-alt);
  border: 1px solid var(--border-subtle);
  border-radius: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
}

.apply-secondary-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
}

.apply-secondary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex: 1;
}

.apply-secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--skal-blue);
  border: 1.5px solid rgba(49,70,145,0.25);
  background: #fff;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.apply-secondary-btn .material-icons-round {
  font-size: 1rem;
  color: var(--skal-light-blue);
}

.apply-secondary-btn:hover {
  background: var(--skal-blue);
  color: #fff;
  border-color: var(--skal-blue);
  box-shadow: 0 4px 14px rgba(49,70,145,0.2);
}

.apply-secondary-btn:hover .material-icons-round {
  color: rgba(255,255,255,0.8);
}

@media (max-width: 640px) {
  .apply-cta-card { padding: 2.5rem 1.5rem 2rem; }
  .apply-cta-btn  { font-size: 0.9rem; padding: 1rem 2rem; }
  .apply-secondary-row { flex-direction: column; align-items: flex-start; }
}

/* ================================================================
   EVENT TYPE CARDS (events.html)
   ================================================================ */
.event-type-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.event-type-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.event-type-icon {
  width: 3.5rem; height: 3.5rem;
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.event-type-icon .material-icons-round { font-size: 1.75rem; color: #fff; }

.event-type-badge {
  display: inline-flex;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  width: fit-content;
}

.event-badge-regular   { background: rgba(49,70,145,0.1);  color: var(--skal-blue); }
.event-badge-annual    { background: rgba(192,57,43,0.1);   color: #c0392b; }
.event-badge-intl      { background: rgba(39,174,96,0.1);   color: #27ae60; }
.event-badge-programme { background: rgba(142,68,173,0.1);  color: #8e44ad; }

.event-type-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--text-main); line-height: 1.3;
}

.event-type-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem; font-weight: 300;
  line-height: 1.75; color: var(--text-muted);
  flex: 1;
}

.event-type-freq {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem; font-weight: 500;
  color: var(--text-light);
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.75rem;
  margin-top: auto;
}

.event-type-freq .material-icons-round { font-size: 0.95rem; color: var(--skal-light-blue); }

/* Calendar dot legend */
.event-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.event-dot-regular   { background: var(--skal-blue); }
.event-dot-xmas      { background: #c0392b; }
.event-dot-intl      { background: #27ae60; }
.event-dot-programme { background: #8e44ad; }

/* ================================================================
   TWINNING (about.html)
   ================================================================ */
.twinning-cities {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-section-alt);
  border-radius: 1rem;
  border: 1px solid var(--border-subtle);
}

.twinning-city {
  text-align: center;
  flex: 1;
}

.twinning-city .material-icons-round {
  font-size: 2rem;
  color: var(--skal-light-blue);
  display: block;
  margin-bottom: 0.4rem;
}

.twinning-city-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem; font-weight: 800;
  color: var(--text-main);
}

.twinning-city-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; font-weight: 400;
  color: var(--text-light);
  margin-top: 0.2rem;
}

.twinning-connector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.twinning-line {
  width: 2rem; height: 1.5px;
  background: var(--skal-light-blue);
  opacity: 0.6;
}

.twinning-heart {
  font-size: 1.25rem !important;
  color: #e74c3c !important;
}

/* ================================================================
   VALUES PAGE — Mission / Vision cards
   ================================================================ */
.values-mv-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 2.5rem;
  transition: box-shadow var(--transition);
}

.values-mv-card:hover { box-shadow: var(--shadow-hover); }

.values-mv-icon {
  width: 3.5rem; height: 3.5rem;
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(49,70,145,0.2);
}

.values-mv-icon .material-icons-round { font-size: 1.75rem; color: #fff; }

.values-mv-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--text-main); margin-bottom: 0.4rem;
}

.values-mv-rule {
  width: 2.5rem; height: 3px;
  background: var(--skal-light-blue);
  border-radius: 2px;
  margin: 0.9rem 0 1.4rem;
}

.values-mv-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.0625rem; font-weight: 300;
  line-height: 1.85; color: var(--text-muted);
  border-left: 3px solid var(--skal-light-blue);
  padding-left: 1.25rem;
  margin: 0;
  font-style: italic;
}

.values-vision-text {
  font-size: 1.2rem; font-weight: 500;
  color: var(--skal-blue);
  font-style: normal;
  border-left-color: var(--skal-cyan);
}

/* ================================================================
   TOAST CARD
   ================================================================ */
.toast-card {
  background: var(--skal-blue);
  border-radius: 1.5rem;
  padding: 2.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  box-shadow: 0 16px 48px rgba(49,70,145,0.28);
}

.toast-glass-icon {
  width: 3.5rem; height: 3.5rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.toast-glass-icon .material-icons-round {
  font-size: 1.75rem;
  color: var(--skal-cyan);
}

.toast-lines { flex: 1; }

.toast-line {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  line-height: 2;
  margin: 0;
}

.toast-line-main {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--skal-cyan);
  margin-bottom: 0.5rem;
}

.toast-line-skal {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

/* ================================================================
   HYMN CARD
   ================================================================ */
.hymn-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-hover);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.hymn-note-deco {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 6rem;
  color: rgba(49,70,145,0.05);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.hymn-verse {
  position: relative;
  padding-left: 1.75rem;
  border-left: 3px solid var(--skal-light-blue);
}

.hymn-verse-num {
  position: absolute;
  top: 0; left: -1.1rem;
  width: 2rem; height: 2rem;
  background: var(--skal-blue);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem; font-weight: 800;
}

.hymn-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.0625rem;
  font-weight: 300;
  font-style: italic;
  line-height: 2;
  color: var(--text-muted);
  white-space: pre-wrap;
  margin: 0;
}

.hymn-footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  text-align: center;
}

.hymn-footer-rule {
  width: 6rem; height: 2px;
  background: linear-gradient(90deg, var(--skal-blue), var(--skal-light-blue));
  border-radius: 2px;
  margin: 0 auto 1rem;
}

.hymn-footer-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-light);
}

@media (max-width: 640px) {
  .toast-card { flex-direction: column; }
  .hymn-card  { padding: 2rem 1.5rem; }
  .twinning-cities { flex-direction: column; gap: 0.75rem; }
  .twinning-connector { flex-direction: row; justify-content: center; }
  .twinning-line { width: 3rem; }
}

/* ================================================================
   STATS BAND — accent items for Taichung-specific stats
   ================================================================ */
.stat-item-accent .stat-number {
  color: var(--skal-yellow);   /* happy yellow — distinguishes club stats */
}

.stat-item-accent .stat-label {
  color: rgba(255,255,255,0.65);
}

/* Divider on 6-column layout */
@media (min-width: 1024px) {
  .stats-band .grid > div:nth-child(4) {
    border-right: 1px solid rgba(255,255,255,0.2);
  }
}

/* ================================================================
   EVENTS PAGE — special row + badge pills
   ================================================================ */
.events-row-special {
  background: linear-gradient(90deg, rgba(192,57,43,0.04), rgba(231,76,60,0.06)) !important;
}

.events-row-special td:first-child {
  font-weight: 700;
  color: #c0392b !important;
}

.event-badge-pill {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 0.5rem;
}

.event-badge-regular  { background: rgba(49,70,145,0.1);  color: var(--skal-blue); }
.event-badge-annual   { background: rgba(192,57,43,0.1);  color: #c0392b; }
.event-badge-intl     { background: rgba(39,174,96,0.1);  color: #27ae60; }
.event-badge-programme{ background: rgba(142,68,173,0.1); color: #8e44ad; }

/* ================================================================
   SKÅL VALUES — Mission, Vision, Toast, Hymn
   ================================================================ */

/* Mission / Vision cards */
.values-mv-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-card);
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition);
}

.values-mv-card:hover { box-shadow: var(--shadow-hover); }

.values-mv-icon {
  width: 3rem; height: 3rem;
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.values-mv-icon .material-icons-round { font-size: 1.4rem; color: #fff; }

.values-mv-quote {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  color: var(--text-main);
  margin: 0.75rem 0 0;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--skal-light-blue);
  background: var(--bg-section-alt);
  border-radius: 0 0.5rem 0.5rem 0;
  font-style: normal;
}

.values-mv-vision {
  border-left-color: var(--skal-cyan);
}

/* Toast & Hymn ritual cards */
.values-ritual-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--border-card);
  border-top: 3px solid var(--ritual-color, var(--skal-blue));
  box-shadow: var(--shadow-card);
  padding: 2rem 2.25rem;
  transition: box-shadow var(--transition);
}

.values-ritual-card:hover { box-shadow: var(--shadow-hover); }

.values-ritual-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.values-ritual-icon {
  font-size: 1.75rem !important;
  color: var(--ritual-color, var(--skal-blue));
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.values-ritual-intro {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0.25rem 0 0;
}

/* SKÅL Toast lines */
.values-toast-lines {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-section-alt);
  border-radius: 0.75rem;
}

.values-toast-line {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--skal-blue);
  letter-spacing: 0.01em;
}

.values-toast-line-sm {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-main);
  padding-left: 1rem;
}

.values-toast-finale {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--skal-blue);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.4rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-subtle);
}

/* SKÅL Hymn verses */
.values-hymn-verses {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.values-hymn-verse {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.9;
  color: var(--text-main);
  padding: 1rem 1.25rem;
  background: var(--bg-section-alt);
  border-radius: 0.6rem;
  border-left: 3px solid var(--skal-light-blue);
  white-space: pre-line;
  margin: 0;
  font-style: italic;
}

/* ================================================================
   CLUB STAT CHIPS (about.html)
   ================================================================ */
.club-stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  padding: 0.5rem 1.1rem 0.5rem 0.75rem;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
}

.club-stat-chip:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.club-stat-chip > .material-icons-round {
  font-size: 1.25rem;
  color: var(--skal-light-blue);
  flex-shrink: 0;
}

.club-stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--skal-blue);
  line-height: 1.1;
}

.club-stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ================================================================
   CALENDAR ROW HIGHLIGHTS
   ================================================================ */
.event-row-highlight td {
  background: rgba(185,28,28,0.05) !important;
  font-weight: 600 !important;
  color: #b91c1c !important;
}

.event-row-intl td {
  background: rgba(21,128,61,0.05) !important;
  font-weight: 600 !important;
  color: #15803d !important;
}

.event-row-annual td {
  background: rgba(126,34,206,0.05) !important;
  font-weight: 600 !important;
  color: #7e22ce !important;
}

/* Secondary button — blue outline on white background */
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1.5px solid rgba(49,70,145,0.35);
  color: var(--skal-blue);
  background: transparent;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.82rem 1.9rem;
  border-radius: 999px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-secondary:hover {
  background: var(--skal-blue);
  color: #fff;
  border-color: var(--skal-blue);
}

/* ================================================================
   ENHANCEMENT ADDITIONS
   ================================================================ */

/* Hero title smaller variant — for homepage short tagline */
.hero-title-sm {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.12;
  white-space: pre-line; /* allows \n line breaks from i18n */
}

/* ── Events: month pill grid ── */
.event-month-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.5rem;
  border-radius: 0.6rem;
  background: var(--bg-section-alt);
  border: 1px solid var(--border-subtle);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--skal-blue);
  text-align: center;
  transition: background var(--transition), color var(--transition);
}

.event-month-pill:hover {
  background: rgba(49,70,145,0.1);
}

/* ── Events: special event cards ── */
.event-special-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.event-special-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.event-special-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.event-special-icon .material-icons-round {
  font-size: 1.4rem;
  color: #fff;
}

.event-special-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.event-special-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1rem;
  flex: 1;
}

.event-special-when {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
}

.event-special-when .material-icons-round {
  font-size: 0.9rem;
}

/* ── Twinning Carousel ── */
.twinning-carousel {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.twinning-carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}

.twinning-slide {
  min-width: 100%;
  position: relative;
}

.twinning-slide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.twinning-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(transparent, rgba(10,45,78,0.75));
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.twinning-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--bg-section-alt);
  border-top: 1px solid var(--border-subtle);
}

.twinning-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}

.twinning-btn:hover {
  background: var(--skal-blue);
  border-color: var(--skal-blue);
  color: #fff;
}

.twinning-btn .material-icons-round {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.twinning-btn:hover .material-icons-round { color: #fff; }

.twinning-dots { display: flex; gap: 0.4rem; }

.twinning-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-subtle);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.twinning-dot.active {
  background: var(--skal-blue);
  transform: scale(1.3);
}

/* ── Contact Form ── */
.contact-form-wrap {
  margin-top: 1rem;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

/* ── Leadership 2026 plan badges ── */
.plan-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Twinning Image Slideshow ── */
.twinning-slideshow {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--bg-section-alt);
  aspect-ratio: 4/3;
  min-height: 260px;
}

.twinning-slideshow-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}

.twinning-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.twinning-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Placeholder slide for empty slots */
.twinning-slide-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--bg-section-alt), rgba(49,70,145,0.08));
  color: var(--text-light);
}

.twinning-slide-placeholder .material-icons-round {
  font-size: 3rem;
  opacity: 0.3;
}

.twinning-slide-placeholder p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.5;
  text-align: center;
  padding: 0 1rem;
}

/* Dot indicators */
.twinning-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 10;
}

.twinning-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  padding: 0;
}

.twinning-dot.active {
  background: #fff;
  width: 18px;
  border-radius: 3px;
}

/* Prev / Next arrows */
.twinning-prev,
.twinning-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.twinning-prev { left: 0.6rem; }
.twinning-next { right: 0.6rem; }

.twinning-prev:hover,
.twinning-next:hover { background: #fff; }

.twinning-prev .material-icons-round,
.twinning-next .material-icons-round {
  font-size: 1.1rem;
  color: var(--skal-blue);
}

/* Caption overlay */
.twinning-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1rem 2.2rem;
  background: linear-gradient(transparent, rgba(10,30,70,0.65));
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  text-align: center;
  pointer-events: none;
}

/* Contact form embed */
.contact-form-wrap {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--border-card);
}

/* ── RWD: prevent horizontal overflow ── */
main { overflow-x: hidden; }

.section-pad,
.section-pad-sm { overflow-x: hidden; }

/* Ensure pill grid wraps properly on very small screens */
@media (max-width: 380px) {
  .event-month-pill {
    font-size: 0.7rem;
    padding: 0.4rem 0.3rem;
  }
  .twinning-slideshow {
    aspect-ratio: 3/2;
    min-height: 200px;
  }
}

/* Contact form responsive */
@media (max-width: 640px) {
  .contact-form-wrap iframe {
    height: 520px;
  }
}


/* Event month pill — mobile overflow protection */
.event-month-pill {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}


[lang="zh-Hant"] body {
  font-family: 'Noto Sans TC', 'Montserrat', system-ui, sans-serif;
}

/* Chinese body text: Noto Sans TC for better readability */
[lang="zh-Hant"] p,
[lang="zh-Hant"] .section-desc,
[lang="zh-Hant"] .photo-card-desc,
[lang="zh-Hant"] .event-type-desc,
[lang="zh-Hant"] .feature-text,
[lang="zh-Hant"] .check-list li span,
[lang="zh-Hant"] .values-mv-quote,
[lang="zh-Hant"] .values-ritual-intro,
[lang="zh-Hant"] .values-hymn-verse {
  font-family: 'Noto Sans TC', system-ui, sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.9;
}

/* Headings always Montserrat regardless of lang */
h1, h2, h3, h4,
.section-title,
.content-card-title,
.hero-title,
.page-banner-title,
.stat-number,
.footer-tagline,
.nav-link,
.btn-primary,
.btn-secondary,
.section-label {
  font-family: 'Montserrat', system-ui, sans-serif !important;
}

/* ════════════════════════════════════════════════
   DESIGN SYSTEM UTILITY CLASSES  (Fix 6)
   Replace repetitive inline styles across pages
   ════════════════════════════════════════════════ */

/* Icon accent containers */
.icon-accent-blue {
  width: 3rem; height: 3rem; border-radius: 0.75rem; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--skal-blue), var(--skal-light-blue));
  color: #fff;
}
.icon-accent-cyan {
  width: 3rem; height: 3rem; border-radius: 0.75rem; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0891b2, var(--skal-cyan));
  color: #fff;
}
.icon-accent-lg {
  width: 3.25rem; height: 3.25rem; border-radius: 0.875rem;
}

/* Section gradient backgrounds */
.section-gradient-light {
  background: linear-gradient(180deg, var(--bg-section-alt) 0%, var(--bg-page) 100%);
}
.section-gradient-dark {
  background: linear-gradient(135deg, var(--skal-blue) 0%, #1e3070 100%);
}

/* Status / planning badge */
.status-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  border-radius: 0.75rem; padding: 0.5rem 0.875rem;
  font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-weight: 500;
  border: 1px dashed;
}
.status-badge-blue {
  background: rgba(101,168,222,0.08);
  border-color: rgba(101,168,222,0.35);
  color: var(--text-muted);
}
.status-badge-cyan {
  background: rgba(112,219,243,0.08);
  border-color: rgba(112,219,243,0.35);
  color: var(--text-muted);
}
.status-badge .material-icons-round {
  font-size: 1.1rem; color: var(--skal-light-blue);
}

/* Card featured — top accent border */
.card-featured-blue  { border-top: 4px solid var(--skal-light-blue); }
.card-featured-cyan  { border-top: 4px solid var(--skal-cyan); }
.card-featured-red   { border-top: 4px solid #dc2626; }
.card-featured-green { border-top: 4px solid #15803d; }

/* Inline init badge (planning status pills inside card header) */
.initiative-badge {
  display: inline-block; font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.2rem 0.6rem; border-radius: 999px; margin-bottom: 0.2rem;
}
.initiative-badge-blue { background: rgba(101,168,222,0.15); color: var(--skal-blue); }
.initiative-badge-cyan { background: rgba(112,219,243,0.15); color: #0891b2; }

/* Club stat chip — consistent sizing */
.club-stat-chip {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.75rem 1rem; border-radius: 0.875rem;
  border: 1px solid var(--border-card);
  background: var(--bg-card);
  font-family: 'Montserrat', sans-serif;
  transition: box-shadow var(--transition);
}
.club-stat-chip:hover { box-shadow: var(--shadow-card); }
.club-stat-chip .material-icons-round { color: var(--skal-blue); font-size: 1.4rem; }
.club-stat-number { font-size: 1.15rem; font-weight: 800; color: var(--text-main); line-height: 1.2; }
.club-stat-label  { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em;
                    text-transform: uppercase; color: var(--text-muted); }

/* Page banner — unified height across all inner pages */
.page-banner {
  min-height: 280px !important;
}
@media (min-width: 768px) {
  .page-banner { min-height: 320px !important; }
}

/* CTA band — consistent appearance */
.cta-band {
  position: relative; overflow: hidden;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, var(--skal-blue) 0%, #1e2d7a 100%);
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 60px rgba(49,70,145,0.3);
}
.cta-band::before {
  content: ''; position: absolute; top: -40%; right: -10%;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(112,219,243,0.07); pointer-events: none;
}
.cta-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800; color: #fff; line-height: 1.3;
}

/* ════════════════════════════════════════════════
   2026 CALENDAR COMPONENT
   ════════════════════════════════════════════════ */

.cal-month-card {
  border-radius: 0.875rem;
  border: 1.5px solid var(--border-card);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  background: var(--bg-card);
}
.cal-month-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }

.cal-month-header {
  background: var(--skal-blue);
  color: #fff;
  padding: 0.6rem 0.75rem 0.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.1rem;
}
.cal-month-name {
  font-family: 'Montserrat', sans-serif; font-size: 0.65rem;
  font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0.85;
}
.cal-month-date {
  font-family: 'Montserrat', sans-serif; font-size: 1.5rem;
  font-weight: 900; line-height: 1.1;
}
.cal-month-week {
  font-family: 'Montserrat', sans-serif; font-size: 0.58rem;
  font-weight: 500; opacity: 0.7; letter-spacing: 0.05em;
}
.cal-month-body {
  padding: 0.6rem 0.75rem 0.7rem;
  min-height: 3.5rem;
}
.cal-event-name {
  font-family: 'Montserrat', sans-serif; font-size: 0.72rem;
  font-weight: 700; color: var(--text-main); line-height: 1.3; margin-bottom: 0.2rem;
}
.cal-event-sub {
  font-family: 'Noto Sans TC', 'Montserrat', sans-serif; font-size: 0.68rem;
  font-weight: 400; color: var(--text-muted); line-height: 1.4;
}

/* State variants */
.cal-past .cal-month-header { background: #94a3b8; }
.cal-past { opacity: 0.65; }

.cal-off .cal-month-header { background: #cbd5e1; }
.cal-off { opacity: 0.6; }

.cal-highlight .cal-month-header { background: linear-gradient(135deg, #0891b2, var(--skal-cyan)); }
.cal-highlight { border-color: var(--skal-cyan); }

.cal-xmas .cal-month-header { background: linear-gradient(135deg, #b91c1c, #ef4444); }
.cal-xmas { border-color: #dc2626; }

/* ── International Event Cards ── */
.intl-event-card {
  border-radius: 0.875rem; border: 1.5px solid var(--border-card);
  background: var(--bg-card); padding: 1rem 1.1rem;
  transition: box-shadow var(--transition);
}
.intl-event-card:hover { box-shadow: var(--shadow-hover); }
.intl-event-card-featured {
  border-color: #22c55e;
  background: rgba(21,128,61,0.04);
}
.intl-event-date {
  font-family: 'Montserrat', sans-serif; font-size: 0.7rem;
  font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--skal-blue); margin-bottom: 0.5rem;
}
.intl-event-card-featured .intl-event-date { color: #15803d; }
.intl-event-name {
  font-family: 'Montserrat', sans-serif; font-size: 0.85rem;
  font-weight: 700; color: var(--text-main); line-height: 1.4; margin-bottom: 0.5rem;
}
.intl-event-location {
  display: flex; align-items: flex-start; gap: 0.3rem;
  font-family: 'Noto Sans TC', 'Montserrat', sans-serif;
  font-size: 0.75rem; color: var(--text-muted); line-height: 1.4;
}
.intl-event-location .material-icons-round { font-size: 0.85rem; color: var(--skal-light-blue); flex-shrink: 0; margin-top: 0.05rem; }
.intl-event-note {
  font-family: 'Montserrat', sans-serif; font-size: 0.65rem;
  color: var(--text-light); margin-top: 0.3rem; font-style: italic;
}

/* ── Twinning Photo Gallery ── */
.twinning-gallery { width: 100%; }
.twinning-gallery-main {
  position: relative; border-radius: 1rem; overflow: hidden;
  aspect-ratio: 16/7; background: var(--bg-section-alt); margin-bottom: 0.75rem;
  cursor: pointer;
}
.twinning-gallery-main img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.twinning-gallery-main:hover img { transform: scale(1.02); }
.twinning-gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: #fff; padding: 1.5rem 1.25rem 1rem;
  font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.03em;
}
.twinning-gallery-thumbs {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.5rem;
}
@media (max-width: 640px) {
  .twinning-gallery-thumbs { grid-template-columns: repeat(3, 1fr); }
  .twinning-gallery-main { aspect-ratio: 4/3; }
}
.twinning-thumb {
  border-radius: 0.5rem; overflow: hidden; cursor: pointer;
  aspect-ratio: 4/3; border: 2.5px solid transparent;
  transition: border-color var(--transition), opacity var(--transition);
  opacity: 0.7;
}
.twinning-thumb img { width: 100%; height: 100%; object-fit: cover; }
.twinning-thumb:hover { opacity: 0.95; border-color: var(--skal-light-blue); }
.twinning-thumb.active { border-color: var(--skal-blue); opacity: 1; }
.twinning-thumb-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--bg-section-alt); gap: 0.25rem;
  font-family: 'Montserrat', sans-serif; font-size: 0.6rem;
  font-weight: 600; color: var(--text-light); text-transform: uppercase;
  letter-spacing: 0.08em;
}
.twinning-thumb-placeholder .material-icons-round { font-size: 1.5rem; color: var(--text-light); }

/* ── Language-aware typography ── */
/* Latin / English: Montserrat-led */
[lang="en"] body,
[lang="en"] p,
[lang="en"] li,
[lang="en"] blockquote {
  font-family: var(--font-ui);
}

/* Chinese / Traditional: Noto Sans TC-led */
[lang="zh-Hant"] body,
[lang="zh-Hant"] p,
[lang="zh-Hant"] li,
[lang="zh-Hant"] blockquote,
[lang="zh-Hant"] .section-desc,
[lang="zh-Hant"] .photo-card-desc,
[lang="zh-Hant"] .event-type-desc,
[lang="zh-Hant"] .feature-text,
[lang="zh-Hant"] .check-list li span {
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  line-height: 1.9;
}

/* Headings + UI elements: always Montserrat */
h1, h2, h3, h4,
.section-title, .content-card-title, .hero-title, .page-banner-title,
.stat-number, .footer-tagline, .nav-link, .btn-primary, .btn-secondary,
.btn-gold, .btn-outline-white, .btn-outline-light,
.section-label, .footer-section-label, .hero-badge,
.page-banner-badge, .photo-card-tag, .photo-card-title,
.event-type-title, .cta-title, .apply-cta-headline,
.stat-label, .cal-month-name, .cal-month-date, .intl-event-date {
  font-family: var(--font-heading) !important;
}

/* ── Calendar Year Tabs ── */
.cal-year-tabs-wrap {
  margin-bottom: 1.5rem;
}
.cal-year-tabs {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0;
  border-bottom: 2px solid var(--border-subtle);
  padding-bottom: 0;
}
.cal-year-tab {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.55rem 1.25rem;
  border-radius: 0.5rem 0.5rem 0 0;
  border: 1.5px solid transparent;
  border-bottom: none;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: -2px;
}
.cal-year-tab:hover {
  color: var(--skal-blue);
  background: var(--bg-section-alt);
}
.cal-year-tab.active {
  color: var(--skal-blue);
  background: var(--bg-card);
  border-color: var(--border-subtle);
  border-bottom-color: var(--bg-card);
}
.cal-year-panel {
  border: 1.5px solid var(--border-subtle);
  border-radius: 0 0.875rem 0.875rem 0.875rem;
  overflow: hidden;
}
.cal-year-panel.hidden { display: none; }
.cal-year-panel.cal-panel-hidden { display: none !important; }
.cal-year-panel > .content-card {
  border-radius: 0;
  border: none;
  box-shadow: none;
}

/* ── President Profile Circle ── */
.president-circle-wrap {
  width: 7.5rem; height: 7.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(112,219,243,0.6);
  box-shadow: 0 0 0 5px rgba(255,255,255,0.12);
  position: relative;
  flex-shrink: 0;
}
.president-circle-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.president-circle-fallback {
  display: none;
  width: 100%; height: 100%;
  align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 900; color: #fff;
  background: rgba(255,255,255,0.15);
  font-family: var(--font-heading);
}

/* ── Activity Type Cards — Slim variant ── */
.event-type-card-slim {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  border: 1.5px solid var(--border-card);
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.75rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.event-type-card-slim:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }

.event-type-icon-sm {
  width: 2.75rem; height: 2.75rem;
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.event-type-icon-sm .material-icons-round { color: #fff; font-size: 1.35rem; }

.event-type-desc-sm {
  font-size: 0.82rem; font-weight: 300; color: var(--text-muted);
  line-height: 1.65; margin: 0;
}

/* ════════════════════════════════════════════════
   EVENTS — Infinite Photo Marquee
   ════════════════════════════════════════════════ */

.events-marquee-wrap {
  overflow: hidden;
  /* Fade left/right edges within the card */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
}

.events-marquee-wrap:hover .events-marquee-track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .events-marquee-track { animation: none; }
}

.events-marquee-track {
  display: flex;
  gap: 0.875rem;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}

.events-marquee-item {
  flex-shrink: 0;
  width: 300px;
  height: 210px;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.events-marquee-item:hover {
  transform: scale(1.04) translateY(-3px);
  box-shadow: 0 12px 32px rgba(49,70,145,0.18);
}

.events-marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 640px) {
  .events-marquee-item {
    width: 220px;
    height: 155px;
  }
  .events-marquee-track {
    animation-duration: 22s;
  }
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================================
   TYPOGRAPHY SCALE-UP  ×1.5
   Strategy: body base stays at 1rem (16px) to keep rem-cascade
   stable. Each text class is individually scaled ×1.5.
   NAV / LANG-TOGGLE / BUTTONS are intentionally excluded —
   they are constrained UI elements whose proportions must hold.
   ================================================================ */

/* ── Hero ── */
.hero-subtitle     { font-size: 1.688rem; }   /* 1.125 × 1.5 */
.hero-badge        { font-size: 0.975rem; }   /* 0.65  × 1.5 */

/* ── Section structure ── */
.section-label     { font-size: 0.93rem;  }   /* 0.62  × 1.5 */
.section-desc      { font-size: 1.2rem; }   /* 1.0625 × 1.n */

/* ── Page banner ── */
.page-banner-badge { font-size: 0.93rem;  }   /* 0.62  × 1.5 */
.page-banner-desc  { font-size: 1.594rem; }   /* 1.0625 × 1.5 */

/* ── Photo cards ── */
.photo-card-tag    { font-size: 0.9rem;   }   /* 0.6   × 1.5 */
.photo-card-desc   { font-size: 1.406rem; }   /* 0.9375 × 1.5 */

/* ── Split badge ── */
.split-img-badge   { font-size: 1.02rem;  }   /* 0.68  × 1.5 */

/* ── Feature list ── */
.feature-text      { font-size: 1.5rem;   }   /* 1.0   × 1.5 */

/* ── Content cards ── */
.content-card-title { font-size: 2.1rem;  }   /* 1.4   × 1.5 */

/* ── Check list ── */
.check-list li     { font-size: 1.5rem;   }   /* 1.0   × 1.5 */

/* ── Number grid ── */
.number-badge      { font-size: 1.95rem;  }   /* 1.3   × 1.5 */

/* ── Footer ── */
.footer-tagline    { font-size: 1.5rem;   }   /* 1.0   × 1.5 */
.footer-section-label { font-size: 0.9rem; }  /* 0.6   × 1.5 */
.footer-link       { font-size: 1.406rem; }   /* 0.9375 × 1.5 */
.footer-bottom     { font-size: 1.313rem; }   /* 0.875 × 1.5 */

/* ── Event type cards ── */
.event-type-desc   { font-size: 1.313rem; }   /* 0.875 × 1.5 */
.event-type-desc-sm { font-size: 1.23rem; }   /* 0.82  × 1.5 */
.event-badge-pill  { font-size: 0.93rem;  }   /* 0.62  × 1.5 */

/* ── Values: Mission / Vision ── */
.values-mv-quote   { font-size: 1.5rem;   }   /* 1.0   × 1.5 */

/* ── Values: Toast & Hymn ── */
.values-ritual-intro  { font-size: 1.313rem; } /* 0.875 × 1.5 */
.values-toast-line    { font-size: 1.575rem; } /* 1.05  × 1.5 */
.values-toast-line-sm { font-size: 1.406rem; } /* 0.9375 × 1.5 */
.values-hymn-verse    { font-size: 1.406rem; } /* 0.9375 × 1.5 */

/* ── Club stat chips ── */
.club-stat-number  { font-size: 1.725rem; }   /* 1.15  × 1.5 */
.club-stat-label   { font-size: 0.975rem; }   /* 0.65  × 1.5 */

/* ── Twinning ── */
.twinning-city-name { font-size: 1.5rem;  }   /* 1.0   × 1.5 */
.twinning-city-sub  { font-size: 1.08rem; }   /* 0.72  × 1.5 */

/* ── Calendar ── */
.cal-year-tab      { font-size: 1.17rem;  }   /* 0.78  × 1.5 */
.cal-month-name    { font-size: 0.975rem; }   /* 0.65  × 1.5 */
.cal-month-date    { font-size: 2.25rem;  }   /* 1.5   × 1.5 */
.cal-event-name    { font-size: 1.08rem;  }   /* 0.72  × 1.5 */
.cal-event-sub     { font-size: 1.02rem;  }   /* 0.68  × 1.5 */

/* ── International Events ── */
.intl-event-date   { font-size: 1.05rem;  }   /* 0.7   × 1.5 */
.intl-event-name   { font-size: 1.275rem; }   /* 0.85  × 1.5 */
.intl-event-location { font-size: 1.125rem; } /* 0.75  × 1.5 */
.intl-event-note   { font-size: 0.975rem; }   /* 0.65  × 1.5 */

/* ── Join page ── */
.apply-cta-sub     { font-size: 1.594rem; }   /* 1.0625 × 1.5 */
.apply-cta-note    { font-size: 1.2rem;   }   /* 0.8   × 1.5 */
.apply-secondary-label { font-size: 1.313rem; } /* 0.875 × 1.5 */
.apply-secondary-btn   { font-size: 1.313rem; } /* 0.875 × 1.5 */

/* ── Lang toggle — intentionally NOT scaled ──
   .lang-btn { font-size: 0.78rem } stays as-is.
   Scaling it breaks the pill container proportions.
   The toggle is a compact UI chrome, not body text. ── */
   
/* ================================================================
      MATERIAL ICONS — size scale-up + font protection
      Ensures icons are immune to lang-switch font override,
      and scales them to match the enlarged body text.
      ================================================================ */
   
   /* Protect icon font from any lang-based font-family override */
   .material-icons-round {
     font-family: 'Material Icons Round' !important;
     font-style: normal !important;
     font-weight: normal !important;
     display: inline-flex;
     align-items: center;
     line-height: 1;
     vertical-align: middle;
   }
   
   /* Feature list icons — align with scaled .feature-text (1.5rem) */
   .feature-icon .material-icons-round {
     font-size: 1.4rem;         /* keep original size, container already centres it */
   }
   
   /* Check list icons — align with scaled .check-list li (1.5rem) */
   .check-list li .material-icons-round {
     font-size: 1.5rem;
     margin-top: 0.1rem;
     flex-shrink: 0;
   }
   
   /* Content card generic icons */
   .content-card .material-icons-round:not(.feature-icon .material-icons-round) {
     vertical-align: middle;
   }
   
   /* Twinning cities icons */
   .twinning-city .material-icons-round {
     font-size: 2.25rem;        /* was 2rem, scale up */
   }
   
   /* Number grid */
   .number-item .material-icons-round {
     font-size: 1.5rem;
   }
   
   /* Cal / event icons */
   .intl-event-location .material-icons-round {
     font-size: 1.125rem;       /* 0.75 × 1.5 */
     margin-top: 0.1rem;
   }
   
   /* Event type card slim icons */
   .event-type-icon-sm .material-icons-round {
     font-size: 1.5rem;         /* was 1.35rem */
   }
   
   /* HOW TO ATTEND section icons */
   .icon-accent-blue .material-icons-round,
   .icon-accent-cyan .material-icons-round,
   .icon-accent-lg   .material-icons-round {
     font-size: 1.65rem;        /* was 1.5rem via inline */
   }