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

:root {
    --don-product-ratio: 3 / 4;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(218, 165, 32, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    height: 100px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative;
}

/* Left and Right Navigation */
.nav-left,
.nav-right {
    flex: 0 0 auto;
    display: flex;
}

.nav-left {
    justify-content: flex-end;
    margin-right: 30px;
}

.nav-right {
    justify-content: flex-start;
    margin-left: 30px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #d6b06a;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 12px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #DAA520, #FFD700);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #f7f0e4;
    text-shadow: 0 0 10px rgba(218, 165, 32, 0.42);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Center Logo */
.nav-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    margin-top: 40px;
}

.logo-circle {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-inner {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-inner img { 
        width: 170px;
        height: 170px;
        border-radius: 999px;
        border: 2px solid #DAA520;
        object-fit: cover;
        background: rgba(0, 0, 0, 0.9);
        /* padding: 15px; */
        box-shadow: 0 0 20px rgba(218, 165, 32, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
}



/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid #DAA520;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 15px 0;
    box-shadow: 0 15px 40px rgba(218, 165, 32, 0.4);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.3s ease;
    margin: 2px 15px;
    border: 1px solid transparent;
}

.dropdown-menu a:hover {
    background: rgba(218, 165, 32, 0.1);
    color: #DAA520;
    border: 1px solid #DAA520;
    text-shadow: 0 0 10px rgba(218, 165, 32, 0.5);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1002;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background: #DAA520;
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 120px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 120px);
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu ul {
    list-style: none;
    padding: 40px 0;
    text-align: center;
}

.mobile-menu li {
    margin: 20px 0;
}

.mobile-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 15px 25px;
    border: 2px solid transparent;
    display: inline-block;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: #DAA520;
    border-color: #DAA520;
    background: rgba(218, 165, 32, 0.1);
    text-shadow: 0 0 10px rgba(218, 165, 32, 0.5);
}

/* Hero Section */
.hero {
    height: 750px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(218, 165, 32, 0.1) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: -1;
}

/* Main Content */
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    height: 100%;
}

/* Left Side - Text */
.hero-text {
    color: #ffffff;
}

.hero-badge {
    display: inline-block;
    background: rgba(218, 165, 32, 0.1);
    border: 1px solid rgba(218, 165, 32, 0.3);
    padding: 10px 20px;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 500;
    color: #DAA520;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.title-main {
    color: #ffffff;
}

.title-accent {
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 90%;
}

/* Action Buttons */
.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #f0cf88;
    color: #000000;
    padding: 16px 32px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #c99b4f;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #f0cf88;
    color: #000000;
    padding: 16px 32px;
    border: 2px solid #f0cf88;
    border-radius: 0;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: #c99b4f;
    background: #c99b4f;
    color: #000000;
    transform: translateY(-2px);
}

/* Right Side - Single Image */
.hero-image {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(218, 165, 32, 0.2);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 30px 30px;
    color: #ffffff;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-container:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #DAA520;
    margin-bottom: 8px;
}

.image-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-arrow {
    width: 45px;
    height: 45px;
    border: 3px solid #DAA520;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    animation: bounce 2s infinite;
    position: relative;
    margin: 0 auto;
}

/* Portfolio Section */
.portfolio {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #000000 0%, 
        #0a0a0a 25%, 
        #1a1a1a 50%, 
        #0f0f0f 75%, 
        #050505 100%
    );
    position: relative;
    overflow: hidden;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(218, 165, 32, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(218, 165, 32, 0.01) 0%, transparent 50%);
    z-index: 0;
}

.portfolio::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 15px 25px, rgba(218, 165, 32, 0.1), transparent),
        radial-gradient(1px 1px at 45px 75px, rgba(255, 215, 0, 0.08), transparent),
        radial-gradient(1px 1px at 85px 35px, rgba(218, 165, 32, 0.06), transparent);
    background-size: 100px 100px, 150px 150px, 120px 120px;
    z-index: 0;
}

.portfolio .container {
    position: relative;
    z-index: 1;
}

/* Universal centering for section elements */
.portfolio .section-title,
.features .section-title,
.inspiration-gallery .section-title,
.about-us-section .section-title,
.contact-form-section .section-title,
.gallery-section .section-title,
.process-section .section-title,
.contact-cta .section-title,
.cta-content h2 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Left-aligned section titles for specific sections */
.specialties-section .section-title,
.creative-process .section-title {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

/* Universal centering for all h2, h3 in sections */
.portfolio h2, .portfolio h3,
.features h2, .features h3,
.inspiration-gallery h2, .inspiration-gallery h3,
.about-us-section h2, .about-us-section h3,
.contact-form-section h2, .contact-form-section h3,
.gallery-section h2, .gallery-section h3,
.process-section h2, .process-section h3 {
    text-align: center;
}

/* Left-aligned titles for specific sections */
.specialties-section h2, .specialties-section h3,
.creative-process h2, .creative-process h3 {
    text-align: left;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header * {
    text-align: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #DAA520, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 25px;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #DAA520, #FFD700, #DAA520, transparent);
    opacity: 0.9;
}

/* Left-aligned lines for specific sections */
.specialties-section .section-title::after,
.creative-process .section-title::after {
    left: 0;
    transform: translateX(0);
    background: linear-gradient(90deg, #DAA520, #FFD700, transparent);
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
}

.portfolio-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    gap: 20px;
}

.tab-button {
    padding: 15px 30px;
    background: #f0cf88;
    border: 2px solid #f0cf88;
    border-radius: 0;
    color: #15130f;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tab-button:hover,
.tab-button.active {
    border-color: #c99b4f;
    color: #15130f;
    background: #c99b4f;
    box-shadow: 0 5px 20px rgba(218, 165, 32, 0.3);
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.carousel-wrapper {
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.carousel {
    display: none;
}

.carousel.active {
    display: block;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
    position: relative;
    height: 500px;
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transition: all 0.3s ease;
}

.carousel-item:hover img {
    filter: brightness(1);
    transform: scale(1.05);
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 30px 30px;
    color: #ffffff;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.carousel-item:hover .item-overlay {
    transform: translateY(0);
}

.item-overlay h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #DAA520;
}

.item-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(218, 165, 32, 0.8);
    border: none;
    border-radius: 0;
    color: #000;
    font-size: 24px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.carousel-nav:hover {
    background: #DAA520;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: -25px;
}

.carousel-nav.next {
    right: -25px;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: linear-gradient(225deg, 
        #000000 0%, 
        #0f0f0f 25%, 
        #0a0a0a 50%, 
        #151515 75%, 
        #080808 100%
    );
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 10% 10%, rgba(218, 165, 32, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 90% 90%, rgba(255, 215, 0, 0.03) 0%, transparent 60%),
        linear-gradient(45deg, transparent 30%, rgba(218, 165, 32, 0.01) 50%, transparent 70%);
    z-index: 0;
}

.features::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(0.5px 0.5px at 20px 30px, rgba(218, 165, 32, 0.12), transparent),
        radial-gradient(0.5px 0.5px at 60px 80px, rgba(255, 215, 0, 0.09), transparent),
        radial-gradient(0.8px 0.8px at 90px 40px, rgba(218, 165, 32, 0.07), transparent);
    background-size: 80px 80px, 130px 130px, 110px 110px;
    animation: shimmerStars 20s linear infinite;
    z-index: 0;
}

.features .container {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), rgba(0, 0, 0, 0.3));
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(218, 165, 32, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #DAA520;
    box-shadow: 0 20px 40px rgba(218, 165, 32, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    color: #DAA520;
    text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
    transition: all 0.3s ease;
    display: block;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 3rem;
}

.feature-card:hover .feature-icon {
    color: #FFD700;
    text-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #DAA520;
    position: relative;
    padding-bottom: 10px;
    text-align: center;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #DAA520, transparent);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.feature-card:hover h3::after {
    width: 80px;
    opacity: 1;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Contact CTA */
.contact-cta {
    padding: 120px 0;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/hero-main.jpg?v=hero1');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.3);
    z-index: -2;
}

.contact-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(218, 165, 32, 0.1) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: -1;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #DAA520;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.cta-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #DAA520, #FFD700, #DAA520, transparent);
    opacity: 0.8;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.footer {
    background: #000000;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(218, 165, 32, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #DAA520;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-logo {
    height: 120px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(218, 165, 32, 0.3));
}

.footer-section p,
.footer-section ul {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul a:hover {
    color: #DAA520;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(218, 165, 32, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.site-footer {
    background: linear-gradient(180deg, #0b0a08 0%, #050504 100%);
    padding: 24px 0 16px;
    border-top: 1px solid rgba(240, 207, 136, 0.14);
}

.footer-shell {
    display: grid;
    grid-template-columns: minmax(270px, 360px) minmax(0, 1fr);
    align-items: start;
    width: 100%;
    max-width: none;
    gap: clamp(28px, 5vw, 76px);
    padding-inline: clamp(18px, 4vw, 64px);
}

.footer-brand-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 5px;
    align-items: start;
    max-width: none;
    padding-bottom: 0;
    border-bottom: 0;
}

.site-footer .footer-logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
    margin: 0 0 2px;
}

.footer-kicker,
.legal-note .front-eyebrow {
    color: #c99b4f;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-brand-panel h2 {
    max-width: 320px;
    margin: 0;
    color: #f7f0e4;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.12rem, 1.28vw, 1.38rem);
    line-height: 1.12;
}

.footer-brand-panel p:last-child {
    max-width: 310px;
    margin: 0;
    color: rgba(247, 240, 228, 0.68);
    font-size: 0.84rem;
    line-height: 1.38;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(128px, 1fr));
    gap: clamp(20px, 3vw, 54px);
}

.site-footer .footer-section h4 {
    color: #f0cf88;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 9px;
}

.site-footer .footer-section p,
.site-footer .footer-section li,
.site-footer .footer-section a {
    color: rgba(247, 240, 228, 0.68);
    font-size: 0.9rem;
    line-height: 1.42;
}

.site-footer .footer-section ul li {
    margin-bottom: 5px;
}

.site-footer .footer-section a:hover {
    color: #f0cf88;
}

.site-footer .footer-section a {
    overflow-wrap: anywhere;
}

.footer-company p {
    margin: 0 0 8px;
}

.site-footer .footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    text-align: left;
    color: rgba(247, 240, 228, 0.46);
    border-top: 1px solid rgba(240, 207, 136, 0.1);
    padding-top: 14px;
    font-size: 0.78rem;
}

.form-consents {
    display: grid;
    gap: 10px;
    margin: 18px 0 24px;
}

.consent-check {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    color: rgba(247, 240, 228, 0.72);
    font-size: 0.86rem;
    line-height: 1.65;
}

.consent-check input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: #c99b4f;
}

.checkout-form .consent-check input {
    width: 18px;
}

.consent-check a {
    color: #f0cf88;
    text-decoration: none;
    border-bottom: 1px solid rgba(240, 207, 136, 0.38);
}

.legal-page {
    min-height: 100vh;
    padding-top: 92px;
    background: #0b0a08;
    color: #f7f0e4;
}

.legal-hero {
    padding: clamp(78px, 10vw, 150px) clamp(20px, 5vw, 86px) clamp(42px, 6vw, 84px);
    background:
        linear-gradient(105deg, rgba(8, 8, 7, 0.95), rgba(8, 8, 7, 0.72)),
        url('img/img-2/stoliki/615057902_1476852494230401_1589941836562739558_n.jpg') center/cover;
    border-bottom: 1px solid rgba(240, 207, 136, 0.18);
}

.legal-hero h1 {
    max-width: 900px;
    margin: 14px 0 18px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.95;
}

.legal-hero p:not(.front-eyebrow) {
    max-width: 720px;
    color: rgba(247, 240, 228, 0.74);
    line-height: 1.85;
}

.legal-content {
    padding: clamp(54px, 7vw, 104px) clamp(20px, 5vw, 86px);
}

.legal-grid {
    display: grid;
    grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 82px);
    align-items: start;
}

.legal-note {
    position: sticky;
    top: 120px;
    padding: 24px;
    border: 1px solid rgba(240, 207, 136, 0.18);
    background: rgba(255, 255, 255, 0.025);
}

.legal-note p:last-child {
    color: rgba(247, 240, 228, 0.68);
    line-height: 1.75;
}

.legal-panel {
    display: grid;
    gap: 22px;
}

.legal-panel h2 {
    margin: 24px 0 0;
    color: #f0cf88;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.45rem, 2.4vw, 2.2rem);
}

.legal-panel h2:first-child {
    margin-top: 0;
}

.legal-panel p {
    margin: 0;
    color: rgba(247, 240, 228, 0.74);
    line-height: 1.9;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(218, 165, 32, 0.3);
    }
    to {
        text-shadow: 0 0 30px rgba(218, 165, 32, 0.6);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Page Header */
.page-header {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 80px;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/hero-main.jpg?v=hero1');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.4);
    z-index: -2;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(218, 165, 32, 0.1) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: -1;
}

.page-header-content {
    text-align: center;
    z-index: 10;
    position: relative;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #DAA520, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

.breadcrumb a {
    color: #DAA520;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #FFD700;
}

/* Gallery Section */
.gallery-section {
    padding: 120px 0;
    background: linear-gradient(315deg, 
        #000000 0%, 
        #0d0d0d 25%, 
        #1a1a1a 50%, 
        #0b0b0b 75%, 
        #030303 100%
    );
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        conic-gradient(from 45deg at 25% 25%, transparent 0deg, rgba(218, 165, 32, 0.02) 90deg, transparent 180deg),
        conic-gradient(from 225deg at 75% 75%, transparent 0deg, rgba(255, 215, 0, 0.015) 90deg, transparent 180deg);
    z-index: 0;
}

.gallery-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1.2px 1.2px at 25px 15px, rgba(218, 165, 32, 0.08), transparent),
        radial-gradient(0.8px 0.8px at 55px 65px, rgba(255, 215, 0, 0.06), transparent),
        radial-gradient(1px 1px at 75px 95px, rgba(218, 165, 32, 0.05), transparent);
    background-size: 90px 90px, 140px 140px, 160px 160px;
    animation: floatDots 25s ease-in-out infinite;
    z-index: 0;
}

.gallery-section .container {
    position: relative;
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(218, 165, 32, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 40px 25px 25px;
    color: #ffffff;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #DAA520;
}

.gallery-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Process Section */
.process-section {
    padding: 120px 0;
    background: linear-gradient(165deg, 
        #0a0a0a 0%, 
        #1a1a1a 25%, 
        #000000 50%, 
        #121212 75%, 
        #060606 100%
    );
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(125deg, transparent 20%, rgba(218, 165, 32, 0.02) 40%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.025) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(218, 165, 32, 0.02) 0%, transparent 60%);
    z-index: 0;
}

.process-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(0.6px 0.6px at 18px 48px, rgba(218, 165, 32, 0.1), transparent),
        radial-gradient(1px 1px at 68px 28px, rgba(255, 215, 0, 0.07), transparent),
        radial-gradient(0.8px 0.8px at 38px 78px, rgba(218, 165, 32, 0.08), transparent);
    background-size: 70px 70px, 120px 120px, 95px 95px;
    animation: gentleShimmer 30s ease-in-out infinite;
    z-index: 0;
}

.process-section .container {
    position: relative;
    z-index: 1;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px;
    background: rgba(218, 165, 32, 0.05);
    border: 1px solid rgba(218, 165, 32, 0.2);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: #DAA520;
    box-shadow: 0 15px 30px rgba(218, 165, 32, 0.1);
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #DAA520;
    line-height: 1;
    min-width: 60px;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* About Section */
.about-content {
    padding: 120px 0;
    background: linear-gradient(45deg, 
        #000000 0%, 
        #0f0f0f 25%, 
        #0a0a0a 50%, 
        #1a1a1a 75%, 
        #080808 100%
    );
    position: relative;
    overflow: hidden;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 15% 85%, rgba(218, 165, 32, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 15%, rgba(255, 215, 0, 0.025) 0%, transparent 50%),
        linear-gradient(75deg, transparent 40%, rgba(218, 165, 32, 0.015) 50%, transparent 60%);
    z-index: 0;
}

.about-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(0.7px 0.7px at 32px 22px, rgba(218, 165, 32, 0.09), transparent),
        radial-gradient(1.1px 1.1px at 72px 52px, rgba(255, 215, 0, 0.06), transparent),
        radial-gradient(0.9px 0.9px at 52px 82px, rgba(218, 165, 32, 0.07), transparent);
    background-size: 85px 85px, 155px 155px, 125px 125px;
    animation: subtleFloat 35s ease-in-out infinite;
    z-index: 0;
}

.about-content .container {
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #DAA520;
    margin-bottom: 25px;
    text-align: left;
    position: relative;
    padding-bottom: 15px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #DAA520, #FFD700, transparent);
    opacity: 0.8;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.about-image {
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(218, 165, 32, 0.05);
    border: 1px solid rgba(218, 165, 32, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #DAA520;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #DAA520;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Form */
.contact-form-section {
    padding: 120px 0;
    background: linear-gradient(285deg, 
        #000000 0%, 
        #1a1a1a 25%, 
        #0a0a0a 50%, 
        #0f0f0f 75%, 
        #050505 100%
    );
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 60% 20%, rgba(218, 165, 32, 0.035) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        linear-gradient(155deg, transparent 35%, rgba(218, 165, 32, 0.02) 50%, transparent 65%);
    z-index: 0;
}

.contact-form-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(0.9px 0.9px at 28px 38px, rgba(218, 165, 32, 0.08), transparent),
        radial-gradient(0.6px 0.6px at 58px 18px, rgba(255, 215, 0, 0.06), transparent),
        radial-gradient(1.2px 1.2px at 88px 68px, rgba(218, 165, 32, 0.05), transparent);
    background-size: 95px 95px, 75px 75px, 135px 135px;
    animation: delicateSparkle 40s linear infinite;
    z-index: 0;
}

.contact-form-section .container {
    position: relative;
    z-index: 1;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-form {
    background: rgba(218, 165, 32, 0.05);
    padding: 40px;
    border: 1px solid rgba(218, 165, 32, 0.2);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #DAA520;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(218, 165, 32, 0.3);
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #DAA520;
    box-shadow: 0 0 20px rgba(218, 165, 32, 0.2);
}

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

.contact-info h3 {
    font-size: 1.8rem;
    color: #DAA520;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #DAA520, #FFD700, #DAA520, transparent);
    opacity: 0.8;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(218, 165, 32, 0.05);
    border: 1px solid rgba(218, 165, 32, 0.2);
}

.contact-icon {
    font-size: 1.8rem;
    margin-right: 20px;
    color: #DAA520;
    min-width: 35px;
    text-shadow: 0 0 10px rgba(218, 165, 32, 0.3);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    color: #FFD700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    transform: scale(1.1);
}

.contact-details h4 {
    color: #ffffff;
    margin-bottom: 5px;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* About Us Section */
.about-us-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.about-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.about-us-left {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.work-gallery {
    position: relative;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 350px 150px 100px;
    gap: 20px;
}

.gallery-main {
    grid-row: 1;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.gallery-main:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 80px rgba(218, 165, 32, 0.3);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-main:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.gallery-side {
    grid-row: 2;
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.gallery-side img {
    width: calc(50% - 7.5px);
    height: 150px;
    object-fit: cover;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 6px;
}

.gallery-side img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(218, 165, 32, 0.2);
    filter: brightness(1.1);
}

.gallery-accent {
    grid-row: 3;
    position: static;
    width: 100%;
    height: 100px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 3px solid #DAA520;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.gallery-accent:hover {
    transform: scale(1.1) rotate(5deg);
    border-color: #FFD700;
    box-shadow: 0 20px 50px rgba(218, 165, 32, 0.4);
}

.gallery-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-accent:hover img {
    transform: scale(1.1);
}

.about-text {
    padding: 0 20px;
}

.company-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #DAA520;
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
    padding: 0 40px;
    text-align: center;
}

.company-tagline::before,
.company-tagline::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    opacity: 0.8;
    transition: all 0.3s ease;
    transform: translateY(-50%);
}

.company-tagline::before {
    left: 0;
    background: linear-gradient(90deg, transparent, #DAA520, #FFD700);
}

.company-tagline::after {
    right: 0;
    background: linear-gradient(90deg, #FFD700, #DAA520, transparent);
}

.company-description,
.company-mission {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
}

.company-highlights {
    margin: 40px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.08), rgba(255, 215, 0, 0.03));
    border: 1px solid rgba(218, 165, 32, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #DAA520, #FFD700, #DAA520);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(10px);
    border-color: rgba(218, 165, 32, 0.4);
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.12), rgba(255, 215, 0, 0.06));
    box-shadow: 0 5px 20px rgba(218, 165, 32, 0.15);
}

.highlight-item:hover::before {
    opacity: 1;
    width: 4px;
}

.highlight-icon {
    font-size: 1.8rem;
    margin-right: 25px;
    color: #DAA520;
    text-shadow: 0 0 12px rgba(218, 165, 32, 0.4);
    transition: all 0.3s ease;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon i {
    font-size: 1.8rem;
}

.highlight-item:hover .highlight-icon {
    color: #FFD700;
    text-shadow: 0 0 18px rgba(255, 215, 0, 0.6);
    transform: scale(1.1);
}

.highlight-text h4 {
    color: #DAA520;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.highlight-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
}

.about-cta {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #f0cf88;
    color: #000000;
    padding: 16px 32px;
    border-radius: 0;
    border: none;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    background: #c99b4f;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.3);
}

.cta-button.secondary {
    background: #f0cf88;
    border: 2px solid #f0cf88;
    color: #000000;
}

.cta-button.secondary:hover {
    border-color: #c99b4f;
    background: #c99b4f;
    color: #000000;
}

/* Company Stats */
.company-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding: 60px 0;
    border-top: 1px solid rgba(218, 165, 32, 0.2);
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(218, 165, 32, 0.05);
    border: 1px solid rgba(218, 165, 32, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: #DAA520;
    box-shadow: 0 20px 40px rgba(218, 165, 32, 0.2);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #DAA520;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(218, 165, 32, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Background Elements */
.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-element {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.1) 0%, transparent 70%);
    animation: floatElements 8s ease-in-out infinite;
}

.bg-element-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -150px;
    animation-delay: 0s;
}

.bg-element-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: -100px;
    animation-delay: 2s;
}

.bg-element-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 4s;
}

/* Animations */
@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes floatElements {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

@keyframes shimmerStars {
    0% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(2px) translateY(-1px); }
    50% { transform: translateX(-1px) translateY(2px); }
    75% { transform: translateX(1px) translateY(1px); }
    100% { transform: translateX(0) translateY(0); }
}

@keyframes floatDots {
    0%, 100% { 
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-5px) scale(1.05);
        opacity: 1;
    }
}

@keyframes gentleShimmer {
    0%, 100% { 
        transform: translateX(0) rotate(0deg);
        opacity: 0.7;
    }
    33% { 
        transform: translateX(1px) rotate(0.5deg);
        opacity: 0.9;
    }
    66% { 
        transform: translateX(-1px) rotate(-0.5deg);
        opacity: 0.8;
    }
}

@keyframes subtleFloat {
    0%, 100% { 
        transform: translateY(0) translateX(0);
    }
    25% { 
        transform: translateY(-2px) translateX(1px);
    }
    50% { 
        transform: translateY(1px) translateX(-1px);
    }
    75% { 
        transform: translateY(-1px) translateX(1px);
    }
}

@keyframes delicateSparkle {
    0%, 100% { 
        opacity: 0.6;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.02);
    }
}

@keyframes mysticalGlow {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
        opacity: 0.8;
    }
    33% { 
        transform: rotate(1deg) scale(1.01);
        opacity: 0.9;
    }
    66% { 
        transform: rotate(-1deg) scale(0.99);
        opacity: 0.85;
    }
}

@keyframes dreamyFloat {
    0%, 100% { 
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    20% { 
        transform: translateY(-1px) translateX(1px) rotate(0.3deg);
    }
    40% { 
        transform: translateY(1px) translateX(-0.5px) rotate(-0.2deg);
    }
    60% { 
        transform: translateY(-0.5px) translateX(1px) rotate(0.1deg);
    }
    80% { 
        transform: translateY(0.5px) translateX(-1px) rotate(-0.1deg);
    }
}

@keyframes inspirationTwinkle {
    0%, 100% { 
        opacity: 0.7;
        filter: brightness(1);
    }
    25% { 
        opacity: 0.9;
        filter: brightness(1.1);
    }
    50% { 
        opacity: 1;
        filter: brightness(1.2);
    }
    75% { 
        opacity: 0.8;
        filter: brightness(1.05);
    }
}

/* Specialties Section */
.specialties-section {
    padding: 120px 0;
    background: linear-gradient(205deg, 
        #0a0a0a 0%, 
        #1a1a1a 25%, 
        #121212 50%, 
        #000000 75%, 
        #0d0d0d 100%
    );
    position: relative;
    overflow: hidden;
}

.specialties-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        conic-gradient(from 180deg at 75% 25%, rgba(218, 165, 32, 0.025) 0%, transparent 120deg),
        radial-gradient(ellipse at 25% 75%, rgba(255, 215, 0, 0.02) 0%, transparent 50%),
        linear-gradient(25deg, transparent 45%, rgba(218, 165, 32, 0.015) 50%, transparent 55%);
    z-index: 0;
}

.specialties-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(0.8px 0.8px at 42px 12px, rgba(218, 165, 32, 0.1), transparent),
        radial-gradient(0.5px 0.5px at 12px 72px, rgba(255, 215, 0, 0.08), transparent),
        radial-gradient(1px 1px at 82px 42px, rgba(218, 165, 32, 0.06), transparent);
    background-size: 100px 100px, 80px 80px, 120px 120px;
    animation: mysticalGlow 45s ease-in-out infinite;
    z-index: 0;
}

.specialties-section .container {
    position: relative;
    z-index: 1;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.specialty-card {
    background: rgba(218, 165, 32, 0.05);
    overflow: hidden;
    border: 1px solid rgba(218, 165, 32, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.specialty-card:hover {
    transform: translateY(-10px);
    border-color: #DAA520;
    box-shadow: 0 20px 50px rgba(218, 165, 32, 0.2);
}

.specialty-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.specialty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.specialty-card:hover .specialty-image img {
    transform: scale(1.1);
}



.specialty-content {
    padding: 30px;
}

.specialty-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #DAA520;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
    text-align: left;
}

.specialty-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #DAA520, #FFD700, transparent);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.specialty-card:hover .specialty-content h3::after {
    width: 50px;
    opacity: 1;
}

.specialty-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.specialty-link {
    color: #DAA520;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.specialty-link:hover {
    color: #FFD700;
}

.specialty-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #DAA520, #FFD700);
    transition: width 0.3s ease;
}

.specialty-link:hover::after {
    width: 100%;
}

/* Creative Process Section */
.creative-process {
    padding: 120px 0;
    background: linear-gradient(125deg, 
        #000000 0%, 
        #0a0a0a 25%, 
        #171717 50%, 
        #0f0f0f 75%, 
        #030303 100%
    );
    position: relative;
    overflow: hidden;
}

.creative-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 10%, rgba(218, 165, 32, 0.03) 0%, transparent 60%),
        radial-gradient(circle at 10% 90%, rgba(255, 215, 0, 0.025) 0%, transparent 60%),
        linear-gradient(65deg, transparent 25%, rgba(218, 165, 32, 0.02) 50%, transparent 75%);
    z-index: 0;
}

.creative-process::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(0.7px 0.7px at 35px 55px, rgba(218, 165, 32, 0.09), transparent),
        radial-gradient(1px 1px at 65px 25px, rgba(255, 215, 0, 0.07), transparent),
        radial-gradient(0.6px 0.6px at 95px 85px, rgba(218, 165, 32, 0.08), transparent);
    background-size: 110px 110px, 90px 90px, 130px 130px;
    animation: dreamyFloat 50s ease-in-out infinite;
    z-index: 0;
}

.creative-process .container {
    position: relative;
    z-index: 1;
}

.process-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.process-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin: 30px 0;
}

.process-gallery {
    position: relative;
    height: 500px;
}

.process-image {
    position: absolute;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.process-image:hover {
    transform: scale(1.05);
    z-index: 10;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-image {
    width: 70%;
    height: 80%;
    top: 0;
    left: 0;
    z-index: 3;
}

.small-image-1 {
    width: 45%;
    height: 40%;
    top: 20%;
    right: 0;
    z-index: 2;
}

.small-image-2 {
    width: 40%;
    height: 35%;
    bottom: 0;
    right: 10%;
    z-index: 1;
}

/* Inspiration Gallery */
.inspiration-gallery {
    padding: 120px 0;
    background: linear-gradient(85deg, 
        #0a0a0a 0%, 
        #1a1a1a 25%, 
        #000000 50%, 
        #141414 75%, 
        #070707 100%
    );
    position: relative;
    overflow: hidden;
}

.inspiration-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        conic-gradient(from 315deg at 30% 70%, rgba(218, 165, 32, 0.02) 0%, transparent 90deg),
        radial-gradient(ellipse at 70% 30%, rgba(255, 215, 0, 0.018) 0%, transparent 60%),
        linear-gradient(295deg, transparent 30%, rgba(218, 165, 32, 0.015) 50%, transparent 70%);
    z-index: 0;
}

.inspiration-gallery::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1.1px 1.1px at 22px 62px, rgba(218, 165, 32, 0.07), transparent),
        radial-gradient(0.8px 0.8px at 72px 32px, rgba(255, 215, 0, 0.05), transparent),
        radial-gradient(0.9px 0.9px at 52px 92px, rgba(218, 165, 32, 0.06), transparent);
    background-size: 105px 105px, 145px 145px, 125px 125px;
    animation: inspirationTwinkle 38s linear infinite;
    z-index: 0;
}

.inspiration-gallery .container {
    position: relative;
    z-index: 1;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 250px;
    gap: 20px;
    margin-top: 60px;
}

.masonry-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.masonry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(218, 165, 32, 0.2);
}

.masonry-item.tall {
    grid-row: span 2;
}

.masonry-item.wide {
    grid-column: span 2;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.masonry-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.masonry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 30px 20px 20px;
    color: #ffffff;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.masonry-item:hover .masonry-overlay {
    transform: translateY(0);
}

.masonry-overlay h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #DAA520;
}

.masonry-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-cta {
    text-align: center;
    margin-top: 60px;
}

.gallery-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

/* Responsive Design */
/* Medium Screens - Tablets */
@media (max-width: 1024px) and (min-width: 769px) {
    .work-gallery {
        grid-template-rows: 300px 120px 80px;
        gap: 15px;
    }
    
    .gallery-side img {
        height: 120px;
    }
    
    .gallery-accent {
        height: 80px;
        border-width: 2px;
    }
}

@media (max-width: 768px) {
    /* Nawigacja mobilna */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    .nav-center {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin-top: -2.5px;
    }

    .logo-circle {
        width: 90px;
        height: 90px;
    }

    .logo-inner {
        width: 82px;
        height: 82px;
    }

    .logo-inner img {
        width: 65px;
        height: 65px;
        border-width: 2px;
    }

    .navbar {
        height: 80px;
        padding: 10px 0;
    }

    .mobile-menu {
        top: 80px;
        height: calc(100vh - 80px);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        margin-top: 10px;
    }
    
    /* Hero Mobile Styles */
    .hero-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        min-height: auto;
        padding: 40px 0;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .hero-actions {
        justify-content: center;
        gap: 12px;
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-image {
        width: 300px;
        height: 300px;
    }
    
    .image-container img {
        height: 100%;
        border-radius: 15px;
    }
    
    .image-overlay {
        padding: 20px 15px 15px;
    }
    
    .image-overlay h3 {
        font-size: 1.1rem;
    }
    
    .scroll-arrow {
        width: 30px;
        height: 30px;
    }

    /* Tytuły sekcji */
    .section-title {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    
    .section-title::after {
        width: 60px;
        height: 2px;
        left: 50%;
        transform: translateX(-50%);
    }
    
         .section-subtitle {
         font-size: 1rem;
         margin-bottom: 40px;
     }
    
    .section-header {
        margin-bottom: 50px;
        text-align: center;
    }

    /* Portfolio */
    .portfolio-tabs {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .tab-button {
        width: 100%;
        max-width: 250px;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .carousel-nav {
        display: none;
    }
    
    .carousel-item {
        height: 250px;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-card {
        padding: 25px 20px;
        text-align: center;
    }
    
    .feature-icon {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .feature-card h3::after {
        width: 40px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-item {
        height: 250px;
        border-radius: 10px;
        overflow: hidden;
    }
    
    /* Process Steps */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        gap: 15px;
    }
    
    .step-number {
        font-size: 2rem;
        margin-bottom: 10px;
        min-width: auto;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
        text-align: center;
    }
    
    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .about-text h2::after {
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
    }
    
    .about-text h3 {
        font-size: 1.3rem;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .about-image img {
        height: 300px;
        border-radius: 10px;
    }
    
    /* Stats Grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-item {
        padding: 20px 15px;
        text-align: center;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Contact Form */
    .form-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .contact-info h3 {
        font-size: 1.4rem;
        text-align: center;
    }
    
    .contact-info h3::after {
        width: 50px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-item {
        padding: 15px;
        margin-bottom: 20px;
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-icon {
        font-size: 1.5rem;
        margin-right: 0;
        margin-bottom: 8px;
    }
    
    /* About Us Section */
    .about-us-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .work-gallery {
        grid-template-rows: 200px 100px 80px;
        gap: 10px;
    }
    

    
    .gallery-side {
        gap: 8px;
    }
    
    .gallery-side img {
        height: 100px;
        border-radius: 5px;
    }
    
    .gallery-accent {
        height: 80px;
        border-width: 2px;
        border-radius: 5px;
    }
    
    .company-tagline {
        font-size: 1.3rem;
        text-align: center;
        padding: 0 20px;
    }
    
    .company-tagline::before,
    .company-tagline::after {
        width: 20px;
    }
    
    .about-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .company-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Highlight Items */
    .highlight-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .highlight-icon {
        margin-right: 0;
        margin-bottom: 10px;
        font-size: 1.8rem;
    }
    
    /* Specialties */
    .specialties-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .specialty-image {
        height: 220px;
    }
    
    .specialty-content {
        padding: 20px;
        text-align: center;
    }
    
    .specialty-content h3 {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .specialty-content h3::after {
        left: 50%;
        transform: translateX(-50%);
        width: 25px;
    }
    
    /* Process Header */
    .process-header {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .process-gallery {
        height: 300px;
    }
    
    .small-image-1,
    .small-image-2 {
        width: 45%;
        height: 25%;
    }
    
    /* Masonry Grid */
    .masonry-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
        gap: 15px;
    }
    
    .masonry-item.wide,
    .masonry-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .masonry-item {
        border-radius: 8px;
        overflow: hidden;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    /* Page Header */
    .page-header {
        height: 40vh;
        margin-top: 80px;
    }
    
    .page-header h1 {
        font-size: 2rem;
        text-align: center;
    }
    
    .page-header p {
        font-size: 1rem;
        text-align: center;
    }
    
    /* Breadcrumb */
    .breadcrumb {
        text-align: center;
        font-size: 0.9rem;
    }
    
    /* CTA Content */
    .cta-content h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .cta-content h2::after {
        width: 60px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .cta-content p {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Nawigacja jeszcze mniejsza */
    .logo-circle {
        width: 75px;
        height: 75px;
    }

    .logo-inner {
        width: 68px;
        height: 68px;
    }

    .logo-inner img {
        width: 55px;
        height: 55px;
        border-width: 2px;
    }
    
    .navbar {
        height: 70px;
    }
    
    .mobile-menu {
        top: 70px;
        height: calc(100vh - 70px);
    }
    
    /* Hero bardzo małe ekrany */
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 0.85rem;
        max-width: 250px;
    }
    
    .hero-image {
        width: 250px;
        height: 250px;
    }
    
    .image-container img {
        height: 100%;
        border-radius: 12px;
    }
    
    /* Tytuły jeszcze mniejsze */
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
        padding-bottom: 12px;
    }
    
    .section-title::after {
        width: 50px;
        height: 2px;
    }
    
         .section-subtitle {
         font-size: 0.9rem;
         margin-bottom: 35px;
     }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    /* Portfolio małe */
    .tab-button {
        padding: 10px 18px;
        font-size: 13px;
        max-width: 220px;
    }
    
    .carousel-item {
        height: 200px;
    }
    
    /* Features małe */
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    /* Gallery małe */
    .gallery-item {
        height: 200px;
        border-radius: 8px;
    }
    
    /* Process Steps małe */
    .process-step {
        padding: 20px 15px;
        gap: 12px;
    }
    
    .step-number {
        font-size: 1.8rem;
    }
    
    .step-content h3 {
        font-size: 1rem;
    }
    
    /* About małe */
    .about-text h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .about-text h2::after {
        width: 50px;
    }
    
    .about-text h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .about-image img {
        height: 250px;
        border-radius: 8px;
    }
    
    /* Stats małe */
    .stat-item {
        padding: 15px 10px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Contact Form małe */
    .contact-form {
        padding: 20px 15px;
    }
    
    .contact-info h3 {
        font-size: 1.2rem;
    }
    
    .contact-info h3::after {
        width: 40px;
    }
    
    .contact-item {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .contact-icon {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }
    
    /* Work Gallery małe */
    .work-gallery {
        grid-template-rows: 180px 80px 60px;
        gap: 8px;
    }
    
    .gallery-side img {
        height: 80px;
        border-radius: 4px;
    }
    
    .gallery-accent {
        height: 60px;
        border-width: 1px;
        border-radius: 4px;
    }
    
    /* Company Tagline małe */
    .company-tagline {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .company-tagline::before,
    .company-tagline::after {
        width: 15px;
    }
    
    /* CTA Button małe */
    .cta-button {
        max-width: 250px;
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    /* Company Stats małe */
    .company-stats {
        gap: 12px;
    }
    
    /* Highlight Items małe */
    .highlight-item {
        padding: 15px 12px;
    }
    
    .highlight-icon {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    
    /* Specialties małe */
    .specialties-grid {
        gap: 20px;
    }
    
    .specialty-image {
        height: 180px;
    }
    
    .specialty-content {
        padding: 15px;
    }
    
    .specialty-content h3 {
        font-size: 1.1rem;
    }
    
    .specialty-content h3::after {
        width: 20px;
    }
    
    /* Process Gallery małe */
    .process-gallery {
        height: 250px;
    }
    
    .small-image-1,
    .small-image-2 {
        width: 42%;
        height: 22%;
    }
    
    /* Masonry małe */
    .masonry-grid {
        grid-auto-rows: 160px;
        gap: 12px;
    }
    
    .masonry-item {
        border-radius: 6px;
    }
    
    /* Footer małe */
    .footer-content {
        gap: 25px;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    /* Page Header małe */
    .page-header {
        height: 35vh;
        margin-top: 70px;
    }
    
    .page-header h1 {
        font-size: 1.7rem;
    }
    
    .page-header p {
        font-size: 0.9rem;
    }
    
    /* Breadcrumb małe */
    .breadcrumb {
        font-size: 0.8rem;
    }
    
    /* CTA Content małe */
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content h2::after {
        width: 50px;
    }
    
    .cta-content p {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
}

/* Homepage visual refresh */
body > .home-refresh + .hero,
body > .home-refresh ~ .about-us-section,
body > .home-refresh ~ .features,
body > .home-refresh ~ .specialties-section,
body > .home-refresh ~ .creative-process,
body > .home-refresh ~ .inspiration-gallery,
body > .home-refresh ~ .contact-cta {
    display: none;
}

.home-refresh {
    --front-bg: #0f0f0d;
    --front-ink: #f7f0e4;
    --front-muted: rgba(247, 240, 228, 0.72);
    --front-line: rgba(247, 240, 228, 0.16);
    --front-gold: #c99b4f;
    --front-gold-light: #f0cf88;
    --front-gold-dark: #c99b4f;
    --front-clay: #9b6b4a;
    --front-paper: #e7dccb;
    --front-paper-ink: #171512;
    background: var(--front-bg);
    color: var(--front-ink);
}

.catalog-preview {
    --front-bg: #0f0f0d;
    --front-ink: #f7f0e4;
    --front-muted: rgba(247, 240, 228, 0.72);
    --front-line: rgba(247, 240, 228, 0.16);
    --front-gold: #c99b4f;
    --front-gold-light: #f0cf88;
    --front-gold-dark: #c99b4f;
    --front-clay: #9b6b4a;
    --front-paper: #e7dccb;
    --front-paper-ink: #171512;
    background: var(--front-bg);
    color: var(--front-ink);
}

.catalog-preview .catalog-header {
    min-height: 54vh;
}

.catalog-sections,
.training-intro {
    margin-top: 0;
}

.front-wide {
    width: min(100%, 1720px);
    margin: 0 auto;
    padding: 0 clamp(18px, 4vw, 76px);
}

.front-eyebrow {
    margin: 0 0 18px;
    color: var(--front-gold);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    line-height: 1.4;
    text-transform: uppercase;
}

.front-hero {
    min-height: 100svh;
    position: relative;
    overflow: hidden;
    background: #090908;
}

.front-hero-media,
.front-hero-shade {
    position: absolute;
    inset: 0;
}

.front-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.98) brightness(0.9);
    transform: scale(1.06);
    transition: transform 1.25s cubic-bezier(0.19, 1, 0.22, 1), filter 0.9s ease;
}

.front-hero-shade {
    background:
        radial-gradient(ellipse at 25% 50%, rgba(8, 8, 7, 0.78) 0%, rgba(8, 8, 7, 0.54) 34%, rgba(8, 8, 7, 0.12) 68%, transparent 100%),
        linear-gradient(180deg, rgba(8, 8, 7, 0.34) 0%, rgba(8, 8, 7, 0.04) 45%, rgba(8, 8, 7, 0.54) 100%);
}

.front-hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    min-height: 100svh;
    padding: 150px clamp(18px, 5vw, 86px) 90px;
    opacity: 0;
    visibility: hidden;
    clip-path: polygon(0 0, 12% 0, 0 100%, 0 100%);
    pointer-events: none;
    transition: opacity 0.5s ease, visibility 0.5s ease, clip-path 0.95s cubic-bezier(0.19, 1, 0.22, 1);
}

.front-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    pointer-events: auto;
}

.front-hero-slide.is-active .front-hero-media img {
    filter: saturate(1.04) brightness(0.94);
    transform: scale(1);
}

.front-hero-slide--right {
    justify-items: end;
}

.front-hero-slide--right .front-hero-media img {
    object-position: 28% center;
}

.front-hero-slide--right .front-hero-shade {
    background:
        radial-gradient(ellipse at 76% 50%, rgba(8, 8, 7, 0.8) 0%, rgba(8, 8, 7, 0.56) 34%, rgba(8, 8, 7, 0.1) 68%, transparent 100%),
        linear-gradient(180deg, rgba(8, 8, 7, 0.28) 0%, rgba(8, 8, 7, 0.02) 48%, rgba(8, 8, 7, 0.58) 100%);
}

.front-hero-slide--right-align {
    text-align: right;
}

.front-hero-slide--right-align .front-hero-content > p:not(.front-eyebrow) {
    margin-left: auto;
}

.front-hero-slide--right-align .front-actions {
    justify-content: flex-end;
}

.front-hero-slide--center {
    justify-items: center;
    text-align: center;
}

.front-hero-slide--center .front-hero-shade {
    background:
        radial-gradient(ellipse at 50% 48%, rgba(8, 8, 7, 0.76) 0%, rgba(8, 8, 7, 0.5) 32%, rgba(8, 8, 7, 0.08) 62%, transparent 100%),
        linear-gradient(180deg, rgba(8, 8, 7, 0.3) 0%, rgba(8, 8, 7, 0.04) 45%, rgba(8, 8, 7, 0.58) 100%);
}

.front-hero-slide--center .front-hero-content {
    width: min(64vw, 980px);
    max-width: 64vw;
}

.front-hero-slide--center .front-hero-content > p:not(.front-eyebrow) {
    margin-left: auto;
    margin-right: auto;
}

.front-hero-slide--center .front-actions {
    justify-content: center;
}

.front-hero-content {
    position: relative;
    z-index: 2;
    width: min(50vw, 760px);
    max-width: 50vw;
    min-width: 0;
    transform: translateY(18px);
    opacity: 0;
    transition: opacity 0.58s ease 0.18s, transform 0.58s ease 0.18s;
}

.front-hero-slide.is-active .front-hero-content {
    opacity: 1;
    transform: translateY(0);
}

.front-hero h1 {
    font-family: 'Playfair Display', serif;
    max-width: 100%;
    margin: 0;
    color: var(--front-ink);
    font-size: clamp(2.7rem, 5.4vw, 6.5rem);
    font-weight: 700;
    line-height: 0.96;
    overflow-wrap: break-word;
}

.front-hero-content > p:not(.front-eyebrow) {
    max-width: 640px;
    margin: 28px 0 0;
    color: var(--front-muted);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.8;
}

.front-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.front-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 22px;
    border: 1px solid transparent;
    color: var(--front-ink);
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.front-btn:hover {
    transform: translateY(-2px);
}

.front-btn-primary {
    border-color: var(--front-gold-light);
    background: var(--front-gold-light);
    color: #11100e;
}

.front-btn-primary:hover {
    border-color: var(--front-gold-dark);
    background: var(--front-gold-dark);
    color: #11100e;
}

.front-btn-ghost {
    border-color: var(--front-gold-light);
    background: var(--front-gold-light);
    color: #11100e;
}

.front-btn-ghost:hover {
    border-color: var(--front-gold-dark);
    background: var(--front-gold-dark);
    color: #11100e;
}

.front-hero-controls {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transform: translateX(-50%);
}

.front-hero-arrow,
.front-hero-dots button {
    appearance: none;
    border: 1px solid rgba(247, 240, 228, 0.3);
    background: rgba(12, 11, 9, 0.38);
    color: #f7f0e4;
    cursor: pointer;
    transition: background 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.front-hero-arrow {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    line-height: 0;
}

.front-hero-dots button:hover,
.front-hero-dots button.is-active {
    border-color: var(--front-gold);
    background: rgba(201, 155, 79, 0.22);
    transform: translateY(-1px);
}

.front-hero-arrow:hover {
    border-color: var(--front-gold);
    background: rgba(201, 155, 79, 0.22);
    transform: translateY(-1px);
}

.front-hero-arrow span {
    display: block;
    line-height: 1;
}

.front-hero-dots {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.front-hero-dots button {
    width: 42px;
    height: 6px;
    padding: 0;
}

.front-hero-dots button.is-active {
    width: 64px;
}

.front-hero-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    height: 3px;
    background: rgba(247, 240, 228, 0.12);
}

.front-hero-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--front-gold);
    transform: scaleX(0);
    transform-origin: left;
}

.front-hero-progress span.is-running {
    animation: heroProgress 6.5s linear both;
}

@keyframes heroProgress {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.front-hero-strip {
    position: absolute;
    right: clamp(18px, 4vw, 72px);
    bottom: 46px;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(90px, 160px));
    gap: 10px;
    width: min(36vw, 500px);
}

.front-hero-strip img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border: 1px solid rgba(247, 240, 228, 0.24);
}

.front-signature {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--front-line);
    border-bottom: 1px solid var(--front-line);
    background: #151411;
}

.front-signature span {
    min-height: 82px;
    display: grid;
    place-items: center;
    padding: 16px;
    border-right: 1px solid var(--front-line);
    color: var(--front-muted);
    font-size: 0.83rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
}

.front-signature span:last-child {
    border-right: 0;
}

.front-intro {
    padding: clamp(72px, 10vw, 150px) 0;
    background: var(--front-paper);
    color: var(--front-paper-ink);
}

.front-intro .front-eyebrow {
    color: var(--front-clay);
}

.front-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
    gap: clamp(34px, 6vw, 96px);
    align-items: start;
}

.front-intro h2,
.front-section-head h2,
.front-process h2,
.front-contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 5.8rem);
    font-weight: 700;
    line-height: 0.98;
    margin: 0;
}

.front-intro p {
    margin: 0;
    color: rgba(23, 21, 18, 0.76);
    font-size: 1.08rem;
    line-height: 1.9;
}

.front-text-link {
    display: inline-block;
    margin-top: 26px;
    color: var(--front-paper-ink);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.front-text-link::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    margin-top: 6px;
    background: var(--front-clay);
}

.front-proof {
    padding: 0;
    background: #0d0d0b;
}

.front-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-left: 1px solid var(--front-line);
}

.front-proof article {
    min-height: 230px;
    padding: clamp(28px, 4vw, 58px);
    border-right: 1px solid var(--front-line);
}

.front-proof span,
.front-service-card span {
    display: inline-block;
    margin-bottom: 22px;
    color: var(--front-gold);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.front-proof h3 {
    margin: 0 0 12px;
    color: var(--front-ink);
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.55rem, 2.4vw, 2.6rem);
    line-height: 1.05;
}

.front-proof p {
    margin: 0;
    color: var(--front-muted);
    line-height: 1.8;
}

.front-services,
.front-gallery {
    padding: clamp(72px, 9vw, 140px) 0;
}

.front-section-head {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.6fr);
    gap: clamp(28px, 5vw, 86px);
    align-items: end;
    margin-bottom: clamp(34px, 5vw, 70px);
}

.front-section-head p:not(.front-eyebrow) {
    max-width: 620px;
    margin: 0;
    color: var(--front-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.front-section-head--variant3 {
    grid-template-columns: minmax(0, 0.62fr) minmax(280px, 0.38fr);
    align-items: center;
    gap: clamp(32px, 7vw, 116px);
    max-width: 1180px;
    margin-right: auto;
    margin-left: auto;
}

.front-section-head--variant3 .front-eyebrow {
    grid-column: 1 / -1;
    margin-bottom: clamp(6px, 1vw, 12px);
}

.front-section-head--variant3 h2 {
    max-width: 680px;
    font-size: clamp(2.9rem, 5.2vw, 6.3rem);
}

.front-section-head--variant3 p:not(.front-eyebrow) {
    position: relative;
    max-width: 420px;
    padding-top: 24px;
    color: rgba(21, 19, 15, 0.7);
    font-size: clamp(0.95rem, 1.05vw, 1.08rem);
}

.front-section-head--variant3 p:not(.front-eyebrow)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 74px;
    height: 2px;
    background: #c99643;
}

.front-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--front-line);
}

.front-service-card {
    min-height: 680px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    color: var(--front-ink);
    text-decoration: none;
}

.front-service-card img,
.front-contact-media img,
.front-masonry img,
.front-process-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.front-service-card img {
    position: absolute;
    inset: 0;
    filter: brightness(0.66) saturate(0.95);
    transition: transform 0.45s ease, filter 0.45s ease;
}

.front-service-card:hover img {
    filter: brightness(0.84) saturate(1);
    transform: scale(1.06);
}

.front-service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 30%, rgba(0, 0, 0, 0.84) 100%);
}

.front-service-card div {
    position: relative;
    z-index: 1;
    padding: clamp(26px, 4vw, 52px);
}

.front-service-card h3 {
    max-width: 520px;
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3vw, 3.4rem);
    line-height: 1;
}

.front-shop-showcase {
    background: #0d0d0b;
}

.front-shop-showcase .front-section-head h2 {
    color: #f7f0e4;
}

.home-refresh .front-shop-showcase .front-service-grid {
    gap: clamp(14px, 2vw, 28px);
    background: transparent;
}

.home-refresh .front-shop-showcase .front-shop-card {
    aspect-ratio: var(--don-product-ratio);
    min-height: 0;
}

.front-shop-card {
    aspect-ratio: var(--don-product-ratio);
    min-height: 0;
    isolation: isolate;
    background:
        radial-gradient(circle at 50% 34%, rgba(214, 176, 106, 0.26), transparent 34%),
        linear-gradient(145deg, #191611 0%, #0b0b0a 100%);
}

.front-shop-card::before {
    content: '';
    position: absolute;
    left: 12%;
    right: 12%;
    top: 16%;
    aspect-ratio: 1;
    border: 1px solid rgba(214, 176, 106, 0.2);
    border-radius: 50%;
    opacity: 0.5;
    transform: scale(0.9);
    transition: transform 0.45s ease, opacity 0.45s ease;
}

.front-shop-card::after {
    z-index: 1;
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.06) 0%,
            rgba(0, 0, 0, 0.12) 28%,
            rgba(0, 0, 0, 0.34) 58%,
            rgba(0, 0, 0, 0.78) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.22) 0%, transparent 42%, rgba(0, 0, 0, 0.12) 100%);
}

.front-shop-card img {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.88) saturate(0.98);
    transform: scale(1);
    transition: transform 0.45s ease, filter 0.45s ease;
    z-index: 1;
}

.front-shop-card:hover img {
    filter: brightness(1) saturate(1.05);
    transform: scale(1.06);
}

.front-shop-card:hover::before {
    opacity: 0.8;
    transform: scale(1);
}

.front-shop-card div {
    z-index: 2;
}

.shop-gallery {
    padding: clamp(72px, 9vw, 132px) 0;
    background: #eee8de;
    color: #15130f;
}

.shop-category-panel {
    padding: clamp(46px, 6vw, 86px) 0;
    border-top: 1px solid rgba(21, 19, 15, 0.14);
}

.shop-category-panel:first-child {
    border-top: 0;
    padding-top: 0;
}

.shop-category-copy {
    display: grid;
    grid-template-columns: minmax(0, 0.42fr) minmax(320px, 0.58fr);
    gap: clamp(24px, 5vw, 72px);
    align-items: end;
    margin-bottom: clamp(28px, 4vw, 54px);
}

.shop-category-copy h2 {
    max-width: 760px;
    margin: 0;
    color: #15130f;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.6vw, 5.2rem);
    line-height: 0.96;
}

.shop-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 12px;
}

.shop-product-grid figure {
    position: relative;
    overflow: hidden;
    margin: 0;
    background: #15130f;
    cursor: pointer;
}

.shop-product-grid figure:nth-child(7n + 1) {
    grid-row: span 2;
}

.shop-product-grid figure:nth-child(9n + 4) {
    grid-column: span 2;
}

.shop-product-grid img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.86) saturate(0.94);
    transition: transform 0.38s ease, filter 0.38s ease;
}

.shop-product-grid figure:hover img {
    filter: brightness(1) saturate(1.04);
    transform: scale(1.045);
}

.shop-page {
    background: #0d0d0b;
}

.shop-hero {
    min-height: 82vh;
    display: grid;
    align-items: end;
    padding: clamp(112px, 10vw, 150px) 0 clamp(38px, 5vw, 72px);
    background:
        radial-gradient(circle at 78% 18%, rgba(201, 155, 79, 0.22), transparent 28%),
        linear-gradient(135deg, #0a0a09 0%, #181511 48%, #080807 100%);
}

.shop-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.62fr);
    gap: clamp(34px, 6vw, 108px);
    align-items: end;
}

.shop-hero-copy h1 {
    max-width: 760px;
    margin: 0;
    color: #f7f0e4;
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.35rem, 6.4vw, 7.35rem);
    line-height: 0.94;
}

.shop-hero-copy p:not(.front-eyebrow) {
    max-width: 560px;
    margin: 22px 0 0;
    color: rgba(247, 240, 228, 0.72);
    font-size: clamp(0.94rem, 1.05vw, 1.08rem);
    line-height: 1.65;
}

.shop-hero-media {
    position: relative;
    aspect-ratio: var(--don-product-ratio);
    justify-self: end;
    width: min(100%, 470px);
    overflow: hidden;
    background: #15130f;
}

.shop-hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.82) saturate(0.94);
}

.shop-hero-media span {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 18px;
    padding: 12px 14px;
    border: 1px solid rgba(214, 176, 106, 0.42);
    background: rgba(8, 8, 7, 0.68);
    color: #d6b06a;
    font-family: 'Playfair Display', serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-align: center;
    text-transform: uppercase;
    backdrop-filter: blur(14px);
}

.shop-store {
    padding: clamp(72px, 9vw, 140px) 0;
    background: #eee8de;
    color: #15130f;
}

.shop-store-head {
    display: grid;
    grid-template-columns: minmax(0, 0.74fr) minmax(300px, 0.44fr);
    gap: clamp(28px, 5vw, 86px);
    align-items: end;
    margin-bottom: clamp(28px, 4vw, 58px);
}

.shop-store-head h2 {
    max-width: 820px;
    margin: 0;
    color: #15130f;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 5.2vw, 6.4rem);
    line-height: 0.94;
}

.shop-store-head p:not(.front-eyebrow) {
    margin: 0;
    color: rgba(21, 19, 15, 0.7);
    line-height: 1.75;
}

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    padding: 6px 0 14px;
    border: 0;
    border-bottom: 1px solid rgba(21, 19, 15, 0.1);
    background: transparent;
}

.shop-filters,
.shop-density {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
}

.shop-tools {
    display: grid;
    grid-template-columns: minmax(180px, 1.5fr) repeat(3, minmax(132px, 1fr));
    gap: 10px;
    flex: 1 1 520px;
}

.shop-tools label {
    display: grid;
    gap: 6px;
}

.shop-tools span {
    color: rgba(21, 19, 15, 0.56);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.shop-tools input,
.shop-tools select {
    width: 100%;
    min-height: 42px;
    border: 1px solid rgba(21, 19, 15, 0.14);
    background: rgba(255, 255, 255, 0.36);
    color: #15130f;
    padding: 0 12px;
    font: inherit;
    font-size: 0.88rem;
    outline: none;
}

.shop-tools input:focus,
.shop-tools select:focus {
    border-color: #c99b4f;
    box-shadow: 0 0 0 2px rgba(201, 155, 79, 0.16);
}

.shop-density span {
    margin-right: 14px;
    color: rgba(21, 19, 15, 0.56);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.shop-filters button,
.shop-density button {
    position: relative;
    min-height: 46px;
    border: 0;
    border-right: 1px solid rgba(201, 155, 79, 0.48);
    background: transparent;
    color: rgba(21, 19, 15, 0.62);
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.22s ease, transform 0.22s ease;
}

.shop-filters button::after,
.shop-density button::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 6px;
    height: 2px;
    background: #c99b4f;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.24s ease, background 0.24s ease;
}

.shop-filters button:last-child,
.shop-density button:last-child {
    border-right: 0;
}

.shop-filters button {
    padding: 11px 22px 14px;
}

.shop-density button {
    width: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px 2px;
    font-family: 'Font Awesome 6 Free';
    font-size: 0.98rem;
    letter-spacing: 0;
}

.shop-density button i {
    pointer-events: none;
}

.shop-filters button:hover,
.shop-density button:hover,
.shop-filters button.is-active,
.shop-density button.is-active {
    color: #a57728;
    transform: translateY(-1px);
}

.shop-filters button:hover::after,
.shop-density button:hover::after,
.shop-filters button.is-active::after,
.shop-density button.is-active::after {
    transform: scaleX(1);
}

.shop-listing-grid {
    display: grid;
    grid-template-columns: repeat(var(--shop-columns, 3), minmax(0, 1fr));
    gap: clamp(16px, 2vw, 30px);
}

.shop-listing-grid[data-columns="2"] {
    --shop-columns: 2;
}

.shop-listing-grid[data-columns="3"] {
    --shop-columns: 3;
}

.shop-listing-grid[data-columns="4"] {
    --shop-columns: 4;
}

.shop-listing-card {
    display: grid;
    gap: 18px;
    color: #15130f;
    text-decoration: none;
}

.shop-listing-card.is-hidden {
    display: none;
}

.shop-empty {
    margin: 0 0 28px;
    padding: clamp(24px, 4vw, 46px);
    border: 1px solid rgba(21, 19, 15, 0.1);
    background: rgba(255, 255, 255, 0.46);
    color: #15130f;
    text-align: center;
}

.shop-empty h3 {
    margin: 8px 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 3.2rem);
    line-height: 1;
}

.shop-empty p {
    margin: 0;
}

.shop-card-skeleton {
    aspect-ratio: var(--don-product-ratio);
    padding: 18px;
    background: linear-gradient(90deg, rgba(21, 19, 15, 0.08), rgba(255, 255, 255, 0.32), rgba(21, 19, 15, 0.08));
    background-size: 220% 100%;
    animation: shopSkeleton 1.15s linear infinite;
}

.shop-card-skeleton span,
.shop-card-skeleton strong,
.shop-card-skeleton em {
    display: block;
    background: rgba(21, 19, 15, 0.14);
}

.shop-card-skeleton span {
    height: 72%;
}

.shop-card-skeleton strong {
    width: 70%;
    height: 22px;
    margin-top: 18px;
}

.shop-card-skeleton em {
    width: 48%;
    height: 14px;
    margin-top: 12px;
}

@keyframes shopSkeleton {
    to {
        background-position: -220% 0;
    }
}

.shop-listing-card figure {
    position: relative;
    aspect-ratio: var(--don-product-ratio);
    overflow: hidden;
    margin: 0;
    background: #15130f;
}

.shop-listing-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.86) saturate(0.94);
    transition: transform 0.42s ease, filter 0.42s ease;
}

.shop-listing-card:hover img {
    filter: brightness(1) saturate(1.04);
    transform: scale(1.045);
}

.shop-listing-card figure span {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 10px;
    background: rgba(8, 8, 7, 0.74);
    color: #d6b06a;
    font-family: 'Playfair Display', serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.shop-card-body {
    display: grid;
    gap: 10px;
}

.shop-card-body p {
    margin: 0;
    color: #9b6b4a;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.shop-card-body h3 {
    margin: 0;
    color: #15130f;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 2.3vw, 2.8rem);
    line-height: 0.98;
}

.shop-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 8px;
    border-top: 1px solid rgba(21, 19, 15, 0.12);
}

.shop-card-meta strong {
    display: grid;
    gap: 3px;
    font-size: 1rem;
}

.price-before {
    display: inline-block;
    margin-right: 8px;
    color: rgba(151, 114, 66, 0.72);
    font-size: 0.82em;
    font-weight: 600;
    text-decoration: line-through;
}

.shop-card-meta em {
    color: #9b6b4a;
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.shop-product-card figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: grid;
    gap: 6px;
    padding: 22px;
    color: #f7f0e4;
    background: linear-gradient(180deg, transparent, rgba(8, 8, 7, 0.82));
    transform: translateY(8px);
    transition: transform 0.28s ease;
}

.shop-product-card:hover figcaption,
.shop-product-card:focus-visible figcaption {
    transform: translateY(0);
}

.shop-product-card figcaption span,
.shop-product-card figcaption em {
    color: #d6b06a;
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.shop-product-card figcaption strong {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.25rem, 2vw, 2rem);
    line-height: 1;
}

.product-detail {
    background:
        radial-gradient(circle at 24% 14%, rgba(201, 155, 79, 0.12), transparent 24%),
        linear-gradient(135deg, #0b0b0a 0%, #171511 46%, #080807 100%);
    color: #f7f0e4;
}

.product-luxury {
    padding-top: 74px;
}

.product-luxury-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.98fr);
    min-height: calc(100vh - 74px);
}

.product-luxury-gallery,
.product-luxury-summary {
    padding: clamp(22px, 3vw, 42px);
}

.product-luxury-gallery {
    padding: 0 0 0 50px;
    position: relative;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    align-content: stretch;
    justify-items: stretch;
    gap: 18px;
    border-right: 1px solid rgba(214, 176, 106, 0.24);
    background:
        linear-gradient(180deg, rgba(247, 240, 228, 0.04), rgba(8, 8, 7, 0.08)),
        #11100e;
}

.product-badge {
    position: absolute;
    top: clamp(18px, 2.4vw, 30px);
    left: auto;
    right: clamp(22px, 2.4vw, 36px);
    z-index: 5;
    padding: 10px 16px;
    border: 1px solid #c99b4f;
    background: transparent;
    color: #f7f0e4;
    font-family: 'Playfair Display', serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.product-main-frame {
    position: relative;
    width: 100%;
    aspect-ratio: var(--active-product-ratio, 4 / 3);
    height: auto;
    min-height: 0;
    justify-self: stretch;
    align-self: start;
    overflow: hidden;
    border: 1px solid rgba(214, 176, 106, 0.3);
    background: #090908;
    box-shadow: 0 36px 90px rgba(0, 0, 0, 0.46);
}

.product-main-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.82) saturate(0.9);
    transform: scale(1);
    transition: opacity 0.32s ease, transform 0.48s cubic-bezier(0.19, 1, 0.22, 1), filter 0.32s ease;
}

.product-main-frame img.is-changing {
    opacity: 0;
    transform: scale(1.035);
}

.product-gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(214, 176, 106, 0.46);
    background: rgba(8, 8, 7, 0.58);
    color: #f7f0e4;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    line-height: 0;
    transform: translateY(-50%);
    transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
    backdrop-filter: blur(12px);
}

.product-gallery-arrow:hover {
    border-color: #c99b4f;
    background: #c99b4f;
    color: #11100e;
    transform: translateY(-50%) scale(1.04);
}

.product-gallery-prev {
    left: 18px;
}

.product-gallery-next {
    right: 18px;
}

.product-thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(64px, 1fr));
    gap: 10px;
    width: 100%;
    justify-self: stretch;
    padding: 0;
}

.product-thumbs button {
    aspect-ratio: var(--don-product-ratio);
    padding: 0;
    border: 1px solid rgba(214, 176, 106, 0.22);
    background: #090908;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.product-thumbs button.is-active {
    border-color: #c99b4f;
    box-shadow: 0 0 0 1px rgba(201, 155, 79, 0.32);
}

.product-thumbs button:hover {
    transform: translateY(-2px);
}

.product-thumbs img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.72) saturate(0.88);
    transition: transform 0.28s ease, filter 0.28s ease;
}

.product-thumbs button:hover img,
.product-thumbs button.is-active img {
    filter: brightness(1) saturate(1);
    transform: scale(1.04);
}

.product-luxury-summary {
    display: grid;
    align-content: center;
    max-width: 760px;
}

.product-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 24px;
    color: rgba(247, 240, 228, 0.38);
    font-size: 0.76rem;
}

.product-breadcrumb a,
.product-breadcrumb strong {
    color: inherit;
    font-weight: 400;
    text-decoration: none;
}

.product-luxury-summary h1 {
    margin: 0;
    color: #f7f0e4;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.35rem, 4.15vw, 4.85rem);
    line-height: 0.98;
}

.product-title-line {
    width: 68px;
    height: 2px;
    margin: 20px 0 22px;
    background: #c99b4f;
}

.product-luxury-summary > p {
    max-width: 620px;
    margin: 0 0 28px;
    color: rgba(247, 240, 228, 0.72);
    font-size: clamp(0.95rem, 1vw, 1.04rem);
    line-height: 1.7;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 4px 0 24px;
}

.product-price strong {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    color: #c99b4f;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.55rem, 2.05vw, 2.35rem);
    line-height: 1;
}

.product-price span {
    color: rgba(247, 240, 228, 0.58);
    font-size: 0.92rem;
}

.product-quantity {
    display: inline-grid;
    grid-template-columns: 44px 58px 44px;
    width: max-content;
    margin-bottom: 20px;
    border: 1px solid rgba(247, 240, 228, 0.12);
}

.product-quantity button,
.product-quantity output {
    display: grid;
    place-items: center;
    min-height: 44px;
    border: 0;
    border-right: 1px solid rgba(247, 240, 228, 0.12);
    background: rgba(247, 240, 228, 0.02);
    color: #f7f0e4;
    font: inherit;
}

.product-quantity button {
    cursor: pointer;
}

.product-quantity button:last-child {
    border-right: 0;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0 34px;
}

.product-meta span {
    padding: 9px 12px;
    border: 1px solid rgba(214, 176, 106, 0.24);
    color: #d6b06a;
    font-family: 'Playfair Display', serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-actions {
    display: grid;
    gap: 12px;
    max-width: 420px;
    margin-top: 4px;
}

.product-actions .front-btn {
    width: 100%;
    min-height: 56px;
}

.product-perks {
    display: grid;
    gap: 16px;
    margin-top: 30px;
    color: rgba(247, 240, 228, 0.76);
    font-size: 0.94rem;
}

.product-perks span {
    display: flex;
    align-items: center;
    gap: 14px;
}

.product-perks i {
    width: 22px;
    color: #c99b4f;
    font-size: 1.2rem;
    text-align: center;
}

.product-feature-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: clamp(28px, 4vw, 58px);
    gap: clamp(18px, 3vw, 44px);
}

.product-feature-strip article {
    min-height: 188px;
    padding: clamp(22px, 3vw, 38px);
    text-align: center;
}

.product-feature-strip article:last-child {
    border: 0;
}

.product-feature-strip i {
    color: #c99b4f;
    font-size: 1.8rem;
}

.product-feature-strip h2,
.product-info-grid h2,
.product-inspiration h2,
.product-final-cta h2 {
    margin: 14px 0 10px;
    color: #f7f0e4;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.18rem, 1.55vw, 1.72rem);
    line-height: 1.12;
}

.product-feature-strip p {
    margin: 0;
    color: rgba(247, 240, 228, 0.62);
    font-size: 0.94rem;
    line-height: 1.58;
}

.product-info-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
    gap: clamp(34px, 6vw, 100px);
    padding: clamp(34px, 5vw, 78px) clamp(28px, 4vw, 58px);
}

.product-description p:not(.front-eyebrow) {
    max-width: 660px;
    color: rgba(247, 240, 228, 0.68);
    font-size: 0.96rem;
    line-height: 1.72;
}

.product-spec dl {
    margin: 0;
    border: 1px solid rgba(214, 176, 106, 0.18);
}

.product-spec div {
    display: grid;
    grid-template-columns: minmax(120px, 0.38fr) 1fr;
    border-bottom: 1px solid rgba(214, 176, 106, 0.14);
}

.product-spec div:last-child {
    border-bottom: 0;
}

.product-spec dt,
.product-spec dd {
    margin: 0;
    padding: 11px 16px;
    font-size: 0.9rem;
    line-height: 1.45;
}

.product-spec dt {
    color: rgba(247, 240, 228, 0.66);
    border-right: 1px solid rgba(214, 176, 106, 0.14);
}

.product-spec dd {
    color: #f7f0e4;
}

.product-inspiration {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
    border-top: 1px solid rgba(214, 176, 106, 0.2);
    border-bottom: 1px solid rgba(214, 176, 106, 0.2);
}

.product-inspiration img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    filter: brightness(0.72) saturate(0.9);
}

.product-inspiration div {
    display: grid;
    align-content: center;
    padding: clamp(34px, 6vw, 88px);
}

.product-inspiration p:not(.front-eyebrow) {
    max-width: 620px;
    color: rgba(247, 240, 228, 0.68);
    font-size: 0.96rem;
    line-height: 1.72;
}

.product-inspiration .front-btn {
    width: max-content;
    margin-top: 22px;
}

.product-related-section {
    padding: clamp(34px, 5vw, 78px) clamp(28px, 4vw, 58px);
}

.product-related-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.product-related-head h2 {
    max-width: 680px;
    margin: 0;
    color: #f7f0e4;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 4.4rem);
    line-height: 0.96;
}

.product-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 30px);
}

.product-related-grid .shop-listing-card {
    color: #f7f0e4;
}

.product-related-grid .shop-card-body h3 {
    color: #f7f0e4;
}

.product-related-grid .shop-card-meta {
    border-top-color: rgba(247, 240, 228, 0.14);
}

.product-related-empty {
    margin: 0;
    padding: 24px;
    border: 1px solid rgba(214, 176, 106, 0.18);
    color: rgba(247, 240, 228, 0.66);
}

.front-btn.is-disabled,
.front-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    filter: grayscale(0.35);
}

.product-final-cta {
    margin: clamp(24px, 4vw, 58px);
    padding: clamp(36px, 6vw, 82px);
    border: 1px solid rgba(214, 176, 106, 0.34);
    background:
        linear-gradient(135deg, rgba(201, 155, 79, 0.14), transparent),
        #11100e;
    text-align: center;
}

.product-final-cta h2 {
    margin: 0 0 28px;
    font-size: clamp(1.9rem, 3.45vw, 4rem);
}

.front-process {
    padding: clamp(72px, 9vw, 140px) 0;
    background: #181511;
}

.front-process-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.55fr) minmax(0, 1fr);
    gap: clamp(30px, 5vw, 88px);
    align-items: center;
}

.front-process-copy p:not(.front-eyebrow) {
    max-width: 560px;
    margin: 28px 0;
    color: var(--front-muted);
    font-size: 1.08rem;
    line-height: 1.9;
}

.front-process-images {
    display: grid;
    grid-template-columns: 1fr 0.78fr;
    gap: 16px;
    min-height: 610px;
}

.front-process-images img:first-child {
    height: 610px;
}

.front-process-images img:last-child {
    height: 430px;
    align-self: end;
}

.front-gallery {
    background: #0d0d0b;
}

.home-refresh .front-gallery {
    background: #eee8de;
    color: #15130f;
}

.home-refresh .front-gallery .front-eyebrow {
    color: #9b6b4a;
}

.home-refresh .front-gallery .front-section-head h2 {
    color: #15130f;
}

.home-refresh .front-gallery .front-section-head p:not(.front-eyebrow),
.home-refresh .front-gallery-cta p {
    color: rgba(21, 19, 15, 0.72);
}

.realization-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: -18px 0 28px;
    border: 1px solid rgba(214, 176, 106, 0.28);
    background:
        linear-gradient(135deg, rgba(21, 19, 15, 0.95), rgba(8, 8, 7, 0.96)),
        #11100d;
}

.realization-filter {
    position: relative;
    min-height: 48px;
    padding: 12px 22px 15px;
    border: 0;
    border-right: 1px solid rgba(201, 155, 79, 0.58);
    background: transparent;
    color: rgba(247, 240, 228, 0.78);
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: none;
    transition: color 0.22s ease, transform 0.22s ease;
}

.realization-filter:last-child {
    border-right: 0;
}

.realization-filter::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 7px;
    height: 2px;
    background: #c99b4f;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.24s ease;
}

.realization-filter::first-letter {
    color: inherit;
}

.realization-filter.active {
    color: #f0cf88;
}

.realization-filter:hover {
    color: #f0cf88;
    transform: translateY(-1px);
}

.realization-filter.active::after,
.realization-filter:hover::after {
    transform: scaleX(1);
}

.front-masonry figure.is-hidden {
    display: none;
}

.front-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 230px;
    grid-auto-flow: dense;
    gap: 12px;
    transition: gap 0.34s ease;
}

.front-masonry.is-filtering-out {
    gap: 18px;
}

.front-masonry figure {
    position: relative;
    overflow: hidden;
    margin: 0;
    background: #1a1713;
    will-change: opacity, transform;
    transition: opacity 0.26s ease, transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), filter 0.34s ease;
}

.front-masonry.is-filtering-out figure {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
}

.front-masonry.is-filtering-out figure:nth-child(odd) {
    transform: translate(-14px, 28px) scale(0.96);
}

.front-masonry.is-filtering-out figure:nth-child(even) {
    transform: translate(14px, 28px) scale(0.96);
}

.front-masonry.is-filtering-in figure:not(.is-hidden) {
    animation: realizationTileIn 0.52s cubic-bezier(0.18, 0.9, 0.2, 1) both;
}

.front-masonry.is-filtering-in figure:nth-child(2n):not(.is-hidden) {
    animation-delay: 0.04s;
}

.front-masonry.is-filtering-in figure:nth-child(3n):not(.is-hidden) {
    animation-delay: 0.08s;
}

.front-masonry.is-filtering-in figure:nth-child(4n):not(.is-hidden) {
    animation-delay: 0.12s;
}

@keyframes realizationTileIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.96);
    }

    68% {
        opacity: 1;
        transform: translateY(-6px) scale(1.01);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .front-hero-slide,
    .front-hero-media img,
    .front-hero-content,
    .front-hero-progress span,
    .front-masonry,
    .front-masonry figure,
    .front-masonry img,
    .realization-filter {
        animation: none;
        transition: none;
    }

    .front-masonry.is-filtering-out,
    .front-masonry.is-filtering-out figure,
    .front-masonry.is-filtering-out figure:nth-child(odd),
    .front-masonry.is-filtering-out figure:nth-child(even) {
        opacity: 1;
        transform: none;
    }
}

.front-masonry .front-tall {
    grid-row: span 2;
}

.front-masonry .front-wide-tile {
    grid-column: span 2;
}

.front-masonry.is-filtered .front-tall,
.front-masonry.is-filtered .front-wide-tile {
    grid-column: auto;
    grid-row: auto;
}

.front-masonry img {
    display: block;
    filter: brightness(0.82) saturate(0.92);
    transition: transform 0.35s ease, filter 0.35s ease;
}

.front-masonry figure:hover img {
    filter: brightness(1);
    transform: scale(1.04);
}

.front-masonry figcaption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    color: var(--front-ink);
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.15rem, 1.8vw, 1.8rem);
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
}

.realization-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 3vw, 40px);
    margin-top: 34px;
}

.realization-pagination.is-compact {
    justify-content: flex-end;
}

.realization-more,
.realization-all-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 4px 8px;
    border: 0;
    background: transparent;
    color: #15130f;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
}

.realization-more[hidden] {
    display: none;
}

.realization-more::after,
.realization-all-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: #c99b4f;
    transform: scaleX(0.72);
    transform-origin: left;
    transition: transform 0.24s ease, background 0.24s ease;
}

.realization-more:hover::after,
.realization-all-link:hover::after {
    background: #8d642b;
    transform: scaleX(1);
}

.realizations-page-hero {
    padding: clamp(108px, 13vw, 172px) 0 clamp(50px, 7vw, 92px);
    background:
        radial-gradient(circle at 82% 18%, rgba(201, 155, 79, 0.14), transparent 32%),
        linear-gradient(135deg, #0b0a08 0%, #17130f 52%, #0b0a08 100%);
    color: #f7f0e4;
}

.realizations-page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
    align-items: end;
    gap: clamp(28px, 6vw, 96px);
}

.realizations-page-hero-copy h1 {
    max-width: 820px;
    margin: 16px 0 22px;
    color: #f7f0e4;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.9rem, 6.2vw, 6.7rem);
    line-height: 0.92;
}

.realizations-page-hero-copy p:not(.front-eyebrow) {
    max-width: 560px;
    margin: 0;
    color: rgba(247, 240, 228, 0.72);
    font-size: 1rem;
    line-height: 1.8;
}

.realizations-page-hero-media {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #15130f;
}

.realizations-page-hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 155, 79, 0.38);
    pointer-events: none;
}

.realizations-page-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.86) saturate(0.9);
}

.realizations-full-gallery {
    padding-top: clamp(58px, 7vw, 94px);
}

.front-gallery-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid var(--front-line);
}

.front-gallery-cta p {
    max-width: 620px;
    margin: 0;
    color: var(--front-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.front-contact {
    min-height: 76vh;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: clamp(72px, 9vw, 140px) 18px;
    text-align: center;
}

.front-contact-media {
    position: absolute;
    inset: 0;
}

.front-contact-media img {
    filter: brightness(0.44) saturate(0.88);
}

.front-contact::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 7, 0.34);
}

.front-contact-content {
    position: relative;
    z-index: 1;
    max-width: 980px;
}

.front-contact-content p:not(.front-eyebrow) {
    max-width: 620px;
    margin: 24px auto 34px;
    color: var(--front-muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

@media (max-width: 1100px) {
    .front-hero-strip {
        display: none;
    }

    .front-hero-content {
        width: min(100%, 720px);
        max-width: calc(100vw - 36px);
    }

    .front-hero-slide--right,
    .front-hero-slide--center {
        justify-items: start;
        text-align: left;
    }

    .front-hero-slide--right-align .front-hero-content > p:not(.front-eyebrow) {
        margin-left: 0;
    }

    .front-hero-slide--right-align .front-actions {
        justify-content: flex-start;
    }

    .front-hero-slide--right .front-hero-shade,
    .front-hero-slide--center .front-hero-shade {
        background:
            radial-gradient(ellipse at 28% 72%, rgba(8, 8, 7, 0.76) 0%, rgba(8, 8, 7, 0.52) 34%, rgba(8, 8, 7, 0.12) 68%, transparent 100%),
            linear-gradient(180deg, rgba(8, 8, 7, 0.18) 0%, rgba(8, 8, 7, 0.04) 42%, rgba(8, 8, 7, 0.72) 100%);
    }

    .front-hero-slide--center .front-hero-content,
    .front-hero-slide--right .front-hero-content {
        width: min(100%, 720px);
        max-width: calc(100vw - 36px);
    }

    .front-hero-slide--center .front-actions {
        justify-content: flex-start;
    }

    .front-intro-grid,
    .front-section-head,
    .front-process-grid {
        grid-template-columns: 1fr;
    }

    .front-section-head--variant3 {
        max-width: 720px;
        gap: 20px;
        align-items: start;
    }

    .front-section-head--variant3 .front-eyebrow {
        margin-bottom: 0;
    }

    .front-section-head--variant3 h2 {
        max-width: 620px;
    }

    .front-service-grid {
        grid-template-columns: 1fr;
    }

    .front-service-card {
        min-height: 520px;
    }

    .shop-category-copy {
        grid-template-columns: 1fr;
    }

    .shop-hero-grid,
    .shop-store-head {
        grid-template-columns: 1fr;
    }

    .shop-tools {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        flex-basis: 100%;
    }

    .shop-listing-grid,
    .shop-listing-grid[data-columns="3"],
    .shop-listing-grid[data-columns="4"] {
        --shop-columns: 2;
    }

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

    .product-luxury-hero,
    .product-info-grid,
    .product-inspiration {
        grid-template-columns: 1fr;
    }

    .product-luxury-gallery {
        padding-left: 0;
        border-right: 0;
        border-bottom: 0;
    }

    .product-badge {
        right: 18px;
    }

    .product-gallery-prev {
        left: 18px;
    }

    .product-main-frame {
        width: 100%;
        height: auto;
        min-height: 0;
    }

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

    .product-feature-strip article:nth-child(2) {
        border-right: 0;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-copy {
        position: static;
    }

    .product-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .realizations-page-hero-grid {
        grid-template-columns: 1fr;
    }

    .realizations-page-hero-media {
        width: min(100%, 560px);
    }

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

@media (max-width: 768px) {
    .front-hero {
        min-height: 92svh;
    }

    .front-hero-slide {
        min-height: 92svh;
        align-items: end;
        padding: 118px 18px 92px;
    }

    .front-hero-shade {
        background:
            radial-gradient(ellipse at 34% 76%, rgba(8, 8, 7, 0.78) 0%, rgba(8, 8, 7, 0.54) 34%, rgba(8, 8, 7, 0.12) 66%, transparent 100%),
            linear-gradient(180deg, rgba(8, 8, 7, 0.12) 0%, rgba(8, 8, 7, 0.02) 36%, rgba(8, 8, 7, 0.76) 100%);
    }

    .front-hero h1 {
        font-size: clamp(2.15rem, 10.8vw, 3.6rem);
    }

    .front-hero-content {
        width: 100%;
        max-width: calc(100vw - 36px);
    }

    .front-hero-controls {
        left: 50%;
        bottom: 24px;
        width: max-content;
        max-width: calc(100vw - 36px);
        transform: translateX(-50%);
    }

    .front-hero-dots button {
        width: 30px;
    }

    .front-hero-arrow {
        width: 40px;
        height: 40px;
    }

    .front-hero-dots button.is-active {
        width: 46px;
    }

    .front-actions,
    .front-gallery-cta {
        align-items: stretch;
        flex-direction: column;
    }

    .front-btn {
        width: 100%;
    }

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

    .front-signature span:nth-child(2) {
        border-right: 0;
    }

    .front-proof-grid {
        grid-template-columns: 1fr;
        border-left: 0;
    }

    .front-proof article {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--front-line);
    }

    .front-service-card {
        min-height: 420px;
    }

    .shop-product-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 330px;
    }

    .shop-hero {
        min-height: auto;
        padding-top: 116px;
    }

    .shop-hero-copy h1 {
        font-size: clamp(3rem, 14vw, 4.8rem);
    }

    .shop-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .shop-filters,
    .shop-density,
    .shop-tools {
        width: 100%;
    }

    .shop-tools {
        grid-template-columns: 1fr;
    }

    .shop-listing-grid,
    .shop-listing-grid[data-columns="2"],
    .shop-listing-grid[data-columns="3"],
    .shop-listing-grid[data-columns="4"] {
        --shop-columns: 1;
    }

    .product-detail {
        padding-top: 112px;
    }

    .product-luxury {
        padding-top: 74px;
    }

    .product-luxury-hero {
        min-height: auto;
    }

    .product-luxury-gallery,
    .product-luxury-summary,
    .product-info-grid,
    .product-inspiration div {
        padding: 28px 18px;
    }

    .product-luxury-gallery {
        padding: 0;
    }

    .product-badge {
        top: 24px;
        right: 18px;
    }

    .product-gallery-prev {
        left: 18px;
    }

    .product-main-frame {
        width: 100%;
        height: auto;
        min-height: 0;
        margin-top: 0;
    }

    .product-thumbs {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .product-luxury-summary h1 {
        font-size: clamp(2.05rem, 9.6vw, 3.35rem);
    }

    .product-feature-strip {
        grid-template-columns: 1fr;
        margin: 18px;
    }

    .product-feature-strip article,
    .product-feature-strip article:nth-child(2) {
        min-height: auto;
        border: 0;
    }

    .product-feature-strip article:last-child {
        border: 0;
    }

    .product-spec div {
        grid-template-columns: 1fr;
    }

    .product-spec dt {
        border-right: 0;
        border-bottom: 1px solid rgba(214, 176, 106, 0.1);
    }

    .product-inspiration img {
        min-height: 320px;
    }

    .product-inspiration .front-btn {
        width: 100%;
    }

    .product-related-head {
        display: grid;
    }

    .product-related-grid {
        grid-template-columns: 1fr;
    }

    .product-final-cta {
        margin: 18px;
    }

    .product-detail-media {
        min-height: 420px;
    }

    .shop-product-grid figure,
    .shop-product-grid figure:nth-child(7n + 1),
    .shop-product-grid figure:nth-child(9n + 4) {
        grid-column: auto;
        grid-row: auto;
    }

    .front-process-images {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .front-process-images img:first-child,
    .front-process-images img:last-child {
        height: 330px;
    }

    .realization-pagination {
        align-items: flex-start;
        flex-direction: column;
    }

    .realization-pagination.is-compact {
        align-items: flex-start;
    }

    .realizations-page-hero {
        padding-top: 112px;
    }

    .realizations-page-hero-copy h1 {
        font-size: clamp(2.7rem, 14vw, 4.8rem);
    }

    .front-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }

    .front-masonry .front-tall,
    .front-masonry .front-wide-tile {
        grid-column: auto;
        grid-row: auto;
    }

    .front-contact {
        min-height: 620px;
    }
}

@media (max-width: 480px) {
    .front-wide {
        padding: 0 15px;
    }

    .front-signature {
        grid-template-columns: 1fr;
    }

    .front-signature span {
        min-height: 58px;
        border-right: 0;
        border-bottom: 1px solid var(--front-line);
    }

    .front-service-card {
        min-height: 360px;
    }
}

/* Global mega navigation refresh */
.mega-navbar {
    height: 92px;
    background:
        linear-gradient(180deg, rgba(8, 8, 7, 0.96), rgba(8, 8, 7, 0.86)),
        rgba(8, 8, 7, 0.9);
    border-bottom: 1px solid rgba(214, 176, 106, 0.22);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

.mega-nav-container {
    max-width: 1760px;
    padding: 0 clamp(18px, 3.4vw, 64px);
    gap: clamp(18px, 2.2vw, 42px);
}

.mega-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
    color: #f7f0e4;
    font-family: 'Playfair Display', serif;
    text-decoration: none;
    letter-spacing: 0.08em;
    font-size: 1.12rem;
    font-weight: 700;
}

.mega-brand img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: transparent;
    filter: drop-shadow(0 0 12px rgba(214, 176, 106, 0.2));
}

.mega-primary {
    flex: 1;
    justify-content: center;
    gap: clamp(22px, 2.2vw, 42px);
}

.mega-primary .nav-link {
    font-family: 'Playfair Display', serif;
    color: #d6b06a;
    white-space: nowrap;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 15px 0;
}

.mega-primary .nav-link:hover,
.mega-primary .nav-link.active,
.mega-primary .mega-menu-item.is-open > .nav-link {
    color: #f7f0e4;
}

.mega-primary .mega-trigger {
    padding-right: 18px;
}

.mega-trigger::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: translateY(-70%) rotate(45deg);
    opacity: 0.72;
}

.mega-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: max-content;
    min-height: 46px;
    padding: 12px 20px;
    border: 1px solid #f0cf88;
    color: #0a0a0a;
    background: #f0cf88;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-family: 'Playfair Display', serif;
    font-size: 0.78rem;
    font-weight: 700;
    transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.mega-cta:hover {
    border-color: #c99b4f;
    background: #c99b4f;
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(218, 165, 32, 0.2);
}

.mega-menu {
    position: fixed;
    top: 92px;
    left: 0;
    width: 100vw;
    height: 70vh;
    min-height: 460px;
    z-index: 1002;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
}

.mega-menu-item:hover .mega-menu,
.mega-menu-item:focus-within .mega-menu,
.mega-menu-item.is-open .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.mega-menu-panel {
    --mega-panel-x: clamp(28px, 5vw, 84px);
    --mega-panel-y: clamp(34px, 5vw, 66px);
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(260px, 0.8fr) minmax(300px, 0.95fr);
    gap: clamp(24px, 4vw, 70px);
    align-items: start;
    width: 100%;
    min-height: 70vh;
    height: 100%;
    margin: 0;
    padding: var(--mega-panel-y) var(--mega-panel-x);
    background:
        linear-gradient(135deg, rgba(20, 18, 14, 0.98), rgba(8, 8, 7, 0.97)),
        rgba(13, 13, 11, 0.96);
    border-top: 1px solid rgba(214, 176, 106, 0.24);
    border-bottom: 1px solid rgba(214, 176, 106, 0.2);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(22px);
}

.mega-menu-copy span,
.mega-menu-image span {
    display: inline-block;
    color: #c99b4f;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.mega-menu-copy h3 {
    margin: 12px 0 14px;
    color: #f7f0e4;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 2.2vw, 2.6rem);
    line-height: 1.02;
}

.mega-menu-copy p {
    margin: 0;
    color: rgba(247, 240, 228, 0.7);
    line-height: 1.75;
}

.mega-menu-links {
    display: grid;
    align-content: start;
    gap: 4px;
}

.mega-menu-links a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(247, 240, 228, 0.11);
    color: #f7f0e4;
    text-decoration: none;
    font-size: 0.98rem;
    font-weight: 600;
    transition: color 0.22s ease, padding-left 0.22s ease;
}

.mega-menu-links a::before {
    content: '';
    width: 0;
    height: 1px;
    margin-right: 0;
    background: #c99b4f;
    transition: width 0.22s ease, margin-right 0.22s ease;
}

.mega-menu-links a:hover {
    color: #d6b06a;
    padding-left: 4px;
}

.mega-menu-links a:hover::before {
    width: 28px;
    margin-right: 12px;
}

.mega-menu-image {
    position: relative;
    align-self: stretch;
    min-height: 70vh;
    margin: calc(var(--mega-panel-y) * -1) calc(var(--mega-panel-x) * -1) calc(var(--mega-panel-y) * -1) 0;
    overflow: hidden;
    color: #f7f0e4;
    text-decoration: none;
}

.mega-menu-image img {
    width: 100%;
    height: 100%;
    min-height: 70vh;
    object-fit: cover;
    filter: brightness(0.74) saturate(0.92);
    transition: opacity 0.22s ease, transform 0.35s ease, filter 0.35s ease;
}

.mega-menu-image:hover img {
    filter: brightness(0.9) saturate(1);
    transform: scale(1.04);
}

.mega-menu-image span {
    position: absolute;
    left: 20px;
    bottom: 18px;
    color: #fff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.65);
}

.mobile-menu-open {
    overflow: hidden;
}

.mega-mobile-menu .mobile-menu-label {
    margin: 22px auto 8px;
    color: #c99b4f;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.mega-mobile-menu .mobile-cta {
    margin-top: 12px;
    border-color: #f0cf88;
    background: #f0cf88;
    color: #050505;
}

.mega-mobile-menu .mobile-accordion {
    width: min(100%, 620px);
    margin: 0 auto;
}

.mega-mobile-menu .mobile-accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 62px;
    padding: 0 0 0 18px;
    border: 0;
    border-left: 1px solid rgba(214, 176, 106, 0.36);
    border-bottom: 1px solid rgba(214, 176, 106, 0.18);
    background: transparent;
    color: #f7f0e4;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.62rem, 7vw, 2.42rem);
    line-height: 1;
    letter-spacing: 0;
    text-align: left;
    cursor: pointer;
}

.mega-mobile-menu .mobile-accordion-trigger i {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-left: 18px;
    color: #f0cf88;
    font-size: 0.78rem;
    border-left: 1px solid rgba(214, 176, 106, 0.26);
    transition: transform 0.28s ease, color 0.28s ease;
}

.mega-mobile-menu .mobile-accordion.is-open .mobile-accordion-trigger i {
    color: #c99b4f;
    transform: rotate(180deg);
}

.mega-mobile-menu .mobile-submenu {
    display: grid;
    grid-template-rows: 0fr;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
    transition: grid-template-rows 0.32s ease;
}

.mega-mobile-menu .mobile-accordion.is-open .mobile-submenu {
    grid-template-rows: 1fr;
}

.mega-mobile-menu .mobile-submenu > li {
    min-height: 0;
    margin: 0;
    overflow: hidden;
}

.mega-mobile-menu .mobile-submenu a {
    width: 100%;
    padding: 14px 18px 14px 34px;
    color: rgba(247, 240, 228, 0.82);
    border: 0;
    border-bottom: 1px solid rgba(214, 176, 106, 0.12);
    background: rgba(255, 255, 255, 0.025);
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.11em;
    text-align: left;
}

.mega-mobile-menu .mobile-submenu a::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    margin: 0 12px 4px 0;
    background: #c99b4f;
}

.service-anchor-section {
    padding: 34px 0;
    background: #0f0f0d;
    border-top: 1px solid rgba(218, 165, 32, 0.14);
    border-bottom: 1px solid rgba(218, 165, 32, 0.14);
}

.service-anchor-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    border: 1px solid rgba(214, 176, 106, 0.28);
    background:
        linear-gradient(135deg, rgba(21, 19, 15, 0.95), rgba(8, 8, 7, 0.96)),
        #11100d;
}

.service-anchor-grid a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 22px 15px;
    border-right: 1px solid rgba(201, 155, 79, 0.58);
    color: rgba(247, 240, 228, 0.78);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-family: 'Playfair Display', serif;
    font-size: 0.8rem;
    font-weight: 700;
    transition: color 0.22s ease, transform 0.22s ease;
}

.service-anchor-grid a:last-child {
    border-right: 0;
}

.service-anchor-grid a::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 7px;
    height: 2px;
    background: #c99b4f;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.24s ease;
}

.service-anchor-grid a:hover {
    color: #f0cf88;
    transform: translateY(-1px);
}

.service-anchor-grid a:hover::after {
    transform: scaleX(1);
}

.mini-cart-link {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(240, 207, 136, 0.58);
    color: #f0cf88;
    text-decoration: none;
    transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.mini-cart-link:hover {
    border-color: #c99b4f;
    background: #c99b4f;
    color: #11100e;
    transform: translateY(-2px);
}

.mini-cart-link span {
    position: absolute;
    top: -8px;
    right: -8px;
    display: grid;
    place-items: center;
    min-width: 21px;
    height: 21px;
    padding: 0 6px;
    background: #f0cf88;
    color: #11100e;
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1;
}

.cart-notice {
    position: fixed;
    right: clamp(18px, 3vw, 42px);
    bottom: 28px;
    z-index: 3000;
    max-width: min(360px, calc(100vw - 36px));
    padding: 14px 18px;
    border: 1px solid rgba(240, 207, 136, 0.62);
    background: rgba(12, 11, 9, 0.92);
    color: #f7f0e4;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    backdrop-filter: blur(14px);
}

.cart-notice.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.checkout-page {
    min-height: 100vh;
    padding-top: 92px;
    background:
        radial-gradient(circle at 88% 12%, rgba(201, 155, 79, 0.14), transparent 34%),
        #0f0f0d;
    color: #f7f0e4;
}

.checkout-hero {
    padding: clamp(62px, 8vw, 128px) 0 clamp(36px, 5vw, 72px);
    border-bottom: 1px solid rgba(240, 207, 136, 0.12);
}

.checkout-hero-grid,
.thank-you-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.38fr);
    gap: clamp(30px, 6vw, 96px);
    align-items: end;
}

.checkout-hero h1,
.thank-you-hero h1 {
    max-width: 760px;
    margin: 0;
    color: #f7f0e4;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 5.4vw, 6.8rem);
    line-height: 0.94;
}

.checkout-hero p:not(.front-eyebrow),
.thank-you-hero p:not(.front-eyebrow) {
    max-width: 620px;
    margin: 26px 0 0;
    color: rgba(247, 240, 228, 0.68);
    line-height: 1.75;
}

.checkout-steps {
    display: grid;
    gap: 10px;
}

.checkout-steps span {
    padding: 12px 15px;
    border: 1px solid rgba(240, 207, 136, 0.22);
    color: rgba(247, 240, 228, 0.58);
    font-family: 'Playfair Display', serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.checkout-steps span.is-active {
    border-color: #f0cf88;
    background: #f0cf88;
    color: #11100e;
}

.checkout-body {
    padding: clamp(34px, 5vw, 78px) 0 clamp(72px, 9vw, 128px);
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: clamp(28px, 4vw, 58px);
    align-items: start;
}

.cart-list-panel,
.checkout-form,
.summary-panel,
.checkout-summary {
    border: 1px solid rgba(240, 207, 136, 0.14);
    background: rgba(247, 240, 228, 0.025);
}

.cart-list-panel,
.checkout-form,
.summary-panel {
    padding: clamp(22px, 3vw, 40px);
}

.checkout-summary {
    position: sticky;
    top: 118px;
    padding: clamp(22px, 3vw, 34px);
}

.checkout-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.checkout-section-head h2 {
    margin: 0;
    color: #f7f0e4;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.8vw, 3.2rem);
    line-height: 1;
}

.cart-items {
    display: grid;
    gap: 14px;
}

.cart-item {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr) auto auto;
    gap: 18px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(240, 207, 136, 0.12);
}

.cart-item img,
.checkout-mini-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #15130f;
}

.cart-item-copy span,
.checkout-mini-item span {
    color: #c99b4f;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.cart-item-copy h3 {
    margin: 6px 0;
    color: #f7f0e4;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 2vw, 2rem);
    line-height: 1.05;
}

.cart-item-copy p,
.checkout-mini-item em {
    margin: 0;
    color: rgba(247, 240, 228, 0.64);
    font-style: normal;
}

.cart-item-controls {
    display: grid;
    grid-template-columns: 38px 42px 38px;
    border: 1px solid rgba(240, 207, 136, 0.18);
}

.cart-item-controls button,
.cart-remove {
    min-height: 38px;
    border: 0;
    background: transparent;
    color: #f7f0e4;
    cursor: pointer;
    font: inherit;
}

.cart-item-controls strong {
    display: grid;
    place-items: center;
    border-inline: 1px solid rgba(240, 207, 136, 0.18);
}

.cart-remove {
    color: #c99b4f;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cart-empty {
    display: grid;
    justify-items: start;
    gap: 18px;
    padding: 34px 0 4px;
    color: rgba(247, 240, 228, 0.68);
}

.cart-empty[hidden] {
    display: none;
}

.checkout-summary dl,
.product-spec dl[data-summary-client] {
    display: grid;
    gap: 0;
    margin: 0 0 24px;
}

.checkout-summary dl div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(240, 207, 136, 0.12);
}

.checkout-summary dt {
    color: rgba(247, 240, 228, 0.58);
}

.checkout-summary dd {
    margin: 0;
    color: #f7f0e4;
    text-align: right;
}

.checkout-summary dd small {
    display: block;
    margin-top: 4px;
    color: rgba(240, 207, 136, 0.78);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.checkout-summary p {
    color: rgba(247, 240, 228, 0.64);
    line-height: 1.65;
}

.checkout-summary .front-btn,
.checkout-actions .front-btn,
.product-actions .front-btn,
.product-final-cta .front-btn {
    border-radius: 0;
    cursor: pointer;
}

.front-btn.is-disabled {
    opacity: 0.42;
    pointer-events: none;
}

.checkout-text-link {
    display: inline-flex;
    margin-top: 18px;
    color: #f0cf88;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
}

.checkout-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.checkout-form label,
.checkout-note {
    display: grid;
    gap: 8px;
}

.checkout-form label span,
.checkout-note span {
    color: rgba(247, 240, 228, 0.68);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.checkout-form input,
.checkout-form textarea {
    width: 100%;
    border: 1px solid rgba(240, 207, 136, 0.18);
    background: rgba(8, 8, 7, 0.34);
    color: #f7f0e4;
    font: inherit;
    padding: 13px 14px;
    outline: 0;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
    border-color: #f0cf88;
}

.checkout-delivery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0;
}

.checkout-delivery .front-eyebrow {
    grid-column: 1 / -1;
    margin-bottom: 0;
}

.checkout-delivery label {
    padding: 14px;
    border: 1px solid rgba(240, 207, 136, 0.16);
    cursor: pointer;
}

.checkout-delivery input {
    width: auto;
    margin: 0;
    accent-color: #c99b4f;
}

.checkout-note {
    margin-top: 6px;
}

.checkout-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.checkout-mini-list {
    display: grid;
    gap: 12px;
}

.checkout-mini-item {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.checkout-mini-item strong {
    display: block;
    margin: 3px 0;
    color: #f7f0e4;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    line-height: 1.1;
}

.checkout-mini-list.is-large {
    gap: 16px;
}

.checkout-mini-list.is-large .checkout-mini-item {
    grid-template-columns: 112px minmax(0, 1fr);
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(240, 207, 136, 0.12);
}

.summary-total {
    display: grid;
    gap: 6px;
    margin: 20px 0;
}

.summary-total span,
.order-number span {
    color: rgba(247, 240, 228, 0.58);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.summary-total strong,
.order-number strong {
    color: #f0cf88;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.45rem, 2.3vw, 2.5rem);
}

.thank-you-hero {
    min-height: calc(100vh - 92px);
    display: grid;
    align-items: center;
    padding: clamp(76px, 10vw, 150px) 0;
}

.thank-you-grid {
    align-items: center;
}

.thank-you-grid figure {
    margin: 0;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.thank-you-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.82) saturate(0.9);
}

.order-number {
    display: grid;
    gap: 8px;
    margin: 30px 0 0;
}

/* Light checkout */
.checkout-page {
    background:
        linear-gradient(135deg, rgba(240, 207, 136, 0.22), transparent 34%),
        linear-gradient(180deg, #f6efe4 0%, #fbf8f1 46%, #f1eadf 100%);
    color: #17140f;
}

.checkout-hero {
    border-bottom: 1px solid rgba(17, 16, 14, 0.1);
}

.checkout-hero h1,
.thank-you-hero h1,
.checkout-section-head h2,
.cart-item-copy h3,
.checkout-mini-item strong {
    color: #17140f;
}

.checkout-hero p:not(.front-eyebrow),
.thank-you-hero p:not(.front-eyebrow),
.cart-item-copy p,
.checkout-mini-item em,
.checkout-summary p,
.cart-empty {
    color: rgba(23, 20, 15, 0.68);
}

.checkout-page .front-eyebrow,
.cart-item-copy span,
.checkout-mini-item span,
.checkout-text-link {
    color: #a97725;
}

.cart-list-panel,
.checkout-form,
.summary-panel,
.checkout-summary {
    border: 1px solid rgba(23, 20, 15, 0.12);
    background: rgba(255, 252, 246, 0.86);
    box-shadow: 0 22px 70px rgba(23, 20, 15, 0.08);
}

.checkout-summary {
    background: #fffaf2;
}

.cart-item {
    border: 1px solid rgba(23, 20, 15, 0.1);
    background: #fffdf8;
}

.cart-item img,
.checkout-mini-item img {
    background: #e9ded0;
}

.checkout-steps span {
    border-color: rgba(23, 20, 15, 0.16);
    color: rgba(23, 20, 15, 0.58);
    background: rgba(255, 252, 246, 0.7);
}

.checkout-steps span.is-active {
    border-color: #d6a24a;
    background: #f0cf88;
    color: #17140f;
}

.cart-item-controls {
    border-color: rgba(23, 20, 15, 0.16);
    background: #f7efe4;
}

.cart-item-controls button,
.cart-remove {
    color: #17140f;
}

.cart-item-controls button:hover,
.cart-remove:hover {
    color: #a97725;
}

.cart-item-controls strong {
    border-inline-color: rgba(23, 20, 15, 0.14);
    color: #17140f;
}

.checkout-summary dl div,
.checkout-mini-list.is-large .checkout-mini-item {
    border-bottom-color: rgba(23, 20, 15, 0.1);
}

.checkout-summary dt,
.summary-total span,
.order-number span {
    color: rgba(23, 20, 15, 0.56);
}

.checkout-summary dd {
    color: #17140f;
}

.summary-total strong,
.order-number strong {
    color: #a97725;
}

.checkout-form label span,
.checkout-note span {
    color: rgba(23, 20, 15, 0.62);
}

.checkout-form input,
.checkout-form textarea {
    border-color: rgba(23, 20, 15, 0.16);
    background: #fffdf8;
    color: #17140f;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
    border-color: #c99b4f;
    box-shadow: 0 0 0 3px rgba(201, 155, 79, 0.14);
}

.checkout-form input::placeholder,
.checkout-form textarea::placeholder {
    color: rgba(23, 20, 15, 0.44);
}

.checkout-delivery label {
    border-color: rgba(23, 20, 15, 0.14);
    background: #fffdf8;
    color: #17140f;
}

.checkout-delivery label:has(input:checked) {
    border-color: #c99b4f;
    background: #f8df9b;
}

.checkout-page .consent-check span,
.checkout-page .consent-check a {
    color: #17140f;
}

.checkout-page .front-btn-primary {
    border-color: #f0cf88;
    background: #f0cf88;
    color: #17140f;
}

.checkout-page .front-btn-primary:hover {
    border-color: #c99b4f;
    background: #c99b4f;
    color: #17140f;
}

.checkout-page .front-btn-ghost {
    border-color: rgba(23, 20, 15, 0.18);
    background: transparent;
    color: #17140f;
}

.checkout-page .front-btn-ghost:hover {
    border-color: #c99b4f;
    background: #17140f;
    color: #f7f0e4;
}

@media (max-width: 1280px) {
    .mega-menu-panel {
        grid-template-columns: minmax(220px, 0.8fr) minmax(220px, 0.8fr) minmax(260px, 0.9fr);
        gap: 32px;
    }

    .mega-brand span {
        display: none;
    }

    .mega-primary {
        gap: 26px;
    }

    .mega-primary .nav-link {
        font-size: 0.82rem;
        letter-spacing: 0.11em;
    }

    .mega-cta {
        padding: 10px 13px;
        letter-spacing: 0.08em;
    }
}

@media (max-width: 920px) {
    .footer-brand-panel,
    .legal-grid {
        grid-template-columns: 1fr;
    }

    .site-footer {
        padding: 22px 0 14px;
    }

    .footer-shell {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer-brand-panel {
        align-items: start;
        max-width: none;
        padding-bottom: 16px;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 22px;
    }

    .site-footer .footer-logo,
    .footer-brand-panel h2,
    .footer-brand-panel p:last-child {
        grid-column: 1;
    }

    .site-footer .footer-logo {
        grid-row: auto;
    }

    .footer-brand-panel p:last-child {
        display: none;
    }

    .site-footer .footer-bottom {
        flex-direction: column;
        gap: 6px;
    }

    .legal-note {
        position: static;
    }

    .legal-page {
        padding-top: 78px;
    }

    .mega-menu {
        display: none;
    }

    .mega-navbar {
        height: 78px;
    }

    .mega-nav-container {
        justify-content: space-between;
    }

    .mega-brand span {
        display: inline;
    }

    .mega-primary,
    .mega-cta {
        display: none;
    }

    .mini-cart-link {
        width: 42px;
        height: 42px;
    }

    .mega-navbar .mobile-menu-toggle {
        display: flex;
        position: relative;
        z-index: 1004;
        width: 48px;
        height: 48px;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(214, 176, 106, 0.38);
        background: rgba(255, 255, 255, 0.03);
    }

    .mega-navbar .mobile-menu-toggle span {
        position: absolute;
        width: 21px;
        left: 13px;
        background: #f0cf88;
        transform-origin: center;
    }

    .mega-navbar .mobile-menu-toggle span:nth-child(1) {
        top: 15px;
    }

    .mega-navbar .mobile-menu-toggle span:nth-child(2) {
        top: 23px;
    }

    .mega-navbar .mobile-menu-toggle span:nth-child(3) {
        top: 31px;
    }

    .mega-navbar .mobile-menu-toggle.active span:nth-child(1) {
        top: 23px;
        transform: rotate(45deg);
    }

    .mega-navbar .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .mega-navbar .mobile-menu-toggle.active span:nth-child(3) {
        top: 23px;
        transform: rotate(-45deg);
    }

    .mega-brand img {
        width: 50px;
        height: 50px;
    }

    .mega-mobile-menu {
        left: 0;
        top: 78px;
        height: calc(100vh - 78px);
        padding: clamp(22px, 5vw, 48px) clamp(18px, 6vw, 56px) 42px;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px);
        background:
            linear-gradient(120deg, rgba(8, 8, 7, 0.98) 0%, rgba(18, 15, 10, 0.98) 56%, rgba(8, 8, 7, 0.96) 100%),
            radial-gradient(circle at 86% 12%, rgba(240, 207, 136, 0.16), transparent 30%);
        border-top: 1px solid rgba(214, 176, 106, 0.28);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
        transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
    }

    .mega-mobile-menu.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .mega-mobile-menu ul {
        width: min(100%, 620px);
        margin: 0 auto;
        padding: 0 0 42px;
        text-align: left;
    }

    .mega-mobile-menu li {
        margin: 0;
    }

    .mega-mobile-menu a {
        width: min(100%, 620px);
        display: flex;
        align-items: center;
        min-height: 56px;
        padding: 0 18px;
        border: 0;
        border-left: 1px solid rgba(214, 176, 106, 0.22);
        border-bottom: 1px solid rgba(214, 176, 106, 0.14);
        background: transparent;
        color: rgba(247, 240, 228, 0.9);
        font-family: 'Playfair Display', serif;
        font-size: clamp(1.35rem, 5vw, 2.08rem);
        font-weight: 700;
        letter-spacing: 0;
        text-align: left;
    }

    .mega-mobile-menu a:hover,
    .mega-mobile-menu a.active {
        color: #f0cf88;
        border-color: rgba(214, 176, 106, 0.4);
        background: rgba(214, 176, 106, 0.08);
        text-shadow: none;
    }

    .mega-mobile-menu .mobile-cta {
        justify-content: center;
        min-height: 52px;
        margin: 24px auto 0;
        border: 1px solid #f0cf88;
        background: #f0cf88;
        color: #080807;
        font-family: 'Playfair Display', serif;
        font-size: 0.78rem;
        letter-spacing: 0.14em;
    }

    .mega-mobile-menu .mobile-accordion {
        width: min(100%, 620px);
        margin: 0 auto;
    }

    .mega-mobile-menu .mobile-submenu {
        width: 100%;
        padding: 0;
    }

    .mega-mobile-menu .mobile-submenu a {
        width: 100%;
        min-height: 46px;
        padding: 13px 18px 13px 34px;
        border-left: 1px solid rgba(214, 176, 106, 0.18);
        border-bottom: 1px solid rgba(214, 176, 106, 0.1);
        background: rgba(255, 255, 255, 0.025);
        color: rgba(247, 240, 228, 0.78);
        font-family: 'Poppins', sans-serif;
        font-size: 0.78rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    .checkout-page {
        padding-top: 78px;
    }

    .checkout-hero-grid,
    .thank-you-grid,
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        position: static;
    }

    .cart-item {
        grid-template-columns: 92px minmax(0, 1fr);
    }

    .cart-item-controls,
    .cart-remove {
        grid-column: 2;
        justify-self: start;
    }

    .checkout-fields,
    .checkout-delivery {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .mega-navbar {
        height: 70px;
    }

    .mega-brand img {
        width: 44px;
        height: 44px;
    }

    .mega-brand span {
        font-size: 0.72rem;
    }

    .mega-mobile-menu {
        top: 70px;
        height: calc(100vh - 70px);
    }

    .checkout-page {
        padding-top: 70px;
    }

    .checkout-hero h1,
    .thank-you-hero h1 {
        font-size: clamp(2.2rem, 12vw, 3.5rem);
    }

    .checkout-steps {
        grid-template-columns: 1fr;
    }

    .cart-list-panel,
    .checkout-form,
    .summary-panel,
    .checkout-summary {
        padding: 18px;
    }

    .cart-item {
        grid-template-columns: 1fr;
    }

    .cart-item img {
        width: 100%;
    }

    .cart-item-controls,
    .cart-remove {
        grid-column: auto;
    }

    .checkout-actions .front-btn {
        width: 100%;
    }
}

/* Offer detail pages */
.offer-detail-page {
    --offer-bg: #0b0a08;
    --offer-panel: #12100d;
    --offer-line: rgba(214, 176, 106, 0.2);
    --offer-gold: #f0cf88;
    --offer-gold-dark: #c99b4f;
    background: var(--offer-bg);
    color: #f7f0e4;
}

.offer-detail-page .front-eyebrow {
    color: var(--offer-gold-dark);
}

.offer-detail-page .front-btn-primary {
    border-color: #f0cf88;
    background: #f0cf88;
    color: #15130f;
}

.offer-detail-page .front-btn-primary:hover {
    border-color: #c99b4f;
    background: #c99b4f;
    color: #15130f;
}

.offer-detail-page .front-btn-ghost {
    border-color: rgba(240, 207, 136, 0.78);
    color: #f7f0e4;
}

.offer-detail-page .front-btn-ghost:hover {
    border-color: #f0cf88;
    background: #f0cf88;
    color: #15130f;
}

.offer-detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
    min-height: 100vh;
    padding-top: 92px;
    background:
        radial-gradient(circle at 10% 18%, rgba(214, 176, 106, 0.1), transparent 28%),
        linear-gradient(135deg, #0b0a08 0%, #11100d 48%, #090806 100%);
}

.offer-detail-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: clamp(84px, 9vw, 150px) clamp(22px, 4vw, 72px);
}

.offer-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: clamp(34px, 5vw, 72px);
    color: rgba(247, 240, 228, 0.52);
    font-size: 0.78rem;
}

.offer-breadcrumb a,
.offer-breadcrumb strong {
    color: inherit;
    text-decoration: none;
    font-weight: 500;
}

.offer-breadcrumb a:hover {
    color: var(--offer-gold);
}

.offer-detail-copy h1 {
    max-width: min(100%, 940px);
    margin: 14px 0 22px;
    color: #fffaf0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5.2vw, 6.4rem);
    line-height: 0.96;
    font-weight: 700;
    overflow-wrap: normal;
}

.offer-detail-copy > p:not(.front-eyebrow) {
    max-width: 650px;
    margin: 0 0 34px;
    color: rgba(247, 240, 228, 0.74);
    font-size: clamp(1rem, 1.25vw, 1.22rem);
    line-height: 1.85;
}

.offer-detail-visual {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    border-left: 1px solid var(--offer-line);
}

.offer-detail-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(11, 10, 8, 0.35), transparent 45%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.48));
    pointer-events: none;
}

.offer-detail-visual img {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    object-fit: cover;
    transform: scale(1.01);
}

.offer-detail-visual span {
    position: absolute;
    left: clamp(20px, 3vw, 48px);
    bottom: clamp(20px, 3vw, 44px);
    z-index: 1;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 2vw, 2rem);
    text-shadow: 0 10px 34px rgba(0, 0, 0, 0.7);
}

.offer-detail-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: clamp(32px, 6vw, 92px);
    padding: clamp(72px, 9vw, 132px) clamp(20px, 5vw, 86px);
    background:
        linear-gradient(135deg, rgba(214, 176, 106, 0.12), transparent 34%),
        #f4efe6;
    color: #16130f;
    border-top: 1px solid rgba(214, 176, 106, 0.18);
}

.offer-detail-text h2,
.offer-detail-band h2,
.offer-section-heading h2 {
    margin: 10px 0 22px;
    color: #fffaf0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 4.5rem);
    line-height: 1;
}

.offer-detail-intro .front-eyebrow,
.offer-detail-process .front-eyebrow {
    color: #a57728;
}

.offer-detail-intro .offer-detail-text h2,
.offer-detail-process .offer-section-heading h2 {
    color: #15130f;
}

.offer-detail-text p:not(.front-eyebrow) {
    max-width: 760px;
    color: rgba(21, 19, 15, 0.72);
    font-size: 1rem;
    line-height: 1.9;
}

.offer-detail-points {
    display: grid;
    align-content: center;
    gap: 14px;
}

.offer-detail-points article,
.offer-process-grid article {
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(21, 19, 15, 0.12);
    padding: clamp(20px, 2.4vw, 34px);
    box-shadow: 0 22px 54px rgba(21, 19, 15, 0.06);
}

.offer-detail-points span,
.offer-process-grid span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--offer-gold-dark);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
}

.offer-detail-points p,
.offer-process-grid p {
    margin: 0;
    color: rgba(21, 19, 15, 0.66);
    line-height: 1.75;
}

.offer-detail-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: clamp(46px, 6vw, 86px) clamp(20px, 5vw, 86px);
    background:
        linear-gradient(90deg, rgba(214, 176, 106, 0.12), rgba(214, 176, 106, 0.02)),
        #12100d;
}

.offer-detail-band h2 {
    max-width: 920px;
    margin-bottom: 0;
    font-size: clamp(2rem, 3.8vw, 4rem);
}

.offer-detail-band--centered {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: clamp(24px, 3vw, 38px);
    min-height: clamp(320px, 38vw, 470px);
}

.offer-detail-band--centered > div {
    display: grid;
    justify-items: center;
}

.offer-detail-band--centered h2 {
    max-width: 1040px;
}

.offer-detail-actions {
    display: grid;
    width: min(100%, 300px);
    gap: 12px;
    justify-items: stretch;
}

.offer-detail-actions .front-btn {
    width: 100%;
    justify-content: center;
}

.offer-detail-gallery,
.offer-detail-process,
.offer-more-section {
    padding: clamp(70px, 8vw, 128px) clamp(20px, 5vw, 86px);
}

.offer-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: clamp(30px, 5vw, 64px);
}

.offer-section-heading h2 {
    max-width: 820px;
    margin-bottom: 0;
}

.offer-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: clamp(220px, 22vw, 380px);
    gap: clamp(10px, 1.2vw, 18px);
}

.offer-gallery-grid figure {
    position: relative;
    min-height: 0;
    overflow: hidden;
    background: #15120e;
}

.offer-gallery-grid figure.is-large {
    grid-column: span 2;
    grid-row: span 2;
}

.offer-gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.92) contrast(1.02);
    transition: transform 0.45s ease, filter 0.45s ease;
}

.offer-gallery-grid figure:hover img {
    filter: saturate(1.04) contrast(1.04);
    transform: scale(1.04);
}

.offer-detail-process {
    background:
        linear-gradient(180deg, rgba(244, 239, 230, 0.96), rgba(236, 226, 211, 0.98)),
        #f4efe6;
    color: #15130f;
}

.offer-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(21, 19, 15, 0.1);
    border-left: 1px solid rgba(21, 19, 15, 0.1);
}

.offer-process-grid article {
    border-top: 0;
    border-left: 0;
}

.offer-process-grid h3 {
    margin: 0 0 12px;
    color: #15130f;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.05;
}

.offer-more-links {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.offer-more-links a {
    display: flex;
    align-items: center;
    min-height: 74px;
    padding: 16px 18px;
    border: 1px solid rgba(214, 176, 106, 0.2);
    color: #f7f0e4;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.15;
    transition: background 0.24s ease, color 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.offer-more-links a:hover,
.offer-more-links a.is-active {
    border-color: var(--offer-gold);
    background: var(--offer-gold);
    color: #090806;
    transform: translateY(-2px);
}

@media (max-width: 1100px) {
    .offer-detail-hero,
    .offer-detail-intro {
        grid-template-columns: 1fr;
    }

    .offer-detail-visual {
        min-height: 58vh;
        border-left: 0;
    }

    .offer-detail-visual img {
        min-height: 58vh;
    }

    .offer-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .offer-process-grid,
    .offer-more-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .offer-detail-hero {
        min-height: auto;
        padding-top: 72px;
    }

    .offer-detail-copy {
        padding: 48px 18px 36px;
    }

    .offer-detail-copy h1 {
        font-size: clamp(2.8rem, 15vw, 4.8rem);
    }

    .offer-detail-visual,
    .offer-detail-visual img {
        min-height: 420px;
    }

    .offer-detail-intro,
    .offer-detail-band,
    .offer-detail-gallery,
    .offer-detail-process,
    .offer-more-section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .offer-detail-band,
    .offer-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .offer-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 340px;
    }

    .offer-gallery-grid figure.is-large {
        grid-column: auto;
        grid-row: auto;
    }

    .offer-process-grid,
    .offer-more-links {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 721px) and (max-width: 1100px) {
    .offer-detail-hero {
        grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.74fr);
        min-height: min(760px, 100vh);
        padding-top: 82px;
    }

    .offer-detail-copy {
        padding: clamp(48px, 6vw, 76px) clamp(22px, 3.6vw, 44px);
    }

    .offer-breadcrumb {
        margin-bottom: clamp(22px, 3vw, 34px);
        font-size: 0.72rem;
    }

    .offer-detail-copy h1 {
        max-width: 100%;
        font-size: clamp(2.85rem, 5.1vw, 4.9rem);
        line-height: 0.96;
    }

    .offer-detail-copy > p:not(.front-eyebrow) {
        max-width: 560px;
        margin-bottom: 28px;
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .offer-detail-visual {
        min-height: calc(100vh - 82px);
        border-left: 1px solid var(--offer-line);
    }

    .offer-detail-visual img {
        min-height: calc(100vh - 82px);
    }

    .offer-detail-intro {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 0.86fr);
        gap: clamp(24px, 4vw, 48px);
        padding: clamp(58px, 7vw, 88px) clamp(24px, 4vw, 52px);
    }

    .offer-detail-text h2,
    .offer-detail-band h2,
    .offer-section-heading h2 {
        font-size: clamp(1.9rem, 3.5vw, 3.25rem);
        line-height: 1.04;
    }

    .offer-detail-band {
        padding: clamp(62px, 7vw, 92px) clamp(24px, 4vw, 52px);
    }

    .offer-detail-band--centered {
        min-height: clamp(300px, 32vw, 380px);
    }

    .offer-detail-gallery,
    .offer-detail-process,
    .offer-more-section {
        padding: clamp(58px, 7vw, 92px) clamp(24px, 4vw, 52px);
    }

    .offer-process-grid,
    .offer-more-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .realizations-page-hero-grid {
        grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.72fr);
        align-items: center;
        gap: clamp(26px, 4vw, 58px);
    }

    .realizations-page-hero-copy h1 {
        max-width: 620px;
        font-size: clamp(3rem, 5.4vw, 5.4rem);
        line-height: 0.94;
    }

    .realizations-page-hero-media {
        width: 100%;
    }
}

/* Editorial subpages: about, contact, training */
.editorial-page {
    background: #0b0a08;
    color: #f7f0e4;
    padding-top: 74px;
    overflow: hidden;
}

.editorial-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    min-height: min(660px, calc(100vh - 74px));
    border-bottom: 1px solid rgba(201, 155, 79, 0.18);
}

.editorial-hero > * {
    min-width: 0;
}

.editorial-hero-copy {
    display: grid;
    align-content: center;
    gap: 20px;
    padding: clamp(42px, 7vw, 112px) clamp(22px, 6vw, 92px);
    background:
        radial-gradient(circle at 18% 24%, rgba(201, 155, 79, 0.16), transparent 30%),
        linear-gradient(135deg, #0b0a08 0%, #17130d 100%);
}

.editorial-hero-copy h1,
.editorial-copy h2,
.editorial-process h2,
.editorial-final-signup h2 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    color: #f7f0e4;
    line-height: 0.98;
    letter-spacing: 0;
}

.editorial-hero-copy h1 {
    max-width: 720px;
    font-size: clamp(2.6rem, 4.35vw, 5rem);
    line-height: 1.02;
}

.editorial-hero-copy p:not(.front-eyebrow),
.editorial-copy p,
.editorial-process p,
.editorial-final-signup p {
    max-width: 680px;
    color: rgba(247, 240, 228, 0.72);
    font-size: clamp(0.96rem, 1.15vw, 1.08rem);
    line-height: 1.68;
}

.editorial-hero-media {
    height: min(660px, calc(100vh - 74px));
    min-height: 0;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
    background: #11100e;
}

.editorial-hero-media img,
.editorial-photo-strip img,
.editorial-square-grid img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.editorial-band {
    padding: clamp(54px, 8vw, 112px) clamp(18px, 5vw, 72px);
    background: #0b0a08;
}

.editorial-band--light {
    background: #f3eee4;
    color: #11100e;
}

.editorial-band--light .front-eyebrow {
    color: #b9873d;
}

.editorial-band--light h2,
.editorial-band--light strong {
    color: #11100e;
}

.editorial-band--light p,
.editorial-band--light dd {
    color: rgba(17, 16, 14, 0.72);
}

.editorial-split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: clamp(34px, 6vw, 92px);
    align-items: center;
}

.editorial-copy h2,
.editorial-process h2,
.editorial-final-signup h2 {
    max-width: 760px;
    font-size: clamp(2.05rem, 3.8vw, 4.8rem);
}

.editorial-square-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 26px);
}

.editorial-square-grid img {
    aspect-ratio: 1;
}

.editorial-process {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
    gap: clamp(34px, 7vw, 104px);
    align-items: start;
}

.editorial-process ol {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(201, 155, 79, 0.22);
}

.editorial-process li {
    display: grid;
    grid-template-columns: 96px minmax(0, 220px) minmax(0, 1fr);
    gap: 24px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(201, 155, 79, 0.22);
}

.editorial-process span,
.training-detail-grid span,
.contact-clean-info dt {
    color: #c99b4f;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.editorial-process strong {
    color: #f7f0e4;
    font-size: clamp(1rem, 1.25vw, 1.22rem);
}

.editorial-process li p {
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.55;
}

.editorial-photo-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    background: #050504;
}

.editorial-photo-strip--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.editorial-photo-strip img {
    aspect-ratio: 1;
    filter: brightness(0.9) saturate(0.96);
}

.contact-clean-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: clamp(34px, 7vw, 96px);
    align-items: start;
}

.contact-clean-form,
.contact-clean-info {
    display: grid;
    gap: 16px;
}

.contact-clean-form h2,
.contact-clean-info h2 {
    margin: 0 0 10px;
    color: #11100e;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 4.4rem);
    line-height: 1;
}

.contact-clean-form label {
    display: grid;
    gap: 8px;
    color: rgba(17, 16, 14, 0.72);
    font-size: 0.86rem;
    font-weight: 600;
}

.contact-clean-form input,
.contact-clean-form select,
.contact-clean-form textarea {
    width: 100%;
    border: 1px solid rgba(17, 16, 14, 0.16);
    background: rgba(255, 255, 255, 0.72);
    color: #11100e;
    padding: 14px 15px;
    font: inherit;
    outline: none;
}

.contact-clean-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-clean-info dl {
    display: grid;
    gap: 20px;
    margin: 0;
}

.contact-clean-info div {
    display: grid;
    gap: 5px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(17, 16, 14, 0.12);
}

.contact-clean-info dd {
    margin: 0;
    font-size: 1rem;
    line-height: 1.55;
}

.contact-clean-info a {
    color: #11100e;
}

.training-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: rgba(17, 16, 14, 0.12);
}

.training-detail-grid div {
    display: grid;
    gap: 10px;
    align-content: start;
    min-height: 220px;
    padding: clamp(22px, 3vw, 38px);
    background: #f3eee4;
}

.training-detail-grid strong {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.35rem, 2vw, 2.1rem);
    line-height: 1.05;
}

.training-detail-grid p {
    margin: 0;
    line-height: 1.55;
}

.editorial-final-signup {
    display: grid;
    justify-items: center;
    gap: 18px;
    padding: clamp(64px, 9vw, 128px) clamp(18px, 5vw, 72px);
    text-align: center;
    background:
        linear-gradient(rgba(8, 8, 7, 0.76), rgba(8, 8, 7, 0.82)),
        url('img/binbeton/panel-strukturalny-3.jpeg') center / cover;
    border-top: 1px solid rgba(201, 155, 79, 0.2);
}

.editorial-final-signup p:not(.front-eyebrow) {
    margin: 0;
}

@media (max-width: 980px) {
    .editorial-hero,
    .editorial-split,
    .editorial-process,
    .contact-clean-grid {
        grid-template-columns: 1fr;
    }

    .editorial-hero-media {
        height: 420px;
    }

    .editorial-process li {
        grid-template-columns: 78px minmax(0, 1fr);
    }

    .editorial-process li p {
        grid-column: 2;
    }

    .training-detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .editorial-page {
        padding-top: 74px;
    }

    .editorial-hero-copy {
        padding: 42px 18px;
    }

    .editorial-hero-copy h1 {
        font-size: clamp(2.35rem, 11.5vw, 3.85rem);
        line-height: 1.04;
    }

    .editorial-hero-media {
        height: 320px;
    }

    .editorial-square-grid,
    .editorial-photo-strip,
    .editorial-photo-strip--two,
    .training-detail-grid {
        grid-template-columns: 1fr;
    }

    .editorial-process li {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .editorial-process li p {
        grid-column: 1;
    }
}

/* Tablet keeps catalog/product layouts compact; true single-column starts below 700px. */
@media (min-width: 701px) and (max-width: 1100px) {
    .footer-shell {
        grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
        gap: 24px;
    }

    .footer-links-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
    }

    .shop-listing-grid,
    .shop-listing-grid[data-columns="2"],
    .shop-listing-grid[data-columns="3"],
    .shop-listing-grid[data-columns="4"] {
        --shop-columns: 2;
    }

    .shop-hero {
        min-height: min(660px, 88vh);
        padding: clamp(88px, 9vw, 116px) 0 clamp(30px, 4vw, 48px);
    }

    .shop-hero-grid {
        grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.66fr);
        gap: clamp(24px, 4vw, 52px);
        align-items: center;
    }

    .shop-hero-copy h1 {
        max-width: 600px;
        font-size: clamp(2.85rem, 5.35vw, 4.7rem);
        line-height: 1;
    }

    .shop-hero-copy p:not(.front-eyebrow) {
        max-width: 470px;
        margin-top: 16px;
        font-size: 0.9rem;
        line-height: 1.58;
    }

    .shop-hero-media {
        width: min(100%, 370px);
    }

    .shop-store-head {
        grid-template-columns: minmax(0, 0.76fr) minmax(280px, 0.46fr);
        gap: clamp(24px, 4vw, 48px);
    }

    .shop-store-head h2 {
        font-size: clamp(2.25rem, 4.6vw, 4.7rem);
        line-height: 0.98;
    }

    .shop-store-head p:not(.front-eyebrow) {
        font-size: 0.94rem;
        line-height: 1.65;
    }

    .shop-listing-card h3 {
        font-size: clamp(1.35rem, 2.8vw, 2.05rem);
    }

    .product-luxury-hero {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
        min-height: calc(100vh - 74px);
    }

    .product-luxury-gallery {
        padding: 0 0 0 32px;
        border-right: 1px solid rgba(214, 176, 106, 0.24);
        border-bottom: 0;
    }

    .product-luxury-summary {
        padding: clamp(20px, 3vw, 34px);
    }

    .product-main-frame {
        width: 100%;
        height: auto;
        min-height: 0;
        margin-top: 0;
    }

    .product-thumbs {
        grid-template-columns: repeat(4, minmax(52px, 1fr));
    }

    .product-luxury-summary h1 {
        font-size: clamp(2.45rem, 5.8vw, 4.6rem);
    }

    .product-info-grid,
    .product-inspiration {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.95fr);
    }

    .product-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .shop-listing-grid,
    .shop-listing-grid[data-columns="2"],
    .shop-listing-grid[data-columns="3"],
    .shop-listing-grid[data-columns="4"] {
        --shop-columns: 1;
    }
}

/* Index shop cards stay as three compact columns until real mobile. */
.home-refresh .front-shop-showcase .front-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-refresh .front-shop-showcase .front-shop-card {
    aspect-ratio: 4 / 5;
    min-height: 0;
}

@media (max-width: 700px) {
    .home-refresh .front-shop-showcase .front-service-grid {
        grid-template-columns: 1fr;
    }
}
