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

/* Butler — one family, three weights. The `src` line must NOT end in a comma:
   a trailing comma swallowed the following declaration and invalidated the
   whole @font-face, so the face never loaded and every serif fell back. */
@font-face {
    font-family: "Butler";
    src: url("https://thelostintranslationworkshop.com/wp-content/uploads/2026/07/Butler_Light.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Butler";
    src: url("https://thelostintranslationworkshop.com/wp-content/uploads/2026/07/Butler_Regular.woff2") format("woff2");
    font-weight: 400 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Butler";
    src: url("https://thelostintranslationworkshop.com/wp-content/uploads/2026/07/Butler_Bold.woff2") format("woff2");
    font-weight: 600 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "HelveticaNowDisplay";
    src: url("https://thelostintranslationworkshop.com/wp-content/uploads/2026/07/HelveticaNowDisplay-ExtraBold.woff2") format("woff2");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "HelveticaNowDisplay";
    src: url("https://thelostintranslationworkshop.com/wp-content/uploads/2026/07/HelveticaNowDisplay-Regular.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: "HelveticaNowDisplay";
    src: url("https://thelostintranslationworkshop.com/wp-content/uploads/2026/07/HelveticaNowDisplay-Medium.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


: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:        "Butler", Georgia, "Times New Roman", serif;
	--sans:         "HelveticaNowDisplay", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	--wrap:         1180px;
	--wrap-wide:    1440px;
	--pad-x:        clamp(20px, 4vw, 120px);
	--section-y:    clamp(64px, 9vw, 150px);
	--cream-alt:    #f8f6f2;

	/* Shared split-layout knobs — every "left headline / right content" section
	   reads these so one breakpoint change moves all of them together. */
	--split-gap:    clamp(28px, 5vw, 60px);
	--split-left:   clamp(280px, 34vw, 500px);
}

/* 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";
	/* Nothing should ever scroll sideways. `clip` is preferred because, unlike
	   `hidden`, it does not turn the body into a scroll container and so leaves
	   the sticky header working; `hidden` is the fallback for older engines. */
	overflow-x: hidden;
	overflow-x: clip;
}
img, svg { max-width: 100%; height: auto; display: block; }

/* Long unbroken strings (URLs, emails, compound words) must wrap rather than
   push the layout wider than the viewport. */
h1, h2, h3, p, li, dt, dd, a, span { overflow-wrap: break-word; }
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); }

p.lit-eyebrow.new-two {
    font-weight: 600;
    font-size: 29px;
    margin-bottom: 10px;
	color:black;
}
section#workshop .lit-wrap.lit-wrap--wide p.lit-eyebrow {
    font-weight: 500 !IMPORTANT;
}
/* ---------- Type primitives (LOCKED to hero scale) ---------- */
.lit-eyebrow {
	font-family: var(--sans);
	font-size: clamp(13px, 1.4vw, 21px);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #646568;
	font-weight: 700;
	margin: 0 0 50px;
}
.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: clamp(17px, 2vw, 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: clamp(8px, 1.5vw, 14px);
	padding: 8px;
	min-height: 44px; /* thumb-sized tap target */
}
.lit-burger__label {
	font-size: clamp(11px, 1.2vw, 14px);
	letter-spacing: 0.18em;
	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: clamp(28px, 4vw, 48px); }
.lit-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	max-width: 100%;
	padding: clamp(13px, 1.6vw, 17px) clamp(22px, 3vw, 37px);
	background: #000;
	color: #ffffff;
	font-size: clamp(14px, 1.5vw, 20px);
	letter-spacing: 0.18em;
	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;
	    font-style: italic;
	text-transform: uppercase;
	color: #000;
	margin: 0 0 30px;
}
.lit-hero__body {
	font-family: var(--sans);
	max-width: 100%;
	font-size: clamp(18px, 2vw, 27px);
	line-height: 1.3;
	color: #000;
	margin-bottom: 12px;
	font-weight: 400;
}

/* =========================================================================
   DUAL MESSAGE
   ========================================================================= */
.lit-dual { padding-top: clamp(40px, 6vw, 80px); }
.lit-dual__grid {
	display: grid;
	/* minmax(0, …) instead of a bare fr: an fr track has a min-content floor,
	   so a long unbreakable line would otherwise widen the whole page. */
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
	gap: clamp(32px, 6vw, 120px);
	align-items: center;
}
.lit-dual__left {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.lit-dual__headline {
	font-family: var(--serif);
	font-weight: 400;
	font-size: clamp(48px, 6.5vw, 70px);
	line-height: 1;
	letter-spacing: -0.02em;
	margin: 0;
	color: #000;
}
h2.lit-dual__headline b {
    font-style: italic;
}
.lit-dual__sep {
	width: 80px;
	height: 1px;
	background: var(--rule);
	margin: 20px 0 0;
}
.lit-dual__list {
	display: flex;
	flex-direction: column;
	gap: 0;
}
.lit-dual__list li {
	display: grid;
	grid-template-columns: clamp(44px, 6vw, 80px) minmax(0, 1fr);
	gap: clamp(16px, 2.5vw, 30px);
	padding: 20px 0 20px;
	border-bottom: 2px solid var(--rule-soft);
	font-family: var(--serif);
	font-size: clamp(22px, 2.2vw, 31px);
	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: 400;
    font-size: clamp(22px, 3vw, 55px);
	line-height: 1.05;
	letter-spacing: -0.015em;
	margin: 0 0 23px;
	color: #000;
	max-width: 1160px;
}
.lit-pattern__body {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(22px, 3vw, 55px);
    line-height: 1.6;
    color: #000;
}

/* =========================================================================
   HOURS (6 numbered)
   ========================================================================= */
.lit-hours__headline {
	font-family: var(--serif);
	font-weight: 400;
	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: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
	column-gap: clamp(28px, 5vw, 80px);
	row-gap: 0;
}
.lit-hours__item {
	display: grid;
	grid-template-columns: clamp(64px, 8vw, 110px) minmax(0, 1fr);
	gap: clamp(16px, 2.5vw, 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(28px, 4.4vw, 52px);
	line-height: 1.1;
	letter-spacing: -0.015em;
	margin: 0 0 clamp(20px, 3vw, 29px);
}
.lit-insight__list {
	display: flex;
	flex-direction: column;
	gap: 26px;
	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(30px, 4.6vw, 56px);
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin: 0 0 clamp(32px, 6vw, 90px);
	max-width: 600px;
	color: #000;
}
.lit-steps__list {
	border-top: 0;
}
.lit-steps__item {
	display: grid;
	gap: 30px;
	align-items: center;
	padding: 32px 0;
	border-bottom: 1px solid var(--rule);
}
.lit-steps__num {
	font-family: var(--sans);
	font-size: clamp(16px, 1.9vw, 27px);
	letter-spacing: 0.18em;
	color: #000;
	font-weight: 500;
}
.lit-steps__title {
	font-family: var(--sans);
	font-size: clamp(15px, 1.8vw, 28px);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #000;
	font-weight: 600;
}
.lit-steps__foot {
	margin-top: clamp(20px, 3vw, 27px);
	font-family: var(--serif);
	font-weight: 300;
	font-size: clamp(17px, 1.8vw, 26px);
	line-height: 1.5;
	color: #000;
}
p.lit-steps__foot-text {
	font-size: clamp(16px, 1.7vw, 23px);
}
/* =========================================================================
   CASE STUDY
   ========================================================================= */
.lit-case__intro {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(24px, 2.2vw, 52px);
	line-height: 1.3;
	color: #000;
	margin-bottom: 40px;;
}
.lit-case__intro p + p { margin-top: 32px; }
.lit-case__headline {
    font-family: var(--serif);
    font-weight: bold;
    font-size: clamp(30px, 5vw, 51px);
    line-height: 1.4;
    letter-spacing: -0.02em;
    margin: 0 0 clamp(24px, 4vw, 40px);
    color: #000;
}
.lit-case__body {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(24px, 2.2vw, 52px);
	line-height: 1.4;
	color: #000;
}
.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: clamp(28px, 4vw, 40px); }
section#guide.lit-section { padding-bottom: clamp(56px, 8vw, 110px); }
section.lit-inv.lit-section { padding-bottom: 0; }
section#details.lit-section { padding-top: clamp(56px, 8vw, 100px); padding-bottom: 100px; }
section#faq.lit-section { padding-top: clamp(48px, 7vw, 100px); padding-bottom: clamp(56px, 8vw, 110px); }

/* =========================================================================
   FOR YOU
   ========================================================================= */
.lit-forme__headline {
    font-family: var(--serif);
    font-weight: bold;
    font-size: clamp(30px, 5vw, 51px);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 clamp(40px, 6vw, 90px);
    color: #000;
}
.lit-check__list {
	display: flex;
	flex-direction: column;
	gap: clamp(24px, 4vw, 46px);
	max-width: 1000px;
}
.lit-check__list li {
	display: grid;
	grid-template-columns: clamp(40px, 5vw, 59px) minmax(0, 1fr);
	gap: clamp(16px, 3vw, 34px);
	align-items: center;
	font-family: var(--serif);
	font-weight: 400;
	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: clamp(40px, 5vw, 59px);
	height: clamp(40px, 5vw, 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: clamp(18px, 2.2vw, 26px);
	height: clamp(18px, 2.2vw, 26px);
	stroke: currentColor;
	stroke-width: 1.5;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* =========================================================================
   BIO
   ========================================================================= */
.lit-bio__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(32px, 6vw, 120px);
	align-items: start;
}
.lit-bio__name {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(47px, 5vw, 40px);
	line-height: 1;
	letter-spacing: -0.02em;
	margin: 0 0 40px;
	color: #000;
}
.lit-bio__lede {
    font-family: var(--sans);
    font-weight: 500;
    font-size: clamp(22px, 2vw, 26px);
    line-height: 1.4;
    color: #000;
    font-style: italic;
    margin-bottom: 60px;
	    position: relative;
}
p.lit-bio__lede:before {
    content: '';
    position: absolute;
    background: black;
    height: 2px;
    width: 100%;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}
.lit-bio__lede br { display: none; }
.lit-bio__body {
	    font-family: var(--sans);
    font-weight: 500;
    font-size: clamp(20px, 1.9vw, 26px);
    line-height: 1.5;
    color: #000;
    max-width: 650px;
}
.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: minmax(0, 1fr) auto;
	gap: clamp(32px, 6vw, 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;
	/* Indent collapses to nothing on narrow screens — a flat 100px pushed the
	   copy off a phone viewport. */
	margin-left: clamp(0px, 8vw, 100px);
}
.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: clamp(12px, 1.3vw, 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(70px, 11vw, 120px);
    line-height: 1;
    letter-spacing: -0.02em;
    color: #000;
    margin: 0;
    text-align: center;
}

p.lit-eyebrow.lit-inv__eyebrow2 {
    text-align: center;
    border-top: 2px solid;
    display: flex;
    padding: 30px 0px;
    align-items: center;
    justify-content: center;
    width: max-content;
    margin: auto;
    border-bottom: 2px solid;
    margin-bottom: 70px ! IMPORTANT;
    font-size: clamp(13px, 1.6vw, 40px);
    text-transform: uppercase;
    color: black;
    font-weight: 700;
}

.lit-inv__note {
	    font-family: var(--sans);
    font-size: clamp(12px, 1.2vw, 20px);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000;
    text-align: center;
    font-weight: 700;
    font-style: italic;
    margin: clamp(2px, 0vw, 14px) 0 clamp(36px, 6vw, 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, 31px);
    line-height: 1.3;
    color: #000;
    margin-bottom: 70px;
	    margin-top: 80px;
    text-align: center;
    max-width: 100%;
}
.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: clamp(44px, 6vw, 70px) 1fr;
	gap: clamp(14px, 2.5vw, 30px);
	align-items: center;
	font-size: clamp(13px, 1.5vw, 20px);
	letter-spacing: 0.16em;
	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: clamp(20px, 3vw, 32px) 0;
	display: grid;
	grid-template-columns: clamp(38px, 5vw, 70px) minmax(0, 1fr) 22px;
	gap: clamp(14px, 2.4vw, 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: 700;
    font-size: clamp(22px, 1.6vw, 48px);
    line-height: 1.2;
    color: #000;
    margin-bottom: 12px;
}
.lit-faq__a {
	font-family: var(--sans);
	font-size: clamp(15px, 1.6vw, 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: clamp(38px, 5vw, 70px) minmax(0, 1fr) 22px;
	gap: clamp(14px, 2.4vw, 26px);
	align-items: center;
	text-align: left;
	padding: clamp(20px, 3vw, 30px) 0;
	background: transparent;
}
.lit-form__num {
	font-family: var(--sans);
	font-size: clamp(13px, 1.4vw, 18px);
	letter-spacing: 0.18em;
	color: #000;
	font-weight: 500;
}
.lit-form__q {
	font-family: var(--sans);
	font-size: clamp(15px, 1.7vw, 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;
	/* The answer indent lives here rather than on the textarea: a `width: 100%`
	   textarea plus its own margin-left added up to more than the row. */
	padding-left: calc(clamp(38px, 5vw, 70px) + clamp(14px, 2.4vw, 26px));
}
.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;
	font-family: var(--sans);
	/* Never below 16px: iOS Safari auto-zooms the viewport on focus otherwise. */
	font-size: 16px;
	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: clamp(18px, 3vw, 24px) clamp(18px, 3vw, 28px);
	border: 1px solid var(--rule);
	background: var(--cream-2);
	font-family: var(--serif);
	font-size: clamp(17px, 1.9vw, 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;
}

/* =========================================================================
   APPLY PAGE — standalone form (opened from every Apply Now button)
   ========================================================================= */
.lit-apply.lit-section {
	padding-top: clamp(60px, 8vw, 120px);
	padding-bottom: clamp(60px, 8vw, 120px);
}
.lit-apply__card {
	max-width: 1080px;
	margin: 0 auto;
	background: var(--cream-alt);
	border: 1px solid var(--rule);
	padding: clamp(28px, 5vw, 72px);
}
.lit-apply__headline {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(40px, 5vw, 68px);
	line-height: 1.05;
	letter-spacing: -0.01em;
	margin: 0 0 clamp(28px, 4vw, 48px);
	color: #000;
}
.lit-apply__form { display: block; }
.lit-apply__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: clamp(24px, 3vw, 36px);
}
.lit-apply__item {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.lit-apply__label {
	display: flex;
	gap: 8px;
	align-items: baseline;
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(17px, 1.4vw, 20px);
	line-height: 1.4;
	color: #000;
}
.lit-apply__num { flex-shrink: 0; }
.lit-apply__q { flex: 1; }
.lit-apply__input {
	display: block;
	width: 100%;
	background: #fff;
	border: 1px solid var(--rule);
	padding: 12px 14px;
	font-family: var(--sans);
	font-size: 16px; /* see note on .lit-form__input — 16px avoids iOS focus zoom */
	color: #000;
	min-height: 80px;
	resize: vertical;
	transition: border-color 0.2s ease;
}
.lit-apply__input:focus {
	outline: none;
	border-color: #000;
}
.lit-apply__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: clamp(28px, 4vw, 44px);
	padding: 14px 32px;
	background: #000;
	color: #fff;
	font-family: var(--sans);
	font-size: 14px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	border: 1px solid #000;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.25s ease, color 0.25s ease;
}
.lit-apply__submit:hover {
	background: transparent;
	color: #000;
}
.lit-apply__contact {
	max-width: 1080px;
	margin: clamp(28px, 4vw, 48px) auto 0;
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(17px, 1.4vw, 22px);
	line-height: 1.55;
	color: #000;
}
.lit-apply__contact p + p { margin-top: 20px; }
.lit-apply__contact a { color: #000; text-decoration: none; border-bottom: 1px solid var(--rule); }
.lit-apply__contact a:hover { border-bottom-color: #000; }

@media (max-width: 640px) {
	.lit-apply__card { padding: 22px; }
	.lit-apply__label { font-size: 16px; }
	.lit-apply__contact { font-size: 15px; }
}

/* =========================================================================
   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: clamp(16px, 3vw, 30px);
	font-size: clamp(11px, 1.2vw, 15px);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #000;
	font-weight: 500;
}
.lit-footer__brand {
	font-family: var(--serif);
	font-size: clamp(17px, 2vw, 24px);
	text-transform: none;
	letter-spacing: 0.01em;
	color: #000;
	font-weight: 500;
}
.lit-footer__nav {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(16px, 3vw, 48px);
	justify-self: center;
}
.lit-footer__nav a:hover { opacity: 0.6; }
.lit-footer__meta { justify-self: end; }

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

/* Large laptop / small desktop — trim oversized headlines and gutters.
   Kicks in at 1500 because content was blowing out on ~15" MacBook / 1440p
   monitors before the 1440 breakpoint could catch it. */
@media (max-width: 1500px) {
	:root {
		--pad-x:     clamp(20px, 3.4vw, 40px);
		--wrap-wide: 1200px;
	}
	section#workshop .lit-wrap.lit-wrap--wide { margin-top: 50px; }

	/* Headline caps — significantly smaller so titles don't dominate the screen */
	.lit-hero__headline        { font-size: clamp(48px, 5.4vw, 82px); }
	.lit-dual__headline        { font-size: clamp(36px, 3.8vw, 58px); }
	.lit-pattern__headline     { font-size: clamp(32px, 3.6vw, 54px); }
	.lit-hours__headline       { font-size: clamp(36px, 4vw, 62px); }
	.lit-insight__headline     { font-size: clamp(32px, 3.4vw, 52px); }
	.lit-steps__headline       { font-size: clamp(40px, 4.4vw, 68px); }
	.lit-case__headline        { font-size: clamp(42px, 4.8vw, 72px); }
	.lit-forme__headline       { font-size: clamp(42px, 4.8vw, 72px); }
	.lit-bio__name             { font-size: clamp(40px, 4.2vw, 64px); }
	.lit-appintro__headline    { font-size: clamp(38px, 4vw, 62px); }
	.lit-session__headline     { font-size: clamp(36px, 3.8vw, 58px); }
	.lit-final__headline       { font-size: clamp(36px, 3.8vw, 58px); }
	.lit-form__headline        { font-size: clamp(40px, 4.2vw, 64px); }
	.lit-apply__headline       { font-size: clamp(32px, 3.2vw, 46px); }
	.lit-inv__amount           { font-size: clamp(72px, 8.5vw, 128px); }

	/* Eyebrows scale down too so they don't feel oversized above small heads */
	.lit-eyebrow               { font-size: clamp(13px, 1.4vw, 16px); margin-bottom: 20px; }

	/* Body / list text shrinks with the headlines */
	.lit-hero__body            { font-size: clamp(19px, 1.5vw, 24px); max-width: 560px; }
	.lit-dual__list li,
	.lit-check__list li,
	.lit-bio__lede,
	.lit-bio__body,
	.lit-appintro__body,
	.lit-final__body           { font-size: clamp(17px, 1.25vw, 22px); }
	.lit-pattern__body,
	.lit-hours__text,
	.lit-insight__list         { font-size: clamp(17px, 1.3vw, 22px); }
	.lit-case__intro,
	.lit-case__body            { font-size: clamp(17px, 1.25vw, 22px); }

	.lit-dual__list .num       { font-size: clamp(22px, 1.9vw, 30px); }
	.lit-hours__num            { font-size: clamp(36px, 3.4vw, 50px); }

	/* Grids get tighter so two-column layouts stop feeling stretched */
	.lit-dual__grid            { gap: clamp(32px, 4vw, 70px); }
	.lit-bio__grid             { gap: clamp(32px, 4vw, 70px); }
	.lit-appintro__grid        { gap: clamp(32px, 4vw, 70px); }
	.lit-hours__grid           { column-gap: clamp(28px, 3.2vw, 50px); }
	.lit-hours__item           { grid-template-columns: 78px minmax(0, 1fr); gap: 18px; padding: 22px 0; }
	.lit-hours__text           { padding-top: 6px; }
	/* A step row holds a single title span — giving it a 100px first track
	   crushed that title into a 100px column. */
	.lit-steps__item           { gap: 20px; padding: 22px 0; }
	.lit-dual__list li         { grid-template-columns: 56px minmax(0, 1fr); gap: 20px; padding: 22px 0 30px; }

	/* Section rhythm tightens up */
	.lit-hero                  { padding-top: clamp(40px, 4.5vw, 90px); padding-bottom: clamp(40px, 4.5vw, 90px); }
	.lit-hero__headline        { margin-bottom: 28px; }
	.lit-hours__headline,
	.lit-insight__headline,
	.lit-steps__headline       { margin-bottom: 56px; }
	.lit-forme__headline       { margin-bottom: 70px; }

	/* Bio image + placeholder cap */
	.lit-bio__image            { max-width: 420px; }

	/* Circle CTA (appintro) shrinks */
	.lit-circle                { width: 150px; height: 150px; }
	.lit-circle__arrow         { width: 30px; height: 30px; }
	.lit-circle__label         { font-size: 12px; }

	/* Buttons a touch smaller */
	.lit-cta-wrap              { margin-top: 36px; }

	/* Header tightens */
	.lit-header__inner         { padding: 18px var(--pad-x); }

	/* Footer gutters match the tighter wrap */
	.lit-footer__inner         { gap: 24px; }
	.lit-footer__nav           { gap: 32px; }
}

/* Tablet-ish */
@media (max-width: 1200px) {
	.lit-forme__headline { margin-bottom: clamp(48px, 8vw, 90px); }
	.lit-hero__body { max-width: 560px; }
	.lit-dual__grid { gap: 60px; }
	.lit-session__row { grid-template-columns: 180px minmax(0, 1fr); }
	.lit-inv__list { max-width: 100%; }
}

/* Medium — collapse grids */
@media (max-width: 900px) {
	.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 minmax(0, 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 { margin-bottom: 20px; }
	.lit-menu__item a { font-size: clamp(30px, 6vw, 44px); padding: 16px 0; }
}

/* Small — phones.
   Type is not re-declared here: every size above is already a clamp() whose
   lower bound is the phone value, so overriding it with a fixed px only
   reintroduces the "doesn't scale" problem. This block is layout only —
   things that must change shape, not size. */
@media (max-width: 640px) {
	:root { --pad-x: 20px; }

	.lit-burger__lines { width: 24px; }
	.lit-burger__line { width: 24px; }

	.lit-hero__headline { margin-bottom: 24px; }
	.lit-hero__body { max-width: 100%; }
	.lit-cta-wrap { margin-top: 28px; }
	/* Keep the button inside the gutter, and keep it thumb-sized. */
	.lit-btn { min-height: 48px; max-width: 100%; }

	.lit-dual__list li { padding: 20px 0 24px; }

	.lit-hours__num { line-height: 1.05; }
	.lit-hours__text { padding-top: 4px; }

	.lit-insight__list { gap: 16px; }

	.lit-steps__headline { max-width: 100%; }

	.lit-case__body,
	.lit-bio__lede,
	.lit-bio__body,
	.lit-appintro__body,
	.lit-final__body,
	.lit-faq__list { max-width: 100%; }

	.lit-icon-circle { border-width: 1.5px; }

	/* Session table: label above value instead of a squeezed two-column row. */
	.lit-session__table { border-top: 0; }
	.lit-session__row { grid-template-columns: 1fr; gap: 4px; padding: 14px 0; }

	.lit-arrow-circle { width: 36px; height: 36px; }
	.lit-arrow-circle svg { width: 14px; height: 14px; }

	/* Answers get the full width on a phone — the indent costs too much column. */
	.lit-form__body { padding-left: 0; }
	.lit-form__input { margin-bottom: 22px; }
	.lit-form__item.is-open .lit-form__body { max-height: 520px; }

	.lit-menu__inner { padding: 16px var(--pad-x) 32px; }
	.lit-menu__foot { flex-direction: column; gap: 6px; }

	.lit-footer { padding: 32px 0; }
	.lit-footer__nav { gap: 16px 20px; }
}

/* Very small phones — the last places where content still touches the edges. */
@media (max-width: 380px) {
	.lit-hero__headline { font-size: clamp(36px, 12vw, 48px); }
	.lit-inv__amount { font-size: clamp(56px, 20vw, 72px); }
	.lit-menu__item a { gap: 14px; }
	.lit-menu__num { min-width: 30px; }
}

@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;
	}
}
