:root {
    --primary: #8B5E3C;
    --primary-light: #C4956A;
    --primary-dark: #5C3A1E;
    --secondary: #F5EDE3;
    --accent: #D4853A;
    --bg-cream: #FDF8F2;
    --bg-ivory: #F5EDE3;
    --bg-warm: #E8D5C0;
    --bg-brown-dark: #5C3A1E;
    --bg-brown-light: #D2B48C;
    --text-dark: #3A2A1A;
    --text-light: #F5EDE3;
    --text-muted: #8B7B6B;
    --gradient-fire: linear-gradient(135deg, #D4853A, #8B5E3C);
    --gradient-dark: linear-gradient(180deg, #5C3A1E, #3A2218);
    --bg-deep: #5C3A1E;
    --shadow-warm: 0 4px 20px rgba(139, 94, 60, 0.15);
    --shadow-warm-lg: 0 15px 40px rgba(180, 120, 50, 0.25);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Nunito', 'Segoe UI', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

a:hover {
    color: var(--accent);
}

ul {
    list-style: none;
}

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

.section-label {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--accent);
    font-style: italic;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.section-header .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gradient-fire);
    border-radius: 2px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1.4;
}

.btn-primary {
    background: var(--gradient-fire);
    background-size: 200% 200%;
    background-position: 0% 50%;
    color: #fff;
    box-shadow: 0 4px 15px rgba(212, 133, 58, 0.3);
}

.btn-primary:hover {
    background-position: 100% 50%;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 133, 58, 0.45);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-fire);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-outline:hover {
    color: #fff;
    border-color: var(--accent);
}

.btn-outline:hover::before {
    width: 100%;
}

.required {
    color: #dc3545;
    font-weight: 700;
}

/* ===================== HEADER ===================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(253, 248, 242, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
    border-bottom: 1px solid rgba(139, 94, 60, 0.1);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(58, 42, 26, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: 1px;
    line-height: 1.2;
}

.logo-sub {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--accent);
    font-style: italic;
    letter-spacing: 2px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-fire);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 35px;
    height: 35px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.hamburger-line {
    width: 100%;
    height: 2.5px;
    background: var(--primary-dark);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================== HERO ===================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 75px;
}

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(58, 42, 26, 0.55) 0%,
        rgba(58, 42, 26, 0.65) 50%,
        rgba(58, 42, 26, 0.8) 100%);
    z-index: 1;
}

.hero-noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 128px 128px;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 30%;
    left: 30%;
    width: 40%;
    height: 40%;
    background: radial-gradient(ellipse, rgba(212, 133, 58, 0.15) 0%, transparent 70%);
    z-index: 2;
    animation: fireGlow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes fireGlow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    padding: 40px 20px;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-light);
    font-style: italic;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 7vw, 5rem);
    color: #fff;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

.hero-btn {
    font-size: 1.1rem;
    padding: 16px 40px;
}

/* ===================== SECTION DIVIDER ===================== */
.section-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 10;
    pointer-events: none;
    transform: none !important;
}

.section-divider svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* ===================== HISTORY ===================== */
.history {
    position: relative;
    background: var(--bg-ivory);
    padding: 80px 0 100px;
}

.history-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.history-photo {
    position: relative;
}

.history-photo img {
    width: 100%;
    border-radius: 4px;
    filter: sepia(0.4) grayscale(0.6) contrast(1.1);
    box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.5), var(--shadow-warm);
    border: 3px solid var(--primary-dark);
    transition: filter 0.8s ease;
}

.history-photo:hover img {
    filter: sepia(0.2) grayscale(0.2) contrast(1.05);
}

.history-photo-caption {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.history-timeline {
    position: relative;
    padding-left: 40px;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), var(--primary-light), var(--primary));
}

.timeline-item {
    position: relative;
    margin-bottom: 35px;
    padding-left: 15px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    border: 3px solid var(--bg-ivory);
    box-shadow: 0 0 0 2px var(--accent);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 5px;
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===================== STATS ===================== */
.stats {
    position: relative;
    background: var(--gradient-dark);
    padding: 60px 0 80px;
}

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

.stat-item {
    padding: 20px 10px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--accent);
    font-variant-numeric: tabular-nums;
    min-width: 120px;
    display: inline-block;
    text-align: center;
    line-height: 1.1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent);
    display: inline;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 8px;
}

/* ===================== PIZZAS ===================== */
.pizzas {
    position: relative;
    background: var(--bg-ivory);
    padding: 80px 0 100px;
}

.pizzas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pizza-card {
    background: #fff;
    border-radius: 12px;
    overflow: visible;
    box-shadow: var(--shadow-warm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.pizza-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-fire);
    border-radius: 0 0 12px 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pizza-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-warm-lg);
}

.pizza-card:hover::after {
    opacity: 1;
}

.pizza-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.pizza-image-wrap img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pizza-card:hover .pizza-image-wrap img {
    transform: scale(1.05);
}

.pizza-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(212, 133, 58, 0.9);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 5;
    backdrop-filter: blur(5px);
}

.pizza-info {
    padding: 20px 22px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pizza-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-dark);
    font-style: italic;
    margin-bottom: 2px;
    min-height: 40px;
    display: flex;
    align-items: center;
}

.pizza-name-ru {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pizza-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex-grow: 1;
}

/* ===================== OVEN ===================== */
.oven {
    position: relative;
    background: var(--bg-warm);
    padding: 80px 0 100px;
}

.oven-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.oven-photo img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-warm-lg);
    transition: filter 0.5s ease;
}

.oven-photo:hover img {
    filter: brightness(1.05);
}

.oven-title {
    text-align: left;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.oven-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-fire);
    border-radius: 2px;
}

.oven-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 30px;
}

.oven-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.oven-feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.oven-feature-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 133, 58, 0.15);
    color: var(--accent);
    font-size: 1.3rem;
    transition: var(--transition);
}

.oven-feature:hover .oven-feature-icon {
    background: var(--gradient-fire);
    color: #fff;
    transform: scale(1.1);
}

.fire-glow {
    animation: fireIconGlow 2s ease-in-out infinite;
}

@keyframes fireIconGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(212, 133, 58, 0.2); }
    50% { box-shadow: 0 0 25px rgba(212, 133, 58, 0.5); }
}

.oven-feature-text h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.oven-feature-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===================== CHEF ===================== */
.chef {
    position: relative;
    background: var(--bg-ivory);
    padding: 80px 0 100px;
}

.chef-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.chef-card {
    display: flex;
    gap: 30px;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-warm);
}

.chef-photo {
    min-width: 180px;
    max-width: 180px;
}

.chef-photo img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.chef-details {
    display: flex;
    flex-direction: column;
}

.chef-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.chef-role {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chef-quote {
    position: relative;
    padding: 15px 20px;
    background: var(--bg-cream);
    border-left: 3px solid var(--accent);
    border-radius: 0 8px 8px 0;
    margin-bottom: 18px;
}

.chef-quote-icon {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 5px;
    display: block;
}

.chef-quote p {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
}

.chef-bio {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.chef-family {
    position: relative;
}

.chef-family img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-warm);
    object-fit: cover;
    aspect-ratio: 4/3;
}

.chef-family-caption {
    text-align: center;
    margin-top: 12px;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===================== TESTIMONIALS ===================== */
.testimonials {
    position: relative;
    background: var(--bg-brown-light);
    padding: 80px 0 100px;
}

.testimonials .section-title {
    color: var(--primary-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: var(--shadow-warm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-warm-lg);
}

.testimonial-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
}

.testimonial-person {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

.testimonial-text {
    font-size: 0.93rem;
    color: var(--text-dark);
    line-height: 1.7;
    font-style: italic;
    flex-grow: 1;
}

/* ===================== GALLERY ===================== */
.gallery {
    position: relative;
    background: var(--bg-ivory);
    padding: 80px 0 100px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(58, 42, 26, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-overlay i {
    color: #fff;
    font-size: 1.8rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ===================== CONTACT ===================== */
.contact {
    position: relative;
    background: var(--bg-brown-dark);
    padding: 80px 0 80px;
}

.contact .section-label,
.contact .section-title {
    color: var(--text-light);
}

.contact .section-title::after {
    background: var(--accent);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-map iframe {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    border: 2px solid rgba(196, 149, 106, 0.3);
    box-shadow: var(--shadow-warm);
}

.contact-info {
    margin-top: 25px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
}

.contact-info-item i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 3px;
    min-width: 20px;
}

.contact-info-item h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 2px;
}

.contact-info-item p,
.contact-info-item a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.contact-info-item a:hover {
    color: var(--accent);
}

.contact-route-btn {
    margin-top: 10px;
    border-color: var(--accent);
    color: var(--accent);
}

.contact-route-btn:hover {
    color: #fff;
}

.contact-form-wrap {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(196, 149, 106, 0.2);
    border-radius: 12px;
    padding: 30px;
    backdrop-filter: blur(5px);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 5px;
}

.form-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-light);
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--primary-light);
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: var(--accent);
}

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

.form-submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
}

/* ===================== FOOTER ===================== */
.footer {
    background: #2A1A0E;
    padding: 50px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-light);
    display: block;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 15px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ===================== EXIT POPUP ===================== */
.exit-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.exit-popup.active {
    display: flex;
}

.exit-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.exit-popup-content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.4s ease;
}

@keyframes popupSlideIn {
    from { opacity: 0; transform: translateY(-30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.exit-popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.exit-popup-close:hover {
    color: var(--primary-dark);
}

.exit-popup-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.exit-popup-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.exit-popup-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.exit-popup-btn {
    padding: 14px 35px;
}

/* ===================== LIGHTBOX ===================== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* ===================== SCROLL TOP ===================== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--gradient-fire);
    color: #fff;
    border: none;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 133, 58, 0.3);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 133, 58, 0.5);
}

/* ===================== FLOATING CALL ===================== */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--gradient-fire);
    color: #fff;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(212, 133, 58, 0.3);
    transition: var(--transition);
    animation: callPulse 2s ease-in-out infinite;
}

.floating-call-btn:hover {
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 133, 58, 0.5);
}

@keyframes callPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(212, 133, 58, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(212, 133, 58, 0.6); }
}

/* ===================== TOAST ===================== */
.toast-notification {
    position: fixed;
    top: 20px;
    right: -350px;
    z-index: 9999;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    font-family: var(--font-body);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    max-width: 300px;
    transition: right 0.3s ease-out;
}

.toast-notification.show {
    right: 20px;
}

.toast-notification.success {
    background: #28a745;
}

.toast-notification.error {
    background: #dc3545;
}

/* ===================== ANIMATIONS ===================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

.no-js .fade-in {
    opacity: 1;
    transform: none;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .history-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .history-photo img {
        max-height: 350px;
        object-fit: cover;
    }

    .oven-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .chef-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--primary-dark);
        z-index: 999;
        transition: right 0.4s ease;
        padding-top: 80px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        display: block;
        color: rgba(255, 255, 255, 0.9);
        padding: 15px 30px;
        font-size: 1.05rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover {
        color: var(--accent);
        background: rgba(255, 255, 255, 0.05);
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .pizzas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .chef-card {
        flex-direction: column;
        text-align: center;
    }

    .chef-photo {
        min-width: unset;
        max-width: 200px;
        margin: 0 auto;
    }

    .chef-quote {
        text-align: left;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .scroll-top-btn,
    .floating-call-btn {
        width: 48px;
        height: 48px;
        bottom: 20px;
    }

    .scroll-top-btn {
        right: 20px;
    }

    .floating-call-btn {
        left: 20px;
    }

    .section-divider {
        height: 50px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        min-height: 90vh;
    }

    .hero-content {
        padding: 30px 10px;
    }

    .hero-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }

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

    .stat-number {
        font-size: 2rem;
        min-width: 80px;
    }

    .pizzas-grid {
        grid-template-columns: 1fr;
    }

    .pizza-image-wrap img {
        height: 200px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .exit-popup-content {
        padding: 30px 20px;
    }

    .contact-form-wrap {
        padding: 20px;
    }

    .toast-notification {
        right: -100%;
        max-width: calc(100% - 40px);
    }

    .toast-notification.show {
        right: 20px;
    }

    .section-divider {
        height: 40px;
    }

    .history,
    .pizzas,
    .oven,
    .chef,
    .testimonials,
    .gallery,
    .contact {
        padding: 60px 0 70px;
    }

    .stats {
        padding: 40px 0 55px;
    }
}

@media (max-width: 380px) {
    .logo-text {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.6rem;
    }
}