/* ============================================================
   Noris Toastmasters — style.css
   Colors: Loyal Blue #004165 | True Maroon #772432
           Cool Gray #A9B2B1  | Happy Yellow #F2DF74
   Fonts:  Montserrat (headings) | Source Sans 3 (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;1,400&display=swap');

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --blue:        #004165;
  --blue-dark:   #002d46;
  --blue-light:  #ddeaf3;
  --maroon:      #772432;
  --maroon-dark: #5a1a25;
  --gray:        #A9B2B1;
  --gray-light:  #eef0f0;
  --yellow:      #F2DF74;
  --yellow-dark: #d4c24c;
  --white:       #ffffff;
  --text:        #1a1a1a;
  --text-muted:  #5a5a5a;

  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Source Sans 3', 'Myriad Pro', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(0,65,101,0.10);
  --shadow-md: 0 6px 24px rgba(0,65,101,0.14);
  --shadow-lg: 0 16px 48px rgba(0,65,101,0.18);

  --max-w: 1120px;
  --section-gap: 96px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white);
       line-height: 1.65; -webkit-font-smoothing: antialiased; }
a  { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul  { list-style: none; }
[id] { scroll-margin-top: 80px; }

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

/* ── Typography helpers ─────────────────────────────────────── */
.section-label {
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--maroon); margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 40px); font-weight: 800;
  line-height: 1.15; color: var(--blue-dark); margin-bottom: 16px;
}
.section-title span { color: var(--maroon); }
.section-lead { font-size: 17px; color: var(--text-muted); max-width: 580px; line-height: 1.7; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-heading); font-size: 14px; font-weight: 700;
  padding: 13px 26px; border-radius: var(--radius-md);
  border: 2px solid transparent; cursor: pointer;
  transition: all 0.22s ease; white-space: nowrap; text-decoration: none;
}
.btn-yellow { background: var(--yellow); color: var(--blue-dark); border-color: var(--yellow); }
.btn-yellow:hover { background: var(--yellow-dark); border-color: var(--yellow-dark);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(242,223,116,0.5); }
.btn-blue { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-blue:hover { background: var(--blue-dark); border-color: var(--blue-dark);
  transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-outline-blue { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline-blue:hover { background: var(--blue); color: var(--white); }

/* ── Fade-in animations ─────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav { position: sticky; top: 0; z-index: 100; background: var(--white);
       border-bottom: 1px solid #e0e6ea; box-shadow: 0 2px 12px rgba(0,65,101,0.07); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }

/* Logo — img preferred, fallback to SVG+text */
.nav__logo { display: flex; align-items: center; gap: 0; }
.nav__logo-img { height: 70px; width: auto; display: block; }
.nav__logo-fallback { display: none; align-items: center; gap: 12px; }
.nav__logo-icon { width: 40px; height: 40px; background: var(--blue); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav__logo-icon svg { width: 22px; height: 22px; }
.nav__logo-name { font-family: var(--font-heading); font-size: 20px; font-weight: 800;
  color: var(--blue-dark); line-height: 1.1; }
.nav__logo-sub { font-size: 15px; color: var(--text-muted); }

.nav__links { display: flex; gap: 24px; }
.nav__links a { font-family: var(--font-heading); font-size: 13px; font-weight: 600;
  color: var(--text-muted); transition: color 0.2s; padding: 4px 0; position: relative; }
.nav__links a::after { content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--maroon); transition: width 0.22s; }
.nav__links a:hover { color: var(--blue); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__links a.active { color: var(--blue); }

.nav__actions { display: flex; align-items: center; gap: 10px; }

/* Meetup button — wordmark style */
.nav__meetup { display: flex; align-items: center; gap: 6px;
  font-family: var(--font-heading); font-size: 12px; font-weight: 700;
  color: #E63838; padding: 7px 12px; border: 1.5px solid #E63838;
  border-radius: var(--radius-sm); transition: all 0.2s; }
.nav__meetup:hover { background: #E63838; color: var(--white); }
.nav__meetup svg { flex-shrink: 0; }

/* Visit us — slim ghost button to match nav height */
.nav__visit {
  font-family: var(--font-heading); font-size: 12px; font-weight: 700;
  color: var(--blue); padding: 7px 14px;
  border: 1.5px solid var(--blue); border-radius: var(--radius-sm);
  transition: all 0.2s; white-space: nowrap; text-decoration: none;
}
.nav__visit:hover { background: var(--blue); color: var(--white); }

.hamburger { display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px;
  background: var(--blue); border-radius: 2px; transition: all 0.25s; }

.mobile-menu { display: none; background: var(--white);
  border-top: 1px solid #e0e6ea; padding: 20px 28px 24px;
  flex-direction: column; gap: 16px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-heading); font-size: 15px; font-weight: 600;
  color: var(--text); padding: 8px 0; border-bottom: 1px solid var(--gray-light); }
.mobile-menu__meetup { display: flex; align-items: center; gap: 8px;
  color: #E63838 !important; border-bottom: none !important; }

/* ============================================================
   HERO
   ============================================================ */
.hero { background: var(--blue-dark); position: relative; overflow: hidden; padding: 80px 0 88px; }
.hero::before { content: ''; position: absolute; top: -80px; right: -80px;
  width: 480px; height: 480px; background: var(--maroon); border-radius: 50%; opacity: 0.18; }
.hero::after { content: ''; position: absolute; bottom: -120px; left: -60px;
  width: 360px; height: 360px; background: var(--yellow); border-radius: 50%; opacity: 0.09; }

.hero__inner { position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.hero__eyebrow { display: inline-flex; align-items: center; gap: 8px;
  background: rgba(242,223,116,0.15); border: 1px solid rgba(242,223,116,0.35);
  color: var(--yellow); font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px;
  border-radius: 100px; margin-bottom: 22px; }

.hero__title { font-family: var(--font-heading); font-size: clamp(36px, 5vw, 60px);
  font-weight: 900; line-height: 1.05; color: var(--white); margin-bottom: 22px; }
.hero__title em { font-style: normal; color: var(--yellow); }

.hero__desc { font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.7;
  margin-bottom: 32px; max-width: 480px; }

/* Single CTA button */
.hero__cta { margin-bottom: 40px; }

/* Section quick-links replacing old checklist */
.hero__links { display: flex; flex-direction: column; gap: 10px; }

.hero__link-item {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.hero__link-item:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(242,223,116,0.4);
}
.hero__link-icon {
  width: 34px; height: 34px;
  background: rgba(242,223,116,0.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero__link-icon svg { width: 16px; height: 16px; color: var(--yellow); }
.hero__link-label { flex: 1; }
.hero__link-label strong { display: block; font-family: var(--font-heading);
  font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 1px; }
.hero__link-label span { font-size: 12px; color: rgba(255,255,255,0.55); }
.hero__link-arrow { color: rgba(255,255,255,0.35); }
.hero__link-item:hover .hero__link-arrow { color: var(--yellow); }

/* Right card */
.hero__card { background: rgba(255,255,255,0.07); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-xl); padding: 36px 32px; }
.hero__card-label { font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--yellow); margin-bottom: 20px; }
.hero__card-date { font-family: var(--font-heading); font-size: 24px; font-weight: 800;
  color: var(--white); margin-bottom: 20px; line-height: 1.2; }
.hero__card-details { display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; }
.hero__card-detail { display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: rgba(255,255,255,0.80); }
.hero__card-detail svg { width: 18px; height: 18px; color: var(--yellow); flex-shrink: 0; margin-top: 1px; }
.hero__card-badge { display: inline-flex; align-items: center; gap: 6px;
  background: rgba(242,223,116,0.15); border: 1px solid rgba(242,223,116,0.3);
  color: var(--yellow); font-family: var(--font-heading); font-size: 12px; font-weight: 700;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 20px; }

/* ============================================================
   MEETING STRIP
   ============================================================ */
.meeting-strip { background: var(--yellow); padding: 18px 0; }
.meeting-strip__inner { display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; }
.meeting-strip__info { display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap; font-size: 15px; color: var(--blue-dark); }
.meeting-strip__dot { width: 10px; height: 10px; background: var(--maroon);
  border-radius: 50%; flex-shrink: 0; animation: pulse 2s infinite; }
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.5; transform:scale(1.4); }
}
.meeting-strip__info strong { font-family: var(--font-heading); font-weight: 800; }

/* ============================================================
   PAIN POINTS
   ============================================================ */
.pain-section { padding: var(--section-gap) 0; background: var(--gray-light); }
.pain-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.pain-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px 24px;
  box-shadow: var(--shadow-sm); border-top: 4px solid var(--gray); transition: all 0.25s; }
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-top-color: var(--maroon); }
.pain-card__icon { font-size: 28px; margin-bottom: 14px; }
.pain-card__q { font-family: var(--font-heading); font-size: 16px; font-weight: 700;
  color: var(--blue-dark); margin-bottom: 8px; line-height: 1.3; }
.pain-card__a { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   JOURNEY — From nervous speaker to confident communicator
   ============================================================ */
.journey-section { padding: var(--section-gap) 0; background: var(--blue-dark); }
.journey-section .section-label { color: var(--yellow); }
.journey-section .section-title { color: var(--white); }
.journey-section .section-lead  { color: rgba(255,255,255,0.68); }

.journey-strip { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0; margin-top: 48px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-xl); overflow: hidden; }

.journey-step { padding: 28px 22px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.10); transition: background 0.25s; }
.journey-step:last-of-type { border-right: none; }
.journey-step:hover { background: rgba(255,255,255,0.06); }

.journey-num { width: 32px; height: 32px; background: var(--blue);
  border: 2px solid rgba(242,223,116,0.5); color: var(--yellow);
  font-family: var(--font-heading); font-size: 14px; font-weight: 800;
  border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; }
.journey-step__icon { font-size: 26px; margin-bottom: 10px; line-height: 1; }
.journey-step h3 { font-family: var(--font-heading); font-size: 14px; font-weight: 700;
  color: var(--yellow); margin-bottom: 6px; }
.journey-step p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.5; }

.journey-arrow { display: flex; align-items: center; justify-content: center;
  padding: 0 4px; padding-top: 60px; }
.journey-arrow svg { width: 20px; height: 20px; color: rgba(242,223,116,0.45); flex-shrink: 0; }

.journey-cta-note { margin-top: 28px; font-size: 15px;
  color: rgba(255,255,255,0.65); text-align: center; }
.journey-link { color: var(--yellow); font-family: var(--font-heading);
  font-weight: 700; font-size: 14px; margin-left: 12px; transition: opacity 0.2s; }
.journey-link:hover { opacity: 0.75; }

/* ============================================================
   HOW IT WORKS — Meeting Agenda (mockup timeline)
   ============================================================ */
.how-section { padding: var(--section-gap) 0; background: var(--white); }
.how-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: start; }

.tl { display: flex; flex-direction: column; gap: 6px; }
.tl-row { display: flex; align-items: stretch; gap: 0; }

.tl-time { min-width: 68px; font-family: var(--font-heading); font-size: 12px; font-weight: 700;
  color: var(--text-muted); text-align: right; padding: 16px 14px 16px 0;
  border-right: 2px solid var(--blue); flex-shrink: 0; line-height: 1.3; }

.tl-dot { width: 12px; height: 12px; background: var(--blue); border: 2px solid var(--white);
  border-radius: 50%; box-shadow: 0 0 0 2px var(--blue); flex-shrink: 0;
  margin-top: 20px; margin-left: -7px; margin-right: 16px; z-index: 1; }
.tl-dot--last { background: var(--yellow-dark); box-shadow: 0 0 0 2px var(--yellow-dark); }

.tl-body { flex: 1; background: var(--white); border: 1px solid #dde6ec;
  border-radius: var(--radius-md); padding: 14px 18px; margin-bottom: 6px;
  transition: box-shadow 0.2s, border-color 0.2s; }
.tl-body:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.tl-body h4 { font-family: var(--font-heading); font-size: 15px; font-weight: 700;
  color: var(--blue-dark); margin-bottom: 5px; }
.tl-body p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 8px; }

.tl-badge { display: inline-block; font-family: var(--font-heading); font-size: 11px;
  font-weight: 700; letter-spacing: 0.04em; padding: 3px 10px; border-radius: 100px; }
.badge-blue   { background: var(--blue-light); color: var(--blue); }
.badge-amber  { background: #fef3cd; color: #7a5c00; }
.badge-maroon { background: #f5dde0; color: var(--maroon); }
.badge-teal   { background: #d4f0ee; color: #1a6b65; }
.badge-yellow { background: rgba(242,223,116,0.30); color: #6b5800; }

/* Roles box */
.roles-box { background: var(--blue-dark); border-radius: var(--radius-xl);
  padding: 36px 32px; color: var(--white); }
.roles-box__title { font-family: var(--font-heading); font-size: 18px; font-weight: 800;
  color: var(--yellow); margin-bottom: 6px; }
.roles-box__sub { font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 24px; }
.role-list { display: flex; flex-direction: column; gap: 12px; }
.role-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px 16px;
  background: rgba(255,255,255,0.07); border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.10); transition: background 0.2s; }
.role-item:hover { background: rgba(255,255,255,0.13); }
.role-item__icon { width: 34px; height: 34px; background: rgba(242,223,116,0.15);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; font-size: 16px; }
.role-item__name { font-family: var(--font-heading); font-size: 14px; font-weight: 700;
  color: var(--yellow); margin-bottom: 2px; }
.role-item__desc { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.5; }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits-section { padding: var(--section-gap) 0;
  background: linear-gradient(160deg, var(--gray-light) 0%, #f5f0eb 100%); }
.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.benefit-card { background: var(--white); border-radius: var(--radius-lg);
  padding: 28px 24px 24px; box-shadow: var(--shadow-sm); position: relative;
  overflow: hidden; transition: all 0.25s; }
.benefit-card::before { content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 4px; background: var(--blue); }
.benefit-card:nth-child(even)::before { background: var(--maroon); }
.benefit-card:nth-child(3n)::before   { background: var(--yellow-dark); }
.benefit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.benefit-card__icon  { font-size: 32px; margin-bottom: 14px; }
.benefit-card__title { font-family: var(--font-heading); font-size: 16px; font-weight: 700;
  color: var(--blue-dark); margin-bottom: 8px; }
.benefit-card__text  { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { padding: var(--section-gap) 0; background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.testimonial-card { background: var(--gray-light); border-radius: var(--radius-lg); padding: 28px 24px; }
.testimonial-card__quote { font-size: 48px; line-height: 1; color: var(--gray);
  font-family: Georgia, serif; margin-bottom: 8px; }
.testimonial-card__text { font-size: 15px; color: var(--text); line-height: 1.7;
  font-style: italic; margin-bottom: 20px; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar { width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 16px; font-weight: 800;
  color: var(--white); flex-shrink: 0; }
.testimonial-card:nth-child(1) .testimonial-card__avatar { background: var(--blue); }
.testimonial-card:nth-child(2) .testimonial-card__avatar { background: var(--maroon); }
.testimonial-card:nth-child(3) .testimonial-card__avatar { background: var(--blue-dark); }
.testimonial-card__name { font-family: var(--font-heading); font-size: 14px; font-weight: 700;
  color: var(--blue-dark); }
.testimonial-card__role { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   PHOTO GALLERY
   ============================================================ */
.gallery-section { padding: var(--section-gap) 0; background: var(--gray-light); }
.photo-grid { display: grid; grid-template-columns: repeat(4,1fr);
  grid-template-rows: 200px 200px; gap: 12px; margin-top: 40px;
  border-radius: var(--radius-lg); overflow: hidden; }
.photo-grid__item { overflow: hidden; position: relative; }
.photo-grid__item:first-child { grid-column: span 2; grid-row: span 2; }
.photo-grid__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.photo-grid__item:hover img { transform: scale(1.04); }

/* ============================================================
   ABOUT — history, anniversary, milestones, flag cloud
   ============================================================ */
.about-section { padding: var(--section-gap) 0; background: var(--white); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.about-text p { font-size: 16px; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }

.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.about-stat { background: var(--blue-light); border-radius: var(--radius-md);
  padding: 20px 18px; text-align: center; }
.about-stat__num { font-family: var(--font-heading); font-size: 28px; font-weight: 900;
  color: var(--blue-dark); line-height: 1; margin-bottom: 4px; }
.about-stat__label { font-size: 13px; color: var(--text-muted); }

/* Anniversary banner */
.anniversary-banner { display: flex; align-items: flex-start; gap: 18px;
  background: var(--blue-dark); border: 2px solid var(--yellow);
  border-radius: var(--radius-lg); padding: 22px 28px; margin-bottom: 52px; }
.ann-badge { display: inline-flex; align-items: center; white-space: nowrap;
  background: var(--yellow); color: var(--blue-dark); font-family: var(--font-heading);
  font-size: 12px; font-weight: 800; letter-spacing: 0.06em;
  padding: 6px 14px; border-radius: 100px; flex-shrink: 0; }
.ann-text { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.65; }
.ann-text strong { color: var(--white); }

/* Milestones */
.milestones { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--gray-light);
  display: flex; flex-direction: column; gap: 12px; }
.milestone { display: flex; gap: 14px; align-items: flex-start; }
.milestone__year { font-family: var(--font-heading); font-size: 12px; font-weight: 700;
  color: var(--maroon); min-width: 44px; padding-top: 2px; flex-shrink: 0; }
.milestone__bar { width: 2px; background: var(--gray); align-self: stretch;
  flex-shrink: 0; margin-top: 6px; border-radius: 2px; }
.milestone__text { font-size: 14px; color: var(--text-muted); line-height: 1.55; }
.milestone--highlight .milestone__year { color: var(--blue); }
.milestone--highlight .milestone__bar  { background: var(--yellow-dark); }
.milestone--highlight .milestone__text { color: var(--blue-dark); font-weight: 600; }

/* Flag cloud */
.flag-cloud { background: var(--white); border: 1px solid #dde6ec;
  border-radius: var(--radius-lg); padding: 22px 24px; }
.flag-cloud__title { font-family: var(--font-heading); font-size: 14px; font-weight: 700;
  color: var(--blue-dark); margin-bottom: 14px; }
.flag-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.flag-pill { display: inline-flex; align-items: center; gap: 4px;
  background: var(--blue-light); color: var(--blue); font-family: var(--font-heading);
  font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 100px; }
.flag-pill--more { background: var(--gray-light); color: var(--text-muted); }

/* TM International card */
.tmi-card { background: var(--maroon); color: var(--white);
  border-radius: var(--radius-xl); padding: 36px 32px; margin-top: 24px; }
.tmi-card__logo { width: 56px; height: 56px; background: rgba(255,255,255,0.15);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 20px; font-weight: 900;
  color: var(--yellow); margin-bottom: 20px; }
.tmi-card h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 800;
  color: var(--white); margin-bottom: 12px; }
.tmi-card p { font-size: 15px; color: rgba(255,255,255,0.80); line-height: 1.7; margin-bottom: 12px; }
.tmi-facts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tmi-fact { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.20);
  color: var(--white); font-family: var(--font-heading); font-size: 12px; font-weight: 600;
  padding: 5px 12px; border-radius: 100px; }

/* ============================================================
   PARTNER CLUBS
   ============================================================ */
.partner-section { padding: var(--section-gap) 0; background: var(--gray-light); }
.partner-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 48px; }
.partner-card { background: var(--white); border: 1px solid #dde6ec;
  border-top: 4px solid var(--blue); border-radius: var(--radius-lg);
  padding: 20px 20px 18px; transition: box-shadow 0.22s, transform 0.22s; }
.partner-card:nth-child(even) { border-top-color: var(--maroon); }
.partner-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.partner-card h3 { font-family: var(--font-heading); font-size: 15px; font-weight: 700;
  color: var(--blue-dark); margin-bottom: 4px; }
.partner-location { display: flex; align-items: center; gap: 5px;
  font-size: 12px; color: var(--text-muted); margin-bottom: 14px; }
.partner-location svg { color: var(--maroon); }
.partner-schedule { border-top: 1px solid var(--gray-light); padding-top: 12px;
  display: flex; flex-direction: column; gap: 8px; }
.ps-row { display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: var(--text-muted); line-height: 1.4; }
.ps-row svg { color: var(--maroon); flex-shrink: 0; margin-top: 1px; }
.partner-links { display: flex; gap: 8px; margin-top: 16px; }
.plink { display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-heading); font-size: 12px; font-weight: 700;
  padding: 6px 13px; border-radius: var(--radius-sm); transition: all 0.2s; text-decoration: none; }
.plink-meetup { background: #f5dde0; color: var(--maroon); }
.plink-meetup:hover { background: var(--maroon); color: var(--white); }
.plink-web { background: var(--blue-light); color: var(--blue); }
.plink-web:hover { background: var(--blue); color: var(--white); }
.partner-card--placeholder { border: 2px dashed var(--gray); border-top: 2px dashed var(--gray);
  background: transparent; display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center; }
.partner-card--placeholder:hover { transform: none; box-shadow: none; }
.partner-card__plus { font-size: 28px; font-weight: 300; color: var(--gray);
  margin-bottom: 8px; line-height: 1; }
.partner-card--placeholder h3 { font-size: 14px; color: var(--text-muted); }
.partner-card--placeholder p  { font-size: 13px; color: var(--gray); line-height: 1.55; margin-top: 6px; }

/* ============================================================
   MEMBERS AREA
   ============================================================ */
.members-section { padding: var(--section-gap) 0; background: var(--blue-light); }
.members-inner { display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 48px; align-items: start; margin-top: 48px; }
.qlinks { display: flex; flex-direction: column; gap: 12px; }
.qlink-card { display: flex; align-items: center; gap: 16px; background: var(--white);
  border: 1px solid #dde6ec; border-radius: var(--radius-md); padding: 16px 18px;
  text-decoration: none; transition: all 0.22s; box-shadow: var(--shadow-sm); }
.qlink-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); border-color: var(--blue); }
.qlink-icon { width: 42px; height: 42px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.qlink-icon--blue   { background: var(--blue-light);          color: var(--blue);   }
.qlink-icon--maroon { background: #f5dde0;                    color: var(--maroon); }
.qlink-icon--yellow { background: rgba(242,223,116,0.30);     color: #6b5800;       }
.qlink-text { flex: 1; }
.qlink-text h3 { font-family: var(--font-heading); font-size: 15px; font-weight: 700;
  color: var(--blue-dark); margin-bottom: 3px; }
.qlink-text p  { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.qlink-arrow { color: var(--gray); flex-shrink: 0; }
.qlink-card:hover .qlink-arrow { color: var(--blue); }

.pathways-card { background: var(--blue-dark); border-radius: var(--radius-xl);
  padding: 36px 32px; color: var(--white); }
.pathways-card__badge { display: inline-block; background: rgba(242,223,116,0.2);
  border: 1px solid rgba(242,223,116,0.4); color: var(--yellow);
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 12px;
  border-radius: 100px; margin-bottom: 16px; }
.pathways-card h3 { font-family: var(--font-heading); font-size: 22px; font-weight: 800;
  color: var(--white); margin-bottom: 12px; }
.pathways-card > p { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 20px; }
.pathways-tracks { display: flex; flex-direction: column; gap: 10px; }
.pathways-track { display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.5; }
.pathways-track svg { color: var(--yellow); flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   LOCATION / MAP
   ============================================================ */
.location-section { padding: var(--section-gap) 0; background: var(--blue-dark); color: var(--white); }
.location-section .section-label { color: var(--yellow); }
.location-section .section-title { color: var(--white); }
.location-section .section-lead  { color: rgba(255,255,255,0.70); }
.location-inner { display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 64px; align-items: start; margin-top: 48px; }
.location-details { display: flex; flex-direction: column; gap: 20px; }
.location-detail { display: flex; align-items: flex-start; gap: 16px; padding: 20px;
  background: rgba(255,255,255,0.07); border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.10); }
.location-detail__icon { width: 42px; height: 42px; background: rgba(242,223,116,0.15);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; }
.location-detail__icon svg { width: 20px; height: 20px; color: var(--yellow); }
.location-detail__label { font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--yellow); margin-bottom: 3px; }
.location-detail__value { font-size: 15px; color: var(--white); line-height: 1.5; }
.map-embed { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg);
  height: 360px; }
.map-embed iframe { width: 100%; height: 100%; border: none; display: block; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { padding: var(--section-gap) 0; background: var(--gray-light); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
.faq-item { background: var(--white); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-question { display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 20px 22px; cursor: pointer; user-select: none; transition: background 0.2s; }
.faq-question:hover { background: var(--gray-light); }
.faq-question h3 { font-family: var(--font-heading); font-size: 15px; font-weight: 700;
  color: var(--blue-dark); line-height: 1.3; }
.faq-toggle { width: 28px; height: 28px; background: var(--blue-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.25s; }
.faq-toggle svg { width: 14px; height: 14px; color: var(--blue); transition: transform 0.25s; }
.faq-item.open .faq-toggle { background: var(--blue); }
.faq-item.open .faq-toggle svg { color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer__inner { padding: 0 22px 20px; font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-section { padding: 96px 0; background: var(--maroon); text-align: center;
  position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; background: var(--yellow); border-radius: 50%; opacity: 0.08; }
.cta-section::after  { content: ''; position: absolute; bottom: -80px; left: -60px;
  width: 300px; height: 300px; background: var(--blue); border-radius: 50%; opacity: 0.12; }
.cta-section .container { position: relative; z-index: 2; }
.cta-section .section-label { color: rgba(242,223,116,0.8); }
.cta-section h2 { font-family: var(--font-heading); font-size: clamp(28px,4vw,48px);
  font-weight: 900; color: var(--white); margin-bottom: 16px; line-height: 1.15; }
.cta-section p { font-size: 17px; color: rgba(255,255,255,0.75); max-width: 520px;
  margin: 0 auto 36px; line-height: 1.7; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.cta-note { font-size: 13px !important; color: rgba(255,255,255,0.55) !important;
  font-family: var(--font-heading); letter-spacing: 0.04em; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--blue-dark); color: rgba(255,255,255,0.65); padding: 48px 0 28px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.10); }
.footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer__logo-icon { width: 36px; height: 36px; background: var(--blue);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.footer__logo-icon svg { width: 18px; height: 18px; color: var(--yellow); }
.footer__logo-name { font-family: var(--font-heading); font-size: 14px; font-weight: 800; color: var(--white); }
.footer__tagline { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.55); margin-bottom: 20px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 34px; height: 34px; background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; transition: background 0.2s; }
.footer__social a:hover { background: rgba(255,255,255,0.15); }
.footer__social a svg { width: 16px; height: 16px; color: rgba(255,255,255,0.70); }
.footer__col-title { font-family: var(--font-heading); font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--yellow); margin-bottom: 16px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 14px; color: rgba(255,255,255,0.60); transition: color 0.2s; }
.footer__links a:hover { color: var(--white); }
.footer__bottom { padding-top: 24px; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: rgba(255,255,255,0.35); }

/* Hero walk-in note (replaces CTA button on left) */
.hero__walkin {
  font-size: 15px;
  color: rgba(255,255,255,0.80);
  line-height: 1.6;
  margin-bottom: 32px;
  padding: 12px 16px;
  background: rgba(242,223,116,0.10);
  border: 1px solid rgba(242,223,116,0.25);
  border-radius: var(--radius-md);
}
.hero__walkin strong { color: var(--yellow); }

/* Meetup logo image (nav + footer social) */
.meetup-logo-img {
  height: 14px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  filter: none;
}
.nav__meetup .meetup-logo-img { height: 13px; }

/* Footer logo image */
.footer__logo-img {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}

/* Footer social Meetup logo sizing */
.footer__social-meetup {
  height: 16px;
  width: auto;
  display: block;
}

/* English-only note */
.english-note {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--blue-light); border: 1px solid #b8d4e8;
  border-radius: var(--radius-md); padding: 14px 18px;
  font-size: 14px; color: var(--blue-dark); line-height: 1.6;
  margin-bottom: 40px;
}
.english-note svg { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.english-note strong { color: var(--blue); }

/* Role name as link */
.role-item__name {
  display: block; font-family: var(--font-heading); font-size: 14px; font-weight: 700;
  color: var(--yellow); margin-bottom: 2px; text-decoration: none; transition: opacity 0.2s;
}
.role-item__name:hover { opacity: 0.75; text-decoration: underline; }

/* TMI card logo image */
.tmi-card__logo-img {
  height: 56px; width: auto; display: block; margin-bottom: 20px;
  border-radius: var(--radius-sm);
}

/* Testimonial photo avatar */
.testimonial-card__avatar {
  width: 80px; height: 80px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 2px solid var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner      { gap: 40px; }
  .how-inner        { gap: 48px; }
  .about-inner      { gap: 48px; }
  .location-inner   { gap: 48px; }
  .members-inner    { gap: 36px; }
  .footer__inner    { grid-template-columns: 1fr 1fr; gap: 32px; }
  .benefits-grid    { gap: 16px; }
  .testimonials-grid { gap: 16px; }
  .partner-grid     { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  :root { --section-gap: 64px; }
  .nav__links  { display: none; }
  .hamburger   { display: flex; }
  .nav__meetup { display: none; }

  .hero__inner      { grid-template-columns: 1fr; gap: 40px; }
  .hero__card       { max-width: 500px; }

  .journey-strip    { grid-template-columns: 1fr 1fr; }
  .journey-arrow    { display: none; }
  .journey-step     { border-right: 1px solid rgba(255,255,255,0.10);
                      border-bottom: 1px solid rgba(255,255,255,0.10); }

  .pain-grid        { grid-template-columns: 1fr; }
  .how-inner        { grid-template-columns: 1fr; }
  .benefits-grid    { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .photo-grid       { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .photo-grid__item:first-child { grid-column: span 2; grid-row: span 1; }
  .about-inner      { grid-template-columns: 1fr; }
  .anniversary-banner { flex-direction: column; gap: 12px; }
  .partner-grid     { grid-template-columns: 1fr 1fr; }
  .members-inner    { grid-template-columns: 1fr; }
  .location-inner   { grid-template-columns: 1fr; }
  .faq-grid         { grid-template-columns: 1fr; }
  .footer__inner    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 580px) {
  :root { --section-gap: 52px; }
  .container { padding: 0 18px; }

  .hero { padding: 52px 0 60px; }
  .hero__title  { font-size: 34px; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .hero__card   { padding: 26px 22px; }

  .meeting-strip__inner { flex-direction: column; align-items: flex-start; gap: 12px; }

  .journey-strip { grid-template-columns: 1fr; }
  .journey-step  { border-right: none;
                   border-bottom: 1px solid rgba(255,255,255,0.10); }
  .journey-step:last-of-type { border-bottom: none; }

  .tl-time       { min-width: 52px; font-size: 11px; padding: 16px 10px 16px 0; }
  .benefits-grid { grid-template-columns: 1fr; }
  .photo-grid    { grid-template-columns: 1fr; }
  .photo-grid__item:first-child { grid-column: span 1; }
  .about-stats   { grid-template-columns: 1fr 1fr; }
  .partner-grid  { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .cta-actions   { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}
