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

:root {
    --bg-dark: #0F0A07;
    --bg-card: #1A120B;
    --bg-elevated: #231A12;
    --bg-surface: #2A1F16;
    --terracotta: #C2654A;
    --terracotta-light: #D4846E;
    --sand: #C8A86E;
    --sand-light: #D4BA8A;
    --sand-muted: #9A8256;
    --cream: #F5EDE0;
    --cream-dim: #E8DCC8;
    --text-primary: #F5EDE0;
    --text-secondary: #B8A898;
    --text-muted: #7A6E64;
    --gold: #C8A86E;
    --gold-light: #E0C88A;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;
    --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-sans);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Typography ── */
.section__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.section__eyebrow-line {
    width: 32px;
    height: 1px;
    background: var(--sand);
    flex-shrink: 0;
}

.section__eyebrow span {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sand);
}

.section__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--cream);
    margin-bottom: 24px;
}

.text-accent {
    color: var(--sand);
    font-style: italic;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
}

.btn--primary {
    background: var(--sand);
    color: var(--bg-dark);
}

.btn--primary:hover {
    background: var(--sand-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(200, 168, 110, 0.25);
}

.btn--ghost {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(200, 168, 110, 0.3);
}

.btn--ghost:hover {
    border-color: var(--sand);
    background: rgba(200, 168, 110, 0.08);
}

.btn--outline {
    background: transparent;
    color: var(--sand);
    border: 1px solid var(--sand);
}

.btn--outline:hover {
    background: var(--sand);
    color: var(--bg-dark);
}

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

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(15, 10, 7, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200, 168, 110, 0.08);
}

.nav__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav__logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--sand);
    letter-spacing: 0.05em;
}

.nav__logo-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--cream);
    letter-spacing: 0.02em;
}

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

.nav__link {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.04em;
    transition: var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--sand);
    transition: var(--transition);
}

.nav__link:hover { color: var(--sand); }
.nav__link:hover::after { width: 100%; }

.nav__link--cta {
    padding: 8px 20px;
    border: 1px solid rgba(200, 168, 110, 0.3);
    border-radius: 100px;
    color: var(--sand);
}

.nav__link--cta::after { display: none; }
.nav__link--cta:hover {
    background: rgba(200, 168, 110, 0.1);
    border-color: var(--sand);
}

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

.nav__toggle-line {
    width: 22px;
    height: 1.5px;
    background: var(--cream);
    transition: var(--transition);
    transform-origin: center;
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 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(4px, -5px);
}

/* ── Mobile Menu ── */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(15, 10, 7, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-slow);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu__close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--cream);
    padding: 8px;
}

.mobile-menu__links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mobile-menu__link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-secondary);
    transition: var(--transition);
}

.mobile-menu__link:hover { color: var(--sand); }

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(194, 101, 74, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 30%, rgba(200, 168, 110, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 40% 80% at 90% 80%, rgba(194, 101, 74, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.hero__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.hero__eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--terracotta);
}

.hero__eyebrow span {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta-light);
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 28px;
}

.hero__headline-line {
    display: block;
    color: var(--cream);
}

.hero__headline-line--accent {
    color: var(--sand);
    font-style: italic;
}

.hero__subheadline {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 480px;
}

.hero__subheadline strong {
    color: var(--cream-dim);
    font-weight: 500;
}

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

.hero__stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero__stat-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--sand);
}

.hero__stat-label {
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(200, 168, 110, 0.2);
}

/* Hero Image Stack */
.hero__image-col {
    position: relative;
    height: 700px;
}

.hero__image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero__image {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

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

.hero__image--main {
    width: 75%;
    height: 85%;
    top: 0;
    right: 0;
    z-index: 2;
}

.hero__image--accent {
    width: 55%;
    height: 40%;
    bottom: 10%;
    left: 0;
    z-index: 3;
    border: 2px solid rgba(200, 168, 110, 0.2);
}

.hero__image--float {
    width: 35%;
    height: 28%;
    bottom: 0;
    right: 10%;
    z-index: 4;
    border-radius: var(--radius-md);
    border: 2px solid rgba(200, 168, 110, 0.15);
}

.hero__image-badge {
    position: absolute;
    bottom: 32%;
    right: -8%;
    z-index: 5;
    background: var(--bg-card);
    border: 1px solid rgba(200, 168, 110, 0.2);
    border-radius: 100px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--sand);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    z-index: 1;
}

.hero__scroll svg {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* ── About ── */
.about {
    padding: 140px 0;
    position: relative;
}

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

.about__image-side {
    position: relative;
}

.about__image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}

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

.about__image-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 4px solid var(--bg-dark);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

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

.about__content { padding: 20px 0; }

.about__body {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about__body strong { color: var(--cream-dim); }

.about__features {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 48px;
}

.about__feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.about__feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--bg-elevated);
    border: 1px solid rgba(200, 168, 110, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--sand);
}

.about__feature h4 {
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 4px;
}

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

/* ── Menu ── */
.menu {
    padding: 120px 0;
    background: var(--bg-card);
    position: relative;
}

.menu::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 50% at 50% 0%, rgba(194, 101, 74, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.menu__header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
}

.menu__subtitle {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.menu__categories {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.menu__cat {
    padding: 10px 24px;
    border-radius: 100px;
    border: 1px solid rgba(200, 168, 110, 0.2);
    background: transparent;
    color: var(--text-secondary);
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: var(--transition);
}

.menu__cat:hover,
.menu__cat.active {
    background: var(--sand);
    border-color: var(--sand);
    color: var(--bg-dark);
}

.menu__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 1;
}

.menu__item {
    background: var(--bg-elevated);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(200, 168, 110, 0.06);
    transition: var(--transition);
    opacity: 1;
    transform: translateY(0);
}

.menu__item.hidden {
    display: none;
}

.menu__item:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 168, 110, 0.15);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

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

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

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

.menu__item-body {
    padding: 24px;
}

.menu__item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.menu__item-name {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--cream);
}

.menu__item-tag {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sand-muted);
    background: rgba(200, 168, 110, 0.08);
    padding: 4px 10px;
    border-radius: 100px;
}

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

/* ── Gallery ── */
.gallery {
    padding: 140px 0;
    position: relative;
}

.gallery__header {
    text-align: center;
    margin-bottom: 64px;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 260px);
    gap: 16px;
}

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

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

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

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 10, 7, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-overlay span {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--cream);
}

.gallery__item--large {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
}

.gallery__item--tall {
    grid-row: 1 / 3;
    grid-column: 3;
}

/* ── Visit ── */
.visit {
    padding: 120px 0;
    background: var(--bg-card);
    position: relative;
}

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

.visit__info {
    padding: 40px 0;
}

.visit__details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 48px 0;
}

.visit__detail {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.visit__detail-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--bg-elevated);
    border: 1px solid rgba(200, 168, 110, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--sand);
}

.visit__detail h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 4px;
}

.visit__detail p,
.visit__detail a {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.visit__detail a:hover { color: var(--sand); }

.visit__map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 480px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

/* ── Contact ── */
.contact {
    padding: 140px 0;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 50% at 80% 50%, rgba(194, 101, 74, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

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

.contact__text {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.contact__quick {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.contact__quick-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.contact__quick-item:hover { color: var(--sand); }

.contact__quick-item svg { color: var(--sand); }

/* Form */
.contact__form-wrap {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 48px;
    border: 1px solid rgba(200, 168, 110, 0.08);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.contact__form { display: flex; flex-direction: column; gap: 24px; }

.form__group { display: flex; flex-direction: column; gap: 8px; }

.form__label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form__input,
.form__textarea {
    background: var(--bg-elevated);
    border: 1px solid rgba(200, 168, 110, 0.1);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--cream);
    transition: var(--transition);
    outline: none;
    width: 100%;
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--text-muted);
}

.form__input:focus,
.form__textarea:focus {
    border-color: var(--sand);
    box-shadow: 0 0 0 3px rgba(200, 168, 110, 0.1);
}

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

.contact__success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    gap: 16px;
}

.contact__success.show {
    display: flex;
}

.contact__success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(200, 168, 110, 0.1);
    border: 1px solid rgba(200, 168, 110, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sand);
}

.contact__success h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--cream);
}

.contact__success p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ── Footer ── */
.footer {
    padding: 80px 0 0;
    background: var(--bg-card);
    border-top: 1px solid rgba(200, 168, 110, 0.06);
}

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

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

.footer__logo-mark {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--sand);
}

.footer__logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--cream);
}

.footer__tagline {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 280px;
}

.footer__links h4,
.footer__hours h4,
.footer__contact h4 {
    font-family: var(--font-serif);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 20px;
}

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

.footer__links li a {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: var(--transition);
}

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

.footer__hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--text-secondary);
    gap: 16px;
}

.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer__contact a {
    color: var(--text-secondary);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.footer__bottom {
    border-top: 1px solid rgba(200, 168, 110, 0.06);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ── Scroll Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

    .hero__image-col {
        height: 500px;
        order: -1;
    }

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

    .about__layout {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .about__image-secondary {
        right: 20px;
        bottom: -20px;
    }

    .gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 220px);
    }

    .gallery__item--large {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }

    .gallery__item--tall {
        grid-row: 2 / 4;
        grid-column: 2 / 3;
    }

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

    .visit__map {
        min-height: 360px;
    }

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

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

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

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

    .hero__image-col {
        height: 360px;
    }

    .hero__image--main {
        width: 70%;
        height: 75%;
    }

    .hero__image--accent {
        width: 55%;
        height: 40%;
    }

    .hero__image--float {
        width: 40%;
        height: 30%;
    }

    .hero__image-badge {
        right: 0;
        bottom: 28%;
    }

    .hero__stats {
        gap: 20px;
    }

    .hero__scroll { display: none; }

    .about { padding: 80px 0; }

    .about__image-main { border-radius: var(--radius-lg); }
    .about__image-secondary {
        width: 50%;
        border-radius: var(--radius-md);
    }

    .menu { padding: 80px 0; }

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

    .gallery { padding: 80px 0; }

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

    .gallery__item--large,
    .gallery__item--tall {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .gallery__item { height: 220px; }

    .visit { padding: 80px 0; }

    .contact { padding: 80px 0; }

    .contact__form-wrap { padding: 32px 24px; }

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

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

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        justify-content: center;
    }

    .hero__stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .hero__stat-divider {
        width: 40px;
        height: 1px;
    }

    .menu__categories {
        gap: 6px;
    }

    .menu__cat {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
}
