*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }

:root {
  --ink: #0a0a0a; --ink2: #444; --ink3: #767676; --ink4: #aaa;
  --surface: #fafaf8; --s2: #f2f0eb; --accent: #e8562a; --ah: #c94420;
  --navy: #14203b; --teal: #00BDD6; --border: rgba(0,0,0,0.08);
  --r: 4px; --rl: 10px; --max: 1100px;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth }
body { font-family: var(--sans); background: var(--surface); color: var(--ink); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased }

/* PAGE INTRO */
.tp-intro { background: var(--navy); padding: 4rem 2rem 3.5rem; position: relative; overflow: hidden }
.tp-intro::after { content: ''; position: absolute; top: -80px; right: -60px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(232,86,42,0.1) 0%, transparent 60%); pointer-events: none }
.tp-intro-i { max-width: 1040px; margin: 0 auto; position: relative; z-index: 1 }
.tp-eyebrow { font-size: 0.67rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 0.9rem }
.tp-h1 { font-family: var(--serif); font-size: clamp(1.6rem, 3.5vw, 2.4rem); color: #fff; font-weight: 400; line-height: 1.15; letter-spacing: -0.01em; margin-bottom: 0.9rem }
.tp-sub { font-size: 1rem; color: rgba(255,255,255,0.62); max-width: 620px; line-height: 1.7; margin-bottom: 1.5rem }
.tp-note { display: inline-block; font-size: 0.78rem; color: rgba(255,255,255,0.32); border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; padding: 0.35rem 0.75rem; line-height: 1.5 }

/* BACK LINK */
.tp-back { max-width: 1040px; margin: 0 auto; padding: 1.2rem 1.5rem 0; font-size: 0.82rem }
.tp-back a { color: var(--ink3); text-decoration: none; display: inline-flex; align-items: center; gap: 0.3rem; transition: color 0.15s }
.tp-back a:hover { color: var(--accent) }

/* BOTTOM CTA */
.tp-cta { background: var(--s2); border-top: 1px solid var(--border); padding: 4rem 2rem; text-align: center }
.tp-cta-i { max-width: 560px; margin: 0 auto }
.tp-cta-title { font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2rem); color: var(--navy); margin-bottom: 0.7rem; font-weight: 400 }
.tp-cta-body { font-size: 0.95rem; color: var(--ink2); line-height: 1.7; margin-bottom: 1.75rem }
.tp-cta-btn { background: var(--accent); color: #fff; padding: 0.85rem 1.75rem; border-radius: var(--r); font-size: 0.92rem; font-weight: 600; text-decoration: none; display: inline-block; transition: background 0.18s, transform 0.18s, box-shadow 0.18s }
.tp-cta-btn:hover { background: var(--ah); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(232,86,42,0.4) }
.tp-cta-note { font-size: 0.78rem; color: var(--ink3); margin-top: 0.9rem }

/* FOOTER */
footer { background: #080808; color: rgba(255,255,255,0.45); padding: 3rem 2rem }
.foot-i { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem }
.foot-logo { font-family: var(--serif); font-size: 1.1rem; color: rgba(255,255,255,0.8); text-decoration: none; display: block; margin-bottom: 0.8rem }
.foot-logo span { color: var(--accent) }
.foot-tag { font-size: 0.8rem; line-height: 1.6 }
.foot-col h5 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.25); margin-bottom: 1rem; font-weight: 400 }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem }
.foot-col a { font-size: 0.8rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s }
.foot-col a:hover { color: rgba(255,255,255,0.8) }
.foot-btm { max-width: var(--max); margin: 2rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.07); display: flex; justify-content: space-between; font-size: 0.73rem; color: rgba(255,255,255,0.2); flex-wrap: wrap; gap: 0.5rem }
.foot-btm a { color: rgba(255,255,255,0.55); text-decoration: none }
.foot-btm a:hover { color: rgba(255,255,255,0.85) }

@media (max-width: 768px) { .tp-intro { padding: 3rem 1.25rem 2.5rem } }
@media (max-width: 600px) { .foot-i { grid-template-columns: 1fr } }
@media (max-width: 900px) { .foot-i { grid-template-columns: 1fr 1fr } }
