/* ═══════════════════════════════════════
   RENEWEDPRINT — SHARED STYLES
   Font: Urbanist (Google Fonts)
   Accent: #E8600A (orange only)
═══════════════════════════════════════ */

:root {
    --white:      #FFFFFF;
    --off:        #F8F8F7;
    --black:      #0F0F0F;
    --grey:       #6B6B6B;
    --grey-light: #ADADAD;
    --border:     #E8E8E6;
    --orange:     #E8600A;
    --orange-bg:  #FFF4EE;
    --green:      #16A34A;
    --font:       'Urbanist', sans-serif;
    --r-sm: 6px; --r-md: 12px; --r-lg: 18px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--white);
    color: var(--black);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    font-size: 15px;
    line-height: 1.6;
}

/* ── NAV ─────────────────────────────── */
.nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: 60px; padding: 0 40px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
    font-family: var(--font); font-size: 18px; font-weight: 800;
    color: var(--black); text-decoration: none; letter-spacing: -.3px;
    flex-shrink: 0;
}
.nav-logo .o { color: var(--orange); }
.nav-links {
    display: flex; align-items: center; gap: 32px;
}
.nav-links a {
    font-size: 13px; font-weight: 500; color: var(--grey);
    text-decoration: none; transition: color .15s;
    white-space: nowrap;
}
.nav-links a:hover { color: var(--black); }
.nav-right {
    font-size: 13px; font-weight: 500; color: var(--grey);
    display: flex; align-items: center; gap: 5px; flex-shrink: 0;
}
.nav-right em { color: #F59E0B; font-style: normal; }

/* ── FOOTER ──────────────────────────── */
footer {
    background: var(--black);
    padding: 48px 40px;
}
.ft-inner {
    max-width: 1140px; margin: 0 auto;
    display: flex; flex-direction: column; align-items: center;
    gap: 20px; text-align: center;
}
.ft-logo {
    font-family: var(--font); font-size: 20px; font-weight: 800; color: #fff;
}
.ft-logo span { color: var(--orange); }
.ft-links {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 24px;
}
.ft-links a {
    font-size: 13px; font-weight: 500; color: rgba(255,255,255,.45);
    text-decoration: none; transition: color .15s;
}
.ft-links a:hover { color: rgba(255,255,255,.8); }
.ft-copy {
    font-size: 12px; color: rgba(255,255,255,.25);
    line-height: 1.8; max-width: 520px;
}

/* ── BUTTONS ─────────────────────────── */
.btn-orange {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--orange); color: #fff;
    text-decoration: none; padding: 16px 32px;
    border-radius: var(--r-md); font-size: 16px; font-weight: 700;
    border: none; cursor: pointer; width: 100%;
    transition: background .15s, transform .15s;
    letter-spacing: -.2px;
}
.btn-orange:hover { background: #d45509; transform: translateY(-1px); }
.btn-orange:active { transform: translateY(0); }

.btn-outline {
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent; color: var(--black);
    text-decoration: none; padding: 14px 32px;
    border-radius: var(--r-md); font-size: 15px; font-weight: 600;
    border: 1.5px solid var(--border); cursor: pointer;
    transition: border-color .15s, color .15s;
    letter-spacing: -.2px;
}
.btn-outline:hover { border-color: var(--black); }

/* ── INNER PAGE LAYOUT ───────────────── */
.page-wrap {
    max-width: 760px; margin: 0 auto; padding: 64px 32px 96px;
}
.page-wrap h1 {
    font-size: clamp(28px, 3.5vw, 40px); font-weight: 800;
    letter-spacing: -1px; line-height: 1.08; margin-bottom: 10px;
}
.page-eyebrow {
    font-size: 11px; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--orange); margin-bottom: 12px;
}
.page-intro {
    font-size: 16px; color: var(--grey); line-height: 1.7;
    margin-bottom: 48px; border-bottom: 1px solid var(--border); padding-bottom: 40px;
}
.page-wrap h2 {
    font-size: 18px; font-weight: 700; letter-spacing: -.3px;
    margin: 40px 0 14px;
}
.page-wrap p { color: var(--grey); line-height: 1.8; margin-bottom: 14px; }
.page-wrap ul, .page-wrap ol {
    color: var(--grey); line-height: 1.8; padding-left: 20px; margin-bottom: 14px;
}
.page-wrap li { margin-bottom: 6px; }
.page-wrap a { color: var(--orange); text-decoration: none; }
.page-wrap a:hover { text-decoration: underline; }

.info-card {
    background: var(--off); border: 1px solid var(--border);
    border-radius: var(--r-lg); padding: 28px 32px; margin: 28px 0;
}
.info-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.info-card p, .info-card ul { font-size: 14px; }

/* ── STICKY MOBILE BAR ───────────────── */
.sm-bar {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    background: #fff; border-top: 1px solid var(--border);
    padding: 12px 20px; z-index: 99;
    align-items: center; justify-content: space-between; gap: 12px;
}
.sm-was { font-size: 11px; color: var(--grey-light); text-decoration: line-through; }
.sm-now { font-size: 22px; font-weight: 800; letter-spacing: -1px; }
.sm-btn {
    background: var(--orange); color: #fff; text-decoration: none;
    padding: 12px 22px; border-radius: var(--r-sm);
    font-size: 14px; font-weight: 700; white-space: nowrap;
}

/* ── RESPONSIVE ──────────────────────── */
@media (max-width: 768px) {
    .nav { padding: 0 20px; }
    .nav-links { display: none; }
    .sm-bar { display: flex; }
    body { padding-bottom: 76px; }
    footer { padding: 40px 20px; }
    .page-wrap { padding: 40px 20px 72px; }
}
