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

:root {
    --color-950: #041a0e;
    --color-900: #064e3b;
    --color-800: #065f46;
    --color-700: #047857;
    --color-600: #059669;
    --color-500: #10b981;
    --color-400: #34d399;
    --color-100: #d1fae5;
    --color-50:  #ecfdf5;
    --color-cream: #faf9f6;
    --color-cream-dark: #f5f3ef;
    --color-warm: #f0ede6;
    --color-text: #1a2e23;
    --color-text-muted: #4a6352;
    --color-text-light: #7a9482;
    --color-white: #ffffff;
    --color-border: rgba(6, 78, 59, 0.12);
    --color-border-strong: rgba(6, 78, 59, 0.25);
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-sm: 0 1px 2px rgba(4, 26, 14, 0.05);
    --shadow-md: 0 4px 16px rgba(4, 26, 14, 0.08);
    --shadow-lg: 0 8px 32px rgba(4, 26, 14, 0.12);
    --shadow-xl: 0 16px 48px rgba(4, 26, 14, 0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-cream);
    line-height: 1.6;
    -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;
}

ul {
    list-style: none;
}

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--color-900);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    z-index: 200;
    font-weight: 500;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 249, 246, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: 0.08em;
    color: var(--color-900);
    flex-shrink: 0;
}

.logo-icon {
    color: var(--color-600);
}

.logo-light {
    color: var(--color-white);
}

.logo-light .logo-icon {
    color: var(--color-400);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-list a {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}

.nav-list a:hover {
    color: var(--color-900);
    background: var(--color-50);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.menu-toggle:hover {
    background: var(--color-50);
}

.hamburger {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-900);
    position: relative;
    transition: background var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--color-900);
    left: 0;
    transition: transform var(--transition);
}

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

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

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

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
    text-align: center;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 0.9375rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}

.btn-primary {
    background: var(--color-900);
    color: var(--color-white);
    box-shadow: 0 2px 8px rgba(6, 78, 59, 0.25);
}

.btn-primary:hover {
    background: var(--color-800);
    box-shadow: 0 4px 16px rgba(6, 78, 59, 0.35);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-ghost {
    background: transparent;
    color: var(--color-900);
    border: 1.5px solid var(--color-border-strong);
}

.btn-ghost:hover {
    background: var(--color-50);
    border-color: var(--color-700);
}

.btn-light {
    background: var(--color-white);
    color: var(--color-900);
}

.btn-light:hover {
    background: var(--color-50);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--color-cream);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--color-50);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-700);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-500);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-950);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title-accent {
    display: block;
    color: var(--color-700);
    font-style: italic;
    font-weight: 600;
}

.hero-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    max-width: 460px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-900);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
    flex-shrink: 0;
}

/* Hero Image */
.hero-image {
    position: relative;
    flex-shrink: 0;
}

.hero-image-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 600/750;
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-accent {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-xl);
    background: var(--color-900);
    z-index: -1;
    opacity: 0.08;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-600);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-950);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.title-accent {
    color: var(--color-700);
    font-style: italic;
}

.section-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    background: var(--color-white);
}

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

.about-image-stack {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 500/600;
}

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

.about-img-secondary {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--color-white);
    aspect-ratio: 400/300;
}

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

.about-experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--color-900);
    color: var(--color-white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.about-experience-badge .exp-number {
    font-family: var(--font-serif);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-400);
}

.about-experience-badge .exp-text {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.2;
}

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

.about-lead {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 1rem;
    font-weight: 500;
}

.about-content > p {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
}

.feature-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-50);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-700);
}

.feature-item h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-950);
    margin-bottom: 0.25rem;
}

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

/* ============================================
   EXPERIENCE
   ============================================ */
.experience {
    background: var(--color-cream);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.exp-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: box-shadow var(--transition), transform var(--transition);
}

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

.exp-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 600/400;
}

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

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

.exp-card-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-900);
    color: var(--color-white);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 0.875rem;
}

.exp-card-content {
    padding: 1.75rem;
}

.exp-card-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-600);
    margin-bottom: 0.5rem;
}

.exp-card-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-950);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.exp-card-content > p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
}

.exp-card-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.exp-card-list li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.exp-card-list li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-500);
    flex-shrink: 0;
}

/* ============================================
   MENU
   ============================================ */
.menu {
    background: var(--color-white);
}

.menu-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.menu-content {
    max-width: 480px;
}

.menu-description {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.menu-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.menu-highlight {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--color-cream);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: border-color var(--transition);
}

.menu-highlight:hover {
    border-color: var(--color-border-strong);
}

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

.menu-highlight h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-950);
    margin-bottom: 0.25rem;
}

.menu-highlight p {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

.menu-image-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-img-top {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 400/500;
}

.menu-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-img-bottom {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 400/300;
}

.menu-img-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    background: var(--color-cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 1rem;
}

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

.gallery-item:hover {
    box-shadow: var(--shadow-lg);
}

.gallery-item-wide {
    grid-column: span 6;
    aspect-ratio: 2/1;
}

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

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

/* ============================================
   VISIT
   ============================================ */
.visit {
    background: var(--color-900);
    color: var(--color-white);
}

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

.visit .section-label {
    color: var(--color-400);
}

.visit .section-title {
    color: var(--color-white);
}

.visit .title-accent {
    color: var(--color-400);
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.visit-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.detail-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    color: var(--color-400);
}

.detail-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 0.25rem;
}

.detail-value {
    font-size: 0.9375rem;
    color: var(--color-white);
    line-height: 1.6;
}

.detail-link {
    color: var(--color-400);
    transition: color var(--transition);
}

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

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/3;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    filter: saturate(0.7) contrast(1.05);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-950);
    color: var(--color-white);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-brand p {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.6;
    max-width: 280px;
}

.footer-contact h4,
.footer-nav h4 {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-400);
    margin-bottom: 1rem;
}

.footer-contact p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.footer-link {
    color: var(--color-400);
    transition: color var(--transition);
}

.footer-link:hover {
    color: var(--color-white);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--color-text-light);
    padding: 0.375rem 0;
    transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
    color: var(--color-white);
    padding-left: 0.5rem;
}

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

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--color-text-light);
}

.footer-bottom a {
    color: var(--color-text-light);
    transition: color var(--transition);
}

.footer-bottom a:hover {
    color: var(--color-white);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-cream);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}

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

.mobile-menu-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-list a {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-950);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}

.mobile-nav-list a:hover {
    background: var(--color-50);
    color: var(--color-700);
}

.mobile-call-btn {
    margin-top: 1rem;
}

/* ============================================
   COOKIE NOTICE
   ============================================ */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-900);
    color: var(--color-white);
    padding: 1rem 1.5rem;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    box-shadow: 0 -4px 16px rgba(4, 26, 14, 0.2);
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-notice.is-hidden {
    transform: translateY(100%);
}

.cookie-notice p {
    font-size: 0.8125rem;
    color: var(--color-100);
    line-height: 1.5;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 2.5rem;
    }

    .about-grid,
    .menu-layout,
    .visit-grid {
        gap: 2.5rem;
    }

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

    .experience-grid .exp-card:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-list,
    .nav-actions .btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        padding-top: 72px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2rem 1.5rem;
        max-width: 600px;
    }

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

    .hero-image {
        order: 2;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-image-frame {
        aspect-ratio: 4/5;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .section {
        padding: 4rem 0;
    }

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

    .about-image-stack {
        max-width: 400px;
        margin: 0 auto;
    }

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

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

    .experience-grid .exp-card:last-child {
        grid-column: span 1;
    }

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

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

    .menu-image-stack {
        max-width: 400px;
        margin: 0 auto;
    }

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

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

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

    .visit-map {
        aspect-ratio: 16/9;
    }

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

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

    .cookie-notice {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

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

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

    .gallery-item-wide {
        grid-column: span 1;
        aspect-ratio: 16/9;
    }

    .about-img-secondary {
        right: -16px;
        bottom: -16px;
    }

    .about-experience-badge {
        top: -12px;
        left: -12px;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .exp-card:hover {
        transform: none;
    }

    .exp-card-image img,
    .gallery-item img {
        transform: none;
    }
}
