/* ========================================
   Pixie Dust Restaurant — Stylesheet
   Terracotta + Sand | Warm & Friendly
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
    --terracotta-50: #FDF0E8;
    --terracotta-100: #F9DEC8;
    --terracotta-200: #F4C4A0;
    --terracotta-300: #EDAA78;
    --terracotta-400: #E08A52;
    --terracotta-500: #D4783E;
    --terracotta-600: #C26530;
    --terracotta-700: #A35028;
    --terracotta-800: #844025;
    --terracotta-900: #6B3420;

    --sand-50: #FDF8F4;
    --sand-100: #FAF0E6;
    --sand-200: #F5E6D0;
    --sand-300: #EDD4B4;
    --sand-400: #E0BC8A;
    --sand-500: #C9A06A;
    --sand-600: #B08550;

    --cream: #FFFAF5;
    --warm-white: #FFF9F3;
    --dark: #2C1810;
    --dark-soft: #4A2C1E;
    --text-primary: #2C1810;
    --text-secondary: #6B4C3B;
    --text-muted: #9B7B6A;
    --border: #E8D5C4;

    --font-display: 'Lora', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

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

    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

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

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--cream);
    -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;
}

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

ul {
    list-style: none;
}

/* --- Utility --- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta-600);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: var(--terracotta-400);
    border-radius: 2px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 540px;
    line-height: 1.7;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--terracotta-500);
    color: #fff;
    box-shadow: 0 4px 16px rgba(212, 120, 62, 0.35);
}

.btn-primary:hover {
    background: var(--terracotta-600);
    box-shadow: 0 6px 24px rgba(212, 120, 62, 0.45);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--sand-100);
    color: var(--text-primary);
    border: 1.5px solid var(--border);
}

.btn-secondary:hover {
    background: var(--sand-200);
    border-color: var(--terracotta-300);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--terracotta-600);
    border: 1.5px solid var(--terracotta-400);
}

.btn-outline:hover {
    background: var(--terracotta-50);
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: var(--terracotta-600);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-2px);
}

/* --- Page Wrapper --- */
.page-wrapper {
    min-height: 100vh;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(253, 248, 244, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(44, 24, 16, 0.08);
    padding: 10px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.nav-logo-icon {
    color: var(--terracotta-500);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta-500);
    border-radius: 2px;
    transition: width var(--transition);
}

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

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

.nav-cta {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--terracotta-500);
    color: #fff !important;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all var(--transition) !important;
}

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

.nav-cta:hover {
    background: var(--terracotta-600) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 120, 62, 0.3);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition);
}

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

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

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

/* Mobile Nav Overlay */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(253, 248, 244, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.mobile-nav.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: var(--text-primary);
    padding: 8px;
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: color var(--transition);
}

.mobile-nav-link:hover {
    color: var(--terracotta-500);
}

.mobile-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-family: var(--font-body) !important;
    font-size: 1rem !important;
    padding: 14px 32px;
    background: var(--terracotta-500);
    color: #fff !important;
    border-radius: 50px;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(212, 120, 62, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 160, 106, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(212, 120, 62, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--sand-100);
    border: 1px solid var(--sand-200);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--terracotta-700);
    letter-spacing: 0.04em;
    margin-bottom: 28px;
}

.hero-badge svg {
    color: var(--terracotta-500);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.hero-title em {
    font-style: italic;
    color: var(--terracotta-600);
}

.hero-subtitle {
    font-size: 1.12rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.hero-trust-item svg {
    color: var(--terracotta-500);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 520px;
    width: 100%;
}

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

.hero-image-accent {
    position: absolute;
    bottom: -30px;
    left: -40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream);
    max-width: 280px;
}

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

.hero-stamp {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: var(--terracotta-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 16px rgba(212, 120, 62, 0.4);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(5deg); }
}

/* --- Section Divider --- */
.section-divider {
    background: var(--sand-50);
    overflow: hidden;
}

/* --- Menu Section --- */
.menu-section {
    padding: 100px 24px;
    background: var(--sand-50);
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.menu-header .section-subtitle {
    margin: 0 auto;
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 56px;
}

.menu-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.menu-card-visual {
    overflow: hidden;
    height: 220px;
}

.menu-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-card:hover .menu-card-visual img {
    transform: scale(1.06);
}

.menu-card-content {
    padding: 28px;
}

.menu-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--terracotta-50);
    border-radius: var(--radius-sm);
    color: var(--terracotta-600);
    margin-bottom: 16px;
}

.menu-card-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.menu-card-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 18px;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.menu-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--terracotta-400);
    border-radius: 50%;
    flex-shrink: 0;
}

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

.menu-footer > p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* --- About Section --- */
.about-section {
    padding: 100px 24px;
    background: var(--cream);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-img-side {
    position: absolute;
    bottom: -40px;
    right: -30px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream);
    max-width: 260px;
}

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

.about-floating-card {
    position: absolute;
    top: 24px;
    left: -20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--terracotta-500);
    color: #fff;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(212, 120, 62, 0.35);
}

.about-floating-card svg {
    color: rgba(255,255,255,0.8);
}

.about-text .section-label {
    margin-bottom: 12px;
}

.about-text .section-title {
    margin-bottom: 24px;
}

.about-body {
    font-size: 1.02rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 36px;
}

.about-value {
    display: flex;
    gap: 16px;
}

.about-value-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--terracotta-50);
    border-radius: var(--radius-sm);
    color: var(--terracotta-600);
    flex-shrink: 0;
}

.about-value strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.about-value span {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- Gallery Section --- */
.gallery-section {
    padding: 100px 24px;
    background: var(--sand-50);
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-header {
    text-align: center;
    margin-bottom: 56px;
}

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

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

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

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

.gallery-item--large {
    grid-column: span 5;
    grid-row: span 2;
}

.gallery-item--large img {
    height: 100%;
}

.gallery-item--wide {
    grid-column: span 7;
}

/* --- Visit Section --- */
.visit-section {
    padding: 100px 24px;
    background: var(--cream);
}

.visit-container {
    max-width: 1200px;
    margin: 0 auto;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.visit-info .section-label {
    margin-bottom: 12px;
}

.visit-info .section-title {
    margin-bottom: 16px;
}

.visit-subtitle {
    font-size: 1.02rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 40px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.visit-detail {
    display: flex;
    gap: 16px;
}

.visit-detail-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--terracotta-50);
    border-radius: var(--radius-sm);
    color: var(--terracotta-600);
    flex-shrink: 0;
}

.visit-detail strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.visit-detail p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.visit-detail a {
    color: var(--terracotta-600);
    transition: color var(--transition);
}

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

.visit-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.visit-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 460px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 460px;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

/* --- CTA Section --- */
.cta-section {
    padding: 100px 24px;
    background: var(--terracotta-600);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(0,0,0,0.08) 0%, transparent 60%);
    pointer-events: none;
}

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

.cta-label {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.cta-label::before {
    background: rgba(255,255,255,0.4);
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.75;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

/* --- Footer --- */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 64px 24px 32px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.footer-logo svg {
    color: var(--terracotta-400);
}

.footer-brand p {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 0.85rem !important;
    color: rgba(255,255,255,0.45) !important;
}

.footer-nav strong,
.footer-contact strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}

.footer-nav ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a,
.footer-contact a {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.7);
    transition: color var(--transition);
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--terracotta-400);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }

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

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

    .menu-card:last-child {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .about-img-side {
        right: -10px;
        max-width: 200px;
    }

    .about-img-side img {
        height: 280px;
    }
}

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

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 24px 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .hero-visual {
        order: 2;
        justify-content: center;
    }

    .hero-image-main {
        max-width: 420px;
    }

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

    .hero-image-accent {
        left: auto;
        right: -10px;
        bottom: -20px;
        max-width: 200px;
    }

    .hero-image-accent img {
        height: 240px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

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

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

    .visit-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .visit-map {
        order: -1;
        min-height: 300px;
    }

    .map-placeholder {
        min-height: 300px;
    }

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

@media (max-width: 700px) {
    .menu-categories {
        grid-template-columns: 1fr;
    }

    .menu-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

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

    .gallery-item--large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item--large img {
        height: 260px;
    }

    .gallery-item--wide {
        grid-column: span 2;
    }

    .gallery-item img {
        height: 200px;
    }

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

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

@media (max-width: 480px) {
    .hero {
        padding: 90px 20px 50px;
    }

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

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

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

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

    .gallery-item--large,
    .gallery-item--wide {
        grid-column: span 1;
    }

    .gallery-item img {
        height: 220px;
    }

    .about-img-side {
        display: none;
    }

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

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

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

/* --- Animations --- */
@media (prefers-reduced-motion: no-preference) {
    .fade-up {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

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