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

:root {
    --plum-deep: #2D1B2E;
    --plum: #5C3A5E;
    --plum-light: #8B5E83;
    --plum-muted: #B892A8;
    --plum-pale: #F5EEF6;
    --amber: #C8923E;
    --amber-light: #E0B06A;
    --amber-pale: #FDF6E3;
    --cream: #FDF9F4;
    --cream-dark: #F5EDE3;
    --charcoal: #1A1A1A;
    --text: #2C2C2C;
    --text-light: #6B6B6B;
    --text-muted: #9A9A9A;
    --white: #FFFFFF;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Lato', 'Helvetica Neue', Arial, sans-serif;
    --shadow-sm: 0 2px 8px rgba(45, 27, 46, 0.06);
    --shadow-md: 0 8px 30px rgba(45, 27, 46, 0.10);
    --shadow-lg: 0 20px 60px rgba(45, 27, 46, 0.14);
    --radius: 4px;
    --radius-lg: 12px;
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--cream);
    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: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Typography ── */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 16px;
}

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

.section-title em {
    font-style: italic;
    color: var(--plum);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.8;
}

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

/* ── Header ── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 249, 244, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(92, 58, 94, 0.08);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

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

.logo:hover .logo-mark {
    background: var(--plum);
    color: var(--white);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--plum-deep);
    letter-spacing: 0.02em;
}

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

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
    padding: 8px 16px;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 1.5px;
    background: var(--amber);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

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

.nav-link--cta {
    background: var(--plum);
    color: var(--white) !important;
    border-radius: var(--radius);
    margin-left: 8px;
}

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

.nav-link--cta:hover {
    background: var(--plum-light);
}

/* Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-line {
    width: 24px;
    height: 2px;
    background: var(--plum-deep);
    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 */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(45, 27, 46, 0.97);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

.nav-overlay-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.nav-overlay-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--cream);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.nav-overlay.open .nav-overlay-link {
    opacity: 1;
    transform: translateY(0);
}

.nav-overlay.open .nav-overlay-link:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.open .nav-overlay-link:nth-child(2) { transition-delay: 0.15s; }
.nav-overlay.open .nav-overlay-link:nth-child(3) { transition-delay: 0.2s; }
.nav-overlay.open .nav-overlay-link:nth-child(4) { transition-delay: 0.25s; }
.nav-overlay.open .nav-overlay-link:nth-child(5) { transition-delay: 0.3s; }

.nav-overlay-link:hover {
    color: var(--amber);
}

.nav-overlay-link--cta {
    color: var(--amber) !important;
    font-family: var(--font-sans);
    font-size: 1rem !important;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 16px;
    border: 1px solid var(--amber);
    padding: 12px 32px;
    border-radius: var(--radius);
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: 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(
        180deg,
        rgba(45, 27, 46, 0.75) 0%,
        rgba(45, 27, 46, 0.60) 50%,
        rgba(45, 27, 46, 0.80) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 24px;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--amber-light);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--cream);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
}

.hero-accent {
    font-style: italic;
    color: var(--amber-light);
}

.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(253, 249, 244, 0.8);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.8;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(253, 249, 244, 0.5);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}

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

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

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn--primary {
    background: var(--amber);
    color: var(--white);
    border-color: var(--amber);
}

.btn--primary:hover {
    background: var(--amber-light);
    border-color: var(--amber-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 146, 62, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(253, 249, 244, 0.5);
}

.btn--outline:hover {
    background: var(--white);
    color: var(--plum-deep);
    border-color: var(--white);
    transform: translateY(-2px);
}

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

.btn--map {
    color: var(--plum);
    border-color: var(--plum);
    margin-top: 16px;
}

.btn--map:hover {
    background: var(--plum);
    color: var(--white);
}

/* ── Section ── */
.section {
    padding: 120px 0;
}

/* ── Divider ── */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 0;
}

.divider-line {
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: var(--plum-muted);
    opacity: 0.4;
}

.divider-icon {
    color: var(--amber);
    opacity: 0.7;
    flex-shrink: 0;
}

/* ── About ── */
.about {
    background: var(--cream);
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-img-main:hover img {
    transform: scale(1.03);
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--cream);
}

.about-img-secondary img {
    width: 260px;
    height: 220px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: var(--plum);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.about-badge-text {
    font-family: var(--font-serif);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--amber-light);
    text-align: center;
    letter-spacing: 0.08em;
    line-height: 1.4;
}

.about-content {
    padding: 20px 0;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
}

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

.about-feature svg {
    color: var(--amber);
    flex-shrink: 0;
    margin-top: 2px;
}

.about-feature h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--plum-deep);
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ── Menu ── */
.menu {
    background: var(--plum-deep);
    position: relative;
}

.menu::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(92, 58, 94, 0.3) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 50%, rgba(200, 146, 62, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.menu .container {
    position: relative;
    z-index: 1;
}

.menu .section-eyebrow {
    color: var(--amber-light);
}

.menu .section-title {
    color: var(--cream);
}

.menu .section-title em {
    color: var(--amber-light);
}

.menu .section-subtitle {
    color: rgba(253, 249, 244, 0.6);
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.menu-cat-btn {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 12px 28px;
    border: 1px solid rgba(253, 249, 244, 0.2);
    border-radius: var(--radius);
    background: transparent;
    color: rgba(253, 249, 244, 0.6);
    cursor: pointer;
    transition: var(--transition);
}

.menu-cat-btn:hover {
    border-color: var(--amber);
    color: var(--amber-light);
}

.menu-cat-btn.active {
    background: var(--amber);
    border-color: var(--amber);
    color: var(--white);
}

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

.menu-item {
    display: flex;
    gap: 20px;
    background: rgba(253, 249, 244, 0.04);
    border: 1px solid rgba(253, 249, 244, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.menu-item:hover {
    background: rgba(253, 249, 244, 0.08);
    border-color: rgba(200, 146, 62, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.menu-item-img {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    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.1);
}

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

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

.menu-item-header h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--cream);
}

.menu-item-tag {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber-light);
    background: rgba(200, 146, 62, 0.15);
    padding: 4px 10px;
    border-radius: 20px;
}

.menu-item-desc {
    font-size: 0.9rem;
    color: rgba(253, 249, 244, 0.55);
    line-height: 1.7;
}

.menu-note {
    text-align: center;
    margin-top: 48px;
    padding: 24px;
    border-top: 1px solid rgba(253, 249, 244, 0.1);
}

.menu-note p {
    font-size: 0.9rem;
    color: rgba(253, 249, 244, 0.5);
    font-style: italic;
}

/* ── Gallery ── */
.gallery {
    background: var(--cream-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 260px);
    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;
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(45, 27, 46, 0.8) 100%);
    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.2rem;
    color: var(--cream);
    font-style: italic;
}

.gallery-item--large {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
    grid-column: span 6;
}

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

/* ── Visit ── */
.visit {
    background: var(--cream);
}

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

.visit-detail {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 36px;
}

.visit-detail svg {
    color: var(--amber);
    flex-shrink: 0;
    margin-top: 4px;
}

.visit-detail h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--plum-deep);
    margin-bottom: 6px;
}

.visit-detail p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
}

.visit-detail a {
    color: var(--plum);
    font-weight: 500;
    transition: color 0.2s;
}

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

.hours-day {
    font-weight: 600;
    color: var(--text) !important;
}

.hours-time {
    color: var(--text-light) !important;
}

.hours-closed {
    color: var(--plum-muted) !important;
    font-style: italic;
    margin-top: 8px;
}

.visit-map {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.visit-map img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ── Contact ── */
.contact {
    background: var(--plum-deep);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(200, 146, 62, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact .container {
    position: relative;
    z-index: 1;
}

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

.contact-content .section-eyebrow {
    color: var(--amber-light);
}

.contact-content .section-title {
    color: var(--cream);
}

.contact-content .section-title em {
    color: var(--amber-light);
}

.contact-text {
    font-size: 1.05rem;
    color: rgba(253, 249, 244, 0.65);
    line-height: 1.9;
    margin-bottom: 36px;
}

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

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--cream);
    transition: color 0.2s;
}

.contact-info-item:hover {
    color: var(--amber-light);
}

.contact-info-item svg {
    color: var(--amber);
}

/* Form */
.contact-form-wrapper {
    background: rgba(253, 249, 244, 0.05);
    border: 1px solid rgba(253, 249, 244, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(253, 249, 244, 0.5);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--cream);
    background: rgba(253, 249, 244, 0.06);
    border: 1px solid rgba(253, 249, 244, 0.15);
    border-radius: var(--radius);
    padding: 14px 16px;
    outline: none;
    transition: var(--transition);
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(253, 249, 244, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--amber);
    background: rgba(253, 249, 244, 0.1);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--plum-deep);
    color: var(--cream);
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    gap: 16px;
}

.form-success.show {
    display: flex;
}

.form-success svg {
    color: var(--amber);
}

.form-success h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--cream);
}

.form-success p {
    font-size: 0.95rem;
    color: rgba(253, 249, 244, 0.6);
    line-height: 1.7;
}

/* ── Footer ── */
.footer {
    background: var(--charcoal);
    padding: 80px 0 0;
}

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

.logo--footer .logo-mark {
    border-color: var(--plum-muted);
    color: var(--plum-muted);
}

.logo--footer .logo-text {
    color: var(--cream);
}

.footer-brand p {
    font-size: 0.95rem;
    color: rgba(253, 249, 244, 0.5);
    line-height: 1.8;
    margin-top: 16px;
    max-width: 280px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(253, 249, 244, 0.5);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--amber-light);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact p {
    font-size: 0.9rem;
    color: rgba(253, 249, 244, 0.5);
    line-height: 1.7;
}

.footer-contact a {
    color: rgba(253, 249, 244, 0.5);
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--amber-light);
}

.footer-bottom {
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(253, 249, 244, 0.3);
}

.footer-bottom a {
    color: rgba(253, 249, 244, 0.3);
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: var(--amber-light);
}

/* ── Scroll Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ── Responsive ── */
@media (max-width: 1024px) {
    .about-grid,
    .visit-grid,
    .contact-wrapper {
        gap: 48px;
    }

    .about-img-secondary {
        right: -20px;
        bottom: -20px;
    }

    .gallery-grid {
        grid-template-rows: repeat(2, 220px);
    }

    .gallery-item--large {
        grid-column: 1 / 9;
    }
}

@media (max-width: 900px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

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

    .nav-toggle {
        display: flex;
    }

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

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

    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-img-secondary {
        right: 10px;
        bottom: -10px;
    }

    .about-img-secondary img {
        width: 200px;
        height: 170px;
    }

    .section {
        padding: 80px 0;
    }

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

    .gallery-item--large {
        grid-column: 1 / -1;
        grid-row: 1 / 2;
    }

    .gallery-item--wide {
        grid-column: 1 / -1;
        grid-row: 3 / 4;
    }

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

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

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

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

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

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

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .menu-item {
        flex-direction: column;
    }

    .menu-item-img {
        width: 100%;
        height: 180px;
    }

    .menu-item-body {
        padding: 16px 20px 20px;
    }

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

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

    .gallery-item--large,
    .gallery-item:not(.gallery-item--large):not(.gallery-item--wide),
    .gallery-item--wide {
        grid-column: 1;
        grid-row: auto;
    }

    .gallery-item img {
        height: 220px;
    }

    .gallery-item--large img {
        height: 260px;
    }
}
