/* Soma Workshops — somaworkshops.com */
:root {
  --bg: #FAFAF7;
  --ink: #131311;
  --muted: #55554F;
  --faint: #6B6B66;
  --hair: #E9E8E2;
  --panel: #F4F3EE;
  --accent: #1F8A5B;
  --accent-soft: #F0F7F3;
  --mono: 'Spline Sans Mono', monospace;
  --sans: 'Schibsted Grotesk', sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
::selection { background: var(--ink); color: var(--bg); }
a { color: inherit; }
.wrap { max-width: 1160px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.eyebrow { margin: 0 0 20px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); }
.h2 { margin: 0; font-size: clamp(34px, 3.8vw, 48px); line-height: 1.08; letter-spacing: -0.03em; font-weight: 700; text-wrap: balance; }

/* buttons */
.btn { display: inline-block; text-decoration: none; text-align: center; font-family: var(--sans); font-weight: 600; border-radius: 999px; cursor: pointer; border: none; letter-spacing: -0.01em; }
.btn-primary { background: var(--accent); color: var(--bg); font-size: 16px; padding: 15px 30px; }
.btn-primary:hover { opacity: 0.88; }
.btn-ghost { background: none; color: var(--ink); font-size: 16px; padding: 15px 30px; border: 1px solid #D8D7D0; }
.btn-ghost:hover { background: #F1F0EA; }
.btn-card { font-size: 15px; padding: 12px 20px; width: 100%; }
.btn-outline { background: none; border: 1.5px solid var(--ink); color: var(--ink); }
.btn-outline:hover { background: #F1F0EA; }
.btn-thin { font-size: 14px; padding: 7px 18px; }

/* nav */
nav { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); background: rgba(250,250,247,0.82); border-bottom: 1px solid var(--hair); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; padding-bottom: 10px; min-height: 44px; }
.logo { display: flex; align-items: baseline; gap: 10px; text-decoration: none; }
.logo-mark { display: flex; align-items: flex-end; }
.logo-mark b { font-size: 20px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.logo-mark i { width: 9px; height: 3.5px; border-radius: 999px; background: var(--accent); margin: 0 3px 2.5px; }
.logo-tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); }
.nav-links { display: flex; align-items: center; gap: clamp(14px, 2.6vw, 32px); }
.nav-links a { text-decoration: none; font-size: 14.5px; font-weight: 500; }
.nav-links a:hover { color: var(--faint); }
.nav-links .btn { font-size: 14px; padding: 10px 20px; }
.burger { display: none; border: none; background: none; cursor: pointer; padding: 12px 4px; flex-direction: column; gap: 5px; }
.burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }
.mobile-menu { display: none; border-top: 1px solid var(--hair); background: var(--bg); padding: 6px 24px 20px; flex-direction: column; }
.mobile-menu a { text-decoration: none; font-size: 17px; font-weight: 600; padding: 14px 0; border-bottom: 1px solid #EFEEE8; }
.mobile-menu .btn { border-bottom: none; margin-top: 16px; font-size: 16px; padding: 14px 20px; }
.mobile-menu.open { display: flex; }
@media (max-width: 800px) {
  .nav-links { display: none; }
  .burger { display: flex; }
}

/* hero */
.hero { padding-top: clamp(64px, 10vw, 108px); padding-bottom: clamp(56px, 9vw, 96px); display: flex; flex-direction: column; align-items: center; text-align: center; gap: 28px; }
.hero .eyebrow { margin: 0; animation: rise 0.7s ease both; }
.hero h1 { margin: 0; font-size: clamp(40px, 8.4vw, 92px); line-height: 1.02; letter-spacing: -0.035em; font-weight: 700; max-width: 13ch; text-wrap: balance; animation: rise 0.7s 0.08s ease both; }
.hero .sub { margin: 0; font-size: 20px; line-height: 1.55; color: var(--muted); max-width: 56ch; text-wrap: pretty; animation: rise 0.7s 0.16s ease both; }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; animation: rise 0.7s 0.24s ease both; }
.hero-img { width: 100%; max-width: 1096px; height: clamp(240px, 46vw, 520px); object-fit: cover; border-radius: 24px; margin-top: 40px; animation: rise 0.8s 0.32s ease both; }
@keyframes rise { from { transform: translateY(18px); } to { transform: none; } }

/* stats */
.stats { background: var(--ink); color: var(--bg); }
.stats .inner { padding-top: clamp(64px, 9vw, 104px); padding-bottom: clamp(64px, 9vw, 104px); }
.stats .eyebrow { color: #8A8A82; }
.stats h2 { margin: 0 0 64px; max-width: 24ch; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(32px, 4vw, 56px); }
.stat { display: flex; flex-direction: column; gap: 12px; border-top: 1px solid #33332F; padding-top: 24px; }
.stat b { font-size: 72px; font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.stat p { margin: 0; font-size: 16px; line-height: 1.5; color: #B9B8B0; }
.stat span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); }

/* sections */
.section { padding-top: clamp(64px, 10vw, 120px); padding-bottom: clamp(64px, 10vw, 120px); }
.two-col { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(40px, 6vw, 72px); align-items: center; }
.stack { display: flex; flex-direction: column; gap: 22px; }
.stack p { margin: 0; font-size: 17px; line-height: 1.6; color: var(--muted); text-wrap: pretty; }
.rows { margin: 8px 0 0; padding: 0; list-style: none; }
.rows li { display: flex; gap: 16px; align-items: baseline; padding: 14px 0; border-top: 1px solid var(--hair); }
.rows li:last-child { border-bottom: 1px solid var(--hair); }
.rows .n { font-family: var(--mono); font-size: 12px; color: var(--accent); }
.rows strong { font-size: 16px; }
.rows span { color: var(--faint); font-size: 15px; }
.links-row { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 6px; }
.links-row a { text-decoration: none; font-size: 16px; font-weight: 600; }
.links-row a.accent { color: var(--accent); }
.links-row a:hover { opacity: 0.75; }

/* guide doc mock */
.doc-stage { width: 100%; min-height: 620px; padding: 40px 12px; background: var(--panel); border: 1px solid var(--hair); border-radius: 20px; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.doc-back { position: absolute; width: min(360px, 92%); height: 470px; background: #FFF; border: 1px solid var(--hair); border-radius: 10px; transform: rotate(5deg) translate(26px, 10px); box-shadow: 0 12px 40px rgba(19,19,17,0.06); }
.doc { position: relative; width: min(360px, 92%); min-height: 470px; background: #FFF; border: 1px solid var(--hair); border-radius: 10px; box-shadow: 0 24px 60px rgba(19,19,17,0.10); padding: 30px 26px; display: flex; flex-direction: column; gap: 20px; transform: rotate(-1.5deg); }
.doc .m { font-family: var(--mono); text-transform: uppercase; color: var(--faint); }
.doc-row { display: flex; justify-content: space-between; align-items: baseline; }
.doc-title { font-size: 26px; font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; }
.handoff { border: 1px solid var(--hair); border-radius: 8px; padding: 18px 16px 14px; display: flex; flex-direction: column; gap: 12px; }
.handoff-line { display: flex; align-items: center; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--ink); flex-shrink: 0; }
.dot.a { background: var(--accent); }
.dot.o { width: 14px; height: 14px; background: #FFF; border: 2.5px solid var(--ink); }
.seg { flex: 1; height: 2px; background: #D8D7D0; }
.seg.a { flex: 1.4; height: 3px; background: var(--accent); border-radius: 2px; }
.doc-check { display: flex; align-items: baseline; gap: 12px; padding: 9px 0; border-top: 1px solid #EFEEE8; }
.doc-check:last-child { border-bottom: 1px solid #EFEEE8; }
.doc-check b { font-size: 13px; font-weight: 600; flex: 1; }
.chip-note { position: absolute; background: var(--bg); border: 1px solid var(--hair); border-radius: 999px; padding: 9px 16px; font-size: 12px; font-weight: 600; box-shadow: 0 8px 24px rgba(19,19,17,0.08); }
.chip-note.dark { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* method */
.alt { border-top: 1px solid var(--hair); background: var(--panel); }
.cards-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(20px, 2.5vw, 32px); }
.mcard { background: var(--bg); border: 1px solid var(--hair); border-radius: 18px; padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.mcard time { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--accent); }
.mcard h3 { margin: 0; font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.mcard p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--muted); }

/* who */
.who-list { margin: 0; padding: 0; list-style: none; }
.who-list li { padding: 20px 0; border-top: 1px solid var(--hair); display: flex; justify-content: space-between; align-items: baseline; gap: 24px; }
.who-list li:last-child { border-bottom: 1px solid var(--hair); }
.who-list strong { font-size: 18px; letter-spacing: -0.01em; }
.who-list span { font-size: 14.5px; color: var(--faint); text-align: right; }
.ld-strip { grid-column: 1 / -1; background: var(--panel); border: 1px solid var(--hair); border-radius: 16px; padding: 22px 26px; display: flex; gap: 18px; align-items: baseline; flex-wrap: wrap; }
.ld-strip .m { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.ld-strip span:last-child { flex: 1; min-width: 280px; font-size: 15px; line-height: 1.6; color: var(--muted); }

/* pricing */
.budget-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin: 20px 0 24px; }
.budget-row .lbl { font-size: 14px; color: var(--faint); }
.budget-chip { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid #D8D7D0; padding: 4px 11px; border-radius: 999px; }
.pricing-note { margin: 0 0 56px; font-size: 15px; line-height: 1.6; color: var(--muted); max-width: 64ch; }
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 24px; align-items: stretch; }
.pcard { border: 1px solid var(--hair); border-radius: 22px; padding: 36px; display: flex; flex-direction: column; gap: 18px; background: var(--bg); }
.pcard.dark { background: var(--ink); color: var(--bg); border: 1.5px solid var(--ink); }
.pcard .tier { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); }
.pcard.dark .tier { color: #8A8A82; }
.price { display: flex; align-items: baseline; gap: 8px; }
.price b { font-size: 44px; font-weight: 700; letter-spacing: -0.03em; }
.price span { font-size: 14px; color: var(--faint); }
.pcard p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--muted); }
.pcard.dark p { color: #B9B8B0; }
.pcard ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; color: var(--muted); }
.pcard.dark ul { color: #B9B8B0; }
.pcard ul li { display: flex; gap: 10px; }
.pcard ul li::before { content: "—"; color: var(--accent); }
.pcard.dark ul li::before { color: var(--bg); }
.pcol { display: flex; flex-direction: column; gap: 24px; }
.pcard.compact { padding: 28px; gap: 14px; flex: 1; }
.pcard.compact .price b { font-size: 30px; }
.pcard.dashed { border: 1.5px dashed #C9C8C0; }
.soon { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; background: var(--accent); color: var(--bg); padding: 3px 9px; border-radius: 999px; }
.tier-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.field { border: 1px solid #D8D7D0; border-radius: 999px; padding: 12px 18px; font-size: 14.5px; font-family: var(--sans); background: #FFF; color: var(--ink); outline: none; width: 100%; }
.field:focus { border-color: var(--ink); }
textarea.field { border-radius: 14px; min-height: 96px; resize: vertical; }
.kit-form { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.kit-done { margin-top: auto; background: #F1F0EA; border-radius: 12px; padding: 14px 16px; font-size: 14px; font-weight: 600; }

/* faq */
.faq { max-width: 760px; margin: 0 auto; }
.faq h2 { margin: 0 0 48px; font-size: clamp(30px, 3.4vw, 40px); letter-spacing: -0.03em; font-weight: 700; }
.faq details { border-top: 1px solid var(--hair); padding: 22px 0; }
.faq details:last-child { border-bottom: 1px solid var(--hair); }
.faq summary { cursor: pointer; font-size: 17px; font-weight: 600; letter-spacing: -0.01em; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq p { margin: 14px 0 0; font-size: 15.5px; line-height: 1.6; color: var(--muted); max-width: 62ch; }

/* final cta */
.book { background: var(--ink); color: var(--bg); }
.book .inner { padding-top: clamp(80px, 12vw, 140px); padding-bottom: clamp(80px, 12vw, 140px); display: flex; flex-direction: column; align-items: center; text-align: center; gap: 28px; }
.book h2 { margin: 0; font-size: clamp(44px, 5.6vw, 72px); line-height: 1.04; letter-spacing: -0.035em; font-weight: 700; max-width: 16ch; text-wrap: balance; }
.book p { margin: 0; font-size: 18px; line-height: 1.55; color: #B9B8B0; max-width: 46ch; }
.book .fine { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); }

/* footer */
footer { background: var(--ink); color: var(--faint); border-top: 1px solid #33332F; }
.foot-inner { padding-top: 28px; padding-bottom: 28px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.foot-inner nav-links { display: flex; }
.foot-links { display: flex; gap: 24px; }
.foot-links a { text-decoration: none; color: #8A8A82; font-size: 13.5px; }
.foot-links a:hover { color: var(--bg); }
.foot-brand { display: flex; align-items: center; gap: 10px; font-size: 13.5px; }
.foot-brand .logo-mark b { color: var(--bg); font-size: 15px; }
.foot-brand .logo-mark i { width: 7px; height: 3px; }

/* modals */
.overlay { position: fixed; inset: 0; z-index: 100; background: rgba(19,19,17,0.45); display: none; align-items: center; justify-content: center; padding: 20px; }
.overlay.open { display: flex; }
.modal { width: 100%; max-width: 480px; background: var(--bg); border-radius: 20px; padding: 30px; display: flex; flex-direction: column; gap: 16px; box-shadow: 0 40px 100px rgba(19,19,17,0.35); max-height: 90vh; overflow-y: auto; }
.modal-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.modal-head b { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.modal-x { border: none; background: none; cursor: pointer; font-size: 18px; color: var(--faint); padding: 4px; }
.modal p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--muted); }
.slot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.slot { border: 1.5px solid #D8D7D0; background: #FFF; color: var(--ink); border-radius: 999px; padding: 10px 8px; font-size: 13px; font-weight: 600; cursor: pointer; font-family: var(--sans); }
.slot.sel { border-color: var(--accent); background: var(--accent); color: var(--bg); }
.hint { font-size: 12.5px; color: #C43D2B; text-align: center; min-height: 1em; }
.fine-print { font-size: 12.5px; color: #8A8A82; text-align: center; line-height: 1.5; }
.confirm-box { background: var(--accent-soft); border: 1.5px solid var(--accent); border-radius: 14px; padding: 18px 20px; display: flex; flex-direction: column; gap: 6px; }
.confirm-box b { font-size: 16px; }
.confirm-box span { font-size: 14px; color: var(--muted); line-height: 1.5; }
.hidden { display: none !important; }
