/* ============================================
   Roger's Place — Chicopee Cafés & Bars
   Emerald Green + Cream | Confident Corporate
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::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;
    --emerald-950: #022c22;

    --cream-50:  #fefdf8;
    --cream-100: #fefce8;
    --cream-200: #fef9c3;
    --cream-300: #fef08a;
    --cream-400: #fde047;
    --cream-500: #facc15;

    --neutral-50:  #fafafa;
    --neutral-100: #f5f5f5;
    --neutral-200: #e5e5e5;
    --neutral-300: #d4d4d4;
    --neutral-400: #a3a3a3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;
    --neutral-950: #0a0a0a;

    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);

    --radius-sm: 6px;
    --radius-md: 10px;
    --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-body);
    color: var(--neutral-800);
    background: var(--cream-50);
    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;
}

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

address {
    font-style: normal;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Section Labels & Titles ---------- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--emerald-700);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--emerald-500);
}

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

.text-emerald {
    color: var(--emerald-700);
}

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

.btn--primary {
    background: var(--emerald-700);
    color: #ffffff;
    border: 2px solid var(--emerald-700);
}

.btn--primary:hover {
    background: var(--emerald-800);
    border-color: var(--emerald-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--outline-light {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.6);
}

.btn--outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 253, 248, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(6, 95, 70, 0.08);
    transition: var(--transition);
}

.nav.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;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neutral-900);
}

.nav__logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--emerald-700);
    color: #ffffff;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 800;
}

.nav__logo-text {
    transition: var(--transition);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav__link {
    padding: 8px 16px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--neutral-600);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

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

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

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

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius-sm);
}

.nav__toggle:hover {
    background: var(--emerald-50);
}

.nav__toggle-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--neutral-700);
    border-radius: 2px;
    transition: var(--transition);
}

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

.nav__toggle.active .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

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

.nav__overlay {
    display: none;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(2, 44, 34, 0.88) 0%,
        rgba(6, 78, 59, 0.82) 40%,
        rgba(4, 120, 87, 0.72) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    width: 100%;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--cream-200);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 28px;
    backdrop-filter: blur(4px);
}

.hero__badge svg {
    color: var(--emerald-300);
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.08;
    color: #ffffff;
    margin-bottom: 24px;
    max-width: 800px;
}

.hero__headline--accent {
    color: var(--emerald-300);
}

.hero__subheadline {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.8);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ---------- About ---------- */
.about {
    padding: 100px 0;
    background: var(--cream-50);
}

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

.about__images {
    position: relative;
    height: 600px;
}

.about__img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 75%;
    border-radius: var(--radius-lg);
    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: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--cream-50);
}

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

.about__img-accent {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--emerald-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.about__content {
    max-width: 520px;
}

.about__text {
    font-size: 1.0625rem;
    color: var(--neutral-600);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about__stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--neutral-200);
}

.stat__number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--emerald-700);
    line-height: 1;
    margin-bottom: 6px;
}

.stat__label {
    font-size: 0.875rem;
    color: var(--neutral-500);
    font-weight: 500;
}

/* ---------- Menu ---------- */
.menu {
    padding: 100px 0;
    background: var(--neutral-950);
}

.menu__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

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

.menu__header .section-label::before {
    background: var(--emerald-400);
}

.menu__header .section-title {
    color: #ffffff;
}

.menu__header .section-title .text-emerald {
    color: var(--emerald-400);
}

.menu__subtitle {
    font-size: 1.0625rem;
    color: var(--neutral-400);
    line-height: 1.7;
}

.menu__tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.menu__tab {
    padding: 12px 24px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--neutral-400);
    border: 1px solid var(--neutral-700);
    border-radius: 50px;
    transition: var(--transition);
}

.menu__tab:hover {
    color: var(--emerald-400);
    border-color: var(--emerald-700);
}

.menu__tab.active {
    background: var(--emerald-700);
    color: #ffffff;
    border-color: var(--emerald-700);
}

.menu__panels {
    position: relative;
    min-height: 200px;
}

.menu__panel {
    display: none;
}

.menu__panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.menu__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--neutral-800);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.menu__item {
    background: var(--neutral-900);
    padding: 28px 32px;
    transition: var(--transition);
}

.menu__item:hover {
    background: var(--neutral-800);
}

.menu__item-name {
    font-family: var(--font-display);
    font-size: 1.1875rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.menu__item-desc {
    font-size: 0.9375rem;
    color: var(--neutral-400);
    line-height: 1.6;
}

.menu__note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--neutral-500);
    margin-top: 32px;
    font-style: italic;
}

/* ---------- Atmosphere ---------- */
.atmosphere {
    padding: 100px 0;
    background: var(--cream-50);
}

.atmosphere__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
}

.atmosphere__header .section-title .text-emerald {
    color: var(--emerald-700);
}

.atmosphere__gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
    margin-bottom: 64px;
}

.atmosphere__gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

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

.atmosphere__gallery-item--large {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
    height: 380px;
}

.atmosphere__gallery-item:not(.atmosphere__gallery-item--large) {
    height: 180px;
}

.atmosphere__gallery-item--wide {
    grid-column: 1 / 13;
    grid-row: 2 / 3;
    height: 220px;
}

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

.feature-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--neutral-200);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--emerald-300);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-card__icon {
    width: 52px;
    height: 52px;
    background: var(--emerald-50);
    border: 1px solid var(--emerald-200);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-700);
    margin-bottom: 20px;
}

.feature-card__title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 10px;
}

.feature-card__text {
    font-size: 0.9375rem;
    color: var(--neutral-500);
    line-height: 1.7;
}

/* ---------- Visit ---------- */
.visit {
    padding: 100px 0;
    background: #ffffff;
}

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

.visit__address {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.visit__address-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 1rem;
    color: var(--neutral-600);
    line-height: 1.7;
}

.visit__address-block svg {
    flex-shrink: 0;
    color: var(--emerald-600);
    margin-top: 3px;
}

.visit__address-block a {
    color: var(--neutral-600);
    transition: var(--transition);
}

.visit__address-block a:hover {
    color: var(--emerald-700);
}

.visit__hours-card {
    background: var(--emerald-800);
    border-radius: var(--radius-xl);
    padding: 40px;
    color: #ffffff;
}

.visit__hours-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: #ffffff;
}

.visit__hours-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.visit__hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.visit__hours-row:last-child {
    border-bottom: none;
}

.visit__hours-day {
    font-weight: 500;
    color: rgba(255,255,255,0.7);
}

.visit__hours-time {
    font-weight: 600;
    color: #ffffff;
}

.visit__hours-note {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
    margin-top: 20px;
    font-style: italic;
}

.visit__hours-card .btn--primary {
    margin-top: 24px;
    background: #ffffff;
    color: var(--emerald-800);
    border-color: #ffffff;
}

.visit__hours-card .btn--primary:hover {
    background: var(--cream-100);
    border-color: #ffffff;
}

/* ---------- Contact ---------- */
.contact {
    padding: 100px 0;
    background: var(--neutral-50);
}

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

.contact__text {
    font-size: 1.0625rem;
    color: var(--neutral-500);
    line-height: 1.8;
    margin-top: 20px;
}

.contact__form-wrapper {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-md);
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--neutral-700);
    margin-bottom: 8px;
}

.form__input {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--neutral-800);
    background: var(--neutral-50);
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    border-color: var(--emerald-500);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--neutral-400);
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23737373' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

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

.form__success {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--emerald-50);
    border: 1px solid var(--emerald-200);
    border-radius: var(--radius-sm);
    color: var(--emerald-800);
    font-size: 0.9375rem;
    font-weight: 500;
    margin-top: 16px;
}

.form__success svg {
    color: var(--emerald-600);
    flex-shrink: 0;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--neutral-950);
    color: var(--neutral-400);
    padding: 64px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer__logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--emerald-700);
    color: #ffffff;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 800;
}

.footer__tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--neutral-500);
    max-width: 300px;
}

.footer__heading {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    font-size: 0.9375rem;
    color: var(--neutral-500);
    transition: var(--transition);
}

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

.footer__contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer__contact a {
    color: var(--neutral-500);
    transition: var(--transition);
}

.footer__contact a:hover {
    color: var(--emerald-400);
}

.footer__bottom {
    border-top: 1px solid var(--neutral-800);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8125rem;
    color: var(--neutral-600);
}

/* ---------- Scroll Animations ---------- */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(30px);
    }
    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .about__grid {
        gap: 48px;
    }

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

    .atmosphere__gallery-item--large {
        height: 300px;
    }

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

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav__links {
        display: none;
    }

    .nav__overlay {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 999;
        background: rgba(254, 253, 248, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .nav__overlay.open {
        display: flex;
    }

    .nav__overlay-link {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--neutral-700);
        padding: 14px 28px;
        border-radius: var(--radius-md);
        transition: var(--transition);
    }

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

    .nav__overlay-link--cta {
        margin-top: 16px;
        background: var(--emerald-700);
        color: #ffffff !important;
    }

    .nav__overlay-link--cta:hover {
        background: var(--emerald-800);
    }

    .hero__content {
        padding: 120px 24px 100px;
    }

    .hero__headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero__actions {
        flex-direction: column;
    }

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

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

    .about__images {
        height: 400px;
        order: -1;
    }

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

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

    .atmosphere__gallery-item--large {
        grid-column: 1 / -1;
        height: 260px;
    }

    .atmosphere__gallery-item--wide {
        grid-column: 1 / -1;
        height: 200px;
    }

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

    .visit__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

    .hero__badge {
        font-size: 0.75rem;
    }

    .menu__tabs {
        gap: 6px;
    }

    .menu__tab {
        padding: 10px 18px;
        font-size: 0.875rem;
    }

    .menu__item {
        padding: 20px 20px;
    }

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

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

    .about__images {
        height: 300px;
    }

    .about__stats {
        gap: 24px;
    }

    .visit__hours-card {
        padding: 28px;
    }

    .contact__form-wrapper {
        padding: 24px;
    }
}
