/* CSS Reset & Variables */
:root {
    --bg-color: #FAFAF8;
    /* Soft Off-White */
    --text-color: #1D1D1F;
    /* Apple Dark Grey */
    --text-light: #86868B;
    /* Apple Light Grey */
    --accent: #C3A38A;
    /* Muted Bronze */
    --accent-dark: #000000;

    --card-bg: #FFFFFF;

    /* Typography - More Refined */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Outfit', sans-serif;

    --radius-sm: 12px;
    --radius-md: 24px;

    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: -0.02em;
}

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

button {
    cursor: pointer;
    border: none;
    font-family: var(--font-sans);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

button:hover {
    transform: scale(1.02);
}

/* Header - Floating & Minimal */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
}

.logo {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--text-color);
    letter-spacing: -0.01em;
}

.btn-subtle {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    color: var(--text-color);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.8rem 1.6rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-subtle:hover {
    background: #FFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Hero Section - Apple Layout (Text Left, Img Right split) */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
}

.hero-main-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    order: 2;
    z-index: 2;
}

.hero-tag {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.hero-title em {
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 300;
    color: var(--text-light);
    display: block;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 480px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.btn-primary {
    background-color: var(--text-color);
    color: #FFF;
    padding: 1.1rem 2.2rem;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 500;
}

.btn-secondary {
    background: transparent;
    color: var(--text-color);
    padding: 1.1rem 2.2rem;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-image-wrapper {
    position: relative;
    order: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    /* Apple style: soft shadow, slight scale */
    box-shadow: var(--shadow-soft);
    aspect-ratio: 4/5;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-image-wrapper:hover img {
    transform: scale(1.05);
}

/* Desktop Hero */
@media (min-width: 992px) {
    .hero {
        padding: 0 4rem;
        height: 100vh;
    }

    .hero-main-layout {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }

    .hero-content {
        order: 1;
    }

    .hero-image-wrapper {
        order: 2;
        height: 80vh;
        max-height: 800px;
    }

    .hero-title {
        font-size: 5rem;
    }
}

/* Intro Quote - Editorial */
.intro-section {
    padding: 8rem 2rem;
    text-align: center;
}

.intro-text {
    font-family: var(--font-serif);
    font-size: 2rem;
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-color);
}

.intro-text .highlight {
    color: var(--accent);
    font-style: italic;
    position: relative;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .intro-text {
        font-size: 2.8rem;
    }
}

/* Bio Section - Feature Block Style */
.bio-section {
    padding: 4rem 2rem 8rem;
}

.bio-card {
    background-color: #E8D7D9;
    /* Soft dusty pink background */
    border-radius: var(--radius-md);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    max-width: 1400px;
    margin: 0 auto;
}

.bio-img-col {
    height: 400px;
}

.bio-img-col img {
    width: 100%;
    height: 100%;
}

.bio-text-col {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bio-text-col h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.bio-text-col p {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.7);
    max-width: 500px;
    margin-bottom: 2rem;
}

@media (min-width: 992px) {
    .bio-card {
        grid-template-columns: 1.2fr 1fr;
        height: 600px;
    }

    .bio-img-col {
        height: 100%;
    }

    .bio-text-col {
        padding: 5rem;
    }
}

/* Catalog - Clean Apple TV Style */
.catalog-section {
    padding: 6rem 0;
    background-color: #000;
    /* Deep Cinema Black */
    color: #FFF;
}

.catalog-header {
    padding: 0 2rem 3rem;
    max-width: 1440px;
    margin: 0 auto;
}

.catalog-header h2 {
    font-size: 2.5rem;
    color: #F5F5F7;
}

/* Featured Spotlight */
.spotlight-wrapper {
    max-width: 1400px;
    margin: 0 auto 6rem;
    padding: 0 2rem;
}

.spotlight-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

@media (min-width: 900px) {
    .spotlight-card {
        aspect-ratio: 21/9;
        /* Cinematic Ultra-wide */
    }
}

.spotlight-card img {
    width: 100%;
    height: 100%;
}

.spotlight-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

@media (min-width: 768px) {
    .spotlight-overlay {
        padding: 4rem;
        width: 50%;
        background: linear-gradient(to right, rgba(0, 0, 0, 0.8), transparent);
    }
}

.spotlight-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #C3A38A;
    margin-bottom: 1rem;
    font-weight: 600;
}

.spotlight-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .spotlight-title {
        font-size: 3rem;
    }
}

.spotlight-desc {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Rails */
.rail {
    margin-bottom: 4rem;
    padding-left: 2rem;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.rail-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #86868B;
    font-family: var(--font-sans);
    font-weight: 500;
}

.rail-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-right: 2rem;
    padding-bottom: 2rem;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.episode-card {
    min-width: 300px;
    transition: transform 0.3s ease;
}

.episode-card:hover {
    transform: translateY(-5px);
}

.card-thumb {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    aspect-ratio: 16/9;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.card-info h5 {
    color: #F5F5F7;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.card-info p {
    color: #86868B;
    font-size: 0.9rem;
}

/* Quotes - Clean Cards */
.quotes-section {
    padding: 8rem 2rem;
    background-color: var(--bg-color);
}

.quotes-header {
    text-align: center;
    margin-bottom: 5rem;
}

.quotes-header h2 {
    font-size: 3rem;
    color: var(--text-color);
}

.quotes-grid {
    display: grid;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.quote-card {
    background: #FFF;
    padding: 3rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: box-shadow 0.4s ease;
}

.quote-card:hover {
    box-shadow: var(--shadow-hover);
}

.quote-card p {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.quote-author {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

/* Footer */
.site-footer {
    padding: 4rem 2rem;
    background-color: var(--bg-color);
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links span {
    color: var(--text-color);
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.2s;
}

.footer-links span:hover {
    color: var(--accent);
}

/* Scroll Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Social / Instagram Section */
.social-section {
    padding: 6rem 2rem;
    background-color: #FAFAF8;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.social-content {
    text-align: center;
    margin-bottom: 4rem;
}

.social-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #000;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    position: relative;
    border: 4px solid #333;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #FFF;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Insta UI Mock */
.insta-header {
    padding: 1rem;
    border-bottom: 1px solid #EEE;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FFF;
    z-index: 2;
}

.insta-username {
    font-weight: 700;
    font-size: 0.9rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.insta-feed {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 2rem;
    scrollbar-width: none;
}

.insta-feed::-webkit-scrollbar {
    display: none;
}

.insta-stories {
    display: flex;
    gap: 10px;
    padding: 10px;
    border-bottom: 1px solid #EEE;
    overflow-x: auto;
}

.story-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    padding: 2px;
    flex-shrink: 0;
}

.story-inner {
    width: 100%;
    height: 100%;
    background: #FFF;
    border-radius: 50%;
    border: 2px solid #FFF;
    overflow: hidden;
}

.story-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insta-post {
    margin-bottom: 1rem;
}

.insta-post img {
    width: 100%;
    display: block;
}

.insta-actions {
    padding: 0.8rem;
    display: flex;
    gap: 1rem;
}

.action-icon {
    width: 22px;
    height: 22px;
    stroke-width: 1.8px;
}

/* New Insta Post Styles */
.insta-post-header {
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.post-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    background: #EFEFEF;
}

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

.post-username {
    font-size: 0.85rem;
    font-weight: 600;
    color: #262626;
}

.insta-caption {
    padding: 0 12px 16px;
    font-size: 0.85rem;
    color: #262626;
}

.caption-text {
    font-weight: 400;
}

/* Reels Section */
.reels-section {
    padding: 6rem 2rem;
    background-color: #000;
    color: #FFF;
    overflow: hidden;
}

.reels-header {
    text-align: center;
    margin-bottom: 4rem;
}

.reels-header h2 {
    font-size: 2.5rem;
}

.reels-container {
    display: flex;
    gap: 3rem;
    overflow-x: auto;
    padding-bottom: 2rem;
    justify-content: center;
    /* Center on desktop */
    scrollbar-width: none;
}

.reels-container::-webkit-scrollbar {
    display: none;
}

.reel-mockup {
    min-width: 280px;
    height: 550px;
    /* Slightly smaller than main mockup */
    background: #1c1c1e;
    border-color: #333;
    flex-shrink: 0;
}

.reel-screen {
    background: #000;
}

.reel-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.reel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 40%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
}

.reel-side-icons {
    position: absolute;
    right: 1rem;
    bottom: 5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.icon-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.8rem;
    gap: 4px;
}

.icon-stack span {
    font-size: 1.5rem;
}

.reel-bottom-info {
    padding-right: 3rem;
}

.reel-user {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.reel-user img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.reel-user span {
    font-weight: 600;
    font-size: 0.9rem;
}

.reel-caption {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.hashtag {
    color: #FFF;
    font-weight: 600;
}

.reel-music {
    font-size: 0.75rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 5px;
}

@media (max-width: 768px) {
    .reels-container {
        justify-content: flex-start;
        /* Left align for scroll on mobile */
        padding-left: 2rem;
    }
}