/* ========================================
   ARANY PALOTA — ART DECO BUDAPEST
   ======================================== */

/* === ROOT === */
:root {
    --navy:            #0c1824;
    --navy-2:          #162b40;
    --navy-3:          #1e3550;
    --gold:            #c8971e;
    --gold-2:          #e0ae35;
    --gold-3:          #f0c84a;
    --gold-pale:       rgba(200,151,30,0.14);
    --gold-subtle:     rgba(200,151,30,0.28);
    --ivory:           #f8f3ea;
    --cream:           #ede8dc;
    --cream-2:         #e2dccf;
    --charcoal:        #1a1710;
    --text-dark:       #1a1710;
    --text-mid:        #4a4232;
    --text-light:      #f8f3ea;
    --text-gold:       #c8971e;
    --font-deco:       'Josefin Sans', sans-serif;
    --font-serif:      'Cormorant Garamond', serif;
    --max-width:       1280px;
    --section-v:       7rem;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-serif);
    color: var(--text-dark);
    background: var(--ivory);
    line-height: 1.7;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
::selection { background: var(--gold); color: var(--navy); }

/* === TYPOGRAPHY BASE === */
h1, h2, h3, h4 {
    font-family: var(--font-deco);
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 1.2;
}
p { line-height: 1.85; }

/* === LAYOUT UTILS === */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* === ART DECO COMPONENTS === */

/* Section header: ——◆ TITLE ◆—— */
.sec-header {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    margin-bottom: 0.8rem;
}
.sec-rule { flex: 1; height: 1px; background: var(--gold); }
.sec-rule-r { flex: 0.4; height: 1px; background: var(--gold); }
.sec-label {
    font-family: var(--font-deco);
    font-size: 0.78rem;
    letter-spacing: 0.35em;
    color: var(--gold);
    white-space: nowrap;
    font-weight: 400;
}
.sec-label.on-dark { color: var(--gold); }

/* Section sub-header (centered variant) */
.sec-header-center {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}
.sec-header-center .sec-rule,
.sec-header-center .sec-rule-r {
    width: 120px;
    flex: none;
}

/* Ornamental diamond row */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 1.6rem 0;
}
.ornament-line {
    display: block;
    width: 60px;
    height: 1px;
    background: var(--gold);
}
.ornament-gem {
    display: block;
    width: 7px; height: 7px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}
.ornament-gem.sm { width: 5px; height: 5px; }
.ornament.on-dark .ornament-line { background: rgba(200,151,30,0.6); }
.ornament.on-dark .ornament-gem  { background: var(--gold); }

/* Double-border deco frame */
.deco-frame {
    border: 1px solid var(--gold-subtle);
    padding: 3.5rem;
    position: relative;
}
.deco-frame::before {
    content: '';
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(200,151,30,0.18);
    pointer-events: none;
}

/* Corner ornament squares on frame */
.deco-frame-corners::after {
    content: '';
    position: absolute;
    top: -5px; left: -5px;
    width: 9px; height: 9px;
    background: var(--gold);
    box-shadow:
        calc(100% + 492px) 0 0 0 var(--gold),
        0 calc(100% + 492px) 0 0 var(--gold),
        calc(100% + 492px) calc(100% + 492px) 0 0 var(--gold);
}

/* Section eyebrow label */
.eyebrow {
    font-family: var(--font-deco);
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.2rem;
}
.eyebrow.on-dark { color: var(--gold-2); }

/* Gold rule under headings */
.text-rule {
    width: 40px; height: 2px;
    background: var(--gold);
    margin: 1.5rem 0;
}
.text-rule.center { margin: 1.5rem auto; }
.text-rule.light { background: rgba(200,151,30,0.5); }

/* Roman numeral */
.roman-num {
    font-family: var(--font-deco);
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    font-weight: 600;
    display: block;
    margin-bottom: 0.8rem;
}

/* Buttons */
.btn-deco {
    display: inline-block;
    font-family: var(--font-deco);
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 0.85rem 2.5rem;
    background: var(--gold);
    color: var(--navy);
    border: 1px solid var(--gold);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-deco:hover {
    background: var(--gold-2);
    border-color: var(--gold-2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200,151,30,0.25);
}

.btn-outline {
    display: inline-block;
    font-family: var(--font-deco);
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 0.85rem 2.5rem;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-outline:hover {
    background: var(--gold-pale);
    transform: translateY(-2px);
}

.btn-outline-light {
    display: inline-block;
    font-family: var(--font-deco);
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 0.85rem 2.5rem;
    background: transparent;
    color: var(--ivory);
    border: 1px solid rgba(248,243,234,0.7);
    font-weight: 400;
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-outline-light:hover {
    background: rgba(248,243,234,0.1);
    border-color: var(--ivory);
    transform: translateY(-2px);
}

/* === NAVIGATION === */
.nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--navy);
    border-bottom: 1px solid rgba(200,151,30,0.4);
}
.nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2.5rem;
    height: 76px;
}
.nav-links {
    display: flex;
    gap: 2.8rem;
    align-items: center;
}
.nav-links-r { justify-content: flex-end; }
.nav-link {
    font-family: var(--font-deco);
    font-size: 0.76rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(248,243,234,0.7);
    transition: color 0.3s;
    position: relative;
    padding-bottom: 2px;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-reserve {
    font-family: var(--font-deco);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(200,151,30,0.5);
    padding: 0.4rem 1.1rem;
    transition: all 0.3s;
}
.nav-reserve:hover {
    background: var(--gold-pale);
    border-color: var(--gold);
}
.nav-brand { display: flex; flex-direction: column; align-items: center; padding: 0 2rem; }
.nav-brand-name {
    font-family: var(--font-deco);
    font-size: 1.25rem;
    letter-spacing: 0.35em;
    color: var(--gold);
    font-weight: 600;
    line-height: 1;
}
.nav-brand-year {
    font-family: var(--font-deco);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: rgba(200,151,30,0.5);
    margin-top: 4px;
    text-transform: uppercase;
}

/* === HERO (Restaurant) === */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
}
.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.55;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(12,24,36,0.2) 0%,
        rgba(12,24,36,0.55) 60%,
        rgba(12,24,36,0.85) 100%);
}
/* Art Deco sunburst overlay */
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-conic-gradient(
        from 0deg at 50% 50%,
        rgba(200,151,30,0.025) 0deg 4deg,
        transparent 4deg 8deg
    );
    z-index: 1;
    opacity: 0.6;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    width: 100%;
    max-width: 780px;
}
.hero-frame {
    border: 1px solid rgba(200,151,30,0.65);
    padding: 4rem 5rem;
    position: relative;
    background: rgba(12,24,36,0.35);
    backdrop-filter: blur(3px);
}
.hero-frame::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(200,151,30,0.22);
    pointer-events: none;
}
/* Corner ornament diamonds */
.hero-frame::after {
    content: '◆';
    position: absolute;
    top: -10px; left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: var(--gold);
    background: var(--navy);
    padding: 0 8px;
    line-height: 1.4;
}
.hero-eyebrow {
    font-family: var(--font-deco);
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    color: rgba(200,151,30,0.8);
    margin-bottom: 1.8rem;
    text-transform: uppercase;
}
.hero-title {
    font-family: var(--font-deco);
    font-size: clamp(2.4rem, 7vw, 4.5rem);
    letter-spacing: 0.25em;
    color: var(--ivory);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.hero-title-accent {
    display: block;
    font-family: var(--font-deco);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    letter-spacing: 0.5em;
    color: var(--gold);
    font-weight: 300;
    margin-top: 0.6rem;
    margin-bottom: 2rem;
}
.hero-rule {
    width: 60px; height: 1px;
    background: var(--gold);
    margin: 2rem auto;
}
.hero-subtitle {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-style: italic;
    color: rgba(248,243,234,0.75);
    margin-bottom: 2.8rem;
    line-height: 1.6;
}

/* === STATEMENT SECTION === */
.statement {
    padding: var(--section-v) 2.5rem;
    background: var(--cream);
    text-align: center;
    position: relative;
}
.statement::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.statement-inner {
    max-width: 740px;
    margin: 0 auto;
}
.statement-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 2;
    color: var(--text-mid);
}

/* === PRESTIGE SECTION === */
.prestige {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 620px;
    background: var(--ivory);
}
.prestige-img {
    overflow: hidden;
    position: relative;
}
.prestige-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.92) contrast(1.05);
    transition: transform 0.8s ease;
}
.prestige-img:hover img { transform: scale(1.03); }
.prestige-text {
    display: flex;
    align-items: center;
    padding: 0 5%;
    background: var(--ivory);
}
.prestige-text-inner { max-width: 480px; }
.prestige-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--charcoal);
    margin-bottom: 0.3rem;
    line-height: 1.15;
    font-weight: 300;
}
.prestige-text h2 em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.02em;
}
.prestige-text p {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--text-mid);
    margin-bottom: 1.2rem;
}

/* === CUISINE SECTION === */
.cuisine {
    padding: var(--section-v) 2.5rem;
    background: var(--navy);
}
.cuisine .container { position: relative; }
.cuisine-subtitle {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(248,243,234,0.6);
    text-align: center;
    margin-top: 0.6rem;
}
.cuisine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}
.cuisine-panel {
    border: 1px solid rgba(200,151,30,0.3);
    background: rgba(22,43,64,0.6);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}
.cuisine-panel::before {
    content: '';
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(200,151,30,0.1);
    pointer-events: none;
    z-index: 1;
}
.cuisine-panel:hover {
    border-color: rgba(200,151,30,0.6);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.cuisine-panel-img {
    width: 100%; height: 220px;
    overflow: hidden;
}
.cuisine-panel-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.88) contrast(1.08);
}
.cuisine-panel:hover .cuisine-panel-img img { transform: scale(1.05); }
.cuisine-panel-body {
    padding: 2rem 2rem 2.2rem;
    position: relative;
    z-index: 2;
}
.cuisine-panel-body h3 {
    font-family: var(--font-deco);
    font-size: 1rem;
    letter-spacing: 0.18em;
    color: var(--ivory);
    font-weight: 400;
    margin-top: 0.8rem;
}
.cuisine-panel-body p {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: rgba(248,243,234,0.6);
    margin-top: 0.8rem;
    line-height: 1.7;
}
.mini-rule {
    width: 28px; height: 1px;
    background: var(--gold);
    margin: 0.8rem 0 0;
}

/* === PRIVATE SALON SECTION === */
.salon {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
}
.salon-bg {
    position: absolute;
    inset: 0;
}
.salon-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.45) contrast(1.1);
}
.salon-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12,24,36,0.75) 0%, transparent 60%);
}
.salon-content {
    position: relative;
    z-index: 2;
    padding: var(--section-v) 2.5rem;
    width: 100%;
}
.salon-panel {
    max-width: 520px;
    border-left: 2px solid var(--gold);
    padding-left: 3rem;
}
.salon-panel h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--ivory);
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}
.salon-panel p {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: rgba(248,243,234,0.75);
    margin-bottom: 1.8rem;
}
.salon-list {
    margin-bottom: 2.5rem;
}
.salon-list li {
    font-family: var(--font-deco);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    color: rgba(248,243,234,0.6);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(200,151,30,0.15);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.salon-list li::before {
    content: '◆';
    color: var(--gold);
    font-size: 0.5rem;
    flex-shrink: 0;
}

/* === CASINO INVITE SECTION === */
.casino-invite {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    background: var(--navy);
}
.casino-invite-img {
    position: relative;
    overflow: hidden;
}
.casino-invite-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.75) contrast(1.1) saturate(0.85);
    transition: transform 0.8s;
}
.casino-invite-img:hover img { transform: scale(1.04); }
.casino-invite-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 60%, var(--navy) 100%);
}
.casino-invite-text {
    display: flex;
    align-items: center;
    padding: var(--section-v) 5% var(--section-v) 4rem;
}
.casino-invite-text-inner { max-width: 460px; }
.casino-invite-text h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--ivory);
    font-weight: 300;
    margin-bottom: 1rem;
}
.casino-invite-text p {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: rgba(248,243,234,0.65);
    margin-bottom: 2.5rem;
    line-height: 1.9;
}

/* === FOOTER === */
.footer {
    background: var(--charcoal);
    border-top: 1px solid rgba(200,151,30,0.35);
}
.footer-top {
    padding: 4rem 2.5rem 3rem;
    max-width: var(--max-width);
    margin: 0 auto;
}
.footer-brand {
    text-align: center;
    margin-bottom: 3.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(200,151,30,0.2);
}
.footer-brand-name {
    font-family: var(--font-deco);
    font-size: 2rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    font-weight: 300;
    display: block;
}
.footer-brand-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    color: rgba(248,243,234,0.4);
    font-size: 1rem;
    margin-top: 0.5rem;
    display: block;
    letter-spacing: 0.05em;
}
.footer-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-col-label {
    font-family: var(--font-deco);
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    color: var(--gold);
    margin-bottom: 1.2rem;
    display: block;
    text-transform: uppercase;
}
.footer-col p,
.footer-col address {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: rgba(248,243,234,0.5);
    font-style: normal;
    line-height: 2;
}
.footer-col a {
    display: block;
    font-family: var(--font-deco);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: rgba(248,243,234,0.45);
    padding: 0.35rem 0;
    transition: color 0.3s;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(200,151,30,0.08);
}
.footer-col a:hover { color: var(--gold); }
.footer-col a:last-child { border-bottom: none; }
.footer-bottom {
    padding: 1.8rem 2.5rem;
    border-top: 1px solid rgba(200,151,30,0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
}
.footer-bottom-text {
    font-family: var(--font-deco);
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    color: rgba(248,243,234,0.25);
    text-transform: uppercase;
}

/* === CASINO PAGE === */
body.casino-page { background: var(--navy); }

.casino-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.casino-hero-bg {
    position: absolute;
    inset: 0;
}
.casino-hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.5;
    filter: brightness(0.8) contrast(1.1) saturate(0.7);
}
.casino-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(12,24,36,0.3) 0%,
        rgba(12,24,36,0.65) 60%,
        rgba(12,24,36,0.95) 100%);
}
.casino-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-conic-gradient(
        from 0deg at 50% 50%,
        rgba(200,151,30,0.03) 0deg 3deg,
        transparent 3deg 6deg
    );
    z-index: 1;
}
.casino-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 840px;
}
.casino-hero-frame {
    border: 1px solid rgba(200,151,30,0.55);
    padding: 5rem 6rem;
    position: relative;
}
.casino-hero-frame::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(200,151,30,0.2);
    pointer-events: none;
}
.casino-hero-frame::after {
    content: '◆';
    position: absolute;
    top: -10px; left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: var(--gold);
    background: var(--navy);
    padding: 0 8px;
    line-height: 1.4;
}

/* Casino intro */
.casino-intro {
    padding: var(--section-v) 2.5rem;
    background: var(--navy);
    text-align: center;
    border-top: 1px solid rgba(200,151,30,0.15);
    border-bottom: 1px solid rgba(200,151,30,0.15);
}
.casino-intro p {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-style: italic;
    color: rgba(248,243,234,0.6);
    max-width: 680px;
    margin: 0 auto;
}

/* Casino games */
.casino-games {
    padding: var(--section-v) 2.5rem;
    background: var(--navy-2);
}
.casino-games-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 4rem;
    border: 1px solid rgba(200,151,30,0.2);
}
.casino-game-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(12,24,36,0.5);
    transition: background 0.4s;
    position: relative;
}
.casino-game-item:hover { background: rgba(22,43,64,0.8); }
.casino-game-item + .casino-game-item {
    border-top: 1px solid rgba(200,151,30,0.1);
}
.casino-game-item:nth-child(1) { border-right: 1px solid rgba(200,151,30,0.1); }
.casino-game-img {
    overflow: hidden;
    min-height: 280px;
}
.casino-game-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1) saturate(0.75);
    transition: all 0.6s ease;
}
.casino-game-item:hover .casino-game-img img {
    filter: brightness(0.85) contrast(1.05) saturate(0.9);
    transform: scale(1.04);
}
.casino-game-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
}
.casino-game-text h3 {
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    color: var(--ivory);
    font-weight: 300;
    margin: 0.8rem 0 1rem;
}
.casino-game-text p {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: rgba(248,243,234,0.55);
    line-height: 1.8;
}
.game-detail {
    font-family: var(--font-deco);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-top: 1.5rem;
    text-transform: uppercase;
    border-top: 1px solid rgba(200,151,30,0.2);
    padding-top: 1rem;
}

/* Casino atmosphere */
.casino-atm {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
}
.casino-atm-bg {
    position: absolute;
    inset: 0;
}
.casino-atm-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.35) contrast(1.1) saturate(0.7);
}
.casino-atm-content {
    position: relative;
    z-index: 2;
    padding: var(--section-v) 2.5rem;
    width: 100%;
}
.casino-atm-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid rgba(200,151,30,0.3);
    padding: 4rem;
    position: relative;
}
.casino-atm-inner::before {
    content: '';
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(200,151,30,0.12);
    pointer-events: none;
}
.casino-atm-inner h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--ivory);
    font-weight: 300;
    margin-bottom: 1.5rem;
}
.casino-atm-inner p {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: rgba(248,243,234,0.65);
    line-height: 1.9;
}

/* Casino philosophy */
.casino-phil {
    padding: var(--section-v) 2.5rem;
    background: var(--navy);
}
.casino-phil-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid rgba(200,151,30,0.2);
    margin-top: 4rem;
}
.phil-item {
    padding: 3rem 2.5rem;
    border-right: 1px solid rgba(200,151,30,0.12);
    transition: background 0.3s;
}
.phil-item:last-child { border-right: none; }
.phil-item:hover { background: rgba(200,151,30,0.05); }
.phil-item h3 {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    font-weight: 400;
    margin: 1rem 0 1.2rem;
}
.phil-item p {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: rgba(248,243,234,0.5);
    line-height: 1.8;
}

/* Casino CTA */
.casino-cta {
    padding: var(--section-v) 2.5rem;
    background: var(--navy-2);
    text-align: center;
    border-top: 1px solid rgba(200,151,30,0.15);
}
.casino-cta-inner {
    max-width: 560px;
    margin: 0 auto;
}
.casino-cta h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--ivory);
    font-weight: 300;
    margin-bottom: 1rem;
}
.casino-cta p {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: rgba(248,243,234,0.6);
    margin-bottom: 2.5rem;
}

/* === CONTACT PAGE === */
.contact-hero {
    background: var(--navy);
    padding: 8rem 2.5rem 7rem;
    text-align: center;
    border-bottom: 1px solid rgba(200,151,30,0.25);
    position: relative;
    overflow: hidden;
}
.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-conic-gradient(
        from 0deg at 50% 50%,
        rgba(200,151,30,0.02) 0deg 4deg,
        transparent 4deg 8deg
    );
}
.contact-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}
.contact-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.3em;
    color: var(--ivory);
    font-weight: 300;
    margin: 1.2rem 0 0.8rem;
}
.contact-hero p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(248,243,234,0.55);
    margin-top: 1rem;
}

/* Contact info panels */
.contact-info-section {
    padding: var(--section-v) 2.5rem;
    background: var(--cream);
}
.contact-panels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    max-width: var(--max-width);
    margin: 3rem auto 0;
    padding: 0 2.5rem;
    border: 1px solid var(--cream-2);
}
.contact-panel {
    background: var(--ivory);
    padding: 3.5rem 3rem;
    border-right: 1px solid var(--cream-2);
    position: relative;
}
.contact-panel:last-child { border-right: none; }
.contact-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}
.contact-panel:hover::before { transform: scaleX(1); }
.contact-panel h3 {
    font-family: var(--font-deco);
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    color: var(--charcoal);
    font-weight: 400;
    margin: 1.2rem 0 1.5rem;
}
.contact-panel p,
.contact-panel address {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--text-mid);
    font-style: normal;
    line-height: 2;
}
.contact-panel a {
    color: var(--gold);
    border-bottom: 1px solid var(--gold-pale);
    transition: border-color 0.3s;
}
.contact-panel a:hover { border-color: var(--gold); }

/* Dress code */
.dress-code {
    padding: var(--section-v) 2.5rem;
    background: var(--navy);
    text-align: center;
}
.dress-code p {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: rgba(248,243,234,0.6);
    max-width: 600px;
    margin: 0 auto 3rem;
}
.dress-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2.5rem;
    border: 1px solid rgba(200,151,30,0.2);
}
.dress-item {
    padding: 3rem 2rem;
    border-right: 1px solid rgba(200,151,30,0.1);
}
.dress-item:last-child { border-right: none; }
.dress-item h4 {
    font-family: var(--font-deco);
    font-size: 0.82rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    font-weight: 400;
    margin: 0.8rem 0 1rem;
}
.dress-item p {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: rgba(248,243,234,0.5);
    line-height: 1.8;
    max-width: none;
    margin: 0;
}

/* Contact form */
.contact-form-section {
    padding: var(--section-v) 2.5rem;
    background: var(--ivory);
}
.contact-form-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    max-width: var(--max-width);
    margin: 0 auto;
    align-items: start;
}
.form-intro p {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--text-mid);
    line-height: 1.9;
    margin-top: 1.5rem;
}
.form-intro ul {
    margin-top: 2rem;
}
.form-intro li {
    font-family: var(--font-deco);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--text-mid);
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--cream-2);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-transform: uppercase;
}
.form-intro li::before {
    content: '◆';
    color: var(--gold);
    font-size: 0.45rem;
}
.deco-form { display: grid; gap: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
    font-family: var(--font-deco);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1.2rem;
    border: 1px solid var(--cream-2);
    background: var(--cream);
    color: var(--charcoal);
    font-family: var(--font-serif);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--ivory);
    box-shadow: 0 0 0 3px var(--gold-pale);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { text-align: right; }

/* === ANIMATIONS === */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0);    }
}
.hero-content  { animation: fadeUp 1.1s ease-out 0.3s both; }
.casino-hero-content { animation: fadeUp 1.1s ease-out 0.3s both; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .casino-games-grid { grid-template-columns: 1fr; }
    .casino-game-item:nth-child(1) { border-right: none; border-bottom: 1px solid rgba(200,151,30,0.1); }
    .footer-cols { grid-template-columns: repeat(2, 1fr); }
    .casino-phil-grid { grid-template-columns: repeat(2, 1fr); }
    .casino-phil-grid .phil-item:nth-child(2) { border-right: none; }
}
@media (max-width: 768px) {
    :root { --section-v: 4.5rem; }
    .nav-container { grid-template-columns: 1fr auto; }
    .nav-links { display: none; }
    .nav-links-r .nav-reserve { display: none; }
    .hero-frame, .casino-hero-frame { padding: 3rem 2rem; }
    .prestige { grid-template-columns: 1fr; }
    .prestige-img { min-height: 360px; }
    .prestige-text { padding: 3rem 2rem; }
    .cuisine-grid { grid-template-columns: 1fr; }
    .casino-invite { grid-template-columns: 1fr; }
    .casino-invite-img { min-height: 300px; }
    .casino-invite-text { padding: 3rem 2rem; }
    .contact-panels { grid-template-columns: 1fr; }
    .contact-panel { border-right: none; border-bottom: 1px solid var(--cream-2); }
    .dress-items { grid-template-columns: 1fr; }
    .dress-item { border-right: none; border-bottom: 1px solid rgba(200,151,30,0.1); }
    .contact-form-inner { grid-template-columns: 1fr; gap: 3rem; }
    .form-row { grid-template-columns: 1fr; }
    .casino-games-grid { grid-template-columns: 1fr; }
    .casino-game-item { grid-template-columns: 1fr; }
    .casino-game-img { min-height: 220px; }
    .casino-phil-grid { grid-template-columns: 1fr; }
    .phil-item { border-right: none; border-bottom: 1px solid rgba(200,151,30,0.1); }
    .footer-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .hero-frame { padding: 2.5rem 1.5rem; }
    .hero-title  { letter-spacing: 0.12em; }
    .footer-cols { grid-template-columns: 1fr; }
}
