/* ============================================
   Susan Lee's Pies — Complete Stylesheet
   ============================================ */

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

:root {
    --color-emerald-900: #064e3b;
    --color-emerald-800: #065f46;
    --color-emerald-700: #047857;
    --color-emerald-600: #059669;
    --color-emerald-500: #10b981;
    --color-cream: #faf6f0;
    --color-cream-dark: #f0e8da;
    --color-cream-light: #fdfbf7;
    --color-warm-brown: #8b6f4e;
    --color-warm-tan: #c4a77d;
    --color-text-dark: #1a1a1a;
    --color-text-body: #3d3d3d;
    --color-text-muted: #6b6b6b;
    --color-text-light: #999999;
    --color-white: #ffffff;
    --color-border: rgba(6, 95, 70, 0.12);
    --color-shadow: rgba(6, 78, 59, 0.08);
    --color-shadow-md: rgba(6, 78, 59, 0.12);
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text-body);
    background-color: var(--color-cream-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

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

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--color-text-dark);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all var(--transition);
    white-space: nowrap;
}

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

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

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

.btn--ghost:hover {
    background: var(--color-emerald-800);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn--large {
    padding: 1rem 2.25rem;
    font-size: 1rem;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 251, 247, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition);
}

.nav.scrolled {
    box-shadow: 0 4px 30px var(--color-shadow);
}

.nav__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-emerald-800);
}

.nav__logo-icon {
    color: var(--color-emerald-800);
}

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

.nav__link {
    padding: 0.5rem 1rem;
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--color-text-body);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav__link:hover {
    color: var(--color-emerald-800);
    background: rgba(6, 95, 70, 0.06);
}

.nav__link--cta {
    background: var(--color-emerald-800);
    color: var(--color-white) !important;
    border-radius: 50px;
    margin-left: 0.5rem;
}

.nav__link--cta:hover {
    background: var(--color-emerald-700);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav__toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-emerald-800);
    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);
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--color-cream-light);
    padding: 72px 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(6, 95, 70, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero__container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    flex: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(6, 95, 70, 0.08);
    border: 1px solid rgba(6, 95, 70, 0.15);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-emerald-800);
    margin-bottom: 1.5rem;
    width: fit-content;
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 600;
    color: var(--color-text-dark);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero__subheadline {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 520px;
}

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

.hero__stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

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

.hero__stat-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-emerald-800);
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

.hero__image {
    position: relative;
}

.hero__image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(6, 78, 59, 0.15);
}

.hero__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__image-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--color-cream-dark);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.hero__floating-card {
    position: absolute;
    bottom: 2rem;
    left: -2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--color-white);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(6, 78, 59, 0.15);
    z-index: 2;
}

.hero__floating-card svg {
    color: var(--color-warm-tan);
    flex-shrink: 0;
}

.hero__floating-card-text {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.hero__floating-card-sub {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.hero__scroll {
    text-align: center;
    padding: 2rem 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero__scroll span {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-light);
}

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

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

/* --- About --- */
.about {
    padding: 7rem 2rem;
    background: var(--color-white);
}

.about__container {
    max-width: 1280px;
    margin: 0 auto;
}

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

.about__images {
    position: relative;
}

.about__img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(6, 78, 59, 0.12);
}

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

.about__img-secondary {
    position: absolute;
    bottom: -2rem;
    right: -1rem;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(6, 78, 59, 0.18);
    border: 4px solid var(--color-white);
}

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

.about__img-accent {
    position: absolute;
    top: -1.5rem;
    right: 2rem;
    width: 72px;
    height: 72px;
    background: var(--color-emerald-800);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.about__content {
    padding: 1rem 0;
}

.about__text {
    font-size: 1.0625rem;
    color: var(--color-text-body);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

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

.about__feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(6, 95, 70, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-emerald-800);
    flex-shrink: 0;
}

.about__feature-title {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.about__feature-desc {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: 0.125rem;
}

/* --- Menu --- */
.menu {
    padding: 7rem 2rem;
    background: var(--color-cream);
}

.menu__container {
    max-width: 1280px;
    margin: 0 auto;
}

.menu__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.menu__subtitle {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    line-height: 1.75;
}

.menu__tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.menu__tab {
    padding: 0.625rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text-muted);
    border-radius: 50px;
    border: 1.5px solid var(--color-border);
    transition: all var(--transition);
    background: var(--color-white);
}

.menu__tab:hover {
    color: var(--color-emerald-800);
    border-color: var(--color-emerald-600);
}

.menu__tab.active {
    background: var(--color-emerald-800);
    color: var(--color-white);
    border-color: var(--color-emerald-800);
}

.menu__tab-content {
    display: none;
}

.menu__tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.menu__card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--color-shadow);
    transition: all var(--transition);
}

.menu__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px var(--color-shadow-md);
}

.menu__card-image {
    height: 200px;
    overflow: hidden;
}

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

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

.menu__card-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.menu__card-title {
    font-family: var(--font-display);
    font-size: 1.1875rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.menu__card-desc {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.menu__note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
    padding: 1rem 1.25rem;
    background: rgba(6, 95, 70, 0.06);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--color-emerald-800);
}

.menu__note svg {
    flex-shrink: 0;
    color: var(--color-emerald-700);
}

/* --- Gallery --- */
.gallery {
    padding: 7rem 2rem;
    background: var(--color-white);
}

.gallery__container {
    max-width: 1280px;
    margin: 0 auto;
}

.gallery__header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.gallery__item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

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

.gallery__item:hover img {
    transform: scale(1.05);
}

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

.gallery__item--wide {
    grid-column: span 7;
}

/* --- Visit --- */
.visit {
    padding: 7rem 2rem;
    background: var(--color-cream);
}

.visit__container {
    max-width: 1280px;
    margin: 0 auto;
}

.visit__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.visit__content {
    padding: 2rem 0;
}

.visit__text {
    font-size: 1.0625rem;
    color: var(--color-text-body);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

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

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

.visit__detail-icon {
    width: 44px;
    height: 44px;
    background: rgba(6, 95, 70, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-emerald-800);
    flex-shrink: 0;
}

.visit__detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
}

.visit__detail-value {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-dark);
}

.visit__detail-link {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-emerald-700);
    transition: color var(--transition);
}

.visit__detail-link:hover {
    color: var(--color-emerald-900);
    text-decoration: underline;
}

.visit__map {
    min-height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 40px var(--color-shadow);
}

/* --- Contact --- */
.contact {
    padding: 7rem 2rem;
    background: var(--color-emerald-900);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.contact__container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.contact__text {
    padding: 1rem 0;
}

.contact__text .section-label {
    color: var(--color-emerald-500);
}

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

.contact__text-body {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

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

.contact__label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.04em;
}

.contact__input,
.contact__textarea {
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    transition: all var(--transition);
    outline: none;
}

.contact__input::placeholder,
.contact__textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.contact__input:focus,
.contact__textarea:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--color-emerald-500);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

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

.contact__success {
    display: none;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-sm);
    color: var(--color-emerald-500);
    font-size: 0.9375rem;
}

.contact__success.show {
    display: flex;
}

/* --- Footer --- */
.footer {
    background: var(--color-emerald-900);
    color: var(--color-white);
    padding: 4rem 2rem 0;
}

.footer__container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.footer__logo svg {
    color: var(--color-emerald-500);
}

.footer__tagline {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 300px;
}

.footer__heading {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.25rem;
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer__links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
}

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

.footer__hours ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer__day {
    display: block;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer__time {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.125rem;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer__bottom a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

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

/* --- Mobile Menu Overlay --- */
.nav__menu-overlay {
    display: none;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero__container {
        gap: 2.5rem;
    }
    
    .menu__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery__grid {
        grid-template-rows: repeat(3, 200px);
    }
    
    .gallery__item--large {
        grid-column: span 7;
        grid-row: span 1;
    }
    
    .gallery__item--wide {
        grid-column: span 5;
    }
}

@media (max-width: 900px) {
    .contact__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }
    
    .nav__menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(253, 251, 247, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        padding: 2rem;
        gap: 0.5rem;
        transform: translateX(100%);
        transition: transform var(--transition);
    }
    
    .nav__menu.open {
        transform: translateX(0);
    }
    
    .nav__link {
        font-size: 1.125rem;
        padding: 1rem;
        border-radius: var(--radius-sm);
    }
    
    .nav__link--cta {
        margin-left: 0;
        text-align: center;
        margin-top: 1rem;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero__image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero__floating-card {
        left: 0;
        bottom: 1rem;
    }
    
    .about__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about__images {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .menu__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .gallery__item--large,
    .gallery__item--wide {
        grid-column: span 1;
    }
    
    .gallery__item {
        height: 200px;
    }
    
    .visit__grid {
        grid-template-columns: 1fr;
    }
    
    .visit__map {
        min-height: 300px;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }
    
    .hero {
        padding: 100px 1.25rem 3rem;
    }
    
    .hero__actions {
        flex-direction: column;
    }
    
    .hero__actions .btn {
        justify-content: center;
        width: 100%;
    }
    
    .hero__stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .hero__stat-divider {
        display: none;
    }
    
    .about,
    .menu,
    .gallery,
    .visit,
    .contact {
        padding: 4rem 1.25rem;
    }
    
    .contact__row {
        grid-template-columns: 1fr;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr;
    }
    
    .gallery__item--large,
    .gallery__item--wide {
        grid-column: span 1;
    }
}

/* --- Scroll Animations --- */
.reveal {
    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);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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