@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;700;800&family=Bebas+Neue&family=Space+Mono:wght@400;700&display=swap');

:root {
    --warm-cream: #FEF3C7;
    --soft-linen: #FFFBEB;
    --honey-white: #FEF9E7;
    --deep-charcoal: #1F2938;
    --warm-slate: #374151;
    --soft-taupe: #6B7280;
    --culinary-red: #DC2626;
    --deep-crimson: #B91C1C;
    --font-playfair: 'Playfair Display', Georgia, serif;
    --font-inter: 'Inter', -apple-system, sans-serif;
    --font-jetbrains: 'JetBrains Mono', monospace;
    --font-bebas: 'Bebas Neue', sans-serif;
    --font-space: 'Space Mono', monospace;
    --organic-radius-1: 88px 72px 96px 72px;
    --organic-radius-2: 72px 88px 96px 72px;
    --organic-radius-3: 96px 88px 72px 96px;
    --organic-radius-4: 72px 96px 88px 96px;
    --transition-smooth: 0.25s ease-out;
    --transition-organic: 0.85s cubic-bezier(0.34, 1.56, 0.64, 1);
    --shadow-organic: 0 32px 128px rgba(220, 38, 38, 0.12);
    --shadow-organic-hover: 0 64px 256px rgba(220, 38, 38, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-inter);
    font-size: 17px;
    line-height: 1.75;
    color: var(--warm-slate);
    background-color: var(--warm-cream);
    overflow-x: hidden;
}

strong, p {
    color: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

@media (min-width: 768px) {
    .container {
        padding: 0 48px;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 80px;
    }
}

.organic-grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: 
        repeating-linear-gradient(0deg, rgba(220, 38, 38, 0.012) 0 1px, transparent 1px calc(100% - 1px)),
        repeating-linear-gradient(90deg, rgba(220, 38, 38, 0.012) 0 1px, transparent 1px calc(100% - 1px));
    background-size: 64px 64px;
    animation: grid-drift 20s ease-in-out infinite;
}

@keyframes grid-drift {
    0%, 100% { background-position: 0 0; }
    50% { background-position: 32px 32px; }
}

.organic-dot {
    position: absolute;
    width: 5px;
    height: 5px;
    background: var(--culinary-red);
    border-radius: 50%;
    opacity: 0.18;
    animation: pulse-dot 2.6s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 0.18; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.command-palette-trigger {
    position: fixed;
    top: 32px;
    left: 32px;
    z-index: 9999;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(254, 243, 199, 0.97));
    backdrop-filter: blur(48px);
    -webkit-backdrop-filter: blur(48px);
    border: 2.5px solid rgba(220, 38, 38, 0.3);
    border-radius: 40px;
    box-shadow: 0 20px 80px rgba(220, 38, 38, 0.15);
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.command-palette-trigger:hover {
    transform: scale(1.08);
    box-shadow: 0 24px 96px rgba(220, 38, 38, 0.25);
}

.command-palette-trigger.scrolled {
    transform: translateX(-12px);
    opacity: 0.95;
}

.command-palette-trigger svg {
    width: 32px;
    height: 32px;
    stroke: var(--culinary-red);
    stroke-width: 3;
    fill: none;
}

.command-palette-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(254, 249, 231, 0.99);
    backdrop-filter: blur(48px);
    -webkit-backdrop-filter: blur(48px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.command-palette-overlay.active {
    opacity: 1;
    visibility: visible;
}

.command-palette-modal {
    position: fixed;
    top: 80px;
    left: 80px;
    width: 520px;
    max-height: 85vh;
    background: rgba(255, 255, 255, 0.99);
    backdrop-filter: blur(52px);
    -webkit-backdrop-filter: blur(52px);
    border-left: 4px solid rgba(220, 38, 38, 0.4);
    box-shadow: -24px 0 120px rgba(220, 38, 38, 0.2);
    border-radius: 24px;
    padding: 32px;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.command-palette-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.command-palette-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(220, 38, 38, 0.1);
}

.command-palette-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.command-palette-logo svg {
    width: 40px;
    height: 40px;
    stroke: var(--culinary-red);
    stroke-width: 3;
    fill: none;
}

.command-palette-logo-text {
    font-family: var(--font-playfair);
    font-weight: 900;
    font-size: 18px;
    letter-spacing: -0.015em;
    color: var(--deep-charcoal);
}

.command-palette-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform var(--transition-smooth);
}

.command-palette-close:hover {
    transform: scale(0.9);
}

.command-palette-close svg {
    width: 24px;
    height: 24px;
    stroke: var(--culinary-red);
    stroke-width: 3;
}

.command-palette-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.command-palette-nav a {
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 16px;
    color: var(--deep-charcoal);
    padding: 8px 0;
    position: relative;
    transition: all var(--transition-smooth);
}

.command-palette-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--culinary-red);
    transition: width var(--transition-smooth);
}

.command-palette-nav a:hover {
    color: var(--culinary-red);
}

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

.command-palette-cta {
    display: block;
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--culinary-red), var(--deep-crimson));
    color: white;
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    border-radius: 44px;
    box-shadow: 0 16px 72px rgba(220, 38, 38, 0.45);
    transition: all var(--transition-smooth);
}

.command-palette-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 80px rgba(220, 38, 38, 0.5);
}

.page-content {
    padding-left: 112px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .command-palette-trigger {
        top: auto;
        bottom: 32px;
        left: 32px;
    }
    
    .page-content {
        padding-left: 0;
        padding-bottom: 120px;
    }
    
    .command-palette-modal {
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        max-height: 85vh;
        border-radius: 48px 48px 0 0;
        border-left: none;
        border-top: 4px solid rgba(220, 38, 38, 0.4);
    }
}

.hero-section {
    min-height: 100vh;
    background-color: var(--warm-cream);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(220, 38, 38, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 120px 80px 180px 80px;
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.hero-text {
    max-width: 560px;
}

.hero-title {
    font-family: var(--font-playfair);
    font-weight: 900;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 0.95;
    letter-spacing: -0.025em;
    color: var(--deep-charcoal);
    margin-bottom: 20px;
    opacity: 0;
    animation: reveal-clash 0.7s ease-out 0.3s forwards;
}

@keyframes reveal-clash {
    0% { opacity: 0; transform: translateX(-30px); }
    100% { opacity: 1; transform: translateX(0); }
}

.hero-title-line {
    display: block;
    overflow: hidden;
}

.hero-title-word {
    display: inline-block;
    animation: slide-up 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
    transform: translateY(100%);
}

@keyframes slide-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-underline {
    width: 200px;
    height: 6px;
    background: linear-gradient(90deg, var(--culinary-red), var(--deep-crimson));
    border-radius: 3px;
    margin-top: 20px;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-family: var(--font-bebas);
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 0.95;
    letter-spacing: 0.04em;
    color: var(--culinary-red);
    margin-bottom: 8px;
}

.hero-tagline {
    font-family: var(--font-space);
    font-size: 13px;
    color: rgba(55, 65, 81, 0.5);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 17px;
    line-height: 1.75;
    color: var(--warm-slate);
    margin-bottom: 28px;
    max-width: 480px;
}

.hero-dots {
    display: flex;
    gap: 14px;
    margin-bottom: 28px;
}

.hero-dots .organic-dot {
    position: relative;
    width: 8px;
    height: 8px;
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 44px;
    background: linear-gradient(135deg, var(--culinary-red), var(--deep-crimson));
    color: white;
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.01em;
    border-radius: 40px;
    box-shadow: 0 16px 64px rgba(220, 38, 38, 0.4);
    transition: all var(--transition-smooth);
    white-space: nowrap;
    min-height: 60px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 20px 80px rgba(220, 38, 38, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: transparent;
    color: var(--deep-charcoal);
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 16px;
    border: 2.5px solid var(--deep-charcoal);
    border-radius: 40px;
    transition: all var(--transition-smooth);
    white-space: nowrap;
    min-height: 60px;
}

.btn-secondary:hover {
    border-color: var(--culinary-red);
    color: var(--culinary-red);
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.15);
}

.hero-visual {
    position: relative;
    height: 540px;
}

.hero-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 16px;
    height: 100%;
}

.bento-item {
    background: var(--soft-linen);
    border: 2px solid rgba(220, 38, 38, 0.2);
    border-radius: var(--organic-radius-1);
    box-shadow: var(--shadow-organic);
    overflow: hidden;
    position: relative;
    transition: all var(--transition-organic);
}

.bento-item:hover {
    z-index: 10;
    transform: scale(1.02);
}

.bento-item:nth-child(1) {
    grid-row: span 2;
}

.bento-item:nth-child(1) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1) contrast(1.12);
}

.bento-item:nth-child(2) {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--culinary-red), var(--deep-crimson));
    border-radius: 72px 96px 88px 72px;
}

.bento-item:nth-child(3) {
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(220, 38, 38, 0.03) 10px, rgba(220, 38, 38, 0.03) 20px);
    border-radius: 96px 88px 72px 96px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-item:nth-child(4) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 72px 96px 88px 96px;
}

.bento-item:nth-child(5) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px;
    background: rgba(220, 38, 38, 0.06);
    border-radius: 88px 96px 72px 88px;
}

.bento-icon {
    width: 48px;
    height: 48px;
    stroke: var(--culinary-red);
    stroke-width: 3;
    fill: none;
}

.hero-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(48px);
    -webkit-backdrop-filter: blur(48px);
    border: 2px solid rgba(220, 38, 38, 0.2);
    border-radius: 72px 88px 96px 72px;
    padding: 16px 20px;
    box-shadow: var(--shadow-organic);
    z-index: 5;
}

.hero-card-1 {
    top: -20px;
    right: -20px;
}

.hero-card-2 {
    bottom: 40px;
    right: -40px;
}

.hero-card-label {
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 12px;
    color: var(--deep-charcoal);
}

.hero-card-value {
    font-family: var(--font-space);
    font-weight: 700;
    font-size: 11px;
    color: var(--culinary-red);
    margin-top: 4px;
}

@media (max-width: 1024px) {
    .hero-content {
        padding: 100px 24px 120px 24px;
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-title {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }
}

.section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .section {
        padding: 96px 0;
    }
}

.section-cream {
    background-color: var(--warm-cream);
}

.section-linen {
    background-color: var(--soft-linen);
}

.section-honey {
    background-color: var(--honey-white);
}

.section-sticky {
    margin-bottom: -80px;
    padding-bottom: calc(96px + 80px);
}

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

.section-title {
    font-family: var(--font-playfair);
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 0.95;
    letter-spacing: -0.025em;
    color: var(--deep-charcoal);
    margin-bottom: 16px;
}

.section-subtitle {
    font-family: var(--font-jetbrains);
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 0.92;
    color: var(--culinary-red);
    margin-bottom: 16px;
}

.section-description {
    font-size: 17px;
    color: var(--warm-slate);
    max-width: 600px;
    margin: 0 auto;
}

.node-graph {
    position: relative;
    min-height: 540px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.node-center {
    position: relative;
    width: 140px;
    height: 140px;
    background: rgba(220, 38, 38, 0.06);
    border: 2.5px solid var(--culinary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-organic);
    z-index: 10;
}

.node-center::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2.5px solid rgba(185, 28, 28, 0.2);
    border-radius: 50%;
}

.node-center::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border: 2.5px solid rgba(220, 38, 38, 0.1);
    border-radius: 50%;
}

.node-center svg {
    width: 56px;
    height: 56px;
    stroke: white;
    stroke-width: 2.5;
    fill: none;
}

.nodes-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.node-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(48px);
    -webkit-backdrop-filter: blur(48px);
    border: 2px solid rgba(220, 38, 38, 0.15);
    border-radius: var(--organic-radius-2);
    padding: 16px 20px;
    box-shadow: var(--shadow-organic);
    transition: all var(--transition-organic);
    max-width: 160px;
}

.node-card:hover {
    z-index: 75;
    transform: scale(1.12);
    box-shadow: var(--shadow-organic-hover);
}

.node-icon {
    width: 40px;
    height: 40px;
    stroke: var(--culinary-red);
    stroke-width: 3;
    fill: none;
    margin-bottom: 10px;
}

.node-title {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 14px;
    color: var(--deep-charcoal);
    margin-bottom: 4px;
}

.node-text {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 12px;
    color: var(--warm-slate);
    line-height: 1.5;
}

.node-value {
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 28px;
    color: var(--culinary-red);
    margin-top: 8px;
}

@media (max-width: 1024px) {
    .node-graph {
        flex-direction: column;
        gap: 24px;
    }
    
    .nodes-container {
        position: static;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    
    .node-card {
        position: static;
        max-width: 100%;
    }
    
    .node-center {
        display: none;
    }
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--culinary-red), var(--deep-crimson), var(--culinary-red));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 40px);
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 40px);
}

.timeline-card {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(48px);
    -webkit-backdrop-filter: blur(48px);
    border: 2px solid rgba(220, 38, 38, 0.15);
    border-radius: var(--organic-radius-2);
    padding: 24px 28px;
    box-shadow: var(--shadow-organic);
    max-width: 380px;
    transition: all var(--transition-organic);
}

.timeline-card:hover {
    z-index: 75;
    transform: scale(1.12) translateY(-4px);
    box-shadow: var(--shadow-organic-hover);
}

.timeline-icon {
    width: 44px;
    height: 44px;
    stroke: var(--culinary-red);
    stroke-width: 3;
    fill: none;
    margin-bottom: 12px;
}

.timeline-title {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 18px;
    color: var(--deep-charcoal);
    margin-bottom: 6px;
}

.timeline-text {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 13px;
    color: var(--warm-slate);
    line-height: 1.5;
}

.timeline-number {
    position: absolute;
    top: 14px;
    right: 20px;
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 32px;
    color: rgba(220, 38, 38, 0.18);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: var(--culinary-red);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px var(--culinary-red);
}

@media (max-width: 768px) {
    .timeline-line {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
        justify-content: flex-start;
    }
    
    .timeline-card {
        max-width: 100%;
    }
    
    .timeline-dot {
        left: 20px;
    }
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (min-width: 768px) {
    .advantages-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.advantage-card {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(48px);
    -webkit-backdrop-filter: blur(48px);
    border: 2px solid rgba(220, 38, 38, 0.15);
    border-radius: var(--organic-radius-2);
    padding: 24px;
    box-shadow: var(--shadow-organic);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-card:hover {
    flex-grow: 2.6;
    background: white;
    border-color: rgba(220, 38, 38, 0.3);
    z-index: 75;
    transform: scale(1.12);
}

.advantage-icon {
    width: 44px;
    height: 44px;
    stroke: var(--culinary-red);
    stroke-width: 3;
    fill: none;
    margin-bottom: 14px;
}

.advantage-title {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 15px;
    color: var(--deep-charcoal);
    margin-bottom: 6px;
}

.advantage-text {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 12px;
    color: rgba(55, 65, 81, 0.7);
    line-height: 1.5;
}

.advantage-value {
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 48px;
    color: var(--culinary-red);
    margin-top: 10px;
}

@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage-card {
        margin-bottom: -64px;
    }
    
    .advantage-card:last-child {
        margin-bottom: 0;
    }
}

.masonry-grid {
    columns: 1;
    column-gap: 24px;
}

@media (min-width: 768px) {
    .masonry-grid {
        columns: 2;
    }
}

@media (min-width: 1200px) {
    .masonry-grid {
        columns: 4;
    }
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 24px;
}

.masonry-card {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(48px);
    -webkit-backdrop-filter: blur(48px);
    border: 2px solid rgba(220, 38, 38, 0.15);
    border-radius: var(--organic-radius-2);
    overflow: hidden;
    box-shadow: var(--shadow-organic);
    transition: all var(--transition-organic);
}

.masonry-card:hover {
    transform: scale(1.03);
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 0 40px 160px rgba(220, 38, 38, 0.15);
    z-index: 75;
}

.masonry-card-tall .masonry-image {
    height: 200px;
}

.masonry-image {
    width: 100%;
    object-fit: cover;
}

.masonry-red-bar {
    height: 5px;
    background: linear-gradient(90deg, var(--culinary-red), var(--deep-crimson));
}

.masonry-content {
    padding: 20px 24px;
}

.masonry-title {
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 16px;
    color: var(--deep-charcoal);
    margin-bottom: 8px;
}

.masonry-category {
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 11px;
    color: var(--culinary-red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.masonry-description {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 13px;
    color: rgba(55, 65, 81, 0.7);
    line-height: 1.6;
}

.carousel-3d {
    position: relative;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1400px;
    margin: 48px 0 88px;
}

.carousel-track {
    position: relative;
    width: 280px;
    height: 360px;
    transform-style: preserve-3d;
}

.team-card {
    position: absolute;
    width: 280px;
    min-height: 300px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(48px);
    -webkit-backdrop-filter: blur(48px);
    border: 2px solid rgba(220, 38, 38, 0.18);
    border-radius: var(--organic-radius-2);
    box-shadow: var(--shadow-organic);
    overflow: hidden;
    transition: all var(--transition-organic);
}

.team-card.center {
    transform: scale(1.16);
    z-index: 100;
}

.team-photo {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.team-badge {
    position: absolute;
    top: 92px;
    right: 20px;
    width: 36px;
    height: 36px;
    stroke: var(--culinary-red);
    stroke-width: 3;
    fill: none;
}

.team-content {
    padding: 16px 20px;
}

.team-title {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 14px;
    color: var(--deep-charcoal);
}

.team-text {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 12px;
    color: var(--warm-slate);
    line-height: 1.5;
    margin-top: 4px;
}

.team-accent {
    height: 4px;
    width: 48px;
    background: linear-gradient(90deg, var(--culinary-red), var(--deep-crimson));
    margin: 12px 20px;
    border-radius: 2px;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 2px solid rgba(220, 38, 38, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-smooth);
    z-index: 50;
}

.carousel-nav:hover {
    background: white;
    box-shadow: 0 0 24px rgba(220, 38, 38, 0.3);
}

.carousel-nav svg {
    width: 20px;
    height: 20px;
    stroke: var(--culinary-red);
    stroke-width: 3;
}

.carousel-nav-prev {
    left: 10%;
}

.carousel-nav-next {
    right: 10%;
}

@media (max-width: 768px) {
    .carousel-3d {
        height: auto;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }
    
    .carousel-track {
        transform-style: flat;
        display: flex;
        gap: 16px;
    }
    
    .team-card {
        position: static;
        flex-shrink: 0;
        scroll-snap-align: center;
    }
    
    .carousel-nav {
        display: none;
    }
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(48px);
    -webkit-backdrop-filter: blur(48px);
    border: 2px solid rgba(220, 38, 38, 0.2);
    border-radius: var(--organic-radius-2);
    margin-bottom: -64px;
    overflow: hidden;
    box-shadow: var(--shadow-organic);
    transition: all var(--transition-organic);
    position: relative;
    z-index: 1;
}

.faq-item:hover {
    z-index: 75;
    transform: scale(1.02);
}

.faq-item:nth-child(1) { z-index: 5; }
.faq-item:nth-child(2) { z-index: 4; }
.faq-item:nth-child(3) { z-index: 3; }
.faq-item:nth-child(4) { z-index: 2; }

.faq-header {
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
}

.faq-icon {
    width: 44px;
    height: 44px;
    stroke: var(--culinary-red);
    stroke-width: 3;
    fill: none;
    flex-shrink: 0;
}

.faq-question {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 17px;
    color: var(--deep-charcoal);
    flex: 1;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 24px;
    color: var(--culinary-red);
    transition: transform var(--transition-smooth);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-item.active .faq-content {
    max-height: 500px;
}

.faq-answer {
    padding: 0 28px 28px;
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 14px;
    color: var(--warm-slate);
    line-height: 1.65;
}

@media (max-width: 768px) {
    .faq-item {
        margin-bottom: 16px;
    }
}

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

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 0 48px;
    }
}

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.testimonial-card {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(48px);
    -webkit-backdrop-filter: blur(48px);
    border: 2px solid rgba(220, 38, 38, 0.12);
    border-radius: 56px 72px 80px 64px;
    cursor: pointer;
    transition: all 0.35s;
}

.testimonial-card:hover {
    background: white;
    border-color: rgba(220, 38, 38, 0.25);
    box-shadow: 0 24px 96px rgba(220, 38, 38, 0.1);
    transform: scale(1.02);
}

.testimonial-chevron {
    width: 16px;
    height: 16px;
    stroke: rgba(220, 38, 38, 0.4);
    stroke-width: 2;
    fill: none;
    margin-right: 12px;
    flex-shrink: 0;
}

.testimonial-name {
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 14px;
    color: var(--deep-charcoal);
    flex: 1;
}

.testimonial-arrow {
    width: 16px;
    height: 16px;
    stroke: rgba(55, 65, 81, 0.3);
    stroke-width: 2;
    fill: none;
    transition: all 0.2s;
}

.testimonial-card:hover .testimonial-arrow {
    stroke: var(--culinary-red);
    transform: translateX(4px);
}

.testimonials-reveal {
    position: relative;
    min-height: 360px;
}

.reveal-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(28px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal-content.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 64px 80px 72px 64px;
    box-shadow: var(--shadow-organic);
}

.reveal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(220, 38, 38, 0.08) 0%, transparent 40%);
    border-radius: 64px 80px 72px 64px;
}

.reveal-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 10px 18px;
    background: rgba(220, 38, 38, 0.9);
    color: white;
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 16px;
    border-radius: 24px;
}

@media (max-width: 1024px) {
    .testimonials-reveal {
        display: none;
    }
}

.contacts-split {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 100vh;
}

@media (min-width: 1024px) {
    .contacts-split {
        grid-template-columns: 1fr 1fr;
    }
}

.contacts-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(48px);
    -webkit-backdrop-filter: blur(48px);
    border-right: 4px solid rgba(220, 38, 38, 0.35);
    box-shadow: 32px 0 128px rgba(220, 38, 38, 0.2);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contacts-title {
    font-family: var(--font-playfair);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 0.95;
    letter-spacing: -0.015em;
    color: var(--deep-charcoal);
    margin-bottom: 20px;
}

.contacts-text {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 15px;
    color: var(--warm-slate);
    line-height: 1.7;
    max-width: 360px;
    margin-bottom: 20px;
}

.contacts-decor {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--culinary-red), var(--deep-crimson));
    border-radius: 3px;
    margin: 20px 0;
}

.contacts-markers {
    display: flex;
    gap: 8px;
    margin: 20px 0;
}

.contacts-marker {
    width: 8px;
    height: 8px;
    background: var(--culinary-red);
    border-radius: 50%;
}

.contacts-cta {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--culinary-red), var(--deep-crimson));
    color: white;
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 14px;
    border-radius: 32px;
    box-shadow: 0 12px 48px rgba(220, 38, 38, 0.35);
    transition: all var(--transition-smooth);
    margin-top: 28px;
    text-align: center;
}

.contacts-cta:hover {
    transform: translateY(-2px) scale(1.06);
}

.contacts-scroll {
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 56px 40px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(48px);
    -webkit-backdrop-filter: blur(48px);
    border: 2px solid rgba(220, 38, 38, 0.15);
    border-radius: var(--organic-radius-2);
    padding: 20px;
    box-shadow: 0 24px 96px rgba(220, 38, 38, 0.1);
}

.contact-icon {
    width: 44px;
    height: 44px;
    stroke: var(--culinary-red);
    stroke-width: 3;
    fill: none;
    margin-bottom: 12px;
}

.contact-label {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 15px;
    color: var(--deep-charcoal);
    margin-bottom: 6px;
}

.contact-value {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 13px;
    color: var(--warm-slate);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .contacts-sticky {
        position: static;
        height: auto;
        border-right: none;
        border-bottom: 4px solid rgba(220, 38, 38, 0.35);
    }
}

.form-section {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.form-label {
    display: block;
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 14px;
    color: var(--deep-charcoal);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-inter);
    font-size: 16px;
    color: var(--deep-charcoal);
    background: white;
    border: 2px solid rgba(220, 38, 38, 0.2);
    border-radius: 16px;
    transition: all var(--transition-smooth);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--culinary-red);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

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

.form-submit {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--culinary-red), var(--deep-crimson));
    color: white;
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 16px;
    border-radius: 40px;
    box-shadow: 0 12px 48px rgba(220, 38, 38, 0.35);
    transition: all var(--transition-smooth);
    cursor: pointer;
    min-height: 56px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 64px rgba(220, 38, 38, 0.45);
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.97);
    border-radius: var(--organic-radius-2);
    box-shadow: var(--shadow-organic);
}

.form-success.active {
    display: block;
}

.form-success-title {
    font-family: var(--font-playfair);
    font-weight: 700;
    font-size: 24px;
    color: var(--deep-charcoal);
    margin-bottom: 12px;
}

.form-success-text {
    font-family: var(--font-inter);
    font-size: 16px;
    color: var(--warm-slate);
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--organic-radius-2);
    overflow: hidden;
    box-shadow: var(--shadow-organic);
    margin-top: 40px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

footer {
    background: var(--deep-charcoal);
    color: white;
    padding: 64px 0 32px;
    position: relative;
    z-index: 10;
}

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

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo svg {
    width: 40px;
    height: 40px;
    stroke: var(--culinary-red);
    stroke-width: 3;
    fill: none;
}

.footer-logo-text {
    font-family: var(--font-playfair);
    font-weight: 900;
    font-size: 18px;
    letter-spacing: -0.015em;
    color: white;
}

.footer-description {
    font-family: var(--font-inter);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-title {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 14px;
    color: white;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.footer-links a {
    font-family: var(--font-inter);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--culinary-red);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-contact-icon {
    width: 20px;
    height: 20px;
    stroke: var(--culinary-red);
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-text {
    font-family: var(--font-inter);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    font-family: var(--font-inter);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-family: var(--font-inter);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-smooth);
}

.footer-legal a:hover {
    color: var(--culinary-red);
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(48px);
    -webkit-backdrop-filter: blur(48px);
    border: 2px solid rgba(220, 38, 38, 0.2);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 24px 96px rgba(0, 0, 0, 0.15);
    z-index: 9998;
    opacity: 1;
    visibility: visible;
    transition: all 0.4s ease;
}

.cookie-banner.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.cookie-title {
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 16px;
    color: var(--deep-charcoal);
    margin-bottom: 12px;
}

.cookie-text {
    font-family: var(--font-inter);
    font-size: 14px;
    color: var(--warm-slate);
    line-height: 1.6;
    margin-bottom: 16px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 14px;
    border-radius: 24px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    min-height: 44px;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--culinary-red), var(--deep-crimson));
    color: white;
}

.cookie-btn-accept:hover {
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.35);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--deep-charcoal);
    border: 2px solid rgba(220, 38, 38, 0.3);
}

.cookie-btn-decline:hover {
    border-color: var(--culinary-red);
    color: var(--culinary-red);
}

@media (max-width: 480px) {
    .cookie-banner {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
    }
}

.reveal-fade {
    opacity: 0;
    transition: opacity 0.65s ease-out;
}

.reveal-fade.visible {
    opacity: 1;
}

.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: all 0.7s ease-out;
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.96);
    transition: all 0.6s ease-out;
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-28px);
    transition: all 0.65s ease-out;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.scrollbar::-webkit-scrollbar {
    width: 8px;
}

.scrollbar::-webkit-scrollbar-track {
    background: rgba(220, 38, 38, 0.05);
}

.scrollbar::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--culinary-red), var(--deep-crimson));
    border-radius: 4px;
}

.scrollbar::-webkit-scrollbar-thumb:hover {
    opacity: 0.85;
}

.magnetic-element {
    transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}

.mobile-menu-trigger {
    display: none;
    position: fixed;
    bottom: 32px;
    left: 32px;
    z-index: 9999;
    width: 72px;
    height: 72px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.98);
    border: 2.5px solid rgba(220, 38, 38, 0.3);
    border-radius: 40px;
    box-shadow: 0 20px 80px rgba(220, 38, 38, 0.2);
    cursor: pointer;
}

.mobile-menu-trigger svg {
    width: 28px;
    height: 28px;
    stroke: var(--culinary-red);
    stroke-width: 3;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(254, 249, 231, 0.99);
    backdrop-filter: blur(48px);
    -webkit-backdrop-filter: blur(48px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 120px;
    gap: 32px;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.mobile-menu-nav a {
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 24px;
    color: var(--deep-charcoal);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active .mobile-menu-nav a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-nav a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-nav a:nth-child(2) { transition-delay: 0.18s; }
.mobile-menu-nav a:nth-child(3) { transition-delay: 0.26s; }
.mobile-menu-nav a:nth-child(4) { transition-delay: 0.34s; }
.mobile-menu-nav a:nth-child(5) { transition-delay: 0.42s; }
.mobile-menu-nav a:nth-child(6) { transition-delay: 0.5s; }

.mobile-menu-contact {
    text-align: center;
    margin-top: 24px;
}

.mobile-menu-phone {
    font-family: var(--font-space);
    font-size: 14px;
    color: var(--culinary-red);
    margin-bottom: 8px;
}

.mobile-menu-address {
    font-family: var(--font-inter);
    font-size: 13px;
    color: var(--warm-slate);
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-menu-close svg {
    width: 32px;
    height: 32px;
    stroke: var(--culinary-red);
    stroke-width: 3;
}

@media (max-width: 1024px) {
    .mobile-menu-trigger {
        display: flex;
    }
    .command-palette-trigger {
        display: none;
    }
    
    .mobile-menu-overlay.active {
        display: block;
    }
}

.page-hero {
    min-height: 340px;
    background-color: var(--warm-cream);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-hero-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 80px 24px;
    text-align: center;
}

.breadcrumbs {
    font-family: var(--font-space);
    font-size: 13px;
    color: var(--culinary-red);
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.breadcrumbs a {
    transition: opacity var(--transition-smooth);
}

.breadcrumbs a:hover {
    opacity: 0.7;
}

.page-title {
    font-family: var(--font-playfair);
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 0.95;
    letter-spacing: -0.025em;
    color: var(--deep-charcoal);
    margin-bottom: 16px;
}

.page-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.page-dot {
    width: 6px;
    height: 6px;
    background: var(--culinary-red);
    border-radius: 50%;
    animation: pulse-dot 2.6s ease-in-out infinite;
}

.page-dot:nth-child(2) { animation-delay: 0.2s; }
.page-dot:nth-child(3) { animation-delay: 0.4s; }

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

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-image {
    width: 100%;
    border-radius: var(--organic-radius-1);
    box-shadow: var(--shadow-organic);
}

.about-content h3 {
    font-family: var(--font-playfair);
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--deep-charcoal);
    margin-bottom: 16px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--warm-slate);
    margin-bottom: 16px;
}

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

.team-member {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(48px);
    -webkit-backdrop-filter: blur(48px);
    border: 2px solid rgba(220, 38, 38, 0.15);
    border-radius: var(--organic-radius-2);
    overflow: hidden;
    box-shadow: var(--shadow-organic);
    transition: all var(--transition-organic);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-organic-hover);
}

.team-member-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.team-member-info {
    padding: 24px;
}

.team-member-name {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 18px;
    color: var(--deep-charcoal);
    margin-bottom: 4px;
}

.team-member-role {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 14px;
    color: var(--culinary-red);
    margin-bottom: 12px;
}

.team-member-bio {
    font-family: var(--font-inter);
    font-size: 14px;
    color: var(--warm-slate);
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(48px);
    -webkit-backdrop-filter: blur(48px);
    border: 2px solid rgba(220, 38, 38, 0.15);
    border-radius: var(--organic-radius-2);
    overflow: hidden;
    box-shadow: var(--shadow-organic);
    transition: all var(--transition-organic);
}

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

.service-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.service-card-content {
    padding: 24px;
}

.service-card-title {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 18px;
    color: var(--deep-charcoal);
    margin-bottom: 8px;
}

.service-card-description {
    font-family: var(--font-inter);
    font-size: 14px;
    color: var(--warm-slate);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-card-price {
    font-family: var(--font-space);
    font-weight: 700;
    font-size: 20px;
    color: var(--culinary-red);
    margin-bottom: 16px;
}

.service-card-link {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--culinary-red), var(--deep-crimson));
    color: white;
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 14px;
    border-radius: 24px;
    transition: all var(--transition-smooth);
}

.service-card-link:hover {
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.35);
    transform: translateY(-2px);
}

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

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    position: relative;
    border-radius: var(--organic-radius-2);
    overflow: hidden;
    box-shadow: var(--shadow-organic);
    transition: all var(--transition-organic);
    aspect-ratio: 1;
}

.gallery-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(220, 38, 38, 0.6) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

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

.gallery-item-label {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 14px;
    color: white;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.menu-category {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(48px);
    -webkit-backdrop-filter: blur(48px);
    border: 2px solid rgba(220, 38, 38, 0.15);
    border-radius: var(--organic-radius-2);
    padding: 32px;
    box-shadow: var(--shadow-organic);
}

.menu-category-title {
    font-family: var(--font-bebas);
    font-size: 28px;
    color: var(--culinary-red);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(220, 38, 38, 0.1);
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid rgba(220, 38, 38, 0.08);
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item-name {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 16px;
    color: var(--deep-charcoal);
    margin-bottom: 4px;
}

.menu-item-description {
    font-family: var(--font-inter);
    font-size: 13px;
    color: var(--warm-slate);
}

.menu-item-price {
    font-family: var(--font-space);
    font-weight: 700;
    font-size: 16px;
    color: var(--culinary-red);
    white-space: nowrap;
    margin-left: 16px;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.process-step {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(48px);
    -webkit-backdrop-filter: blur(48px);
    border: 2px solid rgba(220, 38, 38, 0.15);
    border-radius: var(--organic-radius-2);
    padding: 32px;
    box-shadow: var(--shadow-organic);
    position: relative;
    transition: all var(--transition-organic);
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-organic-hover);
}

.process-step-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-jetbrains);
    font-weight: 800;
    font-size: 48px;
    color: rgba(220, 38, 38, 0.12);
}

.process-step-icon {
    width: 56px;
    height: 56px;
    stroke: var(--culinary-red);
    stroke-width: 3;
    fill: none;
    margin-bottom: 20px;
}

.process-step-title {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 20px;
    color: var(--deep-charcoal);
    margin-bottom: 12px;
}

.process-step-text {
    font-family: var(--font-inter);
    font-size: 14px;
    color: var(--warm-slate);
    line-height: 1.7;
}

.process-step-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 48px 56px 40px 52px;
    margin-top: 20px;
}

.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
}

.thank-you-content {
    max-width: 600px;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    stroke: var(--culinary-red);
    stroke-width: 2;
    fill: none;
    margin: 0 auto 32px;
}

.thank-you-title {
    font-family: var(--font-playfair);
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--deep-charcoal);
    margin-bottom: 16px;
}

.thank-you-text {
    font-family: var(--font-inter);
    font-size: 18px;
    color: var(--warm-slate);
    line-height: 1.7;
    margin-bottom: 32px;
}

.thank-you-btn {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--culinary-red), var(--deep-crimson));
    color: white;
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 16px;
    border-radius: 40px;
    box-shadow: 0 12px 48px rgba(220, 38, 38, 0.35);
    transition: all var(--transition-smooth);
}

.thank-you-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 64px rgba(220, 38, 38, 0.45);
}

.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 64px 24px;
}

.legal-content {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(48px);
    -webkit-backdrop-filter: blur(48px);
    border: 2px solid rgba(220, 38, 38, 0.15);
    border-radius: var(--organic-radius-2);
    padding: 48px;
    box-shadow: var(--shadow-organic);
}

.legal-content h2 {
    font-family: var(--font-playfair);
    font-weight: 700;
    font-size: 24px;
    color: var(--deep-charcoal);
    margin: 32px 0 16px;
}

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

.legal-content p {
    font-family: var(--font-inter);
    font-size: 15px;
    color: var(--warm-slate);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content li {
    font-family: var(--font-inter);
    font-size: 15px;
    color: var(--warm-slate);
    line-height: 1.8;
    margin-bottom: 8px;
    list-style: disc;
}

.countup {
    font-family: var(--font-inter);
    font-weight: 700;
}
