  :root {
    --gold: #c9922a;
    --gold-light: #e8b84b;
    --gold-bright: #f5d070;
    --gold-pale: #f0d5a0;
    --dark: #0a0603;
    --dark2: #110d05;
    --dark3: #1a1108;
    --dark4: #221608;
    --dark-brown: #2a1a06;
    --border-gold: #7a5520;
    --text-gold: #d4aa60;
    --text-pale: #e8d5a8;
    --shadow-gold: rgba(201,146,42,0.4);
  }

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

  body {
    background: var(--dark);
    color: var(--text-pale);
    font-family: 'EB Garamond', serif;
    overflow-x: hidden;
    position: relative;
  }

  body,
  body.home-bg-fixed {
    background-color: var(--dark);
    background-image: url('/images/background-of.webp');
    background-position: center top;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
  }

  /* ===== ORNATE OUTER FRAME ===== */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 999;
    background:
      /* top-left corner */
      radial-gradient(ellipse 120px 120px at 0% 0%, rgba(201,146,42,0.15) 0%, transparent 70%),
      radial-gradient(ellipse 120px 120px at 100% 0%, rgba(201,146,42,0.15) 0%, transparent 70%),
      radial-gradient(ellipse 120px 120px at 0% 100%, rgba(201,146,42,0.12) 0%, transparent 70%),
      radial-gradient(ellipse 120px 120px at 100% 100%, rgba(201,146,42,0.12) 0%, transparent 70%);
    border: 2px solid rgba(201,146,42,0.35);
    box-shadow:
      inset 0 0 40px rgba(201,146,42,0.08),
      inset 0 0 0 6px rgba(10,6,3,0.95),
      inset 0 0 0 8px rgba(122,85,32,0.3);
  }

  /* Grain overlay */
  body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 998;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-size: 200px 200px;
  }

  .page-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background:
      radial-gradient(ellipse 100% 50% at 50% 0%, rgba(60,30,5,0.68) 0%, transparent 60%),
      linear-gradient(180deg, rgba(14,8,3,0.82) 0%, rgba(16,10,4,0.84) 40%, rgba(12,8,3,0.86) 100%);
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
    overflow: hidden;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }

  /* Decorative side curtains */
  .page-wrapper::before,
  .page-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 40px;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .page-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, rgba(15,8,2,0.95) 0%, transparent 100%);
  }
  .page-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, rgba(15,8,2,0.95) 0%, transparent 100%);
  }

  /* ===== NAVIGATION ===== */
  .public-nav {
    position: relative;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 18px 40px 14px;
    min-height: 52px;
    background: linear-gradient(180deg, rgba(10,6,2,0.98) 0%, rgba(10,6,2,0.7) 100%);
    border-bottom: 1px solid rgba(122,85,32,0.3);
  }

  /* Hamburger — hidden on wide screens */
  .nav-burger {
    display: none;
    position: relative;
    z-index: 70;
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(201,146,42,0.35);
    border-radius: 5px;
    background: rgba(8,5,2,0.6);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    transition: border-color 0.2s, background 0.2s;
    top:5px;
  }
  .nav-burger:hover {
    border-color: rgba(201,146,42,0.55);
    background: rgba(201,146,42,0.08);
  }
  .nav-burger-bar {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 1px;
    background: var(--gold-light);
    transform-origin: center;
    transition: transform 0.25s ease, opacity 0.2s;
  }
  .public-nav--open .nav-burger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .public-nav--open .nav-burger-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .public-nav--open .nav-burger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Crown logo */
  .nav-logo {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 22px;
    color: var(--gold-light);
    text-shadow: 0 0 20px var(--shadow-gold);
    z-index: 5;
    pointer-events: none;
  }

  .nav-backdrop {
    display: none;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    padding: 6px 0 0;
    margin: 0;
  }

  .nav-links a {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--text-pale);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--gold-bright); }

  .nav-links a.active {
    color: var(--gold-bright);
  }

  .nav-login {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--text-pale);
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid rgba(201,146,42,0.5);
    border-radius: 20px;
    padding: 5px 18px;
    transition: all 0.3s;
    white-space: nowrap;
  }
  .nav-login:hover {
    border-color: var(--gold-light);
    color: var(--gold-bright);
    background: rgba(201,146,42,0.08);
  }

  a.nav-wallet {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Cinzel', serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--text-pale);
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid rgba(201,146,42,0.35);
    border-radius: 0;
    padding: 5px 14px 5px 12px;
    transition: all 0.3s;
    white-space: nowrap;
  }
  a.nav-wallet:hover {
    border-color: var(--gold-light);
    color: var(--gold-bright);
    background: rgba(201,146,42,0.08);
  }
  .nav-wallet-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--gold-bright);
    opacity: 0.95;
  }
  .nav-wallet-balance {
    font-variant-numeric: tabular-nums;
  }

  body.public-nav-open {
    overflow: hidden;
  }

  @media (max-width: 768px) {
    .public-nav {
      justify-content: flex-start;
      padding: 10px max(14px, env(safe-area-inset-right)) 12px max(14px, env(safe-area-inset-left));
      align-items: center;
    }

    .nav-burger {
      display: flex;
    }

    .nav-logo {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      font-size: 20px;
    }

    .nav-backdrop {
      display: block;
      position: fixed;
      inset: 0;
      z-index: 60;
      background: rgba(4, 2, 1, 0.72);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .public-nav--open .nav-backdrop {
      opacity: 1;
      pointer-events: auto;
    }

    .nav-links {
      position: fixed;
      top: 0;
      right: 0;
      z-index: 65;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      width: min(300px, 86vw);
      max-width: 100%;
      height: 100vh;
      height: 100dvh;
      margin: 0;
      padding: 4.5rem 0 2rem;
      list-style: none;
      background:
        linear-gradient(180deg, rgba(18,12,5,0.98) 0%, rgba(10,6,2,0.99) 100%);
      border-left: 1px solid rgba(122,85,32,0.45);
      box-shadow: -12px 0 40px rgba(0,0,0,0.5);
      transform: translateX(100%);
      transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }

    .public-nav--open .nav-links {
      transform: translateX(0);
    }

    .nav-links li {
      border-bottom: 1px solid rgba(122,85,32,0.2);
    }

    .nav-links a {
      display: block;
      padding: 16px 22px;
      font-size: 12px;
      letter-spacing: 0.12em;
    }

    .nav-links a.nav-login {
      margin: 8px 16px 0;
      text-align: center;
      border-radius: 999px;
    }

    .nav-links li:last-child a:not(.nav-login) {
      padding-bottom: 20px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .nav-links,
    .nav-backdrop,
    .nav-burger-bar {
      transition: none !important;
    }
  }

  /* ===== HERO SECTION ===== */
  .hero {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 50px;
  }

  /* Hero background */
  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(10,6,2,0.12) 0%, rgba(10,6,2,0.7) 78%, rgba(10,6,2,0.9) 100%),
      url('/images/hero-bg.png') center 20% / cover no-repeat,
      radial-gradient(ellipse 80% 60% at 50% 30%, rgba(80,45,8,0.6) 0%, transparent 70%),
      radial-gradient(ellipse 40% 80% at 20% 50%, rgba(50,25,5,0.5) 0%, transparent 60%),
      radial-gradient(ellipse 40% 80% at 80% 50%, rgba(50,25,5,0.5) 0%, transparent 60%),
      linear-gradient(180deg, rgba(30,15,3,0.3) 0%, rgba(10,6,2,0.85) 80%, rgba(10,6,2,1) 100%);
    z-index: 1;
  }

  /* Simulated hero image area with golden glow */
  .hero-image-area {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 70% at 55% 35%, rgba(120,70,15,0.35) 0%, transparent 65%),
      radial-gradient(ellipse 30% 50% at 25% 60%, rgba(180,120,30,0.15) 0%, transparent 50%),
      radial-gradient(ellipse 20% 40% at 80% 70%, rgba(160,100,20,0.15) 0%, transparent 50%);
    z-index: 0;
  }

  /* Candle glow effects */
  .candle-left, .candle-right {
    position: absolute;
    bottom: 60px;
    width: 60px;
    height: 200px;
    z-index: 2;
    pointer-events: none;
  }
  .candle-left { left: 20px; }
  .candle-right { right: 20px; }

  .candle-left::before, .candle-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,200,60,0.6) 0%, rgba(201,146,42,0.2) 30%, transparent 70%);
    filter: blur(4px);
    border-radius: 50%;
    animation: candleFlicker 2s ease-in-out infinite alternate;
  }

  @keyframes candleFlicker {
    0% { opacity: 0.7; transform: translateX(-50%) scaleX(1); }
    50% { opacity: 0.9; transform: translateX(-48%) scaleX(1.1); }
    100% { opacity: 0.6; transform: translateX(-52%) scaleX(0.9); }
  }

  /* Gold sparkles */
  .sparkles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
  }
  .sparkle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold-bright);
    border-radius: 50%;
    animation: sparkle 3s ease-in-out infinite;
    box-shadow: 0 0 4px var(--gold-bright), 0 0 8px var(--gold-light);
  }
  @keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
  }

  /* Decorative arch border top */
  .hero-arch {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 12px;
    background: linear-gradient(90deg,
      transparent 0%, var(--border-gold) 15%, var(--gold-light) 30%, var(--gold-bright) 50%,
      var(--gold-light) 70%, var(--border-gold) 85%, transparent 100%);
    z-index: 5;
    opacity: 0.6;
  }

  .hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 0 40px;
  }

  .hero-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 38px;
    font-weight: 400;
    color: var(--gold-bright);
    text-shadow:
      0 0 30px rgba(201,146,42,0.8),
      0 0 60px rgba(201,146,42,0.4),
      2px 2px 0 rgba(80,40,5,0.5);
    letter-spacing: 0.05em;
    line-height: 1.1;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-family: 'EB Garamond', serif;
    font-size: 15px;
    color: var(--text-pale);
    font-style: italic;
    margin-bottom: 28px;
    text-shadow: 0 0 20px rgba(201,146,42,0.3);
  }

  .hero-subtitle em {
    font-style: italic;
    color: var(--gold-pale);
    font-size: 16px;
  }

  .hero-subtitle strong {
    font-style: normal;
    font-weight: 400;
  }

  .btn-join {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--dark);
    text-decoration: none;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, var(--gold-bright) 60%, var(--gold-light) 100%);
    padding: 12px 44px;
    border-radius: 30px;
    display: inline-block;
    transition: all 0.3s;
    box-shadow:
      0 0 20px rgba(201,146,42,0.4),
      0 4px 15px rgba(0,0,0,0.5),
      inset 0 1px 0 rgba(255,240,180,0.4);
    border: 1px solid rgba(255,220,100,0.4);
  }
  .btn-join:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 35px rgba(201,146,42,0.6), 0 6px 20px rgba(0,0,0,0.5);
  }

  /* ===== DECORATIVE DIVIDER ===== */
  .ornate-divider {
    position: relative;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    overflow: hidden;
  }
  .ornate-divider::before {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border-gold) 20%, var(--gold-light) 50%, var(--border-gold) 80%, transparent 100%);
    transform: translateY(-50%);
  }
  .ornate-divider span {
    font-family: 'Cinzel Decorative', serif;
    font-size: 18px;
    color: var(--gold-light);
    background: var(--dark2);
    padding: 0 16px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 15px rgba(201,146,42,0.6);
  }

  /* ===== SECTION SHARED ===== */
  section {
    padding: 50px 45px;
    position: relative;
  }

  .section-header {
    text-align: center;
    margin-bottom: 30px;
  }

  .section-title {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--gold-pale);
    letter-spacing: 0.08em;
    text-shadow: 0 0 20px rgba(201,146,42,0.4);
    margin-bottom: 8px;
  }

  .section-subtitle {
    font-family: 'EB Garamond', serif;
    font-size: 14px;
    color: rgba(208,185,140,0.8);
    font-style: italic;
  }

  /* ===== VAULT SECTION ===== */
  .vault-section {
    background: linear-gradient(180deg, rgba(10,6,2,1) 0%, rgba(16,10,3,1) 100%);
    padding-top: 20px;
  }

  .vault-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
  }

  .see-more-btn {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 0.15em;
    color: var(--text-gold);
    text-decoration: none;
    border: 1px solid rgba(122,85,32,0.6);
    padding: 6px 16px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: all 0.3s;
    text-transform: uppercase;
  }
  .see-more-btn:hover { border-color: var(--gold-light); color: var(--gold-bright); }
  .see-more-btn::after { content: '▾'; font-size: 10px; }

  .vault-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }

  .vault-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: transform 0.3s;
    border: 1px solid rgba(122,85,32,0.35);
    box-shadow: 0 4px 20px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,146,42,0.08);
  }
  .vault-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.7), 0 0 20px rgba(201,146,42,0.15); }

  .vault-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover !important;
    background-position: center;
    transition: transform 0.4s;
  }
  .vault-card:hover .vault-card-bg { transform: scale(1.05); }

  .vault-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(8,4,1,0.9) 100%);
  }

  .vault-card-label {
    position: absolute;
    bottom: 12px;
    left: 10px;
    right: 10px;
    font-family: 'Cinzel', serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--gold-pale);
    text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  }

  /* Individual vault card backgrounds */
  .card-harp .vault-card-bg {
    background:
      radial-gradient(ellipse 60% 80% at 50% 40%, rgba(120,70,10,0.5) 0%, transparent 60%),
      linear-gradient(160deg, #1a0d03 0%, #2d1a06 40%, #1a0d03 100%);
  }
  .card-harp .vault-card-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 50% 70% at 45% 50%, rgba(200,160,60,0.12) 0%, transparent 60%);
  }

  .card-dance .vault-card-bg {
    background:
      radial-gradient(ellipse 60% 80% at 50% 40%, rgba(100,55,8,0.5) 0%, transparent 60%),
      linear-gradient(160deg, #160b02 0%, #251505 40%, #160b02 100%);
  }

  .card-poetry .vault-card-bg {
    background:
      radial-gradient(ellipse 60% 80% at 50% 40%, rgba(80,45,8,0.5) 0%, transparent 60%),
      linear-gradient(160deg, #120a03 0%, #221404 40%, #120a03 100%);
  }

  .card-concerts .vault-card-bg {
    background:
      radial-gradient(ellipse 60% 80% at 50% 40%, rgba(130,75,10,0.5) 0%, transparent 60%),
      linear-gradient(160deg, #1c0e03 0%, #301c07 40%, #1c0e03 100%);
  }

  /* Decorative gold icon in vault cards */
  .vault-card-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    font-size: 36px;
    opacity: 0.15;
    color: var(--gold-light);
    text-shadow: 0 0 20px var(--gold);
    pointer-events: none;
  }

  /* ===== MEMBERSHIP SECTION ===== */
  .membership-section {
    background: linear-gradient(180deg, rgba(16,10,3,1) 0%, rgba(10,6,2,1) 100%);
    text-align: center;
  }

  .membership-subtitle-line {
    font-family: 'EB Garamond', serif;
    font-size: 15px;
    color: rgba(208,185,140,0.85);
    margin-bottom: 32px;
  }

  .tiers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }

  .tier-card {
    background: linear-gradient(160deg, rgba(30,18,5,0.95) 0%, rgba(18,10,2,0.98) 100%);
    border: 1px solid rgba(122,85,32,0.4);
    border-radius: 8px;
    padding: 22px 14px 18px;
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5), inset 0 1px 0 rgba(201,146,42,0.08);
  }
  .tier-card:hover {
    border-color: rgba(201,146,42,0.55);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.6), 0 0 20px rgba(201,146,42,0.1), inset 0 1px 0 rgba(201,146,42,0.15);
  }

  .tier-card--current {
    border-color: rgba(201, 146, 42, 0.78);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.55), 0 0 26px rgba(201, 146, 42, 0.18), inset 0 1px 0 rgba(201, 146, 42, 0.22);
  }

  .tier-card--muted {
    opacity: 0.5;
    filter: grayscale(0.2);
  }

  .tier-card--muted:hover {
    transform: none;
    border-color: rgba(122, 85, 32, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(201, 146, 42, 0.08);
  }

  .tier-badge {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 8px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(167, 243, 208, 0.92);
    margin: -4px 0 8px;
  }

  .tier-superseded-note {
    margin: 12px 0 0;
    font-family: 'EB Garamond', serif;
    font-size: 11px;
    line-height: 1.4;
    color: rgba(208, 185, 140, 0.55);
  }

  .tier-btn-disabled {
    opacity: 0.7;
    cursor: default;
    pointer-events: none;
  }

  .tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    opacity: 0.5;
  }

  /* Candle glow on tier cards */
  .tier-card.has-fire::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: -15px;
    width: 60px;
    height: 100px;
    background: radial-gradient(ellipse, rgba(255,140,0,0.2) 0%, transparent 70%);
    pointer-events: none;
    animation: candleFlicker 1.8s ease-in-out infinite alternate;
  }

  .tier-name {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--gold-pale);
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .tier-price {
    font-family: 'EB Garamond', serif;
    font-size: 13px;
    color: rgba(208,185,140,0.7);
    margin-bottom: 18px;
    font-style: italic;
  }

  .tier-price span {
    font-size: 15px;
    font-style: normal;
    color: var(--text-gold);
  }

  .tier-duration {
    font-size: 12px;
    font-style: italic;
    color: rgba(208,185,140,0.55);
  }

  .tier-desc {
    margin: 10px 0 0;
    font-family: 'EB Garamond', serif;
    font-size: 12px;
    line-height: 1.45;
    color: rgba(208,185,140,0.7);
    min-height: 0;
  }

  .tier-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 1rem 0.5rem;
  }

  .btn-see-now {
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 0.18em;
    color: var(--text-gold);
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid rgba(122,85,32,0.6);
    border-radius: 20px;
    padding: 7px 18px;
    display: inline-block;
    transition: all 0.3s;
    background: rgba(30,15,3,0.6);
  }
  .btn-see-now:hover {
    border-color: var(--gold-light);
    color: var(--gold-bright);
    background: rgba(201,146,42,0.08);
  }

  .tier-subscribe-form {
    margin: 0;
    padding: 0;
    border: 0;
    display: block;
    width: 100%;
  }

  .tier-subscribe-form .btn-see-now {
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    font: inherit;
    appearance: none;
  }

  .membership-flash-err {
    color: #fecaca;
    font-family: 'EB Garamond', serif;
    font-size: 15px;
    text-align: center;
    margin: -8px auto 16px;
    max-width: 520px;
  }

  /* Membership tiers: two cards per row on phones */
  @media (max-width: 768px) {
    .membership-section {
      padding-left: 12px;
      padding-right: 12px;
    }

    .membership-subtitle-line {
      font-size: 14px;
      margin-bottom: 22px;
      padding: 0 4px;
    }

    .tiers-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
    }

    .tier-card {
      padding: 14px 8px 12px;
    }

    .tier-card:hover {
      transform: none;
    }

    .tier-name {
      font-size: 10px;
      letter-spacing: 0.08em;
      line-height: 1.3;
      margin-bottom: 6px;
    }

    .tier-price {
      font-size: 11px;
      margin-bottom: 12px;
      line-height: 1.35;
    }

    .tier-price span {
      font-size: 13px;
      display: inline-block;
    }

    .btn-see-now {
      font-size: 8px;
      letter-spacing: 0.1em;
      padding: 6px 10px;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }
  }

  /* ===== STATS BAR ===== */
  .stats-bar {
    padding: 20px 45px;
    background: rgba(8,5,1,0.9);
    border-top: 1px solid rgba(122,85,32,0.25);
    border-bottom: 1px solid rgba(122,85,32,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Cinzel', serif;
    font-size: 11px;
    color: var(--text-pale);
    letter-spacing: 0.12em;
  }

  .stat-item strong {
    color: var(--gold-bright);
    font-size: 14px;
    font-weight: 600;
  }

  .stat-icon {
    color: var(--gold);
    font-size: 14px;
    opacity: 0.8;
  }

  .stat-separator {
    color: rgba(122,85,32,0.5);
    font-size: 12px;
  }

  /* ===== FOOTER ===== */
  footer {
    padding: 28px 45px;
    background: rgba(6,4,1,0.95);
    border-top: 1px solid rgba(122,85,32,0.2);
  }

  .footer-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-bottom: 16px;
    flex-wrap: wrap;
  }

  .footer-link {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 0.15em;
    color: var(--gold-light);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
  }
  .footer-link:hover {
    color: var(--gold-bright);
  }

  .footer-dot { color: rgba(122,85,32,0.5); font-size: 8px; }

  .footer-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
  }

  .footer-social-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s, border-color 0.3s;
    border: 1px solid rgba(122,85,32,0.35);
    border-radius: 4px;
  }
  .footer-social-icon:hover {
    color: var(--gold-bright);
    border-color: rgba(201,146,42,0.55);
  }

  .footer-copyright {
    text-align: center;
    font-family: 'EB Garamond', serif;
    font-size: 12px;
    color: rgba(208,185,140,0.4);
    font-style: italic;
  }

  @media (max-width: 768px) {
    footer {
      padding: 22px max(16px, env(safe-area-inset-left)) max(28px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-right));
    }

    .footer-top {
      gap: 10px 14px;
    }
  }

  .footer-logo {
    color: var(--gold);
    font-size: 16px;
    text-shadow: 0 0 10px rgba(201,146,42,0.4);
  }

  /* ===== BACKGROUND AMBIANCE ===== */
  .ambient-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    z-index: 0;
  }

  /* ===== ORNATE BORDER SIDES ===== */
  .side-ornament {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 12px;
    z-index: 20;
    pointer-events: none;
  }
  .side-ornament-left { left: 0; background: linear-gradient(90deg, rgba(20,10,2,0.8), transparent); }
  .side-ornament-right { right: 0; background: linear-gradient(270deg, rgba(20,10,2,0.8), transparent); }

  /* Section transition glow */
  .section-glow {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(122,85,32,0.4) 20%, rgba(201,146,42,0.3) 50%, rgba(122,85,32,0.4) 80%, transparent 100%);
  }

