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

:root {
  --primary: #16A34A;
  --primary-dark: #15803D;
  --secondary: #DCFCE7;
  --bg: #F0FDF4;
  --text: #1E293B;
  --text-light: #64748B;
  --white: #FFFFFF;
  --border: #E2E8F0;
  --radius: 12px;
  --radius-sm: 8px;
}

body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text); line-height: 1.6; background: var(--white); -webkit-font-smoothing: antialiased; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

.nav { padding: 16px 0; border-bottom: 1px solid var(--border); background: var(--white); position: sticky; top: 0; z-index: 100; }
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 800; text-decoration: none; color: var(--text); }
.logo span { color: var(--primary); }
.nav-cta { background: var(--primary); color: var(--white); padding: 10px 24px; border-radius: var(--radius-sm); text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: background 0.2s; }
.nav-cta:hover { background: var(--primary-dark); }

.btn { display: inline-block; padding: 14px 32px; border-radius: var(--radius-sm); font-weight: 600; font-size: 1rem; text-decoration: none; border: none; cursor: pointer; transition: all 0.2s; }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-lg { padding: 16px 40px; font-size: 1.1rem; }
.btn-full { width: 100%; }

.hero { padding: 80px 0 60px; background: linear-gradient(135deg, var(--bg) 0%, var(--white) 100%); }
.hero-sm { padding: 60px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero h1 { font-size: 2.8rem; font-weight: 800; line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.02em; }
.hero-sub { font-size: 1.15rem; color: var(--text-light); margin-bottom: 32px; line-height: 1.7; }
.hero-img img { width: 100%; height: auto; border-radius: var(--radius); }
.hero-stats { display: flex; gap: 32px; margin-top: 32px; }
.stat strong { display: block; font-size: 1.5rem; color: var(--primary); }
.stat span { font-size: 0.85rem; color: var(--text-light); }
.breadcrumb { font-size: 0.9rem; color: var(--primary); text-decoration: none; margin-bottom: 8px; display: inline-block; }

.section { padding: 80px 0; }
.section-alt { background: var(--bg); }
.section-title { font-size: 2rem; font-weight: 700; text-align: center; margin-bottom: 48px; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step-card { background: var(--white); padding: 32px; border-radius: var(--radius); text-align: center; border: 1px solid var(--border); }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--primary); color: var(--white); display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.2rem; margin-bottom: 16px; }
.step-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step-card p { color: var(--text-light); font-size: 0.95rem; }

.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.category-card { background: var(--white); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: var(--text); border: 1px solid var(--border); transition: all 0.2s; }
.category-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(22, 163, 74, 0.12); }
.card-img img { width: 100%; height: 180px; object-fit: cover; }
.card-body { padding: 20px; }
.card-body h3 { font-size: 1.1rem; margin-bottom: 6px; }
.card-body p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 12px; }
.card-link { color: var(--primary); font-weight: 600; font-size: 0.9rem; }

.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 12px; }
.faq-item summary { padding: 18px 24px; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--primary); font-weight: 300; }
.faq-item[open] summary::after { content: '-'; }
.faq-item p { padding: 0 24px 18px; color: var(--text-light); }

.waitlist-box { max-width: 600px; margin: 0 auto; background: var(--bg); padding: 48px; border-radius: var(--radius); text-align: center; border: 1px solid var(--border); }
.waitlist-box h2 { font-size: 1.6rem; margin-bottom: 8px; }
.waitlist-box > p { color: var(--text-light); margin-bottom: 32px; }
.waitlist-form { text-align: left; }
.form-row { display: flex; gap: 12px; margin-bottom: 12px; }
.form-row input, .form-row select { flex: 1; padding: 14px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 0.95rem; font-family: inherit; background: var(--white); }
.form-row input:focus, .form-row select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1); }
.form-note { font-size: 0.8rem; color: var(--text-light); text-align: center; margin-top: 12px; }
.form-success { padding: 24px; }
.form-success h3 { color: var(--primary); margin-bottom: 8px; }

.footer { padding: 40px 0; border-top: 1px solid var(--border); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer p { color: var(--text-light); font-size: 0.9rem; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-light); text-decoration: none; font-size: 0.9rem; }
.footer-links a:hover { color: var(--primary); }

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 2rem; }
  .hero-img { order: -1; }
  .steps-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
  .waitlist-box { padding: 32px 24px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

/* ── directory components (P3) ── */
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 500; font-size: 0.95rem; }
.nav-links a.nav-cta { color: var(--white); }
.crumbs { font-size: 0.85rem; color: var(--text-light); margin-bottom: 12px; }
.crumbs a { color: var(--primary); text-decoration: none; }
.answer-box { background: var(--secondary); border-left: 4px solid var(--primary); border-radius: var(--radius-sm); padding: 18px 22px; margin: 20px 0; max-width: 780px; }
.answer-box p { font-size: 1.05rem; line-height: 1.7; }
.statrow { display: flex; gap: 32px; flex-wrap: wrap; margin: 20px 0 8px; }
.stamp { font-size: 0.8rem; color: var(--text-light); margin-top: 12px; }
.stamp a { color: var(--primary); }
.h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 20px; }
.section-sm { padding: 40px 0; }
.zone-head { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 8px; }
.see-all { color: var(--primary); font-weight: 600; text-decoration: none; font-size: 0.95rem; }
.zona-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.zona-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-decoration: none; color: var(--text); transition: all 0.2s; }
.zona-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(22,163,74,0.12); }
.zona-card h3 { color: var(--primary); margin-bottom: 4px; }
.zona-card p { color: var(--text-light); font-size: 0.9rem; }
.club-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); text-decoration: none; color: var(--text); transition: all 0.2s; display: block; }
.club-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(22,163,74,0.12); }
.club-card-body { padding: 18px 20px; }
.club-card-body h3 { font-size: 1.05rem; margin-bottom: 4px; }
.club-card-zone { color: var(--text-light); font-size: 0.85rem; margin-bottom: 10px; }
.club-card-meta { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.chip { background: var(--secondary); color: var(--primary-dark); font-size: 0.75rem; font-weight: 600; padding: 3px 10px; border-radius: 999px; }
.chip-rating { background: var(--primary); color: var(--white); }
.chip-muted, .mut { color: var(--text-light); font-size: 0.8rem; font-style: normal; }
.compare-wrap { overflow-x: auto; }
.compare { width: 100%; border-collapse: collapse; font-size: 0.9rem; min-width: 640px; }
.compare th { text-align: left; padding: 10px 14px; background: var(--bg); font-weight: 600; border-bottom: 2px solid var(--border); white-space: nowrap; }
.compare td { padding: 10px 14px; border-bottom: 1px solid var(--border); }
.compare td a { color: var(--text); font-weight: 600; text-decoration: none; }
.compare td a:hover { color: var(--primary); }
.faq-list { max-width: 780px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 10px; padding: 0 18px; }
.faq-item summary { font-weight: 600; font-size: 0.95rem; padding: 15px 0; cursor: pointer; list-style: none; position: relative; padding-right: 28px; }
.faq-item summary::after { content: "+"; position: absolute; right: 2px; top: 12px; font-size: 1.2rem; color: var(--text-light); }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding: 0 0 16px; font-size: 0.9rem; line-height: 1.7; color: var(--text-light); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-cloud a { background: var(--white); border: 1px solid var(--border); border-radius: 999px; padding: 7px 16px; text-decoration: none; color: var(--text); font-size: 0.9rem; font-weight: 500; transition: all 0.15s; }
.tag-cloud a:hover { border-color: var(--primary); color: var(--primary); }
.tag-cloud em { font-style: normal; color: var(--primary); font-weight: 700; margin-left: 4px; }
.club-head { display: flex; justify-content: space-between; gap: 32px; align-items: flex-start; flex-wrap: wrap; }
.club-sub { color: var(--text-light); margin: 6px 0 12px; }
.club-sub a { color: var(--primary); }
.club-photo img { border-radius: var(--radius); max-width: 360px; width: 100%; height: auto; object-fit: cover; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 18px 0 6px; }
.btn-outline { background: var(--white); color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--secondary); }
.btn-ghost { background: transparent; color: var(--text-light); border: 1px solid var(--border); }
.data-grid { max-width: 780px; }
.data-row { display: flex; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.data-row span { color: var(--text-light); width: 120px; flex-shrink: 0; }
.data-row a { color: var(--primary); text-decoration: none; }
.ladder-cta { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; text-align: center; }
.ladder-cta h2 { font-size: 1.5rem; margin-bottom: 10px; }
.ladder-cta p { color: var(--text-light); max-width: 560px; margin: 0 auto 20px; }
.tab-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 16px 0 4px; }
.tab-row-sm .tab { font-size: 0.8rem; padding: 5px 14px; }
.tab { background: var(--white); border: 1px solid var(--border); border-radius: 999px; padding: 7px 18px; font-size: 0.9rem; font-weight: 600; color: var(--text-light); }
.tab-on { background: var(--primary); border-color: var(--primary); color: var(--white); }
.empty-state { background: var(--white); border: 2px dashed var(--border); border-radius: var(--radius); padding: 40px; text-align: center; margin: 24px 0; max-width: 780px; }
.empty-state h3 { margin-bottom: 8px; }
.empty-state p { color: var(--text-light); max-width: 520px; margin: 0 auto 18px; }
.claim-box { background: var(--secondary); border-radius: var(--radius); padding: 28px 32px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.claim-box h3 { margin-bottom: 4px; }
.claim-box p { color: var(--text); opacity: 0.75; font-size: 0.95rem; max-width: 520px; }
.footer { background: var(--text); color: var(--white); padding: 48px 0 24px; margin-top: 40px; }
.footer .logo { color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-grid h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; opacity: 0.6; }
.footer-grid a { display: block; color: var(--white); opacity: 0.85; text-decoration: none; font-size: 0.9rem; margin-bottom: 8px; }
.footer-grid a:hover { opacity: 1; }
.footer-note { font-size: 0.85rem; opacity: 0.7; line-height: 1.6; max-width: 340px; }
.footer-legal { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 20px; font-size: 0.8rem; opacity: 0.6; }
.footer-legal a { color: var(--white); }
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .steps-grid, .footer-grid { grid-template-columns: 1fr; }
  .club-head { flex-direction: column; }
  .statrow { gap: 20px; }
}

/* ── tier-1 taps + map (CTA ruling + map addendum) ── */
.tap-row { justify-content: center; }
.tap-chip { background: var(--white); border: 2px solid var(--primary); border-radius: 999px; padding: 9px 20px; font-size: 0.92rem; font-weight: 600; color: var(--primary-dark); cursor: pointer; font-family: inherit; transition: all 0.15s; }
.tap-chip:hover:not(:disabled) { background: var(--secondary); }
.tap-chip:disabled { opacity: 0.45; cursor: default; }
.tap-chip-on { background: var(--primary); color: var(--white); opacity: 1 !important; }
.tap-proof { margin: 14px 0 10px; font-size: 0.95rem; color: var(--text); }
.map-box { height: 440px; border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }
.club-maphero { width: 360px; max-width: 100%; }
.club-maphero svg { border-radius: var(--radius); width: 100%; height: auto; display: block; }
a.tab { text-decoration: none; cursor: pointer; }
a.tab:hover { border-color: var(--primary); color: var(--primary); }
@media (max-width: 768px) { .map-box { height: 340px; } }
