:root {
    --wood-dark: #2a2119;
    --wood-medium: #665445;
    --wood-light: #a48d76;
    --cream: #F5ECE1;
    --white-transparent: rgba(255,255,255,0.9);

    --text-color: var(--wood-dark);
    --border-color: var(--wood-light);
    --shadow-color: rgba(42, 33, 25, 0.15);

    --glass-bg: rgba(255,255,255,0.76);
    --glass-border: rgba(255,255,255,0.45);

    --radius-xl: 2rem;
    --radius-lg: 1.5rem;
    --radius-md: 1rem;

    --card-shadow:
        0 10px 30px rgba(42, 33, 25, 0.10),
        0 4px 14px rgba(42, 33, 25, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.42);

    --card-shadow-hover:
        0 16px 36px rgba(42, 33, 25, 0.16),
        0 6px 18px rgba(42, 33, 25, 0.10),
        inset 0 1px 0 rgba(255,255,255,0.42);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.45), transparent 38%),
        var(--cream);
    color: var(--wood-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* БАЗОВЫЙ ЦВЕТ ТЕКСТА */
body,
p,
span,
li,
label,
input,
textarea,
button,
a,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--wood-dark);
}

/* Tailwind gray переопределяем жёстко */
.text-gray-500,
.text-gray-600,
.text-gray-700,
.text-gray-800,
.text-gray-900 {
    color: var(--wood-dark) !important;
}

/* Фирменные текстовые цвета */
.text-wood-medium {
    color: var(--wood-dark) !important;
    font-weight: 400;
}

.text-wood-dark {
    color: var(--wood-dark) !important;
}

/* Общие элементы */
a {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
textarea {
    font: inherit;
}

.bg-white-transparent {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.68));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.premium-shadow {
    box-shadow: var(--card-shadow);
}

/* Текстура древесины для кнопок */
.wood-texture {
    background-image:
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M0 50 L100 50 M50 0 L50 100" stroke="%232a2119" stroke-width="0.5" stroke-opacity="0.1"/></svg>'),
        linear-gradient(to bottom right, var(--wood-dark), var(--wood-medium));
    background-blend-mode: overlay;
}

/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-fadeIn {
    animation: fadeIn 0.5s ease-out;
}

.animate-slideDown {
    animation: slideDown 0.4s ease-out;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Навигация */
.nav-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 40px);
    max-width: 1200px;
    padding: 0 20px;
}

.nav-content {
    background:
        linear-gradient(145deg, rgba(245,236,225,0.92), rgba(255,255,255,0.82));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 30px;
    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.13),
        0 5px 12px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.5),
        inset 0 -1px 0 rgba(0,0,0,0.04);
    padding: 8px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.38);
    transform-style: preserve-3d;
    transition: all 0.35s ease;
}

.nav-content:hover {
    transform: translateY(-1px);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.16),
        0 6px 14px rgba(0, 0, 0, 0.10),
        inset 0 1px 0 rgba(255,255,255,0.5),
        inset 0 -1px 0 rgba(0,0,0,0.04);
}

.modal-open .nav-container {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.modal-open .brand-name {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--wood-dark);
    text-shadow:
        0 2px 4px rgba(0,0,0,0.05),
        0 1px 0 rgba(255,255,255,0.3);
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.brand-name::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--wood-dark), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.brand-name:hover {
    transform: translateY(-1px);
    text-shadow:
        0 3px 6px rgba(0,0,0,0.1),
        0 1px 0 rgba(255,255,255,0.3);
}

.brand-name:hover::after {
    transform: scaleX(1);
}

.nav-menu-container {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.nav-menu .active-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.6), rgba(255,255,255,0.4));
    border-radius: 12px;
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    box-shadow:
        0 4px 10px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.3);
}

.nav-menu a {
    color: var(--wood-dark);
    background: transparent;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 1px rgba(255,255,255,0.5);
    transform-style: preserve-3d;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translateZ(-1px);
}

.nav-menu a:hover::before {
    opacity: 1;
}

.nav-menu a.active {
    color: var(--wood-dark);
    font-weight: 700;
    text-shadow: 0 1px 1px rgba(255,255,255,0.8);
}

.nav-menu a.active::before {
    opacity: 1;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), rgba(255,255,255,0.3));
}

.nav-menu a:active {
    transform: translateY(1px) translateZ(-1px);
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Бургер */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.menu-toggle svg {
    width: 24px;
    height: 24px;
    color: var(--wood-dark);
    transition: all 0.3s ease;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--wood-dark);
    transition: all 0.3s ease;
    margin: 3px 0;
}

/* Hero */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at center,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.45)
    );
    z-index: 1;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(245, 236, 225, 0.80);
    z-index: 2;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 70%, transparent 100%);
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--wood-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow:
        0 0 2px rgba(255,255,255,1),
        0 0 5px rgba(255,255,255,0.8),
        0 0 10px rgba(255,255,255,0.6),
        -1px -1px 0 rgba(255,255,255,1),
        1px -1px 0 rgba(255,255,255,1),
        -1px 1px 0 rgba(255,255,255,1),
        1px 1px 0 rgba(255,255,255,1);
}

.subtitle {
    font-size: 1.2rem;
    color: var(--wood-dark);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 380;
}

.hero-section {
    padding: 120px 0;
    position: relative;
    background: var(--cream);
    text-align: center;
}

/* Контейнеры и секции */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-section {
    scroll-margin-top: 100px;
}

.section-py {
    padding: 40px 0;
}

/* Кнопки */
.btn-wood {
    background:
        linear-gradient(135deg, var(--wood-dark), var(--wood-medium)),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M0 20 Q50-15 100 20 T200 80" stroke="%232a2119" stroke-width="1" stroke-opacity="0.2" fill="none"/></svg>');
    color: #fff !important;
    border: 1px solid var(--wood-dark);
}

.consultation-btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff !important;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow:
        0 8px 22px rgba(42, 33, 25, 0.24),
        inset 0 1px 1px rgba(255,255,255,0.35);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);

    background:
        linear-gradient(135deg, #2b2118 0%, #5f4d3f 55%, #77604e 100%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M0 30 Q25 10 50 30 T100 70" stroke="%23ffffff" stroke-width="0.8" stroke-opacity="0.3" fill="none"/><path d="M0 40 Q50 20 100 40" stroke="%23ffffff" stroke-width="0.5" stroke-opacity="0.2" fill="none"/></svg>');
}

.consultation-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M0 30 Q25 10 50 30 T100 70" stroke="%23ffffff" stroke-width="0.8" stroke-opacity="0.3" fill="none"/><path d="M0 40 Q50 20 100 40" stroke="%23ffffff" stroke-width="0.5" stroke-opacity="0.2" fill="none"/></svg>'),
        linear-gradient(to bottom right, var(--wood-dark), var(--wood-medium));
    opacity: 0.35;
    z-index: -1;
}

.consultation-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 14px 30px rgba(42, 33, 25, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background:
        linear-gradient(135deg, #4d3d31 0%, #7d6857 100%);
    color: var(--cream) !important;
}

.consultation-btn:active {
    transform: translateY(1px);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

/* О нас */
.why-us-grid {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}

.about-container {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.82), rgba(245,236,225,0.92));
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow:
        0 10px 30px rgba(42, 33, 25, 0.10),
        0 4px 12px rgba(42, 33, 25, 0.06),
        inset 0 1px 0 rgba(255,255,255,0.45);
    position: relative;
    min-height: auto;
    font-size: 1.2rem;
    border: 1px solid rgba(255,255,255,0.42);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.floating-card,
.floating-image {
    position: absolute;
    opacity: 0.95;
}

.floating-card {
    color: var(--wood-dark);
    padding: 1.5rem 1.2rem;
    border-radius: 0.9rem;
    font-size: 1.1rem;
    font-weight: 700;
    max-width: 400px;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;

    background:
        linear-gradient(to bottom right, rgba(248, 241, 233, 0.96), rgba(233, 219, 203, 0.96)),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M20 20 Q30 10 40 20 T60 40" stroke="%232a2119" stroke-width="0.3" stroke-opacity="0.05" fill="none"/></svg>');
    border: 1px solid rgba(164, 141, 118, 0.28);
    box-shadow:
        0 8px 20px rgba(42, 33, 25, 0.12),
        inset 0 0 30px rgba(255, 255, 255, 0.35);
}

.floating-image {
    border-radius: 0.85rem;
    box-shadow: 0 8px 18px rgba(42, 33, 25, 0.16);
    border: 2px solid rgba(255,255,255,0.65);
    opacity: 0.92;
}

.floating-card:hover,
.floating-image:hover {
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.about-content {
    position: relative;
    z-index: 3;
    margin-top: 13rem;
    padding-top: 0.5rem;
}

.card-1 { top: 2.5rem; left: 9rem; z-index: 2; }
.card-2 { top: 2.5rem; left: 37rem; z-index: 3; }
.card-3 { top: 9rem; left: 21rem; z-index: 1; }
.card-4 { top: 9rem; left: 53rem; z-index: 1; }

.img-1 { top: 2.5rem; left: 4rem; width: 75px; z-index: 1; }
.img-2 { top: 2.5rem; left: 32rem; width: 75px; z-index: 2; }
.img-3 { top: 9rem; left: 16rem; width: 75px; z-index: 0; }
.img-4 { top: 9rem; left: 48rem; width: 75px; z-index: 0; }

.why-us-item {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.84), rgba(255,255,255,0.70));
    border-radius: 1.2rem;
    border: 1px solid rgba(255,255,255,0.45);
    box-shadow: var(--card-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.why-us-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
}

.why-us-item h3 {
    margin-top: auto;
    margin-bottom: 0.5rem;
    padding-top: 0.5rem;
    flex-shrink: 0;
}

.why-us-item p {
    flex-grow: 1;
    margin-top: auto;
    line-height: 1.6;
    padding-bottom: 0.5rem;
}

.why-us-grid .why-us-item {
    min-height: 220px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Галерея */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.gallery-grid > .col-span-full {
    grid-column: 1 / -1;
}

.gallery-item {
    position: relative;
    min-height: 280px;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow:
        0 10px 26px rgba(42, 33, 25, 0.12),
        0 4px 12px rgba(42, 33, 25, 0.08);
    border: 1px solid rgba(255,255,255,0.35);
}

.gallery-item:hover {
    box-shadow:
        0 18px 40px rgba(42, 33, 25, 0.18),
        0 6px 14px rgba(42, 33, 25, 0.10);
    transform: translateY(-2px);
}

.gallery-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.7s ease, filter 0.3s ease;
}

.gallery-item:hover img {
    filter: brightness(0.9);
    transform: scale(1.03);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(22,18,14,0.78) 0%, transparent 32%);
    opacity: 0.92;
    transition: opacity 0.5s ease;
}

.gallery-item:hover .gallery-overlay {
    background: linear-gradient(to bottom, rgba(22,18,14,0.72) 0%, rgba(22,18,14,0.10) 38%);
}

.gallery-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.gallery-title {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white !important;
}

.gallery-description {
    position: absolute;
    bottom: 3.5rem;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-description {
    opacity: 1;
    transform: translateY(0);
}

.gallery-more {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 700;
    color: white !important;
    transition: all 0.3s ease;
    z-index: 10;
    cursor: pointer;
    border-radius: 20px;
    border: none;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    background: transparent;
    padding: 0;
}

.gallery-more:hover {
    background: transparent;
    transform: none;
    box-shadow: none;
    text-decoration: underline;
}

.gallery-more:active {
    transform: translateY(1px);
}

.gallery-content *,
.gallery-description *,
.gallery-more,
.gallery-more *,
.product-description *,
.product-info *,
.production-gallery-content * {
    color: white !important;
}

.gallery-more svg {
    stroke: white !important;
}

/* Модальное окно / продукты */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    max-width: 520px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.24);
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    z-index: 1200;
}

.modal-container.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.category-header {
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 1rem;
    padding: 1.5rem 1.5rem 0;
}

.close-category {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--wood-dark);
    transition: transform 0.3s;
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 4rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-category:hover {
    transform: rotate(90deg);
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--wood-dark);
}

.category-description {
    color: var(--wood-medium) !important;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    padding: 0 1.5rem;
}

.products-container {
    padding: 0 1.5rem 1.5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    padding: 0 1rem;
}

.product-item {
    position: relative;
    min-height: 250px;
    border-radius: 1.2rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow:
        0 10px 24px rgba(42, 33, 25, 0.10),
        0 4px 12px rgba(42, 33, 25, 0.08);
    border: 1px solid rgba(255,255,255,0.35);
}

.product-item:hover {
    transform: translateY(-2px);
    box-shadow:
        0 16px 34px rgba(42, 33, 25, 0.16),
        0 6px 14px rgba(42, 33, 25, 0.10);
}

.product-item:hover img {
    filter: brightness(0.9);
    transform: scale(1.03);
}

.product-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.7s ease, filter 0.3s ease;
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, transparent 30%);
    opacity: 0.8;
}

.product-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: white;
}

.product-name {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
    color: white !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.product-description {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.product-item:hover .product-description {
    opacity: 1;
    transform: translateY(0);
}

/* Формы контактов */
.contact-method-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.contact-method-selector {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.contact-method-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(164, 141, 118, 0.55);
    color: var(--wood-dark) !important;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(42, 33, 25, 0.08);
}

.contact-method-btn:hover {
    background: var(--wood-light);
    color: var(--cream) !important;
    transform: translateY(-2px);
}

.contact-method-btn.selected {
    background: var(--wood-medium);
    color: var(--cream) !important;
    border-color: var(--wood-dark);
    box-shadow: 0 6px 14px rgba(42, 33, 25, 0.18);
}

/* Уведомление */
.notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background:
        linear-gradient(135deg, var(--wood-dark), var(--wood-medium)),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M0 30 Q25 10 50 30 T100 70" stroke="%23ffffff" stroke-width="0.8" stroke-opacity="0.3" fill="none"/><path d="M0 40 Q50 20 100 40" stroke="%23ffffff" stroke-width="0.5" stroke-opacity="0.2" fill="none"/></svg>');
    color: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255,255,255,0.4);
    z-index: 2000;
    text-align: center;
    max-width: 400px;
    width: 90%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    border: 1px solid var(--wood-dark);
    overflow: hidden;
}

.notification.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

.notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M0 50 L100 50 M50 0 L50 100" stroke="%23ffffff" stroke-width="0.5" stroke-opacity="0.1"/></svg>');
    opacity: 0.3;
    border-radius: 20px;
    pointer-events: none;
    z-index: 0;
}

.notification h3,
.notification p,
.notification .notification-btn {
    position: relative;
    z-index: 1;
}

.notification h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    font-family: 'Playfair Display', serif;
}

.notification p {
    margin-bottom: 1.5rem;
    color: white !important;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
    line-height: 1.5;
}

.notification-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: 0 1px 1px rgba(0,0,0,0.3);
}

.notification-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Production slider */
.production-gallery-item {
    position: relative;
    min-height: 280px;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow:
        0 10px 26px rgba(42, 33, 25, 0.12),
        0 4px 12px rgba(42, 33, 25, 0.08);
    border: 1px solid rgba(255,255,255,0.35);
}

.production-gallery-item:hover {
    transform: translateY(-2px);
    box-shadow:
        0 18px 40px rgba(42, 33, 25, 0.18),
        0 6px 14px rgba(42, 33, 25, 0.10);
}

.production-slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.production-slides-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: 100%;
}

.production-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
}

.production-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    transition: opacity 0.3s ease;
}

.production-gallery-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: white;
    z-index: 2;
}

.production-gallery-title {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white !important;
}

.production-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(22,18,14,0.78) 0%, transparent 32%);
    opacity: 0.92;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.production-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 3;
}

.production-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.production-dot:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

.production-dot.active {
    width: 16px;
    background: white;
    border-radius: 4px;
}

.production-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.88);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    color: var(--wood-dark) !important;
}

.production-nav-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
}

.production-nav-btn svg {
    width: 20px;
    height: 20px;
    color: var(--wood-dark) !important;
    stroke-width: 2.5;
}

.production-nav-btn.prev {
    left: 1.5rem;
}

.production-nav-btn.next {
    right: 1.5rem;
}

/* Секционные отступы */
#about {
    padding-top: 80px;
    padding-bottom: 20px;
}

#portfolio {
    padding-top: 20px;
}

#production {
    padding-top: 20px;
    padding-bottom: 20px;
}

#designers {
    padding-top: 20px;
    padding-bottom: 20px;
}

#contact {
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Переопределение hover */
a:hover,
button:hover {
    color: inherit;
}

.bg-white-transparent,
.about-container,
.why-us-item,
.product-item,
.gallery-item,
.production-gallery-item {
    position: relative;
}

.bg-white-transparent::after,
.about-container::after,
.why-us-item::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.28),
        rgba(255,255,255,0.06) 40%,
        transparent 100%
    );
    opacity: 0.9;
}

.gallery-item:hover,
.product-item:hover,
.production-gallery-item:hover,
.why-us-item:hover {
    transform: translateY(-4px);
    box-shadow:
        0 22px 46px rgba(42, 33, 25, 0.18),
        0 8px 18px rgba(42, 33, 25, 0.10);
}

.gallery-item,
.product-item,
.production-gallery-item,
.why-us-item,
.consultation-btn,
.nav-content,
.nav-menu a {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease,
        opacity 0.35s ease,
        color 0.35s ease;
}

/* Адаптив */
@media (min-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 550px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 640px) {
    .gallery-title {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .gallery-more {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .product-name {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .production-gallery-title {
        font-size: 1.5rem;
        line-height: 2rem;
    }
}

@media (min-width: 768px) {
    .section-py {
        padding: 40px 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .gallery-item {
        min-height: 320px;
    }

    .product-item {
        min-height: 280px;
    }

    .production-gallery-item {
        min-height: 320px;
    }
}

@media (min-width: 1024px) {
    .gallery-item {
        min-height: 380px;
    }

    .product-item {
        min-height: 320px;
    }

    .production-gallery-item {
        min-height: 380px;
    }

    .gallery-title {
        font-size: 1.75rem;
        line-height: 2.25rem;
    }

    .production-gallery-title {
        font-size: 1.75rem;
        line-height: 2.25rem;
    }
}

@media (min-width: 1060px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 1190px) {
    .card-1 { top: 2.5rem; left: 9rem; z-index: 2; }
    .card-2 { top: 2.5rem; left: 28rem; z-index: 3; }
    .card-3 { top: 9rem; left: 12rem; z-index: 1; }
    .card-4 { top: 9rem; left: 38rem; z-index: 1; }

    .img-1 { top: 2.5rem; left: 4rem; width: 75px; z-index: 1; }
    .img-2 { top: 2.5rem; left: 23rem; width: 75px; z-index: 2; }
    .img-3 { top: 9rem; left: 7rem; width: 75px; z-index: 0; }
    .img-4 { top: 9rem; left: 33rem; width: 75px; z-index: 0; }
}

@media (max-width: 1024px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 990px) {
    .nav-menu a {
        font-size: 0.82rem;
        padding: 10px 10px;
    }

    .brand-name {
        font-size: 1.5rem;
    }

    .nav-content {
        padding: 8px 10px;
    }
}

@media (max-width: 930px) {
    .card-1 { top: 2.5rem; left: 8rem; z-index: 2; }
    .card-2 { top: 2.5rem; left: 24rem; z-index: 3; }
    .card-3 { top: 8rem; left: 9rem; z-index: 1; }
    .card-4 { top: 8rem; left: 32rem; z-index: 1; }

    .img-1 { top: 2.5rem; left: 4rem; width: 60px; z-index: 1; }
    .img-2 { top: 2.5rem; left: 20rem; width: 60px; z-index: 2; }
    .img-3 { top: 8rem; left: 5rem; width: 60px; z-index: 0; }
    .img-4 { top: 8rem; left: 28rem; width: 60px; z-index: 0; }

    .floating-card {
        padding: 1.1rem 1.2rem;
        border-radius: 0.8rem;
        font-size: 1rem;
    }

    .about-content {
        margin-top: 10rem;
    }
}

@media (max-width: 800px) {
    .card-1 { top: 2.5rem; left: 7rem; z-index: 2; }
    .card-2 { top: 7rem; left: 7rem; z-index: 3; }
    .card-3 { top: 11.5rem; left: 7rem; z-index: 1; }
    .card-4 { top: 16rem; left: 7rem; z-index: 1; }

    .img-1 { top: 2.5rem; left: 3rem; width: 60px; z-index: 1; }
    .img-2 { top: 7rem; left: 3rem; width: 60px; z-index: 2; }
    .img-3 { top: 11.5rem; left: 3rem; width: 60px; z-index: 0; }
    .img-4 { top: 16rem; left: 3rem; width: 60px; z-index: 0; }

    .floating-card {
        padding: 1.1rem 1.2rem;
        border-radius: 0.8rem;
        font-size: 1rem;
    }

    .about-content {
        margin-top: 18rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        width: calc(100% - 30px);
        padding: 0 15px;
    }

    .nav-content {
        padding: 8px 16px;
        background: linear-gradient(145deg, rgba(245,236,225,0.96), rgba(255,255,255,0.90));
        border-radius: 30px;
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
    }

    .nav-menu-container {
        position: fixed;
        top: 80px;
        right: 20px;
        width: 220px;
        background: linear-gradient(180deg, rgba(255,255,255,0.90), rgba(245,236,225,0.96));
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-radius: 16px;
        padding: 12px 0;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
        border: 1px solid rgba(255,255,255,0.5);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
        z-index: 999;
    }

    .nav-menu-container.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu {
        flex-direction: column;
        gap: 4px;
        padding: 0 12px;
    }

    .nav-menu li {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
    }

    .nav-menu li::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: var(--wood-dark);
        transition: width 0.3s ease;
    }

    .nav-menu li:nth-child(1)::before { background: var(--wood-dark); }
    .nav-menu li:nth-child(2)::before { background: var(--wood-medium); }
    .nav-menu li:nth-child(3)::before { background: var(--wood-light); }
    .nav-menu li:nth-child(4)::before { background: #D9B38C; }
    .nav-menu li:nth-child(5)::before { background: #F2D1A8; }
    .nav-menu li:nth-child(6)::before { background: #e6d6c5; }

    .nav-menu a {
        padding: 12px 16px;
        border-radius: 10px;
        text-align: left;
        background: rgba(255, 255, 255, 0.50);
        transition: all 0.3s ease;
        display: block;
        margin-left: 4px;
    }

    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.72);
    }

    .nav-menu a.active {
        background: rgba(255, 255, 255, 0.72);
        font-weight: 600;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width: 24px;
        height: 24px;
        background: transparent;
        border: none;
        padding: 3px 0;
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--wood-dark);
        border-radius: 2px;
        transition: all 0.3s ease;
        margin: 0;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .menu-backdrop {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .menu-backdrop.active {
        opacity: 1;
        visibility: visible;
    }

    .hero-section {
        padding: 70px 0 50px;
    }

    .why-us-item {
        min-height: auto;
        height: auto;
    }

    #about {
        padding-top: 40px;
        padding-bottom: 20px;
    }

    .consultation-btn {
        padding: 12px 24px;
        font-size: 1rem;
        font-weight: 700;
    }

    .btn-wood {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .notification-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    .contact-method-btn {
        width: 44px;
        height: 44px;
        font-size: 0.85rem;
    }

    .production-gallery-item {
        min-height: 250px;
    }

    .production-gallery-title {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    .production-nav-btn {
        width: 35px;
        height: 35px;
    }

    .production-nav-btn.prev {
        left: 1rem;
    }

    .production-nav-btn.next {
        right: 1rem;
    }

    .production-dots {
        bottom: 1.25rem;
        gap: 6px;
    }

    .production-dot {
        width: 6px;
        height: 6px;
    }

    .production-dot.active {
        width: 12px;
    }
}

@media (max-width: 600px) {
    .modal-container.active {
        margin: 10px;
        padding: 0;
        border-radius: 16px;
    }

    .modal-container .p-8 {
        padding: 1.25rem !important;
    }

    .modal-container h3.text-2xl {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
    }

    .modal-container .mb-4,
    .modal-container .mb-6 {
        margin-bottom: 0.75rem !important;
    }

    .modal-container input,
    .modal-container textarea {
        padding: 0.625rem !important;
        font-size: 0.95rem !important;
        border-radius: 12px !important;
    }

    .modal-container label {
        font-size: 0.9rem !important;
        margin-bottom: 0.375rem !important;
    }

    .modal-container .consultation-btn {
        padding: 12px !important;
        font-size: 1rem !important;
        border-radius: 16px !important;
    }

    .contact-method-selector {
        gap: 6px !important;
        margin-bottom: 16px !important;
    }

    .contact-method-btn {
        width: 42px !important;
        height: 42px !important;
    }

    .modal-container .mb-6.flex.items-start {
        margin-bottom: 1rem !important;
    }

    .modal-container input[type="checkbox"] {
        transform: scale(0.9);
        margin-top: 0.25rem !important;
    }

    .modal-container label[for="privacy"] {
        font-size: 0.875rem !important;
        line-height: 1.4 !important;
    }

    .close-category {
        right: 0.75rem !important;
        top: 0.75rem !important;
        font-size: 1.6rem !important;
        width: 1.8rem !important;
        height: 1.8rem !important;
    }
    .close-category {
        border-radius: 50%;
        transition: all 0.25s ease;
    }

    .close-category:hover {
        background: rgba(0,0,0,0.05);
    }
}

@media (max-width: 480px) {
    .production-categories-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .consultation-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .btn-wood,
    .notification-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .contact-method-btn {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }
}

@media (min-width: 481px) {
    .production-categories-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
    }
}

@media (max-width: 468px) {
    .card-1 { top: 2rem; left: 6.5rem; z-index: 2; }
    .card-2 { top: 6rem; left: 6.5rem; z-index: 3; }
    .card-3 { top: 10rem; left: 6.5rem; z-index: 1; }
    .card-4 { top: 14rem; left: 6.5rem; z-index: 1; }

    .img-1 { top: 2rem; left: 3rem; width: 50px; z-index: 1; }
    .img-2 { top: 6rem; left: 3rem; width: 50px; z-index: 2; }
    .img-3 { top: 10rem; left: 3rem; width: 50px; z-index: 0; }
    .img-4 { top: 14rem; left: 3rem; width: 50px; z-index: 0; }

    .floating-card {
        padding: 0.9rem 1.2rem;
        font-size: 0.8rem;
    }

    .about-content {
        margin-top: 15rem;
    }
}

@media (max-width: 400px) {
    .card-1 { top: 1.5rem; left: 5rem; z-index: 2; }
    .card-2 { top: 4.5rem; left: 5rem; z-index: 3; }
    .card-3 { top: 7.5rem; left: 5rem; z-index: 1; }
    .card-4 { top: 10.5rem; left: 5rem; z-index: 1; }

    .img-1 { top: 1.5rem; left: 2rem; width: 40px; z-index: 1; }
    .img-2 { top: 4.5rem; left: 2rem; width: 40px; z-index: 2; }
    .img-3 { top: 7.5rem; left: 2rem; width: 40px; z-index: 0; }
    .img-4 { top: 10.5rem; left: 2rem; width: 40px; z-index: 0; }

    .floating-card {
        padding: 0.6rem 1.2rem;
        font-size: 0.7rem;
    }

    .about-content {
        margin-top: 10.25rem;
        margin-left: -1rem;
        font-size: 0.9rem;
    }

    .about-content h3 {
        font-size: 1.1rem;
    }
}