/* ============================================================
   SUNDAZE THEME — MAIN STYLESHEET
   ============================================================ */

:root {
    --navy: #1B2A4A;
    --coral: #FF7F5C;
    --teal: #4ECDC4;
    --gold: #D4A853;
    --sand: #FAF7F2;
    --cream: #FFF8F0;
    --dark: #0f0a1e;
    --pink: #FF6B9D;
    --purple: #2D1B69;
    --text: #2a2a2a;
    --muted: #8a8a8a;
    --white: #ffffff;
    --radius: 14px;
    --shadow: 0 2px 12px rgba(0,0,0,.05);
    --shadow-hover: 0 8px 30px rgba(0,0,0,.1);
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: 'Source Sans 3', -apple-system, sans-serif;
    background: var(--sand);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* === UTILITY === */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
    background: var(--navy);
    height: 64px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 20px rgba(0,0,0,.4);
}
.site-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.7rem;
    color: var(--white);
    letter-spacing: 4px;
}
.nav-logo em { font-style: normal; color: var(--coral); }

.nav-center { display: flex; gap: 32px; }
.nav-center a {
    color: rgba(255,255,255,.6);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: color .2s;
    position: relative;
    padding: 4px 0;
}
.nav-center a:hover,
.nav-center a[aria-current="page"] { color: var(--white); }
.nav-center a[aria-current="page"]::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0; right: 0;
    height: 2px;
    background: var(--coral);
    border-radius: 2px;
}

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-search {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    padding: 7px 14px;
    color: var(--white);
    font-size: .8rem;
    font-family: inherit;
    width: 180px;
    outline: none;
    transition: border-color .2s;
}
.nav-search::placeholder { color: rgba(255,255,255,.3); }
.nav-search:focus { border-color: rgba(255,255,255,.3); }

.nav-cta {
    background: var(--coral);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 8px;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .5px;
    transition: background .2s;
}
.nav-cta:hover { background: #ff6a45; }

.nav-hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, var(--dark) 0%, var(--purple) 20%, #6B2FA0 35%, var(--pink) 50%, var(--coral) 65%, #FFB347 80%, #FDD835 100%);
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(15,10,30,.85));
}
.hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 48px;
    width: 100%;
}
.hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.hero-text { max-width: 640px; }
.hero-loc {
    color: var(--teal);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 14px;
}
.hero h1 em { font-style: italic; color: var(--coral); }
.hero-sub {
    color: rgba(255,255,255,.65);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 480px;
}
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--coral);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .3px;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 24px rgba(255,127,92,.4);
}
.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255,127,92,.5);
}

/* Weather widget */
.hero-weather {
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    padding: 16px 22px;
    text-align: center;
    color: var(--white);
    flex-shrink: 0;
}
.weather-temp {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.6rem;
    letter-spacing: 2px;
    line-height: 1;
}
.weather-desc { font-size: .78rem; opacity: .6; }
.weather-loc { font-size: .68rem; opacity: .4; margin-top: 2px; }

/* ============================================================
   SECTIONS
   ============================================================ */
.sec { padding: 52px 0; }
.sec-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
}
.sec-label {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--coral);
    font-size: .82rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.sec h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 3vw, 1.7rem);
    color: var(--navy);
    font-weight: 700;
    line-height: 1.2;
}
.sec h2 em { font-style: italic; color: var(--coral); }
.see-all {
    color: var(--coral);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: opacity .2s;
}
.see-all:hover { opacity: .7; }

/* Dark sections */
.dark-sec {
    background: var(--navy);
    padding: 48px 0;
}
.dark-sec .sec-label { color: var(--gold); }
.dark-sec h2 { color: var(--white); }
.dark-sec .see-all { color: var(--gold); }

/* ============================================================
   NETFLIX SCROLL ROW
   ============================================================ */
.scroll-row {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: none;
}
.scroll-row::-webkit-scrollbar { display: none; }

/* ============================================================
   CATEGORY CARDS
   ============================================================ */
.cat-card {
    flex: 0 0 175px;
    height: 230px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    scroll-snap-align: start;
    transition: transform .25s;
}
.cat-card:hover { transform: scale(1.03); }
.cat-card .bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .4s;
}
.cat-card:hover .bg { transform: scale(1.08); }
.cat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(0,0,0,.75));
}
.cat-card .info {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    z-index: 2;
}
.cat-card .info h3 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: .92rem;
    font-weight: 700;
    line-height: 1.2;
}
.cat-card .info span {
    color: rgba(255,255,255,.55);
    font-size: .68rem;
    font-weight: 500;
}

/* ============================================================
   ARTICLE CARDS
   ============================================================ */
.article-card {
    flex: 0 0 320px;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    scroll-snap-align: start;
    cursor: pointer;
    transition: transform .25s, box-shadow .25s;
    box-shadow: var(--shadow);
}
.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.article-card .thumb {
    height: 190px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.article-card .tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(6px);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.article-card .body { padding: 18px; }
.article-card .body h3 {
    font-family: 'Playfair Display', serif;
    font-size: .95rem;
    color: var(--navy);
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 8px;
}
.article-card .body p {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.article-card .meta {
    display: flex;
    justify-content: space-between;
    padding: 0 18px 14px;
    font-size: .7rem;
}
.article-card .meta .loc { color: var(--teal); font-weight: 600; }
.article-card .meta .time { color: #bbb; }

/* ============================================================
   VIDEO CARDS
   ============================================================ */
.video-card {
    flex: 0 0 360px;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    scroll-snap-align: start;
    cursor: pointer;
    transition: transform .25s;
    box-shadow: var(--shadow);
}
.video-card:hover { transform: translateY(-4px); }
.video-card .thumb {
    height: 200px;
    background: var(--navy);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.play-btn {
    width: 52px;
    height: 52px;
    background: rgba(255,127,92,.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255,127,92,.4);
    transition: transform .2s;
}
.video-card:hover .play-btn { transform: scale(1.1); }
.play-btn::after {
    content: '';
    border-style: solid;
    border-width: 9px 0 9px 16px;
    border-color: transparent transparent transparent var(--white);
    margin-left: 3px;
}
.vid-dur {
    position: absolute;
    bottom: 10px;
    right: 12px;
    background: rgba(0,0,0,.75);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: .7rem;
    font-weight: 600;
}
.video-card .body { padding: 16px 18px; }
.video-card .body h3 {
    font-family: 'Playfair Display', serif;
    font-size: .92rem;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 4px;
}
.video-card .body .stats { font-size: .74rem; color: #bbb; }

/* ============================================================
   EVENT CARDS
   ============================================================ */
.event-card {
    flex: 0 0 280px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    padding: 22px;
    scroll-snap-align: start;
    cursor: pointer;
    transition: background .2s;
}
.event-card:hover { background: rgba(255,255,255,.1); }
.event-date {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--coral);
    font-size: .9rem;
    letter-spacing: 2px;
    margin-bottom: 6px;
}
.event-card h4 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 6px;
}
.event-card .venue { color: rgba(255,255,255,.4); font-size: .78rem; }
.event-type-tag {
    display: inline-block;
    margin-top: 10px;
    background: rgba(78,205,196,.12);
    color: var(--teal);
    padding: 3px 10px;
    border-radius: 6px;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* ============================================================
   AI ITINERARY CTA
   ============================================================ */
.ai-cta {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    padding: 56px 48px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--purple) 50%, var(--pink) 100%);
}
.ai-cta::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 350px; height: 350px;
    background: var(--coral);
    border-radius: 50%;
    opacity: .1;
}
.ai-inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}
.ai-text { max-width: 520px; }
.ai-badge {
    display: inline-block;
    background: rgba(255,255,255,.1);
    color: var(--teal);
    padding: 5px 14px;
    border-radius: 8px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.ai-cta h2 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 12px;
    line-height: 1.15;
}
.ai-cta h2 em { color: var(--coral); font-style: italic; }
.ai-cta p { color: rgba(255,255,255,.6); font-size: .92rem; line-height: 1.6; margin-bottom: 24px; }
.ai-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--navy);
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 800;
    font-size: .92rem;
    box-shadow: 0 4px 20px rgba(212,168,83,.35);
    transition: transform .2s;
}
.ai-btn:hover { transform: translateY(-2px); }

.ai-preview {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 24px;
    min-width: 300px;
}
.ai-step { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.ai-step:last-child { margin-bottom: 0; }
.ai-num {
    background: var(--coral);
    color: var(--white);
    width: 26px; height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 800;
    flex-shrink: 0;
}
.ai-step-text h5 { color: var(--white); font-size: .82rem; }
.ai-step-text p { color: rgba(255,255,255,.4); font-size: .72rem; }

/* ============================================================
   PICKS
   ============================================================ */
.picks-sec {
    background: var(--cream);
    border-top: 3px solid var(--gold);
    padding: 44px 0;
}
.picks-sec .sec-label { color: var(--gold); }
.pick-card {
    flex: 0 0 300px;
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: center;
    scroll-snap-align: start;
    box-shadow: 0 1px 8px rgba(0,0,0,.04);
    cursor: pointer;
    transition: transform .2s;
}
.pick-card:hover { transform: translateY(-2px); }
.pick-img {
    width: 64px; height: 64px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    background-color: var(--gold);
    flex-shrink: 0;
}
.pick-info h4 { font-size: .88rem; color: var(--navy); font-weight: 700; }
.pick-info .pick-loc { font-size: .72rem; color: var(--muted); margin-bottom: 4px; }
.pick-deal { color: var(--coral); font-weight: 700; font-size: .8rem; }

/* ============================================================
   INFLUENCER / CREATOR CARDS
   ============================================================ */
.influencer-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
    cursor: pointer;
    transition: transform .2s;
}
.influencer-card:hover { transform: translateY(-3px); }
.influencer-thumb {
    height: 320px;
    border-radius: var(--radius);
    background: var(--navy);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.influencer-yt {
    position: absolute;
    bottom: 10px; left: 10px;
    background: rgba(0,0,0,.7);
    color: var(--white);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: .65rem;
    font-weight: 600;
}
.influencer-card h4 { font-size: .82rem; color: var(--navy); font-weight: 700; line-height: 1.3; }
.influencer-card .creator { font-size: .72rem; color: var(--muted); }

/* ============================================================
   MUSIC SPOTLIGHT
   ============================================================ */
.music-sec {
    background: var(--dark);
    padding: 52px 0;
}
.music-sec .sec-label { color: var(--teal); }
.music-sec h2 { color: var(--white); }
.music-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 36px;
    align-items: center;
}
.music-text p { color: rgba(255,255,255,.55); font-size: .88rem; line-height: 1.7; margin-bottom: 14px; }
.music-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.m-tag {
    background: rgba(78,205,196,.1);
    color: var(--teal);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.music-embed {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/9;
}
.music-embed iframe { width: 100%; height: 100%; border: 0; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.nl-sec { padding: 52px 0; }
.nl-box {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}
.nl-box h2 {
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    font-size: 1.8rem;
    margin-bottom: 8px;
}
.nl-box h2 em { color: var(--coral); font-style: italic; }
.nl-box p { color: var(--muted); font-size: .9rem; margin-bottom: 24px; line-height: 1.6; }
.nl-form {
    display: flex;
    gap: 10px;
    max-width: 440px;
    margin: 0 auto;
}
.nl-form input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid #e0dbd4;
    border-radius: 10px;
    font-size: .88rem;
    font-family: inherit;
    background: var(--white);
    outline: none;
    transition: border-color .2s;
}
.nl-form input:focus { border-color: var(--coral); }
.nl-form button {
    background: var(--coral);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: .85rem;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    transition: background .2s;
}
.nl-form button:hover { background: #ff6a45; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--dark);
    padding: 52px 0 28px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
}
.footer-brand {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--white);
    font-size: 1.5rem;
    letter-spacing: 4px;
    margin-bottom: 12px;
}
.footer-brand em { font-style: normal; color: var(--coral); }
.site-footer p { color: rgba(255,255,255,.4); font-size: .82rem; line-height: 1.6; }
.site-footer h4 {
    color: rgba(255,255,255,.7);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.site-footer a {
    display: block;
    color: rgba(255,255,255,.35);
    font-size: .82rem;
    margin-bottom: 9px;
    transition: color .2s;
}
.site-footer a:hover { color: var(--coral); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: .72rem;
    color: rgba(255,255,255,.25);
}
.footer-bottom a { display: inline; margin-left: 16px; }

/* ============================================================
   SINGLE POST
   ============================================================ */
.single-header {
    padding: 40px 0 20px;
}
.single-header .cat-link {
    color: var(--coral);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.single-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--navy);
    line-height: 1.15;
    margin: 10px 0 14px;
    max-width: 800px;
}
.single-meta {
    font-size: .82rem;
    color: var(--muted);
    display: flex;
    gap: 16px;
}
.single-featured {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--radius);
    margin: 24px 0;
}
.single-content {
    max-width: 760px;
    font-size: 1.02rem;
    line-height: 1.8;
    color: #444;
}
.single-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    margin: 32px 0 12px;
}
.single-content h3 {
    color: var(--navy);
    margin: 24px 0 8px;
}
.single-content p { margin-bottom: 16px; }
.single-content img {
    border-radius: 12px;
    margin: 20px 0;
}
.single-content a { color: var(--coral); font-weight: 600; }
.single-content a:hover { text-decoration: underline; }

/* ============================================================
   ARCHIVE / CATEGORY PAGES
   ============================================================ */
.archive-header {
    padding: 48px 0 24px;
}
.archive-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--navy);
}
.archive-header p { color: var(--muted); font-size: .92rem; max-width: 600px; margin-top: 8px; }
.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-bottom: 48px;
}
.archive-grid .article-card {
    flex: none;
}
.archive-grid .article-card .thumb { height: 200px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
    .nav-center { display: none; }
    .nav-search { display: none; }
    .nav-hamburger { display: block; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .archive-grid { grid-template-columns: repeat(2, 1fr); }
    .music-grid { grid-template-columns: 1fr; }
    .ai-inner { flex-direction: column; }
    .ai-preview { display: none; }
}
@media (max-width: 640px) {
    .container { padding: 0 18px; }
    .hero { min-height: 400px; }
    .hero-weather { display: none; }
    .cat-card { flex: 0 0 140px; height: 190px; }
    .article-card { flex: 0 0 280px; }
    .video-card { flex: 0 0 300px; }
    .archive-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .nl-form { flex-direction: column; }
}

/* ============================================================
   PAGE TEMPLATES
   ============================================================ */

/* Default Page */
.sdz-page-hero {
    background: linear-gradient(135deg, var(--navy), #2a3d6a);
    padding: 60px 20px;
    text-align: center;
}
.sdz-page-hero-img {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    max-width: 1100px;
    margin: 0 auto 24px;
}
.sdz-page-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--white);
    margin: 0;
}
.sdz-page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}
.sdz-page-body {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}
.sdz-page-body h2 {
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    font-size: 24px;
    margin-top: 32px;
}
.sdz-page-body h3 { color: var(--navy); font-size: 18px; margin-top: 24px; }
.sdz-page-body a { color: var(--coral); }
.sdz-page-body img { max-width: 100%; height: auto; border-radius: 10px; margin: 16px 0; }

/* Full Width */
.sundaze-full-width .sdz-fullwidth-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

/* About Page */
.sdz-about-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #2a3d6a 40%, var(--coral) 100%);
    padding: 80px 20px;
    text-align: center;
}
.sdz-about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--white);
    margin: 0 0 10px;
}
.sdz-about-tagline { color: rgba(255,255,255,.75); font-size: 18px; margin: 0; }

/* Contact Page */
.sdz-contact-hero {
    background: linear-gradient(135deg, var(--navy), #2a3d6a);
    padding: 60px 20px;
    text-align: center;
}
.sdz-contact-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--white);
    margin: 0 0 8px;
}
.sdz-contact-tagline { color: rgba(255,255,255,.7); font-size: 16px; margin: 0; }

/* Advertise Page */
.sdz-advertise-hero {
    background: linear-gradient(135deg, var(--gold) 0%, var(--coral) 50%, var(--navy) 100%);
    padding: 80px 20px;
    text-align: center;
}
.sdz-advertise-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--white);
    margin: 0 0 10px;
}
.sdz-advertise-tagline { color: rgba(255,255,255,.85); font-size: 18px; margin: 0; }

@media (max-width: 768px) {
    .sdz-page-title { font-size: 30px; }
    .sdz-page-hero, .sdz-contact-hero { padding: 40px 16px; }
    .sdz-about-hero h1, .sdz-advertise-hero h1 { font-size: 32px; }
    .sdz-about-hero, .sdz-advertise-hero { padding: 50px 16px; }
}
