*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-midnight: #0B1D3A;
    --color-midnight-light: #112946;
    --color-midnight-dark: #060F1F;
    --color-mint: #3DB8A8;
    --color-mint-light: #5EC4B6;
    --color-mint-pale: #E8F5F3;
    --color-gold: #C9A84C;
    --color-gold-light: #D4B96A;
    --color-gold-pale: #F5E8C4;
    --color-cream: #F7F3EB;
    --color-white: #FFFFFF;
    --color-text-light: #E8E4DC;
    --color-text-muted: #9A9A9A;
    --color-text-dark: #1A1A1A;
    --color-border: rgba(201, 168, 76, 0.2);
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container-max: 1200px;
    --header-height: 72px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-light);
    background-color: var(--color-midnight-dark);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--color-gold);
    color: var(--color-midnight-dark);
    padding: 8px 16px;
    z-index: 200;
    font-weight: 600;
    border-radius: 4px;
}

.skip-link:focus {
    top: 16px;
}

/* ─── Header ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--header-height);
    background: rgba(11, 29, 58, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    background: rgba(6, 15, 31, 0.95);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--color-gold);
}

.logo-wordmark {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 0.02em;
}

.main-nav ul {
    display: flex;
    gap: 32px;
}

.main-nav a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-text-light);
    transition: color 0.2s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    color: var(--color-gold);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
    width: 100%;
}

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

.nav-toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-gold);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--color-midnight-dark);
    overflow: hidden;
    padding-top: var(--header-height);
}

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

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-midnight-dark) 0%, var(--color-midnight) 50%, rgba(11, 29, 58, 0.7) 100%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 40%, rgba(61, 184, 168, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(201, 168, 76, 0.06) 0%, transparent 50%);
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 60px 0;
}

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

.hero-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 700;
    line-height: 1.12;
    color: var(--color-white);
    margin-bottom: 24px;
}

.hero-headline em {
    color: var(--color-mint);
    font-style: italic;
}

.hero-sub {
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 36px;
    max-width: 480px;
}

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

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

.hero-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-gold);
}

.stat-label {
    font-size: 13px;
    color: var(--color-text-muted);
    letter-spacing: 0.02em;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-midnight-dark);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--color-gold-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-1px);
}

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

.hero-visual {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}

.hero-img-main {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 540/700;
}

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

.hero-img-accent {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 320/240;
    margin-top: 60px;
    border: 2px solid var(--color-border);
}

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

.hero-badge {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: var(--color-mint);
    color: var(--color-midnight-dark);
    padding: 12px 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    box-shadow: 0 8px 24px rgba(61, 184, 168, 0.3);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}

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

/* ─── Section Shared ─── */
.section-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-white);
    margin-bottom: 20px;
}

/* ─── About ─── */
.about {
    padding: 120px 0;
    background: var(--color-midnight);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.3;
}

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

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

.about-img-row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.about-img-row > img:first-child {
    aspect-ratio: 400/520;
}

.about-img-row > img:last-child {
    aspect-ratio: 400/260;
    margin-top: -40px;
    border: 2px solid var(--color-border);
}

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

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

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

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

.about-feature strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 4px;
}

.about-feature span {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

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

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-mint), transparent);
    opacity: 0.3;
}

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

.menu-intro {
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text-light);
}

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

.menu-category {
    background: var(--color-midnight);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 32px 24px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.menu-category:hover {
    border-color: var(--color-gold);
    transform: translateY(-4px);
}

.menu-category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
}

.menu-category-header svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

.menu-category-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-white);
}

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

.menu-list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-item-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-white);
}

.menu-item-desc {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.menu-note {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: var(--color-text-muted);
    font-style: italic;
}

/* ─── Gallery ─── */
.gallery {
    padding: 120px 0;
    background: var(--color-midnight);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.3;
}

.gallery-header {
    text-align: center;
    margin-bottom: 48px;
}

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

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 15, 31, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-item-overlay span {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
}

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

.gallery-item--tall img {
    aspect-ratio: 400/600;
}

.gallery-item--wide {
    grid-column: span 2;
}

.gallery-item--wide img {
    aspect-ratio: 600/300;
}

.gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) img {
    aspect-ratio: 400/300;
}

/* ─── Testimonials ─── */
.testimonials {
    padding: 120px 0;
    background: var(--color-midnight-dark);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-mint), transparent);
    opacity: 0.3;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 48px;
}

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

.testimonial-card {
    background: var(--color-midnight);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 32px;
    position: relative;
    transition: border-color 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--color-gold);
}

.testimonial-quote-mark {
    font-family: var(--font-display);
    font-size: 72px;
    line-height: 1;
    color: var(--color-gold);
    opacity: 0.3;
    position: absolute;
    top: 16px;
    left: 24px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gold);
}

/* ─── CTA ─── */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--color-midnight) 0%, var(--color-midnight-light) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(61, 184, 168, 0.1) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
}

.cta-inner {
    position: relative;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.cta-eyebrow {
    margin-bottom: 16px;
}

.cta-title {
    margin-bottom: 20px;
}

.cta-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 36px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── Hours ─── */
.hours {
    padding: 120px 0;
    background: var(--color-midnight-dark);
    position: relative;
}

.hours::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.3;
}

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

.hours-content .section-title {
    margin-bottom: 32px;
}

.hours-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.hours-day {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-white);
}

.hours-time {
    font-size: 15px;
    color: var(--color-text-light);
}

.hours-row--closed .hours-day {
    color: var(--color-mint);
}

.hours-row--closed .hours-time {
    color: var(--color-mint);
    font-style: italic;
}

.location-card {
    background: var(--color-midnight);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 36px;
}

.location-icon {
    color: var(--color-gold);
    margin-bottom: 20px;
}

.location-details h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
}

.location-details p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.location-phone,
.location-email {
    display: block;
    font-size: 14px;
    color: var(--color-gold);
    transition: color 0.2s ease;
    margin-bottom: 8px;
}

.location-phone:hover,
.location-email:hover {
    color: var(--color-gold-light);
}

.location-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    transition: all 0.25s ease;
}

.location-map-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* ─── Contact ─── */
.contact {
    padding: 120px 0;
    background: var(--color-midnight);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-mint), transparent);
    opacity: 0.3;
}

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

.contact-info p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

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

.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--color-text-light);
}

.contact-detail svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

.contact-detail a {
    color: var(--color-gold);
    transition: color 0.2s ease;
}

.contact-detail a:hover {
    color: var(--color-gold-light);
}

.contact-form-wrapper {
    background: var(--color-midnight-dark);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 40px;
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-white);
    background: var(--color-midnight);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    outline: none;
    transition: border-color 0.2s ease;
}

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

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-gold);
}

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

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success svg {
    color: var(--color-mint);
    margin-bottom: 16px;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
}

.form-success p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ─── Footer ─── */
.site-footer {
    background: var(--color-midnight-dark);
    border-top: 1px solid var(--color-border);
    padding: 64px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-top: 16px;
    max-width: 280px;
}

.footer-links {
    display: flex;
    gap: 48px;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 16px;
}

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

.footer-col a,
.footer-col span {
    font-size: 14px;
    color: var(--color-text-muted);
    transition: color 0.2s ease;
}

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

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 24px 0;
}

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

.footer-bottom p {
    font-size: 13px;
    color: var(--color-text-muted);
}

/* ─── Back to Top ─── */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--color-gold);
    color: var(--color-midnight-dark);
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all 0.3s ease;
    z-index: 50;
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
}

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

    .hero-visual {
        max-width: 480px;
    }

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

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: rgba(6, 15, 31, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 24px;
        border-bottom: 1px solid var(--color-border);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav a {
        font-size: 16px;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-grid {
        padding: 0;
    }

    .hero-visual {
        display: none;
    }

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

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

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

    .about-grid,
    .hours-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img-row > img:last-child {
        margin-top: 0;
    }

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

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

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

    .gallery-item--tall img,
    .gallery-item--wide img,
    .gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) img {
        aspect-ratio: 1;
    }

    .gallery-item--wide {
        grid-column: span 1;
    }

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

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

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

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

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

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

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

    .hero-headline {
        font-size: 28px;
    }

    .hero-actions {
        flex-direction: column;
    }

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

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

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .back-to-top {
        transition: none;
    }

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