/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: #1a1a1a;
    background-color: #F5F0E8;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: #8b7355;
}

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
}

h2.section-title {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #F5F0E8;
    border-bottom: 1px solid rgba(139,115,85,0.2);
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    letter-spacing: 0.08em;
}

.nav-controls {
    display: flex;
    align-items: center;
}

.lang-selector {
    display: flex;
    gap: 0.25rem;
    margin-right: 1.5rem;
}

.lang-btn {
    padding: 0.2rem 0.45rem;
    border: 1px solid rgba(139,115,85,0.2);
    background: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.75rem;
    font-family: 'Inter', sans-serif;
    color: #6b6259;
    transition: all 0.2s;
    line-height: 1;
}

.lang-btn:hover {
    background-color: rgba(139,115,85,0.08);
}

.lang-btn.active {
    background-color: #1a1a1a;
    color: #F5F0E8;
    border-color: #1a1a1a;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-btn .bar {
    display: block;
    width: 24px;
    height: 2px;
    margin-bottom: 4px;
    background-color: #1a1a1a;
    transition: all 0.3s;
}

.menu-btn .bar:last-child {
    margin-bottom: 0;
}

.desktop-nav {
    display: flex;
}

.desktop-nav li {
    margin-left: 2rem;
}

.nav-links a {
    letter-spacing: 0.05em;
    position: relative;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #8b7355;
}

.mobile-nav {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.mobile-nav.open {
    max-height: 400px;
}

.mobile-nav .nav-links li {
    padding: 0.5rem 1rem;
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section:nth-child(even) {
    background-color: #ECE6DC;
}

/* ==============================
   Hero Section - Split Layout
   ============================== */
.hero {
    padding: 0;
    margin: 0;
    padding-top: 60px; /* offset for fixed navbar so hero image is fully visible */
}

.hero-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #0a0a0a;
}

.hero-bg {
    width: 70%;
    height: auto;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 38%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem;
    box-sizing: border-box;
    background: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 30%, rgba(0,0,0,0.7) 100%);
}

.hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3.4rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    line-height: 1.15;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.hero-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.hero-question {
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding-left: 1.25rem;
    line-height: 1.6;
}

/* About Section */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
    margin-bottom: 2rem;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1rem;
}

/* ==============================
   Work Section
   ============================== */
.work-series {
    margin-bottom: 6rem;
}

.work-series:last-child {
    margin-bottom: 0;
}

.series-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.06em;
}

.series-desc {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    line-height: 1.8;
}

/* Sub-series within a parent series (e.g. ORIGO, RADIAN, VOID inside Cosmic Structures) */
.sub-series {
    margin-bottom: 4rem;
}

/* Scroll offset for deep-linked artwork (accounts for fixed navbar) */
.artwork-item[id] {
    scroll-margin-top: 80px;
}

/* Also offset section anchors */
.section[id] {
    scroll-margin-top: 70px;
}

.sub-series:last-child {
    margin-bottom: 0;
}

.sub-series-title {
    text-align: center;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    color: #6b6259;
    position: relative;
}

.sub-series-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: rgba(139,115,85,0.3);
    margin: 0.75rem auto 0;
}

.artwork-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.artwork-image {
    margin-bottom: 1rem;
    overflow: hidden;
    cursor: pointer;
}

.artwork-image img {
    transition: transform 0.5s;
}

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

.artwork-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.artwork-year {
    color: #6b6259;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.artwork-details {
    font-size: 0.875rem;
}

/* Artwork price line */
.artwork-price {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Limited edition + custom dimensions label */
.artwork-edition {
    font-size: 0.8rem;
    color: #8b7355;
    letter-spacing: 0.04em;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

/* Inquire WhatsApp button */
.inquire-btn {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(139,115,85,0.4);
    border-radius: 2px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1a1a1a;
    background: none;
    transition: all 0.2s ease;
    text-decoration: none;
}

.inquire-btn:hover {
    background-color: #1a1a1a;
    color: #F5F0E8;
    border-color: #1a1a1a;
}

/* Shipping note */
.shipping-note {
    text-align: center;
    font-size: 0.85rem;
    color: #6b6259;
    margin-top: 2rem;
    letter-spacing: 0.04em;
}

/* Collaborations & Commissions Section */
.commissions-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.commissions-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.commissions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.commission-card {
    padding: 1.5rem;
    border: 1px solid rgba(139,115,85,0.2);
    border-radius: 2px;
    text-align: left;
}

.commission-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
}

.commission-card p {
    font-size: 0.9rem;
    color: #6b6259;
    line-height: 1.6;
}

.commissions-experience {
    font-size: 0.95rem;
    color: #6b6259;
    font-style: italic;
    margin-bottom: 2rem;
}

.commissions-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cta-btn {
    display: inline-block;
    padding: 0.7rem 2rem;
    border: 1px solid rgba(139,115,85,0.4);
    border-radius: 2px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cta-whatsapp {
    background-color: #1a1a1a;
    color: #F5F0E8;
    border-color: #1a1a1a;
}

.cta-whatsapp:hover {
    background-color: #333;
    color: #F5F0E8;
}

.cta-email {
    color: #1a1a1a;
    background: none;
}

.cta-email:hover {
    background-color: #1a1a1a;
    color: #F5F0E8;
    border-color: #1a1a1a;
}

/* Series featured image (full-width overview image) */
.series-featured {
    max-width: 900px;
    margin: 0 auto 3rem;
    overflow: hidden;
}

.series-featured img {
    width: 100%;
    height: auto;
}

/* Poetic quote block for series */
.series-quote {
    max-width: 600px;
    margin: 3rem auto 0;
    text-align: center;
    font-style: italic;
    color: #6b6259;
    line-height: 2;
    font-size: 1rem;
    border-top: 1px solid rgba(139,115,85,0.2);
    padding-top: 2rem;
}

/* Exhibitions Section */
.exhibition-content {
    max-width: 900px;
    margin: 0 auto;
}

.exhibition-group {
    margin-bottom: 3rem;
}

.exhibition-group:last-child {
    margin-bottom: 0;
}

.exhibition-type {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.exhibition-list li {
    padding: 1rem 0 1rem 1rem;
    border-left: 2px solid rgba(139,115,85,0.3);
    margin-bottom: 1rem;
}

.exhibition-list h4 {
    margin-bottom: 0.25rem;
}

.exhibition-list p {
    font-size: 0.875rem;
}

/* Contact Section */
.contact-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-intro {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.tramaraiz {
    padding-top: 2rem;
    border-top: 1px solid rgba(139,115,85,0.2);
}

/* Contact Form */
.contact-form-wrapper {
    margin: 2.5rem 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(139,115,85,0.2);
}

.contact-form-wrapper h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.06em;
}

.form-group {
    margin-bottom: 1.25rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6b6259;
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid rgba(139,115,85,0.3);
    border-radius: 2px;
    background-color: #F5F0E8;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #1a1a1a;
    transition: border-color 0.2s;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #8b7355;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b6259' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    padding-right: 2.5rem;
}

.form-submit {
    display: inline-block;
    padding: 0.7rem 2.5rem;
    border: 1px solid #1a1a1a;
    border-radius: 2px;
    background-color: #1a1a1a;
    color: #F5F0E8;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}

.form-submit:hover {
    background-color: #333;
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-success {
    margin-top: 1rem;
    color: #5a7a5a;
    font-size: 0.9rem;
}

.form-error {
    margin-top: 1rem;
    color: #8b5555;
    font-size: 0.9rem;
}

.hidden {
    display: none !important;
}

.tramaraiz h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.tramaraiz p {
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background-color: #0a0a0a;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.copyright {
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    color: rgba(232,228,223,0.5);
    transition: color 0.3s;
}

.social-link:hover {
    color: white;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
    transition: all 0.3s ease;
}

.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}

.lightbox-caption {
    color: white;
    margin-top: 1rem;
    text-align: center;
    font-size: 1.1rem;
}

.lightbox-close {
    position: absolute;
    top: -30px;
    right: 0;
    color: white;
    font-size: 2rem;
    font-weight: 300;
    transition: all 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.lightbox-close:hover {
    color: rgba(232,228,223,0.7);
}

/* ==============================
   Floating Press Kit Button
   ============================== */
.floating-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #b54d2a;
    color: #ffffff;
    padding: 0.75rem 1.4rem;
    border: none;
    border-radius: 2px;
    text-decoration: none;
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.floating-btn:hover {
    background-color: #963d1f;
    color: #ffffff;
}

.floating-btn-label {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.floating-btn-date {
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    opacity: 0.8;
    white-space: nowrap;
}

/* ==============================
   V4 - Cosmic Intro Section
   ============================== */
.v4-work {
    padding: 0 !important;
    background-color: transparent !important;
}

.v4-work > .container {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #F5F0E8;
}

.cosmic-intro {
    background-color: #F5F0E8;
    padding: 4rem 0 1rem 0;
}

.cosmic-intro-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.9;
    font-size: 0.95rem;
    color: #1a1a1a;
}

/* ==============================
   V4 - Lamps Showcase
   ============================== */
.lamps-showcase {
    background-color: #F5F0E8;
    padding: 4rem 0;
}

.lamps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.lamp-card {
    color: #1a1a1a;
}

.lamp-card[id] {
    scroll-margin-top: 80px;
}

.lamp-slideshow {
    position: relative;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.lamp-slideshow .slide {
    width: 100%;
    height: auto;
    cursor: pointer;
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 1s ease;
}

.lamp-slideshow .slide.active {
    opacity: 1;
    position: relative;
}

.lamp-slideshow .slide:hover {
    transform: scale(1.02);
}

.lamp-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.lamp-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(26,26,26,0.7);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.lamp-specs {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(26,26,26,0.6);
}

.lamp-spec-title {
    font-weight: 500;
    color: rgba(26,26,26,0.8);
    margin-top: 1rem;
    margin-bottom: 0.25rem;
}

.lamp-note {
    font-size: 0.8rem;
    font-style: italic;
    color: rgba(26,26,26,0.45);
}

.lamp-inquire {
    margin-top: 1.5rem;
    border-color: rgba(26,26,26,0.3);
    color: #1a1a1a;
}

.lamp-inquire:hover {
    background-color: #1a1a1a;
    color: #F5F0E8;
    border-color: #1a1a1a;
}

/* ==============================
   V4 - Topografías Showcase
   ============================== */
.topo-showcase {
    background-color: #F5F0E8;
    padding: 4rem 0 0;
}

.topo-gallery {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 2rem 20px;
}

.topo-gallery-images {
    display: flex;
    gap: 3rem;
    flex: 1;
    min-width: 0;
}

.topo-gallery-img {
    flex: 1;
    overflow: hidden;
    cursor: pointer;
}

.topo-gallery-img .lamp-slideshow {
    margin-bottom: 0;
    height: 100%;
}

.topo-gallery-img .lamp-slideshow .slide {
    height: 100%;
    object-fit: cover;
}

.topo-gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.topo-gallery-img img:hover {
    transform: scale(1.03);
}

.topo-gallery-info {
    flex: 0 0 260px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: #1a1a1a;
}

.topo-gallery-info h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.topo-gallery-info .artwork-details {
    line-height: 1.7;
}

/* Print cards grid (3-column, same as lamps) */
.topo-prints-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.print-card {
    color: #1a1a1a;
}

.print-card[id] {
    scroll-margin-top: 80px;
}

.print-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.print-card-img {
    margin-bottom: 1.25rem;
    overflow: hidden;
    cursor: pointer;
}

.print-card-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.print-card-img img:hover {
    transform: scale(1.03);
}

/* Murmullo showcase section */
.murmullo-showcase {
    padding-top: 4rem;
}

.murmullo-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.murmullo-video {
    width: 100%;
    margin-bottom: 3rem;
    position: relative;
}

.video-sound-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 2;
}

.video-sound-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.murmullo-video video {
    width: 100%;
    display: block;
}

.murmullo-prints-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Murmullo bento grid — 2-column: left stacked, right tall */
.murmullo-bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    margin-bottom: 20px;
}

.bento-left-column {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.bento-left-item {
    display: block;
    width: 100%;
}

.bento-left-item .bento-img {
    width: 100%;
}

.bento-left-item .bento-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.bento-left-item .bento-info {
    padding: 1.25rem 0;
}

.bento-cell {
    overflow: hidden;
}

.bento-img {
    cursor: pointer;
    overflow: hidden;
}

.bento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.bento-img img:hover {
    transform: scale(1.03);
}

.bento-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.bento-info h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

/* Retrato cell — tall image fills available height */
.bento-retrato {
    display: flex;
    flex-direction: column;
}

.bento-retrato .bento-img {
    flex: 1;
    min-height: 0;
}

.bento-retrato .bento-info {
    padding: 1.25rem 0;
}

/* Murmullo bottom grid — 3 cards */
.murmullo-bottom-grid {
    display: grid;
    grid-template-columns: 1.6fr 0.85fr 0.85fr;
    gap: 20px;
    margin-bottom: 2rem;
}

.bento-card {
    overflow: hidden;
}

.bento-card-img {
    overflow: hidden;
    cursor: pointer;
    height: 420px;
}

.bento-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.bento-card-img img:hover {
    transform: scale(1.03);
}

.bento-card-text {
    padding: 1.25rem;
}

.bento-card-text h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

/* V4 Hero label */
.hero-label {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
}

.hero-event {
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2rem;
}

/* ==============================
   Media Queries
   ============================== */

/* Tablet and up */
@media (min-width: 768px) {

    .about-content {
        flex-direction: row;
        gap: 5rem;
    }

    .about-image {
        margin-bottom: 0;
    }

    .artwork-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lamps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .topo-prints-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .hero-label {
        font-size: 1.3rem;
    }

    .artwork-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .menu-btn {
        display: block;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-nav {
        display: block;
    }

    .menu-btn.open .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-btn.open .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-btn.open .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-banner {
        min-height: auto;
    }

    .hero-bg {
        width: 100%;
        height: 50vh;
        object-fit: cover;
        object-position: 30% center;
    }

    .hero-overlay {
        position: relative;
        width: 100%;
        padding: 2rem 1.5rem;
        background: #0a0a0a;
    }

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

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-desc {
        font-size: 0.9rem;
    }

    .floating-btn {
        bottom: 1rem;
        right: 1rem;
        padding: 0.6rem 1rem;
    }

    .floating-btn-label {
        font-size: 0.75rem;
    }

    .floating-btn-date {
        font-size: 0.6rem;
    }

    .lamps-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cosmic-intro {
        padding: 3rem 0;
    }

    .lamps-showcase {
        padding: 3rem 0;
    }

    .hero-label {
        font-size: 0.95rem;
    }

    .hero-event {
        font-size: 0.8rem;
    }

    .v4-work > .container {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .topo-gallery {
        flex-direction: column;
        padding: 1.5rem 20px;
        gap: 2rem;
    }

    .topo-gallery-images {
        flex-direction: column;
    }

    .topo-gallery-info {
        flex: none;
        width: 100%;
    }

    .topo-prints-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .murmullo-prints-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .murmullo-bento-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bento-retrato {
        grid-column: auto;
        grid-row: auto;
    }

    .murmullo-bottom-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bento-card-img {
        height: auto;
    }

    .commissions-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}
