/* ==========================================================================
   Rotary Club Penang Strait — Design System
   Palette diverges slightly from strict Rotary brand guidelines toward a
   more vibrant, youth-facing look, per club direction.
   ========================================================================== */

:root {
  /* Rotary-derived core palette */
  --azure: #17458f;        /* Rotary Royal Blue — primary */
  --azure-deep: #0b2c63;   /* darker shade for gradients/hero */
  --sky: #00a2e0;          /* Rotary Sky Blue — secondary/vibrant */
  --gold: #f7a81b;         /* Rotary Gold — accent / CTA */
  --gold-deep: #e0910a;
  --cranberry: #c8102e;    /* Rotary Cranberry — sparing highlight */

  /* Neutrals */
  --ink: #0b1220;
  --ink-soft: #33405c;
  --slate: #5b6b8c;
  --mist: #f4f7fc;
  --mist-deep: #e8eefb;
  --paper: #ffffff;
  --line: #dfe6f3;

  /* Type */
  --font-display: "Sora", "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-w: 1200px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 16px rgba(11, 34, 78, 0.08);
  --shadow-md: 0 12px 32px rgba(11, 34, 78, 0.14);
  --shadow-lg: 0 24px 60px rgba(11, 34, 78, 0.20);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; color: var(--ink-soft); }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: #fff4de;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.section {
  padding: 88px 0;
}
.section--tight { padding: 56px 0; }
.section--mist { background: var(--mist); }
.section--dark {
  background: linear-gradient(160deg, var(--azure-deep), var(--azure) 65%, var(--sky) 130%);
  color: #fff;
}
.section--dark h2, .section--dark p { color: #fff; }
.section--dark p { color: rgba(255,255,255,0.82); }

.section-head {
  max-width: 640px;
  margin: 0 0 48px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--gold-deep); box-shadow: var(--shadow-md); }
.btn-outline {
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-outline-dark {
  border-color: var(--azure);
  color: var(--azure);
}
.btn-outline-dark:hover { background: var(--azure); color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--azure);
}
.brand-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: conic-gradient(from 210deg, var(--gold), var(--sky), var(--azure), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 0.95rem;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,0.35);
  flex-shrink: 0;
}
.brand-mark-img {
  width: 44px; height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-brand .brand-mark-img { width: 48px; height: 48px; }
.brand small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--azure); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 3px;
  border-radius: 3px;
  background: var(--gold);
}
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: 0.2s;
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 73px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-links a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: block; }
}
@media (max-width: 380px) {
  .nav-cta .btn span.long { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--azure-deep) 0%, var(--azure) 55%, var(--sky) 130%);
  color: #fff;
  padding: 100px 0 140px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(255,255,255,0.10) 0, transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(247,168,27,0.25) 0, transparent 40%);
  pointer-events: none;
}
.hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: auto; display: block; }
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.3rem, 4.5vw, 3.6rem);
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--gold); }
.hero p.lede {
  color: rgba(255,255,255,0.86);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
}
.hero-stat span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
}

.hero-art {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255,255,255,0.14), rgba(255,255,255,0.03));
  border: 1px dashed rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  overflow: hidden;
}
.hero-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-art .ph-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: rgba(11,34,78,0.55);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.floaty-card {
  position: absolute;
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
}
.floaty-card .ico {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.floaty-card--1 { top: -18px; right: -12px; }
.floaty-card--1 .ico { background: #fff4de; color: var(--gold-deep); }
.floaty-card--2 { bottom: -18px; left: -18px; }
.floaty-card--2 .ico { background: #e3f6ff; color: var(--sky); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { display: none; }
}

/* ---------- Placeholder photo blocks ---------- */
.ph-photo {
  position: relative;
  background: repeating-linear-gradient(135deg, var(--mist-deep), var(--mist-deep) 12px, #fff 12px, #fff 24px);
  border: 2px dashed var(--line);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--slate);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 20px;
  min-height: 180px;
}
.ph-photo span { max-width: 220px; }
.ph-photo.has-photo {
  background-image: none;
  border: none;
  background-color: var(--mist);
  background-size: cover;
  background-position: center;
}

/* ---------- Marquee (social proof strip) ---------- */
.marquee-strip {
  background: var(--ink);
  color: #fff;
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 48px;
  animation: scroll-left 22s linear infinite;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.marquee-track span { color: var(--gold); }
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Cards grid ---------- */
.grid {
  display: grid;
  gap: 28px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  color: #fff;
}
.icon-azure { background: linear-gradient(140deg, var(--azure), var(--sky)); }
.icon-gold { background: linear-gradient(140deg, var(--gold), var(--gold-deep)); }
.icon-cranberry { background: linear-gradient(140deg, var(--cranberry), #e0475f); }

.card h3 { font-size: 1.15rem; }
.card p { margin-bottom: 0; font-size: 0.95rem; }

/* Project card w/ photo */
.project-card { overflow: hidden; padding: 0; }
.project-card .ph-photo { border-radius: 0; border: none; min-height: 190px; }
.project-card .project-body { padding: 24px; }
.project-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--azure);
  background: var(--mist-deep);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

/* ---------- Stats band ---------- */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--gold);
}
.stat span { font-size: 0.85rem; color: rgba(255,255,255,0.78); }
@media (max-width: 700px) {
  .stats-band { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Timeline / meeting info ---------- */
.info-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .info-split { grid-template-columns: 1fr; } }
.meeting-list { display: flex; flex-direction: column; gap: 16px; }
.meeting-item {
  display: flex;
  gap: 16px;
  background: var(--mist);
  border-radius: var(--radius-md);
  padding: 20px;
  align-items: flex-start;
}
.meeting-item .card-icon { margin-bottom: 0; }
.meeting-item h4 { margin-bottom: 4px; font-size: 1rem; }
.meeting-item p { margin-bottom: 0; font-size: 0.88rem; }

/* ---------- Testimonials ---------- */
.testi-row {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
}
.testi-card {
  scroll-snap-align: start;
  min-width: 320px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.testi-quote { font-style: italic; color: var(--ink-soft); margin-bottom: 18px; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.avatar-ph {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--azure), var(--sky));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
  flex-shrink: 0;
}
.testi-person strong { display: block; font-size: 0.92rem; }
.testi-person span { font-size: 0.8rem; color: var(--slate); }

/* ---------- FAQ accordion ---------- */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
}
.faq-q .plus {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--mist-deep);
  color: var(--azure);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item.open .plus { transform: rotate(45deg); background: var(--gold); color: #fff; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  font-size: 0.94rem;
}
.faq-item.open .faq-a { max-height: 300px; padding-top: 14px; }

/* ---------- Socials ---------- */
.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .social-grid { grid-template-columns: 1fr; } }
.social-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}
.social-card .ph-photo { min-height: 200px; border-radius: 0; border: none; }
.social-meta { padding: 16px 18px; }
.social-meta .platform {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.04em; margin-bottom: 8px;
}
.social-meta .platform.fb { color: #1877f2; }
.social-meta .platform.ig { color: #d6249f; }
.social-meta p { font-size: 0.9rem; margin-bottom: 0; }

/* ---------- Live social embeds ---------- */
.embed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 900px) { .embed-grid { grid-template-columns: 1fr; } }
.embed-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.embed-card h3 {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.embed-frame {
  border-radius: var(--radius-sm);
  overflow: hidden;
  min-height: 400px;
}
.embed-frame iframe { display: block; width: 100%; }
.embed-frame--pending {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--mist);
  border: 2px dashed var(--line);
  padding: 32px 20px;
}
.embed-frame--pending p { color: var(--slate); margin-bottom: 16px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--gold), var(--gold-deep));
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  color: var(--ink);
}
.cta-banner h2 { margin-bottom: 8px; }
.cta-banner p { color: rgba(11,18,32,0.75); margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  margin-bottom: 48px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-grid ul { display: flex; flex-direction: column; gap: 10px; }
.footer-grid a:hover { color: var(--gold); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand strong { color: #fff; font-family: var(--font-display); }
.social-icons { display: flex; gap: 12px; margin-top: 18px; }
.social-icons a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.social-icons a:hover { background: var(--gold); color: var(--ink); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(150deg, var(--azure-deep), var(--azure) 60%, var(--sky) 140%);
  color: #fff;
  padding: 64px 0 88px;
  text-align: center;
}
.page-hero .eyebrow { background: rgba(255,255,255,0.14); color: var(--gold); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex; gap: 8px; justify-content: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
}
.breadcrumb a:hover { color: var(--gold); }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: 0.88rem; }
.field input, .field select, .field textarea {
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--mist);
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--azure);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 130px; }

.form-alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 20px;
}
.form-alert--success { background: #e7f7ec; color: #1a7a3c; border: 1px solid #b7e4c7; }
.form-alert--error { background: #fdeaea; color: var(--cranberry); border: 1px solid #f3c1c8; }

/* ---------- Blog ---------- */
.blog-card { display: flex; flex-direction: column; }
.blog-card .ph-photo { min-height: 180px; border-radius: var(--radius-md) var(--radius-md) 0 0; border: none; }
.blog-card .blog-body { padding: 24px; }
.blog-meta { font-size: 0.78rem; color: var(--slate); margin-bottom: 10px; display: flex; gap: 10px; }
.blog-card h3 { font-size: 1.1rem; }
.blog-card .btn { margin-top: 12px; }

.post-body {
  max-width: 760px;
  margin: 0 auto;
}
.post-body h2 { margin-top: 1.6em; font-size: 1.5rem; }
.post-body p, .post-body li { color: var(--ink-soft); font-size: 1.02rem; }
.post-body ul, .post-body ol { padding-left: 1.4em; margin-bottom: 1em; }
.post-body li { margin-bottom: 0.4em; }
.post-body blockquote {
  border-left: 4px solid var(--gold);
  padding: 4px 0 4px 20px;
  font-style: italic;
  color: var(--ink);
  margin: 24px 0;
}

/* ---------- Events / calendar ---------- */
.calendar-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.calendar-embed iframe { width: 100%; height: 600px; border: none; display: block; }

.event-row {
  display: flex;
  gap: 20px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 16px;
}
.event-date {
  flex-shrink: 0;
  width: 72px;
  text-align: center;
  background: var(--mist);
  border-radius: var(--radius-sm);
  padding: 10px 0;
  font-family: var(--font-display);
}
.event-date strong { display: block; font-size: 1.5rem; color: var(--azure); line-height: 1; }
.event-date span { font-size: 0.72rem; text-transform: uppercase; color: var(--slate); }
.event-info { flex: 1; }
.event-info h4 { margin-bottom: 4px; font-size: 1.02rem; }
.event-info p { margin-bottom: 0; font-size: 0.88rem; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.flex { display: flex; }
.gap-12 { gap: 12px; }
.wrap { flex-wrap: wrap; }
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 90;
  font-size: 1.6rem;
  color: #fff;
}
