/* ============================================
   JREILLY PUBLIC FREEHOUSES — Premium CSS
   ============================================ */

:root {
    --gold: #c9a961;
    --gold-light: #e6c878;
    --gold-dark: #8a7440;
    --bg-deep: #0d0a07;
    --bg-mid: #161109;
    --bg-soft: #1f1812;
    --cream: #f5ecd9;
    --cream-light: #faf5e8;
    --text-soft: #b8a98c;
    --text-mute: #7a6f5d;
    --line: rgba(201, 169, 97, 0.15);
    --line-strong: rgba(201, 169, 97, 0.35);
    --shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    --gold-grad: linear-gradient(135deg, #8a7440 0%, #c9a961 50%, #e6c878 100%);
    --dark-grad: linear-gradient(180deg, #0d0a07 0%, #161109 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background: var(--bg-deep);
    color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(201, 169, 97, 0.08), transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(201, 169, 97, 0.06), transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* ============================================
   LOADER
   ============================================ */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg-deep);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    text-align: center;
    position: relative;
}

.loader-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-ring 2s ease-out infinite;
}

.loader-ring:nth-child(2) {
    animation-delay: 0.4s;
    width: 160px;
    height: 160px;
}

.loader-ring:nth-child(3) {
    animation-delay: 0.8s;
    width: 200px;
    height: 200px;
}

@keyframes pulse-ring {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.loader-text {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    letter-spacing: 0.5em;
    color: var(--gold);
    position: relative;
    z-index: 2;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 22px 0;
    transition: all 0.4s ease;
    background: rgba(13, 10, 7, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 14px 0;
    background: rgba(13, 10, 7, 0.95);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(20px);
}

.nav-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.logo-mark {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-grad);
    color: var(--bg-deep);
    border-radius: 4px;
    font-size: 18px;
    font-weight: 900;
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.3);
    transition: all 0.3s ease;
}

.nav-logo:hover .logo-mark {
    transform: rotate(-5deg) scale(1.05);
}

.logo-text {
    font-size: 16px;
    color: var(--cream);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream);
    position: relative;
    padding: 6px 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-reserve {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 11px 26px;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-reserve::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateX(-101%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.btn-reserve:hover {
    color: var(--bg-deep);
}

.btn-reserve:hover::before {
    transform: translateX(0);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--cream);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    height: 100vh;
    min-height: 720px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(13, 10, 7, 0.4) 0%, rgba(13, 10, 7, 0.85) 80%),
        linear-gradient(180deg, rgba(13, 10, 7, 0.6) 0%, transparent 30%, rgba(13, 10, 7, 0.9) 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-particles .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle 8s linear infinite;
    box-shadow: 0 0 8px var(--gold);
}

@keyframes float-particle {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(1);
    }
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeUp 1s ease 0.5s forwards;
}

.badge-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.badge-text {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.hero-logo-wrap {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 30px;
    opacity: 0;
    animation: fadeUp 1s ease 0.7s forwards;
}

.hero-logo-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.4), transparent 60%);
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.hero-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 8px 30px rgba(201, 169, 97, 0.4));
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(42px, 7vw, 92px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.05em;
    color: var(--cream);
    margin-bottom: 24px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    animation: titleReveal 1.2s cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
}

.title-line:nth-child(1) { animation-delay: 0.9s; }
.title-line:nth-child(2) {
    animation-delay: 1.1s;
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(16px, 1.5vw, 20px);
    color: var(--text-soft);
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 1s ease 1.3s forwards;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s ease 1.5s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 16px 36px;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(5px);
}

.btn-primary {
    background: var(--gold-grad);
    color: var(--bg-deep);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.5);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--cream);
    border: 1px solid var(--cream);
}

.btn-ghost:hover {
    background: var(--cream);
    color: var(--bg-deep);
}

.btn-light {
    background: var(--cream);
    color: var(--bg-deep);
    margin-top: 30px;
}

.btn-light:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeUp 1s ease 1.8s forwards;
}

.hero-scroll span {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--gold);
    animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
    0% { top: -20px; }
    100% { top: 50px; }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
    background: var(--bg-mid);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-shrink: 0;
    padding-right: 50px;
}

.marquee-content span {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.marquee-content .dot {
    color: var(--gold-dark);
    font-size: 16px;
}

/* ============================================
   SECTIONS GENERIC
   ============================================ */
section {
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.section-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
    padding-left: 50px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 35px;
    height: 1px;
    background: var(--gold);
}

.section-tag.light {
    color: var(--gold-light);
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--cream-light);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.section-title em {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: italic;
    color: var(--gold);
    font-size: 1.1em;
}

.section-title.light {
    color: var(--cream-light);
}

.section-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--text-soft);
    max-width: 600px;
    line-height: 1.6;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    background: var(--bg-mid);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text .lead {
    font-size: 22px;
    color: var(--cream);
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 500;
}

.about-text p {
    color: var(--text-soft);
    font-size: 17px;
    margin-bottom: 36px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-num {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-plus {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: var(--gold);
    margin-left: -10px;
    vertical-align: super;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-mute);
}

.about-visual {
    position: relative;
    height: 580px;
}

.visual-frame {
    position: relative;
    width: 80%;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--line);
}

.visual-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.visual-frame:hover img {
    transform: scale(1.05);
}

.visual-frame::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid var(--gold);
    pointer-events: none;
    z-index: 2;
    transition: inset 0.4s ease;
}

.visual-frame:hover::before {
    inset: 8px;
}

.visual-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(13, 10, 7, 0.9), transparent);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    z-index: 3;
}

.visual-line {
    flex: 1;
    height: 1px;
    background: var(--gold);
    margin: 0 16px;
}

.visual-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 50%;
    height: 50%;
    overflow: hidden;
    border: 1px solid var(--gold);
    box-shadow: var(--shadow);
    transition: transform 0.4s ease;
}

.visual-accent:hover {
    transform: translate(-10px, -10px);
}

.visual-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   MENU
   ============================================ */
.menu {
    background: var(--bg-deep);
}

.menu-header {
    text-align: center;
    margin-bottom: 60px;
}

.menu-header .section-tag {
    padding-left: 0;
}

.menu-header .section-tag::before {
    display: none;
}

.menu-header .section-desc {
    margin: 20px auto 0;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.tab {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 12px 24px;
    background: transparent;
    color: var(--text-soft);
    border: 1px solid var(--line);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.tab.active {
    background: var(--gold);
    color: var(--bg-deep);
    border-color: var(--gold);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.menu-card {
    background: var(--bg-mid);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: all 0.5s ease;
    position: relative;
}

.menu-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-dark);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.menu-card.hidden {
    display: none;
}

.card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.menu-card:hover .card-image img {
    transform: scale(1.08);
}

.card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(13, 10, 7, 0.6));
}

.card-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--bg-deep);
    padding: 6px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    z-index: 2;
}

.card-body {
    padding: 30px 28px;
}

.card-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.card-head h3 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--cream-light);
    letter-spacing: 0.02em;
}

.price {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
}

.card-body p {
    font-family: 'Cormorant Garamond', serif;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    transition: all 0.3s ease;
}

.card-link span {
    transition: transform 0.3s ease;
}

.card-link:hover {
    color: var(--gold-light);
}

.card-link:hover span {
    transform: translateX(5px);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    background: var(--bg-mid);
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-header .section-tag {
    padding-left: 0;
}

.gallery-header .section-tag::before {
    display: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 280px 320px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 10, 7, 0.95) 0%, rgba(13, 10, 7, 0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 1;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    background: linear-gradient(to top, rgba(13, 10, 7, 0.95), rgba(201, 169, 97, 0.2));
}

.gallery-overlay h4 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--cream-light);
    margin-bottom: 6px;
    transform: translateY(10px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-overlay p {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold-light);
    font-size: 14px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.2s;
}

.gallery-item:hover .gallery-overlay h4 {
    transform: translateY(0);
}

.gallery-item:hover .gallery-overlay p {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   EVENTS
   ============================================ */
.events {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.events-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.events-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.events-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 10, 7, 0.92), rgba(13, 10, 7, 0.7));
}

.events .container {
    padding-top: 120px;
    padding-bottom: 120px;
}

.events-content {
    max-width: 800px;
}

.events-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    color: var(--cream);
    line-height: 1.7;
    margin-bottom: 50px;
    max-width: 650px;
}

.event-row {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-top: 40px;
    border-top: 1px solid var(--line-strong);
    margin-bottom: 40px;
}

.event-item {
    flex: 1;
}

.event-day {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
}

.event-item h4 {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--cream-light);
    margin-bottom: 8px;
}

.event-time {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--text-soft);
    font-size: 16px;
}

.event-divider {
    width: 1px;
    height: 60px;
    background: var(--line-strong);
}

/* ============================================
   RESERVE
   ============================================ */
.reserve {
    background: var(--bg-deep);
}

.reserve-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.reserve-info .lead {
    font-size: 20px;
    color: var(--cream);
    margin-bottom: 40px;
    line-height: 1.6;
}

.reserve-contact {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
}

.rc-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.rc-value {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: var(--cream-light);
    transition: color 0.3s ease;
}

.rc-value:hover {
    color: var(--gold);
}

.reserve-form {
    background: var(--bg-mid);
    border: 1px solid var(--line);
    padding: 50px;
    position: relative;
}

.reserve-form::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 3px;
    background: var(--gold-grad);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 14px 16px;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--cream);
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(201, 169, 97, 0.05);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--text-mute);
    font-style: italic;
}

.form-field select {
    cursor: pointer;
}

.form-field select option {
    background: var(--bg-mid);
    color: var(--cream);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    background: var(--bg-mid);
    padding: 100px 0;
}

.t-header {
    text-align: center;
    margin-bottom: 60px;
}

.t-header .section-tag {
    padding-left: 0;
}

.t-header .section-tag::before {
    display: none;
}

.t-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.t-card {
    background: var(--bg-deep);
    border: 1px solid var(--line);
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
}

.t-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-dark);
}

.t-quote {
    font-family: 'Cinzel', serif;
    font-size: 80px;
    color: var(--gold);
    line-height: 0.5;
    margin-bottom: 20px;
    opacity: 0.4;
    position: absolute;
    top: 30px;
    right: 30px;
}

.t-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--cream);
    margin-bottom: 24px;
    font-style: italic;
}

.t-author {
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.t-name {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 16px;
    color: var(--cream-light);
    font-weight: 600;
    margin-bottom: 4px;
}

.t-meta {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    background: var(--bg-deep);
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.contact-block h3 {
    font-family: 'Cinzel', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--cream-light);
    margin-bottom: 16px;
}

.contact-line {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--text-soft);
    line-height: 1.8;
}

.contact-line a {
    display: block;
    transition: color 0.3s ease;
}

.contact-line a:hover {
    color: var(--gold);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-mid);
    padding: 80px 0 40px;
    border-top: 1px solid var(--line);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--line);
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    margin: 0 auto 16px;
    filter: drop-shadow(0 4px 20px rgba(201, 169, 97, 0.3));
}

.footer-logo p {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 0.25em;
    color: var(--cream-light);
    margin-bottom: 6px;
}

.footer-est {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.fl-col h5 {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    font-weight: 600;
}

.fl-col a {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    color: var(--text-soft);
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.fl-col a:hover {
    color: var(--gold-light);
    padding-left: 6px;
}

.footer-bottom {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--text-mute);
    letter-spacing: 0.1em;
    flex-wrap: wrap;
    gap: 16px;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--bg-deep);
    border: none;
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold-light);
    transform: translateY(-5px);
}

/* ============================================
   TOAST
   ============================================ */
.success-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 100px);
    background: var(--gold);
    color: var(--bg-deep);
    padding: 16px 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    z-index: 1000;
    transition: transform 0.4s ease;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
}

.success-toast.show {
    transform: translate(-50%, 0);
}

.success-toast span {
    font-size: 18px;
    font-weight: 700;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    section { padding: 80px 0; }
    .container { padding: 0 30px; }
    .nav-container { padding: 0 30px; }

    .about-grid,
    .reserve-grid { grid-template-columns: 1fr; gap: 60px; }

    .menu-grid,
    .t-grid { grid-template-columns: repeat(2, 1fr); }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .gallery-item.tall { grid-row: span 1; }
    .gallery-item, .gallery-item.wide { grid-column: auto; height: 240px; }

    .event-row { flex-direction: column; gap: 30px; align-items: flex-start; }
    .event-divider { width: 60px; height: 1px; }
    .footer-top { grid-template-columns: 1fr; gap: 50px; text-align: center; }

    .about-visual { height: 480px; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(13, 10, 7, 0.98);
        backdrop-filter: blur(20px);
        padding: 40px;
        gap: 24px;
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        border-bottom: 1px solid var(--line);
    }

    .nav-links.open {
        transform: translateY(0);
    }

    .menu-toggle { display: flex; }
    .btn-reserve { display: none; }
    .logo-text { display: none; }

    .menu-grid,
    .t-grid,
    .contact-grid,
    .footer-links { grid-template-columns: 1fr; }

    section { padding: 70px 0; }

    .hero { min-height: 600px; }
    .hero-logo-wrap { width: 130px; height: 130px; }
    .hero-title { font-size: clamp(36px, 8vw, 60px); }
    .form-row { grid-template-columns: 1fr; }
    .reserve-form { padding: 30px; }
    .stats { grid-template-columns: 1fr; gap: 24px; }

    .about-visual { height: 380px; }
    .visual-accent { width: 40%; height: 35%; }

    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .nav-container { padding: 0 20px; }
}
