/* ============================================================
   RESET & BASE
============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-ivory: #F6F1E8;
    --color-burgundy: #7D2327;
    --color-gold: #B88A28;
    --color-charcoal: #1F1B19;
    --color-cream: #FDF9F4;
    --color-white: #FFFFFF;
    --color-text: #2A2624;
    --color-text-light: #6B6560;

    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-soft: 0 4px 24px rgba(31, 27, 25, 0.06);
    --shadow-card: 0 8px 40px rgba(31, 27, 25, 0.08);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    background: var(--color-ivory);
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background: var(--color-ivory);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 1440px;
    margin: 0 auto;
    overflow-x: hidden;
}

::selection {
    background: var(--color-burgundy);
    color: var(--color-white);
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

/* subtle paper texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.3;
    mix-blend-mode: multiply;
}

/* Georgian ornamental pattern background (subtle) */
.ornament-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60 10 L65 30 L85 35 L65 40 L60 60 L55 40 L35 35 L55 30 Z' fill='%23B88A28' opacity='0.03'/%3E%3Cpath d='M60 70 L65 90 L85 95 L65 100 L60 120 L55 100 L35 95 L55 90 Z' fill='%23B88A28' opacity='0.03'/%3E%3Cpath d='M10 60 L30 55 L35 35 L40 55 L60 60 L40 65 L35 85 L30 65 Z' fill='%23B88A28' opacity='0.03'/%3E%3Cpath d='M110 60 L90 55 L85 35 L80 55 L60 60 L80 65 L85 85 L90 65 Z' fill='%23B88A28' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
}

/* ============================================================
   TYPOGRAPHY
============================================================ */
.serif {
    font-family: var(--font-serif);
}

.sans {
    font-family: var(--font-sans);
}

.text-gold {
    color: var(--color-gold);
}

.text-burgundy {
    color: var(--color-burgundy);
}

.text-charcoal {
    color: var(--color-charcoal);
}

.text-light {
    color: var(--color-text-light);
}

/* ============================================================
   NAVIGATION
============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1440px;
    z-index: 1000;
    padding: 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all var(--transition);
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.navbar.scrolled {
    background: rgba(246, 241, 232, 0.88);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    padding: 14px 60px;
    box-shadow: 0 1px 0 rgba(31, 27, 25, 0.06);
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--color-white);
    transition: color var(--transition);
}

.navbar.scrolled .nav-logo {
    color: var(--color-charcoal);
}

.nav-logo span {
    color: var(--color-gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition);
}

.navbar.scrolled .nav-links {
    color: var(--color-text);
}

.nav-links a {
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-gold);
    transition: width var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--color-gold);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--color-burgundy);
}

.nav-cta {
    border-radius: 40px !important;
    background: var(--color-gold);
    color: var(--color-white);
    padding: 10px 28px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}

.nav-cta:hover {
    background: var(--color-burgundy);
    color: var(--color-white);
}

.navbar.scrolled .nav-cta {
    background: var(--color-burgundy);
}

.navbar.scrolled .nav-cta:hover {
    background: var(--color-charcoal);
}

/* ============================================================
   HERO
============================================================ */
.hero {
    position: relative;
    width: 1440px;
    height: 100vh;
    min-height: 820px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-charcoal);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center 30%;
    background-blend-mode: overlay;
    background-color: rgba(31, 27, 25, 0.55);
    border-radius: 0 !important;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 70% 20%, rgba(184, 138, 40, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 80%, rgba(125, 35, 39, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100 30 L108 60 L138 68 L108 76 L100 106 L92 76 L62 68 L92 60 Z' fill='%23B88A28' opacity='0.04'/%3E%3Cpath d='M100 130 L108 160 L138 168 L108 176 L100 206 L92 176 L62 168 L92 160 Z' fill='%23B88A28' opacity='0.04'/%3E%3Cpath d='M30 100 L60 92 L68 62 L76 92 L106 100 L76 108 L68 138 L60 108 Z' fill='%23B88A28' opacity='0.04'/%3E%3Cpath d='M170 100 L140 92 L132 62 L124 92 L94 100 L124 108 L132 138 L140 108 Z' fill='%23B88A28' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 240px 240px;
    pointer-events: none;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
    padding-top: 18vh;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-primary {
    display: inline-block;
    background: var(--color-gold);
    color: var(--color-white);
    padding: 16px 44px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    border-radius: 40px !important;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--color-burgundy);
    transform: translateY(-2px);
}

.btn-round {
    border-radius: 60px !important;
    padding: 16px 52px !important;
    letter-spacing: 0.08em;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--color-white);
    padding: 16px 44px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition);
    border-radius: 40px !important;
}

.btn-secondary:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-2px);
    background: rgba(184, 138, 40, 0.06);
}

.scroll-indicator {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: scrollBounce 2s infinite;
}

.scroll-indicator .line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent);
}

/* ============================================================
   SECTION COMMON
============================================================ */
section {
    position: relative;
    padding: 100px 0;
    background: var(--color-ivory);
}

section:nth-child(even) {
    background: var(--color-cream);
}

.section-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 12px;
    font-weight: 500;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-charcoal);
    margin-bottom: 16px;
}

.section-title .gold {
    color: var(--color-gold);
}

.section-sub {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--color-text-light);
    font-style: italic;
    max-width: 600px;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   SECTION 2 — SIGNATURE DISHES
============================================================ */
.signature-dishes {
    padding: 100px 0 80px;
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 56px;
}

.dish-card {
    background: var(--color-white);
    overflow: hidden;
    transition: all var(--transition);
    box-shadow: var(--shadow-soft);
    position: relative;
    cursor: default;
    border-radius: 12px;
}

.dish-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.dish-image {
    width: 100%;
    aspect-ratio: 1 / 0.9;
    background: var(--color-charcoal);
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.dish-image .placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, #2a2624 0%, #1f1b19 100%);
}

.dish-image .placeholder i {
    font-size: 4rem;
    opacity: 0.15;
}

.dish-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid transparent;
    transition: border var(--transition);
    pointer-events: none;
    border-radius: 12px;
}

.dish-card:hover::after {
    border-color: var(--color-gold);
}

.dish-info {
    padding: 28px 32px 32px;
}

.dish-info h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--color-charcoal);
}

.dish-info .dish-desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 12px;
    line-height: 1.6;
}

.dish-info .dish-price {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-burgundy);
    letter-spacing: 0.02em;
}

.dish-info .dish-price small {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--color-text-light);
}

/* ============================================================
   SECTION 3 — WHY US (ОБНОВЛЁННЫЙ СТИЛЬНЫЙ БЛОК)
============================================================ */
.why-us {
    background: var(--color-charcoal);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-us-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.why-us-left {
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    padding: 60px 48px;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 500px;
}

.why-us-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(31, 27, 25, 0.65);
    border-radius: 16px;
    backdrop-filter: blur(2px);
}

.why-us-left-content {
    position: relative;
    z-index: 1;
    color: #FFFFFF;
}

.why-us-left-content .section-label {
    color: rgba(255, 255, 255, 0.5);
}

.why-us-left-content .section-title {
    color: #FFFFFF;
    margin-bottom: 16px;
}

.why-us-left-content .section-title .gold {
    color: var(--color-gold);
}

.why-us-lead {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 520px;
}

.why-us-right {
    display: flex;
    align-items: center;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 48px;
    width: 100%;
}

.value-item {
    padding: 8px 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.value-item:hover {
    transform: translateY(-4px);
}

.value-item:hover .value-number {
    color: var(--color-gold);
    opacity: 1;
}

.value-item:hover .value-title {
    color: var(--color-gold);
}

.value-item:hover .value-desc {
    color: rgba(255, 255, 255, 0.85);
    transform: translateY(2px);
}

.value-number {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--color-gold);
    opacity: 0.4;
    display: block;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: 0.04em;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.value-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: #d0d0d0;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.value-desc {
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.5;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* ============================================================
   SECTION 4 — PROMOTIONS (КАРУСЕЛЬ)
============================================================ */
.promotions {
    padding: 100px 0;
}

.carousel-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 48px auto 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
}

.carousel-container {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
    min-width: 100%;
    aspect-ratio: 16 / 9;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(31, 27, 25, 0.5);
    backdrop-filter: blur(4px);
    border: none;
    color: var(--color-white);
    font-size: 2rem;
    padding: 12px 18px;
    cursor: pointer;
    transition: all var(--transition);
    z-index: 2;
    line-height: 1;
    border-radius: 40px !important;
}

.carousel-btn:hover {
    background: var(--color-gold);
    color: var(--color-charcoal);
}

.carousel-btn.prev {
    left: 16px;
}

.carousel-btn.next {
    right: 16px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    padding: 0;
}

.carousel-dots .dot.active {
    background: var(--color-gold);
    transform: scale(1.2);
}

/* ============================================================
   SECTION 5 — GALLERY
============================================================ */
.gallery-section {
    background: var(--color-cream);
    padding: 100px 0;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--color-charcoal);
    transition: all var(--transition);
    cursor: pointer;
    border-radius: 12px;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 2 / 2;
}

.gallery-item:nth-child(3) {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item:nth-child(4) {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item:nth-child(5) {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 2 / 1;
}

.gallery-item:nth-child(6) {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
}

.gallery-item .gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.06);
    background: linear-gradient(145deg, #2a2624, #1a1715);
    transition: transform var(--transition);
}

.gallery-item .gallery-placeholder i {
    font-size: 3.5rem;
    opacity: 0.1;
    transition: all var(--transition);
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.04);
}

.gallery-item:hover .gallery-placeholder i {
    opacity: 0.2;
    transform: scale(1.1);
}

.gallery-item .gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 28px;
    background: linear-gradient(0deg, rgba(31, 27, 25, 0.7) 0%, transparent 100%);
    color: var(--color-white);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0;
    transform: translateY(12px);
    transition: all var(--transition);
    pointer-events: none;
}

.gallery-item:hover .gallery-label {
    opacity: 1;
    transform: translateY(0);
}

/* color variations for placeholder */
.gallery-item:nth-child(1) .gallery-placeholder {
    background: linear-gradient(145deg, #3d2824, #251a17);
}
.gallery-item:nth-child(2) .gallery-placeholder {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
}
.gallery-item:nth-child(3) .gallery-placeholder {
    background: linear-gradient(145deg, #3a2a22, #221a16);
}
.gallery-item:nth-child(4) .gallery-placeholder {
    background: linear-gradient(145deg, #282420, #1c1815);
}
.gallery-item:nth-child(5) .gallery-placeholder {
    background: linear-gradient(145deg, #332a22, #1f1915);
}

/* ============================================================
   GALLERY CTA (кнопка "Вся галерея")
============================================================ */
.gallery-item.gallery-cta {
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(184, 138, 40, 0.15);
    transition: border 0.3s;
    cursor: pointer;
    overflow: hidden;
}

.gallery-item.gallery-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 27, 25, 0.6);
    backdrop-filter: blur(4px);
    transition: background 0.3s;
    z-index: 1;
}

.gallery-item.gallery-cta:hover::before {
    background: rgba(31, 27, 25, 0.4);
}

.gallery-item.gallery-cta:hover {
    border-color: #B88A28;
}

.gallery-cta-link {
    position: relative;
    z-index: 2;
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 30px;
    transition: all 0.3s ease;
    text-align: center;
}

.gallery-cta-link:hover {
    color: #B88A28;
    transform: scale(1.04);
}

.gallery-cta-link i {
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.gallery-cta-link:hover i {
    transform: translateX(6px);
}

/* ============================================================
   ДОПОЛНИТЕЛЬНЫЕ АНИМАЦИИ ДЛЯ КАРТОЧЕК ГАЛЕРЕИ
============================================================ */
.gallery-animate {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.gallery-animate:nth-child(1) { animation-delay: 0.1s; }
.gallery-animate:nth-child(4) { animation-delay: 0.3s; }
.gallery-animate:nth-child(5) { animation-delay: 0.5s; }

/* hover-эффект для всех карточек, кроме кнопки */
.gallery-item:not(.gallery-cta):hover .gallery-placeholder,
.gallery-item:not(.gallery-cta):hover img {
    transform: scale(1.04);
    transition: transform 0.6s ease;
}

/* для карточек с анимацией дополнительный эффект при наведении */
.gallery-animate:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(31, 27, 25, 0.15);
    transition: all 0.4s ease;
}

/* ============================================================
   SECTION 6 — ABOUT
============================================================ */
.about-section {
    padding: 100px 0;
    background: var(--color-ivory);
}

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

.about-image {
    aspect-ratio: 4 / 3;
    background: var(--color-charcoal);
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.about-image .placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.06);
    background: linear-gradient(145deg, #2a2624, #161311);
}

.about-image .placeholder i {
    font-size: 5rem;
    opacity: 0.1;
}

.about-image .about-deco {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(184, 138, 40, 0.15);
    border-radius: 50%;
    pointer-events: none;
}

.about-content .section-title {
    margin-bottom: 20px;
}

.about-content .about-text {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.9;
    margin-bottom: 24px;
    max-width: 520px;
}

.about-content .about-text strong {
    color: var(--color-charcoal);
    font-weight: 600;
}

.about-signature {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--color-gold);
    letter-spacing: 0.04em;
}

/* ============================================================
   SECTION 7 — TESTIMONIALS
============================================================ */
.testimonials {
    background: var(--color-cream);
    padding: 100px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.testimonial-card {
    background: var(--color-white);
    padding: 36px 40px 40px;
    transition: all var(--transition);
    border: 1px solid transparent;
    border-radius: 12px;
}

.testimonial-card:hover {
    border-color: rgba(184, 138, 40, 0.2);
    box-shadow: var(--shadow-soft);
}

.testimonial-card .stars {
    color: var(--color-gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.testimonial-card blockquote {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--color-charcoal);
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-card .author .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--color-charcoal);
    font-size: 0.9rem;
}

.testimonial-card .author .name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-charcoal);
}

.testimonial-card .author .source {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

/* ============================================================
   SECTION 8 — CONTACTS
============================================================ */
.contacts-section {
    padding: 0;
    background: var(--color-ivory);
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}

.contacts-map {
    background: var(--color-charcoal);
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.contacts-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.contacts-info {
    padding: 72px 64px;
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contacts-info .section-title {
    font-size: 2.4rem;
    margin-bottom: 8px;
}

.contacts-info .contacts-sub {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-text-light);
    font-style: italic;
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--color-text);
}

.contact-item i {
    width: 24px;
    color: var(--color-gold);
    font-size: 1.1rem;
    text-align: center;
}

.contact-item .label {
    color: var(--color-text-light);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    min-width: 80px;
}

.contact-item .value {
    font-weight: 400;
}

.btn-route {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--color-charcoal);
    color: var(--color-white);
    padding: 14px 36px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    width: fit-content;
    border-radius: 40px !important;
}

.btn-route:hover {
    background: var(--color-burgundy);
    transform: translateY(-2px);
}

.btn-route i {
    font-size: 1rem;
}

/* ============================================================
   SECTION 9 — FOOTER
============================================================ */
.footer {
    background: var(--color-charcoal);
    padding: 64px 0 40px;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.15;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .footer-logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
}

.footer-brand .footer-logo span {
    color: var(--color-gold);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 320px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-col h5 {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    transition: color var(--transition);
}

.footer-col ul a:hover {
    color: var(--color-gold);
}

.footer-col .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    padding: 4px 0;
}

.footer-col .footer-contact-item i {
    width: 18px;
    color: var(--color-gold);
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.25);
}

.footer-bottom .footer-social {
    display: flex;
    gap: 16px;
}

.footer-bottom .footer-social a {
    color: rgba(255, 255, 255, 0.2);
    font-size: 1rem;
    transition: color var(--transition);
    border-radius: 50%;
}

.footer-bottom .footer-social a:hover {
    color: var(--color-gold);
}

.footer-ornament {
    position: absolute;
    bottom: 0;
    right: 60px;
    font-family: var(--font-serif);
    font-size: 8rem;
    color: rgba(184, 138, 40, 0.03);
    line-height: 1;
    pointer-events: none;
    letter-spacing: 0.1em;
}

/* ============================================================
   МОДАЛЬНОЕ ОКНО БРОНИРОВАНИЯ
============================================================ */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 27, 25, 0.7);
    backdrop-filter: blur(6px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
}

.modal-window {
    background: #FFFFFF;
    max-width: 560px;
    width: 100%;
    padding: 48px 40px 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(31, 27, 25, 0.3);
    position: relative;
    animation: modalFadeIn 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid #E5D9CC;
}

.modal-window::-webkit-scrollbar {
    width: 6px;
}

.modal-window::-webkit-scrollbar-track {
    background: #F6F1E8;
    border-radius: 8px;
}

.modal-window::-webkit-scrollbar-thumb {
    background: #B88A28;
    border-radius: 8px;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: #6B6560;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.modal-close:hover {
    color: #7D2327;
}

.modal-title {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 700;
    color: #1F1B19;
    margin-bottom: 8px;
}

.modal-sub {
    color: #6B6560;
    font-size: 1rem;
    margin-bottom: 28px;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2A2624;
    margin-bottom: 6px;
    letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E5D9CC;
    border-radius: 40px;
    font-size: 1rem;
    background: #FDF9F4;
    transition: border 0.3s;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.form-group textarea {
    border-radius: 16px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #B88A28;
}

.btn-submit-booking {
    width: 100%;
    padding: 14px;
    background: #B88A28;
    color: #FFFFFF;
    border: none;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 8px;
}

.btn-submit-booking:hover {
    background: #7D2327;
}

.modal-footer-text {
    text-align: center;
    font-size: 0.75rem;
    color: #6B6560;
    margin-top: 16px;
}

/* ===== УПРАВЛЕНИЕ КОЛИЧЕСТВОМ ГОСТЕЙ ===== */
.guest-control {
    display: flex;
    align-items: center;
    gap: 12px;
}

.guest-control input[type="number"] {
    width: 80px;
    text-align: center;
    padding: 12px 8px;
    border: 1px solid #E5D9CC;
    border-radius: 40px;
    font-size: 1rem;
    background: #FDF9F4;
    outline: none;
    -moz-appearance: textfield;
    appearance: textfield;
}

.guest-control input[type="number"]::-webkit-inner-spin-button,
.guest-control input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.guest-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #E5D9CC;
    background: #FDF9F4;
    font-size: 1.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2A2624;
}

.guest-btn:hover {
    background: #B88A28;
    color: #FFFFFF;
    border-color: #B88A28;
}

/* ============================================================
   АДАПТИВ ДЛЯ WHY US
============================================================ */
@media (max-width: 1024px) {
    .why-us-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-us-left {
        min-height: 350px;
        padding: 40px 32px;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px 32px;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-us-left {
        min-height: 280px;
        padding: 32px 24px;
    }

    .why-us-left-content .section-title {
        font-size: 2.4rem;
    }

    .value-number {
        font-size: 2.4rem;
    }
}