/* editorial-style.css - High Editorial / Magazine Aesthetic + Doodles */
:root {
    --f-heading: 'Cormorant Garamond', serif;
    --f-body: 'Montserrat', sans-serif;
    --f-hand: 'La Belle Aurore', cursive;

    /* Palette: Cute & Soft */
    --c-bg: #FFF5F7;
    /* Soft Blush Pink */
    --c-text: #2D2D2D;
    /* Soft Charcoal */
    --c-text-muted: #666666;
    --c-accent: #FF8BA7;
    /* Vibrant Coral Pink */
    --c-border: #FFDEE9;
    --c-card-bg: #FFFFFF;

    --spacing-layout: 100px;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--c-bg);
    color: var(--c-text);
    font-family: var(--f-body);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Texture Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

h1,
h2,
h3 {
    font-family: var(--f-heading);
    font-weight: 400;
    line-height: 1.05;
    color: var(--c-text);
    letter-spacing: -2px;
    /* Prominent tight look */
}

h1 {
    font-size: clamp(4rem, 12vw, 8rem);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

h2 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    margin-bottom: 15px;
}

h3 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.eyebrow {
    font-family: var(--f-hand);
    font-size: 1.8rem;
    color: var(--c-accent);
    display: block;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.handwritten-note {
    font-family: var(--f-hand);
    font-size: 1.5rem;
    color: var(--c-accent);
    display: block;
    margin-bottom: 10px;
    transform: rotate(-5deg);
}

.handwritten-note.centered {
    text-align: center;
    margin: 0 auto;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

img {
    width: 100%;
    display: block;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 245, 247, 0.95);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.logo {
    font-family: var(--f-heading);
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a:not(.cta-button-small) {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    display: none;
}

@media(min-width: 768px) {
    .nav-links a:not(.cta-button-small) {
        display: block;
    }
}

.cta-button-small {
    padding: 12px 28px;
    background: var(--c-text);
    color: white;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
}

/* Hero - Magazine Layout */
.hero {
    min-height: 100vh;
    padding: 120px 5% 50px;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-visual {
    order: 1;
    position: relative;
}

.hero-visual .image-wrapper-decor {
    position: relative;
}

.hero-visual img {
    border-radius: 200px 200px 0 0;
    /* Signature Arch */
    height: 60vh;
    object-fit: cover;
    box-shadow: 20px 20px 0 var(--c-accent);
    /* Graphic Shadow */
    z-index: 1;
    position: relative;
}

/* Decorations */
.decor-star {
    position: absolute;
    width: 60px;
    height: 60px;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.s-1 {
    top: -20px;
    right: -20px;
    transform: rotate(15deg);
}

.decor-squiggle {
    position: absolute;
    width: 100px;
    height: 30px;
    bottom: 20px;
    left: -30px;
    z-index: 2;
}

.decor-sparkle {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 100px;
    left: 5%;
    animation: twinkle 4s infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(15deg);
    }

    50% {
        transform: translateY(-10px) rotate(25deg);
    }

    100% {
        transform: translateY(0) rotate(15deg);
    }
}

@keyframes twinkle {
    0% {
        opacity: 0.5;
        transform: scale(0.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }

    100% {
        opacity: 0.5;
        transform: scale(0.9);
    }
}

.hero-content {
    order: 2;
    text-align: center;
}

.hero h1 em {
    font-family: var(--f-heading);
    font-style: italic;
    color: var(--c-accent);
}

.hero-bio {
    font-size: 1.1rem;
    color: var(--c-text-muted);
    margin-bottom: 40px;
}

.cta-button-primary {
    display: inline-block;
    padding: 18px 45px;
    background: transparent;
    border: 1px solid var(--c-text);
    color: var(--c-text);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    position: relative;
    overflow: hidden;
}

.cta-button-primary:hover {
    background: var(--c-text);
    color: white;
}

/* Partnerships Marquee */
.partnerships {
    padding: 40px 0;
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
    overflow: hidden;
    background: white;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    animation: scroll 30s linear infinite;
}

/* Pause animation on hover for better visibility */
.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.brand-logo {
    height: 60px;
    /* Increased size as requested */
    width: auto;
    margin: 0 50px;
    /* Increased spacing */
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.brand-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* About Section */
.about-section {
    padding: var(--spacing-layout) 5%;
    max-width: 1600px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    gap: 60px;
    align-items: center;
}

.image-stack {
    position: relative;
    padding: 10px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
}

.tape-decor {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 30px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #EEE;
    opacity: 0.8;
}

.about-image img {
    width: 100%;
}

.stats-row {
    display: flex;
    gap: 50px;
    margin-top: 30px;
    border-top: 1px solid var(--c-border);
    padding-top: 30px;
}

.stat .num {
    display: block;
    font-family: var(--f-heading);
    font-size: 2.5rem;
    line-height: 1;
}

.stat .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-text-muted);
}

/* Packages */
.packages-section {
    padding: var(--spacing-layout) 5%;
    background: #F4F4F0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.packages-grid {
    display: grid;
    gap: 30px;
    max-width: 1400px;
    /* Slightly less than 1600 for card focus */
    margin: 0 auto;
}

.package-card {
    background: white;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.sticker-label {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--c-accent);
    color: white;
    padding: 8px 15px;
    border-radius: 50%;
    font-family: var(--f-hand);
    font-size: 1rem;
    transform: rotate(15deg);
}

.pkg-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--c-border);
    padding-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.pkg-price {
    font-family: var(--f-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--c-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pkg-list {
    list-style: none;
    margin-top: 20px;
}

.pkg-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
    color: var(--c-text-muted);
}

.pkg-list li::before {
    content: "•";
    color: var(--c-accent);
    position: absolute;
    left: 0;
}

/* Portfolio Categories */
.portfolio-section {
    padding: var(--spacing-layout) 5%;
}

.category-grid {
    display: grid;
    gap: 30px;
    margin-top: 50px;
}

.category-item {
    text-align: center;
    display: block;
}

.img-wrapper {
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.corner-decor {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
}

.img-wrapper img {
    transition: transform 0.6s ease;
}

.category-item:hover img {
    transform: scale(1.05);
}

.category-item h3 {
    font-size: 1.5rem;
    font-style: italic;
}

/* Instagram Grid */
.instagram-feed {
    padding-bottom: var(--spacing-layout);
    max-width: 1400px;
    margin: 0 auto;
}

.ig-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 5%;
}

.ig-post {
    position: relative;
    aspect-ratio: 9/16;
    cursor: pointer;
    transition: transform 0.3s;
}

.rotated-left {
    transform: rotate(-3deg);
}

.rotated-right {
    transform: rotate(2deg);
}

.ig-post:hover {
    transform: scale(1.02) rotate(0);
    z-index: 10;
}

.ig-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.ig-post:hover .hover-overlay {
    opacity: 1;
}

/* Contact Section */
.contact-section {
    padding: var(--spacing-layout) 5%;
    background: var(--c-text);
    color: white;
    display: flex;
    justify-content: center;
}

.contact-card {
    width: 100%;
    max-width: 700px;
    text-align: center;
}

.contact-card h2 {
    color: white;
    margin-bottom: 40px;
}

.contact-eyebrow {
    color: var(--c-accent);
    display: block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

#contact-form {
    display: grid;
    gap: 20px;
}

.input-group {
    display: grid;
    gap: 20px;
}

input,
select,
textarea {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    color: white;
    font-family: var(--f-body);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: white;
}

.submit-btn-large {
    background: white;
    color: var(--c-text);
    padding: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
}

/* Footer */
footer {
    padding: 40px 5%;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background: white;
}

.footer-simple {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 0.8rem;
    color: var(--c-text);
    /* Made darker for visibility */
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Desktop Media Query */
@media(min-width: 900px) {
    .hero {
        grid-template-columns: 1.2fr 1fr;
        text-align: left;
    }

    .hero-visual {
        order: 2;
    }

    .hero-content {
        order: 1;
        text-align: left;
    }

    .decor-star {
        right: auto;
        left: -30px;
        top: 10%;
    }

    /* Adjust decor for desktop */

    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ig-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .input-group {
        grid-template-columns: 1fr 1fr;
    }

    .footer-simple {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Extra Decorations */
.decor-arrow {
    position: absolute;
    width: 60px;
    height: 30px;
    top: 50%;
    right: -70px;
    transform: translateY(-50%) rotate(-10deg);
    pointer-events: none;
    z-index: 10;
}

@media(max-width: 768px) {
    .decor-arrow {
        right: -40px;
        width: 40px;
    }
}

/* Video Grid Styles */
.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: black;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.play-btn::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 14px solid var(--c-accent);
    margin-left: 4px;
    /* Optical center adjustment */
}

.ig-post:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.2);
    background: white;
}

/* --- Expansion Sections --- */

/* Stats Section */
.stats-section {
    padding: 60px 5%;
    background: var(--c-accent);
    color: white;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--f-heading);
    font-size: 3.5rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* Process Section */
.process-section {
    padding: var(--spacing-layout) 5%;
}

.process-steps {
    display: grid;
    gap: 50px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 1600px;
    margin: 0 auto;
}

.step-card {
    background: white;
    padding: 50px 40px;
    border: 1px solid var(--c-border);
    border-radius: 30px;
    text-align: center;
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.step-icon {
    font-family: var(--f-heading);
    font-size: 3.5rem;
    /* Larger Icon/Number */
    color: var(--c-accent);
    margin-bottom: 25px;
    font-style: italic;
}

.step-card h3 {
    font-size: 3rem;
    /* Prominent Heading */
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--spacing-layout) 5%;
    background: #FFFAF0;
    /* Warm paper color */
    overflow: hidden;
}

.testimonial-grid {
    display: grid;
    gap: 50px;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.review-text {
    font-family: var(--f-heading);
    font-size: 1.6rem;
    /* Bigger quote text */
    font-style: italic;
    line-height: 1.3;
    margin: 25px 0;
    color: var(--c-text);
}

.stars {
    color: var(--c-accent);
    letter-spacing: 5px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    border-top: 1px solid var(--c-border);
    padding-top: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.client-logo-sm {
    width: 20px;
    height: 20px;
    opacity: 0.5;
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-layout) 5%;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--c-border);
    margin-bottom: 20px;
}

.faq-question {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.8rem;
    margin: 0;
}

.toggle {
    font-size: 1.5rem;
    color: var(--c-accent);
    transition: transform 0.3s;
}

.faq-answer p {
    margin: 0;
    color: var(--c-text);
    /* Made darker for readability */
    font-weight: 500;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-bottom: 0;
    color: var(--c-text-muted);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Approximate max height */
    padding-bottom: 20px;
}

.faq-item.active .toggle {
    transform: rotate(45deg);
}

/* Footer Icons */
.social-icons-large {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 20px 0;
}

.social-icons-large img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s;
}

.social-icons-large a:hover img {
    transform: scale(1.2);
}

/* Background Text (Watermarks) */
.section-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--f-heading);
    font-size: clamp(10rem, 25vw, 25rem);
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    /* Extremely subtle watermark */
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    letter-spacing: -10px;
    line-height: 1;
    user-select: none;
}

section {
    position: relative;
    /* Anchor for watermarks */
    overflow: hidden;
}

/* --- Hero Redesign (Sticker Style) --- */

/* --- Hero Redesign (Tight Sticker Style) --- */

.hero-sticker {
    position: relative;
    min-height: 90vh;
    background: var(--c-bg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.hero-container-tight {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 600px;
    /* Fixed composition height */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background Text */
.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    font-family: var(--f-heading);
    font-size: clamp(12rem, 30vw, 25rem);
    font-weight: 900;
    color: white;
    white-space: nowrap;
    z-index: 1;
    letter-spacing: -8px;
    line-height: 1;
    opacity: 0.7;
    pointer-events: none;
}

/* Central Image */
.hero-main-visual {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.sticker-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.hero-cutout {
    height: 110%;
    width: 90%;
    max-width: none;
    /* Remove rigid box borders for true sticker look */
    border: none;
    border-radius: 0;
    box-shadow: none;
    /* Add subtle shadow to pop from bg */
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    transform: translateY(60px);
    /* Lower slightly to anchor */
    object-fit: contain;
}

/* UGC Badge (Top Left of Image) */
.badge-ugc-script {
    position: absolute;
    top: 120px;
    left: 180px;
    z-index: 6;
    transform: rotate(-15deg);
}

.badge-ugc-script span {
    font-family: var(--f-hand);
    font-size: 6rem;
    color: var(--c-accent);
    font-weight: bold;
    text-shadow: 3px 3px 0px white;
    line-height: 1;
}

/* Left Details */
.hero-details-left {
    position: absolute;
    left: 20px;
    bottom: 120px;
    z-index: 10;
    text-align: left;
    max-width: 280px;
}

.role-title {
    font-family: var(--f-body);
    font-size: 1.1rem;
    color: var(--c-text-muted);
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-socials-row {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.hero-socials-row img {
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    padding: 6px;
    transition: transform 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.hero-socials-row img:hover {
    transform: scale(1.1) rotate(5deg);
}

.handle-text {
    font-family: var(--f-body);
    font-weight: 500;
    color: var(--c-text);
    font-size: 1rem;
}

/* Right Details */
.hero-details-right {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-40%);
    z-index: 10;
    text-align: left;
    max-width: 320px;
}

.creator-name-graphic {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.name-top {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    color: var(--c-text);
    line-height: 0.8;
}

.name-bottom {
    font-family: var(--f-hand);
    font-size: 4rem;
    color: var(--c-accent);
    line-height: 0.6;
    margin-left: 100px;
    transform: rotate(-5deg);
}

.hero-year-solid {
    position: absolute;
    top: -40px;
    right: 0;
    font-family: var(--f-body);
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--c-text-muted);
    letter-spacing: 3px;
}

.mini-bio {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 25px;
}

/* CTA Small */
.cta-button-small {
    display: inline-block;
    padding: 12px 25px;
    background: var(--c-text);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: transform 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button-small:hover {
    transform: scale(1.05);
}

/* Mobile Adjustments */
@media(max-width: 768px) {
    .hero-sticker {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 50px;
        align-items: flex-start;
    }

    .hero-container-tight {
        flex-direction: column;
        height: auto;
        justify-content: flex-start;
    }

    .hero-bg-text {
        font-size: 18vw;
        top: 250px;
    }

    .hero-main-visual {
        order: 1;
        height: 350px;
        margin-bottom: 30px;
    }

    .hero-cutout {
        transform: translateY(20px);
        max-height: 350px;
    }

    .badge-ugc-script {
        top: 0;
        left: -20px;
    }

    .badge-ugc-script span {
        font-size: 4rem;
    }

    .hero-details-left {
        position: relative;
        bottom: auto;
        left: auto;
        order: 2;
        text-align: center;
        margin-bottom: 30px;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-details-right {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        order: 3;
        text-align: center;
        max-width: 100%;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .name-bottom {
        margin-left: 0;
    }

    .hero-year-solid {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 10px;
    }
}

.ig-post:hover .video-wrapper {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);

}

/* --- Content Updates --- */

/* Filter Buttons */
.filter-btn {
    background: transparent;
    border: 1px solid var(--c-text);
    padding: 8px 20px;
    border-radius: 20px;
    margin: 0 5px;
    font-family: var(--f-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--c-text);
    color: white;
}

/* --- Final Layout Fixes (User Request) --- */

/* 1. Hero Spacing */
.hero-sticker {
    padding-top: 150px !important;
    padding-bottom: 0px !important;
}

/* 2. About Section - Horizontal Row */
.about-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 120px;
    /* Slightly more gap */
    max-width: 1600px;
    /* Further increased for prominent layout */
    margin: 0 auto;
    padding: 0 4%;
    /* Slightly less padding to use more screen */
}

.about-text {
    flex: 2;
    /* more room for the massive text */
    order: 1;
}

.about-image-stack {
    flex: 0 0 450px;
    max-width: 45%;
    order: 2;
}

/* Mobile About */
@media(max-width: 900px) {
    .about-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .about-image-stack {
        max-width: 100%;
        flex: auto;
    }
}

/* 3. Services - 3 Column Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1600px;
    /* Match About section */
    margin: 0 auto;
    padding: 0 4%;
}

@media(max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: white;
    padding: 60px 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    text-align: center;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card h3 {
    font-size: 48px;
    font-style: italic;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.about-text p {
    font-size: 1.25rem;
    line-height: 1.8;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

/* Mobile Portfolio Adjustments */
@media(max-width: 600px) {
    .ig-grid {
        grid-template-columns: 1fr;
    }

    .hero-sticker {
        padding-top: 120px !important;
    }
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
}

/* 4. About Me Eyebrow Styling */
.eyebrow {
    font-family: var(--f-hand);
    font-size: 1.5rem;
    color: var(--c-accent);
    display: block;
    margin-bottom: 5px;
    letter-spacing: 1px;
}