/* ============================================================
   DESIGN SYSTEM – Rock Your Retreat / Sheri Rosenthal
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --navy: #67327D;
    --navy-mid: #4e2460;
    --blue: #67327D;
    --blue-light: #7d3f96;
    --gold: #c9960d;
    --gold-light: #f0c040;
    --gold-pale: #fdf6dc;
    --red: #c0152c;
    --red-hover: #9b1022;
    --white: #ffffff;
    --gray-50: #f8f9fc;
    --gray-100: #eef0f5;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --gray-900: #111827;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
    --shadow-md: 0 6px 24px rgba(0, 0, 0, .12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, .18);

    --transition: 0.22s ease;
}

/* ── Reset ─────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ── Base ───────────────────────────────────────────────── */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--gray-900);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

/* ╔══════════════════════════════════════════════════════╗
   ║  TOP BANNER                                          ║
   ╚══════════════════════════════════════════════════════╝ */
.top-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: var(--white);
    text-align: center;
    padding: 0.9rem 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}

.top-banner h1 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-light);
}

/* ╔══════════════════════════════════════════════════════╗
   ║  LAYOUT CONTAINER                                    ║
   ╚══════════════════════════════════════════════════════╝ */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 3rem 1.25rem 4rem;
}

/* ╔══════════════════════════════════════════════════════╗
   ║  HERO HEADER                                         ║
   ╚══════════════════════════════════════════════════════╝ */
.header-section {
    text-align: center;
    margin-bottom: 1.5rem;
}

.offer-headline {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 900;
    line-height: 1.15;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.offer-subheadline {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0;
}

.event-date {
    display: inline-block;
    margin-top: 1.25rem;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy);
    font-size: 1rem;
    font-weight: 800;
    border-radius: var(--radius-full);
    letter-spacing: 0.04em;
    box-shadow: 0 3px 12px rgba(201, 150, 13, .35);
}

/* ╔══════════════════════════════════════════════════════╗
   ║  HERO IMAGE                                          ║
   ╚══════════════════════════════════════════════════════╝ */
.hero-image-box {
    width: 90%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 1.5rem;
    border: 3px solid var(--gold);
    margin-left: auto;
    margin-right: auto;
}

/* ╔══════════════════════════════════════════════════════╗
   ║  CTA BUTTON                                          ║
   ╚══════════════════════════════════════════════════════╝ */
.cta-section {
    text-align: center;
    margin: 1rem 0 2rem 0;
}

.hero-cta-section {
    text-align: center;
    margin: 1rem 0 2rem 0;
}

.cta-button {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #e5142e 0%, #b8001f 100%);
    color: var(--white);
    padding: 1.1rem 2.75rem;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 800;
    border-radius: 5px;
    letter-spacing: 0.01em;
    box-shadow: 0 6px 24px rgba(185, 0, 31, .45), 0 2px 6px rgba(0, 0, 0, .15);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    overflow: hidden;
}

/* shimmer sweep on hover */
.cta-button::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, .25) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.cta-button:hover {
    background: linear-gradient(135deg, #c0152c 0%, #9a0019 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 36px rgba(185, 0, 31, .5), 0 4px 12px rgba(0, 0, 0, .2);
}

.cta-button:hover::after {
    transform: translateX(100%);
}

/* ╔══════════════════════════════════════════════════════╗
   ║  INTRO TEXT BLOCK                                    ║
   ╚══════════════════════════════════════════════════════╝ */
.intro-block {
    max-width: 720px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.intro-block h3 {
    font-size: clamp(1.3rem, 3vw, 1.75rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.intro-block p {
    color: var(--gray-700);
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
}

.intro-block p:last-child {
    margin-bottom: 0;
}

/* ╔══════════════════════════════════════════════════════╗
   ║  SECTION DIVIDER BARS                                ║
   ╚══════════════════════════════════════════════════════╝ */
.blue-bar {
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--blue) 100%);
    color: var(--white);
    text-align: center;
    padding: 1.1rem 1.5rem;
    font-size: clamp(1.05rem, 2.5vw, 1.4rem);
    font-weight: 700;
    margin: 2.5rem 0 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

/* subtle left accent strip */
.blue-bar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--gold-light);
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}

/* ╔══════════════════════════════════════════════════════╗
   ║  DAY CARDS                                           ║
   ╚══════════════════════════════════════════════════════╝ */
.day-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
    margin-bottom: 4rem;
}

.day-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.day-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.day-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: var(--gold-light);
    padding: 0.85rem 1rem;
    text-align: center;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.day-content {
    padding: 1.5rem 1.5rem 1.75rem;
}

.day-content h4 {
    margin-top: 0;
    margin-bottom: 0.6rem;
    color: var(--navy);
    font-size: 1.1rem;
    font-weight: 700;
}

.day-content p {
    color: var(--gray-700);
    font-size: 0.97rem;
    margin: 0;
}

/* ╔══════════════════════════════════════════════════════╗
   ║  PLUS MORE / BONUSES BLOCK                           ║
   ╚══════════════════════════════════════════════════════╝ */
.bonuses-block {
    text-align: center;
    margin-bottom: 2.5rem;
}

.bonuses-block h3 {
    font-size: clamp(1.3rem, 3vw, 1.65rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1.75rem;
}

.bonuses-list {
    list-style: none;
    display: inline-flex;
    flex-direction: column;
    gap: 0.85rem;
    text-align: left;
}

.bonuses-list li {
    background: var(--gold-pale);
    border: 1px solid rgba(201, 150, 13, .2);
    border-radius: var(--radius-md);
    padding: 0.85rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gray-900);
    box-shadow: var(--shadow-sm);
}

/* ╔══════════════════════════════════════════════════════╗
   ║  LIFE-CHANGE LEAD TEXT                               ║
   ╚══════════════════════════════════════════════════════╝ */
.can-3-days-block {
    text-align: center;
    margin-bottom: 3rem;
}

.can-3-days-block .lead {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 700;
    color: var(--navy);
    max-width: 680px;
    margin: 0 auto 1.25rem;
    line-height: 1.5;
}

.can-3-days-block .sub {
    color: var(--gray-700);
    font-size: 1rem;
}

/* ╔══════════════════════════════════════════════════════╗
   ║  NUMBERED FEATURES LIST                              ║
   ╚══════════════════════════════════════════════════════╝ */
.features-list {
    max-width: 760px;
    margin: 0 auto 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    transition: background var(--transition), box-shadow var(--transition);
}

.feature-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.feature-number {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(201, 150, 13, .3);
}

.feature-text {
    font-size: 1.02rem;
    color: var(--gray-700);
    line-height: 1.6;
    padding-top: 0.55rem;
}

/* ╔══════════════════════════════════════════════════════╗
   ║  CLOSING TAGLINE                                     ║
   ╚══════════════════════════════════════════════════════╝ */
.tagline-block {
    text-align: center;
    margin: 2.5rem 0;
}

.tagline-block h3 {
    font-size: clamp(1.3rem, 3vw, 1.65rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.tagline-block .tagline-sub {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.02em;
}

/* ╔══════════════════════════════════════════════════════╗
   ║  BIO SECTION                                         ║
   ╚══════════════════════════════════════════════════════╝ */
.bio-section {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.bio-content {
    flex: 2;
}

.bio-content p {
    color: var(--gray-700);
    font-size: 1.02rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.bio-content p:last-child {
    margin-bottom: 0;
}

.bio-image {
    flex: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--gold);
    flex-shrink: 0;
}

/* ╔══════════════════════════════════════════════════════╗
   ║  FINAL CTA BOX                                       ║
   ╚══════════════════════════════════════════════════════╝ */
.final-cta-box {
    text-align: center;
    margin: 4rem 0;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gold);
}

.final-cta-box h3 {
    font-size: clamp(1.2rem, 3vw, 1.65rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.75rem;
    line-height: 1.35;
}

/* ╔══════════════════════════════════════════════════════╗
   ║  FOOTER                                              ║
   ╚══════════════════════════════════════════════════════╝ */
.disclaimer-footer {
    background: var(--navy);
    padding: 2.5rem 1.5rem;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

.footer-links {
    margin-top: 0.9rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--gold-light);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-links span {
    color: rgba(255, 255, 255, .3);
}

.footer-contact {
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.footer-contact a {
    color: var(--gold-light);
    text-decoration: underline;
    transition: color var(--transition);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-disclaimer {
    margin: 1rem auto 0.75rem;
    max-width: 720px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
}

/* ╔══════════════════════════════════════════════════════╗
   ║  RESPONSIVE                                          ║
   ╚══════════════════════════════════════════════════════╝ */
@media (max-width: 768px) {
    .offer-headline {
        font-size: 2rem;
    }

    .bio-section {
        flex-direction: column;
        gap: 2rem;
    }

    .bio-image {
        max-width: 300px;
        width: 100%;
        margin: 0 auto;
    }

    .cta-button {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }

    .blue-bar {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 2rem 1rem 3rem;
    }

    .day-grid {
        grid-template-columns: 1fr;
    }

    .bonuses-list {
        width: 100%;
    }
}