/*
Theme Name: FASELTD Plaza v3.0
Theme URI: http://www.faseltd.co.zm
Author: FASE Ltd
Author URI: http://www.faseltd.co.zm
Description: Official website theme for FASE Plaza — a purpose-built multiuse recreation facility in Silverest, Chongwe, Zambia.
Version: 3.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: faseplaza
Tags: custom, green, gold, zambia, recreation, membership
*/

/* ============================================================
   TABLE OF CONTENTS
   ─────────────────────────────────────────────────────────────
   1.  GLOBAL RESET & CSS VARIABLES
   2.  BASE / BODY
   3.  WORDPRESS ADMIN BAR FIX
   4.  TOP BAR
   5.  NAVIGATION (DESKTOP)
   6.  NAV — HAMBURGER (MOBILE TOGGLE)
   7.  NAV — MENU
   8.  NAV — DROPDOWN
   9.  NAV — DESKTOP AUTH
   10. NAV — DESKTOP USER ICON DROPDOWN
   11. HERO SECTION
   12. BUTTONS
   13. SHARED SECTION STYLES
   14. ABOUT SECTION
   15. FACILITIES SECTION
   16. GALLERY SECTION
   17. MEMBERSHIP SECTION
   18. EVENTS SECTION
   19. AMENITIES SECTION
   20. CONTACT SECTION
   21. FOOTER
   22. ANIMATIONS
   23. RESPONSIVE — TABLET (max 1024px)
   24. RESPONSIVE — MOBILE (max 768px)
   25. RESPONSIVE — HIDE MOBILE-ONLY ITEMS ON DESKTOP
   26. RESPONSIVE — SMALL PHONE (max 400px)
   27. LOGIN PAGE
   28. SILVER MEMBER STYLES
   29. GOLD MEMBER STYLES
   30. DASHBOARD COMPONENT STYLES (fp-* prefix — shared)
   31. CHESS CLUB PAGE ADDITIONS (fp-cc-* prefix)
   32. ADMIN DASHBOARD STYLES (fpa-* prefix)
   ─────────────────────────────────────────────────────────────
   Fonts used throughout:
     Display / Headings : 'Cormorant Garamond', Georgia, serif
     Body / UI          : 'Montserrat', 'Trebuchet MS', sans-serif
   Both are loaded via Google Fonts in the theme's functions.php.
   ============================================================ */


/* ============================================================
   1. GLOBAL RESET & CSS VARIABLES
   ============================================================ */

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

:root {
  /* ── Colours ── */
  --green:       #2C5F2E;
  --green-light: #3D7A40;
  --green-pale:  #EEF4EE;
  --gold:        #B8963E;
  --gold-light:  #D4AF6A;
  --cream:       #FAF8F3;
  --white:       #FFFFFF;
  --text:        #1A1A1A;
  --text-mid:    #4A4A4A;
  --text-muted:  #888888;
  --border:      #E0DDD6;
  --shadow:      rgba(44, 95, 46, 0.1);

  /* ── Typography ── */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', 'Trebuchet MS', sans-serif;
}
/* END: 1. GLOBAL RESET & CSS VARIABLES */


/* ============================================================
   2. BASE / BODY
   ============================================================ */

html { scroll-behavior: smooth; margin-top: 0 !important; }

body {
  background:   var(--cream);
  color:        var(--text);
  font-family:  var(--font-body);
  font-weight:  400;
  overflow-x:   hidden;
  line-height:  1.6;
  margin:       0 !important;
  padding:      0 !important;
}

.site-header-wrap { position: sticky; top: 0; z-index: 999; margin: 0; padding: 0; }

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; }
/* END: 2. BASE / BODY */


/* ============================================================
   3. WORDPRESS ADMIN BAR FIX
   ============================================================ */

body.admin-bar .site-header-wrap { margin-top: 32px; }
body.admin-bar { padding-top: 0 !important; }

@media screen and (max-width: 782px) {
  body.admin-bar .site-header-wrap { margin-top: 46px; }
}
/* END: 3. WORDPRESS ADMIN BAR FIX */


/* ============================================================
   4. TOP BAR
   ============================================================ */

.topbar {
  background:      var(--green);
  color:           rgba(255, 255, 255, 0.8);
  font-size:       0.65rem;
  letter-spacing:  0.08em;
  padding:         8px 60px;
  display:         flex;
  justify-content: space-between;
  align-items:     center;
  flex-wrap:       wrap;
  gap:             6px;
}
.topbar a { color: var(--gold-light); }
.topbar-right {
  display:         flex;
  gap:             12px;
  align-items:     center;
  justify-content: flex-end;
  flex-wrap:       wrap;
}
.topbar-social {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.topbar-social svg {
  width: 11px;
  height: 11px;
  fill: currentColor;
  opacity: 0.95;
}
/* END: 4. TOP BAR */


/* ============================================================
   5. NAVIGATION (DESKTOP)
   ============================================================ */

#mainNav {
  background:    var(--white);
  border-bottom: 1px solid var(--border);
  position:      relative;
  z-index:       999;
  box-shadow:    0 2px 20px var(--shadow);
  margin:        0;
  padding:       0;
}

.nav-inner {
  max-width:       1300px;
  margin:          0 auto;
  padding:         0 40px;
  display:         flex;
  align-items:     stretch;
  justify-content: space-between;
}

.nav-brand {
  display:         flex;
  align-items:     center;
  gap:             14px;
  text-decoration: none;
  padding:         14px 0;
}

.nav-brand-icon {
  width:         46px;
  height:        46px;
  background:    var(--green);
  border-radius: 4px;
  display:       flex;
  align-items:   center;
  justify-content: center;
  flex-shrink:   0;
  overflow:      hidden;
  padding:       2px;
}

.nav-brand-name {
  font-family:    var(--font-display);
  font-size:      1.25rem;
  font-weight:    700;
  color:          var(--green);
  letter-spacing: 0.05em;
  display:        block;
}

.nav-brand-sub {
  font-size:      0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color:          var(--text-muted);
  display:        block;
}
/* END: 5. NAVIGATION (DESKTOP) */


/* ============================================================
   6. NAV — HAMBURGER (MOBILE TOGGLE)
   Hidden on desktop; shown via media query in section 24.
   ============================================================ */

.nav-hamburger {
  display:         none;
  flex-direction:  column;
  justify-content: center;
  align-items:     center;
  gap:             5px;
  background:      none;
  border:          none;
  cursor:          pointer;
  padding:         10px;
  z-index:         1000;
  flex-shrink:     0;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--green); transition: all 0.3s; }
.nav-hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-active span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* END: 6. NAV — HAMBURGER */


/* ============================================================
   7. NAV — MENU
   ============================================================ */

.nav-menu { display: flex; list-style: none; align-items: stretch; gap: 0; }
.nav-menu > li { position: relative; display: flex; align-items: center; }

.nav-menu > li > a {
  font-size:      0.65rem;
  font-weight:    600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color:          var(--text);
  text-decoration: none;
  padding:        0 14px;
  height:         100%;
  display:        flex;
  align-items:    center;
  gap:            4px;
  transition:     color 0.2s, background 0.2s;
  white-space:    nowrap;
  border-bottom:  3px solid transparent;
}

.nav-menu > li > a:hover,
.nav-menu > li:hover > a {
  color:               var(--green);
  border-bottom-color: var(--gold);
  background:          var(--green-pale);
}

.nav-arrow { font-size: 0.45rem; opacity: 0.5; transition: transform 0.2s; }
.nav-menu > li:hover .nav-arrow { transform: rotate(180deg); }
/* END: 7. NAV — MENU */


/* ============================================================
   8. NAV — DROPDOWN
   ============================================================ */

.dropdown {
  position:   absolute;
  top:        100%;
  left:       0;
  background: var(--white);
  border:     1px solid var(--border);
  border-top: 3px solid var(--green);
  min-width:  270px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  opacity:    0;
  visibility: hidden;
  transform:  translateY(8px);
  transition: all 0.25s ease;
  z-index:    1000;
}
.nav-menu > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown a {
  display:         flex;
  align-items:     center;
  gap:             8px;
  padding:         11px 18px;
  font-size:       0.7rem;
  color:           var(--text-mid);
  text-decoration: none;
  border-bottom:   1px solid var(--border);
  transition:      all 0.2s;
}
.dropdown a:last-child  { border-bottom: none; }
.dropdown a::before     { content: '›'; color: var(--gold); font-size: 0.85rem; flex-shrink: 0; }
.dropdown a:hover       { background: var(--green-pale); color: var(--green); padding-left: 24px; }
/* END: 8. NAV — DROPDOWN */


/* ============================================================
   9. NAV — DESKTOP AUTH
   ============================================================ */

.nav-auth { display: flex; align-items: center; gap: 10px; margin-left: 16px; flex-shrink: 0; }

.nav-login-btn {
  font-family:    var(--font-body);
  font-size:      0.62rem;
  font-weight:    700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color:          white;
  background:     var(--green);
  padding:        10px 20px;
  text-decoration: none;
  transition:     all 0.2s;
  white-space:    nowrap;
}
.nav-login-btn:hover { background: var(--green-light); color: white; }
/* END: 9. NAV — DESKTOP AUTH */


/* ============================================================
   10. NAV — DESKTOP USER ICON DROPDOWN
   ============================================================ */

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

.nav-user-icon-btn {
  background:      none;
  border:          2px solid currentColor;
  border-radius:   50%;
  width:           36px;
  height:          36px;
  display:         flex;
  align-items:     center;
  justify-content: center;
  cursor:          pointer;
  transition:      opacity 0.2s;
  flex-shrink:     0;
}
.nav-user-icon-btn:hover               { opacity: 0.75; }
.nav-user-icon-btn.tier-silver         { border-color: #9e9e9e; color: #9e9e9e; }
.nav-user-icon-btn.tier-gold           { border-color: var(--gold); color: var(--gold); }
.nav-user-icon-btn.tier-platinum       { border-color: #6ec6ca; color: #6ec6ca; }
.nav-user-icon-btn.tier-admin          { border-color: #5c6bc0; color: #5c6bc0; }

.nav-user-dropdown-menu {
  display:    none;
  position:   absolute;
  top:        calc(100% + 12px);
  right:      0;
  min-width:  220px;
  background: var(--white);
  border:     1px solid var(--border);
  border-top: 3px solid var(--green);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  z-index:    9999;
  overflow:   hidden;
}
.nav-user-dropdown-menu.is-open { display: block; }

.nav-user-info {
  padding:         14px 18px 12px;
  display:         flex;
  flex-direction:  column;
  gap:             3px;
  background:      var(--green-pale);
}
.nav-user-name  { font-weight: 700; font-size: 0.82rem; color: var(--green); }
.nav-user-email { font-size: 0.68rem; color: var(--text-muted); }

.nav-user-tier {
  display:        inline-block;
  margin-top:     5px;
  padding:        2px 10px;
  border-radius:  20px;
  font-size:      0.58rem;
  font-weight:    700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width:          fit-content;
}
.nav-user-tier.tier-silver   { background: #f0f0f0; color: #555; }
.nav-user-tier.tier-gold     { background: #fff8e1; color: #8a6200; }
.nav-user-tier.tier-platinum { background: #e0f7fa; color: #00616a; }
.nav-user-tier.tier-admin    { background: #e8eaf6; color: #283593; }

.nav-user-divider { height: 1px; background: var(--border); margin: 0; }

.nav-user-item {
  display:         flex;
  align-items:     center;
  gap:             10px;
  padding:         10px 18px;
  font-size:       0.72rem;
  font-weight:     500;
  letter-spacing:  0.03em;
  color:           var(--text);
  text-decoration: none;
  transition:      background 0.15s, color 0.15s;
}
.nav-user-item:hover       { background: var(--green-pale); color: var(--green); }
.nav-user-item svg         { flex-shrink: 0; opacity: 0.6; }
.nav-user-signout          { color: #c0392b; }
.nav-user-signout:hover    { background: #fff0ef; color: #c0392b; }
/* END: 10. NAV — DESKTOP USER ICON DROPDOWN */


/* ============================================================
   11. HERO SECTION
   ============================================================ */

.hero { height: 90vh; min-height: 560px; position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-img     { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }
.hero-pattern { position: absolute; inset: 0; background-image: radial-gradient(rgba(184,150,62,0.15) 1px, transparent 1px); background-size: 28px 28px; }

.hero-content {
  position:  relative;
  z-index:   2;
  padding:   0 80px;
  max-width: 820px;
  animation: fadeUp 1s ease both;
}

.hero-badge {
  display:        inline-flex;
  align-items:    center;
  gap:            10px;
  background:     rgba(184, 150, 62, 0.2);
  border:         1px solid rgba(184, 150, 62, 0.5);
  color:          var(--gold-light);
  font-family:    var(--font-body);   /* Montserrat */
  font-size:      0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding:        8px 18px;
  margin-bottom:  26px;
  font-weight:    600;
}

.hero-title {
  font-family:   var(--font-display);
  font-size:     clamp(3rem, 8vw, 6.5rem);
  font-weight:   700;
  color:         var(--white);
  line-height:   1;
  margin-bottom: 10px;
}
.hero-title span { color: var(--gold-light); }

.hero-subtitle {
  font-family:   var(--font-display);
  font-style:    italic;
  font-size:     clamp(1rem, 2.5vw, 1.6rem);
  color:         rgba(255, 255, 255, 0.82);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.hero-location {
  font-family:    var(--font-body);   /* Montserrat */
  font-size:      0.68rem;
  letter-spacing: 0.15em;
  color:          rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  margin-bottom:  36px;
  display:        flex;
  align-items:    center;
  gap:            8px;
}
.hero-location::before { content: ''; width: 18px; height: 1px; background: var(--gold-light); }

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

.hero-stats {
  position:              absolute;
  bottom:                0;
  left:                  0;
  right:                 0;
  background:            var(--white);
  display:               grid;
  grid-template-columns: repeat(4, 1fr);
  z-index:               3;
  border-top:            3px solid var(--green);
}

.hero-stat       { padding: 20px 24px; border-right: 1px solid var(--border); text-align: center; }
.hero-stat:last-child { border-right: none; }

.hero-stat-num {
  font-family:   var(--font-display);
  font-size:     1.8rem;
  font-weight:   700;
  color:         var(--green);
  line-height:   1;
  display:       block;
}
.hero-stat-label { font-family: var(--font-body); font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }
/* END: 11. HERO SECTION */


/* ============================================================
   12. BUTTONS
   ============================================================ */

.btn-primary {
  background:     var(--gold);
  color:          var(--white);
  font-family:    var(--font-body);
  font-size:      0.68rem;
  font-weight:    700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding:        15px 34px;
  text-decoration: none;
  border:         none;
  cursor:         pointer;
  transition:     all 0.3s;
  display:        inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(184,150,62,0.35); color: var(--white); }

.btn-outline-light {
  background:     transparent;
  color:          var(--white);
  border:         1px solid rgba(255, 255, 255, 0.55);
  font-family:    var(--font-body);
  font-size:      0.68rem;
  font-weight:    600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding:        15px 34px;
  text-decoration: none;
  cursor:         pointer;
  transition:     all 0.3s;
  display:        inline-block;
}
.btn-outline-light:hover { border-color: white; background: rgba(255,255,255,0.1); color: var(--white); }

.btn-green {
  background:     var(--green);
  color:          white;
  font-family:    var(--font-body);
  font-size:      0.68rem;
  font-weight:    700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding:        14px 30px;
  text-decoration: none;
  border:         none;
  cursor:         pointer;
  transition:     all 0.3s;
  display:        inline-block;
}
.btn-green:hover { background: var(--green-light); transform: translateY(-2px); color: white; }

.btn-outline-green {
  background:     transparent;
  color:          var(--green);
  border:         1.5px solid var(--green);
  font-family:    var(--font-body);
  font-size:      0.68rem;
  font-weight:    600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding:        14px 30px;
  text-decoration: none;
  cursor:         pointer;
  transition:     all 0.3s;
  display:        inline-block;
}
.btn-outline-green:hover { background: var(--green); color: white; }
/* END: 12. BUTTONS */


/* ============================================================
   13. SHARED SECTION STYLES
   ============================================================ */

.section       { padding: 100px 60px; }
.section-inner { max-width: 1300px; margin: 0 auto; }

.section-label {
  font-family:    var(--font-body);   /* Montserrat — small uppercase eyebrow label */
  font-size:      0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color:          var(--gold);
  font-weight:    700;
  margin-bottom:  12px;
  display:        flex;
  align-items:    center;
  gap:            14px;
}
.section-label::before { content: ''; width: 22px; height: 2px; background: var(--gold); flex-shrink: 0; }

.section-title {
  font-family:   var(--font-display);
  font-size:     clamp(1.9rem, 5vw, 3.5rem);
  font-weight:   700;
  color:         var(--green);
  line-height:   1.1;
  margin-bottom: 18px;
}
.section-title span { color: var(--gold); font-style: italic; }

.section-body { font-family: var(--font-body); font-size: 0.88rem; line-height: 1.9; color: var(--text-mid); max-width: 680px; }
/* END: 13. SHARED SECTION STYLES */


/* ============================================================
   14. ABOUT SECTION
   ============================================================ */

.about-section { background: var(--white); }

.about-grid {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   80px;
  align-items:           start;
}

.about-images {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows:    280px 200px;
  gap:                   8px;
}

.about-img              { position: relative; overflow: hidden; }
.about-img.large        { grid-column: 1 / 3; }
.about-img img          { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.about-img:hover img    { transform: scale(1.05); }

.about-img-label {
  position:   absolute;
  bottom:     0;
  left:       0;
  right:      0;
  background: linear-gradient(transparent, rgba(44,95,46,0.85));
  color:      white;
  font-size:  0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding:    20px 14px 10px;
  font-weight: 600;
}

.about-tagline {
  font-family:  var(--font-display);
  font-style:   italic;
  font-size:    1.45rem;
  color:        var(--green);
  border-left:  3px solid var(--gold);
  padding-left: 18px;
  margin:       24px 0;
  line-height:  1.5;
}

.about-body      { font-family: var(--font-body); font-size: 0.87rem; line-height: 2; color: var(--text-mid); margin-bottom: 14px; }

.about-highlight {
  font-family:  var(--font-body);     /* Montserrat — block quote / callout */
  background:   var(--green-pale);
  border-left:  3px solid var(--green);
  padding:      18px 22px;
  margin:       24px 0;
  font-size:    0.84rem;
  line-height:  1.85;
  color:        var(--text);
  font-style:   italic;
}

.about-cta { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
/* END: 14. ABOUT SECTION */


/* ============================================================
   15. FACILITIES SECTION
   ============================================================ */

.facilities-section { background: var(--cream); }

.facilities-grid {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   28px;
  margin-top:            50px;
}

.facility-card {
  background:  var(--white);
  border:      1px solid var(--border);
  overflow:    hidden;
  transition:  all 0.3s;
  box-shadow:  0 2px 20px var(--shadow);
}
.facility-card:hover { transform: translateY(-4px); box-shadow: 0 14px 50px var(--shadow); }

.facility-img           { height: 270px; position: relative; overflow: hidden; }
.facility-img img       { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.facility-card:hover .facility-img img { transform: scale(1.05); }

.facility-tag {
  position:       absolute;
  top:            18px;
  left:           18px;
  background:     var(--gold);
  color:          white;
  font-size:      0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight:    700;
  padding:        6px 14px;
}

.facility-body { padding: 36px; }

.facility-name {
  font-family:   var(--font-display);
  font-size:     1.9rem;
  font-weight:   700;
  color:         var(--green);
  margin-bottom: 5px;
}

.facility-sub {
  font-family:    var(--font-body);   /* Montserrat */
  font-size:      0.62rem;
  letter-spacing: 0.18em;
  color:          var(--gold);
  text-transform: uppercase;
  font-weight:    600;
  margin-bottom:  14px;
}

.facility-desc     { font-family: var(--font-body); font-size: 0.84rem; line-height: 1.85; color: var(--text-mid); margin-bottom: 20px; }
.facility-features { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.facility-features li {
  font-family:    var(--font-body);   /* Montserrat */
  font-size:      0.63rem;
  letter-spacing: 0.04em;
  background:     var(--green-pale);
  color:          var(--green);
  padding:        5px 12px;
  font-weight:    600;
}
/* END: 15. FACILITIES SECTION */


/* ============================================================
   16. GALLERY SECTION
   ============================================================ */

.gallery-section     { background: var(--green); padding: 80px 0; }
.gallery-header-light { padding: 0 60px; margin-bottom: 40px; }
.gallery-header-light .section-label        { color: var(--gold-light); }
.gallery-header-light .section-label::before { background: var(--gold-light); }
.gallery-header-light .section-title        { color: var(--white); }
.gallery-header-light .section-title span   { color: var(--gold-light); }

.gallery-grid {
  display:               grid;
  grid-template-columns: repeat(6, 1fr);
  gap:                   4px;
  padding:               0 60px;
}

.gal-item       { height: 200px; position: relative; overflow: hidden; cursor: pointer; }
.gal-item.tall  { grid-row: span 2; height: auto; }
.gal-item img   { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block; }
.gal-item:hover img { transform: scale(1.08); }

.gal-cap {
  position:       absolute;
  bottom:         0;
  left:           0;
  right:          0;
  background:     linear-gradient(transparent, rgba(0,0,0,0.7));
  color:          rgba(255, 255, 255, 0.9);
  font-family:    var(--font-body);   /* Montserrat */
  font-size:      0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding:        20px 12px 10px;
  font-weight:    600;
  opacity:        0;
  transition:     opacity 0.3s;
}
.gal-item:hover .gal-cap { opacity: 1; }

.upload-note {
  text-align:     center;
  color:          rgba(255, 255, 255, 0.45);
  font-family:    var(--font-body);   /* Montserrat */
  font-size:      0.68rem;
  margin-top:     22px;
  letter-spacing: 0.08em;
  padding:        0 60px;
}
/* END: 16. GALLERY SECTION */


/* ============================================================
   17. MEMBERSHIP SECTION
   ============================================================ */

.membership-section { background: var(--white); }

.membership-intro {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   80px;
  align-items:           center;
  margin-bottom:         60px;
}

.membership-img       { height: 440px; overflow: hidden; }
.membership-img img   { width: 100%; height: 100%; object-fit: cover; }

.membership-process {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   2px;
}

.process-step {
  background:  var(--green-pale);
  padding:     40px 28px;
  position:    relative;
  border-top:  3px solid transparent;
  transition:  all 0.3s;
  overflow:    hidden;
}
.process-step-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.process-step:hover                   { background: var(--green); border-top-color: var(--gold); }
.process-step:hover .process-title,
.process-step:hover .process-num      { color: rgba(255,255,255,0.15); }
.process-step:hover .process-title    { color: white; font-family: var(--font-display); }
.process-step:hover .process-desc     { color: rgba(255,255,255,0.68); }

.process-num {
  font-family: var(--font-display);
  font-size:   5rem;
  font-weight: 700;
  color:       rgba(44, 95, 46, 0.08);
  line-height: 1;
  position:    absolute;
  top:         10px;
  right:       16px;
  transition:  color 0.3s;
}

.process-icon  { font-size: 1.6rem; margin-bottom: 14px; }

.process-title {
  font-family:   var(--font-display);
  font-size:     1.35rem;
  font-weight:   700;
  color:         var(--green);
  margin-bottom: 10px;
  transition:    color 0.3s;
}

.process-desc  { font-family: var(--font-body); font-size: 0.78rem; line-height: 1.8; color: var(--text-mid); transition: color 0.3s; }
/* END: 17. MEMBERSHIP SECTION */


/* ============================================================
   18. EVENTS SECTION
   ============================================================ */

.events-section { background: var(--cream); }

.events-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   22px;
  margin-top:            50px;
}

.event-card {
  background:  var(--white);
  border:      1px solid var(--border);
  overflow:    hidden;
  transition:  all 0.3s;
  box-shadow:  0 2px 12px var(--shadow);
}
.event-card-link {
  display:         block;
  text-decoration: none;
  color:           inherit;
}
.event-card-link:focus-visible {
  outline:        2px solid var(--green);
  outline-offset: 2px;
}
.event-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px var(--shadow); }

.event-img             { height: 210px; position: relative; overflow: hidden; }
.event-img img         { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.event-card:hover .event-img img { transform: scale(1.06); }

.event-type-tag {
  position:       absolute;
  top:            16px;
  left:           16px;
  background:     var(--gold);
  color:          white;
  font-size:      0.55rem;
  letter-spacing: 0.18em;
  font-weight:    700;
  text-transform: uppercase;
  padding:        5px 12px;
}

.event-body  { padding: 24px; }

.event-title {
  font-family:   var(--font-display);
  font-size:     1.35rem;
  font-weight:   700;
  color:         var(--green);
  margin-bottom: 8px;
}

.event-desc { font-family: var(--font-body); font-size: 0.78rem; line-height: 1.75; color: var(--text-mid); margin-bottom: 14px; }

.event-meta             { display: flex; gap: 14px; flex-wrap: wrap; }
.event-meta span        { font-family: var(--font-body); font-size: 0.62rem; color: var(--text-muted); letter-spacing: 0.04em; }
.event-meta span::before { content: '• '; color: var(--gold); }
/* END: 18. EVENTS SECTION */


/* ============================================================
   19. AMENITIES SECTION
   ============================================================ */

.amenities-section           { background: var(--green); }
.amenities-section .section-label          { color: var(--gold-light); }
.amenities-section .section-label::before  { background: var(--gold-light); }
.amenities-section .section-title          { color: var(--white); }
.amenities-section .section-title span     { color: var(--gold-light); }

.amenities-grid {
  display:               grid;
  grid-template-columns: repeat(4, 1fr);
  gap:                   3px;
  margin-top:            50px;
}

.amenity-card {
  background:  rgba(255, 255, 255, 0.06);
  overflow:    hidden;
  border:      1px solid rgba(255, 255, 255, 0.1);
  transition:  all 0.3s;
}
.amenity-card-link {
  display:         block;
  text-decoration: none;
  color:           inherit;
}
.amenity-card-link:focus-visible {
  outline:        2px solid var(--gold-light);
  outline-offset: 2px;
}
.amenity-card:hover { background: rgba(255,255,255,0.13); transform: translateY(-3px); border-color: var(--gold-light); }

.amenity-img         { height: 180px; overflow: hidden; }
.amenity-img img     { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.amenity-card:hover .amenity-img img { transform: scale(1.07); }

.amenity-body { padding: 26px 24px; }
.amenity-icon { font-size: 1.8rem; margin-bottom: 12px; display: block; }

.amenity-name {
  font-family:   var(--font-display);
  font-size:     1.15rem;
  font-weight:   700;
  color:         var(--white);
  margin-bottom: 8px;
}

.amenity-desc { font-family: var(--font-body); font-size: 0.72rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
/* END: 19. AMENITIES SECTION */


/* ============================================================
   20. CONTACT SECTION
   ============================================================ */

.contact-section { background: var(--white); }

.contact-grid {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   60px;
  align-items:           start;
}

.contact-detail           { display: flex; gap: 16px; margin-bottom: 26px; align-items: flex-start; }

.contact-detail-icon {
  width:           40px;
  height:          40px;
  background:      var(--green-pale);
  display:         flex;
  align-items:     center;
  justify-content: center;
  font-size:       1.1rem;
  flex-shrink:     0;
  border-radius:   2px;
}

.contact-detail-label  { font-family: var(--font-body); font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; margin-bottom: 4px; }
.contact-detail-value  { font-family: var(--font-body); font-size: 0.84rem; color: var(--text); line-height: 1.6; }
.contact-detail-value a { color: var(--green); }

.map-embed         { margin-top: 24px; border: 1px solid var(--border); overflow: hidden; }
.map-embed iframe  { display: block; }

.contact-form-box {
  background: var(--cream);
  padding:    38px;
  border:     1px solid var(--border);
}

.contact-form-box h3 {
  font-family:   var(--font-display);
  font-size:     1.55rem;
  color:         var(--green);
  margin-bottom: 22px;
  font-weight:   700;
}

.contact-form-notice {
  border: 1px solid var(--border);
  padding: 12px 14px;
  margin-bottom: 12px;
  font-size: 0.74rem;
  line-height: 1.55;
  background: var(--white);
}

.contact-form-notice.is-success {
  border-color: #4a8e55;
  color: #1f5f2b;
  background: #edf7ef;
}

.contact-form-notice.is-error {
  border-color: #b95b5b;
  color: #772f2f;
  background: #faefef;
}

.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.form-field { margin-bottom: 10px; }

.form-field input,
.form-field select,
.form-field textarea {
  width:           100%;
  background:      var(--white);
  border:          1px solid var(--border);
  padding:         13px 16px;
  font-family:     var(--font-body);
  font-size:       0.78rem;
  color:           var(--text);
  outline:         none;
  transition:      border-color 0.3s;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field textarea:focus          { border-color: var(--green); }
.form-field input::placeholder,
.form-field textarea::placeholder   { color: var(--text-muted); }
.form-field textarea                { height: 108px; resize: none; }

.contact-form-submit {
  width: 100%;
  padding: 16px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  cursor: pointer;
}

.contact-form-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
/* END: 20. CONTACT SECTION */


/* ============================================================
   21. FOOTER
   ============================================================ */

footer { background: #1A3B1C; color: rgba(255,255,255,0.7); padding: 70px 60px 30px; }

.footer-top {
  display:               grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap:                   48px;
  max-width:             1300px;
  margin:                0 auto 48px;
}

.footer-brand-name {
  font-family:    var(--font-display);
  font-size:      1.55rem;
  font-weight:    700;
  color:          var(--gold-light);
  letter-spacing: 0.04em;
  display:        block;
  margin-bottom:  5px;
}

.footer-brand-tag {
  font-family:   var(--font-display);
  font-style:    italic;
  font-size:     0.88rem;
  color:         rgba(255, 255, 255, 0.45);
  margin-bottom: 14px;
  display:       block;
}

.footer-about     { font-size: 0.74rem; line-height: 1.8; color: rgba(255,255,255,0.45); max-width: 280px; }
.footer-col-title { font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 18px; font-weight: 700; }
.footer-col ul    { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 0.72rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; letter-spacing: 0.02em; }
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width:       1300px;
  margin:          0 auto;
  padding-top:     26px;
  border-top:      1px solid rgba(255,255,255,0.1);
  display:         flex;
  justify-content: space-between;
  align-items:     center;
  flex-wrap:       wrap;
  gap:             10px;
  font-size:       0.63rem;
  color:           rgba(255,255,255,0.3);
  letter-spacing:  0.04em;
}
.footer-bottom a { color: var(--gold-light); }
/* END: 21. FOOTER */


/* ============================================================
   22. ANIMATIONS
   ============================================================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
/* END: 22. ANIMATIONS */


/* ============================================================
   23. RESPONSIVE — TABLET (max 1024px)
   ============================================================ */

@media (max-width: 1024px) {
  .topbar              { padding: 8px 24px; }
  .nav-inner           { padding: 0 20px; }
  .nav-menu > li > a   { padding: 0 10px; font-size: 0.6rem; }
  .section             { padding: 80px 30px; }
  .hero-content        { padding: 0 40px; }
  .hero-stats          { grid-template-columns: repeat(2, 1fr); }
  .about-grid          { grid-template-columns: 1fr; gap: 50px; }
  .about-images        { grid-template-rows: 220px 170px; }
  .facilities-grid     { grid-template-columns: 1fr; }
  .membership-intro    { grid-template-columns: 1fr; gap: 40px; }
  .membership-process  { grid-template-columns: 1fr 1fr; }
  .events-grid         { grid-template-columns: 1fr 1fr; }
  .amenities-grid      { grid-template-columns: repeat(2, 1fr); }
  .contact-grid        { grid-template-columns: 1fr; }
  .gallery-grid        { grid-template-columns: repeat(3, 1fr); padding: 0 30px; }
  .gallery-header-light { padding: 0 30px; }
  .footer-top          { grid-template-columns: 1fr 1fr; gap: 30px; }
}
/* END: 23. RESPONSIVE — TABLET */


/* ============================================================
   24. RESPONSIVE — MOBILE (max 768px)
   ============================================================ */

@media (max-width: 768px) {

  .topbar       { display: none; }
  #mainNav      { top: 0; position: relative; }
  .nav-inner    { padding: 0 16px; }

  /* Show hamburger, hide desktop auth */
  .nav-hamburger { display: flex; }
  .nav-auth      { display: none !important; }

  /* Full-screen slide-in menu */
  .nav-menu {
    display:         none;
    position:        fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background:      var(--white);
    flex-direction:  column;
    align-items:     flex-start;
    justify-content: flex-start;
    padding:         80px 28px 40px;
    gap:             0;
    overflow-y:      auto;
    z-index:         998;
  }
  .nav-menu.is-open { display: flex; }

  .nav-menu > li {
    width:           100%;
    border-bottom:   1px solid var(--border);
    flex-direction:  column;
    align-items:     flex-start;
  }
  .nav-menu > li > a { padding: 16px 0; font-size: 0.82rem; height: auto; border-bottom: none; width: 100%; }
  .nav-arrow         { margin-left: auto; }

  .dropdown {
    position:   static;
    opacity:    1;
    visibility: visible;
    transform:  none;
    box-shadow: none;
    border:     none;
    border-top: none;
    background: var(--green-pale);
    min-width:  unset;
    width:      100%;
    display:    none;
  }
  .nav-menu > li:hover .dropdown,
  .nav-menu > li.active .dropdown { display: block; }

  /* ── Mobile auth section ── */
  .nav-mobile-auth-divider,
  .nav-mobile-auth-info,
  .nav-mobile-auth-item { display: block !important; width: 100%; }

  .nav-mobile-auth-divider {
    list-style:    none;
    border-top:    2px solid var(--green) !important;
    border-bottom: none !important;
    margin-top:    20px;
    padding:       0 !important;
    height:        0;
  }

  .nav-mobile-auth-info {
    list-style:    none;
    border-bottom: none !important;
    padding:       16px 0 8px !important;
  }

  .mobile-user-name { display: block; font-size: 0.88rem; font-weight: 700; color: var(--green); margin-bottom: 5px; }

  .mobile-user-tier {
    display:        inline-block;
    padding:        2px 10px;
    border-radius:  20px;
    font-size:      0.58rem;
    font-weight:    700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .mobile-user-tier.tier-silver   { background: #f0f0f0; color: #555; }
  .mobile-user-tier.tier-gold     { background: #fff8e1; color: #8a6200; }
  .mobile-user-tier.tier-platinum { background: #e0f7fa; color: #00616a; }
  .mobile-user-tier.tier-admin    { background: #e8eaf6; color: #283593; }

  .nav-mobile-auth-item {
    list-style:    none;
    border-bottom: 1px solid var(--border) !important;
  }
  .nav-mobile-auth-item:last-child { border-bottom: none !important; }

  .mobile-member-btn {
    display:         flex;
    align-items:     center;
    gap:             8px;
    width:           100%;
    padding:         13px 0;
    font-size:       0.78rem;
    font-weight:     600;
    color:           var(--green);
    text-decoration: none;
    letter-spacing:  0.03em;
    transition:      color 0.2s;
  }
  .mobile-member-btn::before { content: '›'; color: var(--gold); font-size: 1rem; line-height: 1; }
  .mobile-member-btn:hover   { color: var(--gold); }

  .mobile-logout-btn {
    display:        block;
    width:          100%;
    padding:        13px 0;
    font-size:      0.72rem;
    font-weight:    700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color:          #c0392b;
    text-decoration: none;
    transition:     opacity 0.2s;
  }
  .mobile-logout-btn:hover { opacity: 0.75; }

  .mobile-login-btn {
    display:        block;
    width:          100%;
    background:     var(--green);
    color:          white;
    font-family:    var(--font-body);
    font-size:      0.72rem;
    font-weight:    700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding:        14px 20px;
    text-align:     center;
    text-decoration: none;
    margin-top:     20px;
    transition:     background 0.2s;
  }
  .mobile-login-btn:hover { background: var(--green-light); }

  /* Other mobile layout */
  .section              { padding: 70px 20px; }
  .hero                 { height: auto; padding-bottom: 160px; }
  .hero-content         { padding: 120px 24px 40px; }
  .hero-stats           { position: relative; grid-template-columns: 1fr 1fr; bottom: auto; }
  .about-images         { grid-template-columns: 1fr; grid-template-rows: auto; }
  .about-img.large      { grid-column: 1; height: 220px; }
  .about-img            { height: 160px; }
  .membership-intro     { grid-template-columns: 1fr; }
  .membership-img       { height: 280px; }
  .membership-process   { grid-template-columns: 1fr; }
  .events-grid          { grid-template-columns: 1fr; }
  .amenities-grid       { grid-template-columns: 1fr 1fr; }
  .gallery-section      { padding: 60px 0; }
  .gallery-grid         { grid-template-columns: repeat(2, 1fr); padding: 0 20px; gap: 3px; }
  .gal-item.tall        { grid-row: span 1; height: 180px; }
  .gal-item             { height: 160px; }
  .gallery-header-light { padding: 0 20px; }
  .upload-note          { padding: 0 20px; }
  .footer-top           { grid-template-columns: 1fr; }
  footer                { padding: 50px 20px 24px; }
  .footer-bottom        { flex-direction: column; text-align: center; }
  .form-row             { grid-template-columns: 1fr; }
  .hero-actions         { flex-direction: column; }
  .btn-primary,
  .btn-outline-light    { text-align: center; }
  .about-cta            { flex-direction: column; }
  .btn-green,
  .btn-outline-green    { text-align: center; }
}
/* END: 24. RESPONSIVE — MOBILE */


/* ============================================================
   25. RESPONSIVE — HIDE MOBILE-ONLY ITEMS ON DESKTOP
   ============================================================ */

@media (min-width: 769px) {
  .nav-mobile-auth-divider,
  .nav-mobile-auth-info,
  .nav-mobile-auth-item { display: none !important; }
}
/* END: 25. RESPONSIVE — HIDE MOBILE-ONLY ITEMS ON DESKTOP */


/* ============================================================
   26. RESPONSIVE — SMALL PHONE (max 400px)
   ============================================================ */

@media (max-width: 400px) {
  .nav-brand-name { font-size: 1rem; }
  .hero-title     { font-size: 3rem; }
  .section-title  { font-size: 1.7rem; }
  .amenities-grid { grid-template-columns: 1fr; }
  .hero-stats     { grid-template-columns: 1fr 1fr; }
  .hero-stat      { padding: 14px 12px; }
}
/* END: 26. RESPONSIVE — SMALL PHONE */


/* ============================================================
   27. LOGIN PAGE
   ============================================================ */

body.page-template-member-login .site-header-wrap,
body.page-template-member-login footer { display: none; }

.login-page {
  min-height:            100vh;
  display:               grid;
  grid-template-columns: 1fr 1fr;
}

.login-visual {
  position:        relative;
  background:      linear-gradient(160deg, rgba(44,95,46,0.92) 0%, rgba(44,95,46,0.6) 60%, rgba(184,150,62,0.3) 100%), url('./images/hero-rec-center.png') center/cover no-repeat;
  display:         flex;
  flex-direction:  column;
  justify-content: space-between;
  padding:         50px;
  color:           white;
}

.login-visual-brand { display: flex; align-items: center; gap: 14px; }

.login-visual-logo {
  width:           52px;
  height:          52px;
  background:      rgba(255, 255, 255, 0.15);
  border:          1px solid rgba(255, 255, 255, 0.3);
  border-radius:   4px;
  overflow:        hidden;
  display:         flex;
  align-items:     center;
  justify-content: center;
}
.login-visual-logo img { width: 100%; height: 100%; object-fit: contain; }

.login-visual-name {
  font-family:    var(--font-display);
  font-size:      1.4rem;
  font-weight:    700;
  letter-spacing: 0.05em;
  color:          white;
}

.login-visual-sub {
  font-size:      0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color:          rgba(255, 255, 255, 0.6);
  display:        block;
}

.login-visual-quote {
  font-family: var(--font-display);
  font-style:  italic;
  font-size:   1.8rem;
  font-weight: 300;
  color:       rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  max-width:   380px;
}

.login-visual-quote span {
  display:        block;
  font-size:      0.65rem;
  font-style:     normal;
  font-family:    var(--font-body);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color:          #D4AF6A;
  margin-top:     16px;
}

.login-visual-footer { font-size: 0.62rem; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; }

.login-form-panel {
  display:         flex;
  align-items:     center;
  justify-content: center;
  padding:         60px 40px;
  background:      white;
}
.login-form-box { width: 100%; max-width: 400px; }

.login-form-title {
  font-family:   var(--font-display);
  font-size:     2.2rem;
  font-weight:   700;
  color:         #2C5F2E;
  margin-bottom: 6px;
}

.login-form-subtitle { font-size: 0.75rem; color: #888; letter-spacing: 0.05em; margin-bottom: 40px; }

.login-error   { background: #FFF0F0; border-left: 3px solid #D32F2F; color: #B71C1C; font-size: 0.78rem; padding: 14px 18px; margin-bottom: 24px; }
.login-success { background: #F0FFF0; border-left: 3px solid #2C5F2E; color: #1A3B1C; font-size: 0.78rem; padding: 14px 18px; margin-bottom: 24px; }

.form-group       { margin-bottom: 20px; }
.form-group label {
  display:        block;
  font-size:      0.62rem;
  font-weight:    700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color:          #4A4A4A;
  margin-bottom:  8px;
}

.form-group input {
  width:       100%;
  background:  #FAF8F3;
  border:      1px solid #E0DDD6;
  padding:     14px 16px;
  font-family: var(--font-body);
  font-size:   0.85rem;
  color:       #1A1A1A;
  outline:     none;
  transition:  border-color 0.3s;
  box-sizing:  border-box;
}
.form-group input:focus       { border-color: #2C5F2E; background: white; }
.form-group input::placeholder { color: #aaa; }

.password-wrap              { position: relative; }
.password-wrap input        { padding-right: 58px; }

.password-toggle {
  position:    absolute;
  right:       14px;
  top:         50%;
  transform:   translateY(-50%);
  background:  none;
  border:      none;
  cursor:      pointer;
  color:       #888;
  font-size:   0.72rem;
  font-family: var(--font-body);
  letter-spacing: 0.05em;
  padding:     4px;
}
.password-toggle:hover { color: #2C5F2E; }

.login-submit {
  width:          100%;
  background:     #2C5F2E;
  color:          white;
  border:         none;
  padding:        16px;
  font-family:    var(--font-body);
  font-size:      0.7rem;
  font-weight:    700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor:         pointer;
  transition:     all 0.3s;
  margin-top:     8px;
}
.login-submit:hover { background: #3D7A40; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(44,95,46,0.3); }

.login-forgot { display: block; text-align: center; margin-top: 20px; font-size: 0.7rem; color: #888; text-decoration: none; letter-spacing: 0.05em; transition: color 0.2s; }
.login-forgot:hover { color: #2C5F2E; }

.login-divider { border: none; border-top: 1px solid #E0DDD6; margin: 30px 0; }

.login-back       { display: block; text-align: center; font-size: 0.68rem; color: #B8963E; text-decoration: none; letter-spacing: 0.1em; font-weight: 600; }
.login-back:hover { color: #2C5F2E; }

.login-security { display: flex; align-items: center; gap: 8px; font-size: 0.6rem; color: #bbb; margin-top: 30px; letter-spacing: 0.05em; }
.login-security::before { content: '🔒'; font-size: 0.75rem; }

@media (max-width: 768px) {
  .login-page       { grid-template-columns: 1fr; }
  .login-visual     { display: none; }
  .login-form-panel { padding: 40px 24px; min-height: 100vh; background: #FAF8F3; }
  .login-form-box   { max-width: 100%; }
}
/* END: 27. LOGIN PAGE */


/* ============================================================
   28. SILVER MEMBER STYLES
   ============================================================ */

.member-topbar {
  background: #2C5F2E;
  padding:    0 40px;
  display:    flex;
  align-items:     center;
  justify-content: space-between;
  height:     64px;
  position:   sticky;
  top:        0;
  z-index:    1000;
  width:      100%;
}

.member-topbar-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.member-topbar-logo  { width: 38px; height: 38px; background: rgba(255,255,255,0.15); border-radius: 3px; overflow: hidden; }
.member-topbar-logo img { width: 100%; height: 100%; object-fit: contain; }

.member-topbar-name {
  font-family:    var(--font-display);
  font-size:      1.1rem;
  font-weight:    700;
  color:          white;
  letter-spacing: 0.05em;
}

.member-topbar-right   { display: flex; align-items: center; gap: 20px; }
.member-topbar-greeting { font-size: 0.68rem; color: rgba(255,255,255,0.7); letter-spacing: 0.05em; }
.member-topbar-greeting strong { color: #D4AF6A; }

.member-logout-btn {
  background:     rgba(255,255,255,0.12);
  border:         1px solid rgba(255,255,255,0.3);
  color:          white;
  font-family:    var(--font-body);
  font-size:      0.62rem;
  font-weight:    600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding:        8px 18px;
  cursor:         pointer;
  text-decoration: none;
  transition:     all 0.2s;
}
.member-logout-btn:hover { background: rgba(255,255,255,0.22); color: white; }

.member-page    { max-width: 1100px; margin: 0 auto; padding: 50px 30px 80px; }

.member-welcome {
  background:  white;
  border-left: 4px solid #B8963E;
  padding:     30px 36px;
  margin-bottom: 30px;
  display:     flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap:   wrap;
  gap:         16px;
}

.member-welcome-text h2 {
  font-family:   var(--font-display);
  font-size:     1.8rem;
  font-weight:   700;
  color:         #2C5F2E;
  margin-bottom: 4px;
}
.member-welcome-text p { font-size: 0.78rem; color: #888; letter-spacing: 0.05em; }

.member-tier-badge {
  background:     linear-gradient(135deg, #D4AF6A, #B8963E);
  color:          white;
  font-size:      0.6rem;
  font-weight:    700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding:        10px 22px;
}

.member-grid {
  display:               grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:                   20px;
  margin-bottom:         30px;
}

.member-card          { background: white; border: 1px solid #E0DDD6; padding: 28px; border-top: 3px solid #2C5F2E; }
.member-card.gold-top { border-top-color: #B8963E; }
.member-card-icon     { font-size: 1.6rem; margin-bottom: 12px; display: block; }

.member-card-title {
  font-family:   var(--font-display);
  font-size:     1.1rem;
  font-weight:   700;
  color:         #2C5F2E;
  margin-bottom: 6px;
}

.member-card-value          { font-size: 0.8rem; color: #4A4A4A; line-height: 1.6; }
.member-card-value strong   { color: #B8963E; }

.member-profile   { background: white; border: 1px solid #E0DDD6; padding: 36px; margin-bottom: 30px; }
.member-profile h3 {
  font-family:   var(--font-display);
  font-size:     1.4rem;
  font-weight:   700;
  color:         #2C5F2E;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid #E0DDD6;
}

.profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.profile-field label   { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: #888; font-weight: 700; display: block; margin-bottom: 5px; }
.profile-field .profile-value { font-size: 0.85rem; color: #1A1A1A; padding: 12px 16px; background: #FAF8F3; border: 1px solid #E0DDD6; }

.member-events    { background: white; border: 1px solid #E0DDD6; padding: 36px; }
.member-events h3 {
  font-family:   var(--font-display);
  font-size:     1.4rem;
  font-weight:   700;
  color:         #2C5F2E;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid #E0DDD6;
}

.event-row { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid #F0EDE8; flex-wrap: wrap; gap: 10px; }
.event-row:last-child { border-bottom: none; }

.event-row-date { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: #B8963E; min-width: 56px; line-height: 1; }
.event-row-date span { display: block; font-size: 0.55rem; color: #888; font-family: var(--font-body); letter-spacing: 0.15em; text-transform: uppercase; margin-top: 2px; font-weight: 400; }

.event-row-info  { flex: 1; padding: 0 20px; }
.event-row-name  { font-size: 0.9rem; font-weight: 600; color: #1A1A1A; margin-bottom: 3px; }
.event-row-desc  { font-size: 0.72rem; color: #888; }
.event-row-tag   { font-size: 0.55rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; background: #EEF4EE; color: #2C5F2E; padding: 5px 12px; }

@media (max-width: 768px) {
  .member-topbar          { padding: 0 16px; }
  .member-topbar-greeting { display: none; }
  .member-page            { padding: 24px 16px 60px; box-sizing: border-box; width: 100%; }
  .member-grid            { grid-template-columns: 1fr 1fr; }
  .profile-grid           { grid-template-columns: 1fr; }
  .member-welcome         { flex-direction: column; padding: 20px 16px; }
  .member-card            { padding: 20px 16px; }
  .member-profile         { padding: 20px 16px; }
  .member-events          { padding: 20px 16px; }
}

@media (max-width: 480px) { .member-grid { grid-template-columns: 1fr; } }
/* END: 28. SILVER MEMBER STYLES */


/* ============================================================
   29. GOLD MEMBER STYLES
   ============================================================ */

.member-welcome--gold      { border-left-color: #B8963E; background: linear-gradient(135deg, #fff 80%, #FDF8EE 100%); }
.member-tier-badge--gold   { background: linear-gradient(135deg, #D4AF6A, #9A7A2E); color: white; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; padding: 10px 22px; }
.member-card.gold-card     { border-top: 3px solid #B8963E; }
.member-card.gold-card .member-card-title { color: #B8963E; }
.event-row-tag--gold       { background: linear-gradient(135deg, #D4AF6A, #B8963E); color: white; font-size: 0.55rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; padding: 5px 12px; }
.event-row--locked         { opacity: 0.55; pointer-events: none; }
.event-row-tag--upgrade    { background: #F5F0E8; color: #B8963E; border: 1px solid #D4AF6A; font-size: 0.55rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; padding: 5px 12px; }

.member-upgrade-cta { margin-top: 24px; background: #FDF8EE; border: 1px solid #E8D9B0; border-left: 4px solid #B8963E; padding: 18px 24px; font-size: 0.8rem; color: #4A4A4A; }
.member-upgrade-cta a { color: #B8963E; font-weight: 700; text-decoration: none; letter-spacing: 0.05em; }
.member-upgrade-cta a:hover { color: #2C5F2E; }
.member-upgrade-cta--gold { border-left-color: #9A7A2E; background: #FEFBF3; }
/* END: 29. GOLD MEMBER STYLES */



/* ============================================================
   30. DASHBOARD COMPONENT STYLES
   Prefix: fp-*
   Shared across Silver, Gold, and Platinum member areas.
   ============================================================ */
   

/* ── Wrapper ── */
.fp-wrap { max-width: 1200px; margin: 0 auto; padding: 32px 24px 56px; }
.fp-member-dashboard {
  max-width: 1240px;
  padding-top: 24px;
}

/* Chess Club page — full-width override */
body.page-template-chess-club .fp-wrap { max-width: 100%; padding: 32px 40px 56px; box-sizing: border-box; }

/* ── Page tab bar ── */
.fp-page-tabs {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: 28px;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 2px;
}
.fp-page-tabs::-webkit-scrollbar { display: none; }

.fp-page-tab {
  display:         inline-flex;
  align-items:     center;
  padding:         13px 22px;
  font-family:     var(--font-body);
  font-size:       0.64rem;
  font-weight:     700;
  letter-spacing:  0.1em;
  text-transform:  uppercase;
  text-decoration: none;
  color:           var(--text-muted);
  border-bottom:   3px solid transparent;
  margin-bottom:   -2px;
  border-radius:   4px 4px 0 0;
  white-space:     nowrap;
  transition:      color 0.2s, border-color 0.2s;
}
.fp-page-tab:hover      { color: var(--green); background: var(--green-pale); }
.fp-page-tab.active     { color: var(--green); border-bottom-color: var(--gold); background: #f9f8f4; }

/* ── Dashboard sections ── */
.fp-dashboard-section {
  margin-bottom: 28px;
}

.fp-dashboard-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.fp-dashboard-section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.1;
}

.fp-dashboard-section-desc {
  margin: 0;
  max-width: 680px;
  font-size: 0.76rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.fp-content-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── Tab panels ── */
.fp-tab-panel        { display: none; }
.fp-tab-panel.active { display: block; animation: fp-fadeIn 0.3s ease both; }

@keyframes fp-fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Stat cards ── */
.fp-stats-row {
  display:               grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:                   18px;
  margin-bottom:         26px;
}

.fp-stat-card {
  background:  var(--white);
  border:      1px solid var(--border);
  border-top:  3px solid var(--green);
  padding:     20px 22px;
  border-radius: 8px;
  box-shadow:  0 2px 12px var(--shadow);
  transition:  transform 0.2s, box-shadow 0.2s;
}
.fp-stat-card:hover      { transform: translateY(-3px); box-shadow: 0 10px 30px var(--shadow); }
.fp-stat-card--gold      { border-top-color: var(--gold); }

.fp-stat-label { font-size: 0.55rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); font-weight: 700; margin-bottom: 8px; }

.fp-stat-value {
  font-family: var(--font-display);
  font-size:   2.2rem;
  font-weight: 700;
  color:       var(--green);
  line-height: 1;
}
.fp-stat-card--gold .fp-stat-value { color: var(--gold); }
.fp-stat-sub    { font-size: 0.68rem; color: var(--text-muted); margin-top: 6px; }
.fp-stat-value--sm { font-size: 1.4rem !important; }

/* ── Progress bars ── */
.fp-progress-wrap  { margin-top: 10px; }
.fp-progress-bar   { height: 3px; background: var(--border); overflow: hidden; }
.fp-progress-fill  { height: 100%; background: var(--green); transition: width 0.8s ease; }
.fp-progress-fill--gold { background: var(--gold); }
.fp-progress-label { display: flex; justify-content: space-between; font-size: 0.54rem; color: var(--text-muted); margin-top: 4px; }

/* ── Grids ── */
.fp-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.fp-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.fp-grid-2--balanced,
.fp-grid-3--balanced { align-items: stretch; }

/* ── Panels ── */
.fp-panel { background: var(--white); border: 1px solid var(--border); box-shadow: 0 2px 12px var(--shadow); overflow: hidden; margin-bottom: 20px; }
.fp-panel-head { padding: 16px 22px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.fp-panel {
  border-radius: 8px;
}

.fp-panel-title {
  font-family: var(--font-display);
  font-size:   1.1rem;
  font-weight: 700;
  color:       var(--green);
}

.fp-panel-link { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); text-decoration: none; transition: color 0.2s; white-space: nowrap; cursor: pointer; }
.fp-panel-link:hover { color: var(--green); }
.fp-panel-link--button { cursor: pointer; }
.fp-panel-body { padding: 20px 22px; display: flex; flex-direction: column; gap: 16px; }
.fp-panel-cta { margin-top: auto; padding-top: 4px; }
.fp-panel--hidden { display: none; }
.fp-panel--muted { background: #f8f9fa; }

/* ── Section header ── */
.fp-section-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.fp-section-label  { font-size: 0.58rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); font-weight: 700; display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.fp-section-label::before { content: ''; width: 18px; height: 2px; background: var(--gold); }

.fp-section-title {
  font-family: var(--font-display);
  font-size:   1.85rem;
  font-weight: 700;
  color:       var(--green);
  line-height: 1.1;
}
.fp-section-title em { font-style: italic; color: var(--gold); }

.fp-section-action { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(184,150,62,0.3); padding-bottom: 1px; transition: color 0.2s, border-color 0.2s; white-space: nowrap; }
.fp-section-action:hover { color: var(--green); border-color: var(--green); }

.fp-section-action--pill { display: inline-block; padding: 7px 16px; background: var(--green); color: var(--white) !important; border: 1px solid var(--green); border-radius: 2px; font-size: 0.58rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; transition: background 0.18s, border-color 0.18s; white-space: nowrap; }
.fp-section-action--pill:hover { background: #1a4d35; border-color: #1a4d35; color: var(--white) !important; }

.fp-section-action--outline { display: inline-block; padding: 7px 16px; background: transparent; color: var(--green) !important; border: 1px solid var(--green); border-radius: 2px; font-size: 0.58rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; transition: background 0.18s, color 0.18s; white-space: nowrap; }
.fp-section-action--outline:hover { background: var(--green); color: var(--white) !important; }
.fp-section-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.fp-readonly-action,
.fp-readonly-action:hover {
  background: #f7f4eb;
  border-color: rgba(34,85,53,0.2);
  color: var(--text-muted) !important;
  cursor: default;
}

/* ── Mini tab bar ── */
.fp-mini-tab { padding: 6px 14px; background: var(--white); border: 1px solid var(--border); font-family: var(--font-body); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); cursor: pointer; transition: background 0.18s, color 0.18s, border-color 0.18s; white-space: nowrap; }
.fp-mini-tab:hover      { border-color: var(--green); color: var(--green); }
.fp-mini-tab.active     { background: var(--green); border-color: var(--green); color: var(--white); }

/* ── Upgrade banner ── */
.fp-upgrade-banner { background: linear-gradient(135deg, #FDF8EE 80%, #FAF3DC 100%); border: 1px solid rgba(184,150,62,0.3); border-left: 4px solid var(--gold); padding: 20px 26px; display: flex; align-items: center; gap: 18px; margin-bottom: 26px; box-shadow: 0 2px 12px rgba(184,150,62,0.08); flex-wrap: wrap; border-radius: 8px; }
.fp-upgrade-icon              { font-size: 1.8rem; flex-shrink: 0; }
.fp-upgrade-text .title       { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--gold); }
.fp-upgrade-text .desc        { font-size: 0.76rem; color: var(--text-mid); margin-top: 3px; line-height: 1.6; }
.fp-upgrade-cta               { margin-left: auto; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.fp-dashboard-banner .fp-upgrade-cta { margin-left: 0; }

/* ── Events ── */
.fp-event-list    { display: flex; flex-direction: column; }
.fp-event-item    { display: flex; align-items: center; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--border); transition: background 0.2s; }
.fp-event-item:last-child  { border-bottom: none; }
.fp-event-item:hover       { background: var(--green-pale); }
.fp-event-item--locked     { opacity: 0.48; pointer-events: none; }
.fp-event-date             { text-align: center; min-width: 42px; }
.fp-event-date-day         { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--gold); line-height: 1; }
.fp-event-date-month       { display: block; font-size: 0.52rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.fp-event-info             { flex: 1; }
.fp-event-name             { font-size: 0.84rem; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.fp-event-desc             { font-size: 0.7rem; color: var(--text-muted); }
.fp-event-tag              { font-size: 0.52rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; padding: 4px 10px; white-space: nowrap; flex-shrink: 0; }
.fp-event-tag--open        { background: var(--green-pale); color: var(--green); }
.fp-event-tag--upgrade     { background: #F5F0E8; color: var(--gold); border: 1px solid rgba(184,150,62,0.3); }

/* ── Quick actions ── */
.fp-quick-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.fp-action-btn    { display: flex; flex-direction: column; gap: 5px; padding: 16px; background: var(--cream); border: 1px solid var(--border); border-top: 3px solid var(--border); text-decoration: none; transition: all 0.2s; cursor: pointer; }
.fp-action-btn:hover { background: var(--green-pale); border-top-color: var(--green); transform: translateY(-2px); box-shadow: 0 6px 20px var(--shadow); }
.fp-action-icon  { font-size: 1.3rem; line-height: 1; }
.fp-action-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); }
.fp-action-desc  { font-size: 0.68rem; color: var(--text-muted); line-height: 1.4; }

/* ── Profile hero ── */
.fp-profile-hero {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 22px;
  box-shadow: 0 2px 12px var(--shadow);
}
.fp-profile-hero {
  border-radius: 8px;
}

.fp-silver-hero { border-left-color: var(--green); background: linear-gradient(180deg, #ffffff 0%, #f7faf7 100%); }
.fp-gold-hero { background: linear-gradient(180deg, #ffffff 0%, #fbf8ef 100%); }
.fp-platinum-hero { background: linear-gradient(180deg, #ffffff 0%, #f6f4ef 100%); }

.fp-profile-avatar-lg { width: 72px; height: 72px; border-radius: 50%; background: var(--green-pale); border: 3px solid var(--gold-light); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--green); flex-shrink: 0; }
.fp-silver-avatar { border-color: rgba(34,85,53,0.18); background: #edf6ee; }
.fp-gold-avatar { background: #fbf7eb; }
.fp-platinum-avatar { background: #f5f2e9; }

.fp-profile-info .name       { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--green); line-height: 1.1; }
.fp-profile-info .email      { font-size: 0.78rem; color: var(--text-muted); margin-top: 3px; }
.fp-profile-info .member-since { font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-top: 6px; }
.fp-silver-hero .fp-profile-info .member-since { color: var(--green); }
.fp-profile-actions { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; justify-self: end; }

.fp-profile-meta-chips {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fp-profile-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid var(--border);
  background: var(--cream);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  border-radius: 999px;
}

/* ── Tier badge ── */
.fp-tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 5px 12px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--white);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
}
.fp-silver-badge { background: linear-gradient(135deg, #6f8577, var(--green)); }

/* ── Fields grid ── */
.fp-fields-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 22px; }
.fp-fields-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.fp-fields-grid--compact { margin-bottom: 10px; }
.fp-fields-stack { display: flex; flex-direction: column; gap: 14px; }
.fp-field       { background: var(--white); border: 1px solid var(--border); padding: 16px; box-shadow: 0 1px 6px var(--shadow); }
.fp-field--stack { padding: 0; border: none; box-shadow: none; background: transparent; }
.fp-field label { display: block; font-size: 0.52rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); font-weight: 700; margin-bottom: 6px; }
.fp-field .value { font-size: 0.84rem; color: var(--text); padding: 9px 12px; background: var(--cream); border: 1px solid var(--border); }

/* ── Bookings ── */
.fp-booking-row          { display: flex; align-items: center; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--border); }
.fp-booking-row:last-child { border-bottom: none; }
.fp-booking-status       { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.fp-booking-status.confirmed { background: #27A06A; }
.fp-booking-status.pending   { background: var(--gold); }
.fp-booking-info         { flex: 1; }
.fp-booking-name         { font-size: 0.84rem; font-weight: 600; color: var(--text); }
.fp-booking-meta         { font-size: 0.68rem; color: var(--text-muted); margin-top: 2px; }
.fp-booking-discount     { font-size: 0.6rem; font-weight: 700; color: #27A06A; text-transform: uppercase; letter-spacing: 0.06em; }

/* ── Club cards ── */
.fp-club-card  { background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--green); padding: 20px; box-shadow: 0 2px 10px var(--shadow); transition: all 0.2s; display: flex; flex-direction: column; }
.fp-club-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px var(--shadow); border-top-color: var(--gold); }
.fp-club-name  { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--green); margin-bottom: 4px; }
.fp-club-meta  { font-size: 0.54rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 10px; }
.fp-club-desc  { font-size: 0.76rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 10px; flex: 1; }
.fp-club-next-meeting { font-size: 0.68rem; color: var(--green); background: var(--green-pale); border-left: 3px solid var(--green); padding: 6px 10px; margin-bottom: 10px; line-height: 1.5; }

/* ── SIG detail drawer ── */
#fp-sig-detail              { border-top: 3px solid var(--gold); }
#fp-sig-detail .fp-panel-head { background: #FFFBF5; }

/* ── Officer tools ── */
.fp-officer-tools-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--green); margin-bottom: 14px; }

/* ── Guest quota ── */
.fp-guest-quota { display: flex; align-items: center; gap: 20px; padding: 18px 22px; background: var(--white); border: 1px solid var(--border); border-left: 4px solid var(--green); margin-bottom: 16px; box-shadow: 0 2px 10px var(--shadow); flex-wrap: wrap; }
.fp-guest-quota--compact { padding: 14px 16px; margin-bottom: 0; box-shadow: none; border-left-width: 3px; background: var(--cream); }
.fp-guest-quota--spaced { margin-bottom: 22px; }
.fp-guest-circles      { display: flex; gap: 8px; }
.fp-guest-circle       { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; }
.fp-guest-circle.used      { background: var(--green-pale); border-color: var(--green); color: var(--green); }
.fp-guest-circle.available { background: #EEF9F4; border-color: rgba(39,160,106,0.45); color: #27A06A; }
.fp-guest-quota-text       { flex: 1; font-size: 0.82rem; color: var(--text-mid); line-height: 1.6; }
.fp-guest-quota-text strong { color: var(--green); }
.fp-guest-quota-text p     { font-size: 0.7rem; color: var(--text-muted); margin-top: 3px; }

/* ── Notifications ── */
.fp-notif-list  { display: flex; flex-direction: column; }
.fp-notif-item  { display: flex; align-items: flex-start; gap: 12px; padding: 13px 8px; border-bottom: 1px solid var(--border); transition: background 0.2s; }
.fp-notif-item:last-child { border-bottom: none; }
.fp-notif-item:hover      { background: var(--green-pale); }
.fp-notif-dot-col         { padding-top: 5px; }
.fp-notif-indicator       { width: 7px; height: 7px; border-radius: 50%; background: var(--border); }
.fp-notif-indicator.unread { background: var(--gold); }
.fp-notif-body .title     { font-size: 0.82rem; font-weight: 600; color: var(--text); line-height: 1.5; }
.fp-notif-body .time      { font-size: 0.58rem; color: var(--text-muted); margin-top: 2px; }

/* ── Booking rules ── */
.fp-rules-list    { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.fp-rules-list--spaced { padding-top: 4px; }
.fp-rules-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.78rem; color: var(--text-mid); line-height: 1.6; }
.fp-rule-icon     { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

/* ── Booking priority notice ── */
.fp-booking-notice { display: flex; align-items: flex-start; gap: 12px; padding: 16px 20px; background: #FFFBF0; border: 1px solid rgba(184,150,62,0.35); border-left: 4px solid var(--gold); margin-bottom: 20px; font-size: 0.78rem; color: var(--text-mid); line-height: 1.7; }
.fp-booking-notice {
  border-radius: 8px;
}
.fp-booking-notice--compact { margin-bottom: 0; padding: 14px 16px; }
.fp-booking-notice--spaced { margin-bottom: 22px; }
.fp-booking-notice--fill { height: 100%; margin-bottom: 0; }
.fp-booking-notice-icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.fp-booking-notice strong { color: var(--gold); font-weight: 700; display: block; margin-bottom: 2px; font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; }

/* ── Empty state ── */
.fp-empty       { text-align: center; padding: 40px 20px; color: var(--text-muted); }
.fp-empty-icon  { font-size: 1.8rem; margin-bottom: 10px; opacity: 0.3; }
.fp-empty-text  { font-size: 0.78rem; line-height: 1.6; }

/* ── Forms ── */
.fp-guest-form  { display: flex; flex-direction: column; gap: 18px; }
.fp-form-row    { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fp-form-group  { display: flex; flex-direction: column; gap: 6px; }
.fp-form-group--full { grid-column: 1 / -1; }
.fp-form-group--end { justify-content: flex-end; }

.fp-form-group label { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.fp-required  { color: #e05252; margin-left: 2px; }
.fp-optional  { color: var(--text-muted); font-weight: 400; font-size: 0.52rem; text-transform: none; letter-spacing: 0; }

.fp-form-group input[type="text"],
.fp-form-group input[type="number"],
.fp-form-group input[type="tel"],
.fp-form-group input[type="email"],
.fp-form-group input[type="date"],
.fp-form-group input[type="time"] {
  padding:     10px 14px;
  border:      1px solid var(--border);
  background:  var(--cream);
  font-family: var(--font-body);
  font-size:   0.82rem;
  color:       var(--text);
  outline:     none;
  transition:  border-color 0.2s, box-shadow 0.2s;
  width:       100%;
  box-sizing:  border-box;
}
.fp-form-group input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(34,85,53,0.08); }

.fp-form-group select {
  padding:     10px 14px;
  border:      1px solid var(--border);
  background:  var(--cream);
  font-family: var(--font-body);
  font-size:   0.82rem;
  color:       var(--text);
  outline:     none;
  transition:  border-color 0.2s, box-shadow 0.2s;
  width:       100%;
  box-sizing:  border-box;
  appearance:  auto;
  cursor:      pointer;
}
.fp-form-group select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(34,85,53,0.08); }

.fp-form-group textarea {
  padding:     10px 14px;
  border:      1px solid var(--border);
  background:  var(--cream);
  font-family: var(--font-body);
  font-size:   0.82rem;
  color:       var(--text);
  outline:     none;
  transition:  border-color 0.2s, box-shadow 0.2s;
  width:       100%;
  box-sizing:  border-box;
  resize:      vertical;
  line-height: 1.6;
}
.fp-form-group textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(34,85,53,0.08); }

.fp-form-check    { margin-top: 4px; }
.fp-check-label   { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 0.76rem; color: var(--text-mid); line-height: 1.7; }
.fp-check-label--offset { margin-top: 6px; }
.fp-check-label input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; width: 16px; height: 16px; accent-color: var(--green); cursor: pointer; }
.fp-form-fee-notice { background: #FFF8EC; border: 1px solid rgba(184,150,62,0.4); border-left: 4px solid var(--gold); padding: 12px 16px; font-size: 0.76rem; color: var(--text-mid); line-height: 1.6; }
.fp-form-actions  { display: flex; align-items: center; gap: 12px; padding-top: 4px; }
.fp-form-actions--spaced { padding-top: 8px; }

/* ── Submit / action buttons ── */
.fp-guest-submit-btn { padding: 11px 28px; font-family: var(--font-body); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; border: none; transition: all 0.2s; }
.fp-guest-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* ── Form notices ── */
.fp-guest-form-notice { padding: 13px 18px; margin-bottom: 18px; font-size: 0.78rem; line-height: 1.6; border-left: 4px solid; }
.fp-form-notice--compact { margin-bottom: 0; }
.fp-msg-success { background: #EEF9F4; border-color: #27A06A; color: #1a6644; }
.fp-msg-error   { background: #FEF2F2; border-color: #e05252; color: #7f1d1d; }
.fp-hidden { display: none; }

.fp-stat-value--gold { color: var(--gold) !important; }
.fp-stat-sub--spaced { margin-top: -4px; }
.fp-stats-row--profile { margin-bottom: 0; }

/* ── SIGs & profile utilities ── */
.fp-fields-grid--profile { margin-bottom: 0; }
.fp-sigs-progress-card { max-width: 520px; margin-bottom: 0; }
.fp-sigs-modal-panel,
.fp-sig-detail-panel { margin-bottom: 24px; }
.fp-sig-detail-panel { margin-top: 8px; }
.fp-sigs-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.fp-sigs-toolbar-group {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.fp-sigs-toolbar-group--end { margin-left: auto; }
.fp-club-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.fp-club-role-chip { margin-left: auto; }
.fp-club-count {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.fp-card-actions { margin-top: 12px; }
.fp-detail-meta { margin-bottom: 8px; }
.fp-detail-description {
  margin: 0 0 12px;
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.fp-inline-dev-badge { color: #2d6a4f; }
.fp-sig-log-dev--cta { margin-bottom: 8px; }
.fp-detail-bylaws { margin-top: 16px; }
.fp-detail-bylaws-text {
  white-space: pre-wrap;
  font-size: 0.78rem;
  line-height: 1.7;
  margin: 0;
}
.fp-panel-divider {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.fp-text-muted-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 12px;
}
.fp-officer-tools {
  margin-top: 20px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.fp-officer-tools-grid { gap: 14px; margin-bottom: 0; }
.fp-scroll-x { margin-top: 12px; overflow-x: auto; }

/* ── Guest history table ── */
.fp-guest-table { width: 100%; border-collapse: collapse; font-size: 0.76rem; }
.fp-guest-table th { padding: 10px 14px; text-align: left; font-size: 0.52rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); border-bottom: 2px solid var(--border); background: var(--cream); }
.fp-guest-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); color: var(--text); vertical-align: middle; }
.fp-guest-table tbody tr:last-child td { border-bottom: none; }
.fp-guest-table tbody tr:hover td { background: var(--green-pale); }

.fp-pass-free { display: inline-block; padding: 3px 10px; background: var(--green-pale); color: var(--green); font-size: 0.52rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.fp-pass-paid { display: inline-block; padding: 3px 10px; background: #F5F0E8; color: var(--gold); border: 1px solid rgba(184,150,62,0.3); font-size: 0.52rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }

/* ── Guest inline edit ── */
.fp-edit-btn  { padding: 4px 10px; font-family: var(--font-body); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.08em; border: 1px solid var(--border); background: var(--cream); color: var(--green); cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.fp-edit-btn:hover      { background: var(--green-pale); border-color: var(--green); }
.fp-edit-row            { background: #FAFDF9; }
.fp-edit-cell           { padding: 16px 14px !important; }
.fp-inline-edit         { display: flex; flex-direction: column; gap: 14px; }
.fp-inline-edit-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.fp-edit-timer          { font-size: 0.62rem; color: var(--gold); font-weight: 700; margin-left: auto; }

/* ── Pagination ── */
.fp-table-pagination { display: flex; gap: 6px; padding-top: 16px; flex-wrap: wrap; }
.fp-page-btn { padding: 6px 12px; font-family: var(--font-body); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.08em; border: 1px solid var(--border); background: var(--cream); color: var(--text-muted); cursor: pointer; transition: all 0.2s; }
.fp-page-btn:hover         { border-color: var(--green); color: var(--green); }
.fp-page-btn.fp-page-active { background: var(--green); color: var(--white); border-color: var(--green); }

/* ── Leave group button ── */
button.fp-sig-leave-btn { background: none; border: none; cursor: pointer; font-family: var(--font-body); font-size: 0.62rem; color: var(--text-muted); text-decoration: underline; padding: 0; transition: color 0.2s; }
button.fp-sig-leave-btn:hover { color: #c0392b; }

/* ── Dashboard responsive ── */
@media (max-width: 1100px) {
  .fp-stats-row   { grid-template-columns: 1fr 1fr; }
  .fp-grid-3      { grid-template-columns: 1fr 1fr; }
  .fp-fields-grid { grid-template-columns: 1fr 1fr; }
  .fp-profile-hero { grid-template-columns: auto minmax(0, 1fr); }
  .fp-profile-actions { grid-column: 1 / -1; justify-self: start; align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .fp-wrap { padding: 16px 16px 40px; box-sizing: border-box; }
  .fp-member-dashboard { max-width: 100%; }
  body.page-template-chess-club .fp-wrap { padding: 16px 16px 40px; box-sizing: border-box; }
  .fp-page-tabs { padding: 0; }
  .fp-stats-row { grid-template-columns: 1fr 1fr; gap: 1px; margin-bottom: 16px; background: var(--border); }
  .fp-stat-card { border: none; border-radius: 0; box-shadow: none; background: var(--white); }
  .fp-panel { box-shadow: none; }
  .fp-panel-head { padding: 14px 16px; }
  .fp-panel-body { padding: 14px 16px; }
  .fp-profile-hero { padding: 18px 16px; box-shadow: none; grid-template-columns: 1fr; }
  .fp-profile-avatar-lg { width: 64px; height: 64px; }
  .fp-profile-actions { align-items: stretch; width: 100%; flex-direction: column; }
  .fp-profile-meta-chips { width: 100%; }
  .fp-club-card { padding: 18px 16px; box-shadow: none; }
  .fp-upgrade-banner { padding: 16px 16px; }
  .fp-upgrade-cta { margin-left: 0; }
  .fp-guest-quota { padding: 14px 16px; box-shadow: none; flex-direction: column; }
  .fp-fields-grid { grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }
  .fp-field { margin: 0; box-shadow: none; background: var(--white); }
  .fp-grid-2, .fp-grid-3 { grid-template-columns: 1fr; }
  .fp-quick-actions { grid-template-columns: 1fr; }
  .fp-form-row { grid-template-columns: 1fr; }
  .fp-form-group--full { grid-column: auto; }
  .fp-section-header { align-items: flex-start; flex-direction: column; gap: 12px; }
  .fp-dashboard-section-head { margin-bottom: 14px; padding-bottom: 12px; }
  .fp-section-actions,
  .fp-sigs-toolbar,
  .fp-sigs-toolbar-group,
  .fp-sigs-toolbar-group--end { width: 100%; margin-left: 0; }
  .fp-sigs-toolbar { align-items: stretch; }
  .fp-sigs-progress-card { max-width: none; }
  .fp-section-action--pill,
  .fp-section-action--outline,
  .fp-section-action { width: 100%; text-align: center; box-sizing: border-box; }
  .fp-edit-timer { margin-left: 0; width: 100%; }
}

@media (max-width: 640px) {
  .fp-guest-table thead { display: none; }
  .fp-guest-table tbody tr { display: block; border: 1px solid var(--border); margin-bottom: 12px; background: var(--white); }
  .fp-guest-table tbody tr:hover td { background: transparent; }
  .fp-guest-table td { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px; border-bottom: 1px solid var(--border); font-size: 0.78rem; }
  .fp-guest-table td:last-child { border-bottom: none; }
  .fp-guest-table td::before { content: attr(data-label); font-size: 0.52rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); flex-shrink: 0; margin-right: 12px; }
}

@media (max-width: 480px) {
  .fp-stats-row   { grid-template-columns: 1fr; }
  .fp-fields-grid { grid-template-columns: 1fr; }
  .fp-stat-card:nth-child(odd) { border-right: none; }
}
/* END: 30. DASHBOARD COMPONENT STYLES */


/* ============================================================
   31. CHESS CLUB PAGE ADDITIONS
   Prefix: fp-cc-*
   Paste after fp-* rules. Avoids conflicts with other sections.
   ============================================================ */

.fp-cc-header-actions  { display: flex; gap: 10px; flex-wrap: wrap; }
.fp-cc-champions-banner { border-left-width: 5px; border-left-color: var(--gold); }
.fp-cc-contact-notice  { margin-bottom: 26px; }
.fp-cc-champ-value     { line-height: 1.15 !important; }
.fp-cc-event-date-block { margin-bottom: 18px; }
.fp-cc-patron-img      { width: 100%; display: block; max-height: 440px; object-fit: cover; object-position: top; }
.fp-cc-patron-hero     { margin-bottom: 20px; padding: 18px 20px; }

.fp-cc-constitution-field { margin-bottom: 14px; }
.fp-cc-constitution-field:last-child { margin-bottom: 0; }
.fp-cc-constitution-field .value { height: auto; line-height: 1.7; font-size: 0.78rem; background: transparent; border: none; padding: 0; }

.fp-cc-mac-active           { border-top-color: var(--gold) !important; }
.fp-cc-mac-active .fp-club-name { color: var(--gold); }
.fp-cc-mac-cta              { margin-top: 6px; }

/* ── News / Collage grid ── */
.fp-cc-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 26px; }

.fp-cc-news-card--feature { grid-column: 1 / -1; display: grid; grid-template-columns: 1.6fr 1fr; gap: 0; }

.fp-cc-news-card { background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--green); box-shadow: 0 2px 12px var(--shadow); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; }
.fp-cc-news-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px var(--shadow); }
.fp-cc-news-card--feature { border-top-color: var(--gold); }

.fp-cc-news-img-wrap       { position: relative; overflow: hidden; }
.fp-cc-news-img-wrap img   { width: 100%; display: block; height: 220px; object-fit: cover; transition: transform 0.4s ease; }
.fp-cc-news-card--feature .fp-cc-news-img-wrap img { height: 100%; min-height: 280px; }
.fp-cc-news-card:hover .fp-cc-news-img-wrap img { transform: scale(1.03); }

.fp-cc-news-badge { position: absolute; top: 12px; left: 12px; font-size: 0.52rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; padding: 4px 10px; background: var(--green); color: var(--white); }
.fp-cc-news-badge--gold { background: var(--gold); color: var(--white); }

.fp-cc-news-body { padding: 18px 20px; display: flex; flex-direction: column; flex: 1; }
.fp-cc-news-card--feature .fp-cc-news-body { justify-content: center; padding: 28px 30px; }

.fp-cc-news-meta  { font-size: 0.54rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }

.fp-cc-news-title {
  font-family:   var(--font-display);
  font-size:     1.05rem;
  font-weight:   700;
  color:         var(--green);
  line-height:   1.25;
  margin-bottom: 8px;
}
.fp-cc-news-card--feature .fp-cc-news-title { font-size: 1.55rem; }

.fp-cc-news-desc { font-size: 0.75rem; color: var(--text-mid); line-height: 1.7; flex: 1; }

@media (max-width: 1100px) {
  .fp-cc-news-grid { grid-template-columns: 1fr 1fr; }
  .fp-cc-news-card--feature { grid-column: 1 / -1; grid-template-columns: 1.4fr 1fr; }
}

@media (max-width: 768px) {
  .fp-cc-news-grid { grid-template-columns: 1fr; gap: 12px; }
  .fp-cc-news-card--feature { grid-template-columns: 1fr; }
  .fp-cc-news-card--feature .fp-cc-news-img-wrap img { height: 220px; min-height: unset; }
  .fp-cc-news-card--feature .fp-cc-news-body { padding: 18px 18px; }
  .fp-cc-header-actions { width: 100%; }
  .fp-cc-header-actions .fp-section-action--pill,
  .fp-cc-header-actions .fp-section-action--outline { width: 100%; text-align: center; box-sizing: border-box; }
}

@media (max-width: 480px) { .fp-cc-news-img-wrap img { height: 180px; } }
/* END: 31. CHESS CLUB PAGE ADDITIONS */


/* ============================================================
   32. ADMIN DASHBOARD STYLES
   Prefix: fpa-*
   Only loaded on the Admin Dashboard page template.
   Uses the same Cormorant Garamond + Montserrat fonts as the
   rest of the site — consistent typographic scale throughout.
   ============================================================ */

/* ── Admin-only colour extras (fpa- prefix avoids clashing) ── */
:root {
  --fpa-red:    #C0392B;
  --fpa-orange: #E07820;
  --fpa-blue:   #2563AE;
  --fpa-radius: 2px; /* matches site's sharp-edge aesthetic */
}

/* ── Body override for admin page ── */
body.fp-admin-page {
  background:  var(--cream);
  color:       var(--text);
  font-family: var(--font-body); /* Montserrat — matches main site */
  font-size:   14px;             /* slightly larger than before for legibility */
  line-height: 1.6;
  min-height:  100vh;
}

/* ── Outer layout ── */
.fpa-wrap { display: grid; grid-template-rows: auto 1fr; min-height: 100vh; }

/* ── Header ── */
.fpa-header {
  background:      var(--green);
  border-bottom:   3px solid var(--gold);
  padding:         0 32px;
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  height:          64px;
  position:        sticky;
  top:             0;
  z-index:         100;
  box-shadow:      0 2px 20px var(--shadow);
}

.fpa-logo {
  display:         flex;
  align-items:     center;
  gap:             12px;
  font-family:     var(--font-display); /* Cormorant Garamond — matches main nav brand */
  font-size:       20px;
  font-weight:     700;
  color:           var(--white);
  letter-spacing:  0.05em;
  text-decoration: none;
}

/* Logo image (replaces emoji icon — see admin-dashboard.php) */
.fpa-logo-img {
  height:      40px;
  width:       auto;
  display:     block;
  object-fit:  contain;
  flex-shrink: 0;
}

/* Fallback icon container kept for safety */
.fpa-logo-icon {
  width:           36px;
  height:          36px;
  background:      rgba(255, 255, 255, 0.15);
  border:          1px solid rgba(255, 255, 255, 0.3);
  border-radius:   var(--fpa-radius);
  display:         flex;
  align-items:     center;
  justify-content: center;
  font-size:       18px;
  flex-shrink:     0;
  overflow:        hidden;
}

.fpa-logo small {
  font-size:      10px;
  color:          rgba(255, 255, 255, 0.6);
  font-family:    var(--font-body);
  display:        block;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top:     -2px;
}

.fpa-header-meta { display: flex; align-items: center; gap: 20px; }
.fpa-header-stat { text-align: right; }

.fpa-header-stat-val {
  font-family: var(--font-display); /* Cormorant Garamond for numerals */
  font-size:   22px;
  font-weight: 700;
  line-height: 1;
  color:       var(--white);
}
.fpa-header-stat-val.gold     { color: var(--gold-light); }
.fpa-header-stat-val.platinum { color: #b0ccd4; }
.fpa-header-stat-val.silver   { color: rgba(255, 255, 255, 0.75); }

.fpa-header-stat-label {
  font-family:    var(--font-body);
  font-size:      10px;
  color:          rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.fpa-sep          { width: 1px; height: 32px; background: rgba(255, 255, 255, 0.25); }

.fpa-admin-name   { font-family: var(--font-body); font-size: 12px; color: rgba(255, 255, 255, 0.6); }
.fpa-admin-name strong { color: var(--white); display: block; }

/* ── Body grid ── */
.fpa-body {
  display:               grid;
  grid-template-columns: 220px 1fr;
  height:                calc(100vh - 64px);
  overflow:              hidden;
}

/* ── Sidebar ── */
.fpa-sidebar {
  background:     var(--white);
  border-right:   1px solid var(--border);
  padding:        20px 0;
  display:        flex;
  flex-direction: column;
  overflow-y:     auto;
  box-shadow:     2px 0 12px var(--shadow);
}

.fpa-sidebar-section {
  padding:        14px 18px 6px;
  font-family:    var(--font-body);
  font-size:      9px;
  color:          var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight:    700;
}

.fpa-nav-btn {
  display:     flex;
  align-items: center;
  gap:         10px;
  padding:     9px 18px;
  cursor:      pointer;
  color:       var(--text-mid);
  border:      none;
  background:  none;
  width:       100%;
  text-align:  left;
  font-family: var(--font-body);
  font-size:   12px;
  transition:  all 0.15s;
  position:    relative;
}
.fpa-nav-btn:hover  { color: var(--green); background: var(--green-pale); }
.fpa-nav-btn.active { color: var(--green); background: var(--green-pale); font-weight: 600; }

.fpa-nav-btn.active::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--gold); }
.fpa-nav-btn.active[data-view="guests"]::before   { background: var(--fpa-blue); }
.fpa-nav-btn.active[data-view="sigs"]::before     { background: var(--green); }
.fpa-nav-btn.active[data-view="bookings"]::before { background: var(--fpa-orange); }

.fpa-nav-icon { font-size: 14px; width: 18px; text-align: center; flex-shrink: 0; }

.fpa-nav-badge {
  margin-left:   auto;
  background:    var(--cream);
  border:        1px solid var(--border);
  color:         var(--text-muted);
  font-family:   var(--font-body);
  font-size:     10px;
  padding:       1px 6px;
  border-radius: 20px;
  min-width:     20px;
  text-align:    center;
}
.fpa-nav-badge.gold-b    { background: #FFF8E1; border-color: rgba(184,150,62,0.4);  color: var(--gold); }
.fpa-nav-badge.plat-b    { background: #E8F4F8; border-color: rgba(100,160,180,0.4); color: #3a7a8a; }
.fpa-nav-badge.silver-b  { background: #F5F5F5; border-color: #ccc;                  color: #666; }
.fpa-nav-badge.pending-b { background: #FFF3E0; border-color: rgba(224,120,32,0.4);  color: var(--fpa-orange); }
.fpa-nav-badge.alert-b   { background: #FFEBEE; border-color: rgba(192,57,43,0.4);   color: var(--fpa-red); }

/* ── Main content area ── */
.fpa-main { overflow-y: auto; padding: 28px 32px; background: var(--cream); }

/* ── Panel views ── */
.fpa-view        { display: none; }
.fpa-view.active { display: block; animation: fpa-fadeIn 0.25s ease both; }

@keyframes fpa-fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Toolbar ── */
.fpa-toolbar { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; flex-wrap: wrap; }

.fpa-toolbar-title {
  font-family:  var(--font-display); /* Cormorant Garamond — matches site section titles */
  font-size:    28px;
  color:        var(--green);
  font-weight:  700;
  margin-right: 4px;
  white-space:  nowrap;
}
.fpa-toolbar-title em { color: var(--gold); font-style: italic; }

.fpa-search {
  flex:             1;
  min-width:        180px;
  max-width:        300px;
  background:       var(--white);
  border:           1px solid var(--border);
  border-radius:    var(--fpa-radius);
  padding:          8px 12px 8px 34px;
  color:            var(--text);
  font-family:      var(--font-body);
  font-size:        12px;
  outline:          none;
  transition:       border-color 0.2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' fill='%23888888' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.099zm-5.242 1.656a5.5 5.5 0 1 1 0-11 5.5 5.5 0 0 1 0 11z'/%3E%3C/svg%3E");
  background-repeat:   no-repeat;
  background-position: 11px center;
}
.fpa-search:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(44,95,46,0.08); }

/* ── Buttons ── */
.fpa-btn {
  padding:         9px 18px;
  border-radius:   var(--fpa-radius);
  border:          none;
  cursor:          pointer;
  font-family:     var(--font-body);  /* Montserrat — matches site buttons */
  font-size:       0.62rem;
  font-weight:     700;
  letter-spacing:  0.14em;
  text-transform:  uppercase;
  transition:      all 0.2s;
  display:         inline-flex;
  align-items:     center;
  gap:             6px;
  white-space:     nowrap;
}
.fpa-btn-gold    { background: var(--gold); color: var(--white); }
.fpa-btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(184,150,62,0.3); color: var(--white); }

.fpa-btn-outline { background: transparent; border: 1.5px solid var(--green); color: var(--green); }
.fpa-btn-outline:hover { background: var(--green); color: var(--white); }

.fpa-btn-success { background: var(--green-pale); border: 1px solid rgba(44,95,46,0.35); color: var(--green); }
.fpa-btn-success:hover { background: var(--green); color: var(--white); }

.fpa-btn-danger  { background: #FFEBEE; border: 1px solid rgba(192,57,43,0.35); color: var(--fpa-red); }
.fpa-btn-danger:hover  { background: var(--fpa-red); color: var(--white); }

.fpa-btn-warn    { background: #FFF3E0; border: 1px solid rgba(224,120,32,0.35); color: var(--fpa-orange); }
.fpa-btn-warn:hover    { background: var(--fpa-orange); color: var(--white); }

.fpa-btn-sm       { padding: 5px 12px; font-size: 0.55rem; }
.fpa-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ── Stat cards ── */
.fpa-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 22px; }

.fpa-scard {
  background:  var(--white);
  border:      1px solid var(--border);
  border-top:  3px solid var(--green);
  padding:     20px 22px;
  overflow:    hidden;
  box-shadow:  0 2px 12px var(--shadow);
  transition:  transform 0.2s, box-shadow 0.2s;
}
.fpa-scard:hover     { transform: translateY(-3px); box-shadow: 0 10px 30px var(--shadow); }
.fpa-scard.c-gold     { border-top-color: var(--gold); }
.fpa-scard.c-platinum { border-top-color: #6aaab8; }
.fpa-scard.c-silver   { border-top-color: #9e9e9e; }
.fpa-scard.c-green    { border-top-color: var(--green); }
.fpa-scard.c-orange   { border-top-color: var(--fpa-orange); }
.fpa-scard.c-red      { border-top-color: var(--fpa-red); }
.fpa-scard.c-blue     { border-top-color: var(--fpa-blue); }

.fpa-scard-label {
  font-family:    var(--font-body);
  font-size:      0.55rem;
  color:          var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom:  8px;
  font-weight:    700;
}

.fpa-scard-val {
  font-family: var(--font-display); /* Cormorant Garamond for large numerals */
  font-size:   2.4rem;
  font-weight: 700;
  line-height: 1;
  color:       var(--green);
}
.fpa-scard-val.c-all      { color: var(--text); }
.fpa-scard-val.c-gold     { color: var(--gold); }
.fpa-scard-val.c-platinum { color: #3a7a8a; }
.fpa-scard-val.c-silver   { color: #666; }
.fpa-scard-val.c-green    { color: var(--green); }
.fpa-scard-val.c-orange   { color: var(--fpa-orange); }
.fpa-scard-val.c-red      { color: var(--fpa-red); }
.fpa-scard-val.c-blue     { color: var(--fpa-blue); }
.fpa-scard-sub  { font-family: var(--font-body); font-size: 0.68rem; color: var(--text-muted); margin-top: 6px; }

/* ── Table ── */
.fpa-table-wrap { background: var(--white); border: 1px solid var(--border); overflow: hidden; box-shadow: 0 2px 12px var(--shadow); }
.fpa-table      { width: 100%; border-collapse: collapse; }
.fpa-table thead tr { background: var(--green); border-bottom: 3px solid var(--gold); }

.fpa-table th {
  padding:        10px 14px;
  text-align:     left;
  font-family:    var(--font-body);
  font-size:      0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color:          rgba(255, 255, 255, 0.85);
  font-weight:    700;
  white-space:    nowrap;
}

.fpa-table td {
  padding:        12px 14px;
  border-bottom:  1px solid var(--border);
  font-family:    var(--font-body);
  font-size:      13px;
  color:          var(--text-mid);
  vertical-align: middle;
}
.fpa-table tbody tr:last-child td { border-bottom: none; }
.fpa-table tbody tr     { transition: background 0.15s; cursor: pointer; }
.fpa-table tbody tr:hover { background: var(--green-pale); }

.fpa-member-name  { color: var(--text); font-family: var(--font-body); font-size: 13px; font-weight: 600; }
.fpa-member-email { font-family: var(--font-body); font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ── Tier pills ── */
.fpa-tier-pill { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; font-family: var(--font-body); font-size: 0.52rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; white-space: nowrap; }
.fpa-tier-pill.gold     { background: #FFF8E1; border: 1px solid rgba(184,150,62,0.4); color: var(--gold); }
.fpa-tier-pill.platinum { background: #E8F4F8; border: 1px solid rgba(100,160,180,0.4); color: #3a7a8a; }
.fpa-tier-pill.silver   { background: #F5F5F5; border: 1px solid #ccc; color: #555; }

/* ── Status pills ── */
.fpa-status-pill { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; font-family: var(--font-body); font-size: 0.52rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; white-space: nowrap; }
.fpa-status-pill.pending  { background: #FFF3E0; border: 1px solid rgba(224,120,32,0.35); color: var(--fpa-orange); }
.fpa-status-pill.active   { background: var(--green-pale); border: 1px solid rgba(44,95,46,0.3); color: var(--green); }
.fpa-status-pill.rejected { background: #FFEBEE; border: 1px solid rgba(192,57,43,0.3); color: var(--fpa-red); }
.fpa-status-pill.overdue  { background: #FFEBEE; border: 1px solid rgba(192,57,43,0.3); color: var(--fpa-red); }
.fpa-status-pill.approved { background: var(--green-pale); border: 1px solid rgba(44,95,46,0.3); color: var(--green); }
.fpa-status-pill.free     { background: #EBF3FF; border: 1px solid rgba(37,99,174,0.3); color: var(--fpa-blue); }
.fpa-status-pill.paid     { background: var(--green-pale); border: 1px solid rgba(44,95,46,0.3); color: var(--green); }

.fpa-expiry-ok   { color: var(--green); font-weight: 600; }
.fpa-expiry-warn { color: var(--fpa-orange); font-weight: 600; }
.fpa-expiry-bad  { color: var(--fpa-red); font-weight: 600; }

.fpa-action-btns { display: flex; gap: 5px; opacity: 0; transition: opacity 0.15s; }
.fpa-table tbody tr:hover .fpa-action-btns { opacity: 1; }

/* ── Empty / Loading states ── */
.fpa-empty     { text-align: center; padding: 52px 20px; color: var(--text-muted); }
.fpa-empty .icon { font-size: 36px; margin-bottom: 10px; opacity: 0.35; }
.fpa-empty p   { font-family: var(--font-body); font-size: 13px; }

/* ── ICT table inline controls + pagination ── */
.fpa-inline-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  background: #f6f4ef;
}

.fpa-inline-group {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.58rem;
  font-family: var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.fpa-mini-select,
.fpa-mini-input {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.72rem;
  font-family: var(--font-body);
  padding: 6px 8px;
  min-height: 30px;
  outline: none;
}

.fpa-mini-select:focus,
.fpa-mini-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(44, 95, 46, 0.08);
}

.fpa-mini-input { min-width: 180px; }

.fpa-inline-summary {
  margin-left: auto;
  font-size: 0.66rem;
  color: var(--text-mid);
  font-family: var(--font-body);
}

.fpa-table-pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-top: 1px solid var(--border);
  background: #faf8f3;
}

.fpa-page-meta {
  font-size: 0.66rem;
  color: var(--text-mid);
  font-family: var(--font-body);
}

.fpa-page-btn {
  background: transparent;
  border: 1px solid var(--green);
  color: var(--green);
  font-size: 0.62rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  cursor: pointer;
}

.fpa-page-btn:hover { background: var(--green); color: var(--white); }
.fpa-page-btn:disabled { opacity: 0.45; cursor: not-allowed; }
.fpa-page-btn:disabled:hover { background: transparent; color: var(--green); }
.fpa-table-empty-row { text-align: center; color: var(--text-muted); font-style: italic; }

.fpa-loading   { display: flex; align-items: center; justify-content: center; padding: 44px; color: var(--text-muted); gap: 10px; font-family: var(--font-body); font-size: 13px; }
.fpa-spinner   { width: 18px; height: 18px; border: 2px solid var(--border); border-top-color: var(--green); border-radius: 50%; animation: fpa-spin 0.7s linear infinite; }

@keyframes fpa-spin { to { transform: rotate(360deg); } }

/* ── Modal ── */
.fpa-overlay {
  position:        fixed;
  inset:           0;
  background:      rgba(44, 95, 46, 0.18);
  z-index:         1000;
  display:         none;
  align-items:     center;
  justify-content: center;
  padding:         20px;
  backdrop-filter: blur(3px);
}
.fpa-overlay.open { display: flex; }

.fpa-modal {
  background: var(--white);
  border:     1px solid var(--border);
  border-top: 3px solid var(--green);
  width:      100%;
  max-width:  640px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 16px 60px rgba(44, 95, 46, 0.15);
  animation:  fpa-in 0.2s ease;
}
.fpa-modal.wide { max-width: 780px; }

@keyframes fpa-in {
  from { transform: translateY(14px) scale(0.98); opacity: 0; }
  to   { transform: none; opacity: 1; }
}

.fpa-modal-head {
  padding:         18px 24px 14px;
  border-bottom:   1px solid var(--border);
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  background:      var(--green-pale);
}

.fpa-modal-title {
  font-family: var(--font-display); /* Cormorant Garamond */
  font-size:   1.5rem;
  color:       var(--green);
  font-weight: 700;
}
.fpa-modal-title em { color: var(--gold); font-style: italic; }

.fpa-modal-close { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 20px; padding: 0 4px; line-height: 1; transition: color 0.15s; }
.fpa-modal-close:hover { color: var(--fpa-red); }

.fpa-modal-body   { padding: 24px; }
.fpa-modal-footer { padding: 14px 24px; border-top: 1px solid var(--border); display: flex; gap: 8px; justify-content: flex-end; flex-wrap: wrap; background: var(--cream); }

/* ── Forms in modals ── */
.fpa-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }

.fpa-field label {
  display:        block;
  font-family:    var(--font-body);
  font-size:      0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color:          var(--text-muted);
  margin-bottom:  5px;
  font-weight:    700;
}

.fpa-field input,
.fpa-field select,
.fpa-field textarea {
  width:       100%;
  background:  var(--cream);
  border:      1px solid var(--border);
  padding:     9px 12px;
  color:       var(--text);
  font-family: var(--font-body);
  font-size:   0.84rem;
  outline:     none;
  transition:  border-color 0.2s;
}
.fpa-field input:focus,
.fpa-field select:focus,
.fpa-field textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(44,95,46,0.08); }
.fpa-field textarea { resize: vertical; min-height: 80px; }
.fpa-field.full { grid-column: 1 / -1; }

.fpa-divider { grid-column: 1 / -1; font-family: var(--font-body); font-size: 0.55rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--text-muted); padding: 12px 0 6px; border-top: 1px solid var(--border); margin-top: 4px; font-weight: 700; }

/* ── Confirm dialog ── */
.fpa-confirm {
  background: var(--white);
  border:     1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding:    32px;
  width:      100%;
  max-width:  380px;
  text-align: center;
  box-shadow: 0 16px 60px rgba(44, 95, 46, 0.15);
  animation:  fpa-in 0.2s ease;
}
.fpa-confirm-icon { font-size: 32px; margin-bottom: 12px; }

.fpa-confirm h3 {
  font-family:   var(--font-display); /* Cormorant Garamond */
  font-weight:   700;
  color:         var(--green);
  margin-bottom: 8px;
  font-size:     1.45rem;
}

.fpa-confirm p    { font-family: var(--font-body); color: var(--text-mid); font-size: 0.84rem; margin-bottom: 22px; line-height: 1.6; }
.fpa-confirm-btns { display: flex; gap: 10px; justify-content: center; }

/* ── Toast notification ── */
.fpa-toast {
  position:   fixed;
  bottom:     24px;
  right:      24px;
  background: var(--white);
  border:     1px solid var(--border);
  padding:    12px 18px;
  font-family: var(--font-body);
  font-size:  0.8rem;
  color:      var(--text);
  box-shadow: 0 8px 30px rgba(44, 95, 46, 0.15);
  z-index:    2000;
  display:    none;
  gap:        10px;
  align-items: center;
  max-width:  320px;
  animation:  fpa-toast-in 0.2s ease;
}
.fpa-toast.show    { display: flex; }
.fpa-toast.success { border-left: 4px solid var(--green); }
.fpa-toast.error   { border-left: 4px solid var(--fpa-red); }
.fpa-toast.info    { border-left: 4px solid var(--gold); }
.fpa-toast.warn    { border-left: 4px solid var(--fpa-orange); }

@keyframes fpa-toast-in {
  from { transform: translateX(16px); opacity: 0; }
  to   { transform: none; opacity: 1; }
}

/* ── Detail grid ── */
.fpa-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }

.fpa-detail-field label {
  font-family:    var(--font-body);
  font-size:      0.52rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color:          var(--text-muted);
  display:        block;
  margin-bottom:  3px;
  font-weight:    700;
}
.fpa-detail-field .val { font-family: var(--font-body); font-size: 0.86rem; color: var(--text); }

/* ── Info block ── */
.fpa-info-block {
  background:   var(--green-pale);
  border:       1px solid var(--border);
  border-left:  3px solid var(--green);
  padding:      14px 16px;
  margin-bottom: 14px;
}

.fpa-info-block-label {
  font-family:    var(--font-body);
  font-size:      0.52rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color:          var(--green);
  font-weight:    700;
  margin-bottom:  7px;
}

/* ── Notice strips ── */
.fpa-notice { display: flex; gap: 12px; padding: 13px 18px; margin-bottom: 16px; font-family: var(--font-body); font-size: 0.8rem; line-height: 1.6; border-left: 4px solid; }
.fpa-notice.warn   { background: #FFF3E0; border-color: var(--fpa-orange); color: #7a4000; }
.fpa-notice.info   { background: #EBF3FF; border-color: var(--fpa-blue);   color: #1a3a6a; }
.fpa-notice.danger { background: #FFEBEE; border-color: var(--fpa-red);    color: #7a1c1c; }

/* ── Progress bar ── */
.fpa-progress-bar  { height: 4px; background: var(--border); overflow: hidden; margin-top: 6px; }
.fpa-progress-fill { height: 100%; background: var(--green); transition: width 0.5s ease; }
.fpa-progress-fill.platinum { background: #6aaab8; }
.fpa-progress-fill.silver   { background: #9e9e9e; }
.fpa-progress-fill.gold     { background: var(--gold); }

/* ── Filter tabs ── */
.fpa-filter-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 18px; }

.fpa-filter-tab {
  padding:        6px 14px;
  font-family:    var(--font-body);
  font-size:      0.62rem;
  font-weight:    700;
  letter-spacing: 0.08em;
  border:         1px solid var(--border);
  background:     var(--white);
  color:          var(--text-muted);
  cursor:         pointer;
  transition:     all 0.15s;
}
.fpa-filter-tab:hover  { border-color: var(--green); color: var(--green); }
.fpa-filter-tab.active { background: var(--green); border-color: var(--green); color: var(--white); }

/* ── Platinum member section (admin view) ── */
.member-welcome--platinum  { border-left-color: #4A4A6A; background: linear-gradient(135deg, #fff 70%, #F4F3F8 100%); }
.member-tier-badge--platinum { background: linear-gradient(135deg, #8A8AAA, #4A4A6A); color: white; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; padding: 10px 22px; }
.member-card.platinum-card { border-top: 3px solid #6A6A8A; }
.member-card.platinum-card .member-card-title { color: #4A4A6A; }
.member-card.platinum-card .member-card-value strong { color: #6A6A8A; }
.event-row-tag--platinum   { background: linear-gradient(135deg, #8A8AAA, #4A4A6A); color: white; font-size: 0.55rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; padding: 5px 12px; }

.member-perks-strip { margin-top: 24px; background: linear-gradient(135deg, #4A4A6A, #2C2C4A); padding: 28px 36px; }
.member-perks-strip-inner { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.perks-label { font-family: var(--font-body); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.5); white-space: nowrap; }
.perks-list  { display: flex; gap: 24px; flex-wrap: wrap; }
.perk-item   { font-family: var(--font-body); font-size: 0.75rem; color: rgba(255,255,255,0.85); letter-spacing: 0.05em; display: flex; align-items: center; gap: 6px; }

.upgrade-notice {
  background: #F8F4FF;
  border-left: 4px solid #6A6A8A;
  color: #4A4A6A;
  padding: 12px 16px;
  margin: 12px 0 20px;
  font-family: var(--font-body);
  font-size: 0.84rem;
  line-height: 1.55;
}
.upgrade-notice p {
  margin: 0;
}
.upgrade-notice a {
  color: #6A6A8A;
  font-weight: 600;
  text-decoration: none;
}
.upgrade-notice a:hover {
  color: var(--green);
}
.gold-area .upgrade-notice   { background: #F8F4FF; border-left: 4px solid #6A6A8A; color: #4A4A6A; }
.gold-area .upgrade-notice a { color: #6A6A8A; }

@media (max-width: 768px) {

  .member-perks-strip       { padding: 22px 20px; }
  .member-perks-strip-inner { flex-direction: column; gap: 16px; }
  .perks-list               { gap: 14px; }
}

/* ── Custom scrollbars ── */
.fpa-sidebar::-webkit-scrollbar,
.fpa-main::-webkit-scrollbar          { width: 5px; }
.fpa-sidebar::-webkit-scrollbar-track,
.fpa-main::-webkit-scrollbar-track    { background: var(--cream); }
.fpa-sidebar::-webkit-scrollbar-thumb,
.fpa-main::-webkit-scrollbar-thumb    { background: var(--border); }
.fpa-sidebar::-webkit-scrollbar-thumb:hover,
.fpa-main::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ── Admin dashboard responsive ── */
@media (max-width: 1100px) { .fpa-stats-grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 900px) {
  .fpa-body    { grid-template-columns: 1fr; }
  .fpa-sidebar { display: none; }
  .fpa-main    { padding: 20px 16px; }
  .fpa-inline-summary { margin-left: 0; width: 100%; }
}

@media (max-width: 600px) {
  .fpa-stats-grid { grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }
  .fpa-scard      { box-shadow: none; }
  .fpa-header     { padding: 0 16px; }
  .fpa-header-meta { gap: 10px; }
  .fpa-inline-controls { padding: 8px; gap: 8px; }
  .fpa-inline-group { width: 100%; justify-content: space-between; }
  .fpa-mini-select,
  .fpa-mini-input { width: 100%; }
  .fpa-table-pagination { justify-content: space-between; }
}
/* END: 32. ADMIN DASHBOARD STYLES */

  .member-perks-strip {
    padding: 22px 20px;
  }
  .member-perks-strip-inner {
    flex-direction: column;
    gap: 16px;
  }
  .perks-list {
    gap: 14px;
  }



/* ============================================
   COMPANY PROFILE PAGE
   ============================================ */

.company-profile-page {
  background: var(--cream);
}

.profile-hero {
  position: relative;
  overflow: hidden;
  padding: 130px 60px 90px;
}
.profile-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(110deg, rgba(44, 95, 46, 0.92) 0%, rgba(44, 95, 46, 0.72) 45%, rgba(0, 0, 0, 0.4) 100%),
    url('./images/hero-events.png');
  background-size: cover;
  background-position: center;
}
.profile-hero-inner {
  position: relative;
  z-index: 2;
}
.profile-hero .section-label {
  color: var(--gold-light);
}
.profile-hero .section-label::before {
  background: var(--gold-light);
}
.profile-hero .section-title {
  color: var(--white);
}
.profile-hero .section-title span {
  color: var(--gold-light);
}
.profile-hero .section-body {
  max-width: 860px;
  color: rgba(255, 255, 255, 0.86);
}

.profile-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
  max-width: 980px;
}
.profile-metric-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(212, 175, 106, 0.45);
  border-top: 3px solid var(--gold);
  padding: 20px;
}
.profile-metric-label {
  display: block;
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 700;
}
.profile-metric-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--green);
  line-height: 1.3;
}

.profile-history-section {
  background: var(--white);
}
.profile-two-col {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
}
.profile-panel {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  padding: 30px 28px;
}
.profile-panel-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--green);
  margin-bottom: 14px;
}
.profile-panel-text {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 12px;
}
.profile-panel-text:last-child {
  margin-bottom: 0;
}
.profile-point-list {
  list-style: none;
  display: grid;
  gap: 10px;
}
.profile-point-list li {
  position: relative;
  padding: 10px 12px 10px 30px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 0.8rem;
  color: var(--text);
}
.profile-point-list li::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 17px;
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 50%;
}

.profile-leadership-section {
  background: var(--cream);
}
.profile-leadership-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.profile-leader-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--green);
  padding: 30px;
}
.profile-leader-photo {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 4 / 5;
  background: var(--green-pale);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 16px;
}
.profile-leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-leader-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  color: var(--green);
  margin-bottom: 6px;
}
.profile-leader-role {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.profile-portfolio-section {
  background: var(--white);
}
.profile-portfolio-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.profile-portfolio-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 24px;
}
.profile-portfolio-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--green);
  margin-bottom: 8px;
}
.profile-portfolio-card p {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.profile-cta-section {
  background: var(--green);
}
.profile-cta-inner {
  text-align: center;
}
.profile-cta-inner .section-title {
  color: var(--white);
}
.profile-cta-inner .section-title span {
  color: var(--gold-light);
}
.profile-cta-inner .section-body {
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
}
.profile-cta-inner .about-cta {
  justify-content: center;
}

@media (max-width: 1024px) {
  .profile-hero {
    padding: 110px 30px 70px;
  }
  .profile-metric-grid {
    grid-template-columns: 1fr 1fr;
  }
  .profile-two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .profile-hero {
    padding: 95px 16px 55px;
  }
  .profile-metric-grid {
    grid-template-columns: 1fr;
  }
  .profile-leadership-grid,
  .profile-portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   ADVISORY BOARD PAGE
   ============================================ */

.advisory-page {
  background: var(--cream);
}

.advisory-hero {
  position: relative;
  overflow: hidden;
  padding: 130px 60px 90px;
}
.advisory-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(110deg, rgba(44, 95, 46, 0.92) 0%, rgba(44, 95, 46, 0.72) 45%, rgba(0, 0, 0, 0.4) 100%),
    url('./images/hero-rec-center.png');
  background-size: cover;
  background-position: center;
}
.advisory-hero-inner {
  position: relative;
  z-index: 2;
}
.advisory-hero .section-label {
  color: var(--gold-light);
}
.advisory-hero .section-label::before {
  background: var(--gold-light);
}
.advisory-hero .section-title {
  color: var(--white);
}
.advisory-hero .section-title span {
  color: var(--gold-light);
}
.advisory-hero .section-body {
  max-width: 860px;
  color: rgba(255, 255, 255, 0.86);
}

.advisory-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
  max-width: 980px;
}
.advisory-meta-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(212, 175, 106, 0.45);
  border-top: 3px solid var(--gold);
  padding: 20px;
}
.advisory-meta-label {
  display: block;
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 700;
}
.advisory-meta-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--green);
  line-height: 1.3;
}

.advisory-board-section {
  background: var(--white);
}
.advisory-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.advisory-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 22px;
}
.advisory-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--green-pale);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 14px;
}
.advisory-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.advisory-role {
  font-size: 0.56rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.advisory-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.42rem;
  color: var(--green);
  margin-bottom: 8px;
  line-height: 1.2;
}
.advisory-bio {
  font-size: 0.79rem;
  color: var(--text-mid);
  line-height: 1.82;
}

.advisory-founder-section {
  background: var(--green);
}
.advisory-founder-section .section-label {
  color: var(--gold-light);
}
.advisory-founder-section .section-label::before {
  background: var(--gold-light);
}
.advisory-founder-section .section-title {
  color: var(--white);
}
.advisory-founder-section .section-title span {
  color: var(--gold-light);
}
.advisory-founder-card {
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(240px, 290px) 1fr;
  gap: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 24px;
}
.advisory-founder-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.advisory-founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.advisory-founder-role {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
  font-weight: 700;
}
.advisory-founder-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 12px;
}
.advisory-founder-bio {
  font-size: 0.82rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 10px;
}
.advisory-founder-bio:last-child {
  margin-bottom: 0;
}

.advisory-cta-section {
  background: var(--white);
}
.advisory-cta-box {
  text-align: center;
  background: var(--green);
  padding: 56px 36px;
}
.advisory-cta-box .section-title {
  color: var(--white);
}
.advisory-cta-box .section-title span {
  color: var(--gold-light);
}
.advisory-cta-box .section-body {
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
}
.advisory-cta-box .about-cta {
  justify-content: center;
}

@media (max-width: 1024px) {
  .advisory-hero {
    padding: 110px 30px 70px;
  }
  .advisory-grid {
    grid-template-columns: 1fr 1fr;
  }
  .advisory-founder-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .advisory-hero {
    padding: 95px 16px 55px;
  }
  .advisory-meta-grid,
  .advisory-grid {
    grid-template-columns: 1fr;
  }
  .advisory-founder-card {
    padding: 20px;
  }
  .advisory-cta-box {
    padding: 42px 18px;
  }
}

/* ============================================
   BROCHURE PAGE
   ============================================ */

.brochure-page {
  background: var(--cream);
}

.brochure-hero {
  position: relative;
  overflow: hidden;
  padding: 130px 60px 90px;
}
.brochure-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(110deg, rgba(44, 95, 46, 0.92) 0%, rgba(44, 95, 46, 0.72) 45%, rgba(0, 0, 0, 0.38) 100%),
    url('./images/hero-events.png');
  background-size: cover;
  background-position: center;
}
.brochure-hero-inner {
  position: relative;
  z-index: 2;
}
.brochure-hero .section-label {
  color: var(--gold-light);
}
.brochure-hero .section-label::before {
  background: var(--gold-light);
}
.brochure-hero .section-title {
  color: var(--white);
}
.brochure-hero .section-title span {
  color: var(--gold-light);
}
.brochure-hero .section-body {
  max-width: 850px;
  color: rgba(255, 255, 255, 0.86);
}
.brochure-hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.brochure-activities-section {
  background: var(--white);
}
.brochure-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.brochure-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 18px;
}
.brochure-card-image {
  width: 100%;
  height: 190px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 14px;
}
.brochure-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brochure-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  color: var(--green);
  margin-bottom: 8px;
}
.brochure-card-summary {
  font-size: 0.78rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 12px;
}
.brochure-card-list {
  list-style: none;
  display: grid;
  gap: 8px;
}
.brochure-card-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.75rem;
  color: var(--text);
}
.brochure-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.brochure-contact-section {
  background: var(--cream);
}
.brochure-contact-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: center;
}
.brochure-contact-list {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 10px;
}
.brochure-contact-list li {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.7;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 10px 12px;
}
.brochure-contact-list strong {
  color: var(--green);
}
.brochure-contact-image {
  width: 100%;
  border: 1px solid var(--border);
  overflow: hidden;
}
.brochure-contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brochure-preview-section {
  background: var(--white);
}
.brochure-preview-frame {
  margin-top: 24px;
  border: 1px solid var(--border);
  background: var(--cream);
  height: 760px;
  overflow: hidden;
}
.brochure-preview-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.brochure-preview-cta {
  margin-top: 20px;
}

/* ============================================
   PLAQUE PAGE
   ============================================ */

.plaque-page {
  background: var(--cream);
}

.plaque-hero {
  position: relative;
  overflow: hidden;
  padding: 130px 60px 90px;
  background-image:
    linear-gradient(110deg, rgba(44, 95, 46, 0.88) 0%, rgba(44, 95, 46, 0.7) 40%, rgba(0, 0, 0, 0.3) 100%),
    var(--plaque-bg-image, url('./images/plaque_image_1.png'));
  background-size: cover;
  background-position: center;
}
.plaque-hero-inner {
  position: relative;
  z-index: 2;
}
.plaque-hero .section-label {
  color: var(--gold-light);
}
.plaque-hero .section-label::before {
  background: var(--gold-light);
}
.plaque-hero .section-title {
  color: var(--white);
}
.plaque-hero .section-title span {
  color: var(--gold-light);
}
.plaque-hero .section-body {
  max-width: 900px;
  color: rgba(255, 255, 255, 0.86);
}
.plaque-hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.plaque-visual-section {
  background: var(--white);
}
.plaque-visual-inner {
  display: grid;
  grid-template-columns: minmax(250px, 340px) 1fr;
  gap: 24px;
  align-items: center;
}
.plaque-visual-image {
  width: 100%;
  border: 1px solid var(--border);
  overflow: hidden;
}
.plaque-visual-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.plaque-quote {
  margin-top: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  line-height: 1.45;
  color: var(--green);
  border-left: 3px solid var(--gold);
  padding-left: 18px;
}

.plaque-members-section {
  background: linear-gradient(180deg, #fbf8f1 0%, #f2efe5 100%);
}
.plaque-members-section .section-title {
  color: var(--green);
}
.plaque-members-section .section-title span {
  color: var(--gold);
}
.plaque-members-grid {
  margin-top: 34px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  counter-reset: founder;
}
.plaque-members-grid li {
  counter-increment: founder;
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f9f4e7 100%);
  border: 1px solid rgba(184, 150, 62, 0.35);
  border-left: 4px solid var(--gold);
  padding: 14px 14px 14px 46px;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(44, 95, 46, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.plaque-members-grid li::before {
  content: counter(founder, decimal-leading-zero);
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.plaque-members-grid li:nth-child(even) {
  background: linear-gradient(135deg, #f4f8f4 0%, #ffffff 100%);
  border-color: rgba(44, 95, 46, 0.25);
  border-left-color: var(--green);
}
.plaque-members-grid li:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(44, 95, 46, 0.14);
}
.plaque-download-cta {
  margin-top: 24px;
}

.plaque-preview-section {
  background: var(--green);
}
.plaque-preview-section .section-label {
  color: var(--gold-light);
}
.plaque-preview-section .section-label::before {
  background: var(--gold-light);
}
.plaque-preview-section .section-title {
  color: var(--white);
}
.plaque-preview-section .section-title span {
  color: var(--gold-light);
}
.plaque-preview-frame {
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  height: 760px;
  overflow: hidden;
}
.plaque-preview-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: var(--white);
}

@media (max-width: 1024px) {
  .brochure-hero,
  .plaque-hero {
    padding: 110px 30px 70px;
  }
  .brochure-grid {
    grid-template-columns: 1fr 1fr;
  }
  .brochure-contact-inner,
  .plaque-visual-inner {
    grid-template-columns: 1fr;
  }
  .plaque-members-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .brochure-hero,
  .plaque-hero {
    padding: 95px 16px 55px;
  }
  .brochure-grid,
  .plaque-members-grid {
    grid-template-columns: 1fr;
  }
  .brochure-preview-frame,
  .plaque-preview-frame {
    height: 560px;
  }
}

/* ============================================
   SIG OVERVIEW PAGE
   ============================================ */

.sig-page {
  background: var(--cream);
}

.sig-hero {
  position: relative;
  overflow: hidden;
  padding: 130px 60px 90px;
}
.sig-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(110deg, rgba(44, 95, 46, 0.9) 0%, rgba(44, 95, 46, 0.72) 45%, rgba(0, 0, 0, 0.38) 100%),
    var(--sig-hero-image, url('./images/SpecialGroups/sigoverview/hero.png'));
  background-size: cover;
  background-position: center;
}
.sig-hero-inner {
  position: relative;
  z-index: 2;
}
.sig-hero .section-label {
  color: var(--gold-light);
}
.sig-hero .section-label::before {
  background: var(--gold-light);
}
.sig-hero .section-title {
  color: var(--white);
}
.sig-hero .section-title span {
  color: var(--gold-light);
}
.sig-hero .section-body {
  color: rgba(255, 255, 255, 0.84);
  max-width: 900px;
}

.sig-intro-section {
  background: var(--white);
}
.sig-intro-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.sig-intro-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  padding: 34px 32px;
}
.sig-intro-copy {
  margin-top: 10px;
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.9;
}
.sig-intro-highlight {
  background: linear-gradient(180deg, #f8f3e8 0%, #f2ecdf 100%);
  border: 1px solid #e4d9bf;
  border-left: 4px solid var(--gold);
  padding: 34px 32px;
}
.sig-intro-highlight h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--green);
  margin-bottom: 10px;
}
.sig-intro-highlight p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

.sig-groups-section {
  background: var(--cream);
}
.sig-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.sig-card {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 2px 16px var(--shadow);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.sig-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 34px var(--shadow);
}
.sig-card-image {
  height: 220px;
  overflow: hidden;
}
.sig-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sig-card-body {
  padding: 24px;
}
.sig-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  color: var(--green);
  margin-bottom: 12px;
  line-height: 1.2;
}
.sig-card-label {
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.sig-card-objective {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .sig-hero {
    padding: 110px 30px 70px;
  }
  .sig-intro-inner {
    grid-template-columns: 1fr;
  }
  .sig-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .sig-hero {
    padding: 95px 16px 55px;
  }
  .sig-grid {
    grid-template-columns: 1fr;
  }
}

.sig-card-link {
  display: block;
  text-decoration: none;
}
.sig-card-link .sig-card-cta {
  margin-top: 16px;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
}
.sig-card-link .sig-card-cta::after {
  content: '  >';
  color: var(--gold);
}

/* ============================================
   SIG DETAIL PAGE
   ============================================ */

.sig-detail-page {
  background: var(--cream);
}

.sig-detail-hero {
  position: relative;
  overflow: hidden;
  padding: 130px 60px 90px;
}
.sig-detail-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.sig-detail-hero-inner {
  position: relative;
  z-index: 2;
}
.sig-detail-hero .section-label {
  color: var(--gold-light);
}
.sig-detail-hero .section-label::before {
  background: var(--gold-light);
}
.sig-detail-hero .section-title {
  color: var(--white);
}
.sig-detail-hero .section-body {
  color: rgba(255, 255, 255, 0.86);
  max-width: 840px;
}

.sig-detail-content-section {
  background: var(--white);
}
.sig-detail-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.sig-detail-panel {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  padding: 34px 32px;
}
.sig-detail-panel-alt {
  border-left-color: var(--gold);
}
.sig-detail-copy {
  margin-top: 10px;
  font-size: 0.84rem;
  line-height: 1.9;
  color: var(--text-mid);
}
.sig-detail-focus-list {
  margin-top: 10px;
  list-style: none;
  display: grid;
  gap: 10px;
}
.sig-detail-focus-list li {
  position: relative;
  padding: 10px 12px 10px 30px;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text);
}
.sig-detail-focus-list li::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 16px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.sig-detail-fallback {
  background: var(--white);
}

@media (max-width: 1024px) {
  .sig-detail-hero {
    padding: 110px 30px 70px;
  }
  .sig-detail-content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .sig-detail-hero {
    padding: 95px 16px 55px;
  }
}

/* ============================================
   CONSORTIUM OF INDEPENDENT CPD PROVIDERS PAGE
   ============================================ */

.ccpd-page {
  background: var(--cream);
}

.ccpd-hero {
  position: relative;
  overflow: hidden;
  padding: 130px 60px 90px;
}
.ccpd-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(110deg, rgba(44, 95, 46, 0.9) 0%, rgba(44, 95, 46, 0.74) 45%, rgba(0, 0, 0, 0.35) 100%),
    var(--ccpd-hero-image);
  background-size: cover;
  background-position: center;
}
.ccpd-hero-inner {
  position: relative;
  z-index: 2;
}
.ccpd-hero .section-label {
  color: var(--gold-light);
}
.ccpd-hero .section-label::before {
  background: var(--gold-light);
}
.ccpd-hero .section-title {
  color: var(--white);
}
.ccpd-hero .section-title span {
  color: var(--gold-light);
}
.ccpd-hero .section-body {
  max-width: 900px;
  color: rgba(255, 255, 255, 0.86);
}

.ccpd-intro-section {
  background: var(--white);
}
.ccpd-intro-grid {
  display: grid;
  grid-template-columns: minmax(240px, 420px) 1fr;
  gap: 24px;
  align-items: stretch;
}
.ccpd-intro-image {
  overflow: hidden;
  border: 1px solid var(--border);
}
.ccpd-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ccpd-intro-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  padding: 34px 32px;
}
.ccpd-copy {
  margin-top: 10px;
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.9;
}

.ccpd-objectives-section {
  background: linear-gradient(180deg, #fbf8f1 0%, #f2efe5 100%);
}
.ccpd-objectives-list {
  margin-top: 24px;
  list-style: none;
  display: grid;
  gap: 10px;
  counter-reset: ccpd;
}
.ccpd-objectives-list li {
  counter-increment: ccpd;
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 14px 16px 14px 50px;
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.ccpd-objectives-list li::before {
  content: counter(ccpd);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
}

.ccpd-activities-section {
  background: var(--white);
}
.ccpd-activities-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.ccpd-activity-card {
  background: var(--cream);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 2px 16px var(--shadow);
}
.ccpd-activity-image {
  height: 210px;
  overflow: hidden;
}
.ccpd-activity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ccpd-activity-body {
  padding: 22px;
}
.ccpd-activity-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--green);
  margin-bottom: 8px;
}
.ccpd-activity-body p {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.ccpd-cta-section {
  background: var(--green);
}
.ccpd-cta-inner {
  text-align: center;
}
.ccpd-cta-inner .section-label {
  color: var(--gold-light);
}
.ccpd-cta-inner .section-label::before {
  background: var(--gold-light);
}
.ccpd-cta-inner .section-title {
  color: var(--white);
}
.ccpd-cta-inner .section-title span {
  color: var(--gold-light);
}
.ccpd-cta-inner .section-body {
  max-width: 820px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
}
.ccpd-cta-inner .about-cta {
  justify-content: center;
}

@media (max-width: 1024px) {
  .ccpd-hero {
    padding: 110px 30px 70px;
  }
  .ccpd-intro-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ccpd-hero {
    padding: 95px 16px 55px;
  }
  .ccpd-activities-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   THINK TANK CORE PAGE
   ============================================ */

.ttcore-page {
  background: var(--cream);
}

.ttcore-hero {
  position: relative;
  overflow: hidden;
  padding: 130px 60px 90px;
}
.ttcore-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(110deg, rgba(44, 95, 46, 0.9) 0%, rgba(44, 95, 46, 0.74) 45%, rgba(0, 0, 0, 0.35) 100%),
    var(--ttcore-hero-image);
  background-size: cover;
  background-position: center;
}
.ttcore-hero-inner {
  position: relative;
  z-index: 2;
}
.ttcore-hero .section-label {
  color: var(--gold-light);
}
.ttcore-hero .section-label::before {
  background: var(--gold-light);
}
.ttcore-hero .section-title {
  color: var(--white);
}
.ttcore-hero .section-title span {
  color: var(--gold-light);
}
.ttcore-hero .section-body {
  max-width: 900px;
  color: rgba(255, 255, 255, 0.86);
}

.ttcore-intro-section {
  background: var(--white);
}
.ttcore-intro-grid {
  display: grid;
  grid-template-columns: minmax(220px, 380px) 1fr;
  gap: 24px;
  align-items: stretch;
}
.ttcore-intro-logo {
  background: var(--cream);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  padding: 26px;
}
.ttcore-intro-logo img {
  max-width: 100%;
  height: auto;
}
.ttcore-intro-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  padding: 34px 32px;
}
.ttcore-copy {
  margin-top: 10px;
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.9;
}

.ttcore-objectives-section {
  background: linear-gradient(180deg, #fbf8f1 0%, #f2efe5 100%);
}
.ttcore-objectives-list {
  margin-top: 24px;
  list-style: none;
  display: grid;
  gap: 10px;
  counter-reset: ttcore;
}
.ttcore-objectives-list li {
  counter-increment: ttcore;
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 14px 16px 14px 50px;
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.ttcore-objectives-list li::before {
  content: counter(ttcore);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
}

.ttcore-highlights-section {
  background: var(--white);
}
.ttcore-highlights-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.ttcore-highlight-card {
  background: var(--cream);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 2px 16px var(--shadow);
}
.ttcore-highlight-image {
  height: 220px;
  overflow: hidden;
}
.ttcore-highlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ttcore-highlight-body {
  padding: 22px;
}
.ttcore-highlight-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--green);
  margin-bottom: 8px;
}
.ttcore-highlight-body p {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.ttcore-cta-section {
  background: var(--green);
}
.ttcore-cta-inner {
  text-align: center;
}
.ttcore-cta-inner .section-label {
  color: var(--gold-light);
}
.ttcore-cta-inner .section-label::before {
  background: var(--gold-light);
}
.ttcore-cta-inner .section-title {
  color: var(--white);
}
.ttcore-cta-inner .section-title span {
  color: var(--gold-light);
}
.ttcore-cta-inner .section-body {
  max-width: 820px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
}
.ttcore-cta-inner .about-cta {
  justify-content: center;
}

@media (max-width: 1024px) {
  .ttcore-hero {
    padding: 110px 30px 70px;
  }
  .ttcore-intro-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ttcore-hero {
    padding: 95px 16px 55px;
  }
  .ttcore-highlights-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PROFESSIONAL & SOCIAL DIALOGUES PAGE
   ============================================ */

.psd-page {
  background: var(--cream);
}

.psd-hero {
  position: relative;
  overflow: hidden;
  padding: 130px 60px 90px;
}
.psd-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(110deg, rgba(44, 95, 46, 0.9) 0%, rgba(44, 95, 46, 0.74) 45%, rgba(0, 0, 0, 0.35) 100%),
    var(--psd-hero-image);
  background-size: cover;
  background-position: center;
}
.psd-hero-inner {
  position: relative;
  z-index: 2;
}
.psd-hero .section-label {
  color: var(--gold-light);
}
.psd-hero .section-label::before {
  background: var(--gold-light);
}
.psd-hero .section-title {
  color: var(--white);
}
.psd-hero .section-title span {
  color: var(--gold-light);
}
.psd-hero .section-body {
  max-width: 900px;
  color: rgba(255, 255, 255, 0.86);
}

.psd-intro-section {
  background: var(--white);
}
.psd-intro-grid {
  display: grid;
  grid-template-columns: minmax(240px, 420px) 1fr;
  gap: 24px;
  align-items: stretch;
}
.psd-intro-image {
  overflow: hidden;
  border: 1px solid var(--border);
}
.psd-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.psd-intro-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  padding: 34px 32px;
}
.psd-copy {
  margin-top: 10px;
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.9;
}

.psd-objectives-section {
  background: linear-gradient(180deg, #fbf8f1 0%, #f2efe5 100%);
}
.psd-objectives-list {
  margin-top: 24px;
  list-style: none;
  display: grid;
  gap: 10px;
  counter-reset: psd;
}
.psd-objectives-list li {
  counter-increment: psd;
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 14px 16px 14px 50px;
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.psd-objectives-list li::before {
  content: counter(psd);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
}

.psd-activities-section {
  background: var(--white);
}
.psd-activities-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.psd-activity-card {
  background: var(--cream);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 2px 16px var(--shadow);
}
.psd-activity-image {
  height: 220px;
  overflow: hidden;
}
.psd-activity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.psd-activity-body {
  padding: 22px;
}
.psd-activity-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--green);
  margin-bottom: 8px;
}
.psd-activity-body p {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.psd-cta-section {
  background: var(--green);
}
.psd-cta-inner {
  text-align: center;
}
.psd-cta-inner .section-label {
  color: var(--gold-light);
}
.psd-cta-inner .section-label::before {
  background: var(--gold-light);
}
.psd-cta-inner .section-title {
  color: var(--white);
}
.psd-cta-inner .section-title span {
  color: var(--gold-light);
}
.psd-cta-inner .section-body {
  max-width: 820px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
}
.psd-cta-inner .about-cta {
  justify-content: center;
}

@media (max-width: 1024px) {
  .psd-hero {
    padding: 110px 30px 70px;
  }
  .psd-intro-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .psd-hero {
    padding: 95px 16px 55px;
  }
  .psd-activities-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   GROOVEFEST PAGE
   ============================================ */

.groove-page {
  background: var(--cream);
}

.groove-hero {
  position: relative;
  overflow: hidden;
  padding: 130px 60px 90px;
}
.groove-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(110deg, rgba(44, 95, 46, 0.88) 0%, rgba(44, 95, 46, 0.7) 45%, rgba(0, 0, 0, 0.35) 100%),
    var(--groove-hero-image);
  background-size: cover;
  background-position: center;
}
.groove-hero-inner {
  position: relative;
  z-index: 2;
}
.groove-hero .section-label {
  color: var(--gold-light);
}
.groove-hero .section-label::before {
  background: var(--gold-light);
}
.groove-hero .section-title {
  color: var(--white);
}
.groove-hero .section-title span {
  color: var(--gold-light);
}
.groove-hero .section-body {
  max-width: 900px;
  color: rgba(255, 255, 255, 0.86);
}

.groove-intro-section {
  background: var(--white);
}
.groove-intro-grid {
  display: grid;
  grid-template-columns: minmax(240px, 420px) 1fr;
  gap: 24px;
  align-items: stretch;
}
.groove-intro-image {
  overflow: hidden;
  border: 1px solid var(--border);
}
.groove-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.groove-intro-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  padding: 34px 32px;
}
.groove-copy {
  margin-top: 10px;
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.9;
}

.groove-objectives-section {
  background: linear-gradient(180deg, #fbf8f1 0%, #f2efe5 100%);
}
.groove-objectives-list {
  margin-top: 24px;
  list-style: none;
  display: grid;
  gap: 10px;
  counter-reset: groove;
}
.groove-objectives-list li {
  counter-increment: groove;
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 14px 16px 14px 50px;
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.groove-objectives-list li::before {
  content: counter(groove);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
}

.groove-highlights-section {
  background: var(--white);
}
.groove-highlights-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.groove-highlight-card {
  background: var(--cream);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 2px 16px var(--shadow);
}
.groove-highlight-image {
  height: 220px;
  overflow: hidden;
}
.groove-highlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.groove-highlight-body {
  padding: 22px;
}
.groove-highlight-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--green);
  margin-bottom: 8px;
}
.groove-highlight-body p {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.groove-cta-section {
  background: var(--green);
}
.groove-cta-inner {
  text-align: center;
}
.groove-cta-inner .section-label {
  color: var(--gold-light);
}
.groove-cta-inner .section-label::before {
  background: var(--gold-light);
}
.groove-cta-inner .section-title {
  color: var(--white);
}
.groove-cta-inner .section-title span {
  color: var(--gold-light);
}
.groove-cta-inner .section-body {
  max-width: 820px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
}
.groove-cta-inner .about-cta {
  justify-content: center;
}

@media (max-width: 1024px) {
  .groove-hero {
    padding: 110px 30px 70px;
  }
  .groove-intro-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .groove-hero {
    padding: 95px 16px 55px;
  }
  .groove-highlights-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   ALUMNI HUB PAGE
   ============================================ */

.alumni-page {
  background: var(--cream);
}

.alumni-hero {
  position: relative;
  overflow: hidden;
  padding: 130px 60px 90px;
}
.alumni-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(110deg, rgba(44, 95, 46, 0.88) 0%, rgba(44, 95, 46, 0.72) 45%, rgba(0, 0, 0, 0.35) 100%),
    var(--alumni-hero-image);
  background-size: cover;
  background-position: center;
}
.alumni-hero-inner {
  position: relative;
  z-index: 2;
}
.alumni-hero .section-label {
  color: var(--gold-light);
}
.alumni-hero .section-label::before {
  background: var(--gold-light);
}
.alumni-hero .section-title {
  color: var(--white);
}
.alumni-hero .section-title span {
  color: var(--gold-light);
}
.alumni-hero .section-body {
  max-width: 900px;
  color: rgba(255, 255, 255, 0.86);
}

.alumni-intro-section {
  background: var(--white);
}
.alumni-intro-grid {
  display: grid;
  grid-template-columns: minmax(240px, 420px) 1fr;
  gap: 24px;
  align-items: stretch;
}
.alumni-intro-image {
  overflow: hidden;
  border: 1px solid var(--border);
}
.alumni-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.alumni-intro-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  padding: 34px 32px;
}
.alumni-copy {
  margin-top: 10px;
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.9;
}

.alumni-objectives-section {
  background: linear-gradient(180deg, #fbf8f1 0%, #f2efe5 100%);
}
.alumni-objectives-list {
  margin-top: 24px;
  list-style: none;
  display: grid;
  gap: 10px;
  counter-reset: alumni;
}
.alumni-objectives-list li {
  counter-increment: alumni;
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 14px 16px 14px 50px;
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.alumni-objectives-list li::before {
  content: counter(alumni);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
}

.alumni-highlights-section {
  background: var(--white);
}
.alumni-highlights-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.alumni-highlight-card {
  background: var(--cream);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 2px 16px var(--shadow);
}
.alumni-highlight-image {
  height: 220px;
  overflow: hidden;
}
.alumni-highlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.alumni-highlight-body {
  padding: 22px;
}
.alumni-highlight-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--green);
  margin-bottom: 8px;
}
.alumni-highlight-body p {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.alumni-cta-section {
  background: var(--green);
}
.alumni-cta-inner {
  text-align: center;
}
.alumni-cta-inner .section-label {
  color: var(--gold-light);
}
.alumni-cta-inner .section-label::before {
  background: var(--gold-light);
}
.alumni-cta-inner .section-title {
  color: var(--white);
}
.alumni-cta-inner .section-title span {
  color: var(--gold-light);
}
.alumni-cta-inner .section-body {
  max-width: 820px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
}
.alumni-cta-inner .about-cta {
  justify-content: center;
}

@media (max-width: 1024px) {
  .alumni-hero {
    padding: 110px 30px 70px;
  }
  .alumni-intro-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .alumni-hero {
    padding: 95px 16px 55px;
  }
  .alumni-highlights-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   SUMMA CUM LAUDE PAGE
   ============================================ */

.summa-page {
  background: var(--cream);
}

.summa-hero {
  position: relative;
  overflow: hidden;
  padding: 130px 60px 90px;
}
.summa-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(110deg, rgba(44, 95, 46, 0.88) 0%, rgba(44, 95, 46, 0.72) 45%, rgba(0, 0, 0, 0.35) 100%),
    var(--summa-hero-image);
  background-size: cover;
  background-position: center;
}
.summa-hero-inner {
  position: relative;
  z-index: 2;
}
.summa-hero .section-label {
  color: var(--gold-light);
}
.summa-hero .section-label::before {
  background: var(--gold-light);
}
.summa-hero .section-title {
  color: var(--white);
}
.summa-hero .section-title span {
  color: var(--gold-light);
}
.summa-hero .section-body {
  max-width: 900px;
  color: rgba(255, 255, 255, 0.86);
}

.summa-intro-section {
  background: var(--white);
}
.summa-intro-grid {
  display: grid;
  grid-template-columns: minmax(240px, 420px) 1fr;
  gap: 24px;
  align-items: stretch;
}
.summa-intro-image {
  overflow: hidden;
  border: 1px solid var(--border);
}
.summa-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.summa-intro-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  padding: 34px 32px;
}
.summa-copy {
  margin-top: 10px;
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.9;
}

.summa-objectives-section {
  background: linear-gradient(180deg, #fbf8f1 0%, #f2efe5 100%);
}
.summa-objectives-list {
  margin-top: 24px;
  list-style: none;
  display: grid;
  gap: 10px;
  counter-reset: summa;
}
.summa-objectives-list li {
  counter-increment: summa;
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 14px 16px 14px 50px;
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.summa-objectives-list li::before {
  content: counter(summa);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
}

.summa-highlights-section {
  background: var(--white);
}
.summa-highlights-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.summa-highlight-card {
  background: var(--cream);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 2px 16px var(--shadow);
}
.summa-highlight-image {
  height: 220px;
  overflow: hidden;
}
.summa-highlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.summa-highlight-body {
  padding: 22px;
}
.summa-highlight-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--green);
  margin-bottom: 8px;
}
.summa-highlight-body p {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.summa-cta-section {
  background: var(--green);
}
.summa-cta-inner {
  text-align: center;
}
.summa-cta-inner .section-label {
  color: var(--gold-light);
}
.summa-cta-inner .section-label::before {
  background: var(--gold-light);
}
.summa-cta-inner .section-title {
  color: var(--white);
}
.summa-cta-inner .section-title span {
  color: var(--gold-light);
}
.summa-cta-inner .section-body {
  max-width: 820px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
}
.summa-cta-inner .about-cta {
  justify-content: center;
}

@media (max-width: 1024px) {
  .summa-hero {
    padding: 110px 30px 70px;
  }
  .summa-intro-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .summa-hero {
    padding: 95px 16px 55px;
  }
  .summa-highlights-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   33. STATIC RESOURCE/SERVICE PAGES (fp-resource-*)
   ============================================================ */

.fp-resource-page {
  background: var(--cream);
}

.fp-resource-hero {
  position: relative;
  overflow: hidden;
  padding: 130px 60px 90px;
  min-height: 420px;
}

.fp-resource-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(112deg, rgba(44, 95, 46, 0.92) 0%, rgba(44, 95, 46, 0.76) 46%, rgba(0, 0, 0, 0.34) 100%),
    var(--fp-resource-hero-image);
  background-size: cover;
  background-position: center;
}

.fp-resource-hero-inner {
  position: relative;
  z-index: 1;
}

.fp-resource-hero .section-label {
  color: var(--gold-light);
}

.fp-resource-hero .section-label::before {
  background: var(--gold-light);
}

.fp-resource-hero .section-title {
  color: var(--white);
}

.fp-resource-hero .section-title span {
  color: var(--gold-light);
}

.fp-resource-hero .section-body {
  color: rgba(255, 255, 255, 0.84);
  max-width: 860px;
  margin-top: 10px;
}

.fp-resource-overview-section {
  background: var(--white);
}

.fp-resource-overview-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 26px;
  align-items: start;
}

.fp-resource-overview-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  padding: 32px;
}

.fp-resource-copy {
  font-size: 0.82rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-top: 10px;
}

.fp-resource-bullets-panel {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 2px 16px var(--shadow);
  padding: 28px;
}

.fp-resource-bullets-panel h3 {
  font-family: var(--font-display);
  font-size: 1.38rem;
  color: var(--green);
  margin-bottom: 14px;
}

.fp-resource-bullets-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.fp-resource-bullets-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.78rem;
  line-height: 1.8;
  color: var(--text-mid);
}

.fp-resource-bullets-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 0.92rem;
}

.fp-resource-cards-section {
  background: linear-gradient(180deg, #fbf8f1 0%, #f3efe6 100%);
}

.fp-resource-cards-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.fp-resource-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--green);
  padding: 24px;
  box-shadow: 0 2px 16px var(--shadow);
}

.fp-resource-card.has-image {
  padding: 0;
  overflow: hidden;
}

.fp-resource-card-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(44, 95, 46, 0.08);
}

.fp-resource-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.fp-resource-card-body {
  padding: 24px;
}

.fp-resource-card h3 {
  font-family: var(--font-display);
  font-size: 1.36rem;
  color: var(--green);
  margin-bottom: 10px;
  line-height: 1.2;
}

.fp-resource-card p {
  font-size: 0.78rem;
  line-height: 1.8;
  color: var(--text-mid);
}

.fp-resource-card-meta {
  margin-top: 12px;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.fp-resource-card-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--green);
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 1px solid rgba(44, 95, 46, 0.35);
  padding-bottom: 2px;
}

.fp-resource-card-link:hover {
  color: var(--green-light);
  border-bottom-color: var(--green-light);
}

.fp-resource-fee-section {
  background: var(--white);
}

.fp-resource-table-wrap {
  margin-top: 22px;
  overflow-x: auto;
  border: 1px solid var(--border);
  background: var(--white);
}

.fp-resource-fee-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.fp-resource-fee-table th {
  background: var(--green);
  color: var(--white);
  text-align: left;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 12px 14px;
}

.fp-resource-fee-table td {
  border-top: 1px solid var(--border);
  padding: 12px 14px;
  font-size: 0.76rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.fp-resource-downloads-section {
  background: var(--cream);
}

.fp-resource-download-list {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.fp-resource-download-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--text);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.fp-resource-download-item:hover {
  border-left-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 95, 46, 0.12);
}

.fp-resource-download-title {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green);
}

.fp-resource-download-note {
  font-size: 0.76rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.fp-resource-application-section {
  background: var(--white);
}

.fp-resource-application-form-wrap {
  margin-top: 22px;
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 26px;
}

.fp-membership-application-form .fp-form-actions {
  margin-top: 8px;
}

.fp-membership-application-form .fp-guest-submit-btn {
  background: var(--green);
  color: var(--white);
}

.fp-membership-application-form .fp-guest-submit-btn:hover {
  background: var(--green-light);
}

.fp-application-track-switch {
  margin: 20px 0 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.fp-application-track {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--green);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
}

.fp-application-track.is-active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.fp-application-intro-card {
  margin-top: 6px;
}

.fp-resource-cta-section {
  background: var(--green);
}

.fp-resource-cta-inner {
  text-align: center;
}

.fp-resource-cta-inner .section-label {
  color: var(--gold-light);
}

.fp-resource-cta-inner .section-label::before {
  background: var(--gold-light);
}

.fp-resource-cta-inner .section-title {
  color: var(--white);
}

.fp-resource-cta-inner .section-title span {
  color: var(--gold-light);
}

.fp-resource-cta-inner .section-body {
  max-width: 860px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.84);
}

.fp-resource-cta-inner .about-cta {
  justify-content: center;
}

@media (max-width: 1024px) {
  .fp-resource-hero {
    padding: 110px 30px 75px;
  }

  .fp-resource-overview-grid {
    grid-template-columns: 1fr;
  }

  .fp-resource-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .fp-resource-hero {
    padding: 94px 16px 58px;
  }

  .fp-resource-cards-grid {
    grid-template-columns: 1fr;
  }

  .fp-resource-application-form-wrap {
    padding: 18px 14px;
  }
}

/* ============================================================
   33A. MEMBERS HOME PAGE (fp-members-*)
   ============================================================ */

.fp-members-home-page {
  background: var(--cream);
}

.fp-members-hero-section {
  background: linear-gradient(180deg, #f7f3ea 0%, #f2eee4 100%);
}

.fp-members-hero-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 24px;
  align-items: start;
}

.fp-members-hero-copy {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.06);
  padding: 30px;
}

.fp-members-tier-row {
  margin-top: 14px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.fp-members-tier-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--white);
  color: var(--green);
}

.fp-members-tier-badge.is-silver {
  border-color: #b8c2c9;
  background: #f1f4f7;
  color: #44525d;
}

.fp-members-tier-badge.is-gold {
  border-color: #d4b15d;
  background: #fcf5e2;
  color: #8c6a22;
}

.fp-members-tier-badge.is-platinum {
  border-color: #90a0ab;
  background: #edf1f5;
  color: #3f5463;
}

.fp-members-tier-note {
  font-size: 0.73rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.fp-members-account-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.06);
  padding: 26px;
}

.fp-members-account-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.38rem;
  color: var(--green);
}

.fp-members-access-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.fp-members-access-list li {
  position: relative;
  padding-left: 17px;
  font-size: 0.76rem;
  line-height: 1.8;
  color: var(--text-mid);
}

.fp-members-access-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
}

.fp-members-overview-section {
  background: var(--white);
}

.fp-members-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 26px;
}

.fp-members-stat {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  padding: 16px;
}

.fp-members-stat-label {
  margin: 0;
  font-size: 0.6rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
}

.fp-members-stat-value {
  margin: 8px 0 4px;
  font-family: var(--font-display);
  font-size: 1.68rem;
  line-height: 1.05;
  color: var(--green);
}

.fp-members-stat-note {
  margin: 0;
  font-size: 0.72rem;
  color: var(--text-mid);
}

.fp-members-actions-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.fp-members-action-card {
  height: 100%;
}

.fp-members-action-card.is-locked {
  border-top-color: #9ea8ae;
  background: #f7f7f7;
}

.fp-members-action-card.is-locked .fp-resource-card-meta {
  color: #66747f;
}

.fp-members-feed-section {
  background: linear-gradient(180deg, #f4efe5 0%, #efe9dd 100%);
}

.fp-members-feed-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.fp-members-feed-column {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
  padding: 20px;
}

.fp-members-feed-column .fp-resource-download-list {
  margin-top: 14px;
}

.fp-members-feed-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.fp-members-feed-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.26rem;
  color: var(--green);
  line-height: 1.2;
}

.fp-members-feed-count {
  margin: 0;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
}

.fp-members-lock-card {
  background: #f7f6f2;
  border: 1px solid var(--border);
  border-left: 3px solid #9ca7af;
  padding: 18px;
}

.fp-members-lock-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #50616e;
}

.fp-members-lock-card p {
  font-size: 0.76rem;
  line-height: 1.8;
  color: var(--text-mid);
}

.fp-members-lock-card .section-label {
  color: #70808c;
}

.fp-members-lock-card .section-label::before {
  background: #9aa6ae;
}

@media (max-width: 1024px) {
  .fp-members-hero-grid {
    grid-template-columns: 1fr;
  }

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

  .fp-members-actions-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .fp-members-hero-copy,
  .fp-members-account-card,
  .fp-members-feed-column {
    padding: 18px 14px;
  }

  .fp-members-stats-grid,
  .fp-members-actions-grid,
  .fp-members-feed-grid {
    grid-template-columns: 1fr;
  }

  .fp-members-stat-value {
    font-size: 1.45rem;
  }
}

/* ============================================================
   34. SESSION TIMEOUT MODAL (fp-session-*)
   ============================================================ */

body.fp-session-modal-open {
  overflow: hidden;
}

.fp-session-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 24, 12, 0.58);
  backdrop-filter: blur(3px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 100000;
}

.fp-session-overlay.open {
  display: flex;
}

.fp-session-modal {
  width: min(560px, 94vw);
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--green);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.fp-session-modal-head {
  padding: 16px 22px 12px;
  border-bottom: 1px solid var(--border);
  background: var(--green-pale);
}

.fp-session-modal-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1.1;
  color: var(--green);
}

.fp-session-modal-body {
  padding: 20px 22px;
}

.fp-session-modal-body p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.8;
  color: var(--text-mid);
}

.fp-session-countdown {
  margin: 12px 0 6px !important;
  font-family: var(--font-display);
  font-size: 2.2rem !important;
  line-height: 1 !important;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.fp-session-help {
  color: var(--text) !important;
}

.fp-session-modal-footer {
  padding: 12px 22px 18px;
  border-top: 1px solid var(--border);
  background: var(--cream);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.fp-session-modal-footer .btn-primary,
.fp-session-modal-footer .btn-outline-green {
  min-width: 160px;
  text-align: center;
}

.fp-session-modal-footer .btn-primary[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

@media (max-width: 768px) {
  .fp-session-modal-head h3 {
    font-size: 1.55rem;
  }

  .fp-session-countdown {
    font-size: 1.95rem !important;
  }

  .fp-session-modal-footer {
    justify-content: stretch;
  }

  .fp-session-modal-footer .btn-primary,
  .fp-session-modal-footer .btn-outline-green {
    width: 100%;
  }
}




/* ============================================
   SCRABBLEMAC PAGE
   ============================================ */

.scrabble-page {
  background: var(--cream);
}

.scrabble-hero {
  position: relative;
  overflow: hidden;
  padding: 130px 60px 90px;
}
.scrabble-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(110deg, rgba(44, 95, 46, 0.88) 0%, rgba(44, 95, 46, 0.72) 45%, rgba(0, 0, 0, 0.35) 100%),
    var(--scrabble-hero-image);
  background-size: cover;
  background-position: center;
}
.scrabble-hero-inner {
  position: relative;
  z-index: 2;
}
.scrabble-hero .section-label {
  color: var(--gold-light);
}
.scrabble-hero .section-label::before {
  background: var(--gold-light);
}
.scrabble-hero .section-title {
  color: var(--white);
}
.scrabble-hero .section-title span {
  color: var(--gold-light);
}
.scrabble-hero .section-body {
  max-width: 900px;
  color: rgba(255, 255, 255, 0.86);
}

.scrabble-intro-section {
  background: var(--white);
}
.scrabble-intro-grid {
  display: grid;
  grid-template-columns: minmax(240px, 420px) 1fr;
  gap: 24px;
  align-items: stretch;
}
.scrabble-intro-image {
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.scrabble-intro-image img {
  width: 100%;
  flex: 1;
  object-fit: cover;
  display: block;
}
.scrabble-intro-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  padding: 34px 32px;
}
.scrabble-copy {
  margin-top: 10px;
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.9;
}
.scrabble-patron-caption {
  display: flex;
  flex-direction: column;
  gap: 3px;
  background: var(--green);
  padding: 12px 16px;
  border-top: 3px solid var(--gold);
}
.scrabble-patron-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.scrabble-patron-title {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f0c040;
  font-weight: 700;
}

.scrabble-objectives-section {
  background: linear-gradient(180deg, #fbf8f1 0%, #f2efe5 100%);
}
.scrabble-objectives-list {
  margin-top: 24px;
  list-style: none;
  display: grid;
  gap: 10px;
  counter-reset: scrabble;
}
.scrabble-objectives-list li {
  counter-increment: scrabble;
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 14px 16px 14px 50px;
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.scrabble-objectives-list li::before {
  content: counter(scrabble);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
}

.scrabble-highlights-section {
  background: var(--white);
}
.scrabble-highlights-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.scrabble-highlight-card {
  background: var(--cream);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 2px 16px var(--shadow);
}
.scrabble-highlight-image {
  height: 220px;
  overflow: hidden;
}
.scrabble-highlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.scrabble-highlight-body {
  padding: 22px;
}
.scrabble-highlight-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--green);
  margin-bottom: 8px;
}
.scrabble-highlight-body p {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.scrabble-download-section {
  background: linear-gradient(180deg, #fbf8f1 0%, #f2efe5 100%);
}
.scrabble-download-inner {
  text-align: center;
}
.scrabble-download-inner .section-label {
  color: var(--green);
}
.scrabble-download-inner .section-title {
  color: var(--text);
}
.scrabble-download-inner .section-title span {
  color: var(--green);
}
.scrabble-download-inner .section-body {
  max-width: 820px;
  margin: 0 auto;
  color: var(--text-mid);
}
.scrabble-download-inner .about-cta {
  justify-content: center;
}

.scrabble-cta-section {
  background: var(--green);
}
.scrabble-cta-inner {
  text-align: center;
}
.scrabble-cta-inner .section-label {
  color: var(--gold-light);
}
.scrabble-cta-inner .section-label::before {
  background: var(--gold-light);
}
.scrabble-cta-inner .section-title {
  color: var(--white);
}
.scrabble-cta-inner .section-title span {
  color: var(--gold-light);
}
.scrabble-cta-inner .section-body {
  max-width: 820px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
}
.scrabble-cta-inner .about-cta {
  justify-content: center;
}

@media (max-width: 1024px) {
  .scrabble-hero {
    padding: 110px 30px 70px;
  }
  .scrabble-intro-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .scrabble-hero {
    padding: 95px 16px 55px;
  }
  .scrabble-highlights-grid {
    grid-template-columns: 1fr;
  }
}






/* ============================================
   AMENITIES PAGE
   ============================================ */

.amenities-page {
  background: var(--cream);
}

/* --- Hero --- */
.amenities-hero {
  position: relative;
  overflow: hidden;
  padding: 130px 60px 90px;
}
.amenities-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(110deg, rgba(44, 95, 46, 0.88) 0%, rgba(44, 95, 46, 0.72) 45%, rgba(0, 0, 0, 0.35) 100%),
    var(--amenities-hero-image);
  background-size: cover;
  background-position: center;
}
.amenities-hero-inner {
  position: relative;
  z-index: 2;
}
.amenities-hero .section-label {
  color: var(--gold-light);
}
.amenities-hero .section-label::before {
  background: var(--gold-light);
}
.amenities-hero .section-title {
  color: var(--white);
}
.amenities-hero .section-title span {
  color: var(--gold-light);
}
.amenities-hero .section-body {
  max-width: 900px;
  color: rgba(255, 255, 255, 0.86);
}

/* --- Unit Section --- */
.amenities-unit-section {
  background: var(--white);
}
.amenities-unit-section--alt {
  background: linear-gradient(180deg, #fbf8f1 0%, #f2efe5 100%);
}

.amenities-unit-header {
  margin-bottom: 28px;
}

/* --- Overview Grid --- */
.amenities-unit-grid {
  display: grid;
  grid-template-columns: minmax(240px, 420px) 1fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 34px;
}
.amenities-unit-grid--reverse {
  grid-template-columns: 1fr minmax(240px, 420px);
}
.amenities-unit-grid--reverse .amenities-unit-image {
  order: 2;
}
.amenities-unit-grid--reverse .amenities-unit-card {
  order: 1;
}
.amenities-unit-image {
  overflow: hidden;
  border: 1px solid var(--border);
}
.amenities-unit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.amenities-unit-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  padding: 34px 32px;
}
.amenities-unit-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  color: var(--green);
  margin: 8px 0 12px;
  line-height: 1.3;
}
.amenities-copy {
  margin-top: 10px;
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.9;
}

/* --- Mission / Vision / Tagline / Values --- */
.amenities-mvtv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 34px;
}
.amenities-mvtv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--green);
  padding: 20px 18px;
  box-shadow: 0 2px 16px var(--shadow);
}
.amenities-mvtv-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--green);
  margin-bottom: 8px;
}
.amenities-mvtv-card p {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.8;
}
.amenities-mvtv-tagline p {
  font-style: italic;
  font-size: 0.88rem;
  color: var(--gold);
  font-weight: 700;
}

/* --- Services --- */
.amenities-services-block {
  margin-bottom: 28px;
}
.amenities-services-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.amenities-service-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 20px 18px;
  box-shadow: 0 2px 16px var(--shadow);
}
.amenities-service-image {
  height: 160px;
  overflow: hidden;
  margin: -20px -18px 16px;
}
.amenities-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.amenities-service-card h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--green);
  margin-bottom: 6px;
}
.amenities-service-card p {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* --- Unit CTA --- */
.amenities-unit-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* --- Divider --- */
.amenities-divider {
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--gold) 50%, var(--green) 100%);
}

/* --- Page CTA --- */
.amenities-cta-section {
  background: var(--green);
}
.amenities-cta-inner {
  text-align: center;
}
.amenities-cta-inner .section-label {
  color: var(--gold-light);
}
.amenities-cta-inner .section-label::before {
  background: var(--gold-light);
}
.amenities-cta-inner .section-title {
  color: var(--white);
}
.amenities-cta-inner .section-title span {
  color: var(--gold-light);
}
.amenities-cta-inner .section-body {
  max-width: 820px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
}
.amenities-cta-inner .about-cta {
  justify-content: center;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .amenities-hero {
    padding: 110px 30px 70px;
  }
  .amenities-unit-grid,
  .amenities-unit-grid--reverse {
    grid-template-columns: 1fr;
  }
  .amenities-unit-grid--reverse .amenities-unit-image,
  .amenities-unit-grid--reverse .amenities-unit-card {
    order: unset;
  }
  .amenities-mvtv-grid {
    grid-template-columns: 1fr 1fr;
  }
  .amenities-services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .amenities-hero {
    padding: 95px 16px 55px;
  }
  .amenities-mvtv-grid {
    grid-template-columns: 1fr;
  }
  .amenities-services-grid {
    grid-template-columns: 1fr;
  }
  .amenities-unit-cta {
    flex-direction: column;
  }
}











































/* ============================================
   NEWS PAGE
   ============================================ */

.news-page {
  background: var(--cream);
}

/* --- Hero Banner --- */
.news-hero {
  position: relative;
  overflow: hidden;
  padding: 160px 60px 120px;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.news-hero-inner {
  position: relative;
  z-index: 2;
}
.news-hero .section-label {
  color: var(--gold-light);
}
.news-hero .section-label::before {
  background: var(--gold-light);
}
.news-hero .section-title {
  color: var(--white);
}
.news-hero .section-title span {
  color: var(--gold-light);
}
.news-hero .section-body {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.86);
}

/* --- Featured Story --- */
.news-featured-section {
  background: var(--white);
}
.news-featured-card {
  display: grid;
  grid-template-columns: minmax(280px, 520px) 1fr;
  gap: 0;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 2px 24px var(--shadow);
  transition: grid-template-columns 0.3s ease;
}

/* When expanded, let the image shrink a bit to give content more room */
.news-featured-card--expanded {
  grid-template-columns: minmax(220px, 340px) 1fr;
}

.news-featured-image {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
}
.news-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  flex: 1;
  transition: transform 0.4s ease;
}
.news-featured-card:hover .news-featured-image img {
  transform: scale(1.03);
}
/* When expanded, image height stretches naturally with content */
.news-featured-card--expanded .news-featured-image {
  min-height: 0;
}
.news-featured-card--expanded .news-featured-image img {
  height: 100%;
  min-height: 280px;
}

.news-featured-image-placeholder {
  flex: 1;
  min-height: 360px;
  background: linear-gradient(135deg, var(--green) 0%, #1a3d1c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-featured-image-placeholder span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-featured-content {
  background: var(--cream);
  border-left: 4px solid var(--green);
  padding: 42px 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
}

.news-featured-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--text);
  line-height: 1.25;
  margin: 0;
}
.news-featured-excerpt {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin: 0;
}

/* Full content block inside featured card */
.news-featured-full {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 2;
  margin: 0;
}
.news-featured-full p {
  margin: 0 0 1.2em;
}
.news-featured-full p:last-child {
  margin-bottom: 0;
}

/* --- Category Badge --- */
.news-category-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--green);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  z-index: 2;
}

/* --- News Meta --- */
.news-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.news-date {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.news-meta-divider {
  color: var(--border);
  font-size: 0.8rem;
}
.news-author {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
}

/* --- News Grid --- */
.news-grid-section {
  background: linear-gradient(180deg, #fbf8f1 0%, #f2efe5 100%);
}
.news-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 2px 16px var(--shadow);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.news-card:hover {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

/* Expanded card spans full grid width */
.news-card--expanded {
  grid-column: 1 / -1;
  transform: none !important;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.12) !important;
}
.news-card--expanded .news-card-image {
  height: 320px;
}

.news-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  transition: height 0.3s ease;
}
.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.news-card:hover .news-card-image img {
  transform: scale(1.05);
}
.news-card--expanded:hover .news-card-image img {
  transform: none;
}
.news-card-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--green) 0%, #1a3d1c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-card-image-placeholder span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-card-content {
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  border-top: 3px solid var(--gold);
}

/* Expanded card: side-by-side layout for content area */
.news-card--expanded .news-card-content {
  padding: 28px 32px;
}

.news-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--text);
  line-height: 1.3;
  margin: 0;
}
.news-card--expanded .news-card-title {
  font-size: 1.65rem;
}

.news-card-excerpt {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin: 0;
}

/* Full content inside grid card */
.news-card-full-content {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 2;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.news-card-full-content p {
  margin: 0 0 1.1em;
}
.news-card-full-content p:last-child {
  margin-bottom: 0;
}

/* Read More / Show Less button */
.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  margin-top: auto;
  transition: color 0.2s ease, gap 0.2s ease;
}
.news-read-more:hover {
  color: var(--gold);
  gap: 8px;
}
.news-read-more[aria-expanded="true"] {
  color: var(--text-mid);
}
.news-read-more[aria-expanded="true"]:hover {
  color: var(--green);
}

/* --- Pagination --- */
.news-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.news-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.news-pagination .page-numbers:hover,
.news-pagination .page-numbers.current {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.news-pagination .page-numbers.dots {
  border: none;
  background: transparent;
  color: var(--text-mid);
  cursor: default;
}

/* --- Empty State --- */
.news-empty-section {
  background: var(--white);
}
.news-empty-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 340px;
}
.news-empty {
  text-align: center;
  max-width: 480px;
}
.news-empty-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  line-height: 1;
}
.news-empty-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 10px;
}
.news-empty-body {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 14px;
}
.news-empty-timestamp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.news-empty-date {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}
.news-empty-sep {
  color: var(--border);
}
.news-empty-time {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .news-hero {
    padding: 130px 30px 90px;
    min-height: 400px;
  }
  .news-featured-card,
  .news-featured-card--expanded {
    grid-template-columns: 1fr;
  }
  .news-featured-image,
  .news-featured-image-placeholder {
    min-height: 280px;
  }
  .news-featured-card--expanded .news-featured-image img {
    min-height: 280px;
  }
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }
  .news-card--expanded {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .news-hero {
    padding: 110px 16px 70px;
    min-height: 340px;
  }
  .news-featured-content {
    padding: 28px 22px;
  }
  .news-featured-title {
    font-size: 1.55rem;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .news-card--expanded {
    grid-column: 1;
  }
  .news-card--expanded .news-card-image {
    height: 220px;
  }
  .news-pagination .page-numbers {
    min-width: 36px;
    height: 36px;
    font-size: 0.72rem;
  }
  .news-empty-timestamp {
    flex-direction: column;
    gap: 4px;
  }
}

/* =========================================================
   Member Onboarding
========================================================= */
.fp-onboarding-page .section {
  padding: 56px 0;
}

.fp-onboarding-hero {
  background: linear-gradient(140deg, var(--green) 0%, #1f6035 70%, #2f7e4a 100%);
  color: var(--white);
}

.fp-onboarding-hero .section-label,
.fp-onboarding-hero .section-title,
.fp-onboarding-hero .section-body {
  color: var(--white);
}

.fp-onboarding-rules-card {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
  padding: 28px;
  border: 1px solid rgba(35, 104, 58, 0.22);
  background: linear-gradient(180deg, #f9f8f2 0%, #f4f0e5 100%);
}

.fp-onboarding-rules-card h2 {
  margin: 0 0 8px;
  color: var(--green);
}

.fp-onboarding-rules-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.75;
  font-size: 0.9rem;
}

.fp-onboarding-rules-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fp-onboarding-form {
  margin-top: 16px;
}

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

.fp-onboarding-option {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 160px;
  padding: 18px;
  border: 1px solid rgba(35, 104, 58, 0.2);
  background: var(--white);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.fp-onboarding-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(35, 104, 58, 0.35);
}

.fp-onboarding-option input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

.fp-onboarding-option-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fp-onboarding-option-title {
  font-family: var(--font-display);
  color: var(--green);
  font-size: 1.1rem;
  line-height: 1.3;
}

.fp-onboarding-option-meta {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 700;
}

.fp-onboarding-option-link {
  margin-top: auto;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--green);
}

.fp-onboarding-check {
  margin-top: 20px;
}

.fp-onboarding-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .fp-onboarding-rules-card {
    grid-template-columns: 1fr;
  }
  .fp-onboarding-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .fp-onboarding-grid {
    grid-template-columns: 1fr;
  }
  .fp-onboarding-option {
    min-height: 0;
  }
}
