@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Manrope:wght@200;300;400;500;600;700&display=swap');

:root {
    --bg: #121212;
    --bg-deep: #0c0c0c;
    --surface: #1a1a1a;
    --surface-raised: #222222;
    --gold: #c9a96e;
    --gold-soft: #dcc48a;
    --gold-dim: #9a8350;
    --text: #e6e2da;
    --text-dim: #9b9590;
    --text-faint: #5e5a54;
    --white: #fff;
    --border: rgba(201,169,110,0.16);
    --border-light: rgba(201,169,110,0.08);
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Manrope', -apple-system, sans-serif;
    --expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

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

body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 10000;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
    opacity: 0.25;
}

::selection { background: var(--gold); color: var(--bg); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ===== PRELOADER ===== */
.preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--bg-deep);
    display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 32px;
    transition: opacity 1.2s var(--expo), visibility 1.2s, transform 1.2s var(--expo);
}
.preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; transform: scale(1.05); }
.preloader-logo { width: 160px; opacity: 0; filter: brightness(1.2); animation: pF 0.8s 0.3s var(--expo) forwards; }
.preloader-bar { width: 120px; height: 1px; background: var(--surface-raised); position: relative; overflow: hidden; }
.preloader-bar::after { content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 0; background: var(--gold); animation: pB 1.5s 0.5s var(--expo) forwards; }
@keyframes pF { to { opacity: 1; } }
@keyframes pB { to { width: 100%; } }

/* ===== NAV ===== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: 80px; padding: 0 48px;
    display: flex; align-items: center; justify-content: space-between;
    transition: all 0.5s var(--expo);
}
.nav::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(8,8,8,0); backdrop-filter: blur(0px); -webkit-backdrop-filter: blur(0px);
    transition: all 0.5s var(--expo); z-index: -1;
}
.nav.scrolled { height: 64px; }
.nav.scrolled::before { background: rgba(18, 18, 18, 0.92); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }
.nav-logo img { height: 44px; filter: brightness(1.3); transition: all 0.5s var(--expo); }
.nav.scrolled .nav-logo img { height: 36px; }

.nav-center {
    display: flex; gap: 40px; list-style: none;
    position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-center a {
    font-size: 11.5px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--text); position: relative; padding: 4px 0; transition: color 0.3s;
}
.nav-center a::after {
    content: ''; position: absolute; bottom: -2px; left: 50%; width: 0; height: 1px;
    background: var(--gold); transition: width 0.5s var(--expo), left 0.5s var(--expo);
}
.nav-center a:hover { color: var(--gold); }
.nav-center a:hover::after { width: 100%; left: 0; }

.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-cta {
    font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
    color: var(--bg); background: var(--gold); padding: 14px 32px; border: none; cursor: pointer;
    transition: all 0.4s var(--expo); position: relative; overflow: hidden; display: inline-block;
}
.nav-cta::before { content: ''; position: absolute; inset: 0; background: var(--white); transform: translateY(100%); transition: transform 0.5s var(--expo); }
.nav-cta:hover::before { transform: translateY(0); }
.nav-cta span { position: relative; z-index: 1; }

.burger {
    display: none; background: none; border: none; cursor: pointer;
    width: 28px; height: 20px; position: relative; z-index: 1001;
}
.burger i { display: block; width: 100%; height: 1.5px; background: var(--text); position: absolute; left: 0; transition: all 0.4s var(--expo); }
.burger i:nth-child(1) { top: 0; }
.burger i:nth-child(2) { top: 50%; transform: translateY(-50%); }
.burger i:nth-child(3) { bottom: 0; width: 60%; }
.burger.active i:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.burger.active i:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.burger.active i:nth-child(3) { bottom: 50%; width: 100%; transform: translateY(50%) rotate(-45deg); }

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 380px;
    max-width: 85vw;
    z-index: 999;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 48px 60px;
    transform: translateX(-100%);
    transition: transform 0.65s var(--expo);
    overflow-y: auto;
}
.mobile-overlay.open { transform: translateX(0); }

.mobile-overlay-backdrop {
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
    cursor: pointer;
}
.mobile-overlay-backdrop.open { opacity: 1; visibility: visible; }

.mobile-overlay .side-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-overlay .side-close::before,
.mobile-overlay .side-close::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 1.5px;
    background: var(--bg);
}
.mobile-overlay .side-close::before { transform: rotate(45deg); }
.mobile-overlay .side-close::after { transform: rotate(-45deg); }

.mobile-overlay a {
    font-family: var(--sans);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--bg);
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    opacity: 0;
    transform: translateX(-30px);
    transition: transform 0.5s var(--expo), opacity 0.5s var(--expo), color 0.3s;
    display: block;
}
.mobile-overlay.open a {
    opacity: 1;
    transform: translateX(0);
}
.mobile-overlay.open a:nth-child(2) { transition-delay: 0.05s; }
.mobile-overlay.open a:nth-child(3) { transition-delay: 0.10s; }
.mobile-overlay.open a:nth-child(4) { transition-delay: 0.15s; }
.mobile-overlay.open a:nth-child(5) { transition-delay: 0.20s; }
.mobile-overlay.open a:nth-child(6) { transition-delay: 0.25s; }
.mobile-overlay.open a:nth-child(7) { transition-delay: 0.30s; }
.mobile-overlay a:hover { color: var(--gold-dim); }

.mobile-overlay .side-cta {
    display: inline-block;
    margin-top: 32px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--gold);
    padding: 16px 36px;
    border-bottom: none;
    text-align: center;
    opacity: 0;
    transform: translateX(-30px);
    transition: transform 0.5s var(--expo) 0.32s, opacity 0.5s var(--expo) 0.32s, background 0.3s;
}
.mobile-overlay.open .side-cta { opacity: 1; transform: translateX(0); }
.mobile-overlay .side-cta:hover { background: var(--gold-dim); color: var(--white); }

.mobile-overlay .side-info {
    margin-top: auto;
    padding-top: 32px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s var(--expo) 0.35s;
}
.mobile-overlay.open .side-info { opacity: 1; transform: translateX(0); }
.mobile-overlay .side-info p {
    font-size: 12px;
    color: rgba(0,0,0,0.4);
    line-height: 1.7;
}
.mobile-overlay .side-info a {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: var(--gold-dim);
    padding: 0;
    border-bottom: none;
    display: inline;
    opacity: 1;
    transform: none;
}

/* ===== HERO ===== */
.hero {
    position: relative; height: 100vh; height: 100dvh; min-height: 600px;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.15); transition: transform 12s linear; will-change: transform; }
.hero.in-view .hero-media img { transform: scale(1.0); }
.hero-dim {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(12,12,12,0.35), rgba(12,12,12,0.8) 70%), linear-gradient(to bottom, rgba(12,12,12,0.25) 0%, rgba(12,12,12,0.3) 30%, rgba(12,12,12,0.65) 70%, rgba(18,18,18,0.97) 100%);
}
.hero-inner { position: relative; z-index: 2; text-align: center; max-width: 860px; padding: 0 40px; }
.hero-rule { width: 48px; height: 1px; background: var(--gold); margin: 0 auto 28px; opacity: 0; transform: scaleX(0); filter: blur(4px); }
.hero h1 { font-family: var(--serif); font-size: clamp(52px, 9vw, 120px); font-weight: 300; line-height: 0.95; color: var(--white); letter-spacing: -2px; opacity: 0; transform: translateY(50px); filter: blur(8px); text-shadow: 0 4px 30px rgba(0,0,0,0.6), 0 2px 12px rgba(0,0,0,0.5); }
.hero-sub { font-family: var(--serif); font-size: clamp(16px, 2.2vw, 24px); font-weight: 300; font-style: italic; color: var(--gold-soft); margin-top: 12px; letter-spacing: 1px; opacity: 0; transform: translateY(30px); filter: blur(6px); text-shadow: 0 2px 18px rgba(0,0,0,0.7); }
.hero-loc { font-size: 11px; font-weight: 500; letter-spacing: 5px; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-top: 44px; opacity: 0; transform: translateY(20px); filter: blur(4px); text-shadow: 0 2px 12px rgba(0,0,0,0.6); }
.hero-cta-wrap { margin-top: 48px; opacity: 0; transform: translateY(20px); filter: blur(4px); }
.hero-cta { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; padding: 18px 48px; border: 1px solid rgba(196,162,101,0.5); color: var(--gold); transition: all 0.5s var(--expo); }
.hero-cta:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.hero-scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: 0; animation: fadeUp 1s 2.5s var(--expo) forwards; }
.hero-scroll span { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--text-dim); }
.scroll-tick { width: 1px; height: 48px; position: relative; overflow: hidden; }
.scroll-tick::after { content: ''; position: absolute; top: -100%; left: 0; width: 1px; height: 100%; background: linear-gradient(to bottom, transparent, var(--gold)); animation: tickDrop 2s infinite; }
@keyframes tickDrop { 0% { top: -100%; } 100% { top: 100%; } }
@keyframes fadeUp { to { opacity: 1; } }

/* ===== REVEALS ===== */
.r { opacity: 0; transform: translateY(60px); transition: opacity 1.1s var(--expo), transform 1.1s var(--expo); }
.r.v { opacity: 1; transform: translateY(0); }
.rl { opacity: 0; transform: translateX(-80px); transition: opacity 1.1s var(--expo), transform 1.1s var(--expo); }
.rl.v { opacity: 1; transform: translateX(0); }
.rr { opacity: 0; transform: translateX(80px); transition: opacity 1.1s var(--expo), transform 1.1s var(--expo); }
.rr.v { opacity: 1; transform: translateX(0); }
.rs { opacity: 0; transform: scale(0.92); transition: opacity 1.3s var(--expo), transform 1.3s var(--expo); }
.rs.v { opacity: 1; transform: scale(1); }
[data-delay="1"] { transition-delay: 0.1s !important; }
[data-delay="2"] { transition-delay: 0.2s !important; }
[data-delay="3"] { transition-delay: 0.3s !important; }
[data-delay="4"] { transition-delay: 0.4s !important; }
[data-delay="5"] { transition-delay: 0.5s !important; }

/* ===== CLIP-PATH IMAGE REVEAL ===== */
.clip-reveal {
    clip-path: inset(12% 12% 12% 12%);
    transition: clip-path 1.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.clip-reveal.clip-in {
    clip-path: inset(0% 0% 0% 0%);
}
.clip-reveal img {
    transition: transform 1.6s cubic-bezier(0.77, 0, 0.175, 1), filter 1.4s;
    transform: scale(1.15);
}
.clip-reveal.clip-in img {
    transform: scale(1.05);
}
.clip-reveal:not(.priv-banner-bg) img {
    filter: brightness(0.7);
}
.clip-reveal.clip-in:not(.priv-banner-bg) img {
    filter: brightness(1);
}

/* ===== SPLIT TEXT CHARACTERS ===== */
.split-chars { overflow: hidden; display: block; }
.split-chars .sc {
    display: inline-block;
    opacity: 0;
    transform: translateY(110%) rotate(5deg);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.split-chars.sc-in .sc {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}

/* ===== MARQUEE ENHANCED ===== */
.marquee-inner {
    will-change: transform;
    transition: none;
}

/* ===== COMMON ===== */
.pad { padding: 140px 64px; }
.label { font-size: 10.5px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; display: block; }
.heading { font-family: var(--serif); font-size: clamp(36px, 4.5vw, 68px); font-weight: 300; line-height: 1.1; color: var(--white); max-width: 580px; }
.body-text { font-size: 15px; font-weight: 300; line-height: 1.85; color: var(--text-dim); max-width: 500px; margin-top: 24px; }
.rule { width: 36px; height: 1px; background: var(--gold); margin: 28px 0; }

.btn {
    display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); border: 1px solid var(--border); padding: 18px 40px; margin-top: 36px;
    transition: all 0.5s var(--expo); position: relative; overflow: hidden; background: none; cursor: pointer;
}
.btn::before { content: ''; position: absolute; inset: 0; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.6s var(--expo); z-index: 0; }
.btn:hover::before { transform: scaleX(1); }
.btn:hover { color: var(--bg); border-color: var(--gold); }
.btn span { position: relative; z-index: 1; }

/* ===== SPLIT ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 85vh; }
.split-media { position: relative; overflow: hidden; }
.split-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 2s var(--expo), filter 2s; }
.split-media:hover img { transform: scale(1.06); filter: brightness(1.1); }
.split-body { display: flex; flex-direction: column; justify-content: center; padding: 80px; }
.split-body.bg-s { background: var(--surface); }
.split-body.bg-r { background: var(--surface-raised); }
.split-reverse { grid-template-columns: 1fr 1fr; }
@media (min-width: 1025px) {
    .split-reverse .split-body { order: 1; }
    .split-reverse .split-media { order: 2; }
}

/* ===== MARQUEE ===== */
.marquee { padding: 48px 0; overflow: hidden; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); user-select: none; }
.marquee-inner { display: flex; animation: slide 30s linear infinite; width: max-content; }
.marquee-text { font-family: var(--serif); font-size: clamp(36px, 5vw, 72px); font-weight: 300; font-style: italic; color: transparent; -webkit-text-stroke: 0.8px var(--gold-dim); white-space: nowrap; padding: 0 24px; }
.mq-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); vertical-align: middle; margin: 0 28px; }
@keyframes slide { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== CARDS (homepage only) ===== */
.home-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    margin-top: 48px;
}
.hcard {
    position: relative; overflow: hidden; aspect-ratio: 3/4; cursor: pointer; display: block;
}
.hcard img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--expo), filter 1.4s; filter: brightness(0.8) saturate(0.9); }
.hcard:hover img { transform: scale(1.12); filter: brightness(0.55) saturate(1.1); }
.hcard-info {
    position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 48px;
    background: linear-gradient(to top, rgba(12,12,12,0.88) 0%, rgba(12,12,12,0) 55%);
}
.hcard-info h3 { font-family: var(--serif); font-size: 26px; font-weight: 400; color: var(--white); }
.hcard-info p { font-size: 13px; font-weight: 300; color: var(--text-dim); margin-top: 6px; opacity: 0; transform: translateY(10px); transition: all 0.6s var(--expo) 0.05s; }
.hcard:hover .hcard-info p { opacity: 1; transform: translateY(0); }

/* ===== PARALLAX ===== */
.parallax { height: 45vh; position: relative; overflow: hidden; }
.parallax img { position: absolute; width: 100%; height: 140%; object-fit: cover; top: -20%; will-change: transform; }
.parallax-dim { position: absolute; inset: 0; background: rgba(12,12,12,0.4); }

/* ===== PRIV BANNER ===== */
.priv-banner { position: relative; padding: 160px 64px; text-align: center; overflow: hidden; }
.priv-banner-bg { position: absolute; inset: 0; }
.priv-banner-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(12, 12, 12, 0.55);
    z-index: 1;
}
.priv-banner-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.18) saturate(0.7); }
.priv-banner-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.priv-banner .heading { max-width: none; margin: 0 auto; }
.priv-banner .body-text { max-width: 600px; margin: 24px auto 0; text-align: center; }
.priv-banner .rule { margin: 28px auto; }

/* ===== INFO GRID ===== */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; }
.info-cell { padding: 80px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.info-cell:nth-child(1) { background: var(--surface); }
.info-cell:nth-child(2) { background: var(--surface-raised); }
.info-cell.rr { position: relative; background-image: linear-gradient(rgba(18,18,18,0.78), rgba(18,18,18,0.85)), url('../img/table-veranda.jpg'); background-size: cover; background-position: center; }
.info-cell.rr > * { position: relative; z-index: 1; }
.info-cell.rr .info-dt { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(200, 164, 92, 0.25); width: 220px; }
.info-cell.rr .info-dt:first-of-type { border-top: none; padding-top: 0; margin-top: 28px; }
.info-cell.rr .info-dd { font-style: italic; letter-spacing: 0.3px; }
.info-cell.rr .info-dd a { border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.info-dt { font-size: 10px; font-weight: 600; letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; margin-top: 28px; }
.info-dt:first-of-type { margin-top: 24px; }
.info-dd { font-family: var(--serif); font-size: 20px; font-weight: 300; color: var(--text); line-height: 1.5; }
.info-dd a { color: var(--gold); transition: color 0.3s; }

/* ===== FAQ ===== */
.faq-wrap { max-width: 780px; margin: 64px auto 0; }
.faq-it { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; padding: 26px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; text-align: left; }
.faq-q h3 { font-family: var(--serif); font-size: 19px; font-weight: 400; color: var(--text); padding-right: 24px; transition: color 0.3s; }
.faq-q:hover h3 { color: var(--gold); }
.faq-plus { width: 18px; height: 18px; position: relative; flex-shrink: 0; }
.faq-plus::before, .faq-plus::after { content: ''; position: absolute; background: var(--gold); transition: transform 0.5s var(--expo); }
.faq-plus::before { width: 18px; height: 1px; top: 50%; left: 0; }
.faq-plus::after { width: 1px; height: 18px; left: 50%; top: 0; }
.faq-it.open .faq-plus::after { transform: rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.6s var(--expo), padding 0.4s; }
.faq-it.open .faq-a { max-height: 200px; padding-bottom: 24px; }
.faq-a p { font-size: 14px; font-weight: 300; line-height: 1.8; color: var(--text-dim); }
.faq-a a { color: var(--gold); }

/* ===== CONTACT ===== */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1080px; margin: 64px auto 0; }
.form-field label { display: block; font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-dim); margin-bottom: 10px; }
.form-field input, .form-field select, .form-field textarea {
    width: 100%; background: var(--bg); border: 1px solid var(--border); padding: 15px 18px;
    font-family: var(--sans); font-size: 14px; font-weight: 300; color: var(--text); outline: none;
    transition: border-color 0.4s var(--expo);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--gold); }
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field select { appearance: none; cursor: pointer; }
.form-field + .form-field { margin-top: 20px; }
.check-row { display: flex; align-items: flex-start; gap: 12px; margin-top: 20px; }
.check-row input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.check-row label { font-size: 12px; color: var(--text-dim); line-height: 1.5; }
.contact-side { display: flex; flex-direction: column; justify-content: center; }
.contact-addr { margin-top: 24px; }
.contact-addr p { font-family: var(--serif); font-size: 20px; font-weight: 300; color: var(--text); line-height: 1.6; }
.contact-tel { font-family: var(--serif); font-size: 30px; font-weight: 300; color: var(--gold); margin-top: 16px; display: block; transition: color 0.3s; }
.contact-tel:hover { color: var(--gold-soft); }
.socials { display: flex; gap: 14px; margin-top: 36px; }
.socials a { width: 42px; height: 42px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: all 0.4s var(--expo); }
.socials a:hover { background: var(--gold); border-color: var(--gold); }
.socials a svg { width: 16px; height: 16px; fill: var(--text); transition: fill 0.3s; }
.socials a:hover svg { fill: var(--bg); }

/* ===== FOOTER ===== */
.footer {
    padding: 48px 64px; border-top: 1px solid var(--border-light);
    display: flex; justify-content: space-between; align-items: center; background: var(--bg-deep);
}
.footer-logo img { height: 36px; opacity: 0.5; filter: brightness(1.2); }
.footer-nav { display: flex; gap: 28px; list-style: none; }
.footer-nav a { font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim); transition: color 0.3s; }
.footer-nav a:hover { color: var(--gold); }
.footer-copy { font-size: 11px; color: var(--text-faint); letter-spacing: 0.5px; }

/* ===== PAGE HERO ===== */
.page-hero {
    height: 45vh; min-height: 340px;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden; background: var(--bg-deep);
}
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 100px; background: linear-gradient(to top, var(--bg-deep), transparent); z-index: 1; }
.page-hero-inner { text-align: center; position: relative; z-index: 2; }
.page-hero .heading { font-size: clamp(44px, 7vw, 84px); max-width: none; margin: 0 auto; }

/* ===== MENU PAGE (single column, clean) ===== */
.menu-wrap {
    display: block;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 20px 40px 140px;
}

.menu-cat {
    display: block;
    width: 100%;
    margin-bottom: 72px;
}

.menu-cat-title {
    font-family: var(--serif);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 8px;
}

.menu-cat-sub {
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 1.5px;
    margin-bottom: 32px;
}

.m-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    gap: 16px;
}

.m-name {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 400;
    color: var(--text);
    line-height: 1.4;
}

.m-desc {
    font-size: 12.5px;
    font-weight: 300;
    color: var(--text-dim);
    margin-top: 3px;
}

.m-price {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 400;
    color: var(--gold);
    white-space: nowrap;
    flex-shrink: 0;
}

.formula-box {
    background: var(--surface);
    padding: 36px;
    margin-bottom: 16px;
    border: 1px solid var(--border-light);
}

.formula-prices { display: flex; gap: 28px; flex-wrap: wrap; margin-bottom: 16px; }
.formula-price { font-family: var(--serif); font-size: 15px; color: var(--text-dim); }
.formula-price strong { color: var(--gold); font-size: 24px; font-weight: 400; margin-left: 6px; }

.sub-label {
    font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin: 24px 0 10px;
}

.sub-item {
    font-family: var(--serif); font-size: 16px; font-weight: 300;
    color: var(--text); padding: 4px 0; line-height: 1.5;
}

/* ===== BAR TABS ===== */
.tabs-nav { display: flex; justify-content: center; gap: 8px; margin-bottom: 48px; flex-wrap: wrap; }
.tab-btn {
    font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    padding: 11px 20px; border: 1px solid var(--border); background: none; color: var(--text-dim);
    cursor: pointer; transition: all 0.4s var(--expo);
}
.tab-btn:hover, .tab-btn.on { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.tab-panel { display: none; }
.tab-panel.on { display: block; }

.wtable { width: 100%; border-collapse: collapse; margin-top: 16px; overflow-x: auto; display: block; }
@media (min-width: 600px) { .wtable { display: table; } }
.wtable th { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); text-align: right; padding: 12px 14px; border-bottom: 1px solid var(--border); }
.wtable th:first-child { text-align: left; }
.wtable td { padding: 11px 14px; border-bottom: 1px solid var(--border-light); font-family: var(--serif); font-size: 15px; font-weight: 300; color: var(--text); text-align: right; }
.wtable td:first-child { text-align: left; }

/* ===== LEGAL PAGES ===== */
.legal-wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 20px 40px 120px;
}
.legal-wrap h2 {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 400;
    color: var(--gold);
    margin: 48px 0 16px;
}
.legal-wrap h2:first-of-type { margin-top: 0; }
.legal-wrap p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-dim);
    margin-bottom: 12px;
}
.legal-wrap ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 16px;
}
.legal-wrap ul li {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-dim);
    line-height: 1.85;
    padding-left: 16px;
    position: relative;
}
.legal-wrap ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold-dim);
}
.legal-wrap a { color: var(--gold); transition: color 0.3s; }
.legal-wrap a:hover { color: var(--gold-soft); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .split { grid-template-columns: 1fr; }
    .split-media { height: 50vh; min-height: 300px; }
    .split-body { padding: 64px 48px; }
    .info-grid { grid-template-columns: 1fr; }
    .info-cell { padding: 64px 48px; }
    .contact-layout { grid-template-columns: 1fr; gap: 48px; }
    .home-cards { grid-template-columns: 1fr; }
    .hcard { aspect-ratio: 16/10; }
    .pad { padding: 100px 48px; }
    .priv-banner { padding: 120px 48px; }
    .nav-center { display: none; }
    .burger { display: block; }
}

@media (max-width: 768px) {
    .nav { padding: 0 20px; height: 64px; }
    .nav.scrolled { height: 56px; }
    .nav-logo img { height: 36px; }
    .nav.scrolled .nav-logo img { height: 32px; }
    .nav-cta { display: none; }

    .mobile-overlay { width: 320px; padding: 90px 36px 48px; }
    .mobile-overlay a { font-size: 15px; padding: 13px 0; }

    .pad { padding: 64px 20px; }
    .split-body { padding: 48px 20px; }
    .split-media { height: 40vh; min-height: 240px; }
    .info-cell { padding: 48px 20px; }
    .hero-inner { padding: 0 20px; }
    .hero h1 { font-size: clamp(44px, 12vw, 72px); letter-spacing: -1px; }
    .hero-sub { font-size: clamp(14px, 3.5vw, 20px); }
    .hero-loc { font-size: 10px; letter-spacing: 4px; margin-top: 32px; }
    .hero-cta-wrap { margin-top: 36px; }
    .hero-cta { padding: 16px 36px; font-size: 10px; }
    .hero-scroll { bottom: 24px; }

    .heading { font-size: clamp(28px, 7vw, 44px); }
    .body-text { font-size: 14px; line-height: 1.75; margin-top: 18px; }
    .label { font-size: 10px; letter-spacing: 3px; margin-bottom: 14px; }
    .rule { margin: 20px 0; }
    .btn { padding: 16px 32px; font-size: 10px; margin-top: 28px; }

    .marquee { padding: 32px 0; }
    .marquee-text { font-size: clamp(28px, 8vw, 48px); }

    .priv-banner { padding: 80px 20px; }
    .priv-banner .heading { font-size: clamp(26px, 6vw, 40px); }

    .footer { flex-direction: column; gap: 20px; padding: 36px 20px; text-align: center; }
    .footer-nav { flex-wrap: wrap; justify-content: center; gap: 16px; }
    .footer-nav a { font-size: 10px; }
    .footer-copy { font-size: 10px; }

    .page-hero { height: 35vh; min-height: 260px; }
    .page-hero .heading { font-size: clamp(32px, 9vw, 56px); }

    .menu-wrap { padding: 16px 16px 72px; max-width: 100%; }
    .menu-cat { margin-bottom: 56px; }
    .menu-cat-title { font-size: clamp(24px, 6vw, 36px); }
    .m-row { padding: 12px 0; gap: 12px; }
    .m-name { font-size: 15px; }
    .m-price { font-size: 15px; }
    .m-desc { font-size: 11.5px; }
    .formula-box { padding: 20px; }
    .formula-price { font-size: 13px; }
    .formula-price strong { font-size: 20px; }
    .sub-label { font-size: 9px; margin: 20px 0 8px; }
    .sub-item { font-size: 14px; }

    .tabs-nav { gap: 5px; margin-bottom: 36px; }
    .tab-btn { padding: 9px 12px; font-size: 9px; letter-spacing: 1.5px; }

    .wtable { font-size: 13px; }
    .wtable th { font-size: 9px; padding: 10px 8px; }
    .wtable td { font-size: 13px; padding: 9px 8px; }

    .contact-layout { gap: 36px; }
    .contact-tel { font-size: 24px; }
    .contact-addr p { font-size: 17px; }

    .legal-wrap { padding: 16px 16px 72px; }
    .legal-wrap h2 { font-size: 22px; margin: 36px 0 12px; }
    .legal-wrap p { font-size: 13px; }

    .hcard { aspect-ratio: 4/3; }
    .hcard-info { padding: 24px; }
    .hcard-info h3 { font-size: 22px; }
    .hcard-info p { opacity: 1; transform: none; font-size: 12px; }

    .info-dt { font-size: 9px; margin-top: 20px; }
    .info-dd { font-size: 17px; }

    .faq-wrap { margin-top: 40px; }
    .faq-q h3 { font-size: 16px; }
    .faq-a p { font-size: 13px; }

    .mobile-overlay a { font-size: 16px; padding: 14px 0; }

    .socials { margin-top: 24px; }
    .socials a { width: 38px; height: 38px; }
}

@media (max-width: 420px) {
    .nav { padding: 0 16px; }
    .pad { padding: 52px 16px; }
    .hero h1 { font-size: 40px; }
    .hero-cta { padding: 14px 28px; }
    .split-body { padding: 40px 16px; }
    .info-cell { padding: 40px 16px; }
    .menu-wrap { padding: 12px 12px 60px; }
    .legal-wrap { padding: 12px 12px 60px; }
    .formula-box { padding: 16px; }
    .tab-btn { padding: 8px 10px; font-size: 8px; }
    .priv-banner { padding: 60px 16px; }
    .footer { padding: 28px 16px; }
    .contact-layout { gap: 28px; }
    .form-field input, .form-field select, .form-field textarea { padding: 13px 14px; font-size: 13px; }
}
