:root{
  --bordeaux:#7A2E38;
  --bordeaux-dark:#5E222A;
  --beige:#E8DED0;
  --beige-light:#F3ECDF;
  --gold:#D9A62E;
  --gold-dark:#B78620;
  --bg:#F8F5EF;
  --white:#FFFFFF;
  --text:#2B2B2B;
  --text-muted:#6A6158;
  --border:#E3D9C9;
  --radius:14px;
  --shadow:0 10px 30px rgba(43,43,43,.08);
  --shadow-lg:0 18px 45px rgba(43,43,43,.12);
  --container:1160px;
  --font:'Segoe UI',system-ui,-apple-system,'Helvetica Neue',Arial,sans-serif;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:var(--font);
  color:var(--text);
  background:var(--bg);
  line-height:1.65;
  font-size:1.0625rem;
}
img,svg{max-width:100%;height:auto;display:block}
a{color:var(--bordeaux);text-decoration:none}
a:hover{color:var(--bordeaux-dark)}
.container{width:100%;max-width:var(--container);margin:0 auto;padding:0 1.25rem}
.visually-hidden{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0}

.btn{
  display:inline-block;
  padding:.8rem 1.5rem;
  border-radius:999px;
  font-weight:600;
  font-size:1rem;
  text-align:center;
  border:2px solid transparent;
  cursor:pointer;
  transition:transform .15s ease,box-shadow .15s ease,background .15s ease,color .15s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{background:var(--bordeaux);color:#fff}
.btn-primary:hover{background:var(--bordeaux-dark);color:#fff}
.btn-accent{background:var(--gold);color:#2B2B2B}
.btn-accent:hover{background:var(--gold-dark);color:#fff}
.btn-outline{border-color:var(--bordeaux);color:var(--bordeaux);background:transparent}
.btn-outline:hover{background:var(--bordeaux);color:#fff}
.btn-white{background:#fff;color:var(--bordeaux)}
.btn-white:hover{background:var(--beige);color:var(--bordeaux-dark)}

.site-header{
  position:sticky;top:0;z-index:100;
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--border);
}
.nav-wrap{display:flex;align-items:center;justify-content:space-between;gap:1rem;min-height:72px}
.logo{display:inline-flex;align-items:center;gap:.6rem;font-weight:700;font-size:1.3rem;color:var(--bordeaux)}
.logo:hover{color:var(--bordeaux)}
.logo-mark{flex:none;width:38px;height:38px}
.nav-toggle{
  display:inline-flex;flex-direction:column;gap:5px;
  width:44px;height:44px;align-items:center;justify-content:center;
  background:none;border:none;cursor:pointer;border-radius:8px;
}
.nav-toggle span{width:24px;height:3px;background:var(--bordeaux);border-radius:3px;transition:transform .2s,opacity .2s}
.site-nav ul{list-style:none;display:flex;align-items:center;gap:1.4rem;flex-wrap:wrap}
.site-nav a:not(.btn){color:var(--text);font-weight:500;position:relative;padding:.3rem 0}
.site-nav a:not(.btn):hover,.site-nav a:not(.btn)[aria-current="page"]{color:var(--bordeaux)}
.site-nav a:not(.btn)::after{
  content:"";position:absolute;left:0;bottom:-2px;width:0;height:2px;background:var(--gold);transition:width .2s;
}
.site-nav a:not(.btn):hover::after,.site-nav a:not(.btn)[aria-current="page"]::after{width:100%}
.site-nav .btn-accent{padding:.55rem 1.2rem;font-size:.95rem}

.hero{
  background:linear-gradient(135deg,var(--bordeaux) 0%,var(--bordeaux-dark) 100%);
  color:#fff;
  position:relative;
  overflow:hidden;
}
.hero-inner{display:grid;grid-template-columns:1fr;gap:2.5rem;padding:4rem 0 5rem;position:relative;z-index:2}
.hero-eyebrow{
  display:inline-block;background:rgba(217,166,46,.18);border:1px solid rgba(217,166,46,.5);
  color:var(--gold);font-weight:600;font-size:.85rem;letter-spacing:.08em;text-transform:uppercase;
  padding:.35rem .9rem;border-radius:999px;margin-bottom:1.2rem;
}
.hero h1{font-size:clamp(1.9rem,5vw,3.1rem);line-height:1.15;margin-bottom:1.1rem}
.hero h1 span{color:var(--gold)}
.hero p{font-size:clamp(1.05rem,2.4vw,1.25rem);max-width:34rem;color:rgba(255,255,255,.9);margin-bottom:1.9rem}
.hero-cta{display:flex;flex-wrap:wrap;gap:1rem}
.hero-art{display:flex;align-items:center;justify-content:center}

.hero-wave{position:absolute;bottom:-1px;left:0;width:100%;color:var(--bg)}
.hero-art svg{width:100%;max-width:560px;filter:drop-shadow(0 20px 40px rgba(0,0,0,.25))}

.section{padding:4.5rem 0}
.section-alt{background:var(--beige-light)}
.section-dark{background:var(--bordeaux);color:#fff}
.section-head{max-width:720px;margin:0 auto 3rem;text-align:center}
.section-kicker{color:var(--gold-dark);font-weight:700;letter-spacing:.1em;text-transform:uppercase;font-size:.8rem;margin-bottom:.6rem}
.section-dark .section-kicker{color:var(--gold)}
.section-head h2{font-size:clamp(1.6rem,3.4vw,2.2rem);line-height:1.2;margin-bottom:.8rem}
.section-head p{color:var(--text-muted);font-size:1.05rem}
.section-dark .section-head p{color:rgba(255,255,255,.85)}

.values-grid{display:grid;grid-template-columns:1fr;gap:1.5rem}
.value-card{
  background:var(--white);border:1px solid var(--border);border-radius:var(--radius);
  padding:1.9rem 1.6rem;text-align:center;box-shadow:var(--shadow);transition:transform .2s,box-shadow .2s;
}
.value-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg)}
.value-icon{width:64px;height:64px;margin:0 auto 1rem}
.value-card h3{font-size:1.15rem;margin-bottom:.5rem;color:var(--bordeaux)}
.value-card p{color:var(--text-muted);font-size:.98rem}

.stats{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;margin-top:2.5rem}
.stat{text-align:center;padding:1.6rem 1rem;border-radius:var(--radius);background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.14)}
.stat strong{display:block;font-size:clamp(2rem,5vw,2.7rem);color:var(--gold);line-height:1.1}
.stat span{color:rgba(255,255,255,.85);font-size:.95rem}
.stat small{display:block;color:rgba(255,255,255,.55);font-size:.78rem;margin-top:.2rem}

.split{display:grid;grid-template-columns:1fr;gap:2.5rem;align-items:center}
.split-img{display:flex;justify-content:center}
.split-img svg{width:100%;max-width:480px}
.split-body h2{font-size:clamp(1.5rem,3.2vw,2rem);margin-bottom:1rem;line-height:1.2}
.split-body .section-kicker{margin-bottom:.4rem}
.split-body p{color:var(--text-muted);margin-bottom:1rem}
.split-body ul{list-style:none;margin:1.2rem 0}
.split-body li{padding:.5rem 0 .5rem 2rem;position:relative}
.split-body li::before{
  content:"";position:absolute;left:0;top:.9rem;width:.7rem;height:.7rem;border-radius:50%;
  background:var(--gold);
}
.split-body li strong{color:var(--bordeaux)}

.programs-grid{display:grid;grid-template-columns:1fr;gap:1.5rem}
.program-card{
  background:var(--white);border:1px solid var(--border);border-radius:var(--radius);
  padding:2rem 1.7rem;box-shadow:var(--shadow);transition:transform .2s,box-shadow .2s;
}
.program-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg)}
.program-card .value-icon{width:56px;height:56px;margin-bottom:1.1rem}
.program-card h3{color:var(--bordeaux);font-size:1.2rem;margin-bottom:.6rem}
.program-card p{color:var(--text-muted);font-size:.97rem}

.cta-band{
  background:linear-gradient(135deg,var(--gold) 0%,#C89326 100%);color:#2B2B2B;
  border-radius:var(--radius);padding:2.6rem 1.8rem;text-align:center;box-shadow:var(--shadow-lg);
  position:relative;overflow:hidden;
}
.cta-band h2{font-size:clamp(1.4rem,3vw,1.9rem);margin-bottom:.7rem}
.cta-band p{max-width:36rem;margin:0 auto 1.6rem;color:rgba(43,43,43,.8)}

.contact-cards{display:grid;grid-template-columns:1fr;gap:1.5rem}
.contact-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius);padding:1.7rem;box-shadow:var(--shadow)}
.contact-card h3{color:var(--bordeaux);font-size:1.1rem;margin-bottom:.6rem}
.contact-card p,.contact-card a{color:var(--text-muted);font-size:.97rem}
.contact-card a{color:var(--bordeaux);font-weight:600}
.contact-card a:hover{color:var(--gold-dark)}

.map-embed{border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);min-height:340px}
.map-embed iframe{width:100%;height:100%;min-height:340px;border:0;display:block}

.form-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius);padding:2rem;box-shadow:var(--shadow)}
.form-field{margin-bottom:1.3rem}
.form-field label{display:block;font-weight:600;font-size:.92rem;margin-bottom:.4rem;color:var(--bordeaux)}
.form-field input,.form-field select,.form-field textarea{
  width:100%;padding:.75rem .9rem;border:1px solid var(--border);border-radius:10px;
  font-family:inherit;font-size:1rem;background:#fff;color:var(--text);transition:border .15s,box-shadow .15s;
}
.form-field input:focus,.form-field select:focus,.form-field textarea:focus{
  outline:none;border-color:var(--gold);box-shadow:0 0 0 3px rgba(217,166,46,.25);
}
.form-field textarea{resize:vertical;min-height:130px}
.form-note{font-size:.85rem;color:var(--text-muted);margin-top:.8rem}
.form-success{background:#EAF4EA;border:1px solid #BFDDBF;color:#2E6B2E;padding:.9rem 1.1rem;border-radius:10px;margin-bottom:1.2rem;font-size:.95rem}

.legal-wrap{max-width:820px;margin:0 auto}
.legal-wrap h1{font-size:clamp(1.7rem,4vw,2.3rem);margin-bottom:.5rem}
.legal-wrap .updated{color:var(--text-muted);font-size:.9rem;margin-bottom:2.2rem}
.legal-wrap h2{color:var(--bordeaux);font-size:1.25rem;margin:2rem 0 .8rem}
.legal-wrap h3{color:var(--bordeaux-dark);font-size:1.05rem;margin:1.4rem 0 .6rem}
.legal-wrap p,.legal-wrap li{color:var(--text-muted);font-size:.99rem;margin-bottom:.7rem}
.legal-wrap ul,.legal-wrap ol{padding-left:1.3rem;margin-bottom:1rem}
.legal-wrap ul li,.legal-wrap ol li{margin-bottom:.5rem}
.legal-wrap .legal-box{
  background:var(--white);border:1px solid var(--border);border-left:4px solid var(--gold);
  border-radius:var(--radius);padding:1.4rem 1.6rem;margin:1.6rem 0;
}
.legal-wrap blockquote{
  background:var(--beige-light);border-left:4px solid var(--bordeaux);
  padding:1.2rem 1.4rem;border-radius:0 var(--radius) var(--radius) 0;margin:1.4rem 0;
  font-style:italic;color:var(--text);
}
.legal-wrap .statute{font-family:'Times New Roman',Georgia,serif;font-size:1.02rem}
.legal-wrap address{font-style:normal;color:var(--text-muted)}
.legal-wrap table{width:100%;border-collapse:collapse;margin:1.2rem 0;font-size:.95rem}
.legal-wrap th,.legal-wrap td{border:1px solid var(--border);padding:.6rem .8rem;text-align:left}
.legal-wrap th{background:var(--beige-light);color:var(--bordeaux)}

.member-tiers{display:grid;grid-template-columns:1fr;gap:1.5rem}
.tier-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius);padding:2rem;box-shadow:var(--shadow)}
.tier-card .tier-price{font-size:2.2rem;font-weight:700;color:var(--bordeaux);margin:.3rem 0}
.tier-card .tier-price small{font-size:.9rem;color:var(--text-muted);font-weight:500}
.tier-card h3{color:var(--bordeaux)}
.tier-card ul{list-style:none;margin:1.1rem 0}
.tier-card li{padding:.4rem 0 .4rem 1.8rem;position:relative;font-size:.95rem;color:var(--text-muted)}
.tier-card li::before{content:"✓";position:absolute;left:0;color:var(--gold-dark);font-weight:700}
.tier-featured{border:2px solid var(--gold)}

.site-footer{background:#241A1A;color:#C9BFB4;margin-top:0}
.site-footer a{color:#C9BFB4}
.site-footer a:hover{color:var(--gold)}
.footer-grid{display:grid;grid-template-columns:1fr;gap:2.2rem;padding:3.4rem 0 2.4rem}
.footer-brand .logo{color:#fff;font-size:1.25rem;margin-bottom:.9rem}
.footer-brand p{font-size:.92rem;color:#A89E92;max-width:22rem}
.footer-col h3{color:#fff;font-size:.95rem;letter-spacing:.06em;text-transform:uppercase;margin-bottom:1rem}
.footer-col ul{list-style:none}
.footer-col li{margin-bottom:.55rem;font-size:.92rem}
.footer-col address{font-style:normal;font-size:.92rem;line-height:1.7}
.footer-col address a{color:var(--gold)}
.social-links{display:flex;gap:.7rem;margin-top:1rem}
.social-links a{
  display:inline-flex;align-items:center;justify-content:center;
  width:38px;height:38px;border-radius:50%;background:rgba(255,255,255,.08);
  transition:background .15s,transform .15s;
}
.social-links a:hover{background:var(--gold);transform:translateY(-3px)}
.social-links a svg{width:18px;height:18px}
.footer-bottom{border-top:1px solid rgba(255,255,255,.12);padding:1.4rem 0;font-size:.82rem;color:#8F857A}
.footer-bottom .container{display:flex;flex-direction:column;gap:.5rem}
.footer-bottom a{color:#8F857A}
.footer-bottom a:hover{color:var(--gold)}

.back-to-top{display:inline-flex;align-items:center;gap:.5rem;color:var(--gold);font-weight:600}
.back-to-top svg{width:16px;height:16px}

.page-hero{
  background:linear-gradient(135deg,var(--bordeaux) 0%,var(--bordeaux-dark) 100%);
  color:#fff;padding:3.4rem 0 4rem;text-align:center;position:relative;overflow:hidden;
}
.page-hero .breadcrumb{font-size:.82rem;color:rgba(255,255,255,.7);margin-bottom:.8rem;letter-spacing:.05em}
.page-hero .breadcrumb a{color:var(--gold)}
.page-hero h1{font-size:clamp(1.8rem,4.5vw,2.7rem);line-height:1.15;max-width:46rem;margin:0 auto}
.page-hero p{color:rgba(255,255,255,.85);max-width:40rem;margin:1rem auto 0;font-size:1.05rem}

.breadcrumbs{font-size:.8rem;color:var(--text-muted);padding:1rem 0 0}
.breadcrumbs a{color:var(--bordeaux);font-weight:600}

.notice{
  background:var(--beige-light);border:1px solid var(--border);border-left:4px solid var(--gold);
  border-radius:var(--radius);padding:1.2rem 1.4rem;margin:1.6rem 0;
}
.notice p{color:var(--text);margin:0}
.notice strong{color:var(--bordeaux)}

.team-grid{display:grid;grid-template-columns:1fr;gap:1.5rem}
.team-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius);padding:1.7rem;text-align:center;box-shadow:var(--shadow)}
.team-avatar{width:72px;height:72px;margin:0 auto 1rem;border-radius:50%;background:var(--beige);display:flex;align-items:center;justify-content:center}
.team-avatar svg{width:40px;height:40px}
.team-card h3{color:var(--bordeaux);font-size:1.1rem}
.team-card p{color:var(--text-muted);font-size:.9rem}

.timeline{list-style:none;position:relative;margin:1.5rem 0;padding-left:1.6rem}
.timeline::before{content:"";position:absolute;left:.35rem;top:.4rem;bottom:.4rem;width:2px;background:var(--border)}
.timeline li{position:relative;padding:.9rem 0 .9rem 1.4rem}
.timeline li::before{content:"";position:absolute;left:-1.65rem;top:1.25rem;width:.8rem;height:.8rem;border-radius:50%;background:var(--gold);border:2px solid #fff;box-shadow:0 0 0 2px var(--gold)}
.timeline li strong{color:var(--bordeaux)}
.timeline li p{color:var(--text-muted);font-size:.95rem}

.steps{display:grid;grid-template-columns:1fr;gap:1.4rem;margin:1.8rem 0}
.step{display:flex;gap:1rem;align-items:flex-start}
.step-num{
  flex:none;width:40px;height:40px;border-radius:50%;background:var(--bordeaux);color:#fff;
  display:flex;align-items:center;justify-content:center;font-weight:700;
}
.step h3{color:var(--bordeaux);font-size:1.05rem;margin-bottom:.25rem}
.step p{color:var(--text-muted);font-size:.95rem}

.faq details{
  background:var(--white);border:1px solid var(--border);border-radius:var(--radius);
  padding:1.1rem 1.4rem;margin-bottom:.9rem;box-shadow:var(--shadow);
}
.faq summary{cursor:pointer;font-weight:600;color:var(--bordeaux);font-size:1rem;list-style:none}
.faq summary::-webkit-details-marker{display:none}
.faq summary::before{content:"+";margin-right:.6rem;color:var(--gold);font-weight:700}
.faq details[open] summary::before{content:"–"}
.faq p{margin-top:.8rem;color:var(--text-muted);font-size:.95rem}

@media(min-width:560px){
  .stats{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:repeat(2,1fr)}
  .member-tiers{grid-template-columns:1fr 1fr}
  .values-grid{grid-template-columns:repeat(2,1fr)}
}
@media(min-width:900px){
  .hero-inner{grid-template-columns:1.05fr .95fr;align-items:center;padding:5.5rem 0 6.5rem}
  .section{padding:5.5rem 0}
  .values-grid{grid-template-columns:repeat(4,1fr)}
  .programs-grid{grid-template-columns:repeat(2,1fr)}
  .split{grid-template-columns:1fr 1fr;gap:4rem}
  .contact-cards{grid-template-columns:repeat(3,1fr)}
  .footer-grid{grid-template-columns:1.3fr 1fr 1fr 1fr}
  .stats{grid-template-columns:repeat(4,1fr)}
  .team-grid{grid-template-columns:repeat(3,1fr)}
  .steps{grid-template-columns:repeat(3,1fr)}
  .nav-toggle{display:none}
}
@media(max-width:899px){
  .site-nav{
    position:fixed;inset:0 0 0 auto;width:min(320px,82vw);background:#fff;
    box-shadow:var(--shadow-lg);transform:translateX(100%);transition:transform .25s ease;
    padding:5.5rem 1.6rem 2rem;z-index:99;
  }
  .site-nav.open{transform:translateX(0)}
  .site-nav ul{flex-direction:column;align-items:stretch;gap:1.1rem}
  .site-nav a:not(.btn){display:block;padding:.5rem 0;font-size:1.05rem}
  .site-nav .btn-accent{text-align:center}
  .nav-backdrop{
    position:fixed;inset:0;background:rgba(43,43,43,.45);opacity:0;pointer-events:none;
    transition:opacity .25s;z-index:98;
  }
  .nav-backdrop.open{opacity:1;pointer-events:auto}
}
