/*
Theme Name: The Lazy Owner
Theme URI: https://thelazyowner.com
Author: AI or Die Now
Author URI: https://aiordienow.com
Description: Premium WordPress theme for The Lazy Owner — a magazine-meets-tech-startup for business owners who value their time. Golden yellow brand, Space Grotesk typography, GSAP scroll animations, and conversion-optimized layouts.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: thelazyowner
Tags: golden, premium, magazine, newsletter, ai, business, custom-menu, custom-logo, featured-images, threaded-comments
*/

/* ═══════════════════════════════════════════════════════════════
   THE LAZY OWNER — Design System v2
   Golden Yellow #F5B800 · Cream #FAF8F2 · Charcoal #2D2D2D
   Apple meets high-end lifestyle blog
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&family=Playfair+Display:ital,wght@0,400;1,400&display=swap');

:root {
    --gold:         #F5B800;
    --gold-dark:    #D4A000;
    --gold-bright:  #FFD700;
    --gold-glow:    rgba(245,184,0,0.12);

    --cream:        #FAF8F2;
    --white:        #FFFFFF;
    --charcoal:     #2D2D2D;
    --rich-black:   #111111;
    --near-black:   #1A1A1A;

    --text:         #1A1A1A;
    --text-sec:     #6B6B6B;
    --text-white:   #FFFFFF;

    --shadow:       0 4px 24px rgba(0,0,0,0.06);
    --shadow-hover: 0 12px 40px rgba(0,0,0,0.10);
    --radius:       16px;
    --radius-sm:    12px;
    --radius-pill:  999px;

    --font-head:    'Space Grotesk', sans-serif;
    --font-body:    'Inter', sans-serif;
    --font-mono:    'JetBrains Mono', monospace;
    --font-serif:   'Playfair Display', serif;

    --ease:         cubic-bezier(0.16, 1, 0.3, 1);
    --transition:   0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: var(--text); }
a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }
ul,ol { list-style: none; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.label { font-family: var(--font-mono); font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 3px; color: var(--gold); margin-bottom: 16px; }
.label--dark { color: var(--charcoal); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 32px; border-radius: var(--radius-pill);
    font-family: var(--font-head); font-size: 15px; font-weight: 600;
    cursor: pointer; border: 2px solid transparent;
    transition: all var(--transition); text-decoration: none;
}
.btn:active { transform: scale(0.98) translateY(1px); }
.btn--primary { background: var(--near-black); color: #fff; border-color: var(--near-black); }
.btn--primary:hover { background: #fff; color: var(--near-black); }
.btn--outline { background: transparent; color: var(--near-black); border-color: var(--near-black); }
.btn--outline:hover { background: var(--near-black); color: #fff; }
.btn--gold { background: var(--gold); color: var(--near-black); border-color: var(--gold); }
.btn--gold:hover { background: var(--near-black); color: var(--gold); border-color: var(--near-black); }
.btn--gold-dark { background: var(--gold); color: var(--near-black); border-color: var(--gold); }
.btn--gold-dark:hover { background: var(--gold-bright); }
.btn--white { background: #fff; color: var(--near-black); border-color: #fff; }
.btn--white:hover { background: var(--near-black); color: #fff; border-color: var(--near-black); }
.btn--lg { padding: 20px 40px; font-size: 17px; }

/* ── Announcement Bar ──────────────────────────────────────── */
.announce-bar {
    background: var(--charcoal); color: var(--gold);
    font-family: var(--font-mono); font-size: 13px; font-weight: 500;
    height: 40px; display: flex; align-items: center;
    overflow: hidden; position: relative; z-index: 1001;
}
.announce-bar__track {
    display: flex; white-space: nowrap;
    animation: ticker 30s linear infinite;
}
.announce-bar__track span { padding: 0 48px; }
.announce-bar__close {
    position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
    background: none; border: none; color: var(--text-sec); cursor: pointer;
    font-size: 18px; line-height: 1; padding: 4px;
    transition: color var(--transition);
}
.announce-bar__close:hover { color: #fff; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── Navigation ────────────────────────────────────────────── */
.site-nav {
    position: fixed; top: 40px; left: 0; right: 0; z-index: 1000;
    padding: 16px 0;
    background: transparent;
    transition: all var(--transition);
}
.site-nav.no-bar { top: 0; }
.site-nav.scrolled {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
    padding: 12px 0;
}
.site-nav__inner { display: flex; align-items: center; justify-content: space-between; }
.site-nav__brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.site-nav__brand img { height: 44px; width: auto; border-radius: 8px; transition: transform var(--transition); }
.site-nav__brand:hover img { transform: rotate(-3deg) scale(1.05); }
.site-nav__brand-text { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--near-black); }

.site-nav__center { display: flex; gap: 36px; }
.site-nav__center a {
    font-family: var(--font-head); font-size: 14px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 3px; color: var(--text);
    position: relative; text-decoration: none;
}
.site-nav__center a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--gold);
    transition: width var(--transition);
}
.site-nav__center a:hover { color: var(--near-black); }
.site-nav__center a:hover::after { width: 100%; }

.site-nav__right { display: flex; align-items: center; gap: 16px; }
.site-nav__search-btn {
    background: none; border: none; cursor: pointer; padding: 8px;
    color: var(--text); transition: color var(--transition);
}
.site-nav__search-btn:hover { color: var(--gold); }
.site-nav__search-btn svg { width: 20px; height: 20px; }

.site-nav__subscribe {
    padding: 10px 24px; border-radius: var(--radius-pill);
    background: var(--gold); color: var(--near-black);
    font-family: var(--font-head); font-size: 14px; font-weight: 600;
    border: 2px solid var(--gold); transition: all var(--transition);
    text-decoration: none;
}
.site-nav__subscribe:hover { background: var(--near-black); color: var(--gold); border-color: var(--near-black); }

/* Mobile burger */
.site-nav__burger { display: none; background: none; border: none; cursor: pointer; padding: 4px; flex-direction: column; gap: 5px; }
.site-nav__burger span { display: block; width: 24px; height: 2px; background: var(--near-black); transition: all var(--transition); }

/* WP Menu */
.nav-wp-menu { display: flex; gap: 36px; list-style: none; }
.nav-wp-menu li a {
    font-family: var(--font-head); font-size: 14px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 3px; color: var(--text);
    position: relative; transition: color var(--transition);
}
.nav-wp-menu li a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--gold);
    transition: width var(--transition);
}
.nav-wp-menu li a:hover::after { width: 100%; }
.nav-wp-menu .sub-menu { display: none; }

/* ── HERO — Golden Yellow Full-Screen ─────────────────────── */
.hero {
    min-height: 100vh; background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    position: relative; padding: 120px 0 80px; overflow: hidden;
    text-align: center;
}
.hero__content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.hero__label {
    font-family: var(--font-mono); font-size: 13px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 4px; color: var(--charcoal);
    margin-bottom: 20px;
}
.hero__title { font-size: clamp(48px, 6vw, 80px); color: var(--near-black); margin-bottom: 24px; line-height: 0.95; }
.hero__title .period { color: #fff; }
.hero__desc { font-size: 20px; color: rgba(26,26,26,0.75); margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }
.hero__ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__visual {
    position: relative; z-index: 1; margin-top: 48px;
}
.hero__logo-img {
    max-width: 340px; margin: 0 auto;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
/* Animated Z's */
.hero__zzz { position: absolute; top: -40px; right: -20px; z-index: 3; }
.hero__zzz span {
    position: absolute; font-family: var(--font-head); font-weight: 700;
    color: var(--charcoal); opacity: 0;
    animation: zzz 3s ease-in-out infinite;
}
.hero__zzz span:nth-child(1) { font-size: 18px; right: 0; animation-delay: 0s; }
.hero__zzz span:nth-child(2) { font-size: 24px; right: 15px; animation-delay: 0.7s; }
.hero__zzz span:nth-child(3) { font-size: 32px; right: 30px; animation-delay: 1.4s; }
@keyframes zzz {
    0% { opacity: 0; transform: translate(0, 0) rotate(0deg); }
    30% { opacity: 0.7; }
    100% { opacity: 0; transform: translate(20px, -50px) rotate(15deg); }
}

.hero__scroll-hint {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    text-align: center;
}
.hero__scroll-hint span {
    font-family: var(--font-mono); font-size: 11px; text-transform: uppercase;
    letter-spacing: 2px; color: var(--charcoal); opacity: 0.6;
}
.hero__scroll-hint svg { margin: 8px auto 0; animation: bounce-down 2s ease-in-out infinite; }
@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ── Social Proof Ticker ──────────────────────────────────── */
.ticker {
    background: var(--near-black); padding: 18px 0; overflow: hidden;
}
.ticker__track {
    display: flex; white-space: nowrap;
    animation: ticker 25s linear infinite;
}
.ticker__track span {
    font-family: var(--font-mono); font-size: 13px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 2px;
    color: rgba(255,255,255,0.7); padding: 0 40px;
}

/* ── Section Defaults ──────────────────────────────────────── */
.section { padding: 100px 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--dark { background: var(--near-black); color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .label { color: var(--gold); }
.section--gold { background: var(--gold); color: var(--near-black); }
.section-header { margin-bottom: 56px; }
.section-header h2 { font-size: clamp(32px,4vw,48px); margin-bottom: 16px; }
.section-header p { font-size: 18px; color: var(--text-sec); max-width: 580px; line-height: 1.7; }
.section-header--center { text-align: center; }
.section-header--center p { margin: 0 auto; }

/* ── Intro Section (2 col) ─────────────────────────────────── */
.intro__grid { display: grid; grid-template-columns: 3fr 2fr; gap: 80px; align-items: center; }
.intro__features { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.intro__feature { display: flex; gap: 16px; align-items: flex-start; }
.intro__feature-icon { width: 40px; height: 40px; background: var(--gold); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; }
.intro__feature h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.intro__feature p { font-size: 15px; color: var(--text-sec); }
.intro__visual img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* ── Featured Posts ────────────────────────────────────────── */
.featured-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.featured-header a { font-family: var(--font-head); font-weight: 600; color: var(--text); position: relative; }
.featured-header a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width var(--transition); }
.featured-header a:hover::after { width: 100%; }

.featured__grid { display: grid; grid-template-columns: 3fr 2fr; gap: 28px; }
.featured__main { border-radius: var(--radius); overflow: hidden; position: relative; min-height: 480px; }
.featured__main-img { position: absolute; inset: 0; }
.featured__main-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.featured__main:hover .featured__main-img img { transform: scale(1.04); }
.featured__main-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 36px; z-index: 1;
}
.featured__main-cat {
    display: inline-block; padding: 4px 12px; border-radius: var(--radius-pill);
    background: var(--gold); color: var(--near-black);
    font-family: var(--font-mono); font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 1px;
    width: fit-content; margin-bottom: 12px;
}
.featured__main-title { font-size: 32px; color: #fff; margin-bottom: 10px; }
.featured__main-excerpt { font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 12px; }
.featured__main-meta { font-size: 13px; color: rgba(255,255,255,0.5); }

.featured__sidebar { display: flex; flex-direction: column; gap: 20px; }
.featured__side-card {
    display: flex; gap: 16px; padding: 20px;
    background: var(--white); border-radius: var(--radius-sm);
    border: 1px solid rgba(0,0,0,0.06);
    transition: all var(--transition); cursor: pointer;
}
.featured__side-card:hover { transform: translateX(4px); border-left: 3px solid var(--gold); }
.featured__side-thumb { width: 100px; height: 100px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; background: var(--cream); }
.featured__side-thumb img { width: 100%; height: 100%; object-fit: cover; }
.featured__side-cat { font-family: var(--font-mono); font-size: 11px; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.featured__side-title { font-size: 17px; font-weight: 600; line-height: 1.3; margin-bottom: 8px; }
.featured__side-meta { font-size: 12px; color: var(--text-sec); }

/* ── Category Cards ────────────────────────────────────────── */
.cats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cat-card {
    aspect-ratio: 3/4; border-radius: 20px; padding: 36px;
    display: flex; flex-direction: column; justify-content: flex-end;
    position: relative; overflow: hidden;
    transition: all var(--transition); cursor: pointer;
}
.cat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.cat-card--gold { background: var(--gold); color: var(--near-black); }
.cat-card--dark { background: var(--charcoal); color: #fff; }
.cat-card--cream { background: var(--cream); color: var(--near-black); border: 1px solid rgba(0,0,0,0.08); }
.cat-card--black { background: var(--near-black); color: #fff; }
.cat-card__icon { font-size: 48px; margin-bottom: auto; padding-top: 8px; transition: transform var(--transition); }
.cat-card:hover .cat-card__icon { transform: rotate(8deg) scale(1.1); }
.cat-card h3 { font-size: 24px; margin-bottom: 8px; }
.cat-card p { font-size: 14px; opacity: 0.75; margin-bottom: 12px; }
.cat-card__count { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.5; }

/* ── Newsletter CTA (Dark) ─────────────────────────────────── */
.newsletter { padding: 120px 0; background: var(--near-black); color: #fff; text-align: center; position: relative; overflow: hidden; }
.newsletter__bg-char { position: absolute; right: -5%; bottom: -10%; opacity: 0.08; width: 500px; pointer-events: none; }
.newsletter h2 { font-size: clamp(36px, 5vw, 56px); color: #fff; margin-bottom: 16px; }
.newsletter p { font-size: 18px; color: #888; margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }
.newsletter__form { display: flex; gap: 0; max-width: 480px; margin: 0 auto; }
.newsletter__form input {
    flex: 1; padding: 16px 24px; border: none; outline: none;
    background: var(--charcoal); color: #fff;
    border-radius: var(--radius-pill) 0 0 var(--radius-pill);
    font-family: var(--font-body); font-size: 16px;
}
.newsletter__form input::placeholder { color: #666; }
.newsletter__form button {
    padding: 16px 28px; border: none;
    background: var(--gold); color: var(--near-black);
    border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
    font-family: var(--font-head); font-size: 15px; font-weight: 600;
    cursor: pointer; transition: background var(--transition);
    white-space: nowrap;
}
.newsletter__form button:hover { background: var(--gold-bright); }
.newsletter__fine { font-size: 13px; color: #555; margin-top: 16px; }

/* ── How it Works ──────────────────────────────────────────── */
.steps__grid { display: flex; gap: 48px; align-items: flex-start; justify-content: center; position: relative; }
.step { text-align: center; flex: 1; max-width: 300px; }
.step__num {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--gold); color: var(--near-black);
    font-family: var(--font-head); font-size: 24px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.step h3 { font-size: 24px; margin-bottom: 12px; }
.step p { font-size: 16px; color: var(--text-sec); }
.steps__connector {
    position: absolute; top: 32px; left: 15%; right: 15%;
    height: 2px; border-top: 2px dashed rgba(0,0,0,0.12);
    z-index: 0;
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer { background: var(--near-black); padding: 80px 0 0; color: #fff; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 48px; margin-bottom: 60px; }
.footer__brand img { height: 50px; margin-bottom: 16px; border-radius: 8px; filter: brightness(10); }
.footer__tagline { font-family: var(--font-body); font-style: italic; font-size: 14px; color: var(--text-sec); margin-bottom: 24px; }
.footer__social { display: flex; gap: 16px; }
.footer__social a {
    color: #fff; font-size: 18px; transition: all var(--transition);
}
.footer__social a:hover { color: var(--gold); transform: translateY(-3px); }
.footer__col h4 { font-family: var(--font-mono); font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 20px; }
.footer__col a { display: block; font-size: 14px; color: rgba(255,255,255,0.5); padding: 5px 0; transition: color var(--transition); }
.footer__col a:hover { color: #fff; }

.footer__nl h4 { color: #fff; font-family: var(--font-head); font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.footer__nl p { font-size: 14px; color: var(--text-sec); margin-bottom: 16px; }
.footer__nl-form { display: flex; gap: 0; }
.footer__nl-form input {
    flex: 1; padding: 12px 16px; border: none; outline: none;
    background: var(--charcoal); color: #fff;
    border-radius: 8px 0 0 8px; font-size: 14px; font-family: var(--font-body);
}
.footer__nl-form button {
    padding: 12px 20px; border: none; background: var(--gold);
    color: var(--near-black); font-weight: 600; cursor: pointer;
    border-radius: 0 8px 8px 0; transition: background var(--transition);
}
.footer__nl-form button:hover { background: var(--gold-bright); }

.footer__bottom {
    border-top: 1px solid var(--charcoal); padding: 20px 0;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px; color: rgba(255,255,255,0.35);
}
.footer__bottom a { color: rgba(255,255,255,0.35); }
.footer__bottom a:hover { color: var(--gold); }
.footer__legal { display: flex; gap: 24px; }

/* ── Blog Grid ─────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
    background: var(--white); border-radius: var(--radius);
    overflow: hidden; border: 1px solid rgba(0,0,0,0.06);
    transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.blog-card__thumb { height: 220px; overflow: hidden; position: relative; background: var(--cream); }
.blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.blog-card:hover .blog-card__thumb img { transform: scale(1.04); }
.blog-card__cat {
    position: absolute; top: 14px; left: 14px;
    padding: 4px 12px; border-radius: var(--radius-pill);
    background: var(--gold); color: var(--near-black);
    font-family: var(--font-mono); font-size: 10px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 1px;
}
.blog-card__body { padding: 24px; }
.blog-card__title { font-size: 20px; font-weight: 600; margin-bottom: 10px; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card__title a { color: var(--text); }
.blog-card__title a:hover { color: var(--gold-dark); }
.blog-card__excerpt { font-size: 15px; color: var(--text-sec); line-height: 1.65; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card__meta { font-size: 12px; color: var(--text-sec); display: flex; align-items: center; gap: 8px; }

/* ── Single Post ───────────────────────────────────────────── */
.reading-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--gold); z-index: 9999; width: 0%; transition: width 0.1s linear; }

.single-hero { position: relative; height: 60vh; min-height: 400px; overflow: hidden; }
.single-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.single-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 48px;
}
.single-hero__cat { display: inline-block; padding: 5px 14px; border-radius: var(--radius-pill); background: var(--gold); color: var(--near-black); font-family: var(--font-mono); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; width: fit-content; margin-bottom: 16px; }
.single-hero h1 { font-size: clamp(28px, 4vw, 52px); color: #fff; max-width: 800px; margin-bottom: 16px; }
.single-hero__meta { font-size: 14px; color: rgba(255,255,255,0.6); }
.single-hero__share { display: flex; gap: 12px; margin-top: 16px; }
.single-hero__share a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.single-hero__share a:hover { color: var(--gold); }

.single-content { max-width: 720px; margin: 0 auto; padding: 60px 32px 80px; }
.single-content h2 {
    font-size: 32px; margin: 56px 0 20px; position: relative; padding-top: 16px;
}
.single-content h2::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 40px; height: 3px; background: var(--gold);
}
.single-content h3 { font-size: 24px; font-weight: 600; margin: 40px 0 16px; }
.single-content p { font-size: 19px; color: var(--text); line-height: 1.85; margin-bottom: 28px; }
.single-content a { color: var(--gold-dark); text-decoration: underline; }
.single-content a:hover { color: var(--gold); }
.single-content img { border-radius: var(--radius-sm); margin: 32px 0; }
.single-content blockquote {
    border-left: 4px solid var(--gold); background: var(--cream);
    padding: 24px 32px; margin: 32px 0; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.single-content blockquote p { font-family: var(--font-serif); font-style: italic; font-size: 22px; color: var(--text); margin-bottom: 0; }
.single-content pre {
    background: var(--near-black); color: #e0e0e0; padding: 24px;
    border-radius: var(--radius-sm); overflow-x: auto;
    font-family: var(--font-mono); font-size: 15px; line-height: 1.6; margin: 28px 0;
    position: relative;
}
.single-content ul, .single-content ol { margin: 0 0 28px 24px; }
.single-content li { font-size: 18px; line-height: 1.75; margin-bottom: 8px; color: var(--text); }
.single-content ul li { list-style: disc; }
.single-content ol li { list-style: decimal; }

/* Callout boxes */
.callout { padding: 24px 28px; border-radius: var(--radius-sm); margin: 28px 0; display: flex; gap: 16px; align-items: flex-start; }
.callout--tip { background: #FFF9E6; border-left: 4px solid var(--gold); }
.callout--warning { background: #FFF5F5; border-left: 4px solid #E53E3E; }
.callout--note { background: #EBF8FF; border-left: 4px solid #3182CE; }
.callout--lazy { background: var(--gold); border: none; }
.callout--lazy p { color: var(--near-black); margin-bottom: 0; }

/* Inline newsletter CTA */
.inline-cta { background: var(--cream); border-radius: var(--radius); padding: 32px; margin: 40px 0; text-align: center; }
.inline-cta h3 { font-size: 22px; margin-bottom: 12px; }
.inline-cta p { font-size: 15px; color: var(--text-sec); margin-bottom: 20px; }

/* Author box */
.author-box { display: flex; gap: 24px; align-items: center; background: var(--cream); border-radius: var(--radius); padding: 32px; margin-top: 60px; }
.author-box__avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 900; color: var(--near-black); font-size: 28px; flex-shrink: 0; }
.author-box__name { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.author-box__bio { font-size: 14px; color: var(--text-sec); }

/* ── Page Hero (Short) ─────────────────────────────────────── */
.page-hero { padding: 160px 0 60px; text-align: center; }
.page-hero--gold { background: var(--gold); }
.page-hero h1 { font-size: clamp(36px, 5vw, 64px); margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: var(--text-sec); max-width: 600px; margin: 0 auto; }
.page-hero--gold p { color: rgba(26,26,26,0.7); }

/* ── Pagination ────────────────────────────────────────────── */
.pagination { text-align: center; padding: 48px 0; }
.pagination .nav-links { display: flex; gap: 6px; justify-content: center; }
.pagination .page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 8px;
    background: var(--white); border: 1px solid rgba(0,0,0,0.08);
    color: var(--text); font-weight: 600; transition: all var(--transition);
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover { background: var(--gold); color: var(--near-black); border-color: var(--gold); }

/* ── 404 ───────────────────────────────────────────────────── */
.page-404 { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 120px 0; background: var(--cream); }
.page-404 h1 { font-size: 120px; color: var(--gold); margin-bottom: 8px; }
.page-404 h2 { font-size: 36px; margin-bottom: 16px; }
.page-404 p { font-size: 18px; color: var(--text-sec); margin-bottom: 32px; }

/* ── Comments ──────────────────────────────────────────────── */
.comments-area { max-width: 720px; margin: 0 auto; padding: 60px 32px; }
.comments-area h2 { font-size: 28px; margin-bottom: 32px; }
.comment-list { list-style: none; }
.comment { padding: 24px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.comment-respond { margin-top: 40px; }
.comment-respond .form-submit .submit { background: var(--gold); color: var(--near-black); border: none; padding: 14px 32px; border-radius: var(--radius-pill); font-family: var(--font-head); font-weight: 600; cursor: pointer; }

/* ── Back to Top ───────────────────────────────────────────── */
.back-to-top {
    position: fixed; bottom: 32px; right: 32px;
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--gold); color: var(--near-black);
    display: flex; align-items: center; justify-content: center;
    border: none; cursor: pointer; z-index: 999;
    opacity: 0; transform: translateY(20px);
    transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(245,184,0,0.3);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(245,184,0,0.4); }

/* ── Sidebar ───────────────────────────────────────────────── */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; }
.widget { margin-bottom: 32px; background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius); padding: 24px; }
.widget h3 { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid rgba(0,0,0,0.06); }

/* ── Forms ──────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-sec); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 14px 18px; background: var(--white);
    border: 1px solid rgba(0,0,0,0.1); border-radius: var(--radius-sm);
    color: var(--text); font-family: var(--font-body); font-size: 15px;
    transition: border-color var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .intro__grid { grid-template-columns: 1fr; }
    .featured__grid { grid-template-columns: 1fr; }
    .cats__grid { grid-template-columns: 1fr 1fr; }
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .steps__grid { flex-direction: column; align-items: center; }
    .steps__connector { display: none; }
    .blog-layout { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .container { padding: 0 20px; }
    .cats__grid, .blog-grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; }
    .hero__title { font-size: 44px; }
    .site-nav__center, .nav-wp-menu { display: none; }
    .site-nav__burger { display: flex; }
    .newsletter__form { flex-direction: column; border-radius: 0; }
    .newsletter__form input, .newsletter__form button { border-radius: var(--radius-pill); }
    .featured__main { min-height: 360px; }
}
