/* ==========================================================
   UCMF — styles.css
   Design system extracted from icmda.net (designmd.me/s/icmda-myxhy)
   Primary: #006699  ·  Type: Montserrat  ·  Sharp 0px corners
   ========================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Primary */
  --primary: #006699;
  --primary-dark: #005A8D;
  --primary-darker: #004B7A;
  --teal-deep: #006BA1;
  --teal-interactive: #007CBA;

  /* Accents */
  --cyan: #17A1E5;
  --cyan-mid: #0F8BC9;
  --blue-med: #428BCA;

  /* Neutrals */
  --white: #FFFFFF;
  --off-1: #FCFCFC;
  --off-2: #F5F5F5;
  --gray-light: #F3F3F3;
  --gray-neutral: #F2F2F2;
  --border: #E6E6E6;
  --divider: #DDDDDD;
  --gray-muted: #999999;
  --black: #000000;

  /* Semantic */
  --error: #CF2E2E;
  --warning: #DD9933;

  /* Spacing scale (4px base) */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 20px;
  --s-6: 24px;
  --s-8: 32px;
  --s-10: 40px;
  --s-13: 52px;
  --s-15: 60px;

  /* Layout */
  --container-max: 1180px;
  --container-pad: 32px;

  /* Typography */
  --font-sans: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;

  /* Shadows */
  --shadow-card-hover: 0px 4px 12px 0px rgba(0, 0, 0, 0.08);
  --shadow-dropdown:   0px 1px 20px 0px rgba(0, 0, 0, 0.10);
  --shadow-modal:      0px 10px 40px 0px rgba(0, 0, 0, 0.20);
  --shadow-secondary:  3px 3px 3px 0px #17A1E5;
  --focus-ring:        0 0 0 2px rgba(0, 102, 153, 0.20);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .15s ease, border-color .15s ease; }
a:hover { color: var(--primary-dark); }
a:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
address { font-style: normal; }
em { font-style: italic; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.section {
  padding: 88px 0;
}
.section-light  { background: var(--white); }
.section-tint   { background: var(--off-2); }
.section-dark   { background: var(--primary); color: var(--white); }
.section-feature {
  background: linear-gradient(180deg, var(--off-2) 0%, var(--white) 100%);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.two-col.reverse .col-image { order: 2; }
.two-col .col-narrow { position: sticky; top: 96px; }
.two-col .col-image img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  color: var(--primary);
  margin: 0 0 var(--s-5);
  font-weight: 700;
  letter-spacing: -0.005em;
}
h1 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.02em;
}
h2.section-title {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.15;
  font-weight: 700;
}
h2.section-title.light { color: var(--white); }
h3 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
}
p { margin: 0 0 var(--s-5); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 400;
}

.eyebrow,
.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 var(--s-4);
}
.eyebrow-light { color: var(--cyan); }
.section-intro {
  font-size: 18px;
  color: #333;
  max-width: 640px;
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 600;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  border-radius: 0;
  transition: background .15s ease, color .15s ease, box-shadow .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:focus-visible { box-shadow: var(--focus-ring); outline: none; }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary-dark);
  font-size: 18px;
  line-height: 1.2;
  padding: 18px 28px;
  min-height: 56px;
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-darker); color: var(--white); }
.btn-primary:active { background: var(--primary-darker); }

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  padding: 14px 22px;
  min-height: 48px;
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-secondary);
}
.btn-secondary:hover {
  background: var(--off-2);
  color: var(--primary);
  box-shadow: 4px 4px 4px 0px var(--cyan-mid);
}
.btn-secondary:active {
  background: var(--gray-neutral);
  box-shadow: 3px 3px 3px 0px var(--teal-deep);
}

.cta-row {
  margin-top: 48px;
  display: flex;
  gap: var(--s-4);
  justify-content: center;
  flex-wrap: wrap;
}
.cta-row.left { justify-content: flex-start; margin-top: 32px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--s-4);
  font-weight: 600;
  font-size: 16px;
  color: var(--primary);
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
.link-arrow span { transition: transform .2s ease; }
.link-arrow:hover { color: var(--primary-dark); border-bottom-color: var(--cyan); }
.link-arrow:hover span { transform: translateX(4px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--primary);
  color: var(--white);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18); }

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px var(--container-pad);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}
.brand:hover { color: var(--white); }
.brand-mark {
  width: 40px; height: 40px;
  display: inline-flex;
  flex: 0 0 40px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-size: 20px; font-weight: 700; letter-spacing: 0.02em; }
.brand-sub  { font-size: 11px; font-weight: 400; opacity: .85; letter-spacing: 0.04em; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.primary-nav > ul {
  display: flex;
  gap: 4px;
}
.primary-nav a {
  color: var(--white);
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  border-bottom: 2px solid transparent;
}
.primary-nav a:hover {
  background: var(--primary-dark);
  color: var(--white);
}
.primary-nav a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.has-submenu {
  position: relative;
}
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--primary-dark);
  min-width: 150px;
  display: none;
  z-index: 10;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.has-submenu:hover .submenu {
  display: block;
}
.submenu a {
  display: block;
  padding: 10px 12px;
  color: var(--white);
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.submenu a:hover {
  background: var(--primary-darker);
}

.nav-cta {
  background: var(--white);
  color: var(--primary) !important;
  padding: 10px 18px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-secondary);
  transition: box-shadow .15s ease, background .15s ease;
}
.nav-cta:hover {
  background: var(--off-2) !important;
  box-shadow: 4px 4px 4px 0 var(--cyan-mid);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 0;
  padding: 10px;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  margin: 4px auto;
  transition: transform .25s ease, opacity .15s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  background: var(--primary-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu ul { display: flex; flex-direction: column; padding: 8px 0; }
.mobile-menu a {
  display: block;
  padding: 14px var(--container-pad);
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu a:hover { background: var(--primary-darker); color: var(--white); }
.mobile-menu .mobile-cta {
  margin: 12px var(--container-pad);
  background: var(--white);
  color: var(--primary);
  text-align: center;
  font-weight: 700;
  border-bottom: 0;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 56, 84, 0.65) 0%, rgba(0, 56, 84, 0.55) 60%, rgba(0, 56, 84, 0.8) 100%),
    linear-gradient(90deg, rgba(0, 102, 153, 0.55) 0%, rgba(0, 102, 153, 0.1) 70%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 120px var(--container-pad);
  width: 100%;
}
.hero .eyebrow {
  color: var(--cyan);
  margin-bottom: 24px;
}
.hero h1 {
  max-width: 820px;
  margin: 0 0 28px;
}
.hero-motto {
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  max-width: 680px;
  color: #E9F3FA;
  margin-bottom: 40px;
  padding-left: 20px;
  border-left: 3px solid var(--cyan);
}
.hero-actions {
  display: flex;
  gap: var(--s-4);
  flex-wrap: wrap;
}

/* ---------- Two-col content sections ---------- */
.col-wide.light p,
.col-wide.light .lead,
.col-narrow .section-title.light { color: var(--white); }
.col-wide.light strong { color: var(--white); }

/* ---------- Card grids ---------- */
.card-grid {
  display: grid;
  gap: 32px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* Membership cards */
.member-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px 32px;
  position: relative;
  transition: box-shadow .2s ease, transform .2s ease;
}
.member-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}
.member-card.featured {
  border: 1px solid var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 102, 153, 0.06);
}
.member-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -1px;
  right: -1px;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
}
.card-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
.card-price {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 20px;
}
.card-price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-muted);
  margin-left: 6px;
  letter-spacing: 0;
}
.card-body {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

/* Activity grid */
.activity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--divider);
  border-left: 1px solid var(--divider);
}
.activity-card {
  background: var(--white);
  padding: 40px 36px;
  border-right: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  transition: background .2s ease;
}
.activity-card:hover { background: var(--off-1); }
.activity-time {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 12px;
}
.activity-card h3 {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 22px;
}
.activity-card p {
  font-size: 16px;
  color: #333;
  margin-bottom: 12px;
}

/* ---------- Students section ---------- */
.event-block {
  background: var(--white);
  border-left: 4px solid var(--primary);
  padding: 24px 28px;
  margin: 32px 0;
}
.event-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 8px;
}
.event-block h3 {
  margin: 0 0 8px;
  font-size: 24px;
  color: var(--primary);
}
.event-date {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.bullet-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 0;
}
.bullet-list li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
}
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 2px;
  background: var(--primary);
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.gallery-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.gallery-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.gallery-card h3 {
  padding: 16px;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
}

/* ---------- Forms ---------- */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--primary);
  font-size: 14px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-row {
  display: flex;
  gap: 16px;
}
.form-row .form-group {
  flex: 1;
}

/* ---------- Volunteer Form ---------- */
.volunteer-form {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* ---------- Donation ---------- */
.donation-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  overflow: hidden;
}
.donation-form-container {
  padding: 40px;
}
.donation-form {
  margin: 0;
}
.donation-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--gray-muted);
  text-align: center;
}
.btn-large {
  width: 100%;
  padding: 16px;
  font-size: 18px;
}

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal[hidden] {
  display: none;
}
.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.modal-content {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation: modalFadeIn 0.3s ease;
}
@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--gray-muted);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}
.modal-close:hover {
  background: var(--off-2);
  color: var(--primary);
}
.modal-header {
  text-align: center;
  margin-bottom: 30px;
}
.modal-logo {
  margin-bottom: 20px;
}
.modal-logo svg {
  width: 60px;
  height: 60px;
}
.modal-header h3 {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 24px;
}
.modal-header p {
  margin: 0;
  color: var(--gray-muted);
}
.modal-form {
  margin: 0;
}

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}
.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.blog-image {
  height: 200px;
  overflow: hidden;
}
.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-card:hover .blog-image img {
  transform: scale(1.05);
}
.blog-content {
  padding: 24px;
}
.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--gray-muted);
  margin-bottom: 12px;
}
.blog-content h3 {
  margin: 0 0 12px;
  font-size: 20px;
  color: var(--primary);
}
.blog-content p {
  margin: 0 0 16px;
  color: #666;
  line-height: 1.6;
}
.blog-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}
.blog-link:hover {
  color: var(--cyan);
}
.blog-cta {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.blog-cta p {
  margin-bottom: 20px;
  color: var(--gray-muted);
}

/* ---------- Executive card ---------- */
.exec-card {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px;
  max-width: 720px;
  margin: 0 auto;
}
.exec-avatar {
  width: 88px; height: 88px;
  flex: 0 0 88px;
  overflow: hidden;
}
.exec-role {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 8px;
}
.exec-name {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 24px;
}
.exec-contact {
  margin: 0;
  font-size: 15px;
  color: #333;
}
.exec-contact .dot { margin: 0 10px; color: var(--divider); }

/* ---------- ICMDA link cards ---------- */
.link-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.link-card {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: background .15s ease, border-color .15s ease, transform .2s ease;
}
.link-card:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--cyan);
  color: var(--white);
  transform: translateY(-2px);
}
.link-card-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}
.link-card-title {
  font-size: 20px;
  font-weight: 700;
}
.link-card-arrow {
  margin-top: 8px;
  font-size: 18px;
  transition: transform .2s ease;
}
.link-card:hover .link-card-arrow { transform: translateX(4px); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-block {
  background: var(--white);
  padding: 28px;
  border: 1px solid var(--border);
}
.contact-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 12px;
}
.contact-block p { margin: 0 0 4px; font-size: 16px; color: #1a1a1a; }
.contact-block a { font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer {
  background: #00374F;
  color: var(--off-2);
  padding: 64px 0 24px;
  font-size: 14px;
}
.footer-inner {
  display: grid;
  gap: 32px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 4px;
}
.footer-motto {
  font-size: 14px;
  font-style: italic;
  color: var(--cyan);
  margin: 0;
}
.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
}
.footer-nav a {
  color: var(--off-2);
  font-size: 14px;
  font-weight: 600;
}
.footer-nav a:hover { color: var(--cyan); }

.footer-bottom {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.footer-bottom a { color: var(--cyan); }
.footer-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--off-2);
  transition: background 0.2s ease, transform 0.2s ease;
}
.social-link:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}
.footer-actions .btn {
  min-width: 220px;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

/* Tablet (<=1023px) */
@media (max-width: 1023px) {
  :root {
    --container-pad: 24px;
  }
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }

  .primary-nav > ul { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .two-col .col-narrow { position: static; }
  .two-col.reverse .col-image { order: 0; }

  .grid-3 { grid-template-columns: 1fr; gap: 16px; }

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

  .contact-grid { grid-template-columns: 1fr; gap: 20px; }
  .link-cards { grid-template-columns: 1fr; }

  .hero { min-height: 540px; }
  .hero-content { padding: 80px var(--container-pad); }
  .hero-motto { font-size: 19px; }
}

/* Mobile (<=767px) */
@media (max-width: 767px) {
  :root {
    --container-pad: 16px;
  }
  body { font-size: 16px; }
  .section { padding: 48px 0; }

  .brand-sub { display: none; }
  .brand-name { font-size: 18px; }

  .lead { font-size: 17px; }

  .exec-card { flex-direction: column; text-align: center; align-items: center; }
  .exec-contact { display: flex; flex-direction: column; gap: 4px; }
  .exec-contact .dot { display: none; }

  .member-card { padding: 28px 24px; }
  .activity-card { padding: 28px 24px; }
  .card-price { font-size: 30px; }

  .hero { min-height: 480px; }
  .hero-content { padding: 64px var(--container-pad); }
  .hero-motto { font-size: 17px; padding-left: 16px; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-brand { align-items: flex-start; }
  .footer-brand .brand-mark { margin-top: 4px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn { width: 100%; }
  .btn-primary { width: 100%; }
}
