:root {
    --bg: #ffffff;
    --text: #111111;
    --muted: #666666;
    --accent: #000000;
    --gray: #f9f9f9;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
    --nav-height: 80px;
    --transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header & Nav */
header {
    height: var(--nav-height);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    height: 70px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo img {
    height: 45px;
    filter: brightness(1);
    mix-blend-mode: multiply;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
}

.mobile-only-marker {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #000;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-bg-item.active {
    opacity: 1;
}

.hero-bg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transform: scale(1.2);
    object-position: center;
}

.hero-bg-item.active img {
    animation: zoomOut 10s linear infinite alternate;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    padding: 0 40px;
    width: 100%;
    text-align: center;
    color: #fff;
}

.brand-reveal {
    margin-bottom: 40px;
}

.main-brand {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 12vw, 7rem);
    line-height: 0.9;
    display: block;
    font-weight: 400;
    letter-spacing: -2px;
}

.sub-brand {
    font-size: clamp(1rem, 4vw, 2.5rem);
    letter-spacing: 20px;
    display: block;
    margin-top: 10px;
    font-weight: 300;
    margin-right: -20px;
    /* Compensate for last letter spacing */
}

.hero-content-details {
    max-width: 600px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.8;
}

.hero-quote {
    font-size: 18px;
    font-style: italic;
    opacity: 0.7;
    font-weight: 300;
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--gray);
}

.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.about h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 400;
}

.about .role {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
}

.about-flex {
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-portrait {
    flex: 1;
    max-width: 450px;
}

.about-portrait img {
    width: 100%;
    border-radius: 2px;
    box-shadow: 40px 40px 0 rgba(0, 0, 0, 0.03);
}

.about-info {
    flex: 1.2;
}

.about-info .main-para {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 30px;
}

.about-info .sub-para {
    color: var(--muted);
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 550px;
}

.museum-achievement {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 4px;
    margin-bottom: 20px;
}

.museum-achievement i {
    font-size: 20px;
    color: var(--muted);
    margin-top: 4px;
}

.museum-achievement p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 0;
    color: var(--dark);
}

.museum-achievement strong {
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 25px;
    font-size: 28px;
    margin-top: 20px;
}

.social-links a {
    transition: var(--transition);
}

/* Facebook - Blue */
.social-links a:nth-child(1) {
    color: #1877F2;
}

.social-links a:nth-child(1):hover {
    transform: translateY(-5px);
    color: #0e5fc7;
}

/* Instagram - Gradient */
.social-links a:nth-child(2) {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-links a:nth-child(2):hover {
    transform: translateY(-5px);
    filter: brightness(1.2);
}

/* TikTok - Minimal with Image */
.social-links a:nth-child(3) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.tiktok-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.social-links a:nth-child(3):hover {
    transform: translateY(-5px);
}

/* Author Story Layout */
.author-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.story-column {
    padding: 30px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 4px;
    transition: var(--transition);
}

.story-column h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text);
}

.story-column p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
}

.story-column.highlight {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(30, 30, 30, 0.95) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.story-column.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
}

.story-column.highlight h4 {
    color: #fff;
}

.story-column.highlight p {
    color: rgba(255, 255, 255, 0.85);
}

.story-column.highlight strong {
    color: #FFD700;
    font-weight: 600;
}

.story-column.highlight em {
    color: #FFA500;
    font-style: normal;
}

.achievement-badge {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.story-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-column.highlight:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Story Column with Image */
.story-column.with-image {
    padding: 0;
    background: transparent;
    overflow: hidden;
}

.story-image {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.story-column.with-image:hover .story-image img {
    transform: scale(1.05);
}

/* Recognition Section */
.recognition {
    padding: 50px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.97) 0%, rgba(20, 20, 20, 0.97) 100%);
    position: relative;
    overflow: hidden;
}

.recognition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ffffff, #e0e0e0, #ffffff);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.recognition-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
}

.recognition-box .achievement-badge {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 36px;
    color: #000;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(255, 255, 255, 0.6);
    }
}

.recognition-box h3 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 25px;
    font-weight: 400;
    color: #fff;
}

.recognition-box p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.recognition-box strong {
    color: #ffffff;
    font-weight: 600;
}

.recognition-box em {
    color: #ffffff;
    font-style: normal;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 120px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 80px;
}

.section-heading h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 10px;
    font-weight: 400;
}

.section-heading p {
    color: var(--muted);
    font-size: 18px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    perspective: 1000px;
}

.service-card {
    flex: 1 1 280px;
    max-width: calc(25% - 23px);
    padding: 60px 40px;
    background: var(--gray);
    text-align: center;
    border-radius: 4px;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1),
        opacity 2s cubic-bezier(0.19, 1, 0.22, 1),
        background 0.5s, color 0.5s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transform-style: preserve-3d;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--card-bg);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
    transform: scale(1.1);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.service-card .card-icon,
.service-card h3,
.service-card p {
    transition: var(--transition);
}

.service-card:hover,
.service-card.active-card {
    color: #fff;
    transform: translateY(-10px) rotateY(360deg);
}

.service-card:hover::before,
.service-card.active-card::before {
    opacity: 1;
    transform: scale(1);
}

.service-card:hover::after,
.service-card.active-card::after {
    opacity: 1;
}

@media (max-width: 1200px) {
    .service-card {
        max-width: calc(33.33% - 20px);
    }
}

@media (max-width: 900px) {
    .service-card {
        max-width: 100%;
        flex: 1 1 100%;
    }
}

/* Aliados Carousel - Premium Style */
.aliados {
    padding: 120px 0;
    background: #fafafa;
    overflow: hidden;
    position: relative;
}

.aliados h2 {
    text-align: center;
    margin-bottom: 60px;
    font-family: var(--font-heading);
    font-size: 3rem;
    position: relative;
}

.aliados h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: #ccc;
    margin: 20px auto 0;
}

.aliados-carousel {
    width: 100%;
    position: relative;
    /* Edge fade effect */
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.aliados-track {
    display: flex;
    gap: 50px;
    width: max-content;
    animation: scroll 40s linear infinite;
    padding: 20px 0;
}

.aliados-slide {
    width: 280px;
    height: 180px;
    flex-shrink: 0;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.aliados-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    opacity: 0.9;
    transition: var(--transition);
}

.aliados-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.aliados-slide:hover img {
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-280px * 6 - 50px * 6));
    }
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: #000;
    color: #fff;
    text-align: center;
}

.contact-box h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.contact-box p {
    font-size: 20px;
    margin-bottom: 50px;
    opacity: 0.7;
}

.btn-primary {
    padding: 20px 50px;
    background: #fff;
    color: #000;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
    border-radius: 0;
    display: inline-block;
    border: 1px solid #000;
}

.btn-primary:hover {
    background: #000;
    color: #fff;
    border-color: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

/* Footer */
footer {
    padding: 80px 0;
    border-top: 1px solid #eee;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand img {
    height: 45px;
    margin-bottom: 15px;
    mix-blend-mode: multiply;
}

.footer-brand p {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
}

.footer-meta {
    text-align: right;
    font-size: 14px;
    color: var(--muted);
}

.footer-meta a {
    display: block;
    margin-top: 5px;
}

/* Modal Styling */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    width: 95%;
    max-width: 1200px;
    max-height: 90vh;
    min-height: 500px;
    position: relative;
    padding: 0;
    transform: translateY(30px);
    transition: var(--transition);
    display: flex;
    overflow: hidden;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.close-modal:hover {
    transform: rotate(90deg);
}

.modal-body {
    display: flex;
    width: 100%;
}

.modal-image {
    flex: 3;
    background: #000;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-text {
    flex: 1;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.modal-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.modal-text p {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 40px;
}

/* Animations */
@keyframes zoomOut {
    from {
        transform: scale(1.2);
    }

    to {
        transform: scale(1);
    }
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .menu-toggle {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-toggle .bar {
        display: block;
        width: 25px;
        height: 2px;
        margin: 6px auto;
        background-color: var(--text);
        transition: var(--transition);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Header white bar on mobile as requested */
    header {
        background: #fff !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        height: 70px !important;
    }

    .logo img {
        filter: none !important;
        /* Ensure logo is visible on white background */
    }

    .mobile-only-marker {
        display: block !important;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        left: -100%;
        top: 0;
        gap: 0;
        background-color: #fff;
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        z-index: 1000;
        justify-content: center;
        padding-top: 80px;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 25px 0;
    }

    .nav-links a {
        font-size: 20px;
    }

    .main-brand {
        font-size: clamp(2.2rem, 9.5vw, 3.8rem) !important;
        letter-spacing: -1.5px !important;
        white-space: nowrap !important;
        display: block;
        width: 100%;
        text-align: center;
        line-height: 1.2;
    }

    .sub-brand {
        font-size: clamp(0.7rem, 4vw, 1.2rem) !important;
        letter-spacing: 12px !important;
        margin-right: -12px !important;
        margin-top: 10px;
        display: block;
    }

    .hero-content-details {
        margin-top: 25px;
        width: 100%;
    }

    .hero-bg-item {
        background-color: #000;
        /* Previene que se vean las fotos encimadas durante transicion */
    }

    .hero-inner {
        padding: 0 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 60px;
        /* Offset for the mobile white header */
    }

    .hero-quote {
        font-size: 15px;
        padding: 0 15px;
        margin-top: 30px;
        line-height: 1.6;
        opacity: 0.9 !important;
    }

    .about-flex,
    .inspiration-grid {
        flex-direction: column;
        gap: 40px;
    }

    .about-portrait,
    .inspiration-image {
        max-width: 100%;
    }

    .inspiration-grid {
        flex-direction: column-reverse;
    }

    /* Author Story Mobile */
    .author-story {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
    }

    .story-column {
        padding: 25px;
    }

    .story-column h4 {
        font-size: 1.3rem;
    }

    .story-column p {
        font-size: 15px;
    }

    .story-column.with-image {
        padding: 0;
        margin-bottom: 10px;
    }

    .story-image {
        height: 250px;
    }

    /* Recognition Section Mobile */
    .recognition {
        padding: 40px 0;
    }

    .recognition-box h3 {
        font-size: 2rem;
    }

    .recognition-box p {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .recognition-box .achievement-badge {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about h2,
    .contact-box h2,
    .inspiration-content .quote {
        font-size: 2.5rem;
    }

    .about-header {
        margin-bottom: 40px;
    }

    .footer-grid {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .footer-meta {
        text-align: center;
    }

    .modal-body {
        flex-direction: column;
    }

    .modal-image {
        height: 300px;
    }

    .modal-text {
        padding: 40px 30px;
    }

    .modal-text h2 {
        font-size: 2rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Impresiones Section - Simple Duo */
.impresiones-premium {
    padding: 80px 0;
    background: #fafafa;
    color: var(--text);
}

.impresiones-simple-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.impresion-item {
    background: #fff;
    padding: 40px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.impresion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.impresion-img {
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 2px;
}

.impresion-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.impresion-item h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 400;
    color: #000;
}

.btn-minimal {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #000;
    color: #000;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    transition: var(--transition);
}

.btn-minimal:hover {
    background: #000;
    color: #fff;
}

@media (max-width: 800px) {
    .impresiones-simple-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .impresion-item {
        padding: 30px;
    }
}

/* Workshop / Enseñanza Section */
.workshop-section {
    padding: 120px 0;
    background: #fafafa;
    text-align: center;
}

.workshop-card {
    background: #fff;
    padding: 60px 40px;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    max-width: 1200px;
    margin: 0 auto;
}

.workshop-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.workshop-image {
    flex: 1;
    height: 350px;
    overflow: hidden;
    border-radius: 4px;
}

.workshop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.workshop-image:hover img {
    transform: scale(1.1);
}

.workshop-content {
    flex: 1.5;
}

.workshop-icon {
    font-size: 3rem;
    color: #000;
    margin-bottom: 20px;
    display: block;
}

.workshop-intro {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    line-height: 1.5;
    color: #111;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 30px;
}

@media (max-width: 1100px) {
    .workshop-grid {
        flex-direction: column;
    }

    .workshop-image {
        width: 100%;
        height: 300px;
    }

    .side-img:last-child {
        display: none;
    }
}

@media (max-width: 900px) {
    .workshop-section {
        padding: 80px 20px;
    }

    .workshop-card {
        padding: 40px 20px;
    }

    .workshop-intro {
        font-size: 1.7rem;
    }
}