:root {
    --gold:         #c4a55a;
    --gold-light:   #e8d4a0;
    --gold-dark:    #8a6e35;
    --gold-muted:   rgba(196, 165, 90, 0.12);

    --bg:           #ffffff;
    --bg-2:         #f6f0e8;
    --bg-3:         #efe8dd;
    --bg-4:         #e8e0d3;

    --true-dark:    #0d0b08;
    --true-dark-2:  #161310;

    --text:         #1c1510;
    --text-2:       #5a5048;
    --text-muted:   #9a8e84;

    --dark:         #f6f0e8;
    --dark-2:       #ffffff;
    --dark-3:       #f6f0e8;
    --dark-4:       #efe8dd;
    --cream:        #1c1510;
    --cream-2:      #5a5048;
    --white:        #1c1510;
    --text-light:   #5a5048;
    --white-pure:   #ffffff;

    --border:       rgba(0, 0, 0, 0.09);
    --border-light: rgba(0, 0, 0, 0.05);

    --font-serif:   'Playfair Display', Georgia, serif;
    --font-sans:    'Inter', system-ui, sans-serif;
    --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
    --transition:   0.4s var(--ease);
    --radius:       2px;
    --radius-lg:    6px;
    --shadow:       0 4px 32px rgba(0, 0, 0, 0.07);
    --shadow-md:    0 8px 48px rgba(0, 0, 0, 0.10);
    --shadow-sm:    0 2px 12px rgba(0, 0, 0, 0.05);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text-2);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text);
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.1rem; font-family: var(--font-sans); font-weight: 500; letter-spacing: 0.05em; }

.label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 1rem;
}
.label::before { content: '— '; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.container-wide { max-width: 1500px; margin: 0 auto; padding: 0 40px; }
.section { padding: 120px 0; }

.section-light  { background: var(--bg);   color: var(--text); }
.section-dark   { background: var(--bg);   color: var(--text); }
.section-alt    { background: var(--bg-2); color: var(--text); }

.section-dark h2, .section-dark h3,
.section-alt  h2, .section-alt  h3 { color: var(--text) !important; }

.section-dark p, .section-alt p { color: var(--text-2); }
.section-dark .label, .section-alt .label { color: var(--gold-dark); }

.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: all 0.5s var(--ease);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 50px;
    transition: padding var(--transition);
}
.nav.scrolled .nav-inner { padding: 16px 50px; }
.nav.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-logo { display: flex; flex-direction: column; line-height: 1; flex-shrink: 0; }
.logo-main {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--white-pure);
    transition: color var(--transition), text-shadow var(--transition);
}
.logo-sub {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 3px;
    transition: text-shadow var(--transition);
}
.nav .logo-main { text-shadow: 0 1px 6px rgba(0,0,0,0.55), 0 0 20px rgba(0,0,0,0.3); }
.nav .logo-sub  { text-shadow: 0 1px 6px rgba(0,0,0,0.7), 0 0 16px rgba(0,0,0,0.4); }
.nav.scrolled .logo-main { color: var(--text); text-shadow: none; }
.nav.scrolled .logo-sub  { text-shadow: none; }
.footer .logo-main { color: var(--text); }
.footer .logo-sub  { color: var(--gold-dark); }

.nav-menu { display: flex; gap: 2.5rem; align-items: center; }
.nav-link {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.92);
    transition: color var(--transition);
    position: relative;
    padding-bottom: 4px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.55), 0 0 20px rgba(0,0,0,0.3);
}
.nav.scrolled .nav-link { text-shadow: none; }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--white-pure); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav.scrolled .nav-link { color: rgba(0,0,0,0.55); }
.nav.scrolled .nav-link:hover,
.nav.scrolled .nav-link.active { color: var(--text); }
.nav.scrolled .nav-link::after { background: var(--gold-dark); }

.nav-right { display: flex; align-items: center; gap: 24px; }

.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.6);
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    transition: text-shadow var(--transition);
}
.lang-switch a { color: rgba(255,255,255,0.75); transition: color var(--transition); }
.lang-switch a:hover, .lang-switch a.active { color: var(--gold); }
.nav.scrolled .lang-switch { color: rgba(0,0,0,0.35); text-shadow: none; }
.nav.scrolled .lang-switch a { color: rgba(0,0,0,0.45); }
.nav.scrolled .lang-switch a:hover,
.nav.scrolled .lang-switch a.active { color: var(--gold-dark); }

.btn-nav {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--true-dark);
    background: var(--gold);
    padding: 10px 22px;
    border-radius: var(--radius);
    transition: all var(--transition);
}
.btn-nav:hover { background: var(--gold-light); transform: translateY(-1px); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px; height: 1.5px;
    background: var(--white-pure);
    transition: all var(--transition);
}
.nav.scrolled .nav-toggle span { background: var(--text); }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: var(--radius);
    transition: all var(--transition);
    cursor: pointer;
}
.btn-gold {
    background: var(--gold);
    color: var(--true-dark);
    border: 1px solid var(--gold);
}
.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(196,165,90,0.3);
}
.btn-outline {
    background: transparent;
    color: var(--white-pure);
    border: 1px solid rgba(255,255,255,0.45);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}
.btn-outline-gold {
    background: transparent;
    color: var(--gold-dark);
    border: 1px solid var(--gold);
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--true-dark);
    transform: translateY(-2px);
}
.btn-dark {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(28,21,16,0.3);
}
.btn-dark:hover {
    background: var(--text);
    color: var(--white-pure);
    transform: translateY(-2px);
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
    transform: scale(1.06);
    transition: transform 1.2s var(--ease-out);
}
.hero.is-loaded .hero-bg { transform: scale(1); }
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.08) 22%, transparent 40%),
        linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}
.hero-sub {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
    text-shadow: 0 1px 8px rgba(0,0,0,0.65), 0 0 20px rgba(0,0,0,0.35);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s var(--ease-out) 0.3s forwards;
}
.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3.2rem, 7vw, 7rem);
    font-weight: 400;
    color: var(--white-pure);
    line-height: 1.08;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1.1s var(--ease-out) 0.5s forwards;
}
.hero-desc {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255,255,255,0.82);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s var(--ease-out) 0.8s forwards;
}
.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s var(--ease-out) 1s forwards;
}
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
}
.hero-scroll span {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}
.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease infinite;
}

.page-hero {
    position: relative;
    height: 65vh;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding-bottom: 80px;
}
.page-hero .hero-bg { transform: scale(1); }
.page-hero .hero-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2) 0%,
        rgba(0,0,0,0.55) 70%,
        rgba(0,0,0,0.82) 100%
    );
}
.page-hero-content { position: relative; z-index: 2; text-align: center; }
.page-hero-content .hero-sub { animation: none; opacity: 1; transform: none; }
.page-hero-content .hero-title {
    color: var(--white-pure);
    font-size: clamp(2.5rem, 5vw, 5rem);
    animation: none;
    opacity: 1;
    transform: none;
    margin-bottom: 0.5rem;
}

.booking-bar {
    background: var(--white-pure);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-sm);
}
.booking-bar-inner { display: flex; align-items: center; gap: 0; }
.booking-field {
    flex: 1;
    padding: 12px 28px;
    border-right: 1px solid var(--border);
}
.booking-field:last-of-type { border-right: none; }
.booking-field label {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 6px;
}
.booking-field input, .booking-field select {
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 400;
    width: 100%;
    outline: none;
    cursor: pointer;
}
.booking-field select option { background: var(--white-pure); color: var(--text); }
.booking-btn { padding: 0 36px; flex-shrink: 0; }

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}
.welcome-image-wrap { position: relative; }
.welcome-image {
    width: 100%; height: 600px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}
.welcome-image-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white-pure);
    border: 1px solid var(--border);
    padding: 24px 28px;
    text-align: center;
    box-shadow: var(--shadow);
}
.welcome-image-badge .num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--gold-dark);
    display: block;
    line-height: 1;
}
.welcome-image-badge .txt {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 6px;
    display: block;
}
.welcome-text { padding-left: 20px; }
.welcome-text h2 { color: var(--text); margin-bottom: 1.5rem; }
.welcome-text p { color: var(--text-2); margin-bottom: 1rem; font-weight: 300; font-size: 1.05rem; }
.welcome-text p:last-of-type { margin-bottom: 2.5rem; }
.welcome-divider { width: 60px; height: 1px; background: var(--gold); margin: 1.5rem 0; }

.stats-bar { background: var(--gold); padding: 50px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat-item { padding: 0 20px; border-right: 1px solid rgba(0,0,0,0.12); }
.stat-item:last-child { border-right: none; }
.stat-num {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--true-dark);
    line-height: 1;
    display: block;
}
.stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.55);
    margin-top: 8px;
    display: block;
}

.rooms-section-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 70px;
}
.room-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}
.room-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}
.room-card:hover img { transform: scale(1.06); }
.room-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px 32px;
    transition: background var(--transition);
}
.room-card:hover .room-card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.1) 100%);
}
.room-card-label {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}
.room-card .room-card-title {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    color: var(--white-pure) !important;
    margin-bottom: 8px;
}
.room-card .room-card-price { font-size: 0.8rem; color: rgba(255,255,255,0.7) !important; }
.room-card-price strong { color: var(--gold-light) !important; font-size: 1.05rem; font-weight: 400; }
.room-card .room-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold) !important;
    margin-top: 16px;
    opacity: 1;
    transform: translateY(0);
    transition: all var(--transition);
}
.room-card:hover .room-card-cta { transform: translateY(-2px); }

.split-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; }
.split-image { position: relative; overflow: hidden; }
.split-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}
.split-section:hover .split-image img { transform: scale(1.04); }
.split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 80px;
}
.split-content h2 { margin-bottom: 1.5rem; }
.split-content p { font-weight: 300; font-size: 1.05rem; margin-bottom: 2rem; }

.split-content.dark {
    background: var(--bg-2);
    color: var(--text-2);
}
.split-content.dark h2 { color: var(--text); }
.split-content.dark .label { color: var(--gold-dark); }

.split-content.cream {
    background: var(--bg-3);
    color: var(--text-2);
}
.split-content.cream h2 { color: var(--text); }
.split-content.cream .label { color: var(--gold-dark); }

.testimonials { background: var(--bg-2); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}
.testimonial-card {
    background: var(--white-pure);
    border: 1px solid var(--border);
    padding: 40px 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.testimonial-stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 20px; }
.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
}
.testimonial-name { font-size: 0.85rem; color: var(--text); font-weight: 500; }
.testimonial-origin { font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; }

.rooms-list { display: flex; flex-direction: column; gap: 2px; margin-top: 70px; }
.room-row { display: grid; grid-template-columns: 1fr 1fr; height: 560px; }
.room-row:nth-child(even) .room-row-image { order: 2; }
.room-row:nth-child(even) .room-row-content { order: 1; }
.room-row-image { position: relative; overflow: hidden; }
.room-row-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}
.room-row:hover .room-row-image img { transform: scale(1.04); }
.room-row-content {
    background: var(--white-pure);
    padding: 70px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--border);
    border-left: none;
}
.room-row:nth-child(even) .room-row-content {
    border-left: 1px solid var(--border);
    border-right: none;
}
.room-row-content h3 { color: var(--text); margin-bottom: 6px; }
.room-row-size {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 20px;
}
.room-row-content p { font-weight: 300; margin-bottom: 28px; font-size: 1rem; line-height: 1.8; color: var(--text-2); }
.room-amenities { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.amenity-tag {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-dark);
    border: 1px solid rgba(138,110,53,0.3);
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(196,165,90,0.06);
}
.room-row-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 28px;
}
.room-row-price .from { font-size: 0.75rem; color: var(--text-muted); }
.room-row-price .amount { font-family: var(--font-serif); font-size: 2rem; color: var(--gold-dark); }
.room-row-price .per { font-size: 0.75rem; color: var(--text-muted); }

.spa-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.spa-feature { position: relative; aspect-ratio: 4/5; overflow: hidden; cursor: default; }
.spa-feature img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}
.spa-feature:hover img { transform: scale(1.05); }
.spa-feature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px 32px;
}
.spa-feature-icon { font-size: 1.5rem; color: var(--gold); margin-bottom: 14px; }
.spa-feature h3 { color: var(--white-pure) !important; margin-bottom: 10px; font-size: 1.5rem; }
.spa-feature p { color: rgba(255,255,255,0.75); font-size: 0.9rem; font-weight: 300; }

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    margin-top: 0;
}
.treatment-item {
    padding: 40px 50px;
    background: var(--white-pure);
    border: 1px solid var(--border);
    transition: background var(--transition), box-shadow var(--transition);
}
.treatment-item:hover { background: var(--bg-2); box-shadow: var(--shadow-sm); }
.treatment-item h4 { color: var(--text); margin-bottom: 8px; font-size: 1.05rem; }
.treatment-item p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 12px; }
.treatment-price { font-size: 0.8rem; color: var(--gold-dark); letter-spacing: 0.05em; }

.menu-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 60px;
}
.menu-tab {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 16px 32px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all var(--transition);
}
.menu-tab:hover { color: var(--text); }
.menu-tab.active { color: var(--gold-dark); border-bottom-color: var(--gold); }
.menu-items { display: none; }
.menu-items.active { display: grid; grid-template-columns: 1fr 1fr; gap: 0 60px; }
.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}
.menu-item-info h4 { color: var(--text); font-size: 0.95rem; margin-bottom: 4px; }
.menu-item-info p { font-size: 0.82rem; color: var(--text-muted); }
.menu-item-price { color: var(--gold-dark); font-size: 0.9rem; white-space: nowrap; margin-left: 20px; }

.chef-section { display: grid; grid-template-columns: 400px 1fr; gap: 80px; align-items: center; }
.chef-image { position: relative; }
.chef-image img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; }
.chef-image-frame {
    position: absolute;
    inset: 16px -16px -16px 16px;
    border: 1px solid rgba(196,165,90,0.35);
    z-index: -1;
}

.gallery-filters {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.filter-btn {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 9px 22px;
    border: 1px solid var(--border);
    border-radius: 100px;
    transition: all var(--transition);
    background: var(--white-pure);
}
.filter-btn:hover { color: var(--text); border-color: rgba(0,0,0,0.2); }
.filter-btn.active { color: var(--true-dark); background: var(--gold); border-color: var(--gold); }

.gallery-grid { columns: 4; column-gap: 10px; }
.gallery-item {
    break-inside: avoid;
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-item img { width: 100%; display: block; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}
.gallery-item:hover .gallery-item-overlay { background: rgba(0,0,0,0.3); }
.gallery-item-overlay i { color: var(--white-pure); font-size: 1.5rem; opacity: 0; transition: opacity var(--transition); }
.gallery-item:hover .gallery-item-overlay i { opacity: 1; }

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-img { max-width: 92vw; max-height: 90vh; object-fit: contain; }
.lightbox-close {
    position: absolute;
    top: 24px; right: 32px;
    color: var(--white-pure);
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity var(--transition);
    background: none; border: none;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white-pure);
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity var(--transition);
    background: none; border: none;
    padding: 20px;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }

.reservation-grid { display: grid; grid-template-columns: 1fr 420px; gap: 80px; align-items: start; }
.form-card {
    background: var(--white-pure);
    border: 1px solid var(--border);
    padding: 56px 56px;
    box-shadow: var(--shadow);
}
.form-card h3 { color: var(--text); margin-bottom: 36px; }
.form-group { margin-bottom: 24px; }
.form-group label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 10px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--bg-2);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 14px 18px;
    font-size: 0.95rem;
    font-weight: 300;
    outline: none;
    transition: border-color var(--transition);
    border-radius: var(--radius);
    appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: var(--white-pure); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--white-pure); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-success {
    display: none;
    background: rgba(196,165,90,0.08);
    border: 1px solid rgba(196,165,90,0.3);
    padding: 20px 24px;
    color: var(--gold-dark);
    font-size: 0.9rem;
    margin-top: 16px;
    border-radius: var(--radius);
}

.contact-card {
    background: var(--white-pure);
    border: 1px solid var(--border);
    padding: 40px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}
.contact-card h4 { color: var(--text); margin-bottom: 24px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 18px; align-items: flex-start; }
.contact-info-item i { color: var(--gold-dark); width: 18px; flex-shrink: 0; margin-top: 4px; }
.contact-info-item span, .contact-info-item a {
    font-size: 0.9rem;
    color: var(--text-2);
    font-weight: 300;
    line-height: 1.5;
    transition: color var(--transition);
}
.contact-info-item a:hover { color: var(--gold-dark); }

.map-placeholder {
    width: 100%;
    height: 280px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.map-placeholder i { font-size: 2rem; color: var(--gold-dark); }
.map-placeholder span { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.1em; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 70px; }
.value-card {
    background: var(--white-pure);
    border: 1px solid var(--border);
    padding: 50px 40px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.value-icon { font-size: 2rem; color: var(--gold-dark); margin-bottom: 24px; }
.value-card h3 { color: var(--text); font-size: 1.3rem; margin-bottom: 12px; }
.value-card p { font-size: 0.95rem; font-weight: 300; color: var(--text-2); }

.awards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 60px; }
.award-card {
    background: var(--white-pure);
    border: 1px solid var(--border);
    padding: 36px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition);
}
.award-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.award-icon { font-size: 2rem; color: var(--gold-dark); margin-bottom: 16px; }
.award-name { font-size: 0.85rem; color: var(--text); margin-bottom: 6px; font-weight: 500; }
.award-year { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.12em; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 60px; }
.team-card { overflow: hidden; position: relative; box-shadow: var(--shadow-sm); }
.team-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top;
    transition: transform 0.8s var(--ease);
}
.team-card:hover img { transform: scale(1.06); }
.team-card-info {
    padding: 20px;
    background: var(--white-pure);
    border: 1px solid var(--border);
    border-top: 2px solid var(--gold);
}
.team-name { font-size: 1rem; color: var(--text); margin-bottom: 4px; }
.team-role { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-dark); }

.season-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.season-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.season-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
}
.season-content { position: relative; z-index: 2; max-width: 560px; padding: 80px 0; }
.season-content h2 { color: var(--white-pure); margin-bottom: 1.5rem; }
.season-content p { color: rgba(255,255,255,0.82); font-weight: 300; font-size: 1.05rem; margin-bottom: 2.5rem; }
.season-content .label { color: var(--gold); }

.footer { background: var(--bg-3); border-top: 1px solid var(--border); }
.footer-top { padding: 90px 0 60px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 60px; }
.footer-brand .footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 20px;
}
.footer-brand .logo-main { color: var(--text); }
.footer-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}
.footer-social { display: flex; gap: 16px; }
.footer-social a {
    width: 38px; height: 38px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    background: var(--white-pure);
    transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.footer-col h4 {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { font-size: 0.88rem; color: var(--text-muted); transition: color var(--transition); font-weight: 300; }
.footer-col ul a:hover { color: var(--gold-dark); }
.footer-contact-list li { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact-list i { color: var(--gold-dark); width: 16px; flex-shrink: 0; margin-top: 3px; font-size: 0.8rem; }
.footer-contact-list span, .footer-contact-list a {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.5;
    transition: color var(--transition);
}
.footer-contact-list a:hover { color: var(--gold-dark); }
.footer-col > p { font-size: 0.85rem; color: var(--text-muted); font-weight: 300; margin-bottom: 16px; }
.newsletter-form {
    display: flex;
    border: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: 24px;
    background: var(--white-pure);
}
.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text);
    padding: 12px 16px;
    font-size: 0.85rem;
    outline: none;
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form button { background: var(--gold); color: var(--true-dark); padding: 0 18px; font-size: 0.8rem; transition: background var(--transition); }
.newsletter-form button:hover { background: var(--gold-light); }
.footer-awards { display: flex; flex-direction: column; gap: 8px; }
.footer-awards span { font-size: 0.7rem; letter-spacing: 0.08em; color: var(--text-muted); }
.footer-awards i { color: var(--gold-dark); margin-right: 6px; }
.footer-bottom { padding: 24px 0; border-top: 1px solid var(--border); background: var(--bg-4); }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.78rem; color: var(--text-muted); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--gold-dark); }

.cta-banner { background: var(--bg-2); padding: 80px 0; text-align: center; border-top: 1px solid var(--border); }

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes scrollLine {
    0%   { transform: scaleY(0); transform-origin: top; }
    50%  { transform: scaleY(1); transform-origin: top; }
    50.01% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

.text-center { text-align: center; }
.text-gold { color: var(--gold-dark); }
.mt-1 { margin-top: 8px; }  .mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; } .mt-4 { margin-top: 40px; }
.mb-4 { margin-bottom: 40px; }
.gold-line { width: 50px; height: 1px; background: var(--gold); margin: 0 auto 40px; }

@media (max-width: 1200px) {
    .container, .container-wide { padding: 0 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .welcome-grid { gap: 60px; }
    .split-content { padding: 60px 60px; }
    .rooms-section-grid { grid-template-columns: repeat(2, 1fr); }
    .rooms-section-grid .room-card:last-child { display: none; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .awards-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 992px) {
    .nav-inner { padding: 20px 32px; }
    .nav.scrolled .nav-inner { padding: 14px 32px; }
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 300px; height: 100vh;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 48px 48px;
        gap: 2px;
        transition: right 0.4s var(--ease);
        border-left: 1px solid var(--border);
        box-shadow: -4px 0 30px rgba(0,0,0,0.1);
    }
    .nav-menu.is-open { right: 0; }
    .nav-link { font-size: 0.9rem; padding: 12px 0; letter-spacing: 0.1em; color: var(--text-2); text-shadow: none; }
    .nav-link:hover, .nav-link.active { color: var(--text); }
    .nav-right { gap: 16px; }
    .btn-nav { display: none; }
    .nav-toggle { display: flex; z-index: 1001; }
    .nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
    .nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    .welcome-grid { grid-template-columns: 1fr; gap: 50px; }
    .welcome-text { padding-left: 0; }
    .welcome-image-badge { right: 20px; }
    .split-section { grid-template-columns: 1fr; }
    .split-section .split-image { min-height: 360px; }
    .split-content { padding: 60px 40px; }
    .rooms-section-grid { grid-template-columns: 1fr 1fr; }
    .rooms-section-grid .room-card:last-child { display: block; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .room-row { grid-template-columns: 1fr; min-height: auto; }
    .room-row:nth-child(even) .room-row-image { order: 0; }
    .room-row:nth-child(even) .room-row-content { order: 0; }
    .room-row-image { min-height: 340px; }
    .room-row-content { padding: 44px 40px; border: 1px solid var(--border); border-top: none; }
    .room-row:nth-child(even) .room-row-content { border: 1px solid var(--border); border-top: none; }
    .spa-features { grid-template-columns: 1fr; }
    .spa-feature { aspect-ratio: 16/9; }
    .treatments-grid { grid-template-columns: 1fr; }
    .chef-section { grid-template-columns: 1fr; }
    .chef-image { max-width: 320px; }
    .menu-items.active { grid-template-columns: 1fr; }
    .reservation-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 0; }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3) { border-right: 1px solid rgba(0,0,0,0.12); border-top: 1px solid rgba(0,0,0,0.12); }
    .stat-item:nth-child(4) { border-right: none; border-top: 1px solid rgba(0,0,0,0.12); }
    .gallery-grid { columns: 2; }
    .booking-bar-inner { flex-wrap: wrap; }
    .booking-field { flex: 0 0 50%; border-bottom: 1px solid var(--border); }
    .booking-field:nth-child(2) { border-right: none; }
    .booking-btn { width: 100%; padding: 16px; text-align: center; }
    .booking-btn .btn { width: 100%; justify-content: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .section { padding: 80px 0; }
    .container, .container-wide { padding: 0 20px; }
    .nav-inner { padding: 18px 20px; }
    .nav.scrolled .nav-inner { padding: 12px 20px; }
    .hero-title { font-size: 2.8rem; }
    .page-hero { height: 55vh; min-height: 380px; }
    .page-hero-content .hero-title { font-size: 2.2rem; }
    .rooms-section-grid { grid-template-columns: 1fr; }
    .room-card { aspect-ratio: 4/5; }
    .split-content { padding: 44px 24px; }
    .season-content { padding: 60px 0; }
    .season-overlay { background: rgba(0,0,0,0.7); }
    .form-card { padding: 36px 24px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .gallery-grid { columns: 1; }
    .awards-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom .container { flex-direction: column; gap: 12px; }
    .booking-field { flex: 0 0 100%; border-right: none; }
    .welcome-image-badge { right: 10px; bottom: -20px; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .btn { padding: 14px 28px; }
    .values-grid { grid-template-columns: 1fr; }
}
