:root {
  --ink: #171315;
  --cream: #fff8ed;
  --paper: #fffdf8;
  --wine: #6f1026;
  --wine-dark: #240910;
  --gold: #f2b53d;
  --gold-light: #ffd978;
  --muted: #736970;
  --line: rgba(36, 9, 16, 0.13);
  --shadow: 0 24px 70px rgba(36, 9, 16, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 100; padding: 10px 14px; background: white; color: var(--wine); transform: translateY(-160%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(20px, 5vw, 76px);
  color: white;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.site-header.scrolled { padding-top: 12px; padding-bottom: 12px; background: rgba(36, 9, 16, .94); box-shadow: 0 12px 40px rgba(0,0,0,.16); backdrop-filter: blur(12px); }
.brand { display: inline-flex; flex-direction: column; text-decoration: none; line-height: 1; letter-spacing: -.045em; }
.brand-image { flex-direction: row; align-items: center; }
.brand-image img { width: 62px; height: 62px; display: block; object-fit: cover; border-radius: 15px; box-shadow: 0 8px 24px rgba(0,0,0,.22); }
.brand-name { font-size: clamp(18px, 2vw, 24px); font-weight: 900; font-style: italic; }
.brand-name span { color: var(--gold); }
.brand-name b { color: currentColor; }
.brand-name em { color: var(--gold-light); font-style: inherit; }
.brand small { margin-top: 4px; font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.72); }
.site-nav { display: flex; align-items: center; gap: clamp(18px, 2.3vw, 34px); }
.site-nav a { color: rgba(255,255,255,.84); text-decoration: none; font-size: 14px; font-weight: 700; }
.site-nav a:hover, .site-nav a:focus-visible { color: white; }
.site-nav .nav-cta { padding: 11px 17px; border-radius: 999px; background: var(--gold); color: var(--wine-dark); }
.menu-button { display: none; border: 0; background: transparent; padding: 8px; }
.menu-button > span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px 0; background: white; }

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  align-items: center;
  gap: clamp(38px, 6vw, 100px);
  padding: 150px clamp(22px, 7vw, 110px) 86px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 78% 28%, rgba(242,181,61,.2), transparent 30%),
    linear-gradient(125deg, #21070e 0%, #4b0a1b 58%, #76142b 100%);
}
.hero::before { content: ""; position: absolute; inset: 0; opacity: .11; background-image: linear-gradient(rgba(255,255,255,.7) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.7) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(to left, black, transparent 72%); }
.hero::after { content: ""; position: absolute; width: 380px; height: 900px; top: -140px; left: 56%; background: var(--gold); opacity: .06; transform: rotate(21deg); }
.hero-copy, .hero-art { position: relative; z-index: 2; }
.eyebrow { margin: 0 0 17px; font-size: 13px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--wine); }
.hero .eyebrow, .contact-section .eyebrow { color: var(--gold-light); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.04; }
h1 { max-width: 760px; margin-bottom: 24px; font-size: clamp(50px, 7vw, 94px); letter-spacing: -.07em; font-weight: 900; }
h1 span { color: var(--gold-light); }
.hero-text { max-width: 650px; margin-bottom: 31px; color: rgba(255,255,255,.77); font-size: clamp(17px, 1.6vw, 21px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 52px; padding: 13px 21px; border-radius: 999px; text-decoration: none; font-weight: 850; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .site-nav a:focus-visible, .social-link:focus-visible, .contact-line:focus-visible, .mobile-cta:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 3px; }
.button-primary { background: var(--gold); color: var(--wine-dark); box-shadow: 0 13px 30px rgba(0,0,0,.18); }
.button-primary:hover { background: var(--gold-light); }
.button-secondary { border: 1px solid rgba(255,255,255,.28); color: white; }
.button-secondary:hover { background: rgba(255,255,255,.08); }
.quick-facts { display: flex; gap: 0; margin: 42px 0 0; padding: 0; list-style: none; }
.quick-facts li { display: flex; flex-direction: column; gap: 1px; padding: 0 clamp(18px, 2.4vw, 34px); border-left: 1px solid rgba(255,255,255,.18); }
.quick-facts li:first-child { padding-left: 0; border-left: 0; }
.quick-facts strong { color: white; font-size: 18px; }
.quick-facts span { color: rgba(255,255,255,.57); font-size: 12px; }

.hero-art { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 490px; }
.hero-photo-frame { position: relative; width: min(39vw, 490px); aspect-ratio: 1; padding: 9px; border: 1px solid rgba(255,255,255,.23); border-radius: 31px; background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(242,181,61,.06)); box-shadow: 0 38px 100px rgba(0,0,0,.35); transform: rotate(1.5deg); }
.hero-photo-frame::before { content: ""; position: absolute; inset: -16px 18px 18px -16px; z-index: -1; border: 1px solid rgba(242,181,61,.35); border-radius: 34px; transform: rotate(-4deg); }
.hero-photo-frame img { width: 100%; height: 100%; display: block; object-fit: cover; border-radius: 23px; }
.coach-badge { position: absolute; right: -18px; bottom: 24px; padding: 10px 15px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; color: var(--wine-dark); background: var(--gold-light); box-shadow: 0 12px 28px rgba(0,0,0,.24); font-size: 12px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; transform: rotate(-1.5deg); }
.hero-ring { position: relative; width: min(36vw, 430px); aspect-ratio: 1; border: 1px solid rgba(255,255,255,.21); border-radius: 50%; display: grid; place-items: center; box-shadow: inset 0 0 0 34px rgba(255,255,255,.025), 0 40px 100px rgba(0,0,0,.24); }
.hero-ring::before, .hero-ring::after { content: ""; position: absolute; border-radius: 50%; }
.hero-ring::before { inset: 14%; border: 1px solid rgba(242,181,61,.38); }
.hero-ring::after { inset: 31%; background: var(--gold); box-shadow: 0 0 80px rgba(242,181,61,.34); }
.hero-mark { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; line-height: .82; letter-spacing: -.07em; color: var(--wine-dark); transform: rotate(-4deg); }
.hero-mark span, .hero-mark b { font-size: clamp(30px, 4.2vw, 58px); font-style: italic; }
.hero-mark em { margin-top: 12px; font-size: clamp(24px, 3vw, 43px); font-style: italic; font-weight: 900; color: var(--wine); }
.ring-label { position: absolute; z-index: 3; padding: 9px 13px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(36,9,16,.74); backdrop-filter: blur(8px); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; }
.ring-label-one { top: 3%; left: 4%; }
.ring-label-two { top: 32%; right: -8%; }
.ring-label-three { bottom: 8%; left: -6%; }
.art-caption { margin: 26px 0 0; color: rgba(255,255,255,.63); font-size: 13px; text-transform: uppercase; letter-spacing: .13em; text-align: center; }

.proof-bar { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 18px; padding: 18px 24px; background: var(--gold); color: var(--wine-dark); font-size: 13px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.proof-bar i { width: 5px; height: 5px; border-radius: 50%; background: var(--wine); opacity: .55; }
.section { padding: clamp(76px, 9vw, 130px) clamp(22px, 7vw, 110px); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, .55fr); column-gap: 60px; align-items: end; max-width: 1180px; margin: 0 auto 54px; }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading h2 { margin-bottom: 0; max-width: 800px; font-size: clamp(38px, 5vw, 68px); letter-spacing: -.055em; }
.section-heading > p:last-child { margin: 0; color: var(--muted); font-size: 17px; }
.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; max-width: 1180px; margin: 0 auto; }
.service-card { position: relative; min-height: 290px; display: flex; flex-direction: column; padding: clamp(27px, 3vw, 40px); overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: white; box-shadow: 0 12px 40px rgba(36,9,16,.05); }
.service-card::after { content: ""; position: absolute; width: 130px; height: 130px; right: -55px; bottom: -55px; border: 20px solid rgba(111,16,38,.055); border-radius: 50%; }
.service-card.featured { background: var(--wine); color: white; border-color: transparent; box-shadow: var(--shadow); }
.service-card.featured::after { border-color: rgba(242,181,61,.24); }
.card-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: auto; }
.card-number { font-size: 13px; font-weight: 900; color: var(--wine); }
.card-icon { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(111,16,38,.12); border-radius: 13px; background: var(--cream); font-size: 20px; line-height: 1; box-shadow: 0 8px 20px rgba(36,9,16,.06); }
.featured .card-icon { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.1); box-shadow: none; }
.featured .card-number { color: var(--gold-light); }
.service-card h3 { margin: 30px 0 13px; font-size: clamp(25px, 3vw, 35px); letter-spacing: -.04em; }
.service-card p { max-width: 560px; margin-bottom: 24px; color: var(--muted); }
.featured p { color: rgba(255,255,255,.72); }
.card-tag { align-self: flex-start; padding: 6px 11px; border-radius: 999px; background: var(--cream); color: var(--wine); font-size: 12px; font-weight: 850; }

.process-section { background: var(--cream); }
.process-section .section-heading { display: block; }
.process-list { max-width: 1180px; margin: 0 auto; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 100px 1fr; gap: 24px; padding: 35px 0; border-bottom: 1px solid var(--line); }
.process-list > li > span { font-size: 14px; font-weight: 900; color: var(--wine); }
.process-list h3 { margin-bottom: 8px; font-size: clamp(25px, 3vw, 34px); letter-spacing: -.035em; }
.process-list p { max-width: 720px; margin-bottom: 0; color: var(--muted); }

.about-section { background: var(--paper); }
.about-panel { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: minmax(260px, .65fr) 1fr; gap: clamp(38px, 7vw, 100px); align-items: center; padding: clamp(32px, 5vw, 70px); border-radius: 32px; color: white; background: var(--wine-dark); box-shadow: var(--shadow); }
.about-photo { aspect-ratio: 1; overflow: hidden; border: 8px solid var(--gold); border-radius: 50%; background: var(--gold); box-shadow: 0 22px 60px rgba(0,0,0,.3); }
.about-photo img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 23%; transform: scale(1.08); }
.about-panel h2 { margin-bottom: 16px; font-size: clamp(42px, 6vw, 72px); letter-spacing: -.06em; }
.about-lead { color: var(--gold-light); font-size: 20px; font-weight: 750; }
.about-panel p:not(.eyebrow):not(.about-lead) { color: rgba(255,255,255,.7); }
.social-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.social-link { display: inline-flex; align-items: center; gap: 9px; padding: 10px 15px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: white; background: rgba(255,255,255,.055); text-decoration: none; font-size: 14px; font-weight: 850; transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease; }
.social-link:hover { color: var(--wine-dark); background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }

.contact-section { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .7fr); gap: clamp(42px, 8vw, 120px); align-items: center; padding: clamp(76px, 9vw, 125px) clamp(22px, 7vw, 110px); color: white; background: var(--wine); }
.contact-copy h2 { margin-bottom: 18px; font-size: clamp(48px, 7vw, 86px); letter-spacing: -.07em; }
.contact-copy > p:last-child { max-width: 650px; color: rgba(255,255,255,.7); font-size: 18px; }
.contact-actions { display: flex; flex-direction: column; align-items: stretch; gap: 16px; }
.button-light { min-height: 58px; background: white; color: var(--wine); }
.contact-line { display: flex; justify-content: space-between; gap: 18px; padding: 16px 2px; border-bottom: 1px solid rgba(255,255,255,.19); text-decoration: none; }
.contact-line span { color: rgba(255,255,255,.58); }
.contact-line strong { text-align: right; }

footer { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 40px; padding: 35px clamp(22px, 7vw, 110px); background: #160509; color: rgba(255,255,255,.6); font-size: 13px; }
.footer-brand { color: white; }
.footer-brand img { width: 72px; height: 72px; border-radius: 17px; }
footer p { margin: 0; }
.mobile-cta { display: none; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 940px) {
  .site-header { padding: 15px 20px; }
  .menu-button { display: block; position: relative; z-index: 2; }
  .site-nav { position: fixed; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 25px; padding: 88px 28px; background: var(--wine-dark); transform: translateX(100%); transition: transform .25s ease; }
  .site-nav.open { transform: translateX(0); }
  .site-nav a { font-size: 26px; }
  .site-nav .nav-cta { margin-top: 8px; font-size: 18px; }
  .hero { grid-template-columns: 1fr; padding: 140px 24px 70px; }
  .hero-art { min-height: 400px; }
  .hero-photo-frame { width: min(78vw, 440px); }
  .hero-ring { width: min(78vw, 390px); }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading > p:last-child { margin-top: 22px; }
  .contact-section { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; gap: 17px; }
}

@media (max-width: 640px) {
  body { padding-bottom: 62px; }
  .hero { min-height: auto; }
  h1 { font-size: clamp(49px, 15vw, 70px); }
  .hero-text { font-size: 17px; }
  .hero-actions .button { width: 100%; }
  .quick-facts { display: grid; grid-template-columns: repeat(3, 1fr); }
  .quick-facts li { padding: 0 10px; }
  .quick-facts strong { font-size: 15px; }
  .quick-facts span { font-size: 11px; line-height: 1.3; }
  .hero-art { min-height: 340px; }
  .hero-photo-frame { width: min(89vw, 390px); }
  .coach-badge { right: -4px; bottom: 17px; }
  .ring-label-two { right: -2%; }
  .ring-label-three { left: -1%; }
  .proof-bar { justify-content: flex-start; gap: 11px; padding-left: 18px; }
  .proof-bar span { font-size: 11px; }
  .section { padding-left: 19px; padding-right: 19px; }
  .section-heading { margin-bottom: 35px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 260px; }
  .process-list li { grid-template-columns: 44px 1fr; gap: 8px; }
  .about-panel { grid-template-columns: 1fr; padding: 24px; }
  .about-photo { width: min(70vw, 290px); margin: 0 auto; }
  .contact-section { padding-left: 20px; padding-right: 20px; }
  .contact-line { flex-direction: column; gap: 2px; }
  .contact-line strong { text-align: left; overflow-wrap: anywhere; }
  .mobile-cta { position: fixed; z-index: 45; display: flex; align-items: center; justify-content: center; left: 10px; right: 10px; bottom: 8px; min-height: 50px; border-radius: 999px; color: var(--wine-dark); background: var(--gold); box-shadow: 0 12px 34px rgba(0,0,0,.24); text-decoration: none; font-weight: 900; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
