@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Poiret+One&family=Josefin+Sans:wght@100;300;400&display=swap');

/* ─── Art Deco Colour Palette ─── */
:root {
  --gold:       #C9A84C;
  --gold-light: #E8D08A;
  --gold-dark:  #8B6914;
  --ivory:      #F5F0E8;
  --cream:      #EDE7D9;
  --charcoal:   #1A1A1A;
  --ink:        #2D2924;
  --mid:        #4A3F35;
  --muted:      #7A6E64;
  --border:     #C9A84C;
  --sidebar-w:  280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; }

body {
  background: var(--charcoal);
  color: var(--ink);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  line-height: 1.75;
  min-height: 100vh;
  display: flex;
}

/* ─── Sidebar ─── */
#sidebar {
  width: var(--sidebar-w);
  min-width: var(--sidebar-w);
  background: var(--charcoal);
  border-right: 1px solid var(--gold-dark);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  padding-bottom: 2rem;
}

.sidebar-building {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: sepia(40%) brightness(0.7) contrast(1.1);
}

.sidebar-brand {
  padding: 1.4rem 1.4rem 0.6rem;
  border-bottom: 1px solid var(--gold-dark);
}

.sidebar-brand .monogram {
  font-family: 'Poiret One', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.sidebar-brand .fullname {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 100;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: 0.3rem;
}

.sidebar-deco-rule {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.4rem;
}
.sidebar-deco-rule::before,
.sidebar-deco-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold-dark);
}
.sidebar-deco-rule span {
  color: var(--gold);
  font-size: 0.55rem;
}

nav ul {
  list-style: none;
  padding: 0 1rem;
}

nav ul li {
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

nav ul li a {
  display: block;
  padding: 0.7rem 0.8rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.2s, background 0.2s, padding-left 0.2s;
  position: relative;
}

nav ul li a::before {
  content: '◆';
  position: absolute;
  left: -0.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.45rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.2s, left 0.2s;
}

nav ul li a:hover {
  color: var(--gold);
  padding-left: 1.3rem;
  background: rgba(201, 168, 76, 0.06);
}

nav ul li a:hover::before {
  opacity: 1;
  left: 0.3rem;
}

nav ul li a.active {
  color: var(--gold);
  font-weight: 400;
}

.sidebar-footer {
  margin-top: auto;
  padding: 1rem 1.4rem 0;
  border-top: 1px solid var(--gold-dark);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  font-weight: 100;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  line-height: 1.8;
}

.sidebar-footer a {
  color: var(--muted);
  text-decoration: none;
}

/* ─── Main content ─── */
#main {
  flex: 1;
  background: var(--ivory);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-header {
  background: var(--cream);
  border-bottom: 3px solid var(--gold);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.page-header-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  filter: sepia(30%) brightness(0.7) contrast(1.1);
}

.page-header-text {
  padding: 1.6rem 3rem 1.4rem;
  position: relative;
}

.page-header-text::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 6px, transparent 6px, transparent 12px);
  opacity: 0.35;
}

.page-header .eyebrow,
.page-header-text .eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 100;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.page-header h1,
.page-header-text h1 {
  font-family: 'Poiret One', sans-serif;
  font-size: 2.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--ink);
  line-height: 1.15;
}

.deco-divider {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1.5rem 0;
  color: var(--gold);
}
.deco-divider::before,
.deco-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.deco-divider span { font-size: 0.7rem; white-space: nowrap; }

.content-area {
  padding: 2.5rem 3rem 4rem;
  max-width: 860px;
}

/* ─── Typography within content ─── */
.content-area h2 {
  font-family: 'Poiret One', sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.07em;
  color: var(--ink);
  margin: 2.2rem 0 0.6rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--gold-dark);
}

.content-area h3 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 1.8rem 0 0.5rem;
}

.content-area p {
  font-size: 1.05rem;
  color: var(--mid);
  margin-bottom: 1rem;
}

.content-area a {
  color: var(--gold-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(139, 105, 20, 0.35);
  transition: border-color 0.2s, color 0.2s;
}
.content-area a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.content-area ul, .content-area ol {
  padding-left: 1.6rem;
  margin-bottom: 1rem;
  color: var(--mid);
  font-size: 1.05rem;
}
.content-area li { margin-bottom: 0.4rem; }

.content-area strong {
  font-weight: 600;
  color: var(--ink);
}

.content-area em { font-style: italic; }

/* ─── Deco hr ornament (used via --- in markdown) ─── */
.content-area hr {
  border: none;
  text-align: center;
  margin: 1.8rem 0;
  color: var(--gold);
  opacity: 0.7;
}
.content-area hr::after {
  content: '— ◆ —';
  display: inline-block;
  font-size: 0.9rem;
  letter-spacing: 0.4em;
}

/* ─── Q&A styling ─── */
.faq-item {
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-left: 3px solid var(--gold);
  background: var(--cream);
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.2rem;
}

.faq-item .question {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.faq-item .answer {
  font-size: 1.03rem;
  color: var(--mid);
  margin: 0;
}

/* ─── Notice card ─── */
.notice-box {
  background: var(--charcoal);
  color: var(--gold-light);
  border: 1px solid var(--gold-dark);
  padding: 1.4rem 1.8rem;
  margin: 1.5rem 0;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

/* ─── Committee grid ─── */
.committee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin: 1rem 0 1.5rem;
}

.committee-card {
  background: var(--cream);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-top: 2px solid var(--gold);
  padding: 0.9rem 1.1rem;
}

.committee-card .role {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 100;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.committee-card .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
  margin-top: 0.15rem;
}

/* ─── Download button ─── */
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--charcoal);
  color: var(--gold);
  border: 1px solid var(--gold-dark);
  padding: 0.75rem 1.5rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none !important;
  border-bottom: 1px solid var(--gold-dark) !important;
  transition: background 0.2s, color 0.2s;
  margin-top: 0.5rem;
}
.download-btn:hover {
  background: var(--gold-dark);
  color: var(--ivory) !important;
  border-color: var(--gold-dark) !important;
}
.download-btn svg { flex-shrink: 0; }

/* ─── Hero image area (home page) ─── */
.hero-image-wrap {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: sepia(25%) brightness(0.85) contrast(1.05);
  display: block;
}
.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--ivory) 100%);
}

/* ─── Home page hero text ─── */
.hero-text {
  padding: 0 3rem;
  position: relative;
  z-index: 1;
  margin-top: -3.5rem;
}
.hero-text .eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 100;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.hero-text h1 {
  font-family: 'Poiret One', sans-serif;
  font-size: 3rem;
  letter-spacing: 0.08em;
  color: var(--ink);
  line-height: 1.1;
  margin: 0.3rem 0 0.2rem;
}
.hero-text .sub {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 100;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── Home page welcome body ─── */
.welcome-body {
  padding: 2rem 3rem 4rem;
  max-width: 800px;
}
.welcome-body p {
  font-size: 1.1rem;
  color: var(--mid);
  margin-bottom: 1.1rem;
}

/* ─── Home page nav cards ─── */
.card-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.nav-card {
  background: var(--cream);
  border: 1px solid rgba(201,168,76,0.3);
  border-top: 3px solid var(--gold);
  padding: 1.2rem 1.1rem;
  text-decoration: none;
  display: block;
  transition: box-shadow 0.2s, transform 0.2s;
}
.nav-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}
.nav-card .card-icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.nav-card .card-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.nav-card .card-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── Home page image pair ─── */
.image-pair {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 1rem;
  margin: 1.5rem 0;
}
.image-pair figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.25);
}
.image-pair figure img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: sepia(15%) brightness(0.92) contrast(1.05);
  transition: filter 0.4s;
}
.image-pair figure:hover img { filter: sepia(5%) brightness(1) contrast(1.05); }
.image-pair figcaption {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  font-weight: 100;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.4rem 0.6rem;
  background: var(--cream);
  border-top: 1px solid rgba(201,168,76,0.2);
}

/* ─── Geometric deco ornament ─── */
.deco-ornament {
  text-align: center;
  color: var(--gold);
  letter-spacing: 0.4em;
  font-size: 0.9rem;
  margin: 1.8rem 0;
  opacity: 0.7;
}

/* ─── Plaque image (membership page) ─── */
.plaque-wrap {
  float: right;
  margin: 0 0 1.5rem 2rem;
  max-width: 220px;
  border: 1px solid rgba(201,168,76,0.3);
}
.plaque-wrap img {
  width: 100%;
  display: block;
  filter: brightness(0.95) contrast(1.05);
}
.plaque-wrap p {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem !important;
  font-weight: 100;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted) !important;
  padding: 0.4rem 0.6rem;
  background: var(--cream);
  border-top: 1px solid rgba(201,168,76,0.2);
  margin: 0 !important;
  line-height: 1.6;
}
@media (max-width: 600px) {
  .plaque-wrap { float: none; max-width: 100%; margin: 0 0 1.5rem 0; }
}

/* ─── Intro letter style ─── */
.letter-opening {
  font-size: 1.12rem;
  font-style: italic;
  color: var(--mid);
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 2px solid var(--gold-light);
}

/* ─── Section badge ─── */
.section-tag {
  display: inline-block;
  background: var(--gold-dark);
  color: var(--ivory);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  margin-bottom: 0.5rem;
}

/* ─── Auth topbar ─── */
#topbar {
  background: var(--cream);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 0.5rem 2rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.7rem;
  min-height: 44px;
}

.topbar-greeting {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 100;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 0.3rem;
}

.topbar-btn {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  text-decoration: none;
  border: 1px solid var(--gold-dark);
  color: var(--gold-dark);
  background: transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  display: inline-block;
}
.topbar-btn:hover {
  background: var(--gold-dark);
  color: var(--ivory);
}
.topbar-btn--outline {
  background: transparent;
}
.topbar-btn--primary {
  background: var(--gold-dark);
  color: var(--ivory);
}
.topbar-btn--primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

/* ─── Auth forms ─── */
.auth-form {
  max-width: 420px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.45rem;
}

.form-label-note {
  font-weight: 100;
  letter-spacing: 0.1em;
  text-transform: none;
}

.form-group input {
  width: 100%;
  background: var(--cream);
  border: 1px solid rgba(201,168,76,0.35);
  border-bottom: 2px solid var(--gold-dark);
  padding: 0.7rem 0.9rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--ink);
  outline: none;
  display: block;
  transition: border-color 0.2s, background 0.2s;
}
.form-group input:focus {
  border-color: var(--gold);
  background: var(--ivory);
}

.form-error {
  background: rgba(100,0,0,0.06);
  border-left: 3px solid #8B2020;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: #6B1010;
}

.auth-submit {
  background: var(--charcoal);
  color: var(--gold);
  border: 1px solid var(--gold-dark);
  padding: 0.75rem 2rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-top: 0.5rem;
}
.auth-submit:hover {
  background: var(--gold-dark);
  color: var(--ivory);
}

.auth-alt {
  margin-top: 1.5rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.auth-submit--danger {
  background: transparent;
  color: #8B2020;
  border-color: #8B2020;
}
.auth-submit--danger:hover {
  background: #8B2020;
  color: var(--ivory);
}

.leave-link {
  margin-top: 2.5rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.leave-link a {
  color: var(--muted);
  border-bottom-color: rgba(122,110,100,0.3);
}
.leave-link a:hover {
  color: #8B2020;
  border-bottom-color: #8B2020;
}

/* ─── Payment / Membership ─── */
.demo-banner {
  background: rgba(139,105,20,0.1);
  border: 1px solid rgba(139,105,20,0.4);
  border-left: 4px solid var(--gold);
  padding: 0.85rem 1.1rem;
  margin-bottom: 2.5rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  color: var(--mid);
}
.demo-banner strong {
  color: var(--gold-dark);
  letter-spacing: 0.14em;
}

.tier-options {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.tier-card {
  flex: 1;
  min-width: 160px;
  border: 1px solid rgba(201,168,76,0.3);
  border-bottom: 2px solid rgba(139,105,20,0.4);
  padding: 1.4rem 1.4rem 1.2rem;
  cursor: pointer;
  background: var(--cream);
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.tier-card:hover {
  background: var(--ivory);
}
.tier-card.selected {
  background: var(--ivory);
  border-color: var(--gold);
  border-bottom-color: var(--gold-dark);
  box-shadow: 0 0 0 1px var(--gold);
}
.tier-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.tier-name {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.7rem;
}
.tier-price {
  font-family: 'Poiret One', sans-serif;
  font-size: 2.2rem;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.tier-price span {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--muted);
  vertical-align: middle;
}
.tier-desc {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.5;
}

.payment-section {
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.payment-section h2 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.9rem;
}
.stripe-mock-notice {
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 1rem;
}
.stripe-mock {
  border: 1px solid rgba(201,168,76,0.3);
  border-bottom: 2px solid rgba(139,105,20,0.4);
  padding: 1.1rem 1.2rem;
  background: var(--cream);
  margin-bottom: 1rem;
  opacity: 0.55;
  pointer-events: none;
  user-select: none;
}
.stripe-mock label {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.mock-input {
  font-family: 'Courier New', monospace;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 0.35rem 0 0.55rem;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  margin-bottom: 0.9rem;
  letter-spacing: 0.08em;
}
.mock-card-row {
  display: flex;
  gap: 2rem;
}
.mock-card-row > div { flex: 1; }

.wallet-buttons {
  display: flex;
  gap: 0.75rem;
}
.wallet-btn {
  flex: 1;
  padding: 0.6rem 1rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  cursor: not-allowed;
  border: 1px solid rgba(201,168,76,0.4);
  opacity: 0.45;
}
.wallet-btn--apple {
  background: var(--charcoal);
  color: #fff;
}
.wallet-btn--google {
  background: var(--ivory);
  color: var(--charcoal);
}

.fee-info {
  margin-bottom: 2.5rem;
  max-width: 560px;
}
.fee-info h2 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}
.fee-info p {
  font-size: 0.93rem;
  color: var(--mid);
  margin-bottom: 0.85rem;
  line-height: 1.6;
}
.fee-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.2rem;
  font-size: 0.93rem;
}
.fee-table th {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  text-align: left;
  padding: 0.4rem 1rem 0.4rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.3);
}
.fee-table td {
  padding: 0.55rem 1rem 0.55rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  color: var(--ink);
}
.fee-table tr:last-child td { border-bottom: none; }
.fee-formula {
  font-size: 0.8rem;
  color: var(--muted);
}

.lapsed-notice {
  background: rgba(100,0,0,0.04);
  border-left: 4px solid #8B2020;
  padding: 1.2rem 1.4rem;
  margin-bottom: 2rem;
  max-width: 520px;
}
.lapsed-notice p {
  font-size: 0.95rem;
  color: var(--ink);
}

/* ─── Membership Card ─── */
.membership-card {
  display: inline-block;
  background: var(--charcoal);
  border: 1px solid var(--gold-dark);
  width: 340px;
  padding: 1.5rem 1.7rem 1.3rem;
  position: relative;
  box-shadow: 0 6px 28px rgba(0,0,0,0.4);
  margin-bottom: 0;
}
/* Art Deco corner brackets */
.membership-card::before {
  content: '';
  position: absolute;
  top: 6px; left: 6px;
  width: 16px; height: 16px;
  border-top: 1px solid var(--gold-dark);
  border-left: 1px solid var(--gold-dark);
}
.membership-card::after {
  content: '';
  position: absolute;
  bottom: 6px; right: 6px;
  width: 16px; height: 16px;
  border-bottom: 1px solid var(--gold-dark);
  border-right: 1px solid var(--gold-dark);
}
.mc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.7rem;
}
.mc-org {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  line-height: 1.6;
}
.mc-monogram {
  font-family: 'Poiret One', sans-serif;
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  line-height: 1;
}
.mc-deco {
  font-size: 0.42rem;
  color: var(--gold-dark);
  letter-spacing: 0.5em;
  margin-bottom: 0.9rem;
}
.mc-name-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.48rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.2rem;
}
.mc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  margin-bottom: 0.9rem;
  line-height: 1.2;
}
.mc-fields {
  display: flex;
  gap: 2rem;
  margin-bottom: 0.9rem;
}
.mc-field-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.46rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.2rem;
}
.mc-field-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.98rem;
  color: var(--gold-light);
}
.mc-expiry {
  border-top: 1px solid rgba(139,105,20,0.35);
  padding-top: 0.7rem;
  display: flex;
  align-items: baseline;
  gap: 0;
}
.mc-expiry-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.98rem;
  color: var(--gold-light);
}

/* ─── Wallet Add Buttons ─── */
.wallet-add-buttons {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.4rem;
  flex-wrap: wrap;
}
.wallet-add-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.1rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.63rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.wallet-add-btn--apple {
  background: var(--charcoal);
  color: var(--gold-light);
  border-color: var(--gold-dark);
}
.wallet-add-btn--apple:hover {
  background: var(--gold-dark);
  color: var(--ivory);
  border-color: var(--gold-dark);
}
.wallet-add-btn--google {
  background: var(--ivory);
  color: var(--charcoal);
  border-color: rgba(201,168,76,0.45);
}
.wallet-add-btn--google:hover {
  background: var(--cream);
  border-color: var(--gold-dark);
}

/* ─── Mobile ─── */
@media (max-width: 760px) {
  .page-header-text { padding: 1.2rem 1.2rem 1rem; }
  .page-header-text h1 { font-size: 1.8rem; }
  .page-header-img { height: 120px; }
}
@media (max-width: 760px) {
  body { flex-direction: column; }
  #sidebar {
    width: 100%;
    min-width: 0;
    height: auto;
    position: relative;
    border-right: none;
    border-bottom: 1px solid var(--gold-dark);
  }
  .sidebar-building { height: 160px; }
  #sidebar nav { padding-bottom: 0.5rem; }
  nav ul { display: flex; flex-wrap: wrap; gap: 0.2rem; padding: 0.5rem 0.8rem; }
  nav ul li { border-bottom: none; }
  nav ul li a { font-size: 0.65rem; padding: 0.4rem 0.6rem; }
  .committee-grid { grid-template-columns: 1fr; }
  .content-area { padding: 1.5rem 1.2rem 3rem; }
  .page-header { padding: 1.5rem 1.2rem 1rem; }
  .page-header h1 { font-size: 1.8rem; }
  .hero-text { padding: 0 1.2rem; }
  .welcome-body { padding: 1.5rem 1.2rem 3rem; }
  .hero-text h1 { font-size: 2rem; }
  .image-pair { grid-template-columns: 1fr; }
  .image-pair figure img { height: 180px; }
}
