/* ============================================
   Between Breaths Publishing — Main Stylesheet
   Color palette derived from "Standby Cue Love" cover:
   - Deep purple:   #2a1b3d
   - Rich magenta:  #b83280
   - Warm pink:     #e8527a
   - Soft lavender: #c4b5d4
   - Stage blue:    #4a5fd7
   - Cream white:   #fef9f4
   - Warm gold:     #d4a853
   ============================================ */

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

:root {
    --purple-deep: #2a1b3d;
    --purple-mid: #442865;
    --purple-soft: #6b4d8a;
    --magenta: #b83280;
    --magenta-light: #d4539a;
    --pink: #e8527a;
    --pink-soft: #f0a0b8;
    --lavender: #c4b5d4;
    --lavender-light: #e8e0f0;
    --blue-stage: #4a5fd7;
    --blue-soft: #7b8ee8;
    --cream: #fef9f4;
    --cream-dark: #f5ede3;
    --gold: #d4a853;
    --gold-light: #e8c97a;
    --white: #ffffff;
    --text-dark: #1a1225;
    --text-body: #3d2e50;
    --text-muted: #7a6b8a;

    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-accent: 'Crimson Pro', Georgia, serif;

    --nav-height: 72px;
    --section-pad: clamp(60px, 10vw, 120px);
    --container-max: 1200px;

    --transition-fast: 0.2s ease;
    --transition-med: 0.4s ease;
    --transition-slow: 0.6s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background-color: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--magenta);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--pink);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 48px);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition-fast);
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--magenta), var(--pink));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(184, 50, 128, 0.3);
}

.btn-primary:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(184, 50, 128, 0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition: all var(--transition-med);
}

.nav.scrolled {
    background: rgba(42, 27, 61, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
}

.nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 48px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-img {
    height: 81px;
    width: auto;
    transition: opacity var(--transition-fast);
}

.nav-logo:hover .nav-logo-img {
    opacity: 0.85;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    text-decoration: none;
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--magenta), var(--pink));
    transition: width var(--transition-fast);
    border-radius: 1px;
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, var(--purple-deep) 0%, #3d1f5c 30%, #4a2268 50%, var(--purple-mid) 70%, #2a1b3d 100%);
    overflow: hidden;
    padding: calc(var(--nav-height) + 40px) 0 60px;
}

/* Theater Curtain Decorations */
.hero-curtain {
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-curtain-left {
    left: 0;
    background: linear-gradient(90deg,
        rgba(139, 30, 80, 0.4) 0%,
        rgba(139, 30, 80, 0.15) 40%,
        transparent 100%
    );
}

.hero-curtain-right {
    right: 0;
    background: linear-gradient(-90deg,
        rgba(139, 30, 80, 0.4) 0%,
        rgba(139, 30, 80, 0.15) 40%,
        transparent 100%
    );
}

.hero-spotlight {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(74, 95, 215, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 48px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.hero-preheading {
    font-family: var(--font-accent);
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    color: var(--lavender);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 300;
    font-style: italic;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--white) 0%, var(--pink-soft) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-author {
    font-family: var(--font-accent);
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    color: var(--lavender);
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-author strong {
    color: var(--white);
    font-weight: 400;
}

.hero-tagline {
    font-family: var(--font-accent);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-bottom: 32px;
    max-width: 440px;
    line-height: 1.6;
}

/* Availability Badge */
.hero-availability {
    margin-bottom: 28px;
}

.availability-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.03em;
    margin-bottom: 4px;
}

.availability-detail {
    font-family: var(--font-accent);
    font-size: 0.95rem;
    color: var(--lavender);
    font-style: italic;
    letter-spacing: 0.03em;
}

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

/* Book Cover Display */
.hero-cover {
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-display {
    position: relative;
    max-width: 340px;
    width: 100%;
}

.book-cover-img {
    border-radius: 8px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: transform var(--transition-med);
}

.book-display:hover .book-cover-img {
    transform: translateY(-8px) rotate(-1deg);
}

.book-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(ellipse at center, rgba(184, 50, 128, 0.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    z-index: 2;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-hint-text {
    font-size: 0.7rem;
    color: var(--lavender);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-hint-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--lavender);
    border-bottom: 2px solid var(--lavender);
    transform: rotate(45deg);
    opacity: 0.6;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- Section Base Styles ---------- */
.section {
    padding: var(--section-pad) 0;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 64px);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    color: var(--magenta);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 400;
    font-style: italic;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--purple-deep);
    line-height: 1.2;
}

/* ---------- Books Section ---------- */
.section-books {
    background: var(--cream);
}

.book-card {
    margin-bottom: 64px;
}

.book-card:last-child {
    margin-bottom: 0;
}

.book-card-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--purple-deep);
    margin-bottom: 12px;
    line-height: 1.2;
}

/* Coming Soon book card */
.book-card-upcoming {
    opacity: 0.9;
}

.book-cover-placeholder {
    width: 100%;
    aspect-ratio: 2/3;
    background: linear-gradient(135deg, var(--lavender-light) 0%, var(--lavender) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 40px rgba(42, 27, 61, 0.12);
}

.book-cover-placeholder span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--purple-mid);
    font-style: italic;
}

.book-details {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: start;
}

.book-cover-feature {
    max-width: 300px;
    position: sticky;
    top: calc(var(--nav-height) + 24px);
}

.book-feature-img {
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(42, 27, 61, 0.2);
}

.book-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.book-meta-item {
    font-family: var(--font-accent);
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

.book-meta-divider {
    color: var(--lavender);
}

.book-blurb {
    margin-bottom: 28px;
}

.blurb-placeholder {
    font-family: var(--font-accent);
    color: var(--magenta);
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.blurb-placeholder-text {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 12px;
}

.book-tropes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.trope-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--lavender-light);
    color: var(--purple-mid);
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 50px;
    letter-spacing: 0.03em;
}

.book-buy {
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.btn-amazon {
    background: #FF9900;
    color: #111;
    box-shadow: 0 4px 16px rgba(255, 153, 0, 0.3);
    font-weight: 600;
}

.btn-amazon:hover {
    color: #111;
    background: #FFB340;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 153, 0, 0.45);
}

.btn-amazon .amazon-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.ku-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-accent);
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.ku-badge svg {
    flex-shrink: 0;
    color: var(--purple-soft);
}

/* ---------- Author Section ---------- */
.section-author {
    background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}

.author-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(32px, 5vw, 60px);
    align-items: start;
}

.author-avatar-wrap {
    width: clamp(180px, 20vw, 260px);
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(42, 27, 61, 0.15);
    border: 4px solid var(--white);
    flex-shrink: 0;
}

.author-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-bio .bio-placeholder {
    font-family: var(--font-accent);
    color: var(--magenta);
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.author-bio .bio-placeholder-text {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 12px;
}

.author-social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.social-instagram {
    color: var(--magenta);
    border: 2px solid var(--magenta);
}

.social-instagram:hover {
    background: var(--magenta);
    color: var(--white);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

/* ---------- Publisher Section ---------- */
.section-publisher {
    background: var(--purple-deep);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.section-publisher::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(184, 50, 128, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(74, 95, 215, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.section-publisher .section-tag {
    color: var(--pink-soft);
}

.section-publisher .section-title {
    color: var(--white);
}

.publisher-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.publisher-content p {
    font-family: var(--font-accent);
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

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

/* ---------- Connect Section ---------- */
.section-connect {
    background: var(--cream);
}

.connect-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.connect-content-two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
    margin: 0 auto;
}

.connect-card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(42, 27, 61, 0.06);
    transition: all var(--transition-fast);
    border: 1px solid var(--lavender-light);
}

.connect-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(42, 27, 61, 0.12);
}

.connect-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lavender-light);
    border-radius: 50%;
    color: var(--purple-mid);
}

.connect-icon svg {
    width: 24px;
    height: 24px;
}

.connect-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--purple-deep);
    margin-bottom: 8px;
    font-weight: 600;
}

.connect-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.connect-link {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--magenta);
    word-break: break-all;
}

.connect-link:hover {
    color: var(--pink);
}

.coming-soon-text {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--text-muted) !important;
    font-size: 0.95rem !important;
    margin-bottom: 0 !important;
}

/* Newsletter Form (for future use) */
.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 10px 16px;
    border: 2px solid var(--lavender-light);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--cream);
    transition: border-color var(--transition-fast);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--magenta);
}

.newsletter-form .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--purple-deep);
    color: var(--white);
    padding: 48px 0 24px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    gap: 24px;
    flex-wrap: wrap;
}

.footer-logo-img {
    height: 72px;
    width: auto;
    opacity: 0.85;
}

.footer-nav {
    display: flex;
    gap: 28px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    transition: color var(--transition-fast);
}

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

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
}

.footer-social-link:hover {
    color: var(--white);
    border-color: var(--magenta);
    background: rgba(184, 50, 128, 0.2);
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.02em;
}

/* ---------- Scroll Animations ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-content {
        gap: 40px;
    }

    .book-display {
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }

    /* Mobile Nav */
    .nav-logo-img {
        height: 68px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(42, 27, 61, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-med);
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    /* Hero Mobile */
    .hero {
        min-height: auto;
        padding: calc(var(--nav-height) + 48px) 0 80px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-cover {
        order: 1;
    }

    .hero-tagline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-availability {
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .book-display {
        max-width: 240px;
        margin: 0 auto;
    }

    .hero-curtain {
        width: 8%;
    }

    /* Book Section Mobile */
    .book-details {
        grid-template-columns: 1fr;
    }

    .book-cover-feature {
        max-width: 220px;
        margin: 0 auto;
        position: static;
    }

    /* Author Section Mobile */
    .author-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .author-avatar-wrap {
        margin: 0 auto;
    }

    .author-social {
        justify-content: center;
    }

    /* Connect Cards Mobile */
    .connect-content,
    .connect-content-two {
        grid-template-columns: 1fr;
        max-width: none;
    }

    /* Book buy mobile */
    .book-buy {
        align-items: center;
    }

    /* Footer Mobile */
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 260px;
    }
}

/* ---------- Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

:focus-visible {
    outline: 2px solid var(--magenta);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    background: var(--magenta);
    color: var(--white);
    z-index: 9999;
    border-radius: 0 0 8px 8px;
    font-size: 0.9rem;
}

.skip-link:focus {
    top: 0;
}
