:root {
  --navy: #0d1f2d;
  --navy-deep: #091721;
  --gold: #c3973c;
  --gold-soft: #f0d290;
  --text: #1d2a34;
  --muted: #5a6975;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(13, 31, 45, 0.12);
  --radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f7f7f4 0%, #f4f7fb 100%);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { font: inherit; }

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.container-members {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(9, 23, 33, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.brand-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(195, 151, 60, 0.18);
  border: 2px solid rgba(240, 210, 144, 0.85);
}

.brand strong { display: block; font-size: 1rem; }
.brand small {
  display: block;
  opacity: 0.72;
  font-size: 0.7rem;
  letter-spacing: 0.03em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible { color: var(--gold-soft); }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  padding: 8px 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 10px;
  margin: 6px 0;
}

.hero {
  background: radial-gradient(circle at left top, rgba(195, 151, 60, 0.18), transparent 26%),
    linear-gradient(135deg, #0d1f2d 0%, #123145 46%, #0b1825 100%);
  color: var(--white);
  padding: 88px 0 74px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 50px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(237, 236, 233, 0.878);
  border: 1px solid rgba(195, 151, 60, 0.25);
  color: var(--navy);
  font-size: 0.90rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 3vw, 4rem);
  line-height: 1.08;
  margin: 24px 0 18px;
  letter-spacing: -0.04em;
}

.hero-copy h2 {
  font-size: clamp(1.1rem, 1.4vw, 1.7rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin: 0 0 18px;
  font-weight: 600;
}

.hero-copy p {
  margin: 0;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.77);
  font-size: 1.08rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #d9b560 100%);
  color: var(--navy-deep);
  box-shadow: 0 12px 24px rgba(195, 151, 60, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.quick-stats {
  list-style: none;
  padding: 0;
  margin: 38px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 1fr));
  gap: 16px;
}

.quick-stats li {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px 16px;
}

.quick-stats strong { display: block; font-size: 1.5rem; }
.quick-stats span { font-size: 0.8rem; color: rgba(255, 255, 255, 0.7); }

.hero-visual { position: relative; }

.image-stack {
  position: relative;
  width: min(100%, 600px);
  margin-left: auto;
  padding: 0px 0 0px 10px;
}

.image-stack::before {
  content: "";
  position: absolute;
  inset: 0 0 0px 24px;
  background: linear-gradient(135deg, rgba(195, 151, 60, 0.4), transparent 40%);
  border-radius: 32px;
}

.slide-track { position: relative; min-height: 360px; min-width: 600px }

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
  z-index: 1;
}

.slide.active { opacity: 1; }

.slide-dots {
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(9, 23, 33, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  z-index: 3;
}

.dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}

.dot.active {
  background: var(--gold-soft);
  box-shadow: 0 0 0 4px rgba(195, 151, 60, 0.15);
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  z-index: 2;
}

.card-top { right: 0px; top: 1px; max-width: 250px; }
.card-bottom { left: 0; bottom: 0px; max-width: 250px; }

.card-label {
  display: block;
  color: var(--muted);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.floating-card strong { font-size: 0.84rem; line-height: 1.0; }

.section { padding: 32px 0; }

.about-page {
  position: relative;
  overflow: hidden;
  padding-top: 18px;
  padding-bottom: 12px;
}

.section-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.section-copy {
  position: relative;
  z-index: 1;
}

.section-copy::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 38%;
  width: min(68vw, 560px);
  height: min(68vw, 560px);
  background: url('images/logo.png') center/contain no-repeat;
  opacity: 0.18;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.section-copy h3,
.section-heading h3 {
  margin: 12px 0 8px;
  font-size: clamp(1.9rem, 1.9vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--navy);
}

.section-copy p,
.clients-intro {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 1.02rem;
}

.pillars-panel { display: grid; gap: 12px; }

.panel-card,
.contact-card,
.client-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(13, 31, 45, 0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel-card { padding: 16px 18px; }

.panel-card h4,
.contact-card h4,
.client-card h4 {
  margin: 0 0 14px;
  font-size: 1.2rem;
  color: var(--navy);
}

.panel-card ul,
.panel-card ol,
.client-card ul,
.contact-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.panel-card li,
.panel-card ol li,
.client-card li,
.contact-card li { margin-bottom: 5px; }

.strengths-card {
  background: #ffffff;
}

.section-heading { margin-bottom: 34px; }
.section-heading.center { text-align: center; }

.committee-section {
  background: linear-gradient(180deg, rgba(13, 31, 45, 0.03), rgba(255, 255, 255, 0.7));
  padding-top: 10px;
}

.committee-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.committee-image {
  position: relative;
}

.committee-image-label {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(9, 23, 33, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.committee-image img {
  width: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(13, 31, 45, 0.06);
}

.committee-copy h3 {
  margin: 22px 0 16px;
  font-size: clamp(2rem, 2vw, 2.9rem);
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: var(--navy);
}

.committee-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.committee-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.committee-list li {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(13, 31, 45, 0.06);
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(13, 31, 45, 0.06);
  padding: 16px 18px;
  color: var(--muted);
}

.committee-list strong {
  color: var(--navy);
}

.services { background: rgba(255, 255, 255, 0.5); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(13, 31, 45, 0.06);
}

.service-thumb {
  height: 180px;
  background: #dfe7ef;
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-body { padding: 22px 20px 24px; }
.service-link { display: block; height: 100%; color: inherit; }

.service-body h4 {
  font-size: 1.3rem;
  margin: 0 0 10px;
  color: var(--navy);
}

.service-body p { margin: 0; color: var(--muted); }

.service-detail-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  align-items: center;
}

.service-detail-image img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.service-detail-copy h3 {
  margin: 22px 0 16px;
  font-size: clamp(2rem, 2.2vw, 3rem);
  line-height: 1.2;
  color: var(--navy);
}

.service-detail-copy p { color: var(--muted); margin: 0 0 18px; }

.info-box {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(13,31,45,0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 20px;
  margin: 20px 0 26px;
}

.info-box strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
}

.info-box ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.info-box li { margin-bottom: 8px; }

.clients {
  background: linear-gradient(180deg, rgba(13, 31, 45, 0.04), rgba(255,255,255,0.65));
  padding-top: 42px;
}

.clients-intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 28px;
  font-size: 1.08rem;
}

.client-collage {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 180px;
  gap: 12px;
  margin: 0 0 32px;
  padding: 8px 0;
}

.client-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: 0 12px 26px rgba(13, 31, 45, 0.12);
  border: 1px solid rgba(13, 31, 45, 0.06);
}

.client-collage img:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.client-collage img:nth-child(2) {
  grid-column: span 1;
}

.client-collage img:nth-child(3) {
  grid-column: span 1;
}

.client-collage img:nth-child(4) {
  grid-column: span 2;
}

.client-collage img:nth-child(5) {
  grid-column: span 1;
}

.client-collage img:nth-child(6) {
  grid-column: span 1;
}

.members-page {
  background: linear-gradient(180deg, rgba(13, 31, 45, 0.04), rgba(255, 255, 255, 0.7));
  padding-top: 18px;
}

.members-overview {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: start;
}

.members-overview .panel-card {
  margin-top: 18px;
}

.eligibility-list,
.membership-points {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.eligibility-list li,
.membership-points li {
  margin-bottom: 8px;
}

.member-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.btn-light {
  background: rgba(13, 31, 45, 0.04);
  color: var(--navy);
  border: 1px solid rgba(13, 31, 45, 0.12);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--navy);
  font-weight: 700;
}

.member-search-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 22px;
}

.member-search-box {
  display: grid;
  gap: 8px;
  flex: 1 1 300px;
  max-width: 480px;
  color: var(--navy);
  font-weight: 700;
}

.member-search-box input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(13, 31, 45, 0.12);
  border-radius: 14px;
  padding: 0 16px;
  font: inherit;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 18px rgba(13, 31, 45, 0.04);
}

.member-search-box input:focus {
  outline: 2px solid rgba(195, 151, 60, 0.35);
  border-color: rgba(195, 151, 60, 0.6);
}

.member-search-count {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.members-table-wrap {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(13, 31, 45, 0.06);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow-x: auto;
}

.members-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 380px;
  table-layout: fixed;
}

.members-table th,
.members-table td {
  padding: 4px 6px;
  text-align: left;
  border-bottom: 1px solid rgba(13, 31, 45, 0.08);
  white-space: nowrap;
}

.members-table thead th {
  background: rgba(13, 31, 45, 0.04);
  color: var(--navy);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.members-table tbody td {
  color: var(--muted);
  font-size: 0.8rem;
}

.members-table th:nth-child(1),
.members-table td:nth-child(1) { width: 8%; }

.members-table th:nth-child(2),
.members-table td:nth-child(2) { width: 10%; }

.members-table th:nth-child(3),
.members-table td:nth-child(3) { width: 18%; }

.members-table th:nth-child(4),
.members-table td:nth-child(4) { width: 30%; }

.members-table tbody tr:hover {
  background: rgba(195, 151, 60, 0.03);
}

.client-groups {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.client-card { padding: 22px 20px; }

.contact { padding-bottom: 60px; }

.contact-page {
  position: relative;
  overflow: hidden;
}

.contact-page .contact-copy {
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.contact-stack {
  position: relative;
  z-index: 0;
  margin-top: 18px;
  color: var(--muted);
}

.contact-stack::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(68vw, 560px);
  height: min(68vw, 560px);
  background: url('images/logo.png') center/contain no-repeat;
  opacity: 0.18;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.contact-stack p { margin-top: 0; margin-bottom: 20px; }

.contact-stack a,
.contact-card a {
  color: var(--navy);
  font-weight: 600;
}

.contact-card { padding: 10px 22px; }

.contact-card li {
  display: grid;
  gap: 4px;
  margin-bottom: 8px;
  list-style: none;
  padding-left: 0;
}

.contact-card span,
.contact-card strong { display: block; }
.contact-card strong { color: var(--navy); }

.contact-form-card {
  margin-top: 20px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 600;
}

.form-field-full { grid-column: 1 / -1; }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(13, 31, 45, 0.14);
  border-radius: 12px;
  background: rgba(247, 249, 251, 0.9);
  padding: 12px 14px;
  color: var(--navy-deep);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(195, 151, 60, 0.8);
  box-shadow: 0 0 0 4px rgba(195, 151, 60, 0.12);
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form .btn {
  width: fit-content;
  border: none;
  cursor: pointer;
}

.form-status {
  min-height: 22px;
  margin-top: 8px;
  font-size: 0.95rem;
  font-weight: 600;
}

.form-status.success {
  color: #0d7a3a;
}

.form-status.error {
  color: #a92d2d;
}

.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.76);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-wrap p { margin: 0; }

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: center;
}

.visitor-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

@media (max-width: 980px) {
  .hero-grid,
  .section-grid,
  .contact-grid,
  .services-grid,
  .client-groups { grid-template-columns: 1fr 1fr; }

  .client-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 180px;
  }

  .client-collage img:nth-child(1),
  .client-collage img:nth-child(4) {
    grid-column: span 2;
  }

  .hero-grid,
  .section-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .client-groups { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .hero-visual { order: -1; }
}

@media (max-width: 720px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    background: rgba(9, 23, 33, 0.97);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .site-nav.open { display: flex; }
  .nav-toggle { display: block; }

  .hero { padding-top: 64px; }

  .quick-stats,
  .services-grid,
  .client-groups,
  .client-collage { grid-template-columns: 1fr; }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn { width: 100%; }

  .footer-wrap {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 18px 0;
  }
}
