/* =============================================================
   Battle Pencils — modern redesign stylesheet (child theme)
   Brand tokens carried from the original: red #CD2027, orange
   #E19526, graphite #221F18, gold #D4AF37, symbols ● ▲ ■.
   Fonts: zalamanderCaps (display) + proxima-nova (body).
   ============================================================= */

:root {
	--red: #CD2027;
	--red-dark: #a3161c;
	--orange: #E19526;
	--orange-light: #f0b34e;
	--gold: #D4AF37;
	--graphite: #221F18;
	--graphite-soft: #2e2a20;
	--ink: #26221b;
	--muted: #6b6459;
	--line: #ece7dd;
	--cream: #faf7f1;
	--paper: #ffffff;
	--sym-circle: #d72600;
	--sym-triangle: #0956bf;
	--sym-square: #379711;

	--maxw: 1180px;
	--radius: 18px;
	--radius-sm: 12px;
	--shadow-sm: 0 2px 8px rgba(34, 31, 24, .06);
	--shadow: 0 14px 40px -14px rgba(34, 31, 24, .22);
	--shadow-lg: 0 30px 60px -20px rgba(34, 31, 24, .3);
	--ring: 0 0 0 4px rgba(205, 32, 39, .18);
	--display: zalamanderCaps, "Arial Black", system-ui, sans-serif;
	--body: proxima-nova, "Segoe UI", system-ui, -apple-system, sans-serif;
	--ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- reset / base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; max-width: 100%; }
body {
	background: var(--paper);
	color: var(--ink);
	font-family: var(--body);
	font-size: 1.0625rem;
	line-height: 1.65;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color .2s; }
a:hover { color: var(--red-dark); }
svg { display: block; }
::selection { background: var(--orange); color: #fff; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

h1, h2, h3 { font-family: var(--display); font-weight: 900; line-height: .98; text-transform: uppercase; letter-spacing: .5px; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--display); font-weight: 900; text-transform: uppercase;
	letter-spacing: 1.5px; font-size: .82rem; color: var(--red);
	background: rgba(205, 32, 39, .08); border: 1px solid rgba(205, 32, 39, .18);
	padding: 7px 14px; border-radius: 999px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
.section-title { font-size: clamp(2rem, 4.4vw, 3.25rem); color: var(--graphite); }
.section-intro { max-width: 620px; color: var(--muted); font-size: 1.125rem; margin-top: 14px; }
.center { text-align: center; }
.center .section-intro { margin-left: auto; margin-right: auto; }
.head-block { margin-bottom: 52px; }

/* ---------- buttons ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	font-family: var(--display); font-weight: 900; text-transform: uppercase; letter-spacing: 1px;
	font-size: 1rem; line-height: 1; cursor: pointer;
	padding: 16px 28px; border-radius: 999px; border: 2px solid transparent;
	transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
	will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: linear-gradient(135deg, var(--red), #e23b2f); color: #fff; box-shadow: 0 12px 26px -10px rgba(205, 32, 39, .7); }
.btn-primary:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 18px 34px -10px rgba(205, 32, 39, .8); }
.btn-secondary { background: #fff; color: var(--graphite); border-color: var(--graphite); }
.btn-secondary:hover { transform: translateY(-3px); background: var(--graphite); color: #fff; }
.btn-ghost { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .5); }
.btn-ghost:hover { background: #fff; color: var(--graphite); transform: translateY(-3px); }

/* ---------- header / nav ---------- */
.site-header {
	position: fixed; top: 0; left: 0; right: 0; z-index: 100;
	transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
	padding: 24px 0;
}
.site-header.scrolled {
	background: rgba(255, 253, 250, .82);
	-webkit-backdrop-filter: saturate(180%) blur(16px); backdrop-filter: saturate(180%) blur(16px);
	box-shadow: 0 1px 0 var(--line), 0 10px 30px -18px rgba(34, 31, 24, .35);
	padding: 15px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; flex-direction: column; line-height: .8; font-family: var(--display); font-weight: 900; font-size: clamp(1.85rem, 4.2vw, 2.35rem); text-transform: uppercase; letter-spacing: .5px; transition: transform .2s var(--ease); }
.brand:hover { transform: rotate(-1.5deg) scale(1.03); }
.brand .b { color: var(--red); } .brand .p { color: var(--orange); }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link {
	position: relative; font-family: var(--display); font-weight: 900; text-transform: uppercase;
	letter-spacing: 1px; font-size: 1.08rem; color: var(--graphite); padding: 12px 20px; border-radius: 11px;
	transition: color .25s var(--ease);
}
.nav-link::after {
	content: ""; position: absolute; left: 20px; right: 20px; bottom: 6px; height: 3px; border-radius: 3px;
	background: linear-gradient(90deg, var(--red), var(--orange));
	transform: scaleX(0); transform-origin: center; transition: transform .3s var(--ease);
}
.nav-link:hover { color: var(--red); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--red); }
.nav-cta { margin-left: 12px; padding: 15px 30px; font-size: .98rem; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 10px; margin: -10px -8px -10px 0; border-radius: 10px; }
.nav-toggle span { display: block; width: 30px; height: 3px; background: var(--graphite); border-radius: 3px; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle span + span { margin-top: 6px; }

.nav-overlay {
	position: fixed; inset: 0; background: rgba(24, 20, 15, .48);
	-webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
	opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s var(--ease); z-index: 104;
}
.nav-overlay.show { opacity: 1; visibility: visible; }
body.nav-open { overflow: hidden; }

/* ---------- hero ---------- */
.hero {
	position: relative; padding: clamp(120px, 17vw, 190px) 0 clamp(70px, 9vw, 120px);
	background:
		radial-gradient(1100px 520px at 15% -10%, rgba(225, 149, 38, .18), transparent 60%),
		radial-gradient(900px 500px at 100% 0%, rgba(205, 32, 39, .16), transparent 55%),
		linear-gradient(180deg, #fffdf8, var(--cream));
	overflow: hidden;
}
.hero::after { /* subtle graph-paper grid */
	content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
	background-image: linear-gradient(rgba(34, 31, 24, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(34, 31, 24, .04) 1px, transparent 1px);
	background-size: 34px 34px; mask-image: radial-gradient(circle at 50% 30%, #000, transparent 78%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
/* prevent grid/flex children from forcing horizontal overflow */
.hero-copy, .hero-visual, .pencils-copy, .pencils-figure, .step-body, .step-media, .f-card > div, .trust-item, .footer-col, .footer-brand { min-width: 0; }
.hero h1 { font-size: clamp(1.7rem, 6.8vw, 5rem); color: var(--graphite); margin: 20px 0 0; overflow-wrap: anywhere; }
.hero h1 .accent { color: var(--red); }
.hero h1 .accent2 { color: var(--orange); }
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--muted); max-width: 540px; margin: 22px 0 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.chip {
	display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line);
	border-radius: 999px; padding: 9px 15px; font-weight: 600; font-size: .95rem; color: var(--ink);
	box-shadow: var(--shadow-sm);
}
.chip svg { width: 17px; height: 17px; color: var(--red); }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 420px; }
.hero-visual .glow {
	position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%;
	background: radial-gradient(circle, rgba(225, 149, 38, .5), rgba(205, 32, 39, .28) 45%, transparent 70%);
	filter: blur(8px); animation: pulse 6s ease-in-out infinite;
}
.hero-visual img.pencils { position: relative; z-index: 2; max-height: 540px; width: auto; filter: drop-shadow(0 30px 40px rgba(34, 31, 24, .28)); animation: float 6s ease-in-out infinite; }
.hero-badge {
	position: absolute; z-index: 3; background: #fff; border-radius: 16px; box-shadow: var(--shadow);
	padding: 12px 16px; display: flex; align-items: center; gap: 10px; font-weight: 700;
}
.hero-badge .vs { font-family: var(--display); font-weight: 900; color: var(--red); font-size: 1.5rem; }
.hero-badge.one { top: 12%; left: 2%; animation: float 5s ease-in-out infinite; }
.hero-badge.two { bottom: 12%; right: 0; animation: float 7s ease-in-out .5s infinite; }
.float-sym { position: absolute; z-index: 1; font-size: 1.4rem; opacity: .9; animation: float 8s ease-in-out infinite; }
.float-sym.c { color: var(--sym-circle); top: 6%; right: 20%; }
.float-sym.t { color: var(--sym-triangle); bottom: 20%; left: 8%; font-size: 1.7rem; animation-delay: 1s; }
.float-sym.s { color: var(--sym-square); top: 40%; right: 6%; animation-delay: 2s; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: .9; } 50% { transform: scale(1.06); opacity: 1; } }

/* ---------- marquee / trust strip ---------- */
.trust { background: var(--graphite); color: #fff; padding: 26px 0; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: space-around; gap: 22px; text-align: center; }
.trust-item { display: flex; flex-direction: column; gap: 2px; min-width: 120px; }
.trust-item .num { font-family: var(--display); font-weight: 900; font-size: 2.2rem; color: var(--orange); line-height: 1; }
.trust-item .lbl { font-size: .9rem; color: #d9d3c7; text-transform: uppercase; letter-spacing: 1px; }

/* ---------- features ---------- */
.features { background: linear-gradient(180deg, #fff, var(--cream)); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.f-card {
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
	box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
	display: flex; gap: 16px; align-items: flex-start;
}
.f-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(205, 32, 39, .3); }
.f-ic { flex: 0 0 auto; width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: rgba(205, 32, 39, .1); color: var(--red); }
.f-card:nth-child(3n+2) .f-ic { background: rgba(225, 149, 38, .14); color: var(--orange); }
.f-card:nth-child(3n+3) .f-ic { background: rgba(9, 86, 191, .1); color: var(--sym-triangle); }
.f-ic svg { width: 26px; height: 26px; }
.f-card h3 { font-size: 1.12rem; color: var(--graphite); text-transform: none; letter-spacing: 0; line-height: 1.2; margin-bottom: 4px; }
.f-card p { font-size: .95rem; color: var(--muted); margin: 0; }

/* ---------- the pencils ---------- */
.pencils-sec { background: var(--graphite); color: #fff; overflow: hidden; }
.pencils-sec .section-title { color: #fff; }
.pencils-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 50px; align-items: center; }
.pencils-copy p { color: #d9d3c7; margin-bottom: 16px; }
.pencils-copy .chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.pchip { display: inline-flex; align-items: center; gap: 6px; padding: 6px 13px; border-radius: 999px; font-weight: 700; font-size: .9rem; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16); color: #fff; }
.pchip .ping { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.pencils-figure { position: relative; display: flex; justify-content: center; }
.pencils-figure::before { content: ""; position: absolute; inset: -10% 0; background: radial-gradient(circle, rgba(225, 149, 38, .28), transparent 65%); filter: blur(10px); }
.pencils-figure img { position: relative; max-height: 560px; width: auto; }
.pencils-figure figcaption { position: absolute; bottom: -8px; width: 100%; text-align: center; font-size: .75rem; color: #9c968a; font-style: italic; }

/* ---------- how to play ---------- */
.htp { background: linear-gradient(180deg, var(--cream), #fff); }
.htp-overview { text-align: center; max-width: 720px; margin: 0 auto 56px; font-size: 1.15rem; color: var(--muted); }
.steps { display: flex; flex-direction: column; gap: 26px; }
.step {
	display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm);
}
.step.reverse .step-media { order: 2; }
.step-num { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.step-num b { font-family: var(--display); font-weight: 900; font-size: 1.5rem; color: #fff; background: var(--red); width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; }
.step.reverse .step-num b { background: var(--orange); color: var(--graphite); }
.step-num span { font-family: var(--display); font-weight: 900; text-transform: uppercase; letter-spacing: 1px; color: var(--graphite); font-size: 1.4rem; }
.step-body p { color: var(--ink); margin-bottom: 10px; }
.step-body em { color: var(--red); font-style: italic; }
.step-media img { border-radius: var(--radius-sm); width: 100%; }
.sym { display: inline-block; font-weight: 700; }
.sym.c { color: var(--sym-circle); } .sym.t { color: var(--sym-triangle); } .sym.s { color: var(--sym-square); }

/* ---------- CTA / subscribe ---------- */
.cta { position: relative; color: #fff; overflow: hidden; text-align: center; }
.cta .bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); }
.cta .overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(34, 31, 24, .93), rgba(163, 22, 28, .86)); }
.cta .container { position: relative; z-index: 2; }
.cta .section-title { color: #fff; font-size: clamp(2rem, 5vw, 3.4rem); }
.cta p.lead { color: #f3ede2; font-size: 1.2rem; max-width: 560px; margin: 16px auto 30px; }
.subscribe-form { display: flex; gap: 12px; justify-content: center; max-width: 520px; margin: 0 auto; flex-wrap: wrap; }
.subscribe-form input[type="email"] {
	flex: 1 1 260px; min-width: 220px; font-family: var(--body); font-size: 1rem; padding: 16px 20px;
	border-radius: 999px; border: 2px solid transparent; background: #fff; color: var(--ink); outline: none;
	transition: box-shadow .2s;
}
.subscribe-form input[type="email"]:focus { box-shadow: var(--ring); }
.subscribe-form input::placeholder { color: #b7b1a6; }
.bp-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
#bp-subscribe-btn { white-space: nowrap; }
#bp-subscribe-btn.loading { opacity: .65; pointer-events: none; }
.bp-subscribe-msg { min-height: 1.4em; margin-top: 16px; font-weight: 600; }
.bp-subscribe-msg.ok { color: #b6f0c4; }
.bp-subscribe-msg.error { color: #ffd0cf; }
.cta .fineprint { margin-top: 14px; font-size: .85rem; color: #d8d1c6; }

/* ---------- footer ---------- */
.site-footer {
	position: relative; background: #1a1712; color: #cdc7bb;
	padding: clamp(56px, 7vw, 84px) 0 30px; overflow: hidden;
}
.site-footer::before { /* brand gradient top accent */
	content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
	background: linear-gradient(90deg, var(--red), var(--orange), var(--red));
}
.site-footer::after { /* soft corner glow */
	content: ""; position: absolute; top: -45%; right: -8%; width: 460px; height: 460px; border-radius: 50%;
	background: radial-gradient(circle, rgba(225, 149, 38, .10), transparent 68%); pointer-events: none;
}
.footer-top { position: relative; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 40px 32px; align-items: start; }
.footer-brand .brand { font-size: 2rem; margin-bottom: 14px; }
.footer-brand p { color: #948d80; font-size: .95rem; max-width: 300px; line-height: 1.6; margin-bottom: 18px; }
.footer-syms { display: flex; gap: 12px; font-size: 1.15rem; line-height: 1; }
.footer-syms .c { color: var(--sym-circle); } .footer-syms .t { color: var(--sym-triangle); } .footer-syms .s { color: var(--sym-square); }
.footer-col h2 { font-family: var(--display); font-weight: 900; text-transform: uppercase; letter-spacing: 1.2px; color: #fff; font-size: 1rem; line-height: 1; margin-bottom: 16px; }
.footer-col > a { position: relative; display: block; width: -moz-max-content; width: max-content; max-width: 100%; color: #cdc7bb; padding: 6px 0; font-weight: 400; transition: color .2s, padding .25s var(--ease); }
.footer-col > a::before { content: ""; position: absolute; left: 0; top: 50%; width: 0; height: 2px; border-radius: 2px; background: var(--orange); transform: translateY(-50%); transition: width .25s var(--ease); }
.footer-col > a:hover { color: #fff; padding-left: 18px; }
.footer-col > a:hover::before { width: 12px; }
.coming-soon { color: #cdc7bb; cursor: help; border-bottom: 1px dotted #6d675c; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 44px; height: 44px; border-radius: 13px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .08); display: grid; place-items: center; transition: background .25s var(--ease), transform .25s var(--ease), border-color .25s; }
.footer-social a:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-4px) rotate(-4deg); }
.footer-social a.is-soon { cursor: default; opacity: .78; }
.footer-social a.is-soon:hover { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .08); transform: none; opacity: 1; }
.footer-social svg { width: 20px; height: 20px; fill: #fff; }
.footer-bottom { position: relative; margin-top: clamp(40px, 5vw, 56px); padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .09); display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; font-size: .85rem; color: #8a8377; }
.footer-bottom a { color: #8a8377; transition: color .2s; }
.footer-bottom a:hover { color: var(--orange); }
.footer-credit { font-size: .78rem; }
.footer-backtop { display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 900; text-transform: uppercase; letter-spacing: .8px; font-size: .78rem; color: #cdc7bb; }
.footer-backtop svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.footer-backtop:hover { color: var(--orange); }
.footer-backtop:hover svg { transform: translateY(-3px); }

/* in-body coming-soon links (The Pencils copy) keep the accent look */
.pencils-copy .coming-soon { color: var(--orange-light); border-bottom-color: rgba(240, 179, 78, .5); }

/* ---------- scroll to top ---------- */
#toTop {
	position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 48px; height: 48px; border-radius: 14px;
	background: var(--graphite); color: #fff; border: 0; cursor: pointer; display: grid; place-items: center;
	opacity: 0; transform: translateY(12px); pointer-events: none; transition: .3s var(--ease); box-shadow: var(--shadow);
}
#toTop.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
#toTop:hover { background: var(--red); }
#toTop svg { width: 22px; height: 22px; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
	.hero-grid { grid-template-columns: 1fr; text-align: center; }
	.hero-sub { margin-left: auto; margin-right: auto; }
	.hero-cta, .hero-chips { justify-content: center; }
	.hero-visual { order: -1; min-height: 340px; }
	.hero-visual img.pencils { max-height: 380px; }
	.pencils-grid { grid-template-columns: 1fr; gap: 34px; }
	.pencils-figure { order: -1; }
	.feature-grid { grid-template-columns: repeat(2, 1fr); }
	.footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
	.nav-toggle { display: block; position: relative; z-index: 106; }
	.nav-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
	.nav-toggle.open span:nth-child(2) { opacity: 0; }
	.nav-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
	.nav-links {
		position: fixed; top: 0; right: 0; bottom: 0; width: min(86vw, 350px);
		flex-direction: column; align-items: stretch; justify-content: flex-start;
		background: #fff; padding: 92px 22px 32px; gap: 4px;
		box-shadow: -24px 0 60px -24px rgba(0, 0, 0, .45);
		transform: translateX(100%); transition: transform .42s var(--ease);
		z-index: 105; overflow-y: auto; -webkit-overflow-scrolling: touch;
	}
	.nav-links.open { transform: none; }
	.nav-link {
		font-size: 1.18rem; padding: 15px 16px; border-radius: 12px; border-left: 3px solid transparent;
		opacity: 0; transform: translateX(18px);
		transition: opacity .3s var(--ease), transform .3s var(--ease), color .2s, background .2s, border-color .2s;
	}
	.nav-link::after { display: none; }
	.nav-link:hover { background: rgba(205, 32, 39, .06); }
	.nav-link.active { color: var(--red); background: rgba(205, 32, 39, .07); border-left-color: var(--red); }
	.nav-links.open .nav-link { opacity: 1; transform: none; }
	.nav-links.open .nav-link:nth-child(1) { transition-delay: .10s; }
	.nav-links.open .nav-link:nth-child(2) { transition-delay: .16s; }
	.nav-links.open .nav-link:nth-child(3) { transition-delay: .22s; }
	.nav-cta { margin: 16px 0 0; width: 100%; opacity: 0; transform: translateX(18px);
		transition: opacity .3s var(--ease) .28s, transform .3s var(--ease) .28s, background .2s, box-shadow .25s; }
	.nav-links.open .nav-cta { opacity: 1; transform: none; }
	.step, .step.reverse .step-media { grid-template-columns: 1fr; }
	.step .step-media { order: -1 !important; }
	.feature-grid { grid-template-columns: 1fr; }
	.footer-top { grid-template-columns: 1fr 1fr; gap: 30px 24px; }
	.footer-brand { grid-column: 1 / -1; }
	.footer-bottom { justify-content: center; text-align: center; }
	.hero h1 { letter-spacing: 0; }
	/* trust strip: auto-fit so it never overflows at any phone width */
	.trust-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(108px, 1fr)); gap: 22px 10px; }
	.trust-item .num { font-size: 1.7rem; }
	.container { padding: 0 20px; }
}

/* ---------- sub-pages (Terms, Privacy, Penagerie, Contact) ---------- */
.page-main { padding-top: clamp(108px, 12vw, 150px); }
.page-hero {
	text-align: center; padding: clamp(28px, 4vw, 46px) 0 clamp(24px, 3vw, 36px);
	background:
		radial-gradient(900px 380px at 20% -20%, rgba(225, 149, 38, .16), transparent 60%),
		radial-gradient(700px 360px at 100% -10%, rgba(205, 32, 39, .13), transparent 55%),
		linear-gradient(180deg, #fffdf8, var(--cream));
}
.page-hero h1 { font-family: var(--display); font-weight: 900; text-transform: uppercase; letter-spacing: .5px; color: var(--graphite); font-size: clamp(2.1rem, 5vw, 3.3rem); line-height: 1; margin-top: 14px; }
.page-hero .page-sub { color: var(--muted); font-size: 1.12rem; margin: 16px auto 0; max-width: 620px; }
.page-hero .rule { width: 88px; height: 4px; border-radius: 3px; background: linear-gradient(90deg, var(--red), var(--orange)); margin: 22px auto 0; }
.page-body { padding: clamp(36px, 5vw, 64px) 0 clamp(64px, 8vw, 104px); }

.page-prose { max-width: 760px; margin: 0 auto; font-size: 1.075rem; line-height: 1.75; color: var(--ink); }
.page-prose > *:first-child { margin-top: 0; }
.page-prose h2 { font-family: var(--display); font-weight: 900; text-transform: uppercase; letter-spacing: .5px; color: var(--graphite); font-size: clamp(1.35rem, 3vw, 1.85rem); line-height: 1.12; margin: 42px 0 14px; }
.page-prose h3 { font-weight: 700; color: var(--graphite); font-size: 1.18rem; margin: 28px 0 10px; }
.page-prose p { margin: 0 0 16px; }
.page-prose ul, .page-prose ol { margin: 0 0 18px; padding-left: 1.35em; }
.page-prose li { margin-bottom: 8px; }
.page-prose a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }
.page-prose a:hover { color: var(--red-dark); }
.page-prose strong { color: var(--graphite); }
.page-note { max-width: 760px; margin: 26px auto 0; font-size: .92rem; color: var(--muted); background: var(--cream); border-left: 3px solid var(--orange); padding: 14px 18px; border-radius: 8px; }
.page-meta { text-align: center; color: var(--muted); font-size: .9rem; margin-bottom: 8px; }

/* Penagerie character cards */
.pen-heading { text-align: center; font-family: var(--display); font-weight: 900; text-transform: uppercase; letter-spacing: .5px; color: var(--graphite); font-size: clamp(1.5rem, 3.4vw, 2.1rem); line-height: 1; margin: 8px 0 26px; }
.pen-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 880px; margin: 0 auto; }
.pen-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s; }
.pen-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(205, 32, 39, .3); }
.pen-card .tag { display: inline-block; font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .7px; color: var(--red); background: rgba(205, 32, 39, .09); padding: 4px 11px; border-radius: 999px; margin-bottom: 12px; }
.pen-card h3 { font-family: var(--display); font-weight: 900; text-transform: uppercase; color: var(--graphite); font-size: 1.3rem; margin-bottom: 8px; }
.pen-card p { color: var(--muted); font-size: .98rem; margin: 0; }

/* Contact */
.contact-methods { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 0 auto clamp(32px, 4vw, 44px); max-width: 620px; }
.contact-chip { display: inline-flex; align-items: center; gap: 9px; padding: 11px 18px; border: 1px solid var(--line); border-radius: 999px; font-weight: 600; color: var(--ink); background: #fff; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), border-color .2s; }
.contact-chip:hover { transform: translateY(-2px); border-color: rgba(205, 32, 39, .3); color: var(--ink); }
.contact-chip svg { width: 18px; height: 18px; color: var(--red); }
.contact-wrap { max-width: 620px; margin: 0 auto; }
.contact-form { display: grid; gap: 15px; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form label { font-weight: 600; font-size: .92rem; color: var(--graphite); display: block; margin-bottom: 6px; }
.contact-form input, .contact-form textarea { width: 100%; font-family: var(--body); font-size: 1rem; padding: 13px 16px; border: 2px solid var(--line); border-radius: 12px; background: #fff; color: var(--ink); outline: none; transition: border-color .2s, box-shadow .2s; }
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(225, 149, 38, .16); }
.contact-actions { margin-top: 4px; }
.bp-form-msg { min-height: 1.3em; margin-top: 6px; font-weight: 600; }
.bp-form-msg.ok { color: #2e7d32; } .bp-form-msg.error { color: var(--red); }

@media (max-width: 560px) {
	.pen-grid { grid-template-columns: 1fr; }
	.contact-form .row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
	* { animation: none !important; scroll-behavior: auto !important; }
	.reveal { opacity: 1; transform: none; transition: none; }
	.nav-link, .nav-cta { opacity: 1 !important; transform: none !important; transition: color .2s, background .2s !important; }
}
