:root{
  --black:#0F0F0F;
  --white:#FFFFFF;
  --cream:#F4F1EC;
  --gold:#C9A87C;
  --gold-dark:#b08f5f;
  --ink:#1a1a1a;
  --muted:#5c5953;
  --line:#e4ded3;
  --radius:14px;
  --radius-lg:22px;
  --shadow-sm:0 2px 10px rgba(15,15,15,.06);
  --shadow:0 16px 40px rgba(15,15,15,.10);
  --space:clamp(3rem,7vw,6rem);
  --maxw:1180px;
  --font:var(--mrc-font-en);
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--font);
  color:var(--ink);
  background:var(--white);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;height:auto}
a{color:inherit;text-decoration:none}
.container{width:100%;max-width:var(--maxw);margin:0 auto;padding:0 clamp(1.1rem,4vw,2rem)}
.narrow{max-width:780px}
.center{text-align:center}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}

h1,h2,h3{line-height:1.15;font-weight:700;letter-spacing:-.01em;color:var(--black)}
h1{font-size:clamp(2.1rem,5.4vw,3.6rem)}
h2{font-size:clamp(1.7rem,3.8vw,2.6rem)}
h3{font-size:clamp(1.15rem,2vw,1.4rem)}
p{color:var(--muted)}
.eyebrow{
  text-transform:uppercase;letter-spacing:.18em;font-size:.78rem;
  font-weight:600;color:var(--gold-dark);margin-bottom:.6rem;
}

/* buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  gap:.5rem;font-weight:600;cursor:pointer;border:none;
  border-radius:999px;padding:.85rem 1.7rem;min-height:46px;
  transition:transform .2s ease,box-shadow .2s ease,background .2s ease;
}
.btn-lg{padding:1.05rem 2.3rem;min-height:54px;font-size:1.05rem}
.btn-primary{
  background:var(--gold);color:var(--black);
  box-shadow:0 8px 24px rgba(201,168,124,.45);
}
.btn-primary:hover{background:var(--gold-dark);color:#fff;transform:translateY(-2px)}
.btn-primary:active{transform:translateY(0)}
.btn:focus-visible{outline:3px solid var(--black);outline-offset:3px}

.cta-pulse{animation:pulse 2.4s ease-in-out infinite}
@keyframes pulse{
  0%,100%{box-shadow:0 8px 24px rgba(201,168,124,.45)}
  50%{box-shadow:0 8px 30px rgba(201,168,124,.75)}
}

/* header */
.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.92);backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;min-height:66px}
.brand{font-weight:700;font-size:1.25rem;letter-spacing:.02em;color:var(--black)}
.primary-nav{display:flex;align-items:center;gap:1.6rem}
.primary-nav a{font-size:.95rem;color:var(--ink);font-weight:500}
.primary-nav a:hover{color:var(--gold-dark)}
.nav-cta{
  background:var(--gold);color:var(--black)!important;
  padding:.55rem 1.2rem;border-radius:999px;font-weight:600;
}
.nav-cta:hover{background:var(--gold-dark);color:#fff!important}
.nav-toggle{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:8px}
.nav-toggle span{width:24px;height:2px;background:var(--black);transition:.3s}

@media(max-width:820px){
  .nav-toggle{display:flex}
  .primary-nav{
    position:absolute;top:66px;left:0;right:0;
    flex-direction:column;align-items:stretch;gap:0;
    background:var(--white);border-bottom:1px solid var(--line);
    padding:.5rem 1rem 1.2rem;
    transform:translateY(-150%);transition:transform .3s ease;
    box-shadow:var(--shadow);
  }
  .primary-nav.open{transform:translateY(0)}
  .primary-nav a{padding:.85rem .4rem;border-bottom:1px solid var(--line)}
  .nav-cta{text-align:center;margin-top:.7rem}
  .nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
  .nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
  .nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
}

/* hero */
.hero{position:relative;overflow:hidden;background:var(--cream)}
.hero-bg{position:absolute;inset:0;z-index:0}
.hero-bg img{width:100%;height:100%;object-fit:cover;opacity:.22}
.hero-inner{
  position:relative;z-index:1;
  display:grid;grid-template-columns:1.1fr .9fr;gap:clamp(2rem,5vw,4rem);
  align-items:center;padding:clamp(3.5rem,8vw,6.5rem) 0;
}
.hero-copy{max-width:560px}
.lede{font-size:clamp(1.05rem,1.6vw,1.25rem);margin:1.1rem 0 1.8rem;color:#3a3833}
.hero-note{font-size:.85rem;margin-top:.9rem;color:var(--muted)}
.hero-media img{border-radius:var(--radius-lg);box-shadow:var(--shadow);object-fit:cover;aspect-ratio:1/1}
@media(max-width:860px){
  .hero-inner{grid-template-columns:1fr;text-align:center}
  .hero-copy{margin:0 auto}
  .hero-media{order:-1;max-width:420px;margin:0 auto}
  .hero-bg img{opacity:.16}
}

/* sections */
.section{padding:var(--space) 0}
.section.alt{background:var(--cream)}
.section-head{max-width:680px;margin:0 auto clamp(2rem,4vw,3rem)}
.section-head p{margin-top:.6rem}
.about p{font-size:1.1rem;margin-bottom:1rem}

/* grids */
.grid{display:grid;gap:1.3rem}
.features-grid{grid-template-columns:repeat(3,1fr)}
.card{
  background:var(--white);border:1px solid var(--line);
  border-radius:var(--radius);padding:1.8rem 1.6rem;
  box-shadow:var(--shadow-sm);transition:transform .25s,box-shadow .25s;
}
.card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.card-num{display:inline-block;font-weight:700;color:var(--gold);letter-spacing:.1em;margin-bottom:.6rem}
.card h3{margin-bottom:.5rem}
@media(max-width:900px){.features-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.features-grid{grid-template-columns:1fr}}

.product-card{
  margin-top:2.5rem;display:flex;flex-wrap:wrap;align-items:center;
  justify-content:space-between;gap:1.5rem;
  background:var(--black);color:var(--white);
  border-radius:var(--radius-lg);padding:clamp(1.8rem,4vw,2.6rem);
}
.product-card h3{color:#fff;margin:.3rem 0 .6rem}
.product-card p{color:#cfcabf}
.product-card .eyebrow{color:var(--gold)}
.product-cta{display:flex;flex-direction:column;align-items:flex-start;gap:.8rem}
.price{font-size:1.6rem;font-weight:700;color:var(--gold)}
@media(max-width:560px){.product-cta{align-items:stretch;width:100%}.product-cta .btn{width:100%}}

/* gallery */
.gallery-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  grid-auto-rows:200px;gap:1rem;
}
.g-item{overflow:hidden;border-radius:var(--radius);box-shadow:var(--shadow-sm)}
.g-item img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.g-item:hover img{transform:scale(1.06)}
.g-tall{grid-row:span 2}
@media(max-width:640px){
  .gallery-grid{grid-template-columns:repeat(2,1fr);grid-auto-rows:160px}
  .g-tall{grid-row:span 2}
}

/* instructor */
.instructor-inner{
  display:grid;grid-template-columns:.9fr 1.1fr;gap:clamp(2rem,5vw,4rem);align-items:center;
}
.instructor-media img{border-radius:var(--radius-lg);box-shadow:var(--shadow);object-fit:cover;aspect-ratio:4/5}
.instructor-copy p{margin-top:1rem;font-size:1.05rem}
@media(max-width:780px){.instructor-inner{grid-template-columns:1fr}.instructor-media{max-width:380px;margin:0 auto}}

/* testimonials */
.testimonial-grid{grid-template-columns:repeat(3,1fr)}
.quote{
  background:var(--white);border:1px solid var(--line);border-left:4px solid var(--gold);
  border-radius:var(--radius);padding:1.8rem;box-shadow:var(--shadow-sm);
}
.quote p{color:var(--ink);font-size:1.02rem;margin-bottom:1rem}
.quote cite{font-style:normal;font-weight:600;color:var(--gold-dark)}
@media(max-width:860px){.testimonial-grid{grid-template-columns:1fr}}

/* accordion */
.accordion{display:flex;flex-direction:column;gap:.8rem}
.acc-item{background:var(--white);border:1px solid var(--line);border-radius:var(--radius);overflow:hidden}
.acc-q{
  width:100%;display:flex;align-items:center;justify-content:space-between;gap:1rem;
  background:none;border:none;cursor:pointer;text-align:left;
  font-size:1.05rem;font-weight:600;color:var(--black);
  padding:1.15rem 1.3rem;font-family:inherit;
}
.acc-icon{position:relative;width:16px;height:16px;flex:none}
.acc-icon::before,.acc-icon::after{
  content:"";position:absolute;background:var(--gold-dark);
  top:50%;left:50%;transform:translate(-50%,-50%);transition:.3s;
}
.acc-icon::before{width:16px;height:2px}
.acc-icon::after{width:2px;height:16px}
.acc-q[aria-expanded="true"] .acc-icon::after{transform:translate(-50%,-50%) rotate(90deg);opacity:0}
.acc-a{max-height:0;overflow:hidden;transition:max-height .35s ease}
.acc-a p{padding:0 1.3rem 1.2rem}

/* signup */
.signup{background:var(--black);color:#fff}
.signup h2{color:#fff}
.signup p{color:#cfcabf}
.signup-form{
  margin:2rem auto 0;max-width:520px;display:flex;flex-direction:column;gap:.9rem;
}
.signup-form input{
  width:100%;padding:1rem 1.1rem;border-radius:999px;border:1px solid #3a382f;
  background:#1c1b18;color:#fff;font-size:1rem;font-family:inherit;
}
.signup-form input::placeholder{color:#8d897f}
.signup-form input:focus-visible{outline:2px solid var(--gold);outline-offset:2px}
.signup-form .btn{width:100%}
.form-msg{min-height:1.2rem;font-weight:600;color:var(--gold)}
.form-note{font-size:.82rem;color:#8d897f}

/* sticky cta (mobile) */
.sticky-cta{
  display:none;position:fixed;z-index:60;left:1rem;right:1rem;bottom:1rem;
  background:var(--gold);color:var(--black);text-align:center;
  padding:1rem;border-radius:999px;font-weight:700;
  box-shadow:0 10px 30px rgba(201,168,124,.55);
}
@media(max-width:820px){.sticky-cta{display:block}}

/* footer */
.site-footer{background:var(--black);color:#cfcabf;padding-top:clamp(2.5rem,5vw,3.5rem)}
.footer-inner{display:grid;grid-template-columns:1.4fr 1.6fr 1fr;gap:2rem;padding-bottom:2rem}
.site-footer .brand{color:#fff;display:inline-block;margin-bottom:.6rem}
.footer-brand p{color:#9c988e;max-width:280px}
.footer-nav{display:flex;flex-wrap:wrap;gap:.7rem 1.4rem;align-content:flex-start}
.footer-nav a{color:#cfcabf;font-size:.95rem}
.footer-nav a:hover{color:var(--gold)}
.footer-contact a{color:var(--gold);word-break:break-all}
.footer-bottom{border-top:1px solid #2a2925;padding:1.2rem 0;font-size:.85rem;color:#8d897f}
@media(max-width:780px){.footer-inner{grid-template-columns:1fr}}

/* legal pages */
.legal{padding:var(--space) 0}
.legal h1{margin-bottom:.5rem}
.legal .updated{color:var(--gold-dark);font-weight:600;margin-bottom:2rem}
.legal h2{font-size:1.4rem;margin:2rem 0 .7rem}
.legal p,.legal li{color:var(--muted);margin-bottom:.7rem}
.legal ul{padding-left:1.3rem}

/* reveal */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .7s ease,transform .7s ease}
.reveal.in{opacity:1;transform:none}
@media(prefers-reduced-motion:reduce){
  *{animation:none!important;transition:none!important}
  .reveal{opacity:1;transform:none}
  html{scroll-behavior:auto}
}