*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--paper); color: var(--ink); font-family: var(--font-body); -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, p, blockquote { margin-top: 0; }
::selection { background: var(--coral); color: var(--paper); }

.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; z-index: 1000; top: 12px; left: 12px; padding: 10px 14px; background: var(--ink); color: var(--paper); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.section-shell, .site-header { width: min(1180px, calc(100% - 64px)); margin-inline: auto; }

.site-header { position: relative; z-index: 20; min-height: 116px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 44px; border-bottom: 1px solid var(--line); }
.brand { position: relative; width: 170px; height: 96px; display: block; flex: none; overflow: hidden; }
.brand img { position: absolute; top: 50%; left: 50%; width: 500px; max-width: none; height: auto; transform: translate(-50%, -50%); }
.main-nav { display: flex; justify-content: center; align-items: center; gap: clamp(18px, 2.4vw, 36px); }
.nav-link { position: relative; padding: 11px 0; font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 0.02em; white-space: nowrap; transition: color 180ms ease; }
.nav-link::after { content: ""; position: absolute; right: 0; bottom: 3px; left: 0; height: 2px; background: var(--coral); transform: scaleX(0); transition: transform 180ms ease; }
.nav-link:hover, .nav-link:focus-visible, .nav-link.active { color: var(--coral); }
.nav-link.active::after { transform: scaleX(1); }
.header-cta { border: 1px solid var(--ink); border-radius: 999px; padding: 11px 17px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; transition: 180ms ease; }
.header-cta:hover, .header-cta:focus-visible { background: var(--ink); color: var(--paper); }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 11px 9px; background: transparent; border: 1px solid var(--line); border-radius: 50%; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; height: 1px; margin: 5px 0; background: var(--ink); transition: transform 180ms ease; }
.menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }
.social-float { position: fixed; z-index: 80; right: 18px; bottom: 18px; display: flex; flex-direction: column; gap: 10px; transition: opacity 180ms ease, visibility 180ms ease; }
.social-float a { width: 52px; height: 52px; display: grid; place-items: center; background: var(--coral); border: 1px solid var(--coral); border-radius: 50%; color: var(--paper); box-shadow: 0 12px 28px rgba(var(--ink-rgb), 0.13); backdrop-filter: blur(12px); transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease; }
.social-float a:hover, .social-float a:focus-visible { background: var(--ink); color: var(--paper); border-color: var(--ink); box-shadow: 0 16px 32px rgba(var(--coral-rgb), 0.2); transform: translateY(-2px); }
.social-float svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
body.menu-open .social-float { opacity: 0; visibility: hidden; }

.eyebrow { margin-bottom: 22px; color: var(--coral); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
h1, h2, h3, blockquote { font-family: var(--font-display); font-weight: 400; }
.hero { min-height: 660px; display: grid; grid-template-columns: 1.08fr 0.92fr; align-items: center; gap: 60px; padding-block: 70px 90px; }
.hero h1 { max-width: 690px; margin-bottom: 28px; font-size: clamp(58px, 7.2vw, 102px); line-height: 0.92; letter-spacing: -0.055em; }
.hero-lead { max-width: 590px; color: var(--muted); font-size: 16px; line-height: 1.75; }
.actions { display: flex; align-items: stretch; gap: 14px; margin-top: 36px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 52px; padding: 0 24px; border: 0; border-radius: 999px; cursor: pointer; font-size: 12px; font-weight: 700; letter-spacing: 0.03em; transition: transform 180ms ease, background 180ms ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--coral); color: var(--paper); }
.button-primary:hover, .button-primary:focus-visible { background: var(--coral); }
.button-niche-secondary { background: var(--wine); color: var(--paper); }
.button-niche-secondary:hover, .button-niche-secondary:focus-visible { background: var(--wine); }
.hero-niche-option { flex: 1 1 0; width: 100%; min-width: 0; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.hero-niche-option p { min-height: 52px; max-width: 250px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.hero-niche-button { width: 100%; height: 60px; min-height: 60px; padding-inline: 20px; font-size: 10px; line-height: 1.3; text-align: center; text-transform: uppercase; }
.button-light { background: var(--paper); color: var(--wine); }
.text-link { padding-block: 10px; border-bottom: 1px solid var(--ink); font-size: 12px; font-weight: 700; }

.hero-art { position: relative; min-height: 480px; display: grid; place-items: center; }
.hero-art::before { content: ""; position: absolute; width: 390px; aspect-ratio: 1; border-radius: 48% 52% 62% 38% / 43% 40% 60% 57%; background: var(--rose); transform: rotate(-10deg); }
.hero-graphic-lmv { position: absolute; inset: 0; display: grid; place-items: center; }
.hero-client-image { display: none; }
.orbit { position: absolute; border: 1px solid rgba(var(--ink-rgb), 0.28); border-radius: 50%; }
.orbit-one { width: 430px; height: 310px; transform: rotate(32deg); }
.orbit-two { width: 360px; height: 455px; transform: rotate(-35deg); }
.feeling-card { position: relative; z-index: 2; width: 265px; min-height: 315px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; background: var(--wine); color: var(--paper); box-shadow: 18px 24px 0 rgba(var(--coral-rgb), 0.9); transform: rotate(3deg); }
.card-index { font-size: 9px; letter-spacing: 0.17em; opacity: 0.7; }
.feeling-card p { font-family: var(--font-display); font-size: 35px; line-height: 1.02; }
.scribble { color: var(--coral); font-family: var(--font-display); font-size: 74px; line-height: 0.4; }
.floating-note { position: absolute; z-index: 3; padding: 8px 13px; background: var(--paper); border: 1px solid var(--ink); border-radius: 999px; font-size: 10px; font-weight: 600; }
.note-one { top: 64px; left: 2px; transform: rotate(-8deg); }
.note-two { right: 0; bottom: 54px; transform: rotate(7deg); }

.home-closing { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(42px, 7vw, 100px); padding-block: 82px 92px; border-top: 1px solid var(--line); }
.home-closing h2 { max-width: 760px; margin: 0 0 34px; font-size: clamp(38px, 5vw, 64px); line-height: 1.02; letter-spacing: -0.035em; }
.home-closing-copy p { max-width: 720px; margin: 0 0 18px; color: var(--muted); font-size: 15px; line-height: 1.75; }
.home-closing-copy p:last-child { margin-bottom: 0; color: var(--ink); font-weight: 700; }
.home-closing-quote { margin: 0; padding: 36px; align-self: start; background: var(--wine); color: var(--paper); border-radius: 20px; }
.home-closing-quote blockquote { margin: 0; }
.home-closing-quote blockquote p { margin: 0; font-family: var(--font-display); font-size: clamp(24px, 2.5vw, 34px); line-height: 1.2; }
.home-closing-quote figcaption { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(var(--paper-rgb), 0.35); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

.problem-section { padding-block: 100px 110px; border-top: 1px solid var(--line); }
.problem-heading { margin-bottom: 52px; text-align: left; }
.problem-heading h2 { margin: 0; color: var(--ink); font-family: var(--font-display); font-size: clamp(62px, 8vw, 108px); font-weight: 400; line-height: 0.9; letter-spacing: -0.055em; }
.problem-heading p { max-width: 850px; margin: 24px 0 0; color: var(--problem-dark); font-family: var(--font-display); font-size: clamp(29px, 3.8vw, 48px); line-height: 1.08; letter-spacing: -0.025em; }
.problem-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.problem-card { min-height: 235px; padding: clamp(26px, 3vw, 38px); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--ink); border-radius: 22px; text-align: center; }
.problem-card-light { background: var(--problem-light); }
.problem-card-dark { background: var(--problem-lower); color: var(--paper); }
.problem-card h3 { max-width: 520px; margin: 0 0 14px; font-family: var(--font-display); font-size: clamp(27px, 2.6vw, 36px); font-weight: 400; line-height: 1.06; letter-spacing: -0.025em; }
.problem-card p { max-width: 510px; margin: 0; font-size: 13px; font-weight: 500; line-height: 1.65; }
.problem-conclusion { margin-top: 64px; padding-top: 54px; border-top: 1px solid var(--line); text-align: center; }
.problem-conclusion p { margin: 0; font-family: var(--font-display); font-size: clamp(42px, 5.5vw, 72px); font-weight: 400; line-height: 1.04; letter-spacing: -0.035em; }
.problem-conclusion strong { color: var(--coral); font-weight: 400; }

.burnout-stats { padding-block: 104px 150px; border-top: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 80px clamp(34px, 8vw, 110px); align-items: start; }
.stat-bubble { position: relative; isolation: isolate; min-height: 255px; padding: 40px 34px 34px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 999px; text-align: center; }
.stat-bubble::after { content: ""; position: absolute; z-index: -1; bottom: -60px; left: 20%; width: 72px; height: 72px; background: inherit; clip-path: polygon(0 0, 100% 0, 0 100%); }
.stat-bubble-gray { width: min(100%, 440px); justify-self: start; background: var(--bubble-gray); color: var(--ink); }
.stat-bubble-coral { width: min(100%, 440px); justify-self: end; background: var(--bubble-coral); color: var(--ink); }
.stat-value { margin: 0 0 2px; font-family: var(--font-display); font-size: clamp(70px, 8vw, 104px); line-height: 0.78; letter-spacing: -0.06em; }
.stat-value-light { color: var(--paper); }
.stat-copy { margin: 12px 0 4px; font-size: clamp(17px, 2vw, 24px); line-height: 1.25; }
.stat-bubble cite { font-size: 9px; font-style: normal; }
.stat-bubble-wide { grid-column: 1 / -1; min-height: 255px; margin-top: 42px; padding: 54px clamp(50px, 8vw, 100px) 38px; align-items: stretch; background: var(--bubble-dark); color: var(--paper); border-radius: 130px; }
.stat-bubble-wide::after { left: 7%; }
.stat-wide-copy { margin: 0; font-size: clamp(22px, 2.8vw, 34px); line-height: 1.45; text-align: center; }
.stat-wide-copy strong { display: inline-block; color: var(--bubble-coral); font-family: var(--font-display); font-size: 1.9em; font-weight: 400; line-height: 0.6; letter-spacing: -0.04em; vertical-align: -0.06em; }
.stat-bubble-wide cite { margin-top: 8px; padding-right: 3%; align-self: flex-end; color: var(--paper); font-size: 17px; }

.karin-section { padding-block: 100px 120px; border-top: 1px solid var(--line); }
.karin-heading { margin-bottom: 44px; }
.karin-heading h2 { margin: 0; color: var(--ink); font-family: var(--font-display); font-size: clamp(58px, 7vw, 90px); font-weight: 400; line-height: 0.95; letter-spacing: -0.045em; }
.karin-heading p { margin: 18px 0 0; color: var(--coral); font-size: clamp(18px, 2.1vw, 26px); line-height: 1.35; }
.karin-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; grid-template-rows: repeat(2, minmax(190px, auto)); gap: 20px; }
.karin-card { border-radius: 32px; }
.karin-info { grid-row: 1 / 3; padding: clamp(34px, 4.6vw, 56px); display: flex; flex-direction: column; justify-content: center; gap: 38px; background: var(--bubble-dark); color: var(--paper); }
.karin-info-block h3 { margin: 0 0 18px; font-family: var(--font-display); font-size: clamp(34px, 4vw, 49px); font-weight: 400; line-height: 1; }
.karin-info-block p { margin: 0; font-size: clamp(15px, 1.55vw, 20px); line-height: 1.45; }
.karin-stat { padding: 30px clamp(30px, 5vw, 62px); display: flex; flex-direction: column; justify-content: center; }
.karin-stat-light { background: var(--karin-light); color: var(--ink); }
.karin-stat-coral { background: var(--karin-coral); color: var(--paper); }
.karin-number { margin: 0 0 8px; font-family: var(--font-display); font-size: clamp(58px, 7vw, 86px); font-weight: 400; line-height: 0.88; letter-spacing: -0.045em; }
.karin-number-light { color: var(--paper); }
.karin-stat > p:last-child { margin: 0; font-size: clamp(15px, 1.7vw, 21px); line-height: 1.35; text-align: center; }
.karin-stat > p:last-child span { white-space: nowrap; }
.karin-conclusion { grid-column: 1 / -1; padding: 14px 28px; border: 2px solid var(--karin-green); border-radius: 999px; background: var(--karin-green-bg); color: var(--bubble-dark); text-align: center; }
.karin-conclusion p { margin: 0; font-size: clamp(14px, 1.65vw, 21px); line-height: 1.4; }

.learning-section { padding-block: 100px 116px; border-top: 1px solid var(--line); }
.learning-heading h2 { margin: 0; color: var(--ink); font-family: var(--font-display); font-size: clamp(54px, 7vw, 88px); font-weight: 400; line-height: 0.96; letter-spacing: -0.045em; }
.learning-heading p { margin: 18px 0 0; color: var(--coral); font-size: clamp(18px, 2.1vw, 26px); line-height: 1.35; }
.learning-path { position: relative; min-height: 530px; margin-top: 60px; isolation: isolate; }
.learning-pulse-line { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; filter: drop-shadow(0 7px 18px rgba(var(--coral-rgb), 0.14)); shape-rendering: geometricPrecision; }
.learning-route-mobile { display: none; }
.learning-route-base, .learning-route-active { fill: none; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
.learning-route-base { stroke: var(--rose); stroke-width: 7; opacity: 0.78; }
.learning-route-active { stroke: var(--coral); stroke-width: 3.5; stroke-dasharray: 1; stroke-dashoffset: 1; filter: drop-shadow(0 0 5px rgba(var(--coral-rgb), 0.28)); animation: learning-route-draw 3200ms ease-in-out infinite; }
.learning-step { --step-border: var(--rose); --step-glow: rgba(253, 231, 223, 0.72); --step-inset: rgba(253, 231, 223, 0.22); position: absolute; z-index: 2; width: clamp(150px, 17vw, 200px); min-height: 0; aspect-ratio: 1; padding: 24px; display: flex; align-items: center; justify-content: center; background: radial-gradient(circle at 34% 27%, #fff 0 42%, rgba(var(--paper-rgb), 0.96) 100%); border: 4px solid var(--step-border); border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(var(--paper-rgb), 0.96), inset 0 -18px 30px var(--step-inset), 0 18px 40px rgba(var(--ink-rgb), 0.13); color: var(--ink); text-align: center; animation: learning-circle-pulse 2600ms ease-in-out infinite; will-change: transform, box-shadow; }
.learning-step::before { content: ""; position: absolute; inset: 8px; border: 1px solid var(--step-border); border-radius: 50%; opacity: 0.28; pointer-events: none; }
.learning-step::after { content: ""; position: absolute; inset: -11px; border: 3px solid var(--step-border); border-radius: 50%; pointer-events: none; animation: learning-circle-ring 2600ms ease-out infinite; }
.learning-step-label { position: relative; z-index: 1; max-width: 9ch; font-family: var(--font-body); font-size: clamp(18px, 1.85vw, 24px); font-weight: 600; line-height: 1.12; letter-spacing: -0.035em; }
.learning-step-label > span { display: block; margin: 5px 0 0; font-size: 0.68em; font-weight: 500; line-height: 1.2; letter-spacing: 0; opacity: 0.66; }
.learning-step-one { left: 0; bottom: 0; }
.learning-step-two { --step-border: var(--coral); --step-glow: rgba(var(--coral-rgb), 0.28); --step-inset: rgba(var(--coral-rgb), 0.08); left: 27%; bottom: 82px; animation-delay: -650ms; }
.learning-step-three { left: 54%; bottom: 170px; animation-delay: -1300ms; }
.learning-step-four { --step-border: var(--coral); --step-glow: rgba(var(--coral-rgb), 0.28); --step-inset: rgba(var(--coral-rgb), 0.08); right: 0; bottom: 260px; animation-delay: -1950ms; }
.learning-step-two::after { animation-delay: -650ms; }
.learning-step-three::after { animation-delay: -1300ms; }
.learning-step-four::after { animation-delay: -1950ms; }

.js .home-page .site-header { animation: header-enter 650ms cubic-bezier(0.22, 1, 0.36, 1) both; }
.js .home-page .reveal { opacity: 0; transform: translateY(34px); transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1); transition-delay: var(--reveal-delay, 0ms); }
.js .home-page .reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes header-enter { from { opacity: 0; transform: translateY(-18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes learning-route-draw { 0% { stroke-dashoffset: 1; opacity: 0.2; } 62%, 82% { stroke-dashoffset: 0; opacity: 1; } 100% { stroke-dashoffset: -1; opacity: 0; } }
@keyframes learning-circle-pulse { 0%, 100% { transform: scale(1); box-shadow: inset 0 0 0 1px rgba(var(--paper-rgb), 0.96), inset 0 -18px 30px var(--step-inset), 0 0 0 0 var(--step-glow), 0 18px 40px rgba(var(--ink-rgb), 0.13); } 50% { transform: scale(1.045); box-shadow: inset 0 0 0 1px rgba(var(--paper-rgb), 0.96), inset 0 -18px 30px var(--step-inset), 0 0 0 10px var(--step-glow), 0 26px 52px rgba(var(--ink-rgb), 0.18); } }
@keyframes learning-circle-ring { 0% { opacity: 0; transform: scale(0.94); } 28% { opacity: 0.82; } 100% { opacity: 0; transform: scale(1.16); } }

.profile-section { position: relative; display: grid; grid-template-columns: minmax(280px, 0.78fr) 1.22fr; gap: clamp(54px, 8vw, 112px); align-items: center; padding-block: 100px 120px; border-top: 1px solid var(--line); }
.profile-section::after { content: ""; position: absolute; z-index: -1; right: -120px; top: 50px; width: 320px; aspect-ratio: 1; border-radius: 52% 48% 42% 58% / 60% 38% 62% 40%; background: var(--rose); opacity: 0.55; transform: rotate(16deg); }
.profile-portrait { position: relative; margin: 0; }
.profile-portrait::before { content: ""; position: absolute; z-index: -1; inset: 22px -22px -22px 22px; background: var(--coral); }
.profile-portrait img { display: block; width: 100%; aspect-ratio: 0.86; object-fit: cover; object-position: center 35%; filter: saturate(0.92) contrast(0.98); }
.profile-portrait figcaption { margin-top: 36px; color: var(--muted); font-size: 9px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.profile-content { max-width: 650px; }
.profile-content h2 { margin-bottom: 20px; font-family: var(--font-display); font-size: clamp(48px, 6vw, 78px); font-weight: 400; line-height: 0.96; letter-spacing: -0.045em; }
.profile-role { max-width: 590px; margin-bottom: 38px; color: var(--wine); font-family: var(--font-display); font-size: clamp(22px, 2.4vw, 31px); line-height: 1.3; }
.profile-credentials { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.profile-credentials li { position: relative; padding: 14px 12px 14px 26px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 12px; font-weight: 500; line-height: 1.45; }
.profile-credentials li::before { content: "·"; position: absolute; left: 4px; top: 9px; color: var(--coral); font-family: var(--font-display); font-size: 24px; line-height: 1; }

.page-hero { padding: 92px 0 76px; display: grid; grid-template-columns: 1fr 0.42fr; column-gap: 70px; }
.page-hero .eyebrow { grid-column: 1 / -1; }
.page-hero h1 { margin-bottom: 0; font-size: clamp(54px, 7vw, 92px); line-height: 0.97; letter-spacing: -0.05em; }
.page-lead { align-self: end; margin-bottom: 4px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-card { min-height: 390px; padding: 36px 34px; display: flex; flex-direction: column; border-right: 1px solid var(--line); }
.service-card:last-child { border-right: 0; }
.service-number, .values article > span { color: var(--coral); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; }
.service-card h2 { margin: 70px 0 20px; font-family: var(--font-display); font-size: 31px; font-weight: 400; }
.service-card p { color: var(--muted); font-size: 13px; line-height: 1.7; }
.tag-list { margin-top: auto; display: flex; flex-wrap: wrap; gap: 7px; }
.tag-list span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 99px; font-size: 9px; font-weight: 600; text-transform: uppercase; }
.closing-callout { padding-block: 80px 96px; display: grid; grid-template-columns: 0.5fr 1.1fr auto; align-items: center; gap: 40px; }
.closing-callout > p { color: var(--coral); font-size: 11px; font-weight: 700; }
.closing-callout h2 { margin: 0; font-family: var(--font-display); font-size: clamp(34px, 4vw, 52px); font-weight: 400; }

.about-hero h1 { max-width: 820px; }
.manifesto { position: relative; padding: 86px clamp(30px, 8vw, 120px); background: var(--wine); color: var(--paper); text-align: center; }
.manifesto-mark { height: 62px; color: var(--coral); font-family: var(--font-display); font-size: 105px; line-height: 0.8; }
.manifesto blockquote { max-width: 900px; margin: 0 auto 30px; font-size: clamp(33px, 4.6vw, 57px); line-height: 1.08; letter-spacing: -0.025em; }
.manifesto > p { margin: 0; font-size: 9px; letter-spacing: 0.2em; opacity: 0.65; }
.values { padding-block: 86px 100px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; }
.values article { padding-top: 20px; border-top: 1px solid var(--line); }
.values h2 { margin: 46px 0 14px; font-family: var(--font-display); font-size: 30px; font-weight: 400; }
.values p { color: var(--muted); font-size: 13px; line-height: 1.65; }

.about-intro { padding-block: 92px 104px; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(60px, 9vw, 130px); align-items: start; }
.about-intro h1 { position: sticky; top: 40px; margin: 0; font-size: clamp(64px, 8vw, 108px); line-height: 0.9; letter-spacing: -0.055em; }
.about-intro-copy { padding-top: 6px; }
.about-intro-copy p { margin: 0 0 24px; color: var(--muted); font-size: 15px; line-height: 1.8; }
.about-intro-copy p:last-child { margin-bottom: 0; }
.about-intro-copy .about-intro-lead { color: var(--wine); font-family: var(--font-display); font-size: clamp(25px, 3vw, 38px); line-height: 1.35; }
.about-method { padding-block: 100px 110px; border-top: 1px solid var(--line); }
.about-method > header { max-width: 880px; margin-bottom: 60px; }
.about-method h2 { margin: 0; font-family: var(--font-display); font-size: clamp(48px, 6vw, 78px); font-weight: 400; line-height: 0.98; letter-spacing: -0.045em; }
.about-method-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.about-method-grid article { min-height: 330px; padding: 38px; background: var(--rose); }
.about-method-grid article:nth-child(2), .about-method-grid article:nth-child(3) { background: var(--paper); }
.about-method-grid span { color: var(--coral); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; }
.about-method-grid h3 { margin: 54px 0 22px; font-family: var(--font-display); font-size: clamp(29px, 3vw, 40px); font-weight: 400; line-height: 1.08; }
.about-method-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }

.value-hero { padding: 92px 0 82px; display: grid; grid-template-columns: 1.25fr 0.55fr; gap: 110px; align-items: end; }
.value-hero h1 { max-width: 850px; margin: 0; font-size: clamp(55px, 7.3vw, 96px); line-height: 0.94; letter-spacing: -0.05em; }
.value-promise { padding: 28px 0 4px; border-top: 1px solid var(--ink); }
.value-promise span { color: var(--coral); font-size: 9px; font-weight: 700; letter-spacing: 0.18em; }
.value-promise p { margin: 22px 0 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.value-flow { display: grid; grid-template-columns: repeat(3, 1fr); padding-block: 72px; border-top: 1px solid var(--line); }
.value-flow article { padding: 0 38px; display: flex; gap: 22px; border-right: 1px solid var(--line); }
.value-flow article:first-child { padding-left: 0; }
.value-flow article:last-child { border-right: 0; }
.flow-dot { flex: none; width: 40px; height: 40px; display: grid; place-items: center; background: var(--rose); border-radius: 50%; color: var(--coral); font-size: 10px; font-weight: 700; }
.value-flow h2 { margin: 5px 0 14px; font-family: var(--font-display); font-size: 27px; font-weight: 400; }
.value-flow p { color: var(--muted); font-size: 12px; line-height: 1.7; }
.value-banner { margin-bottom: 95px; padding: 74px clamp(30px, 7vw, 90px); background: var(--coral); color: var(--paper); text-align: center; }
.value-banner > p { font-size: 9px; font-weight: 700; letter-spacing: 0.2em; }
.value-banner h2 { margin: 27px 0 36px; font-size: clamp(39px, 5.3vw, 67px); line-height: 1.04; }

.contact-layout { padding: 92px 0 100px; display: grid; grid-template-columns: 0.9fr 0.72fr; gap: 110px; }
.contact-copy h1 { max-width: 670px; margin-bottom: 32px; font-size: clamp(55px, 7vw, 94px); line-height: 0.94; letter-spacing: -0.05em; }
.contact-copy > p:not(.eyebrow) { max-width: 550px; color: var(--muted); font-size: 15px; line-height: 1.75; }
.contact-details { margin-top: 58px; }
.contact-details h2, .contact-form h2 { margin: 0 0 30px; font-size: clamp(28px, 3vw, 40px); line-height: 1.05; }
.contact-data-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 42px; font-style: normal; }
.contact-data-list div { min-width: 0; display: flex; flex-direction: column; gap: 9px; }
.contact-data-list span { color: var(--coral); font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.contact-data-list a, .contact-data-list p { margin: 0; overflow-wrap: anywhere; font-size: 12px; font-weight: 600; line-height: 1.5; }
.contact-data-list a:hover, .contact-data-list a:focus-visible { color: var(--coral); text-decoration: underline; text-underline-offset: 4px; }
.contact-social-data { grid-column: 1 / -1; }
.contact-social-data p { display: flex; flex-wrap: wrap; gap: 10px 20px; }
.contact-form { padding: 38px; align-self: start; background: var(--rose); }
.contact-form label { display: block; margin-bottom: 0; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.contact-form label span { color: var(--coral); }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin: 8px 0 24px; padding: 12px 0; background: transparent; border: 0; border-bottom: 1px solid rgba(var(--ink-rgb), 0.35); border-radius: 0; outline: none; color: var(--ink); font-size: 13px; font-weight: 500; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--coral); }
.contact-form textarea { resize: vertical; }
.contact-form .button { width: 100%; margin-top: 5px; }

.business-hero { padding-block: 92px 100px; display: grid; grid-template-columns: 1.2fr 0.65fr; gap: clamp(56px, 8vw, 120px); align-items: end; }
.business-hero h1 { max-width: 850px; margin: 0; font-size: clamp(58px, 7.5vw, 100px); line-height: 0.93; letter-spacing: -0.055em; }
.business-hero-lead { max-width: 760px; margin: 34px 0 0; color: var(--wine); font-family: var(--font-display); font-size: clamp(23px, 2.5vw, 32px); line-height: 1.35; }
.business-hero-media { display: none; margin: 0; }
.business-hero-aside { padding-top: 28px; border-top: 1px solid var(--ink); }
.business-hero-aside p { margin: 0 0 30px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.business-section { padding-block: 100px 110px; border-top: 1px solid var(--line); }
.business-section-heading { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 70px; align-items: end; margin-bottom: 58px; }
.business-section-heading h2, .business-law h2, .business-cta h2 { margin: 0; font-family: var(--font-display); font-size: clamp(43px, 5.4vw, 72px); font-weight: 400; line-height: 1; letter-spacing: -0.04em; }
.business-section-heading > p { margin: 0 0 5px; color: var(--coral); font-size: 12px; font-weight: 700; line-height: 1.5; }
.business-cost-list { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); list-style: none; border-top: 1px solid var(--line); }
.business-cost-list li { position: relative; min-height: 155px; padding: 32px 34px 32px 48px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); font-size: 14px; line-height: 1.7; }
.business-cost-list li:nth-child(even) { border-right: 0; }
.business-cost-list li::before { content: "·"; position: absolute; top: 24px; left: 20px; color: var(--coral); font-family: var(--font-display); font-size: 30px; }
.business-cost-list li:last-child { grid-column: 1 / -1; min-height: 0; border-right: 0; }
.business-section-conclusion { max-width: 970px; margin: 58px auto 0; color: var(--wine); font-family: var(--font-display); font-size: clamp(25px, 3vw, 38px); line-height: 1.35; text-align: center; }
.business-data { padding-inline: clamp(28px, 6vw, 80px); background: var(--wine); color: var(--paper); border-top: 0; }
.business-data .business-section-heading { display: block; }
.business-data-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(var(--paper-rgb), 0.25); }
.business-data-grid article { min-height: 310px; padding: 40px 34px; display: flex; flex-direction: column; background: var(--wine); }
.business-data-value { margin: 0 0 30px; color: var(--coral); font-family: var(--font-display); font-size: clamp(48px, 5vw, 70px); line-height: 0.95; letter-spacing: -0.045em; }
.business-data-grid article > p:not(.business-data-value) { margin: auto 0 24px; font-size: 14px; line-height: 1.6; }
.business-data-grid cite { font-size: 10px; font-style: normal; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.68; }
.business-data-conclusion { max-width: 930px; margin: 62px auto 0; font-family: var(--font-display); font-size: clamp(25px, 3vw, 38px); line-height: 1.35; text-align: center; }
.business-benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.business-benefits-grid article { min-height: 275px; padding: 38px; background: var(--rose); }
.business-benefits-grid article:nth-child(2), .business-benefits-grid article:nth-child(3) { background: var(--paper); }
.business-benefits-grid h3 { margin: 0 0 24px; font-family: var(--font-display); font-size: clamp(27px, 3vw, 38px); font-weight: 400; line-height: 1.08; }
.business-benefits-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.school-law-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.school-law-grid article { min-height: 390px; padding: 42px 38px; background: var(--wine); color: var(--paper); }
.school-law-grid article:last-child { background: var(--coral); }
.school-law-grid h3 { margin: 0; font-family: var(--font-display); font-size: clamp(42px, 4.8vw, 64px); font-weight: 400; line-height: 1; }
.school-law-name { min-height: 62px; margin: 22px 0 34px; padding-bottom: 22px; border-bottom: 1px solid rgba(var(--paper-rgb), 0.4); font-size: 11px; font-weight: 700; line-height: 1.5; letter-spacing: 0.08em; text-transform: uppercase; }
.school-law-grid article > p:last-child { margin: 0; font-size: 13px; line-height: 1.75; }
.business-method-strip { margin: 0 0 52px; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); }
.business-method-strip li { min-height: 120px; padding: 26px 24px; display: flex; flex-direction: column; justify-content: space-between; gap: 28px; border-right: 1px solid var(--line); font-family: var(--font-display); font-size: 22px; line-height: 1.15; }
.business-method-strip li:last-child { border-right: 0; }
.business-method-strip span { color: var(--coral); font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; }
.business-method-copy { display: grid; grid-template-columns: 1fr auto; gap: 70px; align-items: end; }
.business-method-copy p { max-width: 840px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.business-method-copy .text-link { white-space: nowrap; }
.business-law { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(60px, 9vw, 130px); background: var(--rose); padding-inline: clamp(28px, 6vw, 80px); border-top: 0; }
.business-law h2 { font-size: clamp(42px, 5vw, 66px); }
.business-law-copy { padding-top: 8px; }
.business-law-copy p { margin: 0 0 26px; color: var(--muted); font-size: 15px; line-height: 1.8; }
.business-law-copy p:last-child { margin-bottom: 0; }
.business-cta { margin-bottom: 100px; padding: 70px clamp(30px, 6vw, 80px); display: flex; align-items: center; justify-content: space-between; gap: 50px; background: var(--coral); color: var(--paper); }
.business-cta h2 { font-size: clamp(42px, 5vw, 66px); }
.business-cta p { margin: 18px 0 0; font-size: 15px; }
.business-cta .button { flex: none; }

.site-footer { width: 100%; min-height: 270px; margin: 0; padding: 58px max(32px, calc((100% - 1180px) / 2)); display: grid; grid-template-columns: 0.7fr 1.3fr 1fr; grid-template-areas: "brand statement nav" "copyright statement contact"; align-items: start; gap: 30px 64px; background: var(--ink); color: var(--paper); }
.footer-brand { position: relative; grid-area: brand; width: 185px; height: 70px; overflow: hidden; }
.footer-brand img { position: absolute; top: 65%; left: 50%; width: 500px; max-width: none; height: auto; transform: translate(-50%, -50%); }
.footer-statement { grid-area: statement; max-width: 520px; margin: 0; font-family: var(--font-display); font-size: clamp(22px, 2.4vw, 32px); line-height: 1.3; }
.footer-nav { grid-area: nav; display: flex; flex-wrap: wrap; gap: 8px 10px; font-size: 11px; font-weight: 600; line-height: 1.5; }
.footer-nav a, .footer-contact a { color: inherit; }
.footer-nav a:hover, .footer-nav a:focus-visible, .footer-contact a:hover, .footer-contact a:focus-visible { text-decoration: underline; text-underline-offset: 4px; }
.footer-contact { grid-area: contact; display: flex; flex-wrap: wrap; gap: 8px 10px; align-self: end; font-size: 11px; font-style: normal; font-weight: 600; line-height: 1.5; }
.footer-copyright { grid-area: copyright; margin: 0; align-self: end; font-size: 10px; font-weight: 500; opacity: 0.78; }

@media (max-width: 980px) {
  .section-shell, .site-header { width: min(100% - 40px, 760px); }
  .site-header { min-height: 104px; grid-template-columns: auto 1fr auto; gap: 20px; }
  .social-float { right: 12px; bottom: 12px; }
  .menu-toggle { display: block; justify-self: end; }
  .header-cta { display: none; }
  .main-nav { position: fixed; inset: 0; z-index: -1; padding: 120px 28px 40px; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 16px; background: var(--paper); opacity: 0; visibility: hidden; transform: translateY(-14px); transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease; }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-link { width: 100%; padding: 12px 0; font-family: var(--font-body); font-size: clamp(32px, 8vw, 48px); font-weight: 400; }
  .nav-link::after { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-art { min-height: 500px; }
  .home-closing, .page-hero, .value-hero, .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .profile-section { grid-template-columns: minmax(240px, 0.82fr) 1.18fr; gap: 50px; padding-block: 80px 95px; }
  .profile-content h2 { font-size: clamp(44px, 6.6vw, 60px); }
  .page-hero .eyebrow { grid-column: auto; }
  .service-grid, .values, .value-flow { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; gap: 46px; }
  .about-intro h1 { position: static; }
  .service-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .service-card:last-child { border-bottom: 0; }
  .closing-callout { grid-template-columns: 1fr; }
  .values { gap: 36px; }
  .value-flow article { padding: 32px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .value-flow article:last-child { border-bottom: 0; }
  .business-hero, .business-law { grid-template-columns: 1fr; }
  .business-section-heading { grid-template-columns: 1fr; gap: 24px; }
  .business-data-grid { grid-template-columns: 1fr; }
  .business-data-grid article { min-height: 245px; }
  .school-law-grid { grid-template-columns: 1fr; }
  .school-law-grid article { min-height: 0; }
  .business-method-strip { grid-template-columns: repeat(2, 1fr); }
  .business-method-strip li:nth-child(2) { border-right: 0; }
  .business-method-strip li:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .business-method-copy { grid-template-columns: 1fr; gap: 30px; }
  .business-cta { align-items: flex-start; flex-direction: column; }
  .stats-grid { gap: 76px 36px; }
  .stat-bubble { min-height: 230px; padding-inline: 24px; }
  .stat-copy { font-size: 18px; }
  .stat-bubble-wide { min-height: 240px; padding-inline: 48px; }
  .karin-grid { grid-template-columns: 0.9fr 1.1fr; }
  .karin-info { padding: 34px; }
  .karin-stat { padding-inline: 28px; }
  .learning-path { min-height: 460px; }
  .learning-pulse-line { inset: 0; width: 100%; height: 100%; }
  .learning-step { width: clamp(128px, 19vw, 158px); padding: 18px; }
  .learning-step-one { left: 0; bottom: 0; }
  .learning-step-two { left: 26.5%; bottom: 68px; }
  .learning-step-three { left: 53%; bottom: 136px; }
  .learning-step-four { right: 0; bottom: 208px; }
  .site-footer { padding-inline: 32px; grid-template-columns: 1fr 1fr; grid-template-areas: "brand nav" "statement statement" "copyright contact"; gap: 38px 48px; }
}

@media (max-width: 600px) {
  .section-shell, .site-header { width: calc(100% - 28px); }
  .brand { width: 145px; height: 84px; }
  .brand img { width: 430px; }
  .hero { min-height: auto; padding-top: 54px; gap: 28px; }
  .hero h1 { font-size: clamp(54px, 18vw, 76px); }
  .actions { align-items: flex-start; flex-direction: column; }
  .hero-art { min-height: 400px; transform: scale(0.8); margin: -30px; }
  .problem-section { padding-block: 70px 80px; }
  .problem-heading { margin-bottom: 38px; }
  .problem-heading h2 { font-size: clamp(58px, 18vw, 82px); }
  .problem-heading p { margin-top: 18px; font-size: clamp(27px, 8.5vw, 38px); }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card { min-height: 215px; border-radius: 18px; }
  .problem-conclusion { margin-top: 48px; padding-top: 42px; text-align: left; }
  .problem-conclusion p { font-size: clamp(39px, 11vw, 52px); }
  .home-closing { padding-block: 70px 78px; }
  .home-closing-quote { padding: 28px 24px; }
  .burnout-stats { padding-block: 76px 126px; }
  .stats-grid { grid-template-columns: 1fr; gap: 82px; }
  .stat-bubble, .stat-bubble-gray, .stat-bubble-coral { width: 100%; min-height: 235px; justify-self: stretch; }
  .stat-bubble::after { bottom: -48px; width: 58px; height: 58px; }
  .stat-bubble-wide { grid-column: auto; min-height: 0; margin-top: 4px; padding: 48px 30px 38px; border-radius: 46px; }
  .stat-bubble-wide::after { left: 14%; }
  .stat-wide-copy { font-size: 21px; line-height: 1.55; }
  .stat-wide-copy strong { font-size: 1.75em; }
  .stat-bubble-wide cite { margin-top: 16px; font-size: 13px; }
  .karin-section { padding-block: 74px 84px; }
  .karin-heading { margin-bottom: 34px; }
  .karin-heading h2 { font-size: clamp(58px, 17vw, 78px); }
  .karin-heading p { font-size: 19px; }
  .karin-grid { grid-template-columns: 1fr; grid-template-rows: auto; gap: 14px; }
  .karin-info { grid-row: auto; gap: 34px; padding: 36px 28px; }
  .karin-stat { min-height: 210px; padding: 32px 26px; }
  .karin-card { border-radius: 25px; }
  .karin-conclusion { grid-column: auto; padding: 20px 24px; border-radius: 28px; }
  .learning-section { padding-block: 74px 84px; }
  .learning-heading h2 { font-size: clamp(52px, 15.5vw, 72px); }
  .learning-heading p { font-size: 19px; }
  .learning-path { width: min(100%, 420px); min-height: 690px; margin: 48px auto 0; padding: 0; display: block; }
  .learning-pulse-line { inset: 0; width: 100%; height: 100%; filter: drop-shadow(0 7px 18px rgba(var(--coral-rgb), 0.14)); }
  .learning-route-desktop { display: none; }
  .learning-route-mobile { display: inline; }
  .learning-step { position: absolute; width: 148px; min-height: 0; aspect-ratio: 1; margin: 0; padding: 18px; }
  .learning-step-one { top: 0; bottom: auto; left: 0; right: auto; }
  .learning-step-two { top: 170px; bottom: auto; left: auto; right: 0; }
  .learning-step-three { top: 340px; bottom: auto; left: 0; right: auto; }
  .learning-step-four { top: 510px; bottom: auto; left: auto; right: 0; }
  .learning-step-label { font-size: clamp(20px, 6.5vw, 25px); }
  .profile-section { grid-template-columns: 1fr; gap: 66px; padding-block: 70px 86px; }
  .profile-portrait { width: calc(100% - 22px); }
  .profile-portrait img { max-height: 520px; }
  .profile-portrait figcaption { margin-top: 34px; }
  .profile-content h2 { font-size: clamp(46px, 14vw, 64px); }
  .profile-role { font-size: 23px; }
  .page-hero, .value-hero, .contact-layout { padding-top: 62px; }
  .page-hero h1, .value-hero h1, .contact-copy h1 { font-size: clamp(48px, 15vw, 68px); }
  .service-card { min-height: 350px; padding-inline: 20px; }
  .manifesto { padding-inline: 22px; }
  .contact-data-list { grid-template-columns: 1fr; gap: 24px; }
  .contact-social-data { grid-column: auto; }
  .contact-form { padding: 28px 20px; }
  .business-hero { padding-block: 62px 72px; gap: 44px; }
  .business-hero h1 { font-size: clamp(48px, 15vw, 68px); }
  .business-section { padding-block: 72px 80px; }
  .business-section-heading { margin-bottom: 38px; }
  .business-cost-list, .business-benefits-grid { grid-template-columns: 1fr; }
  .business-cost-list li, .business-cost-list li:nth-child(even) { min-height: 0; border-right: 0; }
  .business-cost-list li:last-child { grid-column: auto; }
  .business-section-conclusion, .business-data-conclusion { margin-top: 42px; text-align: left; }
  .business-data, .business-law { padding-inline: 22px; }
  .business-data-grid article { min-height: 225px; padding: 34px 24px; }
  .business-benefits-grid article { min-height: 0; padding: 30px 24px; }
  .school-law-grid article { padding: 34px 24px; }
  .school-law-name { min-height: 0; }
  .about-intro { padding-block: 62px 74px; }
  .about-intro h1 { font-size: clamp(58px, 17vw, 78px); }
  .about-method { padding-block: 72px 80px; }
  .about-method > header { margin-bottom: 38px; }
  .about-method-grid { grid-template-columns: 1fr; }
  .about-method-grid article { min-height: 0; padding: 30px 24px; }
  .about-method-grid h3 { margin-top: 42px; }
  .business-method-strip { grid-template-columns: 1fr; }
  .business-method-strip li, .business-method-strip li:nth-child(2) { min-height: 100px; border-right: 0; border-bottom: 1px solid var(--line); }
  .business-method-strip li:last-child { border-bottom: 0; }
  .business-cta { margin-bottom: 70px; padding: 48px 24px; }
  .site-footer { min-height: 0; padding: 46px 20px; grid-template-columns: 1fr; grid-template-areas: "brand" "statement" "nav" "contact" "copyright"; gap: 30px; }
  .footer-statement { font-size: 24px; }
  .footer-contact { align-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .js .home-page .reveal { opacity: 1; transform: none; }
}
