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

:root {
    --emerald-50: #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-200: #a7f3d0;
    --emerald-300: #6ee7b7;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --emerald-800: #065f46;
    --emerald-900: #064e3b;
    --cream-50: #fefdf8;
    --cream-100: #fef9ee;
    --cream-200: #fdf3e0;
    --cream-300: #f5e6c8;
    --cream-400: #e8d4a8;
    --warm-50: #faf8f5;
    --warm-100: #f5f0e8;
    --warm-200: #ede4d4;
    --warm-700: #5c4a3a;
    --warm-800: #3d3026;
    --warm-900: #2a2018;
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 1px 3px rgba(6, 79, 70, 0.06), 0 1px 2px rgba(6, 79, 70, 0.04);
    --shadow-md: 0 4px 16px rgba(6, 79, 70, 0.08), 0 2px 6px rgba(6, 79, 70, 0.05);
    --shadow-lg: 0 12px 40px rgba(6, 79, 70, 0.1), 0 4px 12px rgba(6, 79, 70, 0.06);
    --shadow-xl: 0 20px 60px rgba(6, 79, 70, 0.12), 0 8px 20px rgba(6, 79, 70, 0.07);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

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

body {
    font-family: var(--font-body);
    color: var(--warm-800);
    background: var(--cream-50);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    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 24px;
}

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 253, 248, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(6, 95, 70, 0.07);
    transition: box-shadow 0.3s ease;
}

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

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-kanji {
    font-family: var(--font-display), serif;
    font-size: 1.5rem;
    color: var(--emerald-700);
    line-height: 1;
}

.logo-text {
    font-family: var(--font-display), serif;
    font-size: 1.2rem;
    color: var(--emerald-800);
    font-weight: 400;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--warm-700);
    transition: all 0.25s ease;
}

.nav-link:hover {
    color: var(--emerald-700);
    background: var(--emerald-50);
}

.nav-cta {
    background: var(--emerald-700);
    color: white !important;
    margin-left: 8px;
}

.nav-cta:hover {
    background: var(--emerald-800);
    color: white !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
}

.hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 2px;
    background: var(--emerald-700);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--emerald-700);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

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

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    background: var(--cream-50);
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    color: var(--emerald-700);
    opacity: 0.5;
    pointer-events: none;
}

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px 8px 8px;
    background: white;
    border-radius: 100px;
    box-shadow: var(--shadow-sm);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--emerald-700);
    margin-bottom: 32px;
}

.badge-line {
    width: 28px;
    height: 2px;
    background: var(--emerald-500);
    border-radius: 2px;
}

.hero-title {
    font-family: var(--font-display), serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--warm-900);
    margin-bottom: 24px;
}

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

.hero-description {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--warm-700);
    margin-bottom: 40px;
    max-width: 460px;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display), serif;
    font-size: 1.5rem;
    color: var(--emerald-700);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--warm-700);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--cream-300);
}

/* Hero Images */
.hero-image-group {
    position: relative;
    height: 680px;
}

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

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

.hero-img-main {
    width: 340px;
    height: 480px;
    top: 20px;
    right: 0;
    z-index: 2;
}

.hero-img-float {
    width: 260px;
    height: 200px;
    bottom: 160px;
    left: -20px;
    z-index: 3;
    border: 4px solid var(--cream-50);
}

.hero-img-accent {
    width: 220px;
    height: 160px;
    bottom: 20px;
    right: 40px;
    z-index: 1;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--warm-700);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    z-index: 2;
}

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

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

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--emerald-700);
    color: white;
    box-shadow: 0 4px 16px rgba(6, 95, 70, 0.25);
}

.btn-primary:hover {
    background: var(--emerald-800);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6, 95, 70, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--warm-800);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: var(--cream-100);
    transform: translateY(-2px);
}

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

.btn-map {
    margin-top: 24px;
}

/* ── CATEGORIES ── */
.categories {
    padding: 80px 0;
    background: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-card {
    padding: 32px 24px;
    background: var(--cream-50);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 95, 70, 0.06);
    transition: all 0.35s ease;
    text-align: center;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--emerald-200);
}

.category-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--emerald-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-700);
    transition: all 0.35s ease;
}

.category-card:hover .category-icon {
    background: var(--emerald-700);
    color: white;
    transform: scale(1.05);
}

.category-name {
    font-family: var(--font-display), serif;
    font-size: 1.15rem;
    color: var(--warm-900);
    margin-bottom: 8px;
}

.category-desc {
    font-size: 0.875rem;
    color: var(--warm-700);
    line-height: 1.65;
}

/* ── SECTION HEADERS ── */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--emerald-600);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: var(--emerald-50);
    border-radius: 100px;
}

.section-title {
    font-family: var(--font-display), serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--warm-900);
    line-height: 1.15;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--warm-700);
    line-height: 1.7;
}

/* ── MENU PREVIEW ── */
.menu-preview {
    padding: 100px 0;
    background: var(--cream-50);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.menu-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(6, 95, 70, 0.05);
    transition: all 0.35s ease;
}

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

.menu-item-img {
    height: 100%;
    min-height: 200px;
    overflow: hidden;
}

.menu-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.menu-item-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-item-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.menu-item-name {
    font-family: var(--font-display), serif;
    font-size: 1.2rem;
    color: var(--warm-900);
}

.menu-item-tag {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--emerald-600);
    background: var(--emerald-50);
    padding: 4px 10px;
    border-radius: 100px;
}

.menu-item-desc {
    font-size: 0.9rem;
    color: var(--warm-700);
    line-height: 1.7;
}

.menu-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 32px 40px;
    background: var(--emerald-800);
    border-radius: var(--radius-lg);
    color: white;
    flex-wrap: wrap;
}

.menu-note p {
    font-size: 1rem;
    color: var(--emerald-100);
    flex: 1;
    min-width: 200px;
}

.menu-note strong {
    color: white;
}

.menu-note .btn-primary {
    background: white;
    color: var(--emerald-800);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.menu-note .btn-primary:hover {
    background: var(--cream-100);
}

/* ── ABOUT ── */
.about {
    padding: 100px 0;
    background: white;
}

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

.about-images {
    position: relative;
    height: 600px;
}

.about-img-main {
    width: 75%;
    height: 440px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 260px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid white;
}

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

.about-accent-ring {
    position: absolute;
    top: -20px;
    right: 40%;
    width: 120px;
    height: 120px;
    color: var(--emerald-300);
    z-index: -1;
}

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

.about-text {
    font-size: 1.025rem;
    line-height: 1.8;
    color: var(--warm-700);
    margin-bottom: 20px;
}

.about-text strong {
    color: var(--emerald-700);
    font-family: var(--font-display), serif;
    font-size: 1.15rem;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

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

.value-item span {
    font-size: 0.9rem;
    color: var(--warm-700);
    padding-top: 6px;
    line-height: 1.5;
}

/* ── GALLERY ── */
.gallery {
    padding: 100px 0;
    background: var(--cream-50);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 79, 70, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-family: var(--font-display), serif;
    font-size: 1.1rem;
}

.gallery-item-wide {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    height: 300px;
}

.gallery-item:not(.gallery-item-wide) {
    height: 220px;
}

/* ── VISIT ── */
.visit {
    padding: 100px 0;
    background: white;
}

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

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

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

.visit-detail strong {
    display: block;
    font-size: 0.9rem;
    color: var(--warm-900);
    margin-bottom: 4px;
}

.visit-detail p {
    font-size: 0.9rem;
    color: var(--warm-700);
    line-height: 1.6;
}

.visit-detail a {
    color: var(--emerald-600);
    transition: color 0.2s;
}

.visit-detail a:hover {
    color: var(--emerald-800);
}

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

/* ── CONTACT ── */
.contact {
    padding: 100px 0;
    background: var(--emerald-800);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    pointer-events: none;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact .section-tag {
    background: rgba(255,255,255,0.1);
    color: var(--emerald-200);
}

.contact .section-title {
    color: white;
}

.contact-text {
    font-size: 1.025rem;
    color: var(--emerald-200);
    line-height: 1.75;
    margin-bottom: 36px;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-direct-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 20px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    transition: all 0.25s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.contact-direct-link:hover {
    background: rgba(255,255,255,0.14);
    transform: translateX(4px);
}

.contact-direct-link svg {
    color: var(--emerald-300);
}

/* Form */
.contact-form-wrapper {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--warm-800);
}

.form-input {
    padding: 14px 16px;
    border: 1.5px solid var(--cream-300);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--warm-800);
    background: var(--cream-50);
    transition: all 0.25s ease;
    outline: none;
}

.form-input:focus {
    border-color: var(--emerald-500);
    background: white;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

.form-input::placeholder {
    color: var(--cream-400);
}

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

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--emerald-600);
}

.success-title {
    font-family: var(--font-display), serif;
    font-size: 1.5rem;
    color: var(--warm-900);
    margin-bottom: 8px;
}

.success p {
    color: var(--warm-700);
    font-size: 0.95rem;
}

/* ── FOOTER ── */
.footer {
    padding: 64px 0 0;
    background: var(--warm-900);
    color: rgba(255,255,255,0.6);
}

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

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo .logo-kanji {
    color: var(--emerald-400);
}

.footer-logo .logo-text {
    color: white;
}

.footer-links strong,
.footer-contact strong {
    display: block;
    color: white;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-contact a {
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.footer-contact span {
    font-size: 0.9rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.825rem;
    flex-wrap: wrap;
    gap: 12px;
}

/* ── REVEAL ANIMATIONS ── */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

[data-reveal].revealed:nth-child(2) { transition-delay: 0.1s; }
[data-reveal].revealed:nth-child(3) { transition-delay: 0.2s; }
[data-reveal].revealed:nth-child(4) { transition-delay: 0.3s; }
[data-reveal].revealed:nth-child(5) { transition-delay: 0.35s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .hero-image-group {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-img-main {
        width: 260px;
        height: 360px;
        right: 20px;
    }

    .hero-img-float {
        width: 200px;
        height: 150px;
        left: 0;
        bottom: 120px;
    }

    .hero-img-accent {
        width: 180px;
        height: 130px;
        right: 20px;
        bottom: 10px;
    }

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

    .about-grid {
        gap: 48px;
    }

    .about-images {
        height: 450px;
    }

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

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

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

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(254, 253, 248, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        border-bottom: 1px solid rgba(6, 95, 70, 0.07);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.35s ease;
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
    }

    .nav-cta {
        margin-left: 0;
    }

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

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

    .hero-stats {
        flex-wrap: wrap;
    }

    .stat-divider {
        display: none;
    }

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

    .category-card {
        display: flex;
        text-align: left;
        gap: 20px;
        align-items: center;
    }

    .category-icon {
        margin: 0;
        flex-shrink: 0;
    }

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

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

    .menu-note {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

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

    .about-images {
        height: 360px;
        order: 2;
    }

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

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

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

    .gallery-item-wide {
        grid-column: 1;
        height: 240px;
    }

    .gallery-item:not(.gallery-item-wide) {
        height: 200px;
    }

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

    .visit-map {
        height: 320px;
    }

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

    .contact-form-wrapper {
        padding: 28px;
    }

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

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

    .hero-scroll {
        display: none;
    }
}

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

    .nav-container {
        padding: 0 16px;
    }

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

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

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

    .section-title {
        font-size: 1.75rem;
    }
}
