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

:root {
    --plum: #4A2040;
    --plum-deep: #3A1830;
    --plum-light: #6B3060;
    --plum-muted: #8A4575;
    --amber: #D4A843;
    --amber-light: #E8C060;
    --amber-muted: #C49A38;
    --cream: #FAF8F5;
    --cream-dark: #F0ECE6;
    --ink: #1A1418;
    --ink-light: #3A3038;
    --ink-muted: #6B5E68;
    --ink-faint: #9A8E98;
    --white: #FFFFFF;
    --line: rgba(74, 32, 64, 0.1);
    --line-strong: rgba(74, 32, 64, 0.2);

    --font-serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.7;
    font-size: 1rem;
    overflow-x: hidden;
}

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

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 1px 0 var(--line);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: -0.01em;
    color: var(--ink);
    transition: var(--transition);
}

.logo:hover {
    color: var(--plum);
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--plum);
    color: var(--amber);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.logo:hover .logo-mark {
    background: var(--plum-deep);
    transform: rotate(-3deg);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-links a {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink-muted);
    transition: var(--transition);
    position: relative;
}

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

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

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--plum) !important;
    letter-spacing: 0.01em;
    text-transform: none;
    transition: var(--transition);
}

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

.nav-cta:hover {
    background: var(--plum);
    color: var(--amber) !important;
    border-color: var(--plum);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-toggle:hover {
    background: var(--cream-dark);
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--ink);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    top: 6px;
}

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 72px;
    padding-bottom: var(--space-3xl);
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-deep) 100%);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.hero-content {
    padding-right: var(--space-2xl);
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--plum-muted);
    margin-bottom: var(--space-2xl);
}

.eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--plum-muted);
    flex-shrink: 0;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-style: italic;
    line-height: 1.15;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-xl);
    max-width: 580px;
}

.hero-dek {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--ink-muted);
    max-width: 440px;
    margin-bottom: var(--space-2xl);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--line);
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.meta-label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-faint);
}

.meta-value {
    font-size: 0.875rem;
    color: var(--ink-light);
    font-weight: 400;
}

.meta-separator {
    width: 1px;
    height: 32px;
    background: var(--line-strong);
}

.hero-image-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hero-image-main {
    width: 85%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(74, 32, 64, 0.2);
}

.hero-image-main img {
    width: 100%;
    height: 750px;
    object-fit: cover;
    display: block;
}

.hero-image-accent {
    position: absolute;
    bottom: -40px;
    left: -20px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 4px solid var(--cream);
    box-shadow: 0 16px 48px rgba(74, 32, 64, 0.15);
}

.hero-image-accent img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.hero-stamp {
    position: absolute;
    top: -20px;
    right: 0;
    width: 72px;
    height: 72px;
    color: var(--amber);
    opacity: 0.9;
    animation: stampRotate 20s linear infinite;
}

@keyframes stampRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--ink-faint);
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.875rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--plum);
    color: var(--white);
    border: 1px solid var(--plum);
}

.btn-primary:hover {
    background: var(--plum-deep);
    border-color: var(--plum-deep);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(74, 32, 64, 0.25);
}

.btn-ghost {
    background: transparent;
    color: var(--plum);
    border: 1px solid var(--line-strong);
}

.btn-ghost:hover {
    border-color: var(--plum);
    background: rgba(74, 32, 64, 0.04);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== SEPARATOR ===== */
.separator {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl) 0;
}

.separator-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--amber);
}

/* ===== INTRO ===== */
.intro {
    padding: var(--space-5xl) 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.intro-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--plum-muted);
    margin-bottom: var(--space-lg);
}

.intro-headline {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.25;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin-bottom: var(--space-2xl);
}

.intro-body p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--ink-muted);
    margin-bottom: var(--space-md);
}

.intro-stats {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--line);
}

.stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-style: italic;
    color: var(--plum);
    line-height: 1;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--ink-faint);
    line-height: 1.4;
}

.stat-divider {
    width: 1px;
    background: var(--line-strong);
    align-self: stretch;
    margin-top: var(--space-sm);
}

/* ===== MENU ===== */
.menu {
    padding: var(--space-5xl) 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--plum-muted);
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.menu-category {
    padding: var(--space-2xl);
    background: var(--cream);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
}

.category-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--plum);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--line);
}

.menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.menu-item {
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--line);
}

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

.menu-item-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.menu-item-name {
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.menu-item-tag {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--amber);
    color: var(--plum-deep);
    border-radius: var(--radius-sm);
}

.menu-item-desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--ink-muted);
}

.menu-note {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: rgba(212, 168, 67, 0.08);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-2xl);
}

.menu-note svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--amber-muted);
}

.menu-note p {
    font-size: 0.875rem;
    color: var(--ink-muted);
    line-height: 1.6;
}

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

/* ===== ABOUT ===== */
.about {
    padding: var(--space-5xl) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-image-stack {
    position: relative;
    min-height: 600px;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(74, 32, 64, 0.12);
}

.about-img-main img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
}

.about-img-small {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 4px solid var(--cream);
    box-shadow: 0 16px 40px rgba(74, 32, 64, 0.15);
}

.about-img-small img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.about-pattern {
    position: absolute;
    top: -20px;
    left: -20px;
    color: var(--amber);
    opacity: 0.3;
}

.about-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--plum-muted);
    margin-bottom: var(--space-lg);
}

.about-headline {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.25;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin-bottom: var(--space-xl);
}

.about-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--ink-muted);
    margin-bottom: var(--space-md);
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--line);
}

.value {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.value-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--plum);
    color: var(--amber);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.value-text {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--ink-light);
}

/* ===== VISIT ===== */
.visit {
    padding: var(--space-5xl) 0;
    background: var(--plum);
    color: var(--white);
    overflow: hidden;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.visit-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: var(--space-lg);
}

.visit-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    color: var(--white);
    letter-spacing: -0.01em;
    margin-bottom: var(--space-2xl);
}

.visit-details {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.detail {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.detail-label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber-muted);
}

.detail-value {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.detail-link {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 2px;
    display: inline-block;
    width: fit-content;
}

.detail-link:hover {
    color: var(--amber);
    border-color: var(--amber);
}

.btn-directions {
    background: var(--amber);
    color: var(--plum-deep);
    border-color: var(--amber);
    font-weight: 600;
}

.btn-directions:hover {
    background: var(--amber-light);
    border-color: var(--amber-light);
    box-shadow: 0 8px 24px rgba(212, 168, 67, 0.3);
}

.visit-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.2);
}

.visit-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
}

/* ===== CONTACT ===== */
.contact {
    padding: var(--space-5xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--plum-muted);
    margin-bottom: var(--space-lg);
}

.contact-headline {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.25;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin-bottom: var(--space-lg);
}

.contact-dek {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--ink-muted);
    margin-bottom: var(--space-2xl);
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--line);
}

.contact-email,
.contact-phone {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    color: var(--ink-light);
    transition: var(--transition);
}

.contact-email:hover,
.contact-phone:hover {
    color: var(--plum);
}

.contact-form-wrap {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    box-shadow: 0 8px 32px rgba(74, 32, 64, 0.06);
}

.form-group {
    margin-bottom: var(--space-xl);
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: var(--space-sm);
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--ink);
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    outline: none;
    transition: var(--transition);
}

.form-input::placeholder {
    color: var(--ink-faint);
}

.form-input:focus {
    border-color: var(--plum);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(74, 32, 64, 0.08);
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: rgba(74, 164, 100, 0.08);
    border-radius: var(--radius-md);
    color: #2d7a4a;
    font-size: 0.9375rem;
    margin-top: var(--space-lg);
}

.form-success svg {
    flex-shrink: 0;
    color: #2d7a4a;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.footer-brand .logo-mark {
    background: var(--amber);
    color: var(--plum-deep);
}

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.45);
    max-width: 280px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

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

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    font-size: 0.9375rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--amber);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.3);
    flex-wrap: wrap;
    gap: var(--space-md);
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid,
    .intro-grid,
    .about-grid,
    .visit-grid,
    .contact-grid,
    .menu-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .hero::before {
        width: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 85%, 5% 100%);
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
    }

    .hero-headline {
        max-width: 100%;
    }

    .hero-dek {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-meta {
        justify-content: center;
    }

    .hero-image-wrap {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-image-stack {
        min-height: 400px;
    }

    .about-img-main img {
        height: 500px;
    }

    .visit-image img {
        height: 500px;
    }

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

@media (max-width: 768px) {
    :root {
        --space-5xl: 5rem;
        --space-4xl: 4rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 248, 245, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        padding: var(--space-xl);
        gap: var(--space-md);
        border-bottom: 1px solid var(--line);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-links a {
        padding: var(--space-md) 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--line);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-cta {
        justify-content: center;
        border: none;
        background: var(--plum);
        color: var(--white) !important;
        border-radius: var(--radius-sm);
        padding: var(--space-md) var(--space-xl);
    }

    .nav-cta:hover {
        background: var(--plum-deep);
        color: var(--amber) !important;
    }

    .hero {
        padding-top: 72px;
        min-height: auto;
    }

    .hero::before {
        clip-path: none;
        width: 100%;
        height: 40%;
        position: absolute;
        top: 0;
    }

    .hero-grid {
        padding-top: var(--space-3xl);
        padding-bottom: var(--space-3xl);
    }

    .hero-image-main img {
        height: 450px;
    }

    .hero-image-accent {
        display: none;
    }

    .hero-stamp {
        display: none;
    }

    .hero-scroll {
        display: none;
    }

    .intro-stats {
        flex-direction: column;
        gap: var(--space-xl);
    }

    .stat-divider {
        display: none;
    }

    .menu-category {
        padding: var(--space-xl);
    }

    .about-img-small {
        right: 0;
        bottom: -20px;
    }

    .about-image-stack {
        min-height: 350px;
    }

    .visit-image img {
        height: 400px;
    }

    .contact-form-wrap {
        padding: var(--space-xl);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .nav {
        padding: 0 var(--space-md);
    }

    .hero-headline {
        font-size: 1.875rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }

    .hero-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }

    .meta-separator {
        display: none;
    }
}
