/* ===================================
   DEEPER WATERS - CSS STYLES
   =================================== */

/* CSS Variables - Light Mode (Default) */
:root {
    --color-bg: #faf9f7;
    --color-bg-light: #f0eeeb;
    --color-bg-alt: #e8e6e3;
    --color-text: #1a1a1f;
    --color-text-muted: #5a5a6a;
    --color-accent: #4a7c9b;
    --color-accent-light: #6ba3c7;
    --color-gold: #a8893a;
    --color-gold-light: #c9a962;
    --color-border: rgba(0, 0, 0, 0.1);
    --color-border-light: rgba(0, 0, 0, 0.05);
    --color-card-bg: rgba(0, 0, 0, 0.02);
    --color-card-hover: rgba(0, 0, 0, 0.05);
    --color-nav-bg: rgba(250, 249, 247, 0.95);
    --color-strikethrough: rgba(0, 0, 0, 0.3);

    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Dark Mode */
[data-theme="dark"] {
    --color-bg: #0a0a0f;
    --color-bg-light: #12121a;
    --color-bg-alt: #1a1a24;
    --color-text: #f5f5f7;
    --color-text-muted: #8a8a9a;
    --color-accent: #4a7c9b;
    --color-accent-light: #6ba3c7;
    --color-gold: #c9a962;
    --color-gold-light: #e0c882;
    --color-border: rgba(255, 255, 255, 0.1);
    --color-border-light: rgba(255, 255, 255, 0.05);
    --color-card-bg: rgba(255, 255, 255, 0.02);
    --color-card-hover: rgba(255, 255, 255, 0.05);
    --color-nav-bg: rgba(10, 10, 15, 0.95);
    --color-strikethrough: rgba(255, 255, 255, 0.3);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.1;
}

em {
    font-style: italic;
    color: var(--color-gold);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 0;
    transition: all 0.4s var(--transition-smooth);
}

.nav.scrolled {
    background: var(--color-nav-bg);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border-light);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-cta {
    background: var(--color-gold);
    color: var(--color-bg) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--color-gold-light);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.water-layer {
    position: absolute;
    inset: -20%;
    width: 140%;
    height: 140%;
    will-change: transform;
    pointer-events: none;
}

/* Clean, vibrant water layers - no opacity animations to prevent banding */
.water-layer-1 {
    background: radial-gradient(
        ellipse 120% 80% at 50% 100%,
        rgba(74, 124, 155, 0.55) 0%,
        rgba(74, 124, 155, 0.25) 35%,
        transparent 65%
    );
}

.water-layer-2 {
    background: radial-gradient(
        ellipse 100% 60% at 20% 90%,
        rgba(107, 163, 199, 0.45) 0%,
        rgba(107, 163, 199, 0.15) 40%,
        transparent 70%
    );
}

.water-layer-3 {
    background: radial-gradient(
        ellipse 100% 60% at 80% 85%,
        rgba(56, 102, 135, 0.4) 0%,
        rgba(74, 124, 155, 0.15) 35%,
        transparent 65%
    );
}

.water-layer-4 {
    background: radial-gradient(
        ellipse 140% 70% at 50% 110%,
        rgba(168, 137, 58, 0.3) 0%,
        rgba(201, 169, 98, 0.12) 40%,
        transparent 70%
    );
}

/* Subtle ambient glow */
.water-layer-5 {
    background: radial-gradient(
        ellipse 80% 50% at 50% 80%,
        rgba(107, 163, 199, 0.2) 0%,
        transparent 60%
    );
}

/* Light shimmer/reflection */
.water-layer-6 {
    background:
        radial-gradient(ellipse 30% 15% at 35% 75%, rgba(255, 255, 255, 0.12) 0%, transparent 100%),
        radial-gradient(ellipse 25% 12% at 65% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.hero-eyebrow {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-line {
    display: block;
    padding: 0.05em 0;
    background: linear-gradient(135deg, var(--color-text) 0%, var(--color-text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line:first-child {
    transform: translateX(-5%);
}

.title-line:last-child {
    transform: translateX(5%);
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 3vw, 2rem);
    color: var(--color-text);
    max-width: 700px;
    margin: 0 auto 1.5rem;
    font-weight: 500;
    line-height: 1.4;
}

.hero-subtitle em {
    font-style: italic;
    color: var(--color-gold);
}

.hero-byline {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--color-text-muted);
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 4rem;
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.hero-scroll:hover {
    color: var(--color-text);
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid currentColor;
    border-radius: 12px;
    position: relative;
}

.scroll-arrow {
    width: 4px;
    height: 8px;
    background: currentColor;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

/* Initial Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s var(--transition-smooth) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Story Sections */
.story-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0;
    position: relative;
}

.story-content {
    width: 100%;
}

.story-content.centered {
    text-align: center;
}

/* Scroll Reveal Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s var(--transition-smooth);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal.delay-1 { transition-delay: 0.15s; }
.scroll-reveal.delay-2 { transition-delay: 0.3s; }
.scroll-reveal.delay-3 { transition-delay: 0.45s; }
.scroll-reveal.delay-4 { transition-delay: 0.6s; }
.scroll-reveal.delay-5 { transition-delay: 0.75s; }

/* Section: Full-Screen Stats Slides */
.stats-section {
    position: relative;
    height: 300vh; /* 3 slides * 100vh each */
}

.stats-container {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.stat-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: opacity 0.6s var(--transition-smooth),
                transform 0.6s var(--transition-smooth);
    pointer-events: none;
}

.stat-slide.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.stat-slide.exiting {
    opacity: 0;
    transform: translateY(-60px) scale(0.95);
}

/* Different backgrounds for each slide */
.stat-slide[data-stat="1"] {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-light) 100%);
}

.stat-slide[data-stat="2"] {
    background: var(--color-bg-light);
}

.stat-slide[data-stat="3"] {
    background: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-bg-alt) 100%);
}

.stat-content {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: clamp(5rem, 18vw, 14rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    padding: 0.1em 0;
    background: linear-gradient(135deg, var(--color-text) 0%, var(--color-text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-suffix {
    font-size: 0.5em;
    /* Inherit the gradient from parent */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.stat-subtext {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--color-text-muted);
    font-style: italic;
}

.section-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    max-width: 900px;
}

.section-subtitle {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-family: var(--font-serif);
    color: var(--color-text-muted);
    font-weight: 400;
    margin-bottom: 1rem;
}

/* Section: Tension */
.section-tension {
    background: var(--color-bg-light);
}

.statement-large {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.statement-reveal {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-family: var(--font-serif);
    color: var(--color-text-muted);
    font-weight: 400;
}

.statement-emphasis {
    font-size: clamp(2rem, 5vw, 4rem);
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--color-gold);
    margin-top: 1rem;
}

/* Section: Struggle */
.section-struggle {
    background: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-bg) 100%);
}

.large-text {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-family: var(--font-serif);
    line-height: 1.5;
    max-width: 800px;
}

.highlight {
    color: var(--color-gold);
    font-weight: 600;
}

.struggle-list {
    margin: 3rem 0;
    padding-left: 2rem;
    border-left: 3px solid var(--color-accent);
}

.struggle-item {
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    font-family: var(--font-serif);
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
}

/* Section: Personal */
.section-personal {
    background: var(--color-bg);
    position: relative;
}

.section-personal::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse, var(--color-accent) 0%, transparent 70%);
    opacity: 0.05;
    pointer-events: none;
}

.personal-story {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.quote-mark {
    font-family: var(--font-serif);
    font-size: 15rem;
    color: var(--color-gold);
    opacity: 0.15;
    position: absolute;
    top: -6rem;
    left: -2rem;
    line-height: 1;
    pointer-events: none;
}

.personal-statement {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 3rem;
}

.personal-details {
    margin-bottom: 3rem;
}

.personal-details p {
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    font-family: var(--font-serif);
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}

.personal-details .emphasis {
    color: var(--color-text);
    font-weight: 600;
    margin-top: 1.5rem;
}

.personal-confession {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 2rem;
}

.personal-attribution {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* Section: Mission */
.section-mission {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-light) 100%);
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.mission-name {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.mission-purpose {
    margin-bottom: 3rem;
}

.purpose-negative {
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    font-family: var(--font-serif);
    color: var(--color-text-muted);
    text-decoration: line-through;
    text-decoration-color: var(--color-strikethrough);
    margin-bottom: 1rem;
}

.purpose-positive {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-family: var(--font-serif);
    font-weight: 600;
}

.mission-vision {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-family: var(--font-serif);
    color: var(--color-text-muted);
}

/* Section: Goals */
.section-goals {
    background: var(--color-bg-light);
}

.goals-content {
    max-width: 900px;
    margin: 0 auto;
}

.goals-intro {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.goals-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.goal-item {
    padding: 2rem;
    border-left: 4px solid var(--color-accent);
    background: var(--color-card-bg);
    transition: all 0.4s var(--transition-smooth);
}

.goal-item:hover {
    background: var(--color-card-hover);
    border-left-color: var(--color-gold);
    transform: translateX(10px);
}

.goal-word {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.goal-target {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-muted);
}

/* Section: Transformation */
.section-transformation {
    background: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-bg) 100%);
}

.transformation-content {
    text-align: center;
}

.transformation-intro {
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    font-family: var(--font-serif);
    color: var(--color-text-muted);
    margin-bottom: 4rem;
}

.transformation-journey {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.journey-step {
    padding: 1.5rem 2rem;
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    transition: all 0.4s var(--transition-smooth);
}

.journey-step:hover {
    background: var(--color-card-hover);
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.step-label {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
}

.journey-arrow {
    font-size: 2rem;
    color: var(--color-gold);
    font-weight: 300;
}

/* Section: Connect */
.section-connect {
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.section-connect::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 50%;
    background: radial-gradient(ellipse at 50% 100%, var(--color-accent) 0%, transparent 60%);
    opacity: 0.1;
    pointer-events: none;
}

.connect-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.connect-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.connect-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--color-text-muted);
    margin-bottom: 3rem;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s var(--transition-smooth);
}

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

.social-link:hover {
    transform: translateY(-3px);
    border-color: currentColor;
}

.social-link.youtube:hover {
    background: rgba(255, 0, 0, 0.15);
    color: #ff0000;
}

.social-link.podcast:hover {
    background: rgba(147, 51, 234, 0.15);
    color: #9333ea;
}

.social-link.instagram:hover {
    background: rgba(225, 48, 108, 0.15);
    color: #e1306c;
}

/* Newsletter */
.newsletter {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border-light);
    border-radius: 24px;
    padding: 3rem;
}

.newsletter-label {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    color: var(--color-text);
    font-size: 1rem;
    font-family: var(--font-sans);
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: var(--color-text-muted);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--color-gold);
    background: var(--color-bg-light);
}

.newsletter-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--color-gold);
    color: var(--color-bg);
    border: none;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
}

.newsletter-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.newsletter-button:hover {
    background: var(--color-gold-light);
    transform: scale(1.02);
}

.newsletter-button:hover svg {
    transform: translateX(4px);
}

.newsletter-note {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Footer */
.footer {
    padding: 4rem 0;
    background: var(--color-bg-light);
    border-top: 1px solid var(--color-border-light);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    opacity: 0.7;
}

/* Theme Toggle */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: all 0.3s var(--transition-smooth);
    margin-left: 0.5rem;
}

.theme-toggle:hover {
    color: var(--color-text);
    border-color: var(--color-gold);
    background: var(--color-card-bg);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s var(--transition-smooth);
}

.theme-toggle:hover svg {
    transform: rotate(15deg);
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
    display: none;
}

/* Light mode: show moon icon (to switch to dark) */
:root .theme-toggle .icon-moon {
    display: block;
}

/* Dark mode: show sun icon (to switch to light) */
[data-theme="dark"] .theme-toggle .icon-sun {
    display: block;
}

[data-theme="dark"] .theme-toggle .icon-moon {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .theme-toggle {
        position: fixed;
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
        background: var(--color-bg);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        z-index: 99;
    }

    .container {
        padding: 0 1.5rem;
    }

    .story-section {
        padding: 4rem 0;
        min-height: auto;
    }

    .quote-mark {
        font-size: 8rem;
        top: -3rem;
        left: -1rem;
    }

    .transformation-journey {
        flex-direction: column;
    }

    .journey-arrow {
        transform: rotate(90deg);
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter {
        padding: 2rem 1.5rem;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-link {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

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

    .title-line:first-child,
    .title-line:last-child {
        transform: none;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .scroll-reveal {
        opacity: 1;
        transform: none;
    }
}
