/* Minimal Interior Design Portfolio - Based on Figma Mockup */

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

:root {
    --black: #1A1A1A;
    --white: #FFFFFF;
    --red: #E04D4A;
    --light-gray: #F5F5F5;
    --bg-cream: #F8F7F5;
    --border-gray: #E0E0E0;
    --text-gray: #666666;
    --secondary-text: #B0B0B0;
    --dark-banner: #202020;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--bg-cream);
    overflow-x: hidden;
}

/* Portfolio minimal cards hover */
.portfolio-card:hover img {
    transform: scale(1.03);
}

/* Grid System - Visible grid lines like in mockup */
.grid-container {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    pointer-events: none;
    z-index: 1;
}

.grid-line {
    border-right: 1px solid var(--border-gray);
}

.grid-line:last-child {
    border-right: none;
}

/* Navigation - Minimal top bar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-gray);
    z-index: 1000;
    padding: 20px 40px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    gap: 60px;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: var(--black);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

nav a:hover {
    color: var(--red);
}

nav a.active {
    color: var(--black);
    font-weight: 500;
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--black);
}

/* Main Content */
main {
    margin-top: 61px;
    position: relative;
}

/* Hero Section - Home Page */
.hero-home {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 100vh;
    border-bottom: 1px solid var(--border-gray);
}

.hero-col {
    border-right: 1px solid var(--border-gray);
    padding: 80px 40px;
    position: relative;
}

.hero-col:last-child {
    border-right: none;
}

/* Column 1 - Main Heading */
.hero-col-1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main-heading {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 72px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 40px;
}

.hero-description {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-gray);
    max-width: 280px;
}

/* Column 2 - Red Gradient Blob */
.hero-col-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.red-gradient {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--red) 0%, rgba(255, 0, 0, 0.3) 50%, rgba(255, 0, 0, 0) 100%);
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hi-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 1px solid var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    font-size: 14px;
    font-weight: 500;
}

/* Column 3 - Empty with border */
.hero-col-3 {
    background: var(--white);
}

/* Column 4 - Designer Photo */
.hero-col-4 {
    padding: 0;
    position: relative;
}

.designer-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.designer-info {
    position: absolute;
    top: 40px;
    right: 40px;
    text-align: right;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border: 1px solid var(--border-gray);
}

.designer-info h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.designer-info p {
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 5px 0;
}

/* Stats Section */
.stats-section {
    padding: 100px 40px;
    border-bottom: 1px solid var(--border-gray);
    background-color: var(--bg-cream);
}

.stats-heading {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 80px;
    max-width: 600px;
}

.stats-heading span {
    display: block;
    border-bottom: 1px solid var(--black);
    padding-bottom: 10px;
    display: inline-block;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 120px;
    font-weight: 300;
    color: var(--red);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 13px;
    line-height: 1.6;
    color: var(--black);
    max-width: 200px;
}

.stat-description {
    margin-top: 40px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-gray);
    max-width: 400px;
}

/* Principles Section */
.principles-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    border-bottom: 1px solid var(--border-gray);
}

.principles-left {
    padding: 80px 60px;
    border-right: 1px solid var(--border-gray);
}

.principles-heading {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 60px;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.principle-item {
    border-top: 1px solid var(--border-gray);
    padding-top: 20px;
}

.principle-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
}

.principle-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.principle-text {
    font-size: 13px;
    line-height: 1.8;
    color: var(--text-gray);
}

.principles-right {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 80px;
}

.principles-image {
    max-width: 400px;
    height: auto;
}

/* Portfolio/Projects Page */
.portfolio-header {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 80px 40px;
    border-bottom: 1px solid var(--border-gray);
}

.portfolio-header-col {
    border-right: 1px solid var(--border-gray);
    padding: 0 20px;
}

.portfolio-header-col:last-child {
    border-right: none;
}

.portfolio-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 72px;
    font-weight: 400;
    line-height: 1;
    position: relative;
}

.portfolio-title-letter {
    color: var(--red);
}

.portfolio-subtitle {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-top: 20px;
}

.portfolio-description {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-gray);
}

/* Gallery Section */
.gallery-section {
    padding: 60px 40px;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-gray);
}

.gallery-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 48px;
    font-weight: 400;
}

.gallery-filters {
    display: flex;
    gap: 30px;
}

.filter-btn {
    background: none;
    border: none;
    font-size: 14px;
    color: var(--text-gray);
    cursor: pointer;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--black);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.gallery-item {
    border: 1px solid var(--border-gray);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.gallery-info {
    padding: 30px;
}

.gallery-item-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.gallery-item-description {
    font-size: 13px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.gallery-item-date {
    font-size: 12px;
    color: var(--text-gray);
}

/* Project Detail Pages */
.project-detail-hero {
    width: 100%;
    height: 70vh;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-gray);
}

.project-detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-detail-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    padding: 80px 40px;
    gap: 80px;
    border-bottom: 1px solid var(--border-gray);
}

.project-sidebar {
    border-right: 1px solid var(--border-gray);
    padding-right: 60px;
}

.project-main {
    padding-left: 40px;
}

.project-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 30px;
}

.project-meta {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.meta-value {
    font-size: 14px;
    color: var(--black);
}

.project-description {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.project-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.project-image {
    width: 100%;
    height: auto;
    border: 1px solid var(--border-gray);
}

/* Footer */
footer {
    border-top: 1px solid var(--border-gray);
    padding: 40px;
    text-align: center;
    font-size: 12px;
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-home {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 48px;
    }
    
    nav ul {
        gap: 30px;
    }
    
    .hero-home {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .principles-section {
        grid-template-columns: 1fr;
    }
    
    .portfolio-header {
        grid-template-columns: 1fr;
    }
    
    .project-detail-content {
        grid-template-columns: 1fr;
    }
}

/* Slider Styles */
.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 60px 0;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: grab;
}

.slider-wrapper.dragging {
    cursor: grabbing;
    transition: none;
}

.slider-slide {
    min-width: 100%;
    padding: 0 40px;
}

.slider-pagination {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid var(--black);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot.active {
    background: var(--black);
}

.slider-dot:hover {
    transform: scale(1.2);
    background: var(--red);
    border-color: var(--red);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 1px solid var(--black);
    background: var(--white);
    cursor: pointer;
    z-index: 10;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-nav:hover {
    background: var(--black);
    color: var(--white);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* ========== FIGMA MOCKUP OVERRIDES ========== */

/* Nav - pixel match */
.nav-mockup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #F8F7F5;
    z-index: 1000;
    border-bottom: 1px solid #E0E0E0;
    padding: 20px 40px;
}
.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-links {
    display: flex;
    gap: 60px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links a {
    text-decoration: none;
    color: #B0B0B0;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s;
}
.nav-links a:hover { color: #1A1A1A; }
.nav-links a.active {
    color: #1A1A1A;
    font-weight: 600;
    border-bottom: 2px solid #1A1A1A;
    padding-bottom: 5px;
}
.nav-gallery {
    text-decoration: none;
    color: #B0B0B0;
    font-size: 13px;
}

/* Hero - 4 columns */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    min-height: 100vh;
    border-bottom: 1px solid #E0E0E0;
    padding-top: 80px;
}
.hero-col-title {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-col-title .main-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 72px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 40px;
}
.hero-col-title .hero-description {
    font-size: 13px;
    line-height: 1.8;
    color: #666;
    max-width: 280px;
}
.hero-arrow {
    margin-top: 30px;
}
.hero-arrow-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #E0E0E0;
    border-radius: 50%;
    color: #666;
    font-size: 18px;
    transition: border-color 0.2s, color 0.2s;
}
.hero-arrow-circle:hover { border-color: #E04D4A; color: #E04D4A; }

.hero-col-blob {
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.red-blob {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(224,77,74,0.8) 0%, rgba(224,77,74,0.4) 40%, rgba(224,77,74,0.1) 70%, transparent 100%);
    border-radius: 50%;
    filter: blur(40px);
}
.click-badge {
    position: absolute;
    top: 20px;
    right: 40px;
    width: 50px;
    height: 50px;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    font-size: 11px;
}

.hero-col-story {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.story-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1A1A1A;
}
.story-text {
    font-size: 13px;
    line-height: 1.7;
    color: #666;
    max-width: 220px;
}

.hero-col-photo {
    background: #D0D0D0;
    overflow: hidden;
}
.hero-col-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

/* Stats - underline on numbers (mockup) */
.stat-underline {
    border-bottom: 3px solid var(--red);
    padding-bottom: 4px;
    display: inline-block;
}
.stat-percent {
    font-size: 0.6em;
    color: var(--red);
}
.stats-grid-bottom {
    margin-top: 60px;
}
.stat-wide {
    grid-column: span 2;
}

/* Principles - 2 columns */
.principles-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 50vh;
    border-bottom: 1px solid #E0E0E0;
}
.principles-left {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}
.principles-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 80px;
}
.principles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
}
.principle-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}
.principle-item p {
    font-size: 13px;
    line-height: 1.7;
    color: #666;
}
.principle-icon svg {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    stroke: #000;
}
.principles-right {
    background: #F8F7F5;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 60px;
    overflow: hidden;
}
.principles-image {
    max-width: 90%;
    height: auto;
    object-fit: contain;
}

/* Portfolio section - mockup */
.portfolio-section {
    background: #F5F3F0;
    padding: 80px 40px 100px;
    min-height: 85vh;
}
.portfolio-wrap {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.portfolio-main-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(56px, 10vw, 80px);
    font-weight: 600;
    line-height: 1;
    color: #B02A35;
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
}
.portfolio-sub {
    font-size: 18px;
    color: #333;
    font-weight: 400;
    margin: 0 0 40px 0;
}
.portfolio-hero-wrap {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 42%;
    max-width: 480px;
    z-index: 1;
}
.portfolio-hero-img {
    width: 100%;
    height: 75vh;
    min-height: 400px;
    object-fit: cover;
    filter: grayscale(100%);
}
.portfolio-tagline {
    position: absolute;
    bottom: 60px;
    right: 0;
    font-size: 14px;
    color: #333;
    letter-spacing: 0.05em;
    z-index: 2;
}
.portfolio-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
    max-width: 70%;
}
.portfolio-intro-left,
.portfolio-intro-right {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}
.portfolio-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(0,0,0,0.08);
}
.portfolio-card {
    text-decoration: none;
    color: inherit;
    display: block;
}
.portfolio-card:hover .portfolio-card-img-wrap img {
    transform: scale(1.03);
}
.portfolio-card-img-wrap {
    overflow: hidden;
    margin-bottom: 20px;
}
.portfolio-card-img-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.portfolio-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    margin: 0 0 8px 0;
}
.portfolio-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Gallery - mockup grid */
.gallery-section {
    padding: 80px 40px;
    background: #F8F7F5;
}
.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}
.gallery-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
}
.gallery-subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 60px;
}
.gallery-grid-mockup {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.gallery-item-m {
    overflow: hidden;
}
.gallery-item-m img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-item-m:hover img {
    transform: scale(1.03);
}

/* Radiant Accents - dark section (Frame 114) */
.radiant-section {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 90vh;
    background: #0a0a0a;
    color: #fff;
}
.radiant-left {
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.radiant-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 400;
    margin-bottom: 40px;
    color: #fff;
}
.radiant-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    max-width: 480px;
    margin-bottom: 40px;
}
.radiant-link {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}
.radiant-link:hover {
    color: #E04D4A;
}
.radiant-right {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
}
.radiant-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.radiant-click {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #E04D4A;
    color: #fff;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* ========== Gallery + Radiant Accents — единый стиль ========== */
.content-block {
    padding: 80px 40px;
    border-bottom: 1px solid #E0E0E0;
}
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.section-header {
    margin-bottom: 60px;
}
.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 24px;
    color: #1A1A1A;
}
.section-intro {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    max-width: 480px;
    margin-bottom: 20px;
}
.section-link {
    font-size: 14px;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: #1A1A1A;
    display: inline-block;
    transition: color 0.2s;
}
.section-link:hover {
    color: #E04D4A;
}

/* Gallery */
.gallery-section {
    background: #F8F7F5;
}
.gallery-grid-unified {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.gallery-item-m {
    overflow: hidden;
}
.gallery-item-m img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-item-m:hover img {
    transform: scale(1.03);
}

/* Radiant Accents — та же структура: заголовок + контент */
.content-block-dark {
    background: #1a1a1a;
    color: #fff;
    border-bottom-color: #333;
}
.content-block-dark .section-title,
.content-block-dark .section-intro,
.content-block-dark .section-link {
    color: #fff;
}
.content-block-dark .section-intro {
    color: rgba(255,255,255,0.85);
}
.content-block-dark .section-link:hover {
    color: #E04D4A;
}
.radiant-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.radiant-image-wrap {
    position: relative;
    overflow: hidden;
    min-height: 380px;
}
.radiant-banner-mockup .radiant-banner-img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    filter: grayscale(100%) brightness(1.15) contrast(1.05);
}

/* Страница Radiant Accents — по макету: белая мебель (монохром) */
.radiant-mockup-img {
    filter: grayscale(100%) brightness(1.12) contrast(1.05);
}

/* Expect section */
.expect-section {
    padding: 80px 40px;
    background: #F8F7F5;
}
.expect-container {
    max-width: 1200px;
    margin: 0 auto;
}
.expect-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
}
.expect-intro {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 80px;
    max-width: 600px;
}
.expect-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto 100px;
    position: relative;
}
.timeline-line {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #E0E0E0;
    z-index: 0;
}
.timeline-item {
    text-align: center;
    z-index: 1;
}
.timeline-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #E04D4A;
    background: #fff;
    margin: 0 auto 15px;
    position: relative;
}
.timeline-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E04D4A;
}
.timeline-item h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}
.timeline-item p {
    font-size: 13px;
    color: #666;
    max-width: 150px;
    margin: 0 auto;
}
.expect-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}
.expect-step {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #E0E0E0;
}
.expect-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.step-num {
    font-size: 14px;
    color: #E04D4A;
    font-weight: 500;
}
.expect-step h3 {
    font-size: 20px;
    font-weight: 500;
    margin: 15px 0 10px;
}
.expect-step p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}
.expect-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border: 1px solid #E0E0E0;
}

/* Contact - mockup + social */
.contact-section {
    padding: 100px 40px;
    background: #F8F7F5;
}
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}
.contact-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 72px;
    font-weight: 400;
    margin-bottom: 80px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
}
.contact-info h2,
.contact-form-wrap h2 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 50px;
}
.contact-name {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 40px;
}
.contact-item {
    margin-bottom: 30px;
}
.contact-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}
.contact-info a {
    font-size: 16px;
    color: #000;
    text-decoration: none;
}
.contact-form div {
    margin-bottom: 30px;
}
.contact-form label {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
    color: #000;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid #E0E0E0;
    font-size: 16px;
    font-family: inherit;
    background: transparent;
}
.form-submit {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}
.form-submit button {
    padding: 15px 40px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
}
.social-icons {
    display: flex;
    gap: 24px;
    margin-top: 40px;
}
.social-icons a {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}
.social-icons a:hover {
    color: #E04D4A;
}

/* Responsive - mockup */
@media (max-width: 1200px) {
    .hero-section {
        grid-template-columns: 1fr 1fr;
    }
    .hero-col-story { grid-column: 1; }
    .hero-col-photo { grid-column: 2; }
    .stat-wide { grid-column: span 1; }
    .radiant-section {
        grid-template-columns: 1fr;
    }
    .portfolio-hero-wrap {
        position: relative;
        width: 100%;
        max-width: none;
        top: auto;
        transform: none;
        margin-top: 40px;
    }
    .portfolio-hero-img {
        min-height: 300px;
        height: 60vh;
    }
    .portfolio-tagline {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 40px;
    }
    .portfolio-intro {
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding-top: 100px;
    }
    .hero-col-title .main-heading {
        font-size: 48px;
    }
    .nav-links { gap: 24px; }
    .principles-section {
        grid-template-columns: 1fr;
    }
    .portfolio-cards {
        grid-template-columns: 1fr;
    }
    .gallery-grid-mockup,
    .gallery-grid-unified {
        grid-template-columns: 1fr;
    }
    .radiant-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .radiant-image-wrap {
        min-height: 280px;
    }
    .expect-timeline {
        flex-direction: column;
        gap: 40px;
    }
    .timeline-line { display: none; }
    .expect-details {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .radiant-left {
        padding: 60px 24px;
    }
}

/* Add Playfair Display font */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&display=swap');
