:root {
  --ink: #17111d;
  --muted: #665a70;
  --purple: #3a0057;
  --purple-2: #6f178c;
  --gold: #cda448;
  --gold-2: #f1d276;
  --paper: #fffaf0;
  --surface: #ffffff;
  --line: #e9dfcc;
  --soft: #f7efe1;
  --shadow: 0 18px 45px rgba(38, 19, 48, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.top-strip {
  background: var(--purple);
  color: #fff;
  font-size: 0.88rem;
}

.top-strip .container {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.top-strip a {
  color: #fff3c2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 240, 0.94);
  border-bottom: 1px solid rgba(205, 164, 72, 0.24);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 126px;
  height: auto;
}

.brand span {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #33213b;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--purple-2);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 2px solid var(--line);
  background: var(--surface);
  color: var(--purple);
  border-radius: var(--radius);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background: var(--purple);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(58, 0, 87, 0.24);
}

.btn.gold {
  background: var(--gold);
  color: #241626;
}

.btn.ghost {
  background: transparent;
  color: var(--purple);
  border-color: rgba(58, 0, 87, 0.22);
}

.hero .btn.ghost,
.dark .btn.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #16091f;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(23, 10, 34, 0.9) 0%, rgba(23, 10, 34, 0.64) 38%, rgba(23, 10, 34, 0.1) 72%), var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero .container {
  position: relative;
  padding: 110px 0 86px;
}

.hero h1,
.page-hero h1 {
  max-width: 740px;
  margin: 0;
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(2.85rem, 5.6vw, 5.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero p {
  max-width: 630px;
  margin-top: 22px;
  font-size: clamp(1.06rem, 2vw, 1.28rem);
  color: #fff6d5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 650px;
  gap: 12px;
  margin-top: 54px;
}

.stat {
  border-left: 3px solid var(--gold);
  padding-left: 16px;
}

.stat strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1.1;
}

.stat span {
  color: #e8d9a1;
  font-size: 0.93rem;
}

.section {
  padding: 88px 0;
}

.section.soft {
  background: var(--soft);
}

.section.dark {
  background: var(--purple);
  color: #fff;
}

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section h2,
.page-hero h1 {
  margin: 0;
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(2.15rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-head p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.04rem;
}

.dark .section-head p,
.dark .eyebrow {
  color: #ead999;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.benefit,
.post-card,
.plan-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(43, 24, 54, 0.08);
}

.feature-card {
  min-height: 170px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-card h3,
.benefit h3,
.plan-card h3,
.contact-card h3 {
  margin: 0;
  color: var(--purple);
  font-size: 1.05rem;
  line-height: 1.25;
}

.feature-card span {
  color: var(--gold);
  font-weight: 900;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
}

.image-frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #d8c79d;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-points {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.point {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}

.point-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(205, 164, 72, 0.22);
  color: var(--purple);
  font-weight: 900;
}

.mission {
  min-height: 440px;
  display: grid;
  align-items: center;
  text-align: center;
  background:
    linear-gradient(rgba(58, 0, 87, 0.78), rgba(58, 0, 87, 0.78)),
    url("assets/images/live-slider-002.png") center/cover;
}

.mission h2 {
  max-width: 920px;
  margin: 0 auto;
}

.membership {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.benefit-list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.benefit {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 18px;
  align-items: start;
}

.benefit img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.meetup-box {
  padding: 34px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, var(--purple), #7b128f);
  box-shadow: var(--shadow);
}

.meetup-box p {
  color: #f8edc5;
}

.attendance-hero {
  --page-image: url("assets/images/live-slider-001.png");
}

.attendance-section {
  background: #f6f8fb;
}

.attendance-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.attendance-panel,
.attendance-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(43, 24, 54, 0.08);
}

.attendance-panel {
  padding: 28px;
  position: sticky;
  top: 22px;
}

.attendance-panel strong {
  display: block;
  margin: 10px 0 14px;
  color: var(--purple);
  font-family: Merriweather, Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.2;
}

.attendance-qr {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.attendance-qr h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.25;
}

.attendance-qr img {
  margin: 0 auto;
  width: min(100%, 210px);
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.attendance-form {
  padding: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.attendance-form label,
.segmented-field legend {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.attendance-form input,
.attendance-form select {
  width: 100%;
  min-height: 50px;
  margin-top: 8px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

.attendance-form input:focus,
.attendance-form select:focus {
  outline: 3px solid rgba(205, 164, 72, 0.28);
  border-color: var(--gold);
}

.segmented-field {
  margin: 22px 0;
  padding: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.segmented-field legend {
  padding: 0 8px;
}

.segmented-field label {
  min-width: 112px;
  min-height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: #f7f2e6;
}

.segmented-field input,
.checkbox-row input {
  width: auto;
  min-height: auto;
  margin: 0;
}

.first-time-fields {
  margin-top: 8px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.checkbox-row {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.form-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn.ghost {
  border-color: rgba(43, 24, 54, 0.22);
  background: #ffffff;
  color: var(--purple);
}

.form-status {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 8px;
  background: #eef7ef;
  color: #275a31;
  font-weight: 800;
}

.form-status.error {
  background: #fff1ed;
  color: #9b2f1d;
}

.form-status.warning {
  background: #fff8df;
  color: #735515;
}

.member-hero .container {
  min-height: 390px;
}

.member-hero .hero-cta {
  margin-top: 24px;
}

.membership-framework-section {
  background: #ffffff;
  padding-block: 70px;
}

.framework-panel {
  max-width: 1120px;
  margin-inline: auto;
  padding: 34px 28px 38px;
  border: 1px solid rgba(209, 169, 70, 0.36);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(35, 18, 47, 0.1);
}

.framework-panel .section-head {
  margin-bottom: 28px;
}

.framework-panel .section-head p {
  color: var(--purple);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(122, 22, 149, 0.46);
  border-radius: 10px;
  background: #ffffff;
}

.vietnamese-table-wrap {
  margin-top: 22px;
}

.membership-table {
  width: 100%;
  min-width: 940px;
  border-collapse: collapse;
  table-layout: fixed;
}

.membership-table th,
.membership-table td {
  border: 1px solid rgba(122, 22, 149, 0.36);
  padding: 18px 20px;
  color: #1e1833;
  font-size: 0.98rem;
  line-height: 1.55;
  vertical-align: middle;
  word-break: normal;
  overflow-wrap: anywhere;
}

.membership-table thead th {
  padding: 16px 18px;
  background: #4a0068;
  color: #fff5c7;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-align: left;
  text-transform: uppercase;
}

.membership-table tbody th {
  color: #25005d;
  font-size: 1.32rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  overflow-wrap: normal;
  white-space: nowrap;
  word-break: normal;
}

.membership-table .dues {
  font-size: 1.35rem;
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
}

.membership-table .tier-col {
  width: 14%;
}

.membership-table .symbol-col {
  width: 18%;
}

.membership-table .dues-col {
  width: 13%;
}

.membership-table .access-col {
  width: 28%;
}

.membership-table .visibility-col {
  width: 27%;
}

.membership-table .event-col {
  width: 18%;
}

.membership-table-vi {
  min-width: 1040px;
}

.membership-table-vi tbody th {
  font-size: 1.12rem;
}

.membership-table-vi .tier-col {
  width: 12%;
}

.membership-table-vi .symbol-col {
  width: 17%;
}

.membership-table-vi .dues-col {
  width: 13%;
}

.membership-table-vi .access-col {
  width: 25%;
}

.membership-table-vi .visibility-col {
  width: 20%;
}

.tier-pearl th[scope="row"] {
  background: #f4e4ff;
  color: #3b0057;
}

.tier-ruby th[scope="row"] {
  background: #ffd7d4;
  color: #c60000;
}

.tier-jade th[scope="row"] {
  background: #dcf5c8;
  color: #09602c;
}

.tier-diamond th[scope="row"] {
  background: #dcefff;
  color: #17168a;
}

.tier-ruby .dues {
  color: #d10000;
}

.tier-jade .dues {
  color: #075f2c;
}

.tier-diamond .dues {
  color: #004fd0;
}

.tier-pearl .dues {
  color: #7b128f;
}

.centered {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.member-directory {
  background: #ffffff;
}

.member-directory .section-head {
  max-width: none;
}

.member-directory .section-head h2 {
  font-size: clamp(1.5rem, 6.2vw, 4rem);
  white-space: nowrap;
}

.member-logo-wall {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 72px;
  grid-auto-flow: dense;
  gap: 14px;
  align-items: stretch;
}

.member-directory-cta {
  margin-top: 46px;
  text-align: center;
}

.member-logo-card {
  display: grid;
  grid-template-rows: minmax(122px, 1fr) auto;
  align-content: stretch;
  justify-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px 18px 26px;
  background: #ffffff;
  color: var(--ink);
  text-align: center;
  box-shadow: 0 14px 34px rgba(33, 18, 43, 0.08);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.member-logo-card:hover,
.member-logo-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 22px 42px rgba(33, 18, 43, 0.14);
  outline: none;
}

.member-logo-card.tier-diamond {
  grid-column: span 4;
  grid-row: span 4;
  grid-template-rows: minmax(168px, 1fr) auto;
  border: 3px solid rgba(209, 169, 70, 0.75);
  background: linear-gradient(135deg, #fffdf7, #ffffff 58%, #f8efd9);
}

.member-logo-card.tier-platinum {
  grid-column: span 3;
  grid-row: span 4;
  grid-template-rows: minmax(168px, 1fr) auto;
  gap: 22px;
  padding: 24px 16px 26px;
}

.member-logo-card.tier-jade {
  grid-column: span 3;
  grid-row: span 4;
  grid-template-rows: minmax(168px, 1fr) auto;
  gap: 22px;
  padding: 24px 16px 26px;
  border-color: rgba(35, 140, 108, 0.38);
  background: linear-gradient(135deg, #ffffff, #f3fff8);
}

.member-logo-card.tier-ruby {
  grid-column: span 3;
  grid-row: span 3;
  grid-template-rows: minmax(128px, 1fr) auto;
  gap: 14px;
  padding: 20px 14px 22px;
  border-color: rgba(143, 37, 42, 0.28);
  background: linear-gradient(135deg, #ffffff, #fff7f6);
}

.member-logo-card.tier-gold {
  grid-column: span 2;
  grid-row: span 2;
}

.member-logo-card.wide {
  grid-column: span 3;
}

.logo-mark {
  width: 68px;
  height: 68px;
  display: inline-grid;
  place-items: center;
  border: 2px solid rgba(209, 169, 70, 0.8);
  border-radius: 50%;
  background: #2a0639;
  color: #ffffff;
  font-family: "Times New Roman", Georgia, serif;
  font-size: 1.34rem;
  font-weight: 900;
  line-height: 1;
}

.tier-diamond .logo-mark {
  width: 124px;
  height: 124px;
  font-size: 2rem;
  background: radial-gradient(circle at 35% 30%, #6f2a86, #2a0639 68%);
}

.tier-platinum .logo-mark {
  width: 92px;
  height: 92px;
  font-size: 1.62rem;
}

.member-logo-image {
  width: 108px;
  height: 100%;
  min-height: 96px;
  display: inline-grid;
  place-items: center;
  align-self: stretch;
}

.member-logo-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.tier-diamond .member-logo-image {
  width: min(170px, 82%);
  min-height: 160px;
}

.tier-platinum .member-logo-image,
.tier-jade .member-logo-image {
  width: min(166px, 84%);
  min-height: 158px;
}

.tier-ruby .member-logo-image {
  width: min(146px, 84%);
  min-height: 124px;
}

.member-logo-image.compact-logo {
  width: min(112px, 82%);
  min-height: 92px;
}

.member-logo-card strong {
  max-width: 20ch;
  font-size: 0.96rem;
  line-height: 1.18;
  align-self: end;
}

.member-logo-card.tier-diamond strong {
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
}

.member-logo-card.tier-platinum strong {
  font-size: 1.16rem;
}

.member-logo-card.tier-jade strong {
  max-width: 18ch;
  font-size: clamp(1rem, 1.35vw, 1.1rem);
  line-height: 1.13;
}

.member-logo-card.tier-ruby strong {
  max-width: 18ch;
  font-size: clamp(0.96rem, 1.25vw, 1.05rem);
  line-height: 1.12;
}

.member-logo-card small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.member-modal[hidden] {
  display: none;
}

.member-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 22px;
}

.member-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 8, 28, 0.66);
}

.member-modal-card {
  position: relative;
  width: min(100%, 620px);
  border-radius: 8px;
  padding: 34px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(10, 4, 16, 0.35);
}

.member-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #ffffff;
  color: var(--ink);
  font-size: 1.45rem;
  cursor: pointer;
}

.member-modal-card h2 {
  margin: 8px 0 12px;
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.member-modal-card p {
  color: var(--muted);
}

.member-modal-card dl {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
}

.member-modal-card dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.member-modal-card dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.member-modal-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.member-modal-card a {
  color: var(--purple);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.quote {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.quote p {
  color: var(--muted);
}

.quote-person {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
}

.quote-person img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

.quote-person strong,
.quote-person span {
  display: block;
}

.quote-person span {
  color: var(--muted);
  font-size: 0.9rem;
}

.posts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.post-card {
  overflow: hidden;
}

.post-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.post-card .post-body {
  padding: 22px;
}

.post-meta {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.post-card h3 {
  margin: 8px 0 12px;
  color: var(--purple);
  font-size: 1.22rem;
  line-height: 1.25;
}

.post-card p,
.plan-card p,
.contact-card p,
.benefit p,
.point p {
  color: var(--muted);
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(35, 12, 47, 0.92), rgba(70, 0, 94, 0.7)),
    var(--page-image, url("assets/images/live-slider-001.png")) center/cover;
  color: #fff;
}

.page-hero .container {
  min-height: 360px;
  display: grid;
  align-items: end;
  padding: 80px 0 62px;
}

.page-hero p {
  max-width: 720px;
  margin-top: 16px;
  color: #f5e8b8;
  font-size: 1.12rem;
}

.training-content {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 46px;
  align-items: start;
}

.copy-panel {
  padding: 36px;
  border-left: 4px solid var(--gold);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.copy-panel p + p {
  margin-top: 16px;
}

.check-list {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.plan-card {
  overflow: hidden;
}

.plan-card.featured {
  border-color: rgba(205, 164, 72, 0.75);
  box-shadow: 0 20px 48px rgba(58, 0, 87, 0.18);
}

.plan-head {
  padding: 28px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.featured .plan-head {
  background: linear-gradient(135deg, var(--purple), #7c178e);
  color: #fff;
}

.featured .plan-head h3 {
  color: #fff;
}

.featured .plan-head p {
  color: #f0dfad;
}

.price {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 900;
}

.plan-card ul {
  margin: 0;
  padding: 24px 28px 28px;
  list-style: none;
  display: grid;
  gap: 12px;
}

.plan-card li {
  display: flex;
  gap: 10px;
  color: var(--muted);
}

.plan-card li::before {
  content: "✓";
  color: var(--purple);
  font-weight: 900;
}

.plan-card li.no::before {
  content: "×";
  color: #a59aa9;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
  align-items: start;
}

.sidebar {
  display: grid;
  gap: 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-card {
  padding: 24px;
}

.values-grid,
.people-grid {
  display: grid;
  gap: 18px;
}

.values-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-section {
  position: relative;
  overflow: hidden;
  background: #eef3f8;
}

.team-section + .team-section {
  padding-top: 28px;
}

.founding-section {
  padding-bottom: 76px;
}

.board-section {
  padding: 58px 0 74px;
}

.founding-section::after {
  content: "";
  width: 220px;
  height: 520px;
  position: absolute;
  right: -42px;
  bottom: -60px;
  opacity: 0.12;
  background: repeating-linear-gradient(118deg, transparent 0 14px, #081d3a 14px 18px, transparent 18px 30px);
  transform: skewX(-10deg);
  pointer-events: none;
}

.team-section .container {
  position: relative;
  z-index: 1;
}

.team-section .section-head {
  margin-bottom: 64px;
}

.team-section .section-head .eyebrow {
  color: #ff4f56;
}

.team-section .section-head h2 {
  color: #081d3a;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.board-section .section-head {
  margin-bottom: 36px;
}

.board-section .section-head h2 {
  font-size: clamp(1.35rem, 2vw, 1.55rem);
}

.people-grid {
  justify-content: center;
}

.founding-grid {
  grid-template-columns: repeat(4, minmax(0, 260px));
  gap: 20px;
}

.board-grid {
  grid-template-columns: repeat(3, minmax(0, 260px));
  gap: 42px 20px;
  max-width: 820px;
  margin: 0 auto;
}

.founder-card {
  position: relative;
  overflow: visible;
  padding-bottom: 66px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.founder-card img {
  width: 100%;
  aspect-ratio: 0.96 / 1;
  display: block;
  object-fit: cover;
  object-position: center top;
  background: #f4f1ef;
}

.founder-card div {
  width: 76%;
  min-height: 128px;
  margin: 0 auto;
  padding: 28px 16px 22px;
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 0;
  display: grid;
  align-content: center;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(8, 29, 58, 0.08);
}

.founder-card h3 {
  margin: 0;
  color: #071b3b;
  font-size: 1.28rem;
  line-height: 1.15;
}

.founding-grid .founder-card h3 {
  font-size: 1.22rem;
  white-space: nowrap;
}

.founder-role,
.tier-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(205, 164, 72, 0.18);
  color: var(--purple);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.founder-role {
  justify-content: center;
  min-height: auto;
  margin-top: 16px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #293750;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.board-grid .founder-card h3 {
  font-size: 1.12rem;
}

.board-grid .founder-role {
  margin-top: 14px;
  font-size: 0.56rem;
  letter-spacing: 0.09em;
}

.spotlight-card {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.spotlight-media {
  background: #efe6d4;
}

.spotlight-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.spotlight-body {
  padding: 34px;
}

.spotlight-body h3 {
  margin: 14px 0 12px;
  color: var(--purple);
  font-family: Merriweather, Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
}

.spotlight-body p + p {
  margin-top: 12px;
}

.spotlight-body p {
  color: var(--muted);
}

.tier-badge.diamond {
  background: rgba(205, 164, 72, 0.22);
}

.tier-badge.jade {
  background: rgba(65, 158, 122, 0.16);
  color: #145f44;
}

.member-meta {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.member-meta a {
  color: var(--purple);
  font-weight: 800;
}

.site-footer {
  color: #fff;
  background: #201027;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1fr;
  gap: 36px;
  padding: 58px 0;
}

.footer-main img {
  width: 138px;
}

.footer-main h2,
.footer-main h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
}

.footer-main p,
.footer-main a {
  color: #d8c9df;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.newsletter {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.newsletter input {
  min-width: 0;
  flex: 1;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 0 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  color: #cdbbd6;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 18px 20px 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links.open {
    display: flex;
  }

  .feature-grid,
  .posts,
  .plans,
  .testimonials,
  .attendance-layout,
  .contact-grid,
  .footer-main,
  .values-grid,
  .people-grid,
  .membership,
  .training-content,
  .spotlight-card,
  .split,
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 640px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .attendance-panel {
    position: static;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .top-strip .container {
    justify-content: center;
    text-align: center;
  }

  .brand img {
    width: 108px;
  }

  .hero .container {
    padding: 88px 0 58px;
  }

  .section {
    padding: 64px 0;
  }

  .feature-grid,
  .gallery,
  .values-grid,
  .people-grid {
    grid-template-columns: 1fr;
  }

  .team-section .section-head {
    margin-bottom: 44px;
  }

  .founder-card {
    max-width: 310px;
    margin: 0 auto;
  }

  .founding-grid .founder-card h3 {
    white-space: normal;
  }

  .founding-grid,
  .board-grid {
    max-width: 360px;
    gap: 26px;
  }

  .copy-panel,
  .meetup-box,
  .spotlight-body {
    padding: 24px;
  }

  .spotlight-media img {
    min-height: 320px;
  }

  .newsletter {
    flex-direction: column;
  }

  .attendance-form,
  .attendance-panel {
    padding: 22px;
  }

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

/* Live-site matching overrides for the May 2026 Lotus Club public site. */
body {
  background: #ffffff;
}

.top-strip {
  background: #d7d7d7;
  color: #ffffff;
  font-family: Rubik, Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
}

.top-strip .container {
  min-height: 46px;
  justify-content: flex-start;
  gap: 54px;
}

.top-strip a {
  color: #ffffff;
}

.top-strip span::before {
  color: var(--gold);
  margin-right: 9px;
}

.top-strip span:first-child::before {
  content: "☎";
}

.top-strip span:nth-child(2)::before {
  content: "✉";
}

.top-strip span:nth-child(3)::before {
  content: "●";
}

.top-strip span:last-child {
  margin-left: auto;
  font-size: 1.05rem;
}

.mobile-phone {
  display: none;
}

.site-header {
  position: relative;
  top: auto;
  background: #3a0057;
  border-bottom: 0;
  backdrop-filter: none;
}

.nav-wrap {
  min-height: 196px;
  gap: 34px;
}

.brand img {
  width: 166px;
}

.nav-links {
  flex: 1;
  justify-content: center;
  gap: 22px;
  color: #ffffff;
  font-family: Rubik, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
}

.nav-links a {
  color: #ffffff;
}

.nav-links a.active,
.nav-links a:hover {
  color: #ffffff;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  display: none;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  top: 100%;
  left: -18px;
  width: 220px;
  height: 14px;
  z-index: 49;
}

.nav-dropdown > a::after {
  content: "⌄";
  display: inline-block;
  margin-left: 7px;
  font-size: 0.95em;
}

.submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: -18px;
  min-width: 220px;
  display: none;
  padding: 12px 0;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(20, 8, 28, 0.22);
  z-index: 50;
}

.submenu a {
  display: block;
  padding: 10px 18px;
  color: #2a1734;
  white-space: nowrap;
}

.submenu a:hover {
  color: var(--purple);
  background: #f6f1e7;
}

.nav-dropdown:hover .submenu,
.nav-dropdown:focus-within .submenu {
  display: block;
}

.header-support {
  min-width: 244px;
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 14px;
  align-items: center;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.header-support img {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  image-rendering: auto;
}

.header-support span {
  font-size: 0.98rem;
  font-weight: 800;
}

.header-support strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.1;
}

.hero {
  min-height: 805px;
  align-items: start;
  background: #0f0a12;
}

.hero::before {
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  padding: 118px 0 0;
}

.hero-kicker {
  display: block;
  margin-bottom: 18px;
  color: #ffffff;
  font-family: Rubik, Inter, sans-serif;
  font-size: 1.08rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 680px;
  font-family: "Times New Roman", "Segoe UI", serif;
  font-size: clamp(3rem, 4.5vw, 4.3rem);
  line-height: 1.14;
  color: #ffffff;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.play-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
  color: #ffffff;
  font-weight: 800;
}

.play-link span {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.play-link span::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid #ffffff;
}

.hero + .section.soft {
  position: relative;
  z-index: 3;
  margin-top: -322px;
  padding: 0 0 92px;
  background: transparent;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.feature-card {
  min-height: 230px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  justify-content: flex-start;
  border: 0;
  border-radius: 0;
  background: rgba(18, 33, 58, 0.82);
  box-shadow: none;
  color: #ffffff;
  text-decoration: none;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.feature-card:hover,
.feature-card:focus-visible {
  background: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(35, 12, 47, 0.22);
}

.feature-card:first-child {
  background: var(--gold);
}

.feature-grid:hover .feature-card:first-child:not(:hover) {
  background: rgba(18, 33, 58, 0.82);
  box-shadow: none;
  transform: none;
}

.feature-card::before {
  content: "";
  display: block;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
  background: var(--feature-icon) center / contain no-repeat;
  transition: transform 180ms ease;
}

.feature-card:hover::before,
.feature-card:focus-visible::before {
  transform: translateY(-2px);
}

.feature-card::after {
  content: "";
  width: 94px;
  height: 94px;
  position: absolute;
  right: -10px;
  bottom: 8px;
  z-index: 1;
  background: var(--feature-icon) center / contain no-repeat;
  opacity: 0;
  transform: translate(10px, 10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.feature-card:hover::after,
.feature-card:focus-visible::after {
  opacity: 0.1;
  transform: translate(0, 0);
}

.feature-card:nth-child(1) {
  --feature-icon: url("assets/icons/feature-chart.svg");
}

.feature-card:nth-child(2) {
  --feature-icon: url("assets/icons/feature-trust.svg");
}

.feature-card:nth-child(3) {
  --feature-icon: url("assets/icons/feature-monitor.svg");
}

.feature-card:nth-child(4) {
  --feature-icon: url("assets/icons/feature-charity.svg");
}

.feature-card:nth-child(1)::before,
.feature-card:nth-child(2)::before,
.feature-card:nth-child(3)::before,
.feature-card:nth-child(4)::before,
.feature-card:nth-child(1)::after,
.feature-card:nth-child(2)::after,
.feature-card:nth-child(3)::after,
.feature-card:nth-child(4)::after {
  content: "";
}

.feature-card h3 {
  color: #ffffff;
  font-family: Merriweather, Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  line-height: 1.34;
  position: relative;
  z-index: 2;
  max-width: 190px;
}

.feature-card span {
  display: inline-block;
  width: fit-content;
  margin-top: auto;
  position: relative;
  z-index: 3;
  color: #ffffff;
  font-weight: 900;
  font-size: 0.86rem;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  text-decoration: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.feature-card:first-child span,
.feature-card:hover span,
.feature-card:focus-visible span {
  opacity: 1;
  transform: translateY(0);
}

.feature-grid:hover .feature-card:first-child:not(:hover) span {
  opacity: 0;
  transform: translateY(8px);
}

.feature-card:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: -8px;
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(35, 12, 47, 0.9), rgba(70, 0, 94, 0.72)),
    var(--page-image, url("assets/images/live-slider-001.png")) center/cover;
}

.footer-main img {
  width: 118px;
}

@media (max-width: 980px) {
  .top-strip {
    background: #5c266f;
  }

  .top-strip .container {
    justify-content: center;
    gap: 8px 14px;
  }

  .top-strip span {
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--gold);
    color: #ffffff;
  }

  .mobile-phone {
    display: inline-block;
  }

  .top-strip span:nth-child(3),
  .top-strip span:last-child {
    display: none;
  }

  .top-strip span::before {
    color: #ffffff;
  }

  .site-header {
    background: #3a0057;
  }

  .nav-wrap {
    min-height: 158px;
  }

  .brand img {
    width: 118px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    border-color: rgba(255, 255, 255, 0.8);
    color: #ffffff;
    background: transparent;
  }

  .nav-links {
    top: 100%;
    background: #3a0057;
    color: #ffffff;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-dropdown {
    display: grid;
  }

  .nav-dropdown::before {
    display: none;
  }

  .submenu {
    position: static;
    display: grid;
    min-width: 0;
    margin-top: 8px;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .submenu a {
    color: #e7d7ed;
    padding: 5px 0 5px 14px;
  }

  .header-support {
    display: none;
  }

  .hero {
    min-height: 740px;
  }

  .hero .container {
    padding-top: 214px;
  }

  .hero + .section.soft {
    margin-top: 0;
    padding: 54px 0 70px;
    background: #ffffff;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .feature-card {
    min-height: 200px;
  }

  .feature-card span {
    opacity: 1;
    transform: none;
  }

  .member-logo-wall {
    grid-template-columns: 1fr;
  }

  .member-logo-wall {
    grid-auto-rows: auto;
  }

  .member-logo-card,
  .member-logo-card.tier-diamond,
  .member-logo-card.tier-platinum,
  .member-logo-card.tier-jade,
  .member-logo-card.tier-ruby,
  .member-logo-card.tier-gold,
  .member-logo-card.wide {
    grid-column: auto;
    grid-row: auto;
    grid-template-rows: minmax(118px, 1fr) auto;
    min-height: 230px;
  }

}

@media (max-width: 620px) {
  .hero {
    min-height: 570px;
  }

  .hero::before {
    background-position: 56% center;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 9.2vw, 2.35rem);
    line-height: 1.14;
  }

  .hero-kicker {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .play-link {
    margin-top: 26px;
    font-size: 0;
  }

  .play-link span {
    width: 58px;
    height: 58px;
  }

  .member-modal-card {
    padding: 28px 20px 22px;
  }

  .member-modal-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

}
