/*
Theme Name: ANR Power
Theme URI: https://onanr.com
Author: All Natural Roots
Author URI: https://onanr.com
Description: A high-conversion, SEO-optimized WordPress theme purpose-built for All Natural Roots (ANR) — selling premium herbal muscle-building supplements. WooCommerce-ready, mobile-first, schema-enabled, and fast-loading. Includes a sales-driven homepage, product pages, ingredient showcase, About, Contact, and Blog templates. Conversion-tested CTAs, trust signals, and structured data baked in.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
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: anr-power
Tags: e-commerce, woocommerce, one-column, two-columns, right-sidebar, custom-background, custom-colors, custom-header, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, block-styles, wide-blocks
*/

/* =========================================================
   ANR POWER — Variables & Reset
   ========================================================= */
:root {
    --anr-green: #1fa14a;
    --anr-green-dark: #157a37;
    --anr-green-light: #2bbf5c;
    --anr-orange: #f5a623;
    --anr-orange-dark: #d98a0a;
    --anr-black: #111111;
    --anr-charcoal: #222222;
    --anr-gray: #555555;
    --anr-gray-light: #888888;
    --anr-bg: #ffffff;
    --anr-bg-soft: #f7faf7;
    --anr-border: #e6e6e6;
    --anr-radius: 14px;
    --anr-radius-pill: 999px;
    --anr-shadow: 0 8px 24px rgba(0,0,0,0.08);
    --anr-shadow-lg: 0 18px 50px rgba(0,0,0,0.12);
    --anr-font-display: 'Anton', 'Oswald', 'Impact', sans-serif;
    --anr-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --anr-max: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--anr-font-body);
    color: var(--anr-charcoal);
    background: var(--anr-bg);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--anr-green); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--anr-green-dark); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--anr-font-display);
    color: var(--anr-black);
    letter-spacing: .01em;
    line-height: 1.1;
    margin: 0 0 .6em;
    text-transform: uppercase;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
p { margin: 0 0 1em; }

.container { max-width: var(--anr-max); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-soft { background: var(--anr-bg-soft); }
.text-center { text-align: center; }
.eyebrow {
    color: var(--anr-orange);
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-size: .85rem;
    margin-bottom: 12px;
    display: inline-block;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
    display: inline-block;
    padding: 16px 38px;
    border-radius: var(--anr-radius-pill);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: .03em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    text-align: center;
}
.btn-primary { background: var(--anr-orange); color: #fff; }
.btn-primary:hover { background: var(--anr-orange-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--anr-shadow); }
.btn-green { background: var(--anr-green); color: #fff; }
.btn-green:hover { background: var(--anr-green-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--anr-shadow); }
.btn-outline { background: transparent; color: var(--anr-black); border: 2px solid var(--anr-black); }
.btn-outline:hover { background: var(--anr-black); color: #fff; }
.btn-lg { padding: 20px 48px; font-size: 1.1rem; }

/* =========================================================
   Header / Navigation
   ========================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--anr-border);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    max-width: var(--anr-max);
    margin: 0 auto;
    gap: 24px;
}
.site-logo img, .site-logo svg { max-height: 64px; width: auto; }
.site-logo a { display: flex; align-items: center; gap: 10px; }
.site-title-fallback { font-family: var(--anr-font-display); font-size: 1.5rem; color: var(--anr-black); }

.primary-menu { list-style: none; padding: 0; margin: 0; display: flex; gap: 32px; }
.primary-menu a {
    color: var(--anr-charcoal);
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .02em;
    position: relative;
}
.primary-menu a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -6px;
    width: 0; height: 2px;
    background: var(--anr-orange);
    transition: width .25s ease;
}
.primary-menu a:hover::after, .primary-menu .current-menu-item a::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-cart, .header-search-toggle {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--anr-charcoal);
    padding: 6px;
}
.cart-count {
    position: absolute;
    top: -4px; right: -8px;
    background: var(--anr-orange);
    color: #fff;
    border-radius: 50%;
    font-size: .7rem;
    font-weight: 700;
    width: 18px; height: 18px;
    display: flex; align-items: center; justify-content: center;
}
.mobile-toggle {
    display: none;
    background: var(--anr-green);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 44px; height: 44px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
    position: relative;
    padding: 0;
    background: #fff;
    overflow: hidden;
}

/* ===== Dark dramatic hero ===== */
.hero-dark {
    position: relative;
    padding: 80px 0 90px;
    background:
        radial-gradient(ellipse 60% 50% at 60% 38%, #2a2a2e 0%, #1a1a1d 45%, #0d0d0f 100%);
    overflow: hidden;
}
/* spotlight glow behind the bottles */
.hero-spotlight {
    position: absolute;
    top: 50%; right: 18%;
    transform: translate(50%, -50%);
    width: 680px; height: 680px;
    background: radial-gradient(circle, rgba(31,161,74,0.30) 0%, rgba(31,161,74,0.12) 35%, transparent 68%);
    filter: blur(10px);
    z-index: 0;
    pointer-events: none;
}
/* warm rim accent */
.hero-dark::before {
    content: '';
    position: absolute;
    top: -10%; left: -5%;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(245,166,35,0.14) 0%, transparent 65%);
    z-index: 0;
    pointer-events: none;
}
/* subtle floor reflection glow under bottles */
.hero-glow-floor {
    position: absolute;
    bottom: 8%; right: 22%;
    transform: translateX(50%);
    width: 420px; height: 80px;
    background: radial-gradient(ellipse, rgba(31,161,74,0.35) 0%, transparent 70%);
    filter: blur(18px);
    z-index: 0;
    pointer-events: none;
}

.hero-grid-dark {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 50px;
    align-items: center;
}
.hero-content-dark { position: relative; z-index: 3; }

.eyebrow-on-dark { color: var(--anr-orange); }

.hero-dark h1 {
    font-size: clamp(2.4rem, 5.2vw, 4.4rem);
    line-height: 1.02;
    margin-bottom: 22px;
    color: #fff;
}
.hero-dark h1 span { color: var(--anr-green); }
.hero-sub {
    font-size: 1.14rem;
    color: rgba(255,255,255,0.78);
    max-width: 520px;
    margin-bottom: 30px;
    line-height: 1.7;
}
.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 30px; }

/* ghost button for dark bg */
.btn-ghost {
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
    background: transparent;
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.hero-image-dark {
    position: relative;
    z-index: 2;
    text-align: center;
}
.hero-image-dark img {
    position: relative;
    z-index: 2;
    max-height: 540px;
    width: auto;
    margin: 0 auto;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.65));
}
/* glowing podium ellipse under the bottles */
.hero-podium {
    position: absolute;
    bottom: 4%; left: 50%;
    transform: translateX(-50%);
    width: 78%; height: 60px;
    background: radial-gradient(ellipse, rgba(31,161,74,0.55) 0%, rgba(31,161,74,0.15) 45%, transparent 72%);
    filter: blur(14px);
    z-index: 1;
}

.hero-trust {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    align-items: center;
    color: var(--anr-gray);
    font-size: .9rem;
    font-weight: 500;
}
.hero-trust span { display: flex; align-items: center; gap: 6px; }
.hero-trust svg { color: var(--anr-green); }
.hero-trust-dark { color: rgba(255,255,255,0.72); }
.hero-trust-dark svg { color: var(--anr-green); }
.hero-guarantee-badge {
    background: var(--anr-orange);
    color: #fff;
    padding: 5px 14px;
    border-radius: 999px;
    font-weight: 700;
}

/* =========================================================
   Featured Badges / Trust Bar
   ========================================================= */
.trust-bar {
    padding: 40px 0;
    border-top: 1px solid var(--anr-border);
    border-bottom: 1px solid var(--anr-border);
    background: #fff;
}
.trust-bar-title {
    text-align: center;
    color: var(--anr-gray);
    font-size: .85rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 24px;
}
.trust-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    opacity: .7;
}
.trust-logos > div {
    font-weight: 700;
    color: var(--anr-charcoal);
    font-size: 1.1rem;
}

/* =========================================================
   Ingredient Grid
   ========================================================= */
.ingredients-section { padding: 100px 0; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-header p { color: var(--anr-gray); font-size: 1.1rem; }

.ingredient-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.ingredient-card {
    background: #fff;
    border: 1px solid var(--anr-border);
    border-radius: var(--anr-radius);
    padding: 28px 24px;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    text-align: center;
}
.ingredient-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--anr-shadow-lg);
    border-color: var(--anr-green);
}
.ingredient-image {
    width: 130px; height: 130px;
    margin: 0 auto 20px;
    background: var(--anr-bg-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}
.ingredient-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    border-left: 4px solid var(--anr-orange);
    padding-left: 10px;
    display: inline-block;
    text-align: left;
}
.ingredient-card p { color: var(--anr-gray); font-size: .95rem; }

/* =========================================================
   Product Showcase
   ========================================================= */
.product-showcase { padding: 100px 0; background: var(--anr-bg-soft); }
.product-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}
.product-row:last-child { margin-bottom: 0; }
.product-row.reverse { direction: rtl; }
.product-row.reverse > * { direction: ltr; }
.product-image-wrap {
    position: relative;
    text-align: center;
    padding: 40px;
}
.product-image-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(31,161,74,0.08), transparent 70%);
    border-radius: 50%;
}
.product-image-wrap img { position: relative; max-height: 460px; margin: 0 auto; }
.product-info h2 { font-size: clamp(2rem, 4vw, 3rem); }
.product-info .ornament {
    color: var(--anr-green);
    font-size: 1.2rem;
    margin-bottom: 16px;
}
.product-info .size-line {
    font-weight: 700;
    margin-bottom: 18px;
    font-size: 1.05rem;
}
.product-info p { color: var(--anr-gray); font-size: 1.05rem; max-width: 540px; }
.product-cta-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.product-price {
    font-family: var(--anr-font-display);
    font-size: 2rem;
    color: var(--anr-black);
}

/* =========================================================
   Benefits / Why Choose
   ========================================================= */
.why-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--anr-green) 0%, var(--anr-green-dark) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: .6;
}
.why-section .container { position: relative; }
.why-section h2 { color: #fff; }
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-top: 50px;
}
.benefit-item .benefit-icon {
    width: 56px; height: 56px;
    color: var(--anr-orange);
    margin-bottom: 18px;
}
.benefit-item h3 { color: #fff; font-size: 1.15rem; }
.benefit-item p { color: rgba(255,255,255,.9); font-size: .98rem; }

/* =========================================================
   Checklist Block
   ========================================================= */
.checklist-section { padding: 100px 0; }
.checklist-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}
.checklist li {
    padding: 14px 0 14px 44px;
    position: relative;
    border-bottom: 1px solid var(--anr-border);
    font-size: 1.05rem;
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
    content: '';
    position: absolute;
    left: 0; top: 18px;
    width: 28px; height: 28px;
    background: var(--anr-green);
    border-radius: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat;
}
.checklist li strong { color: var(--anr-black); }

/* =========================================================
   CTA Banner
   ========================================================= */
.cta-banner {
    background: var(--anr-black);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(31,161,74,0.25), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(245,166,35,0.2), transparent 50%);
}
.cta-banner .container { position: relative; }
.cta-banner h2 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.5rem);
    max-width: 900px;
    margin: 0 auto 28px;
}
.cta-banner p { font-size: 1.15rem; max-width: 640px; margin: 0 auto 36px; color: rgba(255,255,255,.85); }

/* =========================================================
   Testimonials
   ========================================================= */
.testimonials { padding: 100px 0; background: var(--anr-bg-soft); }
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background: #fff;
    border-radius: var(--anr-radius);
    padding: 32px 28px;
    box-shadow: var(--anr-shadow);
    position: relative;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px; left: 24px;
    font-size: 4rem;
    color: var(--anr-orange);
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-card p { color: var(--anr-charcoal); font-style: italic; padding-top: 30px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testimonial-author strong { color: var(--anr-black); display: block; }
.testimonial-author span { color: var(--anr-gray); font-size: .85rem; }
.stars { color: var(--anr-orange); margin-bottom: 8px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-section { padding: 100px 0; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: #fff;
    border: 1px solid var(--anr-border);
    border-radius: var(--anr-radius);
    margin-bottom: 16px;
    overflow: hidden;
    transition: box-shadow .2s ease;
}
.faq-item:hover { box-shadow: var(--anr-shadow); }
.faq-question {
    padding: 22px 28px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--anr-black);
    list-style: none;
    font-size: 1.05rem;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after { content: '+'; color: var(--anr-green); font-size: 1.8rem; font-weight: 300; transition: transform .2s; }
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer { padding: 0 28px 22px; color: var(--anr-gray); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--anr-black); color: #d1d1d1; padding: 70px 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}
.footer-col h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 20px;
    letter-spacing: .1em;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: #d1d1d1; }
.footer-col a:hover { color: var(--anr-orange); }
.footer-col p { color: #a0a0a0; font-size: .95rem; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, transform .2s;
}
.footer-social a:hover { background: var(--anr-orange); transform: translateY(-2px); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 24px 0;
    text-align: center;
    color: #909090;
    font-size: .85rem;
}
.footer-disclaimer {
    background: #1a1a1a;
    padding: 24px 0;
    font-size: .8rem;
    color: #808080;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.05);
}
.footer-disclaimer p { max-width: 900px; margin: 0 auto; }

/* =========================================================
   Single Post / Page
   ========================================================= */
.entry-header { padding: 60px 0 30px; text-align: center; background: var(--anr-bg-soft); }
.entry-meta { color: var(--anr-gray); font-size: .9rem; margin-bottom: 12px; }
.entry-content { max-width: 760px; margin: 60px auto; padding: 0 24px; font-size: 1.08rem; }
.entry-content h2, .entry-content h3 { margin-top: 1.8em; }
.entry-content img { border-radius: var(--anr-radius); margin: 24px 0; }
.entry-content blockquote {
    border-left: 4px solid var(--anr-orange);
    padding-left: 24px;
    color: var(--anr-gray);
    font-style: italic;
    margin: 24px 0;
}

/* =========================================================
   Blog Archive
   ========================================================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.blog-card {
    background: #fff;
    border: 1px solid var(--anr-border);
    border-radius: var(--anr-radius);
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--anr-shadow); }
.blog-card-image { aspect-ratio: 16/10; background: var(--anr-bg-soft); overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.blog-card .read-more { color: var(--anr-green); font-weight: 700; }

/* =========================================================
   Contact
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info-card {
    background: var(--anr-bg-soft);
    border-radius: var(--anr-radius);
    padding: 32px;
    margin-bottom: 20px;
}
.contact-info-card h3 { margin-bottom: 8px; }
.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--anr-border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    margin-bottom: 16px;
    transition: border-color .2s;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--anr-green);
}
.contact-form textarea { min-height: 140px; resize: vertical; }

/* =========================================================
   Mobile
   ========================================================= */
@media (max-width: 900px) {
    .hero-grid-dark, .product-row, .product-row.reverse, .checklist-grid, .contact-grid {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    .hero-grid-dark { text-align: center; gap: 30px; }
    .hero-content-dark .hero-cta-row, .hero-content-dark .hero-trust { justify-content: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-image-dark img { max-height: 380px; }
    .hero-spotlight { right: 50%; top: 62%; width: 460px; height: 460px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .primary-menu { display: none; }
    .mobile-toggle { display: flex; }
    .primary-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #fff;
        padding: 20px;
        border-bottom: 1px solid var(--anr-border);
        box-shadow: var(--anr-shadow);
        gap: 16px;
    }
    .section, .ingredients-section, .product-showcase, .why-section, .checklist-section, .testimonials, .faq-section { padding: 60px 0; }
    .hero { padding: 40px 0; }
}
@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .container { padding: 0 16px; }
    .btn-lg { padding: 16px 32px; font-size: 1rem; }
}

/* =========================================================
   WordPress core utility classes
   ========================================================= */
.alignleft { float: left; margin-right: 24px; }
.alignright { float: right; margin-left: 24px; }
.aligncenter { display: block; margin: 0 auto 1em; }
.alignwide { max-width: 1100px; margin-left: auto; margin-right: auto; }
.alignfull { width: 100vw; max-width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
.wp-caption { max-width: 100%; }
.wp-caption-text, .gallery-caption { color: var(--anr-gray); font-size: .9rem; text-align: center; padding: 8px 0; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); }
.sticky { display: block; }
.bypostauthor { display: block; }
