/* ============================================
   HERE'S THE SCOOP — Styles
   Bold editorial · Plum + Amber · Serif headlines
   ============================================ */

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

:root {
    --plum-deep: #2D0A24;
    --plum: #4A1942;
    --plum-mid: #6B2D5C;
    --plum-light: #8E4078;
    --plum-pale: #F5E6F0;
    --plum-ghost: #FDF3F8;
    --amber: #D4A84B;
    --amber-light: #E8C76A;
    --amber-dark: #B8923F;
    --cream: #FDF8F0;
    --cream-dark: #F5EDE0;
    --warm-white: #FFFBF5;
    --text-dark: #1A0A14;
    --text-mid: #3D1F35;
    --text-light: #6B4A5E;
    --text-muted: #9A7A8E;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body {
    font-family: var(--font-sans);
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

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

/* ---------- Typography ---------- */
.serif-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.eyebrow-line {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--amber);
    flex-shrink: 0;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

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

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), padding 0.3s var(--ease-out);
}

.nav.scrolled {
    background: rgba(45, 10, 36, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(45, 10, 36, 0.2);
    padding-top: 0;
    padding-bottom: 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: -0.01em;
}

.nav-logo-icon {
    color: var(--amber);
}

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

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(253, 248, 240, 0.75);
    transition: color 0.3s;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

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

.nav-link--cta {
    background: var(--amber);
    color: var(--plum-deep) !important;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s var(--ease-spring);
}

.nav-link--cta:hover {
    background: var(--amber-light);
    transform: translateY(-1px);
    color: var(--plum-deep) !important;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    transition: transform 0.3s var(--ease-out), opacity 0.3s;
    transform-origin: center;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--plum-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--cream);
    padding: 8px;
}

.mobile-menu-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--cream);
    padding: 12px 0;
    transition: color 0.3s, transform 0.3s var(--ease-out);
    display: block;
}

.mobile-menu-link:hover {
    color: var(--amber);
    transform: translateX(8px);
}

.mobile-menu-link--cta {
    color: var(--amber);
    margin-top: 16px;
}

.mobile-menu-contact {
    margin-top: 32px;
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.8;
}

.mobile-menu-contact a {
    color: var(--amber);
    transition: color 0.3s;
}

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

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s var(--ease-out);
    letter-spacing: 0.01em;
}

.btn--primary {
    background: var(--amber);
    color: var(--plum-deep);
}

.btn--primary:hover {
    background: var(--amber-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 168, 75, 0.35);
}

.btn--ghost {
    background: transparent;
    color: var(--cream);
    border: 1.5px solid rgba(253, 248, 240, 0.35);
}

.btn--ghost:hover {
    border-color: var(--amber);
    color: var(--amber);
    transform: translateY(-2px);
}

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

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    background: var(--plum-deep);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(74, 25, 66, 0.6) 0%, transparent 70%),
        radial-gradient(circle at 20% 80%, rgba(212, 168, 75, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

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

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

.hero-eyebrow-line {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--amber);
}

.hero-eyebrow span {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--amber);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.6rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--cream);
    margin-bottom: 28px;
    letter-spacing: -0.03em;
}

.hero-title-pre {
    display: block;
    font-size: 0.55em;
    font-weight: 400;
    font-style: italic;
    color: var(--amber);
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}

.hero-title-main {
    display: block;
}

.hero-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(253, 248, 240, 0.7);
    margin-bottom: 36px;
    max-width: 440px;
}

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

.hero-meta {
    display: flex;
    gap: 24px;
    align-items: center;
}

.hero-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-meta-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-meta-value {
    font-size: 0.9rem;
    color: var(--cream);
    font-weight: 500;
}

.hero-meta-divider {
    width: 1px;
    height: 32px;
    background: rgba(253, 248, 240, 0.15);
}

/* Hero image stack */
.hero-image-col {
    position: relative;
}

.hero-image-stack {
    position: relative;
}

.hero-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}

.hero-image--main {
    width: 100%;
    aspect-ratio: 600/750;
}

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

.hero-image--accent {
    position: absolute;
    bottom: -40px;
    left: -60px;
    width: 55%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
    border: 4px solid var(--plum-deep);
}

.hero-image--accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-accent-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--amber);
    color: var(--plum-deep);
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 8px 24px rgba(212, 168, 75, 0.4);
    z-index: 2;
}

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

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

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

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

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

.about-image-col {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.about-image-wrapper img {
    width: 100%;
    height: 680px;
    object-fit: cover;
    display: block;
}

.about-image-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(45, 10, 36, 0.5), transparent);
    pointer-events: none;
}

.about-quote-card {
    position: absolute;
    bottom: -32px;
    right: -32px;
    background: var(--plum);
    color: var(--cream);
    padding: 28px 32px;
    border-radius: 16px;
    max-width: 320px;
    box-shadow: 0 16px 48px rgba(45, 10, 36, 0.3);
}

.about-quote-card svg {
    margin-bottom: 12px;
    color: var(--amber);
}

.about-quote-card blockquote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.about-quote-card cite {
    font-style: normal;
    font-size: 0.8rem;
    color: var(--amber);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.about-text-col {
    padding: 20px 0;
}

.about-lead {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    line-height: 1.5;
    color: var(--plum);
    margin-bottom: 20px;
    font-weight: 600;
}

.about-text-col p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(74, 25, 66, 0.12);
}

.about-stat {
    flex: 1;
    text-align: left;
}

.about-stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--plum);
    line-height: 1;
    margin-bottom: 6px;
}

.about-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.about-stat-divider {
    width: 1px;
    background: rgba(74, 25, 66, 0.12);
    align-self: stretch;
}

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

.menu::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(74, 25, 66, 0.5) 0%, transparent 70%),
        radial-gradient(circle at 10% 90%, rgba(212, 168, 75, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

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

.menu-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

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

.menu-header .section-eyebrow {
    justify-content: center;
}

.menu-lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(253, 248, 240, 0.6);
}

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

.menu-cat-btn {
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(253, 248, 240, 0.6);
    border: 1.5px solid rgba(253, 248, 240, 0.15);
    transition: all 0.3s var(--ease-out);
    letter-spacing: 0.02em;
}

.menu-cat-btn:hover {
    color: var(--cream);
    border-color: rgba(253, 248, 240, 0.3);
}

.menu-cat-btn.active {
    background: var(--amber);
    color: var(--plum-deep);
    border-color: var(--amber);
    font-weight: 600;
}

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

.menu-panel {
    display: none;
    grid-column: 1 / -1;
}

.menu-panel.active {
    display: contents;
}

.menu-item {
    background: rgba(253, 248, 240, 0.04);
    border-radius: 12px;
    padding: 28px 32px;
    transition: background 0.3s, transform 0.3s var(--ease-out);
    border: 1px solid rgba(253, 248, 240, 0.06);
}

.menu-item:hover {
    background: rgba(253, 248, 240, 0.08);
    transform: translateY(-2px);
}

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

.menu-item-name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--cream);
}

.menu-item-tag {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber);
    background: rgba(212, 168, 75, 0.15);
    padding: 3px 8px;
    border-radius: 100px;
    white-space: nowrap;
}

.menu-item-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(253, 248, 240, 0.5);
}

.menu-note {
    text-align: center;
    margin-top: 32px;
    font-size: 0.85rem;
    color: rgba(253, 248, 240, 0.35);
    font-style: italic;
}

/* ---------- Gallery ---------- */
.gallery {
    padding: 120px 0 80px;
    background: var(--cream);
}

.gallery .container {
    text-align: center;
    margin-bottom: 56px;
}

.gallery .section-eyebrow {
    justify-content: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 10, 36, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

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

.gallery-item-overlay span {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--cream);
    font-style: italic;
}

.gallery-item--tall {
    grid-row: span 2;
}

.gallery-item:nth-child(1) { grid-column: 1 / 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: 5 / 9; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; }
.gallery-item:nth-child(4) { grid-column: 5 / 9; }
.gallery-item:nth-child(5) { grid-column: 9 / 13; grid-row: span 2; }

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

.visit::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse at 20% 50%, rgba(212, 168, 75, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

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

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

.visit-info {
    padding-top: 20px;
}

.visit-info .section-eyebrow {
    margin-bottom: 20px;
}

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

.visit-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.visit-detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 168, 75, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber);
    flex-shrink: 0;
}

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

.visit-detail p {
    font-size: 0.9rem;
    color: rgba(253, 248, 240, 0.6);
    line-height: 1.6;
}

.visit-detail a {
    color: var(--amber);
    transition: color 0.3s;
}

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

.visit-map-col {
    border-radius: 16px;
    overflow: hidden;
    min-height: 420px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

/* ---------- Contact ---------- */
.contact {
    padding: 120px 0;
    background: var(--cream);
}

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

.contact-text-col {
    padding-top: 20px;
}

.contact-text-col .section-eyebrow {
    margin-bottom: 20px;
}

.contact-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 440px;
}

.contact-form {
    background: var(--warm-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(45, 10, 36, 0.08);
    border: 1px solid rgba(74, 25, 66, 0.06);
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-mid);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid rgba(74, 25, 66, 0.15);
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--warm-white);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--plum-mid);
    box-shadow: 0 0 0 3px rgba(74, 25, 66, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 32px;
    background: rgba(212, 168, 75, 0.08);
    border-radius: 12px;
    margin-top: 16px;
}

.form-success.show {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: fadeIn 0.4s var(--ease-out);
}

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

.form-success p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.6;
}

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

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

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(253, 248, 240, 0.08);
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 16px;
}

.footer-logo-icon {
    color: var(--amber);
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(253, 248, 240, 0.5);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 16px;
}

.footer-col a,
.footer-col span {
    display: block;
    font-size: 0.875rem;
    color: rgba(253, 248, 240, 0.45);
    line-height: 1.8;
    transition: color 0.3s;
}

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

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

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

/* ---------- Scroll Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.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; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

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

    .hero-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-meta {
        justify-content: center;
    }

    .hero-image-col {
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-image--accent {
        left: -30px;
        bottom: -24px;
    }

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

    .about-quote-card {
        right: 0;
        bottom: -24px;
    }

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

    .gallery-item:nth-child(1) { grid-column: 1 / 7; grid-row: span 1; }
    .gallery-item:nth-child(2) { grid-column: 7 / 13; }
    .gallery-item:nth-child(3) { grid-column: 1 / 7; }
    .gallery-item:nth-child(4) { grid-column: 7 / 13; }
    .gallery-item:nth-child(5) { grid-column: 1 / 13; grid-row: span 1; }

    .gallery-item--tall {
        grid-row: span 1;
    }

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

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

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

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

    .nav-toggle {
        display: flex;
    }

    .nav-inner {
        height: 68px;
    }

    .hero {
        min-height: auto;
        padding-top: 68px;
    }

    .hero-inner {
        padding: 80px 24px 100px;
    }

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

    .hero-image--accent {
        position: relative;
        bottom: auto;
        left: auto;
        width: 100%;
        margin-top: -20px;
        border: none;
    }

    .hero-image-stack {
        display: flex;
        flex-direction: column;
    }

    .hero-accent-badge {
        top: auto;
        right: auto;
        position: relative;
        margin-top: 16px;
        justify-content: center;
        display: inline-flex;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .about {
        padding: 80px 0;
    }

    .about-quote-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
        max-width: 100%;
    }

    .about-image-wrapper img {
        height: 400px;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .about-stat-divider {
        display: none;
    }

    .menu {
        padding: 80px 0;
    }

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

    .gallery {
        padding: 80px 0 60px;
    }

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

    .gallery-item:nth-child(1) { grid-column: 1 / 3; }
    .gallery-item:nth-child(2) { grid-column: 1 / 2; }
    .gallery-item:nth-child(3) { grid-column: 2 / 3; }
    .gallery-item:nth-child(4) { grid-column: 1 / 3; }
    .gallery-item:nth-child(5) { grid-column: 1 / 3; }

    .visit {
        padding: 80px 0;
    }

    .contact {
        padding: 80px 0;
    }

    .contact-form {
        padding: 28px;
    }

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

    .footer {
        padding: 60px 0 0;
    }

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

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

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

    .hero-inner {
        padding: 60px 16px 80px;
    }

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

    .btn {
        justify-content: center;
    }

    .menu-categories {
        gap: 6px;
    }

    .menu-cat-btn {
        padding: 8px 16px;
        font-size: 0.78rem;
    }

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