:root {
    --warm-white: #FAF8F3;
    --sand: #E8DCC8;
    --graphite: #2C2C2C;
    --terracotta: #C97B63;
    --gold: #D4AF37;
    --dark-bg: #1A1A1A;
    --text-primary: #2C2C2C;
    --text-light: #666;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
}
.page-hero {
    background: var(--graphite);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-primary);
    background: var(--warm-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250, 248, 243, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(44, 44, 44, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 400;
    color: var(--graphite);
    text-decoration: none;
    letter-spacing: 3px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo::before {
    content: '◆';
    color: var(--terracotta);
    font-size: 20px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--graphite);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    text-transform: uppercase;
}

.nav-menu a:hover {
    color: var(--terracotta);
}

.cart-link {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--terracotta);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
}

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/hero-bg.webp') center/cover no-repeat;
    opacity: 0.4;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    animation: fadeInUp 1.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 300;
    margin-bottom: 50px;
    opacity: 0.9;
    letter-spacing: 1px;
}

.btn-primary {
    display: inline-block;
    padding: 18px 45px;
    background: var(--terracotta);
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border: 2px solid var(--terracotta);
}

.btn-primary:hover {
    background: transparent;
    color: var(--terracotta);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--graphite);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid var(--graphite);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--graphite);
    color: white;
}

.intro {
    padding: 120px 0;
    background: var(--warm-white);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--graphite);
}

.lead {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.8;
    color: var(--text-light);
    font-weight: 300;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    text-align: center;
    margin-bottom: 80px;
    color: var(--graphite);
}

.atmosfere {
    padding: 100px 0;
    background: var(--sand);
}

.atmosfere-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.atmosfera-card {
    background: white;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.atmosfera-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.atmosfera-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.atmosfera-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.atmosfera-card:hover .atmosfera-image img {
    transform: scale(1.1);
}

.atmosfera-info {
    padding: 30px;
}

.atmosfera-info h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--graphite);
}

.atmosfera-info p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.atmosfera-temp {
    display: inline-block;
    font-size: 12px;
    color: var(--terracotta);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.philosophy {
    padding: 120px 0;
    background: var(--warm-white);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.philosophy-text h2 {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 30px;
    color: var(--graphite);
}

.philosophy-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.philosophy-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.philosophy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collections {
    padding: 100px 0;
    background: var(--graphite);
    color: white;
}

.collections .section-title {
    color: white;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
}

.collection-card {
    background: rgba(255,255,255,0.05);
    overflow: hidden;
    transition: transform 0.4s ease;
}

.collection-card:hover {
    transform: translateY(-5px);
}

.collection-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collection-card:hover .collection-image img {
    transform: scale(1.05);
}

.collection-content {
    padding: 30px;
}

.collection-content h3 {
    font-family: var(--font-serif);
    font-size: 26px;
    margin-bottom: 15px;
}

.collection-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.collection-price {
    display: block;
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 500;
}

.features {
    padding: 100px 0;
    background: var(--warm-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sand);
    border-radius: 50%;
    color: var(--terracotta);
    font-size: 32px;
}

.feature-item h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--graphite);
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.showcase {
    padding: 100px 0;
    background: var(--sand);
}

.showcase-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.showcase-item {
    position: relative;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.showcase-item:hover img {
    transform: scale(1.1);
}

.showcase-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.showcase-item:hover figcaption {
    transform: translateY(0);
}

.showcase-item h4 {
    font-family: var(--font-serif);
    font-size: 20px;
    margin-bottom: 5px;
}

.showcase-item p {
    font-size: 14px;
    opacity: 0.9;
}

.cta-section {
    padding: 120px 0;
    background: var(--graphite);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.footer {
    background: var(--dark-bg);
    color: rgba(255,255,255,0.8);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-family: var(--font-serif);
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--terracotta);
}

.footer-col p {
    line-height: 1.8;
    font-size: 14px;
}

.footer-col i {
    margin-right: 8px;
    color: var(--terracotta);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 30px;
    font-size: 12px;
    line-height: 1.8;
}

.footer-legal-section {
    flex: 1;
    min-width: 280px;
}

.footer-legal h5 {
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.footer-legal p {
    margin-bottom: 8px;
    opacity: 0.85;
}

.copyright {
    text-align: center;
    font-size: 12px;
    opacity: 0.6;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--warm-white);
        width: 100%;
        padding: 40px;
        gap: 20px;
        transition: left 0.3s;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .collections-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }
    
    .atmosfere-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


.hero-new {
    min-height: 100vh;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--sand) 100%);
}

.hero-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(201, 123, 99, 0.1);
    color: var(--terracotta);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 500;
}

.hero-title-new {
    font-family: var(--font-serif);
    font-size: clamp(56px, 7vw, 92px);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 30px;
}

.title-line {
    display: block;
}

.title-line.accent {
    color: var(--terracotta);
    font-style: italic;
}

.hero-desc {
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    padding: 18px 40px;
    background: var(--graphite);
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border: 2px solid var(--graphite);
}

.btn-hero-primary:hover {
    background: var(--terracotta);
    border-color: var(--terracotta);
    transform: translateY(-2px);
}

.btn-hero-ghost {
    padding: 18px 40px;
    background: transparent;
    color: var(--graphite);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--graphite);
    transition: all 0.3s ease;
}

.btn-hero-ghost:hover {
    background: var(--graphite);
    color: white;
}

.hero-stats {
    display: flex;
    gap: 60px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 400;
    color: var(--terracotta);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image-stack {
    position: relative;
    height: 600px;
}

.stack-image {
    position: absolute;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.stack-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stack-image.main-image {
    width: 100%;
    height: 500px;
    top: 0;
    left: 0;
    z-index: 1;
}

.stack-image.floating-1 {
    width: 200px;
    height: 200px;
    bottom: 0;
    left: -40px;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.stack-image.floating-2 {
    width: 180px;
    height: 180px;
    top: 60px;
    right: -30px;
    z-index: 2;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.section-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--terracotta);
    font-weight: 600;
    margin-bottom: 20px;
}

.section-label.light {
    color: var(--gold);
}

.section-title-new {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 300;
    line-height: 1.2;
    color: var(--graphite);
}

.manifesto {
    padding: 120px 0;
    background: var(--warm-white);
}

.manifesto-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 60px;
    max-width: 800px;
}

.manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
}

.manifesto-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.manifesto-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-box {
    padding: 30px;
    background: white;
    border-left: 3px solid var(--terracotta);
}

.feature-number {
    font-family: var(--font-serif);
    font-size: 14px;
    color: var(--terracotta);
    margin-bottom: 10px;
    display: block;
}

.feature-box h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--graphite);
}

.feature-box p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.moods-section {
    padding: 100px 0;
    background: var(--graphite);
}

.moods-header {
    text-align: center;
    margin-bottom: 60px;
}

.moods-header .section-label {
    color: var(--gold);
}

.moods-header .section-title-new {
    color: white;
}

.moods-carousel {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 20px;
    height: 500px;
}

.mood-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.mood-card.large {
    grid-row: span 1;
}

.mood-visual {
    width: 100%;
    height: 100%;
    position: relative;
}

.mood-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.mood-card:hover .mood-visual img {
    transform: scale(1.1);
}

.mood-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 30px;
    color: white;
}

.mood-info h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    margin-bottom: 5px;
}

.mood-info p {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.mood-temp {
    font-size: 11px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.collections-new {
    padding: 100px 0;
    background: var(--sand);
}

.collections-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.collection-featured {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.collection-image-large {
    width: 100%;
    height: 100%;
}

.collection-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collection-featured:hover .collection-image-large img {
    transform: scale(1.05);
}

.collection-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
    padding: 50px;
    color: white;
}

.collection-tag {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
}

.collection-content-overlay h3 {
    font-family: var(--font-serif);
    font-size: 42px;
    margin-bottom: 15px;
}

.collection-content-overlay p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.collection-details {
    display: flex;
    align-items: center;
    gap: 30px;
}

.collection-price {
    font-size: 24px;
    font-weight: 500;
    color: var(--gold);
}

.btn-collection {
    padding: 14px 30px;
    background: white;
    color: var(--graphite);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-collection:hover {
    background: var(--terracotta);
    color: white;
}

.collection-grid-small {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.collection-small {
    position: relative;
    height: 285px;
    overflow: hidden;
    background: white;
}

.collection-small img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-small:hover img {
    transform: scale(1.05);
}

.collection-small-content {
    padding: 20px;
}

.collection-small h4 {
    font-family: var(--font-serif);
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--graphite);
}

.price-small {
    font-size: 16px;
    color: var(--terracotta);
    display: block;
    margin-bottom: 10px;
}

.link-arrow {
    color: var(--graphite);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.link-arrow:hover {
    color: var(--terracotta);
}

.process-section {
    padding: 120px 0;
    background: var(--warm-white);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    position: relative;
}

.step-number {
    font-family: var(--font-serif);
    font-size: 72px;
    color: var(--sand);
    line-height: 1;
    margin-bottom: 20px;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--graphite);
}

.step-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
}

.showcase-new {
    padding: 100px 0;
    background: var(--sand);
}

.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.showcase-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.masonry-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
}

.masonry-item.tall {
    grid-row: span 2;
    height: 620px;
}

.masonry-item.wide {
    grid-column: span 2;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.masonry-item:hover img {
    transform: scale(1.1);
}

.masonry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 25px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.masonry-item:hover .masonry-overlay {
    transform: translateY(0);
}

.project-location {
    font-size: 11px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.masonry-overlay h4 {
    font-family: var(--font-serif);
    font-size: 22px;
    margin-bottom: 5px;
}

.masonry-overlay p {
    font-size: 13px;
    opacity: 0.9;
}

.cta-section-new {
    padding: 100px 0;
    background: var(--graphite);
    color: white;
}

.cta-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cta-left h2 {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-left p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-benefits {
    list-style: none;
}

.cta-benefits li {
    padding: 12px 0;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-benefits i {
    color: var(--gold);
    font-size: 18px;
}

.cta-form-box {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    backdrop-filter: blur(10px);
}

.cta-form-box h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    margin-bottom: 25px;
}

.cta-form input,
.cta-form textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 15px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 14px;
    font-family: var(--font-sans);
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.cta-form button {
    width: 100%;
    margin-top: 10px;
}

@media (max-width: 1200px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-image-stack {
        height: 400px;
    }
    
    .manifesto-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .moods-carousel {
        grid-template-columns: 1fr 1fr;
        height: auto;
    }
    
    .mood-card {
        height: 300px;
    }
    
    .collections-wrapper {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr 1fr;
    }
    
    .showcase-masonry {
        grid-template-columns: 1fr 1fr;
    }
    
    .cta-split {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .hero-split {
        padding: 0 20px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .moods-carousel {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .showcase-masonry {
        grid-template-columns: 1fr;
    }
    
    .masonry-item.tall {
        height: 300px;
    }
}
