/* ============================================
   오이시 (Oisi) - 세종시 프리미엄 오마카세
   Modern Japanese Fine Dining Website
   ============================================ */

/* === CSS Variables === */
:root {
    /* Colors */
    --color-bg-primary: #1a1a1a;
    --color-bg-secondary: #2d2622;
    --color-bg-alt: #252220;
    --color-accent-wood: #8b6914;
    --color-accent-gold: #c9a959;
    --color-text-light: #f5f0e6;
    --color-text-muted: #a39e93;
    --color-text-dark: #1a1a1a;
    --color-border: rgba(201, 169, 89, 0.2);
    --color-overlay: rgba(26, 26, 26, 0.85);

    /* Typography */
    --font-primary: 'Noto Serif KR', serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

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

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

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-primary);
    color: var(--color-text-light);
    line-height: 1.8;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

ul, ol {
    list-style: none;
}

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

/* === Container === */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    background: transparent;
    transition: background var(--transition-medium), padding var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xs) 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-accent-gold);
    letter-spacing: 0.1em;
}

.logo-sub {
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--color-text-muted);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-text-light);
    letter-spacing: 0.05em;
    position: relative;
    padding: var(--spacing-xs) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent-gold);
    transition: width var(--transition-medium);
}

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

.nav-link:hover {
    color: var(--color-accent-gold);
}

.nav-cta {
    background: var(--color-accent-wood);
    color: var(--color-text-light);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
}

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

.nav-cta:hover {
    background: var(--color-accent-gold);
    color: var(--color-text-dark);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--spacing-xs);
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text-light);
    transition: var(--transition-fast);
}

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

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

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

/* === Hero Section === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('image/초밥.jpeg') center center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 26, 26, 0.7) 0%,
        rgba(26, 26, 26, 0.5) 50%,
        rgba(26, 26, 26, 0.9) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--spacing-lg) var(--spacing-md);
    max-width: 800px;
}

.hero-subtitle {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--color-accent-gold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.05em;
}

.hero-description {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--color-text-muted);
    line-height: 2;
    margin-bottom: var(--spacing-lg);
}

.hero-btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: transparent;
    border: 1px solid var(--color-accent-gold);
    color: var(--color-accent-gold);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    transition: var(--transition-medium);
}

.hero-btn:hover {
    background: var(--color-accent-gold);
    color: var(--color-text-dark);
}

.hero-scroll {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--color-text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-accent-gold), transparent);
    animation: scrollLine 1.5s ease-in-out infinite;
}

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

/* === Section Common Styles === */
section {
    padding: var(--spacing-xl) 0;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-accent-gold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.02em;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-desc {
    font-size: 1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* === Philosophy Section === */
.philosophy {
    background: var(--color-bg-secondary);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.philosophy-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.philosophy-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    z-index: 1;
}

.philosophy-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.philosophy-content {
    padding: var(--spacing-md);
}

.philosophy-text {
    margin-top: var(--spacing-md);
}

.philosophy-text p {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-sm);
}

.philosophy-text blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-accent-gold);
    padding: var(--spacing-md) 0;
    border-left: 2px solid var(--color-accent-gold);
    padding-left: var(--spacing-md);
    margin: var(--spacing-md) 0;
}

/* === Menu Section === */
.menu {
    background: var(--color-bg-primary);
}

/* Menu Hero Image */
.menu-hero {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.menu-hero img {
    width: 100%;
    height: auto;
    display: block;
}

/* Menu Category */
.menu-category {
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--color-bg-secondary);
    border-radius: var(--radius-md);
}

.menu-category-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.menu-category-title .title-en {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--color-accent-gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Menu List - Full width items */
.menu-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.menu-item {
    padding: var(--spacing-sm);
    background: var(--color-bg-alt);
    border-radius: var(--radius-sm);
    border-left: 3px solid transparent;
    transition: var(--transition-fast);
}

.menu-item:hover {
    border-left-color: var(--color-accent-gold);
}

.menu-item.featured {
    border-left-color: var(--color-accent-gold);
    background: rgba(201, 169, 89, 0.08);
}

.menu-item.best {
    border-left-color: #d4af37;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.menu-item-name {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-text-light);
}

.menu-item-price {
    font-size: 0.95rem;
    color: var(--color-accent-gold);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.menu-item-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: var(--spacing-xs);
    line-height: 1.6;
}

/* BEST Badge */
.badge-best {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: var(--color-text-dark);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
    margin-right: 6px;
    letter-spacing: 0.05em;
}

/* Menu Grid List - Compact 2-column layout */
.menu-grid-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xs);
}

.menu-item-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm);
    background: var(--color-bg-alt);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.menu-item-compact:hover {
    background: rgba(201, 169, 89, 0.1);
}

.menu-item-compact.best {
    background: rgba(212, 175, 55, 0.1);
}

.menu-item-compact .menu-item-name {
    font-size: 0.9rem;
    font-weight: 400;
}

.menu-item-compact .menu-item-price {
    font-size: 0.85rem;
    white-space: nowrap;
}

/* Seasonal Menu */
.menu-seasonal {
    margin-top: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.seasonal-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: var(--color-bg-alt);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--color-accent-wood);
}

.seasonal-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-dark);
    background: var(--color-accent-gold);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
}

.seasonal-menu {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Menu Notice */
.menu-notice {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--color-bg-secondary);
    border-radius: var(--radius-md);
}

.menu-notice a {
    color: var(--color-accent-gold);
    font-weight: 500;
}

.menu-notice a:hover {
    text-decoration: underline;
}

/* Menu Gallery */
.menu-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.menu-gallery-item {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.menu-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

/* === Space Section === */
.space {
    background: var(--color-bg-secondary);
}

/* Gallery Slider */
.gallery-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.gallery-track {
    display: flex;
    transition: transform var(--transition-slow);
}

.gallery-slide {
    min-width: 100%;
    height: 500px;
}

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

.gallery-controls {
    position: absolute;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.gallery-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text-light);
    transition: var(--transition-fast);
}

.gallery-btn:hover {
    background: var(--color-accent-gold);
    color: var(--color-text-dark);
    border-color: var(--color-accent-gold);
}

.gallery-btn svg {
    width: 20px;
    height: 20px;
}

.gallery-dots {
    display: flex;
    gap: var(--spacing-xs);
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-fast);
}

.gallery-dot.active {
    background: var(--color-accent-gold);
}

.space-highlight {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-accent-gold);
    margin-top: var(--spacing-lg);
    letter-spacing: 0.05em;
}

/* === Location Section === */
.location {
    background: var(--color-bg-primary);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-lg);
    align-items: stretch;
}

.location-info {
    padding-right: var(--spacing-md);
}

.location-details {
    margin-top: var(--spacing-md);
}

.location-item {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--color-border);
}

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

.location-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-sm);
    color: var(--color-accent-gold);
}

.location-icon svg {
    width: 20px;
    height: 20px;
}

.location-text strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-accent-gold);
    margin-bottom: var(--spacing-xs);
}

.location-text p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.location-text a {
    color: var(--color-text-light);
}

.location-text a:hover {
    color: var(--color-accent-gold);
}

.location-notice {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--color-bg-secondary);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-accent-gold);
}

.location-notice p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.location-notice strong {
    color: var(--color-accent-gold);
}

.location-map {
    height: 450px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.location-map iframe {
    filter: grayscale(30%) contrast(1.1);
}

/* === Contact Section === */
.contact {
    background: var(--color-bg-secondary);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xs);
}

.form-group .required {
    color: var(--color-accent-gold);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-sm);
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text-light);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent-gold);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a39e93' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-group select option {
    background: var(--color-bg-secondary);
}

.form-full {
    margin-bottom: var(--spacing-md);
}

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

/* Checkbox Styling */
.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
}

.form-checkbox input[type="checkbox"] {
    display: none;
}

.form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.checkbox-custom {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-bg-alt);
    position: relative;
    transition: var(--transition-fast);
}

.form-checkbox input[type="checkbox"]:checked + label .checkbox-custom {
    background: var(--color-accent-gold);
    border-color: var(--color-accent-gold);
}

.form-checkbox input[type="checkbox"]:checked + label .checkbox-custom::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 7px;
    width: 4px;
    height: 9px;
    border: solid var(--color-text-dark);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    line-height: 1.5;
}

.privacy-link {
    color: var(--color-accent-gold);
    text-decoration: underline;
}

.privacy-link:hover {
    color: var(--color-text-light);
}

.form-submit {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--color-accent-wood);
    color: var(--color-text-light);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.form-submit:hover {
    background: var(--color-accent-gold);
    color: var(--color-text-dark);
}

/* === Privacy Modal === */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 500px;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    transform: scale(0.9);
    transition: transform var(--transition-medium);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    width: 32px;
    height: 32px;
    font-size: 1.5rem;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.modal-close:hover {
    color: var(--color-accent-gold);
}

.modal-content h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-accent-gold);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--color-border);
}

.modal-body {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.modal-body p {
    margin-bottom: var(--spacing-sm);
}

.modal-body strong {
    color: var(--color-text-light);
}

/* === Footer === */
.footer {
    background: var(--color-bg-alt);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--color-border);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--spacing-sm);
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-legal {
    columns: 2;
    column-gap: var(--spacing-lg);
}

.footer-legal p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-xs);
    break-inside: avoid;
}

.footer-legal strong {
    color: var(--color-text-light);
    font-weight: 500;
}

.footer-legal a {
    color: var(--color-text-muted);
}

.footer-legal a:hover {
    color: var(--color-accent-gold);
}

.footer-bottom {
    padding-top: var(--spacing-md);
    text-align: center;
}

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

/* ============================================
   Responsive Design
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

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

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

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

    .location-map {
        height: 350px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .footer-legal {
        columns: 1;
    }
}

/* Mobile */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--color-bg-secondary);
        flex-direction: column;
        justify-content: center;
        padding: var(--spacing-lg);
        transition: right var(--transition-medium);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: var(--spacing-sm) 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .hero-content {
        padding: var(--spacing-md);
    }

    .hero-description br {
        display: none;
    }

    /* Menu responsive */
    .menu-grid-list {
        grid-template-columns: 1fr;
    }

    .menu-item-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-item-compact {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
    }

    .seasonal-item {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .gallery-slide {
        height: 300px;
    }

    .gallery-controls {
        bottom: var(--spacing-sm);
    }

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

    .section-title br {
        display: none;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    section {
        padding: var(--spacing-lg) 0;
    }

    .hero-btn {
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .menu-card-info {
        flex-direction: column;
        gap: var(--spacing-xs);
    }

    .location-item {
        flex-direction: column;
        text-align: center;
    }

    .location-icon {
        margin: 0 auto;
    }
}

/* Prefers 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;
    }
}
