@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* Hide Google Translate toolbar */
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-tooltip,
.goog-tooltip:hover { display: none !important; }
body { top: 0 !important; }
.skiptranslate > iframe { height: 0 !important; border: none !important; }

:root {
  --red:    #C0392B;
  --blue:   #1A3A5C;
  --gold:   #D4A017;
  --light:  #F7F4EF;
  --white:  #FFFFFF;
  --dark:   #111827;
  --gray:   #6B7280;
  --border: #E5DDD0;
  --nav-h:  72px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.7;
}

/* ── NAVBAR ─────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.nav-brand {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
}
.nav-brand img { width: 44px; height: 44px; object-fit: contain; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-brand-text .name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700;
  color: var(--blue);
}
.nav-brand-text .sub {
  font-size: 0.65rem; color: var(--gray);
  letter-spacing: 0.05em; text-transform: uppercase;
}

.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
  list-style: none;
}
.nav-links .nav-dropdown { display: none; }
.nav-links > li { position: relative; }
.nav-links a {
  text-decoration: none; color: var(--dark);
  font-size: 0.875rem; font-weight: 500;
  padding: 0.4rem 0.75rem; border-radius: 6px;
  transition: all 0.2s; display: block;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--light); color: var(--blue);
}
.nav-links a.btn-nav {
  background: var(--red); color: var(--white);
  padding: 0.4rem 1rem; border-radius: 6px;
  margin-left: 0.5rem;
}
.nav-links a.btn-nav:hover { background: #a93226; }

/* DROPDOWN */
.nav-links .dropdown-toggle {
  display: flex; align-items: center; gap: 0.3rem; cursor: pointer;
}
.nav-links .dropdown-toggle::after {
  content: '▾'; font-size: 0.65rem; color: var(--gray);
}
.nav-dropdown {
  display: none;
  list-style: none;
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  min-width: 180px;
  z-index: 200;
  padding: 0.4rem;
}
.nav-links > li:hover > .nav-dropdown { display: block; }
.nav-dropdown li { list-style: none; }
.nav-dropdown a {
  border-radius: 6px; white-space: nowrap;
  font-size: 0.85rem; color: var(--dark);
  padding: 0.4rem 0.75rem; display: block;
}
.nav-dropdown a:hover { background: var(--light); color: var(--blue); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: all 0.3s;
}

/* ── PAGE WRAPPER ───────────────────────────────────── */
main { padding-top: var(--nav-h); }

/* ── HERO ───────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--blue) 0%, #0f2440 100%);
  color: var(--white);
  padding: 6rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { position: relative; max-width: 800px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  background: rgba(212,160,23,0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 1rem; border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900; line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 1.1rem; opacity: 0.85;
  max-width: 600px; margin: 0 auto 2rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block; text-decoration: none;
  padding: 0.75rem 1.75rem; border-radius: 8px;
  font-size: 0.9rem; font-weight: 600;
  transition: all 0.2s; cursor: pointer; border: none;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: #a93226; transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: #b8880f; }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: #0f2440; }

/* ── STATS BAR ──────────────────────────────────────── */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
}
.stats-inner {
  max-width: 900px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem; font-weight: 700; color: var(--blue);
  display: block;
}
.stat-label { font-size: 0.8rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.05em; }

/* ── SECTIONS ───────────────────────────────────────── */
section { padding: 5rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red); margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--blue);
  line-height: 1.25; margin-bottom: 1rem;
}
.section-sub { font-size: 1rem; color: var(--gray); max-width: 600px; }

/* ── CARD GRID ──────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 2rem;
  transition: all 0.25s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.card-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--blue), #2E5496);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.25rem;
}
.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--blue); margin-bottom: 0.6rem;
}
.card p { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }

/* ── TWO-COL ────────────────────────────────────────── */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ── ACCENT BOX ─────────────────────────────────────── */
.accent-box {
  background: linear-gradient(135deg, var(--blue) 0%, #0f2440 100%);
  color: var(--white); border-radius: 16px;
  padding: 3rem; position: relative; overflow: hidden;
}
.accent-box::after {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: rgba(212,160,23,0.15);
  border-radius: 50%;
}
.accent-box .section-title { color: var(--white); }
.accent-box .section-sub { opacity: 0.8; color: var(--white); }

/* ── TIMELINE ───────────────────────────────────────── */
.timeline { margin-top: 2.5rem; }
.tl-item {
  display: flex; gap: 1.5rem; padding-bottom: 2rem;
  position: relative;
}
.tl-item:not(:last-child)::before {
  content: '';
  position: absolute; left: 19px; top: 40px;
  width: 2px; bottom: 0;
  background: var(--border);
}
.tl-dot {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
  position: relative; z-index: 1;
}
.tl-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700; color: var(--blue);
  margin-bottom: 0.25rem;
}
.tl-content p { font-size: 0.875rem; color: var(--gray); }

/* ── TABLE ──────────────────────────────────────────── */
.styled-table {
  width: 100%; border-collapse: collapse;
  background: var(--white); border-radius: 12px;
  overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  margin-top: 2rem;
}
.styled-table th {
  background: var(--blue); color: var(--white);
  padding: 1rem 1.25rem;
  font-size: 0.8rem; letter-spacing: 0.08em;
  text-transform: uppercase; text-align: left;
}
.styled-table td {
  padding: 0.9rem 1.25rem;
  font-size: 0.9rem; color: var(--dark);
  border-bottom: 1px solid var(--border);
}
.styled-table tr:last-child td { border-bottom: none; }
.styled-table tr:hover td { background: #faf8f5; }
.badge {
  display: inline-block; padding: 0.2rem 0.65rem;
  border-radius: 50px; font-size: 0.75rem; font-weight: 600;
}
.badge-green { background: #d1fae5; color: #065f46; }
.badge-blue  { background: #dbeafe; color: #1e40af; }
.badge-gold  { background: #fef3c7; color: #92400e; }
.badge-red   { background: #fee2e2; color: #991b1b; }

/* ── MEMBERSHIP CARDS ───────────────────────────────── */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.mem-card {
  border-radius: 14px; padding: 2rem;
  border: 2px solid var(--border);
  background: var(--white);
  transition: all 0.25s;
  position: relative;
}
.mem-card:hover { border-color: var(--blue); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.mem-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, #fffbf0, #fff8e1);
}
.mem-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--dark);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; padding: 0.25rem 0.75rem; border-radius: 50px;
}
.mem-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 900; color: var(--blue);
  line-height: 1;
}
.mem-price span { font-size: 1rem; font-weight: 400; color: var(--gray); }
.mem-type { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); margin-bottom: 1.5rem; margin-top: 0.25rem; }
.mem-features { list-style: none; margin: 1.5rem 0; }
.mem-features li {
  font-size: 0.875rem; color: var(--dark);
  padding: 0.4rem 0; display: flex; align-items: flex-start; gap: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.mem-features li:last-child { border-bottom: none; }
.mem-features li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; }

/* ── CONTACT FORM ───────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--dark); margin-bottom: 0.4rem;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: 0.9rem;
  background: var(--white); color: var(--dark);
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--blue);
}
.form-group textarea { resize: vertical; min-height: 140px; }

/* ── CONTACT INFO ───────────────────────────────────── */
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem; background: var(--white);
  border: 1px solid var(--border); border-radius: 10px;
}
.contact-item-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--blue); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-item-text h4 { font-size: 0.85rem; font-weight: 600; color: var(--blue); margin-bottom: 0.2rem; }
.contact-item-text p { font-size: 0.875rem; color: var(--gray); }
.contact-item-text a { color: var(--blue); text-decoration: none; }
.contact-item-text a:hover { text-decoration: underline; }

/* ── FOOTER ─────────────────────────────────────────── */
footer {
  background: #f4f6f9; color: var(--dark);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-brand img { width: 44px; height: 44px; object-fit: contain; filter: none; }
.footer-brand-text .name {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem; font-weight: 700; color: var(--dark);
}
.footer-brand-text .sub { font-size: 0.65rem; color: rgba(0,0,0,0.45); text-transform: uppercase; letter-spacing: 0.05em; }
.footer-desc { font-size: 0.85rem; color: rgba(0,0,0,0.55); line-height: 1.7; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(0,0,0,0.07);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: rgba(0,0,0,0.55); text-decoration: none; font-size: 0.9rem;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--blue); color: var(--white); }
.footer-col h5 {
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(0,0,0,0.4); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  text-decoration: none; color: rgba(0,0,0,0.6);
  font-size: 0.875rem; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--blue); }
.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(0,0,0,0.4); }
.footer-bottom .ein {
  font-size: 0.75rem; color: rgba(0,0,0,0.4);
  display: flex; align-items: center; gap: 0.5rem;
}

/* ── PAGE HERO (inner pages) ────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--blue) 0%, #0f2440 100%);
  color: var(--white); padding: 4rem 2rem 3rem;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900; margin-bottom: 0.75rem;
}
.page-hero p { font-size: 1rem; opacity: 0.75; max-width: 600px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  justify-content: center; margin-bottom: 1rem;
  font-size: 0.8rem; opacity: 0.6;
}
.breadcrumb a { color: var(--white); text-decoration: none; }
.breadcrumb span { opacity: 0.5; }

/* ── ALERT BANNER ───────────────────────────────────── */
.alert-banner {
  background: linear-gradient(90deg, var(--gold), #e8b320);
  color: var(--dark); padding: 0.75rem 2rem;
  text-align: center; font-size: 0.875rem; font-weight: 600;
}
.alert-banner a { color: var(--dark); text-decoration: underline; }

/* ── RESPONSIVE ─────────────────────────────────────── */

/* Tablet — 1024px */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .two-col { gap: 2.5rem; }
  .section-inner { padding: 0 1.5rem; }
}

/* Mobile — 768px */
@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    padding: 0.75rem; gap: 0; max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links > li { width: 100%; }
  .nav-links a { padding: 0.65rem 1rem; font-size: 0.95rem; border-radius: 8px; }
  .nav-links a.btn-nav { margin: 0.5rem 0 0; text-align: center; }
  .nav-toggle { display: flex; }

  /* Mobile dropdowns — always visible, indented */
  .nav-links .nav-dropdown { display: block !important; }
  .nav-dropdown {
    position: static; box-shadow: none; border: none;
    border-left: 2px solid var(--border);
    padding: 0 0 0 1rem; margin: 0.25rem 0 0.25rem 0.5rem;
    border-radius: 0; min-width: unset; background: transparent;
  }
  .nav-dropdown a { font-size: 0.875rem; color: var(--gray); padding: 0.45rem 0.75rem; }
  .nav-links .dropdown-toggle::after { display: none; }

  /* Layout */
  .two-col, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .two-col.reverse { direction: ltr; }
  .membership-grid { grid-template-columns: 1fr; }

  /* Typography */
  .section-title { font-size: clamp(1.4rem, 5vw, 2rem); }
  .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .page-hero p { font-size: 0.95rem; }

  /* Spacing */
  section { padding: 3rem 1.25rem; }
  .hero { padding: 4rem 1.25rem 3rem; }
  .stats-bar { padding: 1rem 0.75rem; }
  .stats-inner { grid-template-columns: repeat(3, 1fr); gap: 0.75rem 0.5rem; }
  .stat-num { font-size: 1.25rem; }
  .stat-label { font-size: 0.6rem; }
  .stat:nth-child(4), .stat:nth-child(5) { display: none; }
  .stat:nth-child(1), .stat:nth-child(2), .stat:nth-child(3) { display: block; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  footer { padding: 3rem 1.25rem 1.5rem; }

  /* Tables — scrollable on mobile */
  .styled-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .styled-table th, .styled-table td { white-space: nowrap; padding: 0.75rem 1rem; font-size: 0.82rem; }

  /* Accent box */
  .accent-box { padding: 2rem 1.5rem; }

  /* Cards */
  .card-grid { grid-template-columns: 1fr; }
  .mem-card { padding: 1.5rem; }
}

/* Small mobile — 480px */
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .stat { min-width: 80px; }
  .countdown-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .nav-brand-text .name { font-size: 0.875rem; }
  .nav-brand-text .sub { display: none; }
  .page-hero { padding: 3rem 1.25rem 2rem; }
  .contact-grid { gap: 1.5rem; }
  .mem-card.featured { margin-top: 0.75rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }
}
