/*
Theme Name:  WildWilliam Child
Theme URI:   https://wildwilliam.com
Description: WildWilliam Adventure Travel — child theme for GeneratePress. Where the path ends and the feet get wet.
Author:      WildWilliam
Author URI:  https://wildwilliam.com
Template:    generatepress
Version:     1.0.0
Text Domain: wildwilliam-child
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
    --ww-navy:        #0D1F3C;
    --ww-navy-dark:   #081428;
    --ww-navy-mid:    #162d52;
    --ww-gold:        #C8A951;
    --ww-gold-light:  #dfc27a;
    --ww-gold-dark:   #a88930;
    --ww-white:       #FFFFFF;
    --ww-off-white:   #F5F0E8;
    --ww-gray:        #8a8a8a;
    --ww-font-body:   'Montserrat', sans-serif;
    --ww-font-accent: 'Permanent Marker', cursive;
    --ww-radius:      4px;
    --ww-shadow:      0 4px 20px rgba(0,0,0,0.35);
    --ww-transition:  0.3s ease;
    --ww-max-width:   1200px;
    --ww-gap:         clamp(1rem, 3vw, 2rem);
}

/* ============================================================
   BASE RESET & TYPOGRAPHY
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: var(--ww-font-body) !important;
    background-color: var(--ww-navy) !important;
    color: var(--ww-off-white) !important;
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ww-font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ww-white);
    line-height: 1.2;
    margin-top: 0;
}

a {
    color: var(--ww-gold);
    text-decoration: none;
    transition: color var(--ww-transition);
}
a:hover { color: var(--ww-gold-light); }

img { max-width: 100%; height: auto; display: block; }

p { margin: 0 0 1.2em; }

/* ============================================================
   LAYOUT
   ============================================================ */
.ww-container {
    width: 100%;
    max-width: var(--ww-max-width);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

.ww-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
}

/* ============================================================
   CUSTOM NAV — ww-nav (overrides GP header entirely)
   ============================================================ */
.ww-nav {
    background: var(--ww-navy-dark);
    height: 74px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    border-bottom: 1px solid rgba(200, 169, 81, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ww-nav__inner {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: var(--ww-max-width);
    margin: 0 auto;
    gap: 1rem;
}

.ww-nav__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
    flex-shrink: 0;
}

.ww-nav__logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
    /* No border-radius — using transparent PNG, no clipping needed */
}

.ww-nav__logo-text {
    display: flex;
    flex-direction: column;
}

.ww-nav__brand {
    font-family: var(--ww-font-accent);
    color: var(--ww-gold);
    font-size: 1.15rem;
    line-height: 1;
    letter-spacing: 0.5px;
}

.ww-nav__sub {
    font-size: 0.55rem;
    letter-spacing: 2px;
    color: rgba(248, 249, 250, 0.6);
    text-transform: uppercase;
    margin-top: 3px;
    font-weight: 600;
}

.ww-nav__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    padding: 0;
    z-index: 1100;
}

.ww-nav__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--ww-gold);
    border-radius: 2px;
    transition: var(--ww-transition);
}

.ww-nav__hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.ww-nav__hamburger.active span:nth-child(2) { opacity: 0; }
.ww-nav__hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.ww-nav__drawer {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--ww-navy-dark);
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid rgba(200, 169, 81, 0.15);
    z-index: 999;
}

.ww-nav__drawer.active { display: flex; }

/* WP nav menu override */
ul.ww-nav__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

ul.ww-nav__links li a {
    color: var(--ww-off-white) !important;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--ww-transition);
    opacity: 0.8;
    padding: 8px 0;
    display: block;
}

ul.ww-nav__links li a:hover,
ul.ww-nav__links li.current-menu-item > a {
    color: var(--ww-gold) !important;
    opacity: 1;
}

.ww-nav__ai-btn {
    border: 1px solid var(--ww-gold);
    padding: 10px 16px;
    border-radius: var(--ww-radius);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    color: var(--ww-off-white);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--ww-transition);
}

.ww-nav__ai-btn:hover {
    background: rgba(200, 169, 81, 0.1);
    color: var(--ww-gold);
}

.ww-nav__brand-inline {
    font-family: var(--ww-font-accent);
    color: var(--ww-gold);
    font-size: 1rem;
    text-transform: none;
    letter-spacing: 0.5px;
}

.ww-nav__ai-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ww-gold);
    position: relative;
    flex-shrink: 0;
    display: inline-block;
}

.ww-nav__ai-pulse {
    position: absolute;
    inset: 0;
    background: var(--ww-gold);
    border-radius: 50%;
    animation: ww-pulse 2s infinite ease-in-out;
    display: block;
}

@keyframes ww-pulse {
    0%   { transform: scale(0.95); opacity: 1; }
    50%  { opacity: 0.3; }
    100% { transform: scale(2.2); opacity: 0; }
}

@media (min-width: 768px) {
    .ww-nav__hamburger { display: none; }

    .ww-nav__drawer {
        display: flex !important;
        flex-direction: row;
        position: static;
        padding: 0;
        gap: 28px;
        border: none;
        background: transparent;
        align-items: center;
        margin-left: auto;
    }

    ul.ww-nav__links {
        flex-direction: row;
        gap: 28px;
        align-items: center;
    }

    ul.ww-nav__links li a { padding: 0; }
}

/* Suppress GP's own header when our header.php is active */
.site-header, #site-header,
.main-navigation, nav.main-navigation { display: none; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.ww-hero {
    position: relative;
    width: 100%;
    height: clamp(320px, 60vh, 800px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.ww-hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--ww-navy-dark) 0%, var(--ww-navy-mid) 50%, var(--ww-navy-dark) 100%);
    z-index: 0;
}

.ww-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.ww-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(8,20,40,0.2) 0%, rgba(8,20,40,0.75) 100%);
    z-index: 1;
}

.ww-hero__content {
    position: relative;
    z-index: 2;
    padding: var(--ww-gap);
    max-width: 860px;
}

.ww-hero__eyebrow {
    font-family: var(--ww-font-accent);
    color: var(--ww-gold);
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    margin-bottom: 0.5rem;
    display: block;
}

.ww-hero__title {
    font-size: clamp(2rem, 6vw, 4.5rem);
    color: var(--ww-white);
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
}

.ww-hero__subtitle {
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    color: var(--ww-off-white);
    max-width: 620px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    font-weight: 400;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.ww-btn {
    display: inline-block;
    padding: 0.8em 2em;
    font-family: var(--ww-font-body);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--ww-radius);
    transition: all var(--ww-transition);
    cursor: pointer;
    border: 2px solid transparent;
    line-height: 1.4;
}

.ww-btn--primary {
    background: var(--ww-gold);
    color: var(--ww-navy-dark);
    border-color: var(--ww-gold);
}
.ww-btn--primary:hover {
    background: var(--ww-gold-light);
    color: var(--ww-navy-dark);
    transform: translateY(-2px);
    box-shadow: var(--ww-shadow);
}

.ww-btn--outline {
    background: transparent;
    color: var(--ww-gold);
    border-color: var(--ww-gold);
}
.ww-btn--outline:hover {
    background: var(--ww-gold);
    color: var(--ww-navy-dark);
    transform: translateY(-2px);
}

/* ============================================================
   CARDS (TRIP + ENTRY)
   ============================================================ */
.ww-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--ww-gap);
}

@media (min-width: 600px) {
    .ww-card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .ww-card-grid { grid-template-columns: repeat(3, 1fr); }
}

.ww-card {
    background: var(--ww-navy-mid);
    border: 1px solid rgba(200, 169, 81, 0.2);
    border-radius: var(--ww-radius);
    overflow: hidden;
    transition: transform var(--ww-transition), box-shadow var(--ww-transition);
    display: flex;
    flex-direction: column;
}
.ww-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(200, 169, 81, 0.15);
}

.ww-card__image {
    position: relative;
    width: 100%;
    aspect-ratio: 8 / 5;
    overflow: hidden;
    background: var(--ww-navy-dark);
}
.ww-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.ww-card:hover .ww-card__image img {
    transform: scale(1.05);
}

.ww-card__body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ww-card__label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ww-gold);
    margin-bottom: 0.4rem;
}

.ww-card__title {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--ww-white);
    margin-bottom: 0.5rem;
}

.ww-card__meta {
    font-size: 0.78rem;
    color: var(--ww-gray);
    margin-bottom: 0.75rem;
}

.ww-card__excerpt {
    font-size: 0.88rem;
    color: var(--ww-off-white);
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.ww-card__link {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ww-gold);
    margin-top: auto;
}
.ww-card__link:hover { color: var(--ww-gold-light); }

/* ============================================================
   GOLD DIVIDER
   ============================================================ */
.ww-divider {
    width: 60px;
    height: 3px;
    background: var(--ww-gold);
    margin: 1rem 0 1.5rem;
    border: none;
}
.ww-divider--center { margin-left: auto; margin-right: auto; }

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.ww-section-header {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.ww-section-header .ww-eyebrow {
    font-family: var(--ww-font-accent);
    color: var(--ww-gold);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.ww-section-header h2 {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    color: var(--ww-white);
    margin-bottom: 0;
}

/* ============================================================
   SINGLE TRIP / ENTRY — CONTENT AREA
   ============================================================ */
.ww-single__hero {
    position: relative;
    width: 100%;
    height: clamp(260px, 50vh, 600px);
    overflow: hidden;
    background: var(--ww-navy-dark);
}
.ww-single__hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
}
.ww-single__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(8,20,40,0.9) 100%);
}
.ww-single__hero-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(1.5rem, 4vw, 3rem);
    z-index: 2;
}

.ww-single__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    font-size: 0.8rem;
    color: var(--ww-gray);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.ww-single__meta span { color: var(--ww-gold); }

.ww-single__content {
    padding: clamp(2rem, 6vw, 4rem) 0;
}

.ww-entry-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--ww-gap);
    margin-top: 2rem;
}
@media (min-width: 768px) {
    .ww-entry-list { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.ww-about__intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
@media (min-width: 768px) {
    .ww-about__intro { grid-template-columns: 1fr 1fr; }
}

.ww-about__photo {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: var(--ww-radius);
    border: 3px solid var(--ww-gold);
}
.ww-about__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
   HERO VIEWPORT (front page)
   ============================================================ */
.ww-hero-viewport {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #071224;
}

@media (min-width: 768px) { .ww-hero-viewport { min-height: 640px; } }

.ww-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    pointer-events: none;
}

.ww-hero-slide--active {
    opacity: 1;
    pointer-events: auto;
}

.ww-hero-slide .ww-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35) contrast(1.05);
}

.ww-hero-gradient-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #071224 0%, #0D1F3C 50%, #071224 100%);
}

.ww-hero-geo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.ww-hero-content {
    position: relative;
    z-index: 10;
    max-width: 880px;
    margin: 0 auto;
    padding: 48px 24px;
    width: 100%;
}

.ww-hero-tagline {
    font-family: var(--ww-font-accent);
    color: var(--ww-gold);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

@media (min-width: 768px) { .ww-hero-tagline { font-size: 1.35rem; } }

.ww-hero-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ww-gold);
    flex-shrink: 0;
    display: inline-block;
}

.ww-hero-h1 {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 8px 0 20px;
    color: var(--ww-white);
}

.ww-hero-h1 em {
    color: var(--ww-gold);
    font-style: normal;
}

@media (min-width: 768px) { .ww-hero-h1 { font-size: 3.5rem; } }

.ww-hero-desc {
    font-size: 1.05rem;
    color: rgba(248, 249, 250, 0.7);
    max-width: 660px;
    margin-bottom: 36px;
    line-height: 1.75;
}

@media (min-width: 768px) { .ww-hero-desc { font-size: 1.15rem; } }

.ww-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================================
   TELEMETRY STATS ROW
   ============================================================ */
.ww-telemetry {
    background: var(--ww-navy-dark);
    border-top: 1px solid rgba(200, 169, 81, 0.2);
    border-bottom: 1px solid rgba(200, 169, 81, 0.2);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
    .ww-telemetry { grid-template-columns: repeat(4, 1fr); }
}

.ww-telemetry__node {
    padding: 28px 16px;
    text-align: center;
    border-right: 1px solid rgba(200, 169, 81, 0.15);
    border-bottom: 1px solid rgba(200, 169, 81, 0.15);
}

@media (min-width: 768px) {
    .ww-telemetry__node {
        padding: 36px 20px;
        border-bottom: none;
    }
    .ww-telemetry__node:last-child { border-right: none; }
    .ww-telemetry__node:nth-child(2) { border-right: 1px solid rgba(200, 169, 81, 0.15); }
}

.ww-telemetry__node:nth-child(2n) { border-right: none; }
@media (min-width: 768px) { .ww-telemetry__node:nth-child(2n) { border-right: 1px solid rgba(200, 169, 81, 0.15); } }

.ww-telemetry__value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--ww-gold);
    line-height: 1;
}

@media (min-width: 768px) { .ww-telemetry__value { font-size: 2.5rem; } }

.ww-telemetry__label {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: rgba(248, 249, 250, 0.6);
    text-transform: uppercase;
    margin-top: 8px;
    font-weight: 700;
}

/* ============================================================
   TYPOGRAPHY HELPERS (used in front-page sections)
   ============================================================ */
.ww-label-caps {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--ww-gold);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.ww-section-h2 {
    font-size: 1.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
    color: var(--ww-white);
}

.ww-section-h2 em { color: var(--ww-gold); font-style: normal; }

@media (min-width: 768px) { .ww-section-h2 { font-size: 2.25rem; } }

/* ============================================================
   CARD FOOTER ROW
   ============================================================ */
.ww-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid rgba(248, 249, 250, 0.08);
    padding-top: 12px;
}

.ww-card__action {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ww-gold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.ww-card__image--placeholder {
    aspect-ratio: 8 / 5;
}

.ww-card__placeholder-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #091a2b, #123457);
}

/* ============================================================
   HERO SLIDESHOW DOTS
   ============================================================ */
.ww-hero-dots {
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: flex;
    gap: 10px;
    z-index: 20;
}

.ww-hero-dot-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid var(--ww-gold);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: var(--ww-transition);
}

.ww-hero-dot-btn.active {
    background: var(--ww-gold);
    transform: scale(1.2);
}

/* ============================================================
   EXPEDITION CAROUSEL
   ============================================================ */
.ww-carousel {
    position: relative;
    overflow: hidden;
}

.ww-carousel__track {
    display: flex;
    gap: 20px;
    transition: transform 0.55s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

.ww-carousel__item {
    flex-shrink: 0;
}

.ww-carousel__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 2rem;
}

.ww-carousel__btn {
    background: transparent;
    border: 1px solid rgba(200, 169, 81, 0.4);
    color: var(--ww-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--ww-transition);
    flex-shrink: 0;
}

.ww-carousel__btn:hover {
    background: rgba(200, 169, 81, 0.1);
    border-color: var(--ww-gold);
}

.ww-carousel__dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.ww-carousel__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(200, 169, 81, 0.4);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: var(--ww-transition);
}

.ww-carousel__dot.active {
    background: var(--ww-gold);
    border-color: var(--ww-gold);
    transform: scale(1.2);
}

/* ============================================================
   NARRATIVE SECTION — M-Hat
   ============================================================ */
.ww-narrative {
    background: var(--ww-navy-dark);
    border-top: 1px solid rgba(200, 169, 81, 0.15);
    border-bottom: 1px solid rgba(200, 169, 81, 0.15);
    padding: clamp(3rem, 8vw, 5rem) 0;
}

.ww-narrative__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 1024px) {
    .ww-narrative__grid {
        grid-template-columns: 1.1fr 1fr;
        gap: 64px;
    }
}

.ww-narrative__visual {
    background: linear-gradient(145deg, #0e2216, #121c2e);
    border: 1px solid rgba(200, 169, 81, 0.2);
    border-radius: var(--ww-radius);
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) { .ww-narrative__visual { height: 420px; } }

.ww-narrative__visual-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.ww-narrative__icon { font-size: 6rem; opacity: 0.2; }

.ww-narrative__caption {
    position: absolute;
    bottom: 0;
    inset-x: 0;
    padding: 12px;
    background: linear-gradient(to top, rgba(10,20,32,1), transparent);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--ww-gold);
    text-align: center;
    font-weight: 600;
    margin: 0;
}

.ww-narrative__quote {
    border-left: 3px solid var(--ww-gold);
    padding-left: 20px;
    margin: 24px 0;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--ww-off-white);
    line-height: 1.6;
    font-weight: 500;
}

.ww-narrative__body {
    font-size: 0.95rem;
    color: rgba(248, 249, 250, 0.7);
    margin-bottom: 20px;
    line-height: 1.8;
}

.ww-narrative__lyric {
    display: block;
    font-size: 0.8rem;
    color: rgba(200, 169, 81, 0.65);
    margin-top: 16px;
    font-weight: 500;
    font-style: italic;
}

/* ============================================================
   AI PORTAL SECTION
   ============================================================ */
.ww-ai-portal {
    padding: clamp(3rem, 8vw, 5rem) 0;
    background: var(--ww-navy);
}

.ww-ai-portal__inner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

.ww-ai-portal__sub {
    font-size: 1rem;
    color: rgba(248, 249, 250, 0.65);
    margin: 12px 0 32px;
}

.ww-ai-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 36px;
}

.ww-ai-chip {
    background: rgba(200, 169, 81, 0.04);
    border: 1px solid rgba(200, 169, 81, 0.3);
    color: var(--ww-off-white);
    font-family: var(--ww-font-body);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--ww-transition);
    min-height: 44px;
}

.ww-ai-chip:hover,
.ww-ai-chip:focus {
    border-color: var(--ww-gold);
    background: rgba(200, 169, 81, 0.12);
    color: var(--ww-gold);
    transform: scale(1.02);
    outline: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
/* GP default footer — hidden, we use ww-footer */
.site-footer, #site-footer { display: none; }

.ww-footer {
    background: var(--ww-navy-dark);
    border-top: 1px solid rgba(200, 169, 81, 0.2);
    padding: 40px 24px;
}

.ww-footer__inner {
    max-width: var(--ww-max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.ww-footer__brand {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(200, 169, 81, 0.8);
    margin: 0;
}

.ww-footer__brand-name {
    font-family: var(--ww-font-accent);
    font-size: 1.15rem;
    color: var(--ww-gold);
    text-transform: none;
    letter-spacing: 0.5px;
}

.ww-footer__copy {
    font-size: 0.75rem;
    color: rgba(248, 249, 250, 0.4);
    letter-spacing: 0.5px;
    margin: 0;
}

/* ============================================================
   GENERATEPRESS OVERRIDES
   ============================================================ */
body,
.site-content,
#page {
    background: var(--ww-navy);
}

.inside-article { padding: 0; }

.entry-header,
.entry-content,
.entry-footer {
    padding-left: 0;
    padding-right: 0;
}

/* Remove GP default padding that would clash */
.site-main .content-area { width: 100%; }

.widget-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ww-gold);
    border-bottom: 1px solid rgba(200,169,81,0.3);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.ww-text-gold   { color: var(--ww-gold); }
.ww-text-center { text-align: center; }
.ww-mt-0        { margin-top: 0; }
.ww-mb-0        { margin-bottom: 0; }

.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ============================================================
   RESPONSIVE — MOBILE FIRST BASE ALREADY SET ABOVE
   Breakpoints: 600px (2-col cards), 768px (2-col layouts), 1024px (3-col cards)
   ============================================================ */
@media (max-width: 599px) {
    .ww-btn { width: 100%; text-align: center; }
    .ww-hero__content { padding: 1rem; }
}
