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

:root {
    --plum-50: #faf5f9;
    --plum-100: #f3e5f5;
    --plum-200: #e1bee7;
    --plum-300: #ce93d8;
    --plum-400: #ab47bc;
    --plum-500: #7B2D8E;
    --plum-600: #6a277a;
    --plum-700: #581f66;
    --plum-800: #4a1a54;
    --plum-900: #3d1544;
    --plum-950: #2a0e30;

    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-300: #fcd34d;
    --amber-400: #F59E0B;
    --amber-500: #d97706;
    --amber-600: #b45309;

    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --gray-950: #0a0a0a;

    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

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

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.06), 0 8px 16px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.08), 0 12px 24px rgba(0,0,0,0.04);
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
    border-color: var(--gray-200);
    box-shadow: var(--shadow-sm);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    color: var(--gray-900);
}

.nav-logo-icon {
    flex-shrink: 0;
}

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

.nav-links a {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--gray-600);
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
    position: relative;
}

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

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

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--plum-500);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-weight: 400;
    font-size: 0.875rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
    background: var(--plum-600);
    transform: translateY(-1px);
}

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

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--gray-700);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-700);
    padding: 4px;
}

.mobile-menu-link {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gray-800);
    letter-spacing: -0.01em;
    transition: color 0.2s ease;
}

.mobile-menu-link:hover {
    color: var(--plum-500);
}

.mobile-menu-cta {
    margin-top: var(--space-sm);
    background: var(--plum-500);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 400;
    font-size: 1rem;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--plum-50) 0%, var(--white) 50%, var(--amber-50) 100%);
    padding-top: 72px;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(123, 45, 142, 0.04) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 540px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--plum-500);
    margin-bottom: var(--space-lg);
}

.hero-tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--amber-400);
    display: inline-block;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
}

.hero-headline em {
    font-style: italic;
    color: var(--plum-500);
}

.hero-subheadline {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: var(--space-xl);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

/* Cards */
.hero-visual {
    position: relative;
    height: 620px;
}

.hero-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: absolute;
}

.hero-card-main {
    width: 340px;
    height: 480px;
    top: 20px;
    right: 0;
}

.hero-card-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--gray-700);
    letter-spacing: 0.02em;
}

.hero-card-float {
    padding: 0;
}

.hero-card-stats {
    background: var(--white);
    width: 220px;
    padding: 28px 24px;
    top: 0;
    left: -30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 2;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--plum-500);
    letter-spacing: -0.02em;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gray-500);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.stat-divider {
    width: 100%;
    height: 1px;
    background: var(--gray-200);
}

.hero-card-pop {
    width: 160px;
    height: 160px;
    bottom: 40px;
    left: 20px;
    z-index: 3;
}

.hero-card-pop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card-pop-label {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    background: rgba(123, 45, 142, 0.9);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--white);
    text-align: center;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gray-300), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.6); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 1.5px solid transparent;
}

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

.btn-primary:hover {
    background: var(--plum-600);
    border-color: var(--plum-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(123, 45, 142, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--gray-700);
    border-color: var(--gray-300);
}

.btn-outline:hover {
    border-color: var(--plum-500);
    color: var(--plum-500);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.section-divider-line {
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}

.section-divider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--plum-200);
    flex-shrink: 0;
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-3xl);
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--plum-500);
    margin-bottom: var(--space-sm);
}

.section-tag-light {
    color: var(--amber-200);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

.section-title em {
    font-style: italic;
    color: var(--plum-500);
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--gray-500);
}

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

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

.menu-category {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    border: 1px solid var(--gray-100);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.menu-category:hover {
    border-color: var(--plum-200);
    box-shadow: var(--shadow-md);
}

.menu-category-header {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--gray-200);
}

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

.menu-category-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gray-900);
    letter-spacing: -0.01em;
    margin-bottom: 2px;
}

.menu-category-desc {
    font-size: 0.82rem;
    color: var(--gray-500);
    font-weight: 300;
    line-height: 1.5;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.menu-item {
    display: grid;
    grid-template-columns: 1fr auto 100px;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--gray-100);
}

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

.menu-item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
}

.menu-item-name {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--gray-800);
    letter-spacing: -0.01em;
}

.menu-item-notes {
    font-size: 0.78rem;
    color: var(--gray-400);
    font-weight: 300;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.menu-item-line {
    display: none;
}

.menu-item-price {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 400;
    text-align: right;
    letter-spacing: 0.02em;
}

.menu-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-400);
    font-weight: 300;
    font-style: italic;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: var(--space-4xl) 0;
    background: var(--plum-50);
}

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

.about-visual {
    position: relative;
    height: 750px;
}

.about-image-main {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.about-image-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    max-width: 520px;
}

.about-text {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--gray-600);
    margin-bottom: var(--space-md);
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.about-value {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.about-value-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--white);
    border: 1px solid var(--plum-200);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-value strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-800);
    margin-bottom: 2px;
}

.about-value span {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 300;
    line-height: 1.6;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    align-items: start;
}

.process-step {
    text-align: center;
    padding: 0 var(--space-sm);
}

.process-step-number {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--plum-300);
    margin-bottom: var(--space-sm);
}

.process-step-visual {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--space-md);
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-md);
}

.process-step-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.process-step:hover .process-step-visual img {
    transform: scale(1.05);
}

.process-step-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-800);
    margin-bottom: var(--space-xs);
    letter-spacing: -0.01em;
}

.process-step-desc {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 300;
    line-height: 1.7;
}

.process-step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
}

/* ===== VISIT SECTION ===== */
.visit-section {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
}

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

.visit-info {
    max-width: 480px;
}

.visit-subtitle {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--gray-500);
    margin-bottom: var(--space-xl);
}

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

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.visit-detail-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--plum-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.visit-detail strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-800);
    margin-bottom: 2px;
}

.visit-detail span {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 300;
    line-height: 1.6;
}

.visit-detail a {
    color: var(--plum-500);
    transition: color 0.2s ease;
}

.visit-detail a:hover {
    color: var(--plum-600);
    text-decoration: underline;
}

.btn-map {
    background: var(--plum-500);
    color: var(--white);
    border-color: var(--plum-500);
}

.btn-map:hover {
    background: var(--plum-600);
    border-color: var(--plum-600);
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    min-height: 350px;
    border: 1px solid var(--gray-200);
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--plum-900) 0%, var(--plum-700) 50%, var(--plum-800) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 50%, rgba(245, 158, 11, 0.08) 0%, transparent 60%),
                      radial-gradient(circle at 70% 80%, rgba(206, 147, 216, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-title em {
    font-style: italic;
    color: var(--amber-300);
}

.cta-subtitle {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--plum-200);
    margin-bottom: var(--space-xl);
}

.cta-actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-950);
    padding: var(--space-3xl) 0 var(--space-lg);
}

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

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--white);
    letter-spacing: -0.01em;
    margin-bottom: var(--space-sm);
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 300;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links strong,
.footer-contact strong {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.footer-links a,
.footer-contact a {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 300;
    transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--plum-300);
}

.footer-contact span {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 300;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    gap: var(--space-sm);
}

.footer-bottom span {
    font-size: 0.78rem;
    color: var(--gray-600);
    font-weight: 300;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
}

@media (prefers-reduced-motion: no-preference) {
    .reveal[data-reveal] {
        opacity: 0;
        transform: translateY(24px);
    }
    
    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        order: 1;
    }

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

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

    .hero-visual {
        height: 450px;
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-card-main {
        width: 280px;
        height: 400px;
    }

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

    .about-visual {
        height: 500px;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-content {
        max-width: 100%;
    }

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

    .process-step-connector {
        display: none;
    }

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

    .visit-info {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 80px;
    }

    .hero-container {
        padding-top: var(--space-lg);
        padding-bottom: var(--space-lg);
    }

    .hero-visual {
        height: 380px;
    }

    .hero-card-main {
        width: 240px;
        height: 340px;
        right: 0;
    }

    .hero-card-stats {
        width: 180px;
        padding: 20px 18px;
        left: -10px;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .hero-card-pop {
        width: 130px;
        height: 130px;
        left: 10px;
        bottom: 20px;
    }

    .menu-categories {
        grid-template-columns: 1fr;
    }

    .menu-item {
        grid-template-columns: 1fr auto;
        gap: 0;
    }

    .menu-item-price {
        grid-column: 2;
        grid-row: 1;
        text-align: right;
    }

    .process-steps {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

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

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

    .about-image-float {
        width: 150px;
        height: 150px;
        right: -10px;
        bottom: -15px;
    }

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

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

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

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

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

    .hero-visual {
        height: 320px;
    }

    .hero-card-main {
        width: 200px;
        height: 280px;
    }

    .hero-card-stats {
        width: 160px;
        padding: 16px 14px;
    }

    .stat-number {
        font-size: 1.1rem;
    }

    .hero-card-pop {
        width: 110px;
        height: 110px;
    }

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

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}
