/* =========================================================================
   Obesity Zero — design system
   Clean modern medical: white + teal-mist surfaces, deep clinical teal ink,
   one warm amber accent reserved for the Founder's Journey.
   Signature: the Zero Ring — a target motif reading "goal: zero".
   Brand colors are CSS variables fed by the Customizer.
   ========================================================================= */

/* ---- Fonts (self-hosted variable fonts, no CDN) ---- */
@font-face {
	font-family: 'Bricolage Grotesque';
	font-style: normal;
	font-weight: 200 800;
	font-display: swap;
	src: url('../fonts/bricolage-grotesque-latin-wght-normal.woff2') format('woff2-variations');
}
@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url('../fonts/inter-latin-wght-normal.woff2') format('woff2-variations');
}
@font-face {
	font-family: 'Inter';
	font-style: italic;
	font-weight: 100 900;
	font-display: swap;
	src: url('../fonts/inter-latin-wght-italic.woff2') format('woff2-variations');
}

/* ---- Tokens ---- */
:root {
	/* Brand (overridden by Customizer inline style) */
	--ozc-ink: #0c2e38;
	--ozc-primary: #0e5e6f;
	--ozc-accent: #12a5b0;
	--ozc-warm: #e0862f;
	--ozc-mist: #eef6f6;

	/* Derived */
	--ozc-paper: #ffffff;
	--ozc-line: color-mix(in srgb, var(--ozc-primary) 14%, transparent);
	--ozc-muted: color-mix(in srgb, var(--ozc-ink) 62%, var(--ozc-paper));
	--ozc-accent-soft: color-mix(in srgb, var(--ozc-accent) 12%, var(--ozc-paper));

	/* Type */
	--font-display: 'Bricolage Grotesque', 'Segoe UI', system-ui, sans-serif;
	--font-body: 'Inter', system-ui, -apple-system, sans-serif;
	--step--1: clamp(0.83rem, 0.8rem + 0.15vw, 0.9rem);
	--step-0: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
	--step-1: clamp(1.18rem, 1.1rem + 0.4vw, 1.35rem);
	--step-2: clamp(1.45rem, 1.3rem + 0.8vw, 1.8rem);
	--step-3: clamp(1.9rem, 1.6rem + 1.5vw, 2.6rem);
	--step-4: clamp(2.5rem, 2rem + 2.8vw, 4rem);

	/* Layout */
	--wrap: 1160px;
	--gutter: clamp(1.1rem, 4vw, 2rem);
	--radius: 14px;
	--radius-sm: 9px;
	--shadow: 0 1px 2px rgba(12, 46, 56, 0.06), 0 10px 30px -12px rgba(12, 46, 56, 0.14);
}

/* ---- Reset-ish ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: var(--step-0);
	line-height: 1.65;
	color: var(--ozc-ink);
	background: var(--ozc-paper);
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.015em;
	margin: 0 0 0.5em;
	text-wrap: balance;
}
p { margin: 0 0 1em; }
a { color: var(--ozc-primary); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ozc-accent); }
:focus-visible { outline: 3px solid var(--ozc-accent); outline-offset: 2px; border-radius: 2px; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.screen-reader-text {
	border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
	height: 1px; width: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute;
}
.skip-link:focus {
	clip: auto; clip-path: none; width: auto; height: auto;
	position: fixed; top: 8px; left: 8px; z-index: 100;
	background: var(--ozc-ink); color: #fff; padding: 0.6em 1em; border-radius: var(--radius-sm);
}

/* ---- The Zero Ring (signature) ---- */
.zero-ring { display: block; width: 1em; height: 1em; color: var(--ozc-accent); }
.zero-ring--hero { width: min(300px, 34vw); height: auto; color: var(--ozc-accent); }
.zero-ring--page { width: 84px; height: 84px; opacity: 0.9; }

/* ---- Buttons, badges, links ---- */
.btn {
	display: inline-block;
	font-family: var(--font-display);
	font-weight: 650;
	font-size: var(--step-0);
	padding: 0.72em 1.5em;
	border-radius: 999px;
	border: 2px solid transparent;
	cursor: pointer;
	text-decoration: none;
	transition: transform 120ms ease, background-color 120ms ease, color 120ms ease, border-color 120ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--solid { background: var(--ozc-primary); color: #fff; }
.btn--solid:hover { background: var(--ozc-ink); color: #fff; }
.btn--outline { border-color: var(--ozc-primary); color: var(--ozc-primary); background: transparent; }
.btn--outline:hover { background: var(--ozc-primary); color: #fff; }
.btn--ghost { border-color: rgba(255,255,255,0.55); color: #fff; background: transparent; }
.btn--ghost:hover { background: rgba(255,255,255,0.12); color: #fff; }

.text-link { font-weight: 600; }
.badge {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 650;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 0.22em 0.7em;
	border-radius: 999px;
	margin-left: 0.5em;
	vertical-align: middle;
}
.badge--video { background: var(--ozc-accent-soft); color: var(--ozc-primary); }
.badge--link { background: color-mix(in srgb, var(--ozc-warm) 16%, #fff); color: color-mix(in srgb, var(--ozc-warm) 70%, var(--ozc-ink)); }

.kicker {
	font-family: var(--font-display);
	font-weight: 650;
	font-size: var(--step--1);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ozc-accent);
	margin-bottom: 0.9em;
}
.kicker a { color: inherit; text-decoration: none; }
.kicker--warm { color: var(--ozc-warm); }

/* ---- Header ---- */
.site-header {
	position: sticky; top: 0; z-index: 50;
	background: color-mix(in srgb, var(--ozc-paper) 92%, transparent);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--ozc-line);
}
.site-header__inner {
	display: flex; align-items: center; gap: 1.5rem;
	min-height: 72px;
}
.site-brand { flex-shrink: 0; }
.site-brand__text { display: flex; align-items: center; gap: 0.55rem; text-decoration: none; color: var(--ozc-ink); }
.site-brand__mark .zero-ring { width: 34px; height: 34px; }
.site-brand__name { font-family: var(--font-display); font-weight: 750; font-size: 1.18rem; letter-spacing: -0.01em; }
.custom-logo { max-height: 52px; width: auto; }

.site-nav { display: flex; align-items: center; gap: 1.25rem; margin-left: auto; }
.nav-list { list-style: none; display: flex; flex-wrap: wrap; gap: 0.15rem; margin: 0; padding: 0; }
.nav-list a {
	display: block;
	font-size: 0.92rem;
	font-weight: 550;
	color: var(--ozc-ink);
	text-decoration: none;
	padding: 0.5em 0.7em;
	border-radius: var(--radius-sm);
}
.nav-list a:hover { background: var(--ozc-accent-soft); color: var(--ozc-primary); }
.nav-list .sub-menu { list-style: none; margin: 0; padding: 0 0 0 0.9rem; }

.site-nav__search { flex-shrink: 0; }
.search-form { display: flex; align-items: center; border: 1.5px solid var(--ozc-line); border-radius: 999px; overflow: hidden; background: var(--ozc-paper); }
.search-form:focus-within { border-color: var(--ozc-accent); }
.search-form__input { border: 0; padding: 0.5em 0.4em 0.5em 1em; font: inherit; font-size: 0.9rem; width: 170px; background: transparent; color: var(--ozc-ink); }
.search-form__input:focus { outline: none; }
.search-form__submit { border: 0; background: transparent; color: var(--ozc-primary); padding: 0.45em 0.85em 0.35em 0.4em; cursor: pointer; }

.nav-toggle { display: none; }

/* ---- Notices ---- */
.notice-band { padding: 0.85em var(--gutter); text-align: center; font-weight: 550; }
.notice-band--ok { background: var(--ozc-accent-soft); color: var(--ozc-primary); }
.notice-band--warn { background: color-mix(in srgb, var(--ozc-warm) 14%, #fff); color: color-mix(in srgb, var(--ozc-warm) 72%, var(--ozc-ink)); }

/* ---- Hero (homepage) ---- */
.hero { background: linear-gradient(180deg, var(--ozc-mist), var(--ozc-paper)); overflow: hidden; }
.hero__inner {
	display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
	align-items: center; gap: 2rem;
	padding-block: clamp(3rem, 8vw, 6rem);
}
.hero__title { font-size: var(--step-4); font-weight: 800; margin-bottom: 0.35em; }
.hero__text { font-size: var(--step-1); color: var(--ozc-muted); max-width: 34em; }
.hero__mark { display: grid; place-items: center; animation: ring-in 900ms ease both; }
@keyframes ring-in { from { opacity: 0; transform: scale(0.85) rotate(-8deg); } to { opacity: 1; transform: none; } }

.hero__search { display: flex; gap: 0.6rem; margin-top: 1.6rem; max-width: 560px; }
.hero__search input[type="search"] {
	flex: 1; min-width: 0;
	font: inherit;
	padding: 0.72em 1.2em;
	border: 1.5px solid var(--ozc-line);
	border-radius: 999px;
	background: var(--ozc-paper);
	color: var(--ozc-ink);
}
.hero__search input[type="search"]:focus { outline: none; border-color: var(--ozc-accent); box-shadow: 0 0 0 3px var(--ozc-accent-soft); }

/* ---- Section headings ---- */
.section-title { font-size: var(--step-3); }
.section-title--light { color: #fff; }
.section-lede { color: var(--ozc-muted); max-width: 44em; margin-top: -0.4em; }

/* ---- Hub grid (homepage) ---- */
.hubs { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.hub-grid {
	display: grid; gap: 1rem;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	margin-top: 1.8rem;
}
.hub-card {
	display: flex; gap: 0.95rem; align-items: flex-start;
	padding: 1.35rem 1.4rem;
	background: var(--ozc-paper);
	border: 1px solid var(--ozc-line);
	border-radius: var(--radius);
	text-decoration: none;
	color: var(--ozc-ink);
	transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}
.hub-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--ozc-accent); color: var(--ozc-ink); }
.hub-card__ring .zero-ring { width: 40px; height: 40px; }
.hub-card:hover .hub-card__ring .zero-ring { color: var(--ozc-primary); }
.hub-card__body { display: grid; gap: 0.3rem; }
.hub-card__name { font-family: var(--font-display); font-weight: 700; font-size: var(--step-1); line-height: 1.2; }
.hub-card__desc { color: var(--ozc-muted); font-size: 0.92rem; line-height: 1.5; }
.hub-card__count { font-size: 0.8rem; font-weight: 650; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ozc-accent); margin-top: 0.2rem; }

/* ---- Founder's Journey band (homepage) ---- */
.home-journey { background: var(--ozc-ink); color: #fff; }
.home-journey__inner {
	display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 2.5rem; align-items: center;
	padding-block: clamp(3rem, 7vw, 5rem);
}
.home-journey p { color: color-mix(in srgb, #fff 80%, var(--ozc-ink)); }
.home-journey__latest {
	background: color-mix(in srgb, #fff 7%, transparent);
	border: 1px solid color-mix(in srgb, #fff 16%, transparent);
	border-radius: var(--radius);
	padding: 1.6rem 1.7rem;
}
.journey-date { font-size: 0.85rem; font-weight: 650; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ozc-warm); margin-bottom: 0.4rem; }
.journey-title { font-family: var(--font-display); font-size: var(--step-2); margin: 0 0 0.8rem; line-height: 1.15; }
.home-journey__latest .journey-title a { color: #fff; text-decoration: none; }
.home-journey__latest .journey-title a:hover { color: var(--ozc-warm); }
.journey-audio { width: 100%; border-radius: 999px; }
.journey-audio--pending { font-style: italic; opacity: 0.8; }

/* ---- Newsletter band (homepage) ---- */
.home-newsletter { background: var(--ozc-mist); }
.home-newsletter__inner {
	display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
	gap: 2.5rem; align-items: center;
	padding-block: clamp(2.5rem, 6vw, 4.5rem);
}
.edition-card {
	display: grid; gap: 0.4rem;
	background: var(--ozc-paper);
	border: 1px solid var(--ozc-line);
	border-radius: var(--radius);
	padding: 1.5rem 1.6rem;
	text-decoration: none;
	color: var(--ozc-ink);
	transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}
.edition-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--ozc-accent); color: var(--ozc-ink); }
.edition-card__label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ozc-accent); }
.edition-card__title { font-family: var(--font-display); font-weight: 700; font-size: var(--step-1); line-height: 1.2; }
.edition-card__date { color: var(--ozc-muted); font-size: 0.9rem; }

/* ---- Talk CTA (homepage) ---- */
.home-talk { border-top: 1px solid var(--ozc-line); }
.home-talk__inner {
	display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
	gap: 1.5rem;
	padding-block: clamp(2.2rem, 5vw, 3.5rem);
}
.home-talk p { color: var(--ozc-muted); max-width: 38em; margin: 0; }

/* ---- Interior page hero ---- */
.page-hero {
	background: linear-gradient(180deg, var(--ozc-mist), var(--ozc-paper));
	border-bottom: 1px solid var(--ozc-line);
	padding-block: clamp(2.2rem, 5.5vw, 4rem) clamp(1.6rem, 4vw, 2.6rem);
}
.page-hero__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.page-hero__title { font-size: var(--step-3); max-width: 18em; }
.page-hero__text { color: var(--ozc-muted); font-size: var(--step-1); max-width: 38em; }
.page-hero__mark { flex-shrink: 0; }
.page-hero__subscribe { margin-top: 1.4rem; max-width: 480px; }
.page-hero--journey { background: linear-gradient(180deg, color-mix(in srgb, var(--ozc-warm) 9%, var(--ozc-paper)), var(--ozc-paper)); }

.section-jump { display: flex; flex-wrap: wrap; gap: 0.5rem; padding-top: 0.7rem; }
.section-jump a {
	font-family: var(--font-display); font-weight: 650; font-size: 0.9rem;
	text-decoration: none;
	padding: 0.4em 1.05em;
	border: 1.5px solid var(--ozc-line);
	border-radius: 999px;
	color: var(--ozc-primary);
	background: var(--ozc-paper);
}
.section-jump a:hover { border-color: var(--ozc-accent); background: var(--ozc-accent-soft); }

/* ---- Hub content ---- */
.hub-content { padding-block: clamp(1.8rem, 4vw, 3rem); }
.hub-section { margin-bottom: clamp(2.2rem, 5vw, 3.5rem); }
.hub-section__title {
	font-size: var(--step-2);
	display: flex; align-items: center; gap: 0.7rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--ozc-line);
	margin-bottom: 1.2rem;
	scroll-margin-top: 90px;
}
.hub-section__title::before {
	content: '';
	width: 13px; height: 13px; border-radius: 50%;
	border: 3.5px solid var(--ozc-accent);
	flex-shrink: 0;
}
.affiliate-note {
	margin-top: 1.2rem;
	padding: 0.85em 1.2em;
	background: color-mix(in srgb, var(--ozc-warm) 9%, #fff);
	border: 1px solid color-mix(in srgb, var(--ozc-warm) 28%, transparent);
	border-radius: var(--radius-sm);
	font-size: 0.9rem;
	color: color-mix(in srgb, var(--ozc-warm) 62%, var(--ozc-ink));
}

.resource-list { display: grid; gap: 0.85rem; }
.letter-divider {
	font-size: 0.95rem; margin: 1.1rem 0 0.1rem;
	display: flex; align-items: center; gap: 0.8rem;
	color: var(--ozc-accent);
}
.letter-divider::after { content: ''; flex: 1; height: 1px; background: var(--ozc-line); }
.letter-divider span {
	display: grid; place-items: center;
	width: 34px; height: 34px; border-radius: 50%;
	border: 2px solid var(--ozc-accent);
	font-family: var(--font-display); font-weight: 750;
}
.resource-card {
	background: var(--ozc-paper);
	border: 1px solid var(--ozc-line);
	border-radius: var(--radius);
	padding: 1.15rem 1.35rem;
	transition: border-color 140ms ease, box-shadow 140ms ease;
}
.resource-card:hover { border-color: var(--ozc-accent); box-shadow: var(--shadow); }
.resource-card__title { font-size: var(--step-1); margin-bottom: 0.15em; }
.resource-card__title a { text-decoration: none; color: var(--ozc-ink); }
.resource-card__title a:hover { color: var(--ozc-primary); }
.resource-card__meta { color: var(--ozc-muted); font-size: 0.88rem; font-weight: 550; margin-bottom: 0.35em; }
.resource-card__excerpt { color: var(--ozc-muted); margin-bottom: 0.5em; }
.resource-card__foot { margin: 0; font-size: 0.92rem; }
.empty-note { color: var(--ozc-muted); font-style: italic; padding: 1.4rem 0; }

/* ---- Entry / reading layouts ---- */
.entry-layout { padding-block: clamp(1.8rem, 4vw, 3rem); display: grid; grid-template-columns: minmax(0, 1fr); gap: 2.5rem; }
.single-newsletter .entry-layout { grid-template-columns: minmax(0, 2.1fr) minmax(0, 0.9fr); align-items: start; }
.entry-content { max-width: 72ch; }
.entry-content--reading { font-size: var(--step-1); line-height: 1.75; }
.entry-content h2 { font-size: var(--step-2); margin-top: 1.6em; }
.entry-content h3 { font-size: var(--step-1); margin-top: 1.4em; }
.entry-content blockquote {
	margin: 1.4em 0; padding: 0.2em 0 0.2em 1.2em;
	border-left: 4px solid var(--ozc-accent);
	color: var(--ozc-muted); font-style: italic;
}
.entry-thumb { margin: 0 0 1.5rem; }
.entry-thumb img { border-radius: var(--radius); }
.video-embed { position: relative; aspect-ratio: 16 / 9; margin-bottom: 1.6rem; border-radius: var(--radius); overflow: hidden; background: var(--ozc-ink); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.entry-aside {
	background: var(--ozc-mist);
	border-radius: var(--radius);
	padding: 1.5rem 1.6rem;
	position: sticky; top: 92px;
}
.entry-aside__title { font-size: var(--step-1); }
.outbound-cta {
	margin-top: 2rem; padding: 1.5rem 1.6rem;
	background: var(--ozc-mist); border-radius: var(--radius);
}
.outbound-cta__note { margin: 0.8em 0 0; font-size: 0.85rem; color: var(--ozc-muted); }
.back-strip { padding-bottom: clamp(2rem, 4vw, 3rem); }

/* ---- Journey archive ---- */
.journey-log { padding-block: clamp(1.8rem, 4vw, 3rem); }
.journey-list { list-style: none; margin: 0; padding: 0; max-width: 760px; }
.journey-item {
	position: relative;
	padding: 0 0 2.2rem 2.1rem;
	border-left: 2px solid var(--ozc-line);
	margin-left: 0.55rem;
}
.journey-item::before {
	content: '';
	position: absolute; left: -0.62rem; top: 0.25rem;
	width: 15px; height: 15px; border-radius: 50%;
	background: var(--ozc-paper);
	border: 3.5px solid var(--ozc-warm);
}
.journey-item:last-child { border-left-color: transparent; }
.journey-item .journey-title { font-size: var(--step-1); }
.journey-item .journey-title a { color: var(--ozc-ink); text-decoration: none; }
.journey-item .journey-title a:hover { color: var(--ozc-primary); }
.journey-excerpt { color: var(--ozc-muted); }
.single-journey .journey-audio { margin-bottom: 1.6rem; }

/* ---- Newsletter archive ---- */
.newsletter-archive { padding-block: clamp(1.8rem, 4vw, 3rem); }
.edition-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }

/* ---- Forms ---- */
.subscribe-form__row { display: flex; gap: 0.55rem; flex-wrap: wrap; }
.subscribe-form input[type="email"] {
	flex: 1; min-width: 200px;
	font: inherit;
	padding: 0.68em 1.1em;
	border: 1.5px solid var(--ozc-line);
	border-radius: 999px;
	background: var(--ozc-paper);
	color: var(--ozc-ink);
}
.subscribe-form input[type="email"]:focus { outline: none; border-color: var(--ozc-accent); box-shadow: 0 0 0 3px var(--ozc-accent-soft); }
.hp-field { position: absolute !important; left: -9999px !important; height: 1px; overflow: hidden; }

.talk-layout { padding-block: clamp(1.8rem, 4vw, 3rem); }
.talk-form { max-width: 720px; }
.talk-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.2rem; }
.field label, .field legend { display: block; font-weight: 650; font-size: 0.95rem; margin-bottom: 0.35em; font-family: var(--font-display); }
.field input[type="text"],
.field input[type="email"],
.field textarea {
	width: 100%;
	font: inherit;
	padding: 0.68em 1em;
	border: 1.5px solid var(--ozc-line);
	border-radius: var(--radius-sm);
	background: var(--ozc-paper);
	color: var(--ozc-ink);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--ozc-accent); box-shadow: 0 0 0 3px var(--ozc-accent-soft); }
.field--choices { border: 0; padding: 0; margin: 0 0 1.2rem; }
.field--choices label { display: inline-flex; align-items: center; gap: 0.4em; font-weight: 500; margin: 0 1.4em 0 0; font-family: var(--font-body); }
.field--submit { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; }
.field__note { font-size: 0.85rem; color: var(--ozc-muted); max-width: 30em; }

/* ---- Pagination ---- */
.pagination { margin-top: 2rem; }
.pagination .nav-links { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.pagination .page-numbers {
	display: inline-block; padding: 0.45em 0.95em;
	border: 1.5px solid var(--ozc-line); border-radius: 999px;
	text-decoration: none; font-weight: 600; color: var(--ozc-primary);
}
.pagination .page-numbers.current { background: var(--ozc-primary); border-color: var(--ozc-primary); color: #fff; }
.pagination .page-numbers:hover { border-color: var(--ozc-accent); background: var(--ozc-accent-soft); }

/* ---- Footer ---- */
.site-footer { background: var(--ozc-ink); color: color-mix(in srgb, #fff 82%, var(--ozc-ink)); margin-top: clamp(2rem, 6vw, 4rem); }
.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--ozc-accent); }
.site-footer__grid {
	display: grid; gap: 2.5rem;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) minmax(0, 1.2fr);
	padding-block: clamp(2.5rem, 6vw, 4rem);
}
.site-footer__mark .zero-ring { width: 44px; height: 44px; color: var(--ozc-accent); }
.site-footer__name { font-family: var(--font-display); font-weight: 750; font-size: var(--step-1); color: #fff; margin: 0.8rem 0 0.2rem; }
.site-footer__tag { font-size: 0.92rem; margin: 0; }
.site-footer__heading { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ozc-accent); margin-bottom: 0.9rem; }
.footer-list, .site-footer .nav-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.35rem; }
.footer-list a, .site-footer .nav-list a { text-decoration: none; font-size: 0.95rem; padding: 0; background: none; }
.site-footer__subscribe p { font-size: 0.95rem; }
.subscribe-form--footer input[type="email"] { background: color-mix(in srgb, #fff 8%, transparent); border-color: color-mix(in srgb, #fff 22%, transparent); color: #fff; }
.subscribe-form--footer input[type="email"]::placeholder { color: color-mix(in srgb, #fff 55%, transparent); }
.subscribe-form--footer .btn--solid { background: var(--ozc-accent); }
.subscribe-form--footer .btn--solid:hover { background: #fff; color: var(--ozc-ink); }

.site-footer__legal { border-top: 1px solid color-mix(in srgb, #fff 14%, transparent); padding-block: 1.6rem; }
.disclaimer { font-size: 0.82rem; line-height: 1.6; opacity: 0.78; max-width: 90ch; }
.disclaimer--affiliate { opacity: 0.65; }
.colophon { font-size: 0.82rem; opacity: 0.6; margin: 0.8em 0 0; }

/* ---- Magazine homepage ---- */
.hero--compact .hero__inner { padding-block: clamp(2.4rem, 6vw, 4.2rem); }
.hero--compact .hero__title { font-size: var(--step-3); }

.mag { padding-block: clamp(2.2rem, 5vw, 3.8rem); }
.mag-grid {
	display: grid; gap: 2.2rem 2.8rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.mag-block { min-width: 0; }
.mag-block__head {
	display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
	border-bottom: 2.5px solid var(--ozc-ink);
	padding-bottom: 0.55rem;
	margin-bottom: 1rem;
}
.mag-block__title { font-size: var(--step-2); margin: 0; display: flex; align-items: center; gap: 0.55rem; }
.mag-block__title a { color: var(--ozc-ink); text-decoration: none; }
.mag-block__title a:hover { color: var(--ozc-primary); }
.mag-block__ring .zero-ring { width: 22px; height: 22px; }
.mag-block__all {
	font-family: var(--font-display); font-weight: 650; font-size: 0.88rem;
	text-decoration: none; white-space: nowrap; color: var(--ozc-primary);
}
.mag-block__all:hover { color: var(--ozc-accent); }

.mag-item__meta {
	display: flex; align-items: center; gap: 0.6rem;
	font-size: 0.76rem; font-weight: 650; letter-spacing: 0.07em; text-transform: uppercase;
	color: var(--ozc-muted);
	margin: 0 0 0.3em;
}
.mag-item__section { color: var(--ozc-accent); }
.mag-item__section + time::before { content: '·'; margin-right: 0.6rem; opacity: 0.6; }

.mag-lead { padding-bottom: 1rem; border-bottom: 1px solid var(--ozc-line); margin-bottom: 0.4rem; }
.mag-lead__thumb { display: block; margin-bottom: 0.9rem; border-radius: var(--radius-sm); overflow: hidden; }
.mag-lead__thumb img { width: 100%; transition: transform 300ms ease; }
.mag-lead:hover .mag-lead__thumb img { transform: scale(1.025); }
.mag-lead__title { font-size: var(--step-2); line-height: 1.15; margin: 0 0 0.3em; }
.mag-lead__title a { color: var(--ozc-ink); text-decoration: none; }
.mag-lead__title a:hover { color: var(--ozc-primary); }
.mag-lead__excerpt { color: var(--ozc-muted); font-size: 0.95rem; margin: 0; }

.mag-item { padding: 0.75rem 0; border-bottom: 1px solid var(--ozc-line); }
.mag-item:last-child { border-bottom: 0; }
.mag-item__title { font-size: 1.05rem; line-height: 1.3; margin: 0; font-weight: 650; }
.mag-item__title a { color: var(--ozc-ink); text-decoration: none; }
.mag-item__title a:hover { color: var(--ozc-primary); }

/* ---- Scroll reveal (JS adds .is-visible; motion-safe only) ---- */
@media (prefers-reduced-motion: no-preference) {
	.reveal { opacity: 0; transform: translateY(14px); transition: opacity 500ms ease, transform 500ms ease; }
	.reveal.is-visible { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
	.hero__inner, .home-journey__inner, .home-newsletter__inner { grid-template-columns: 1fr; }
	.mag-grid { grid-template-columns: 1fr; }
	.hero__mark { order: -1; justify-content: flex-start; }
	.zero-ring--hero { width: 120px; }
	.single-newsletter .entry-layout { grid-template-columns: 1fr; }
	.entry-aside { position: static; }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
	.nav-toggle {
		display: inline-flex; align-items: center; gap: 0.5rem;
		margin-left: auto;
		background: transparent; border: 1.5px solid var(--ozc-line); border-radius: 999px;
		padding: 0.5em 1.1em; font: inherit; font-weight: 650; color: var(--ozc-ink);
		cursor: pointer;
	}
	.nav-toggle__bars { position: relative; width: 18px; height: 2px; background: currentColor; display: block; }
	.nav-toggle__bars::before, .nav-toggle__bars::after { content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: currentColor; }
	.nav-toggle__bars::before { top: -6px; }
	.nav-toggle__bars::after { top: 6px; }

	.site-nav {
		display: none;
		position: absolute; left: 0; right: 0; top: 100%;
		background: var(--ozc-paper);
		border-bottom: 1px solid var(--ozc-line);
		box-shadow: var(--shadow);
		padding: 1rem var(--gutter) 1.4rem;
		flex-direction: column; align-items: stretch; gap: 1rem;
	}
	.site-nav.is-open { display: flex; }
	.nav-list { flex-direction: column; gap: 0; }
	.nav-list a { padding: 0.7em 0.5em; font-size: 1rem; }
	.site-nav__search .search-form__input { width: 100%; flex: 1; }
	.site-nav__search .search-form { width: 100%; }
	.page-hero__mark { display: none; }
	.page-hero--single .page-hero__mark { display: none; }
}

@media (max-width: 600px) {
	.talk-form__row { grid-template-columns: 1fr; }
	.site-footer__grid { grid-template-columns: 1fr; }
	.hero__search { flex-direction: column; }
	.hero__search .btn { width: 100%; text-align: center; }
}

/* ---- Print ---- */
@media print {
	.site-header, .site-footer__subscribe, .hero__search, .nav-toggle, .site-nav { display: none !important; }
}
