/* =========================================================================
   Lost In Translation — main stylesheet (v3, user-locked hero scale)
   ========================================================================= */

:root {
	--cream:        #F5F1F0;
	--cream-2:      #EEE7E3;
	--ink:          #000000;
	--ink-soft:     #111111;
	--ink-mute:     #6B6360;
	--rule:         rgba(0, 0, 0, 0.18);
	--rule-soft:    rgba(0, 0, 0, 0.10);
	--rule-dark:    rgba(245, 241, 240, 0.22);
	--serif:        "Cormorant Garamond", "Playfair Display", Georgia, serif;
	--sans:         "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	--wrap:         1180px;
	--wrap-wide:    1440px;
	--pad-x:        clamp(20px, 2vw, 120px);
	--section-y:    190px;
	--cream-alt:    #fcf8f7;
}

/* Alternating cream section backgrounds */
.lit-pattern.lit-section,
.lit-case.lit-section,
#for-you.lit-section { background: var(--cream-alt); }

/* Wrap breathing room — only the hero gets a top offset */
.lit-wrap.lit-wrap--wide { margin-top: 0; }
section#workshop .lit-wrap.lit-wrap--wide { margin-top: 100px; }

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.6;
	color: var(--ink);
	background: #f5f1f0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-feature-settings: "ss01", "ss02";
}
img, svg { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: transparent; border: 0; cursor: pointer; padding: 0; }
ul, ol { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }
dl, dt, dd { margin: 0; }

::selection { background: var(--ink); color: var(--cream); }

.lit-skip {
	position: absolute; left: -9999px; top: 0;
	background: var(--ink); color: var(--cream);
	padding: 10px 14px; z-index: 999;
}
.lit-skip:focus { left: 8px; top: 8px; }

/* ---------- Wraps ---------- */
.lit-wrap {
	width: 100%;
	max-width: var(--wrap);
	margin: 0 auto;
	padding-left: var(--pad-x);
	padding-right: var(--pad-x);
}
.lit-wrap--wide { max-width: var(--wrap-wide); }

.lit-section {
	padding-top: var(--section-y);
	padding-bottom: var(--section-y);
	position: relative;
}
.lit-section--dark {
	background: #000;
	color: var(--cream);
}
.lit-section--dark ::selection { background: var(--cream); color: var(--ink); }

/* ---------- Type primitives (LOCKED to hero scale) ---------- */
.lit-eyebrow {
	font-family: var(--sans);
	font-size: 21px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #000000;
	font-weight: 500;
	margin: 0 0 28px;
}
.lit-section--dark .lit-eyebrow { color: var(--cream); }

/* ---------- Header ---------- */
.lit-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: #f5f1f0;
	border-bottom: 1px solid var(--rule-soft);
}
.lit-header__inner {
	max-width: var(--wrap-wide);
	margin: 0 auto;
	padding: 22px var(--pad-x);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.lit-header__logo {
	font-family: var(--serif);
	font-size: 24px;
	letter-spacing: 0.01em;
	color: #000;
	font-weight: 500;
}
.lit-header__logo:hover { opacity: 0.7; }

/* ---------- Hamburger ---------- */
.lit-burger {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 8px;
}
.lit-burger__label {
	font-size: 14px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #000;
	font-weight: 500;
}
.lit-burger__lines {
	display: inline-flex;
	flex-direction: column;
	gap: 6px;
	width: 28px;
}
.lit-burger__line {
	display: block;
	width: 28px;
	height: 1.5px;
	background: #000;
	transition: transform 0.35s ease, opacity 0.25s ease;
	transform-origin: center;
}
.lit-burger.is-open .lit-burger__line--top { transform: translateY(4px) rotate(45deg); }
.lit-burger.is-open .lit-burger__line--bot { transform: translateY(-3px) rotate(-45deg); }

/* ---------- Menu overlay ---------- */
.lit-menu {
	position: fixed;
	inset: 0;
	background: #000;
	color: var(--cream);
	z-index: 50;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s linear 0.4s;
}
.lit-menu.is-open {
	opacity: 1;
	visibility: visible;
	transform: none;
	transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s;
}
.lit-menu__inner {
	max-width: var(--wrap-wide);
	margin: 0 auto;
	padding: 22px var(--pad-x) 40px;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
}
.lit-menu__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--rule-dark);
}
.lit-menu__brand {
	font-family: var(--serif);
	font-size: 24px;
	font-weight: 500;
}
.lit-menu__close {
	font-size: 36px;
	line-height: 1;
	color: var(--cream);
	padding: 4px 10px;
}
.lit-menu__close:hover { opacity: 0.7; }

.lit-menu__list {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	padding: 40px 0;
}
.lit-menu__item {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 0.5s ease, transform 0.5s ease;
	transition-delay: calc(var(--i, 0) * 60ms + 100ms);
}
.lit-menu.is-open .lit-menu__item { opacity: 1; transform: none; }
.lit-menu__item a {
	display: flex;
	align-items: baseline;
	gap: 24px;
	padding: 22px 0;
	border-bottom: 1px solid var(--rule-dark);
	font-family: var(--serif);
	font-size: clamp(40px, 7vw, 80px);
	line-height: 1;
	letter-spacing: -0.01em;
	font-weight: 500;
	transition: padding-left 0.3s ease, color 0.3s ease;
}
.lit-menu__item a:hover { padding-left: 12px; color: rgba(245, 241, 240, 0.8); }
.lit-menu__num {
	font-family: var(--sans);
	font-size: 14px;
	letter-spacing: 0.18em;
	color: rgba(245, 241, 240, 0.55);
	min-width: 40px;
	font-weight: 500;
}
.lit-menu__foot {
	display: flex;
	justify-content: space-between;
	font-size: 13px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(245, 241, 240, 0.55);
	padding-top: 16px;
	border-top: 1px solid var(--rule-dark);
}

body.lit-lock { overflow: hidden; }

/* ---------- Buttons (LOCKED) ---------- */
.lit-cta-wrap { margin-top: 48px; }
.lit-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 17px 37px;
	background: #000;
	color: #ffffff;
	font-size: 20px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	border: 1px solid #000;
	border-radius: 0;
	font-weight: 500;
	transition: background 0.25s ease, color 0.25s ease;
}
.lit-btn:hover {
	background: transparent;
	color: #000;
}
.lit-section--dark .lit-btn {
	background: var(--cream);
	color: #000;
	border-color: var(--cream);
}
.lit-section--dark .lit-btn:hover {
	background: transparent;
	color: var(--cream);
}

/* Circle arrow button (appintro) */
.lit-circle {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 210px;
	height: 210px;
	border: 1px solid #000;
	border-radius: 50%;
	color: #000;
	transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.lit-circle:hover { background: #000; color: var(--cream); }
.lit-circle__arrow {
	width: 40px;
	height: 40px;
	stroke: currentColor;
	stroke-width: 1.2;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.lit-circle__label {
	font-size: 14px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	margin-top: 8px;
	font-weight: 500;
}

/* =========================================================================
   HERO — LOCKED to user spec
   ========================================================================= */
.lit-hero {
	padding-top: clamp(60px, 8vw, 300px);
	padding-bottom: clamp(60px, 8vw, 120px);
}
.lit-hero__headline {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(56px, 10vw, 140px);
	line-height: 0.96;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: #000;
	margin: 0 0 40px;
}
.lit-hero__body {
	font-family: var(--serif);
	max-width: 630px;
	font-size: clamp(24px, 2.6vw, 40px);
	line-height: 1.3;
	color: #000;
	margin-bottom: 12px;
	font-weight: 500;
}

/* =========================================================================
   DUAL MESSAGE
   ========================================================================= */
.lit-dual { padding-top: clamp(40px, 6vw, 80px); }
.lit-dual__grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: clamp(40px, 8vw, 120px);
	align-items: center;
}
.lit-dual__left {
	display: flex;
	flex-direction: column;
	gap: clamp(50px, 7vw, 100px);
}
.lit-dual__headline {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(48px, 6.5vw, 110px);
	line-height: 1;
	letter-spacing: -0.02em;
	margin: 0;
	color: #000;
}
.lit-dual__sep {
	width: 80px;
	height: 1px;
	background: var(--rule);
	margin: 20px 0 0;
}
.lit-dual__list {
	display: flex;
	flex-direction: column;
	gap: 0;
	padding-top: 20px;
}
.lit-dual__list li {
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 30px;
	padding: 34px 0 50px;
	border-bottom: 2px solid var(--rule-soft);
	font-family: var(--serif);
	font-size: clamp(22px, 2.2vw, 36px);
	line-height: 1.3;
	color: #000;
	font-weight: 500;
}
.lit-dual__list .num {
	font-family: var(--serif);
	font-weight: 500;
	color: #000;
	font-size: clamp(28px, 2.4vw, 38px);
}

/* =========================================================================
   PATTERN STATEMENT
   ========================================================================= */
.lit-pattern__headline {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(40px, 5.5vw, 80px);
	line-height: 1.05;
	letter-spacing: -0.015em;
	margin: 0 0 50px;
	color: #000;
	max-width: 960px;
}
.lit-pattern__body {
	font-family: var(--serif);
	font-weight: 600;
	font-size: clamp(22px, 2vw, 45px);
	line-height: 1.3;
	color: #000;
}

/* =========================================================================
   HOURS (6 numbered)
   ========================================================================= */
.lit-hours__headline {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(48px, 6.5vw, 106px);
	line-height: 1;
	letter-spacing: -0.02em;
	margin: 0 0 90px;
	color: #000;
}
.lit-hours__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: clamp(40px, 6vw, 80px);
	row-gap: 0;
}
.lit-hours__item {
	display: grid;
	grid-template-columns: 110px 1fr;
	gap: 30px;
	align-items: start;
	padding: 34px 0;
	border-bottom: 1px solid var(--rule-soft);
}
.lit-hours__num {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(44px, 4.5vw, 63px);
	line-height: 1;
	color: #000;
}
.lit-hours__text {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(20px, 1.8vw, 28px);
	line-height: 1.35;
	color: #000;
	padding-top: 10px;
}

/* =========================================================================
   BLACK INSIGHT
   ========================================================================= */
.lit-insight__headline {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(40px, 5.5vw, 82px);
	line-height: 1.05;
	letter-spacing: -0.015em;
	margin: 0 0 90px;
}
.lit-insight__list {
	display: flex;
	flex-direction: column;
	gap: 20px;
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(22px, 2vw, 40px);
	line-height: 1.2;
	color: var(--cream);
	max-width: 820px;
}

/* =========================================================================
   3-STEP
   ========================================================================= */
.lit-steps__headline {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(56px, 7vw, 117px);
	line-height: 1;
	letter-spacing: -0.02em;
	margin: 0 0 90px;
	max-width: 600px;
	color: #000;
}
.lit-steps__list {
	border-top: 0;
	max-width: 880px;
}
.lit-steps__item {
	display: grid;
	grid-template-columns: 130px 1fr;
	gap: 30px;
	align-items: center;
	padding: 32px 0;
	border-bottom: 1px solid var(--rule);
}
.lit-steps__num {
	font-family: var(--sans);
	font-size: 27px;
	letter-spacing: 0.18em;
	color: #000;
	font-weight: 500;
}
.lit-steps__title {
	font-family: var(--sans);
	font-size: 27px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #000;
	font-weight: 500;
}
.lit-steps__foot {
	margin-top: 70px;
	font-family: var(--serif);
	font-weight: 600;
	font-size: clamp(22px, 3vw, 46px);
	line-height: 1.5;
	color: #000;
}

/* =========================================================================
   CASE STUDY
   ========================================================================= */
.lit-case__intro {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(24px, 2.7vw, 52px);
	line-height: 1.3;
	color: #000;
	margin-bottom: 100px;
	max-width: 620px;
}
.lit-case__intro p + p { margin-top: 32px; }
.lit-case__headline {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(60px, 8vw, 128px);
	line-height: 1;
	letter-spacing: -0.02em;
	margin: 0 0 100px;
	color: #000;
}
.lit-case__body {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(22px, 3vw, 45px);
	line-height: 1.4;
	color: #000;
	max-width: 810px;
}
.lit-case__body p + p { margin-top: 30px; }

/* Section spacing overrides — kill dead vertical space between adjacent sections */
section#for-you.lit-section { padding-top: 0; }
section.lit-case.lit-section { padding-bottom: 90px; }
section#guide.lit-section { padding-bottom: 0; }
section.lit-inv.lit-section { padding-bottom: 0; }
section#details.lit-section { padding-top: 0; padding-bottom: 0; }
section#faq.lit-section { padding-top: 100px; padding-bottom: 0; }
section#apply.lit-section { padding-top: 0; }

/* =========================================================================
   FOR YOU
   ========================================================================= */
.lit-forme__headline {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(60px, 8vw, 128px);
	line-height: 1;
	letter-spacing: -0.02em;
	margin: 0 0 clamp(120px, 15vw, 140px);
	color: #000;
}
.lit-check__list {
	display: flex;
	flex-direction: column;
	gap: 46px;
	max-width: 1000px;
}
.lit-check__list li {
	display: grid;
	grid-template-columns: 59px 1fr;
	gap: 34px;
	align-items: center;
	font-family: var(--serif);
	font-weight: 600;
	font-size: clamp(24px, 2.2vw, 44px);
	line-height: 1.3;
	color: #000;
}
.lit-section--dark .lit-check__list li { color: var(--cream); }
.lit-icon-circle {
	width: 59px;
	height: 59px;
	border: 2px solid currentColor;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.lit-icon-circle svg {
	width: 26px;
	height: 26px;
	stroke: currentColor;
	stroke-width: 1.5;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* =========================================================================
   BIO
   ========================================================================= */
.lit-bio__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(40px, 8vw, 120px);
	align-items: start;
}
.lit-bio__name {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(56px, 7vw, 110px);
	line-height: 1;
	letter-spacing: -0.02em;
	margin: 0 0 40px;
	color: #000;
}
.lit-bio__lede {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(22px, 2vw, 34px);
	line-height: 1.4;
	color: #000;
	margin-bottom: 40px;
	max-width: 500px;
}
.lit-bio__lede br { display: none; }
.lit-bio__body {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(20px, 1.9vw, 34px);
	line-height: 1.5;
	color: #000;
	max-width: 600px;
}
.lit-bio__body p + p { margin-top: 28px; }
.lit-bio__image img { width: 100%; height: auto; object-fit: cover; }
.lit-bio__placeholder {
	width: 100%;
	aspect-ratio: 4 / 5;
	background: var(--cream-2);
	display: grid;
	place-items: center;
	color: var(--ink-mute);
	font-size: 14px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	border: 1px solid var(--rule);
}

/* =========================================================================
   APPLICATION INTRO
   ========================================================================= */
.lit-appintro__grid {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: clamp(40px, 8vw, 120px);
	align-items: center;
}
.lit-appintro__headline {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(52px, 7vw, 94px);
	line-height: 1;
	letter-spacing: -0.02em;
	margin: 0 0 60px;
	color: #000;
	max-width: 900px;
}
.lit-appintro__body {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(20px, 1.8vw, 34px);
	line-height: 1.5;
	color: #000;
	max-width: 900px;
}
.lit-appintro__body p + p { margin-top: 18px; }

/* =========================================================================
   SESSION DETAILS TABLE
   ========================================================================= */
.lit-session__headline {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(52px, 7vw, 108px);
	line-height: 1;
	letter-spacing: -0.02em;
	margin: 0 0 90px;
	max-width: 1000px;
	color: #000;
}
.lit-session__table {
	border-top: 1px solid var(--rule);
	max-width: 1000px;
}
.lit-session__row {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 20px;
	padding: 26px 0;
	border-bottom: 1px solid var(--rule);
	align-items: center;
}
.lit-session__row dt {
	font-family: var(--sans);
	color: #000;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 500;
}
.lit-session__row dd {
	font-family: var(--serif);
	font-weight: 500;
	color: #000;
	font-size: clamp(20px, 1.7vw, 31px);
}

/* =========================================================================
   INVESTMENT
   ========================================================================= */
.lit-inv__amount {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(100px, 14vw, 220px);
	line-height: 1;
	letter-spacing: -0.02em;
	color: #000;
	margin: 0;
}
.lit-inv__note {
	font-family: var(--sans);
	font-size: 15px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #000;
	font-weight: 500;
	margin: 24px 0 70px;
}
.lit-inv__eyebrow2 { margin-top: 20px; margin-bottom: 30px; }
.lit-inv__intro {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(24px, 2.6vw, 45px);
	line-height: 1.3;
	color: #000;
	margin-bottom: 70px;
	max-width: 720px;
}
.lit-inv__list {
	display: flex;
	flex-direction: column;
	gap: 0;
	max-width: 720px;
	border-top: 1px solid var(--rule);
}
.lit-inv__list li {
	display: grid;
	grid-template-columns: 70px 1fr;
	gap: 30px;
	align-items: center;
	font-size: 20px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #000;
	padding: 26px 0;
	border-bottom: 1px solid var(--rule);
	font-weight: 500;
}
.lit-arrow-circle {
	width: 46px;
	height: 46px;
	border: 1px solid #000;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.lit-arrow-circle svg {
	width: 18px;
	height: 18px;
	stroke: #000;
	stroke-width: 1.5;
	fill: none;
	stroke-linecap: round;
}

/* =========================================================================
   FAQ
   ========================================================================= */
.lit-faq__list {
	border-top: 1px solid var(--rule);
	max-width: 1200px;
}
.lit-faq__item {
	border-bottom: 1px solid var(--rule);
	padding: 32px 0;
	display: grid;
	grid-template-columns: 70px 1fr 28px;
	gap: 26px;
	align-items: start;
}
.lit-faq__num {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(24px, 2.2vw, 32px);
	color: #000;
	line-height: 1;
	padding-top: 6px;
}
.lit-faq__q {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(22px, 2vw, 48px);
	line-height: 1.2;
	color: #000;
	margin-bottom: 12px;
}
.lit-faq__a {
	font-family: var(--sans);
	font-size: 23px;
	line-height: 1.6;
	color: #000;
	max-width: 780px;
}
.lit-faq__icon {
	width: 22px;
	height: 22px;
	position: relative;
	justify-self: end;
	margin-top: 10px;
}
.lit-faq__icon::before,
.lit-faq__icon::after {
	content: "";
	position: absolute;
	background: #000;
	left: 50%; top: 50%;
	transform: translate(-50%, -50%);
}
.lit-faq__icon::before { width: 20px; height: 1px; }
.lit-faq__icon::after  { width: 1px;  height: 20px; }

/* =========================================================================
   FINAL CTA
   ========================================================================= */
.lit-final__headline {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(52px, 7vw, 108px);
	line-height: 1;
	letter-spacing: -0.02em;
	margin: 0 0 50px;
	max-width: 1300px;
	color: #000;
}
.lit-final__body {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(20px, 1.7vw, 36px);
	line-height: 1.5;
	color: #000;
	max-width: 1120px;
}
.lit-final__body p + p { margin-top: 24px; }

/* =========================================================================
   FORM
   ========================================================================= */
.lit-form__headline {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(52px, 7vw, 108px);
	line-height: 1;
	letter-spacing: -0.02em;
	margin: 0 0 70px;
	color: #000;
}
.lit-form__list {
	display: flex;
	flex-direction: column;
	border-top: 1px solid var(--rule);
	max-width: 1200px;
}
.lit-form__item {
	border-bottom: 1px solid var(--rule);
}
.lit-form__head {
	width: 100%;
	display: grid;
	grid-template-columns: 70px 1fr 28px;
	gap: 26px;
	align-items: center;
	text-align: left;
	padding: 30px 0;
	background: transparent;
}
.lit-form__num {
	font-family: var(--sans);
	font-size: 18px;
	letter-spacing: 0.18em;
	color: #000;
	font-weight: 500;
}
.lit-form__q {
	font-family: var(--sans);
	font-size: 25px;
	line-height: 1.55;
	color: #000;
	font-weight: 400;
}
.lit-req { color: var(--ink-mute); }
.lit-form__icon {
	width: 22px;
	height: 22px;
	position: relative;
	justify-self: end;
}
.lit-form__icon::before,
.lit-form__icon::after {
	content: "";
	position: absolute;
	background: #000;
	left: 50%; top: 50%;
	transform: translate(-50%, -50%);
	transition: transform 0.3s ease, opacity 0.3s ease;
}
.lit-form__icon::before { width: 20px; height: 1px; }
.lit-form__icon::after  { width: 1px;  height: 20px; }
.lit-form__item.is-open .lit-form__icon::after { opacity: 0; }

.lit-form__body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}
.lit-form__item.is-open .lit-form__body { max-height: 320px; }
.lit-form__input {
	display: block;
	width: 100%;
	max-width: 900px;
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--rule-soft);
	padding: 12px 0 8px;
	margin: 0 0 30px calc(70px + 26px);
	font-family: var(--sans);
	font-size: 17px;
	color: #000;
	transition: border-color 0.2s ease;
	resize: vertical;
}
.lit-form__input:focus {
	outline: none;
	border-bottom-color: #000;
}
.lit-form__input::placeholder {
	color: var(--ink-mute);
	opacity: 0.6;
}
.lit-form__submit { margin-top: 56px; }
.lit-form__success {
	padding: 24px 28px;
	border: 1px solid var(--rule);
	background: var(--cream-2);
	font-family: var(--serif);
	font-size: 22px;
}
.lit-form__error {
	padding: 14px 20px;
	border: 1px solid #b03a2e;
	background: rgba(176, 58, 46, 0.06);
	color: #b03a2e;
	font-size: 14px;
	margin-bottom: 24px;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.lit-footer {
	border-top: 1px solid var(--rule);
	padding: 44px 0;
	background: #f5f1f0;
}
.lit-footer__inner {
	max-width: var(--wrap-wide);
	margin: 0 auto;
	padding: 0 var(--pad-x);
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 30px;
	font-size: 15px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #000;
	font-weight: 500;
}
.lit-footer__brand {
	font-family: var(--serif);
	font-size: 24px;
	text-transform: none;
	letter-spacing: 0.01em;
	color: #000;
	font-weight: 500;
}
.lit-footer__nav {
	display: flex;
	gap: 48px;
	justify-self: center;
}
.lit-footer__nav a:hover { opacity: 0.6; }
.lit-footer__meta { justify-self: end; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */

/* Tablet-ish */
@media (max-width: 1200px) {
	:root { --section-y: 140px; }
	.lit-forme__headline { margin-bottom: clamp(80px, 12vw, 120px); }
	section#faq.lit-section { padding-top: 70px; }
	section.lit-case.lit-section { padding-bottom: 70px; }
	.lit-hero__body { max-width: 560px; }
	.lit-dual__grid { gap: 60px; }
	.lit-session__row { grid-template-columns: 180px 1fr; }
	.lit-inv__list { max-width: 100%; }
	.lit-form__input { margin-left: 96px; }
}

/* Medium — collapse grids */
@media (max-width: 900px) {
	:root { --section-y: 110px; }
	section#faq.lit-section { padding-top: 60px; }
	section.lit-case.lit-section { padding-bottom: 60px; }

	.lit-header__inner { padding: 16px var(--pad-x); }

	section#workshop .lit-wrap.lit-wrap--wide { margin-top: 50px; }

	.lit-dual__grid,
	.lit-appintro__grid,
	.lit-bio__grid { grid-template-columns: 1fr; gap: 50px; }

	.lit-bio__image { max-width: 500px; }

	.lit-appintro__aside { justify-self: start; }
	.lit-circle { width: 170px; height: 170px; }

	.lit-hours__grid { grid-template-columns: 1fr; }
	.lit-hours__item { padding: 26px 0; }

	.lit-session__row { grid-template-columns: 140px 1fr; padding: 20px 0; }

	.lit-footer__inner { grid-template-columns: 1fr; text-align: left; justify-items: start; gap: 20px; }
	.lit-footer__nav { justify-self: start; flex-wrap: wrap; gap: 24px; }
	.lit-footer__meta { justify-self: start; }

	.lit-eyebrow { font-size: 16px; margin-bottom: 20px; }
	.lit-menu__item a { font-size: 44px; padding: 16px 0; }
}

/* Small — phones */
@media (max-width: 640px) {
	:root {
		--section-y: 80px;
		--pad-x: 20px;
	}
	section#faq.lit-section { padding-top: 40px; }
	section.lit-case.lit-section { padding-bottom: 40px; }

	.lit-eyebrow { font-size: 14px; letter-spacing: 0.16em; margin-bottom: 18px; }

	.lit-header__logo { font-size: 18px; }
	.lit-burger__label { font-size: 12px; letter-spacing: 0.16em; }
	.lit-burger__lines { width: 24px; }
	.lit-burger__line { width: 24px; }

	.lit-hero__headline { font-size: clamp(44px, 13vw, 82px); margin-bottom: 28px; }
	.lit-hero__body { font-size: 22px; max-width: 100%; }
	.lit-cta-wrap { margin-top: 32px; }
	.lit-btn { padding: 14px 28px; font-size: 15px; letter-spacing: 0.2em; }

	.lit-dual__headline { font-size: clamp(38px, 11vw, 62px); }
	.lit-dual__list li { grid-template-columns: 44px 1fr; gap: 18px; font-size: 20px; padding: 24px 0 30px; }
	.lit-dual__list .num { font-size: 26px; }

	.lit-pattern__headline { font-size: clamp(32px, 8vw, 52px); margin-bottom: 30px; }
	.lit-pattern__body { font-size: 20px; }

	.lit-hours__headline { font-size: clamp(40px, 10vw, 64px); margin-bottom: 50px; }
	.lit-hours__item { grid-template-columns: 70px 1fr; gap: 20px; }
	.lit-hours__num { font-size: 40px; }
	.lit-hours__text { font-size: 18px; padding-top: 6px; }

	.lit-insight__headline { font-size: clamp(30px, 8vw, 54px); margin-bottom: 40px; }
	.lit-insight__list { font-size: 20px; gap: 16px; }

	.lit-steps__headline { font-size: clamp(44px, 12vw, 78px); margin-bottom: 50px; max-width: 100%; }
	.lit-steps__item { grid-template-columns: 60px 1fr; gap: 16px; padding: 24px 0; }
	.lit-steps__num, .lit-steps__title { font-size: 18px; letter-spacing: 0.16em; }
	.lit-steps__foot { font-size: 20px; margin-top: 40px; }

	.lit-case__intro { font-size: 22px; margin-bottom: 50px; }
	.lit-case__headline { font-size: clamp(44px, 12vw, 78px); margin-bottom: 50px; }
	.lit-case__body { font-size: 20px; max-width: 100%; }

	.lit-forme__headline { font-size: clamp(44px, 12vw, 78px); margin-bottom: 60px; }
	.lit-check__list { gap: 30px; }
	.lit-check__list li { font-size: 20px; gap: 20px; grid-template-columns: 42px 1fr; }
	.lit-icon-circle { width: 42px; height: 42px; border-width: 1.5px; }
	.lit-icon-circle svg { width: 18px; height: 18px; }

	.lit-bio__name { font-size: clamp(44px, 12vw, 78px); margin-bottom: 24px; }
	.lit-bio__lede,
	.lit-bio__body { font-size: 20px; max-width: 100%; }

	.lit-appintro__headline { font-size: clamp(40px, 11vw, 68px); margin-bottom: 40px; }
	.lit-appintro__body { font-size: 20px; max-width: 100%; }
	.lit-circle { width: 150px; height: 150px; }
	.lit-circle__arrow { width: 30px; height: 30px; }
	.lit-circle__label { font-size: 12px; }

	.lit-session__headline { font-size: clamp(40px, 11vw, 68px); margin-bottom: 50px; }
	.lit-session__row { grid-template-columns: 110px 1fr; padding: 16px 0; gap: 14px; }
	.lit-session__row dt { font-size: 13px; letter-spacing: 0.14em; }
	.lit-session__row dd { font-size: 17px; }

	.lit-inv__amount { font-size: clamp(72px, 18vw, 120px); }
	.lit-inv__note { font-size: 13px; margin: 16px 0 40px; }
	.lit-inv__intro { font-size: 22px; margin-bottom: 40px; }
	.lit-inv__list li { grid-template-columns: 44px 1fr; gap: 16px; font-size: 14px; padding: 18px 0; letter-spacing: 0.16em; }
	.lit-arrow-circle { width: 36px; height: 36px; }
	.lit-arrow-circle svg { width: 14px; height: 14px; }

	.lit-faq__list { max-width: 100%; }
	.lit-faq__item { grid-template-columns: 40px 1fr 22px; gap: 14px; padding: 22px 0; }
	.lit-faq__num { font-size: 20px; }
	.lit-faq__q { font-size: 20px; margin-bottom: 8px; }
	.lit-faq__a { font-size: 15px; }

	.lit-final__headline { font-size: clamp(40px, 11vw, 68px); margin-bottom: 30px; }
	.lit-final__body { font-size: 18px; max-width: 100%; }

	.lit-form__headline { font-size: clamp(40px, 11vw, 68px); margin-bottom: 50px; }
	.lit-form__head { grid-template-columns: 40px 1fr 22px; gap: 14px; padding: 22px 0; }
	.lit-form__q { font-size: 18px; }
	.lit-form__num { font-size: 14px; letter-spacing: 0.14em; }
	.lit-form__input { margin-left: 0; padding-left: 0; font-size: 15px; margin-bottom: 22px; }
	.lit-form__item.is-open .lit-form__body { max-height: 400px; }

	.lit-menu__inner { padding: 16px var(--pad-x) 32px; }
	.lit-menu__item a { font-size: 34px; padding: 14px 0; }
	.lit-menu__brand { font-size: 20px; }

	.lit-footer { padding: 32px 0; }
	.lit-footer__brand { font-size: 20px; }
	.lit-footer__inner { font-size: 13px; letter-spacing: 0.14em; }
	.lit-footer__nav { gap: 16px; }
}

@media (max-width: 380px) {
	.lit-hero__headline { font-size: clamp(38px, 14vw, 60px); }
	.lit-case__headline,
	.lit-forme__headline,
	.lit-steps__headline { font-size: clamp(38px, 13vw, 60px); }
	.lit-inv__amount { font-size: clamp(60px, 22vw, 100px); }
	.lit-session__row { grid-template-columns: 96px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}
