/* =====================================================
   Precision in Practice - Redesign
   Fonts: Cormorant Garamond + Jost
   Palette: Near-black · White · Rose (accent only)
   ===================================================== */

:root {
  --black: #111111;
  --white: #FFFFFF;
  --cream: #F8F6F3;
  --rose: #AD6680;
  --rose-dark: #8F5268;
  --muted: #888480;
  --border: rgba(17,17,17,0.1);
  --max-width: 1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(3.2rem, 6vw, 5.6rem); }
h2 { font-size: clamp(2.6rem, 4.5vw, 4.4rem); margin-bottom: 1.25rem; }
h3 { font-size: clamp(1.9rem, 2.6vw, 2.6rem); margin-bottom: 0.75rem; }
h4 { font-size: 1.4rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; font-weight: 300; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 0.73rem;
  letter-spacing: 0.28em;
  color: var(--rose);
  display: block;
  margin-bottom: 1.25rem;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

/* NAV */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--black);
  letter-spacing: 0.04em;
  line-height: 1;
  font-weight: 700;
}
.nav-menu { display: flex; align-items: center; gap: 48px; list-style: none; }
.nav-menu a {
  font-family: 'Jost', sans-serif;
  font-size: 0.73rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  transition: color 0.2s;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--rose); }
.nav-cta {
  background: var(--black) !important;
  color: var(--white) !important;
  padding: 11px 22px;
  letter-spacing: 0.14em;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--rose) !important; }
.nav-toggle { display: none; font-size: 1.4rem; color: var(--black); }

/* BUTTONS */
.btn {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.73rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid var(--rose);
  background: var(--rose);
  color: var(--white);
  transition: all 0.25s ease;
  cursor: pointer;
  border-radius: 0;
}
.btn:hover { background: var(--rose-dark); border-color: var(--rose-dark); }
.btn-large { padding: 20px 52px; }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline-dark:hover { background: var(--black); color: var(--white); }

/* HOME HERO: full-viewport split */
.hero-split-home {
  display: grid;
  grid-template-columns: 48fr 52fr;
  height: calc(100vh - 65px);
  min-height: 600px;
}
.hero-text-panel {
  background: var(--black);
  display: flex;
  align-items: flex-end;
  padding: 80px 72px 96px 80px;
}
.hero-text-inner { max-width: 540px; }
.hero-text-inner h1 { color: var(--white); margin-bottom: 1.5rem; font-size: clamp(2.8rem, 4.5vw, 5rem); line-height: 1.04; }
.hero-text-inner .subheadline {
  font-family: 'Jost', sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  margin-bottom: 2.75rem;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-image-panel {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #DEDAD6;
}

/* SECTIONS */
.section-white { background: var(--white); padding: 128px 0; }
.section-cream { background: var(--cream); padding: 128px 0; }
.section-black { background: var(--black); color: var(--white); padding: 128px 0; }
.section-label { text-align: center; margin-bottom: 88px; }

/* PILLARS */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 72px; }
.pillar-rule { height: 1px; background: var(--rose); width: 36px; margin-bottom: 2.25rem; }
.pillar h3 { color: var(--black); margin-bottom: 1rem; font-size: 2rem; }
.pillar p { color: var(--muted); font-size: 1rem; line-height: 1.85; }

/* PULL QUOTE */
.pull-section { background: var(--black); padding: 140px 0; text-align: center; }
.pull-quote-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  line-height: 1.05;
  display: block;
  margin-bottom: 2rem;
}
.pull-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.73rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 400;
  margin: 0;
}

/* INSTAGRAM */
.ig-section { padding: 128px 0; text-align: center; background: var(--white); }
.ig-section h2 { color: var(--black); }
.ig-handle {
  font-family: 'Jost', sans-serif;
  font-size: 0.73rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 400;
  display: block;
  margin-bottom: 3.5rem;
}
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 3px; max-width: 1000px; margin: 0 auto 3.5rem; }
.ig-tile { aspect-ratio: 1; background: var(--cream); background-size: cover; background-position: center; transition: opacity 0.3s; display: block; }
.ig-tile:hover { opacity: 0.75; }

/* FOOTER */
footer { background: var(--black); color: rgba(255,255,255,0.45); padding: 88px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.footer-brand h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--white); margin-bottom: 0.75rem; font-weight: 700; letter-spacing: 0.04em; }
.footer-brand h3 span { font-weight: 400; color: rgba(255,255,255,0.45); }
.footer-tagline { font-family: 'Jost', sans-serif; font-style: italic; font-size: 0.85rem; color: rgba(255,255,255,0.3); font-weight: 300; letter-spacing: 0.04em; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-links a { font-family: 'Jost', sans-serif; font-size: 0.73rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.38); transition: color 0.2s; font-weight: 300; }
.footer-links a:hover { color: var(--rose); }
.footer-contact a { font-family: 'Jost', sans-serif; font-size: 0.9rem; color: rgba(255,255,255,0.38); display: block; margin-bottom: 14px; font-weight: 300; transition: color 0.2s; }
.footer-contact a:hover { color: var(--rose); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 28px; text-align: center; font-family: 'Jost', sans-serif; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.22); font-weight: 300; }

/* SHARED PAGE STYLES */
section { padding: 96px 0; }
.bg-blush { background: var(--cream); }
.bg-charcoal { background: var(--black); color: var(--white); }
.bg-charcoal h1,.bg-charcoal h2,.bg-charcoal h3 { color: var(--white); }
.bg-rose { background: var(--black); color: var(--white); }
.bg-rose h1,.bg-rose h2,.bg-rose h3 { color: var(--white); }
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.section-heading { text-align: center; margin-bottom: 3.5rem; }
.section-heading .eyebrow { display: inline-block; }
.section-heading p { max-width: 640px; margin: 0 auto; color: var(--muted); font-weight: 300; }
.text-center { text-align: center; }
.cta-strip.bg-rose p,.cta-strip.bg-charcoal p { color: rgba(255,255,255,0.55); }

.hero { min-height: 90vh; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; color: var(--white); overflow: hidden; background-color: var(--black); }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg,rgba(8,8,8,.38) 0%,rgba(8,8,8,.68) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 880px; padding: 0 32px; }
.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero .subheadline { font-family: 'Jost',sans-serif; font-size: clamp(1rem,1.5vw,1.2rem); font-weight: 300; color: rgba(255,255,255,.6); max-width: 560px; margin: 0 auto 3rem; line-height: 1.85; }

.hero-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 90vh; }
.hero-split .hero-image { background-size: cover; background-position: center; background-color: #DEDAD6; }
.hero-split .hero-text { background: var(--black); color: var(--white); display: flex; flex-direction: column; justify-content: center; padding: 80px 72px; }
.hero-split .hero-text h1 { color: var(--white); margin-bottom: 1rem; }
.hero-split .hero-text .subheadline { font-family: 'Jost',sans-serif; color: rgba(255,255,255,.55); font-size: 1.1rem; font-weight: 300; line-height: 1.85; margin-top: 1rem; }

.hero-simple { background: var(--black); color: var(--white); padding: 168px 0 148px; text-align: center; }
.hero-simple h1 { color: var(--white); margin-bottom: 1rem; }
.hero-simple .subheadline { font-family: 'Jost',sans-serif; color: rgba(255,255,255,.55); font-size: 1.15rem; font-weight: 300; max-width: 560px; margin: 0 auto; line-height: 1.85; }

.three-col { display: grid; grid-template-columns: repeat(3,1fr); gap: 64px; }
.col-card { background: none; box-shadow: none; padding: 0; border: none; border-radius: 0; }
.col-icon { font-size: 0.9rem; color: var(--rose); margin-bottom: 1.5rem; display: block; }
.col-card h3 { color: var(--black); margin-bottom: 1rem; }
.col-card p { color: var(--muted); font-size: 1rem; line-height: 1.85; }

.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center; }
.story-image { aspect-ratio: 4/5; background-size: cover; background-position: center; background-color: var(--cream); }
.story-text p { margin-bottom: 1.4rem; color: var(--black); font-size: 1.05rem; line-height: 1.85; font-weight: 300; }

.method-section { text-align: center; padding: 140px 0; }
.method-section h2 { color: var(--white); margin-bottom: 1.75rem; }
.method-section .method-body { font-family: 'Jost',sans-serif; color: rgba(255,255,255,.55); max-width: 680px; margin: 0 auto 4rem; font-size: 1.05rem; line-height: 1.9; font-weight: 300; }
.pull-quote { font-family: 'Cormorant Garamond',serif; font-size: clamp(2.2rem,4vw,3.4rem); color: var(--rose); font-style: italic; font-weight: 700; border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); padding: 40px 0; display: inline-block; }

.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.value-card { background: var(--cream); padding: 48px 28px; text-align: center; border-radius: 0; box-shadow: none; border-top: none; }
.value-card h3 { font-size: 1.5rem; color: var(--black); margin-bottom: 0; line-height: 1.3; }

.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 48px; }
.step-card { position: relative; box-shadow: none; border-radius: 0; background: none; padding: 0; }
.step-number { font-family: 'Cormorant Garamond',serif; font-size: 4rem; font-weight: 700; color: var(--rose); display: flex; align-items: center; justify-content: center; width: auto; height: auto; background: transparent; border: none; line-height: 1; margin: 0 0 1rem; opacity: 0.3; }
.step-card::after { display: none; }
.step-card p { color: var(--muted); font-size: 1rem; line-height: 1.8; font-weight: 300; margin: 0; }

.programs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; max-width: 100%; margin: 0; }
.programs-grid.programs-grid-three { grid-template-columns: 1fr 1fr 1fr; }
.program-card { padding: 72px 56px; display: flex; flex-direction: column; box-shadow: none; border-radius: 0; }
.programs-grid-three .program-card { padding: 60px 44px; }
.program-card.advance { background: var(--black); color: var(--white); }
.program-card.accelerate { background: var(--rose); color: var(--white); }
.program-card.quickfix { background: #888480; color: var(--white); }
.program-card h2 { font-family: 'Cormorant Garamond',serif; font-size: 3.6rem; letter-spacing: 0.08em; margin-bottom: 0.5rem; color: var(--white); font-weight: 700; }
.program-meta { font-family: 'Jost',sans-serif; font-size: 0.73rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 2rem; opacity: 0.55; font-weight: 300; }
.program-card p { font-family: 'Jost',sans-serif; line-height: 1.85; margin-bottom: 2rem; flex-grow: 1; opacity: 0.85; font-weight: 300; font-size: 1rem; }
.program-price { font-family: 'Cormorant Garamond',serif; font-size: 3rem; font-weight: 700; margin-bottom: 2rem; color: var(--white); opacity: 0.9; }
.program-card.advance .program-price { color: var(--rose); opacity: 1; }
.program-card .btn { align-self: flex-start; background: var(--white); color: var(--black); border-color: var(--white); }
.program-card .btn:hover { background: transparent; color: var(--white); }

.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; text-align: left; padding: 26px 0; font-family: 'Cormorant Garamond',serif; font-size: 1.4rem; font-weight: 700; color: var(--black); cursor: pointer; background: none; border: none; line-height: 1.3; }
.faq-question::after { content: '+'; color: var(--rose); font-size: 1.6rem; font-weight: 300; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; color: var(--muted); line-height: 1.85; font-size: 1rem; font-weight: 300; }
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 28px; }

.group-class { text-align: center; padding: 128px 0; }
.group-class h2 { color: var(--white); }
.group-class p { font-family: 'Jost',sans-serif; color: rgba(255,255,255,.55); max-width: 520px; margin: 0 auto 1.5rem; font-size: 1.05rem; font-weight: 300; line-height: 1.85; }
.group-class .price { font-family: 'Cormorant Garamond',serif; color: var(--rose); font-size: 2.8rem; font-weight: 700; margin-bottom: 2rem; display: block; }

.cta-strip { padding: 112px 24px; text-align: center; }
.cta-strip h2 { margin-bottom: 0.5rem; }
.cta-strip p { max-width: 520px; margin: 0 auto 2.75rem; font-weight: 300; line-height: 1.85; }

.bundle-strip { background: var(--black); color: var(--white); padding: 88px 24px; text-align: center; }
.bundle-strip h2 { color: var(--white); margin-bottom: 0.5rem; }
.bundle-savings { font-family: 'Jost',sans-serif; color: rgba(255,255,255,.4); font-size: 0.78rem; margin-bottom: 2.5rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 300; }
.bundle-strip .btn { background: var(--rose); color: var(--white); border-color: var(--rose); }
.bundle-strip .btn:hover { background: var(--rose-dark); border-color: var(--rose-dark); }

.products-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; max-width: 100%; margin: 0; }
.product-card { background: var(--cream); padding: 60px 52px; display: flex; flex-direction: column; border-top: 1px solid var(--rose); border-radius: 0; box-shadow: none; }
.product-card h3 { color: var(--black); font-size: 2.4rem; margin-bottom: 0.5rem; font-weight: 700; }
.product-card p { color: var(--muted); flex-grow: 1; margin-bottom: 2rem; font-weight: 300; line-height: 1.85; }
.product-price { font-family: 'Cormorant Garamond',serif; font-size: 2.4rem; font-weight: 700; color: var(--rose); margin-bottom: 2rem; }
.product-card .btn { align-self: flex-start; }

.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; }
.testimonial-card { padding: 0; border-top: 1px solid var(--border); padding-top: 36px; box-shadow: none; background: none; border-radius: 0; }
.testimonial-card::before { display: none; }
.testimonial-card p { font-family: 'Cormorant Garamond',serif; font-style: italic; font-size: 1.25rem; color: var(--black); margin-bottom: 1.5rem; line-height: 1.65; margin-top: 0; }
.testimonial-author { font-family: 'Jost',sans-serif; color: var(--rose); font-size: 0.73rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 400; }
.testimonial-full { padding: 0 0 52px; border-bottom: 1px solid var(--border); margin-bottom: 52px; background: none; box-shadow: none; border-radius: 0; }
.testimonial-full::before { display: none; }
.testimonial-full p { font-family: 'Cormorant Garamond',serif; font-style: italic; font-size: 1.5rem; line-height: 1.6; margin-bottom: 1.5rem; color: var(--black); }

.contact-section { padding: 128px 0; text-align: center; }
.contact-section h1 { color: var(--black); margin-bottom: 1rem; }
.contact-section .lead { color: var(--muted); max-width: 520px; margin: 0 auto 4rem; font-size: 1.05rem; font-weight: 300; line-height: 1.85; }
.contact-info { margin-top: 4rem; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.contact-info a { font-family: 'Jost',sans-serif; color: var(--rose); font-weight: 400; font-size: 1rem; transition: color 0.2s; }
.contact-info a:hover { color: var(--rose-dark); }

.calendly-embed { background: var(--white); min-height: 700px; max-width: 1000px; margin: 0 auto; overflow: hidden; }
.calendly-inline-widget { min-height: 700px; width: 100%; }

.proof-strip { background: var(--black); color: var(--white); padding: 96px 24px; text-align: center; }
.proof-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; max-width: 860px; margin: 0 auto; }
.proof-number { font-family: 'Cormorant Garamond',serif; font-size: clamp(3.5rem,6vw,5rem); color: var(--rose); font-weight: 700; display: block; line-height: 1; }
.proof-label { font-family: 'Jost',sans-serif; font-size: 0.73rem; letter-spacing: 0.2em; text-transform: uppercase; margin-top: 0.75rem; color: rgba(255,255,255,.4); font-weight: 300; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-split-home { grid-template-columns: 1fr; height: auto; }
  .hero-image-panel { min-height: 65vh; order: -1; }
  .hero-text-panel { padding: 72px 48px 80px; align-items: flex-start; }
  .hero-text-inner { max-width: 100%; }
}
@media (max-width: 980px) {
  .pillars { grid-template-columns: 1fr; gap: 52px; }
  .three-col,.testimonial-grid,.steps-grid,.values-grid,.programs-grid,.products-grid,.footer-grid,.story-grid,.hero-split { grid-template-columns: 1fr; }
  .hero-split { min-height: auto; }
  .hero-split .hero-image { min-height: 55vh; }
  .hero-split .hero-text { padding: 64px 40px; }
  .section-white,.section-cream,.section-black { padding: 80px 0; }
  section { padding: 72px 0; }
  .container { padding: 0 28px; }
  .nav-inner { padding: 18px 28px; }
  .nav-toggle { display: block; }
  .nav-menu { position: absolute; top: 100%; left: 0; right: 0; background: rgba(255,255,255,.98); flex-direction: column; align-items: stretch; gap: 0; padding: 0; border-bottom: 1px solid var(--border); max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
  .nav-menu.open { max-height: 500px; }
  .nav-menu li { border-bottom: 1px solid var(--border); }
  .nav-menu li:last-child { border-bottom: 0; }
  .nav-menu a,.nav-menu .nav-cta { display: block; padding: 16px 24px; text-align: center; }
  .ig-grid { grid-template-columns: repeat(3,1fr); }
  .programs-grid.programs-grid-three { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; }
  .ig-grid { grid-template-columns: repeat(2,1fr); }
  .program-card,.product-card { padding: 48px 32px; }
  section { padding: 56px 0; }
  .container { padding: 0 20px; }
  .pull-quote-main { font-size: 2.6rem; }
  .proof-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ===== Masterclass cards ===== */
.programs-grid-four { grid-template-columns: repeat(4, 1fr); }
.program-card.masterclass {
  background: var(--black);
  color: var(--white);
}
.program-card.masterclass h2 {
  color: var(--white);
  font-size: 2.6rem;
}
.program-card.masterclass .program-price { color: var(--rose); opacity: 1; }
.btn-coming-soon {
  background: transparent;
  color: rgba(255,255,255,0.35);
  border-color: rgba(255,255,255,0.2);
  cursor: default;
  letter-spacing: 0.22em;
}
.btn-coming-soon:hover {
  background: transparent;
  color: rgba(255,255,255,0.35);
  border-color: rgba(255,255,255,0.2);
  transform: none;
  box-shadow: none;
}

/* ===== Contact options ===== */
.contact-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 2.5rem;
}
.contact-option-btn { min-width: 320px; text-align: center; }

@media (max-width: 980px) {
  .programs-grid-four { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .programs-grid-four { grid-template-columns: 1fr; }
  .contact-option-btn { min-width: 0; width: 100%; }
}
