/* ===== БАЗОВЫЕ СТИЛИ ===== */
:root {
    --malachite-dark: #193A31;
    --malachite: #539579;
    --malachite-light: #6FB095;
    --gold-copper: #CFA14B;
    --gold-light: #DEB96A;
    --white-parchment: #FDFBF7;
    --text-dark: #1E2A25;
    --text-light: #F5F0E8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Old Standard TT', 'Times New Roman', serif;
    background: var(--white-parchment);
    color: var(--text-dark);
    line-height: 1.65;
    font-size: 17px;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

/* ===== ШАПКА ===== */
header {
    background: rgba(25, 58, 49, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 2px solid var(--gold-copper);
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    flex-wrap: wrap;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--gold-copper);
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

nav ul li a {
    font-family: 'Jost', sans-serif;
    font-size: 11.5px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    padding: 6px 0;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s;
}

nav ul li a:hover {
    color: var(--gold-copper);
}

nav ul li a.active {
    color: var(--gold-copper);
    border-bottom: 2px solid var(--gold-copper);
}

/* ===== КНОПКИ ===== */
.btn {
    display: inline-block;
    padding: 14px 42px;
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    border-radius: 8px;
}

.btn-primary {
    background: var(--gold-copper);
    color: var(--malachite-dark);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--gold-copper);
    color: var(--gold-copper);
}

.btn-outline:hover {
    background: var(--gold-copper);
    color: var(--malachite-dark);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 10px;
    letter-spacing: 1px;
}

.btn-order {
    padding: 8px 20px;
    background: var(--gold-copper);
    color: var(--malachite-dark);
    border: none;
    border-radius: 6px;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-order:hover {
    background: var(--gold-light);
}

/* ===== ФУТЕР ===== */
footer {
    background: var(--malachite-dark);
    padding: 65px 0 32px;
    border-top: 4px solid var(--gold-copper);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 55px;
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 22px;
    color: var(--gold-copper);
}

.footer-col p,
.footer-col ul li a {
    color: rgba(255,255,255,0.8); /* Сделали чуть светлее */
    text-decoration: none;
    font-size: 14px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--gold-copper);
    margin-right: 8px;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--gold-copper);
    color: var(--malachite-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(207, 161, 75, 0.3); /* Чуть светлее граница */
    font-size: 14px;
    color: rgba(255,255,255,0.9); /* Почти белый текст */
    opacity: 1; /* Убрали прозрачность */
}

.text-center {
    text-align: center;
}

/* ===== ГЛАВНАЯ (INDEX) ===== */

/* --- ГЕРО-БАНЕР --- */
.hero {
    position: relative;
    height: 92vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(180deg, rgba(25, 58, 49, 0.95) 0%, rgba(83, 149, 121, 0.4) 50%, rgba(25, 58, 49, 0.85) 100%),
        radial-gradient(circle at 80% 20%, rgba(207, 161, 75, 0.15), transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-badge-wrapper {
    margin-bottom: 25px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid var(--gold-copper);
    color: var(--gold-light);
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: rgba(25, 58, 49, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 50px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 82px;
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-title .highlight {
    color: var(--gold-copper);
    display: block;
    font-size: 0.9em;
    text-shadow: 0 0 30px rgba(207, 161, 75, 0.2);
}

.hero-desc {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Old Standard TT', serif;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    background: linear-gradient(135deg, var(--gold-copper), #b8892f);
    color: var(--malachite-dark);
    font-weight: 700;
    padding: 16px 48px;
    border: none;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(207, 161, 75, 0.3);
    border-radius: 50px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
}

.btn-hero:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(207, 161, 75, 0.5);
    background: var(--gold-light);
}

.btn-hero-outline {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(4px);
    border: 1.5px solid rgba(255,255,255,0.5);
    color: white;
    padding: 16px 38px;
    border-radius: 50px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
}

.btn-hero-outline:hover {
    background: white;
    color: var(--malachite-dark);
    border-color: white;
    transform: translateY(-3px);
}

/* --- ПРЕИМУЩЕСТВА --- */
.features-section {
    padding: 90px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.feature-card {
    text-align: center;
    padding: 42px 28px;
    background: white;
    border: 1px solid #e6dccf;
    border-radius: 8px;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-copper);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 22px;
    background: linear-gradient(135deg, var(--malachite), var(--gold-copper));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 34px;
    border: 2px solid var(--gold-copper);
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--malachite-dark);
}

/* --- О РЕСТОРАНЕ --- */
.about-short {
    padding: 90px 0;
    background: #F4F1EA;
}

.about-short-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.section-subtitle {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--gold-copper);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 18px;
}

.section-title-left {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--malachite-dark);
    border-left: 4px solid var(--gold-copper);
    padding-left: 25px;
    margin-bottom: 28px;
}

.about-short-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 38px;
}

.stats {
    display: flex;
    gap: 55px;
    margin-bottom: 42px;
    background: rgba(207, 161, 75, 0.05);
    padding: 20px;
    border-radius: 12px;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--gold-copper);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    color: #8B7355;
    text-transform: uppercase;
}

.about-short-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* --- ФИРМЕННЫЕ БЛЮДА --- */
.specials-section {
    padding: 90px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 65px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--malachite-dark);
    display: inline-block;
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 52px;
}

.special-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e6dccf;
    transition: 0.3s;
}

.special-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-copper);
}

.special-image {
    height: 260px;
    overflow: hidden;
    position: relative;
}

.special-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.special-content {
    padding: 26px;
}

.special-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--malachite-dark);
}

.special-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.special-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.cuisine-tag,
.category-tag {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
}

.cuisine-tag {
    background: var(--malachite);
    color: white;
}

.category-tag {
    background: var(--gold-copper);
    color: var(--malachite-dark);
}

/* ===== ОТЗЫВЫ ===== */
.reviews-section {
    padding: 80px 0;
    background: #F4F1EA;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.10);
}

.review-text {
    font-style: italic;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-author .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-copper);
    color: var(--malachite-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
}

.review-author h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--malachite-dark);
    margin-bottom: 2px;
}

.review-author span {
    font-size: 13px;
    color: #999;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* --- БАННЕР БРОНИ --- */
.booking-banner {
    padding: 85px 0;
    background: linear-gradient(135deg, var(--malachite-dark) 0%, var(--malachite) 100%);
    text-align: center;
    color: white;
}

.booking-banner-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 18px;
}

.booking-banner-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.booking-banner-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== МЕНЮ (MENU) ===== */

.page-section {
    padding: 80px 0;
}

.menu-categories {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}

.category-btn {
    padding: 8px 24px;
    border: 1px solid var(--gold-copper);
    color: var(--gold-copper);
    text-decoration: none;
    border-radius: 30px;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.category-btn:hover {
    background: var(--gold-copper);
    color: var(--malachite-dark);
}

.category-btn.active {
    background: var(--gold-copper);
    color: var(--malachite-dark);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.menu-item-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e6dccf;
    transition: 0.3s;
}

.menu-item-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-copper);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.menu-item-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-item-content {
    padding: 20px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.menu-item-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--malachite-dark);
}

.menu-item-price {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--gold-copper);
    white-space: nowrap;
}

.menu-item-desc {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* ===== СУВЕНИРЫ ===== */
.message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* ===== КОНТАКТЫ ===== */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.contact-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e6dccf;
    text-align: center;
}

.contact-icon {
    font-size: 30px;
    color: var(--gold-copper);
    margin-bottom: 15px;
}

.contact-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--malachite-dark);
    margin-bottom: 5px;
}

.contact-details p {
    color: #666;
    font-size: 15px;
}

.social-section {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 10px;
}

.social-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--malachite-dark);
    margin-bottom: 15px;
}

.contact-form-wrapper {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e6dccf;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group label {
    display: block;
    margin-bottom: 5px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    color: var(--malachite-dark);
    font-weight: 600;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Old Standard TT', serif;
    font-size: 16px;
    transition: 0.3s;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--gold-copper);
    box-shadow: 0 0 0 3px rgba(207, 161, 75, 0.1);
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== БРОНИРОВАНИЕ ===== */

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e6dccf;
    text-align: center;
}

.info-card i {
    font-size: 30px;
    color: var(--gold-copper);
    margin-bottom: 10px;
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--malachite-dark);
    margin-bottom: 5px;
}

.info-card p {
    color: #666;
    font-size: 15px;
}

.info-card a {
    color: var(--gold-copper);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

.booking-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e6dccf;
}

.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.booking-form .form-group {
    margin-bottom: 20px;
}

.booking-form .form-group label {
    display: block;
    margin-bottom: 5px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    color: var(--malachite-dark);
    font-weight: 600;
}

.booking-form .form-group input,
.booking-form .form-group select,
.booking-form .form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Old Standard TT', serif;
    font-size: 16px;
    transition: 0.3s;
}

.booking-form .form-group input:focus,
.booking-form .form-group select:focus,
.booking-form .form-group textarea:focus {
    outline: none;
    border-color: var(--gold-copper);
    box-shadow: 0 0 0 3px rgba(207, 161, 75, 0.1);
}

.booking-form .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.booking-form .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* ===== О РЕСТОРАНЕ ===== */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--malachite-dark);
    margin-bottom: 20px;
}

.about-text {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-quote {
    background: #F4F1EA;
    padding: 30px;
    border-left: 4px solid var(--gold-copper);
    border-radius: 8px;
    margin-top: 30px;
}

.about-quote i {
    color: var(--gold-copper);
    font-size: 24px;
    margin-bottom: 10px;
}

.about-quote p {
    font-style: italic;
    font-size: 18px;
}

.about-quote span {
    display: block;
    margin-top: 10px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    color: #888;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.philosophy-section {
    margin-bottom: 60px;
}

.philosophy-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--malachite-dark);
    text-align: center;
    margin-bottom: 40px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.philosophy-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e6dccf;
    text-align: center;
}

.philosophy-icon {
    font-size: 40px;
    color: var(--gold-copper);
    margin-bottom: 15px;
}

.philosophy-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--malachite-dark);
    margin-bottom: 10px;
}

.philosophy-card p {
    color: #666;
}

.interior-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--malachite-dark);
    text-align: center;
    margin-bottom: 40px;
}

.interior-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.interior-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

.interior-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 17px;
}

.awards-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--malachite-dark);
    text-align: center;
    margin-bottom: 40px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.award-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e6dccf;
    text-align: center;
}

.award-card i {
    font-size: 40px;
    color: var(--gold-copper);
    margin-bottom: 15px;
}

.award-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--malachite-dark);
    margin-bottom: 5px;
}

.award-card p {
    color: #666;
}

/* ===== КОСТЮМЫ ===== */

.costumes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.costume-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e6dccf;
    transition: 0.3s;
}

.costume-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-copper);
}

.costume-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.costume-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.costume-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gold-copper);
    color: var(--malachite-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
}

.costume-content {
    padding: 20px;
}

.costume-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--malachite-dark);
    margin-bottom: 10px;
}

.costume-desc {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.costume-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
}

.info-row i {
    color: var(--gold-copper);
    width: 20px;
}

.btn-rent {
    width: 100%;
}

.photo-studio {
    margin-top: 60px;
    background: linear-gradient(135deg, var(--malachite-dark), var(--malachite));
    border-radius: 16px;
    padding: 50px;
    text-align: center;
    color: white;
}

.studio-content i {
    font-size: 50px;
    color: var(--gold-copper);
    margin-bottom: 20px;
}

.studio-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 15px;
}

.studio-content p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.studio-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.studio-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.studio-features i {
    color: var(--gold-copper);
}

/* ===== АДАПТИВ ===== */

@media (max-width: 992px) {
    .features-grid,
    .specials-grid,
    .reviews-grid,
    .philosophy-grid,
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-short-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }
    .contact-wrapper,
    .booking-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-info {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .interior-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }
    .header-container {
        flex-direction: column;
        gap: 18px;
    }
    nav ul {
        gap: 15px;
        justify-content: center;
    }
    .features-grid,
    .specials-grid,
    .reviews-grid,
    .philosophy-grid,
    .awards-grid,
    .costumes-grid {
        grid-template-columns: 1fr;
    }
    .contact-info,
    .interior-gallery {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .section-title::before,
    .section-title::after {
        display: none;
    }
    .hero-title {
        font-size: 42px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .btn-hero,
    .btn-hero-outline {
        width: 100%;
        max-width: 280px;
    }
    .hero-overlay {
        background: linear-gradient(180deg, rgba(25, 58, 49, 0.9) 0%, rgba(25, 58, 49, 0.6) 100%);
    }
    .about-title,
    .philosophy-title,
    .interior-title,
    .awards-title {
        font-size: 28px;
    }
    .studio-content h2 {
        font-size: 28px;
    }
    .studio-features {
        flex-direction: column;
        align-items: center;
    }
    .booking-banner-content h2 {
        font-size: 32px;
    }
}

/* ===== НОВЫЙ ДИЗАЙН "НАШИ ШЕДЕВРЫ" ===== */
.specials-section {
    padding: 80px 0;
    background: var(--white-parchment);
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.special-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: relative;
}

.special-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.special-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.special-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.special-card:hover .special-image img {
    transform: scale(1.05);
}

.special-image .special-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold-copper);
    color: var(--malachite-dark);
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.special-content {
    padding: 24px 26px 26px;
}

.special-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--malachite-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.special-content p {
    color: #777;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.special-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.cuisine-tag,
.category-tag {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cuisine-tag {
    background: var(--malachite);
    color: white;
}

.category-tag {
    background: var(--gold-copper);
    color: var(--malachite-dark);
}

.special-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid #eee;
}

.special-footer .price {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--gold-copper);
}

.special-footer .btn-outline {
    padding: 8px 20px;
    font-size: 10px;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .specials-grid {
        grid-template-columns: 1fr;
    }
    .special-image {
        height: 200px;
    }
}