/* ========================================
   HOTEL SINGER — SHARED STYLES
   ======================================== */

/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */
:root {
    --gold: #C5A664;
    --gold-light: #D4BC82;
    --gold-dark: #A88B4A;
    --dark: #1A1714;
    --dark-warm: #2A2520;
    --dark-medium: #3A3530;
    --cream: #F5F0E8;
    --cream-light: #FAF7F2;
    --white: #FFFFFF;
    --text-dark: #1A1714;
    --text-medium: #6B6560;
    --text-light: #9B9590;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', 'Helvetica Neue', sans-serif;
    --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: clip;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s var(--transition);
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
.heading-xl {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.heading-lg {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.heading-md {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 400;
    line-height: 1.2;
}

.heading-sm {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.body-text {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-medium);
}

.body-text-lg {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-medium);
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s var(--transition);
}

.nav.scrolled {
    background: rgba(26, 23, 20, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 3rem;
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.15);
}

/* Subpage nav - starts dark */
.nav--subpage {
    background: rgba(26, 23, 20, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 3rem;
}

.nav__logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: radial-gradient(ellipse at center, rgba(26, 23, 20, 0.3) 0%, rgba(26, 23, 20, 0) 70%);
    padding: 0.8rem 2rem 0.8rem 1rem;
    transition: all 0.5s var(--transition);
}

.nav.scrolled .nav__logo-link,
.nav--subpage .nav__logo-link {
    background: transparent;
    padding: 0;
}

.nav__logo {
    height: 50px;
    transition: height 0.5s var(--transition);
}

.nav.scrolled .nav__logo,
.nav--subpage .nav__logo {
    height: 38px;
}

.nav__logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1.1;
    transition: font-size 0.5s var(--transition);
}

.nav__logo-stars {
    font-size: 0.55rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    margin-top: 2px;
}

.nav.scrolled .nav__logo-text,
.nav--subpage .nav__logo-text {
    font-size: 1.1rem;
}

.nav.scrolled .nav__logo-stars,
.nav--subpage .nav__logo-stars {
    font-size: 0.45rem;
}

.nav__links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav__link {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    padding: 0.5rem 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__link.active {
    color: var(--gold);
}

.nav.scrolled .nav__link,
.nav--subpage .nav__link {
    font-size: 0.7rem;
}

.nav__cta {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--dark);
    background: var(--gold);
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--transition);
}

.nav.scrolled .nav__cta,
.nav--subpage .nav__cta {
    font-size: 0.7rem;
}

.nav__cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.nav__toggle span {
    width: 25px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s var(--transition);
}

/* ========================================
   HERO (homepage full-screen)
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.12); }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 23, 20, 0.3) 0%,
        rgba(26, 23, 20, 0.15) 40%,
        rgba(26, 23, 20, 0.5) 70%,
        rgba(26, 23, 20, 0.85) 100%
    );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 0 5rem 6rem;
    max-width: 800px;
}

.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero__tag-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero__tag-text {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero__title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero__subtitle {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 2.5rem;
}

.hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    right: 5rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.hero__scroll-text {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; height: 60px; }
    50% { opacity: 1; height: 80px; }
}

/* ========================================
   PAGE HERO (subpages - shorter)
   ======================================== */
.page-hero {
    position: relative;
    height: 55vh;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 23, 20, 0.1) 0%,
        rgba(26, 23, 20, 0.05) 40%,
        rgba(26, 23, 20, 0.25) 70%,
        rgba(26, 23, 20, 0.7) 100%
    );
    z-index: 1;
}

.page-hero__content {
    position: relative;
    z-index: 2;
    padding: 0 5rem 4rem;
    max-width: 800px;
}

.page-hero__breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.page-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
}

.page-hero__breadcrumb a:hover {
    color: var(--gold);
}

.page-hero__breadcrumb-sep {
    color: var(--gold);
}

.page-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.page-hero__tag-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.page-hero__tag-text {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.page-hero__title {
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.page-hero__subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    max-width: 600px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--transition);
}

.btn--gold {
    background: var(--gold);
    color: var(--dark);
}

.btn--gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(197, 166, 100, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn--outline-dark {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
}

.btn--outline-dark:hover {
    background: var(--dark);
    color: var(--white);
}

.btn--outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn--outline-gold:hover {
    background: var(--gold);
    color: var(--dark);
}

.btn__arrow {
    font-size: 1.2rem;
    transition: transform 0.4s var(--transition);
}

.btn:hover .btn__arrow {
    transform: translateX(4px);
}

/* ========================================
   SECTION INTRO STRIP
   ======================================== */
.intro-strip {
    background: var(--dark);
    padding: 2rem 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.intro-strip--4col {
    grid-template-columns: repeat(4, 1fr);
}

.intro-strip__item {
    text-align: center;
    padding: 0.8rem;
    position: relative;
}

.intro-strip__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(197, 166, 100, 0.3), transparent);
}

.intro-strip__number {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.intro-strip__label {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.4rem;
}

.intro-strip__desc {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
    background: var(--cream);
}

.about__visual {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.about__img-main {
    width: 100%;
    height: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.about__img-float {
    position: absolute;
    bottom: -3rem;
    right: -3rem;
    width: 55%;
    height: 300px;
    object-fit: cover;
    border: 8px solid var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
}

.about__tag {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.about__tag-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.about__tag-text {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
}

.about__title {
    margin-bottom: 2rem;
}

.about__text {
    margin-bottom: 1.5rem;
}

.about__signature {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.about__signature-icon {
    height: 40px;
    margin-bottom: 0.75rem;
    opacity: 0.6;
}

.about__signature-text {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    color: var(--text-light);
}

/* ========================================
   WELLNESS SECTION
   ======================================== */
.wellness {
    position: relative;
    background: var(--dark);
    overflow: hidden;
}

.wellness__hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.wellness__hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wellness__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(26, 23, 20, 0.85) 0%,
        rgba(26, 23, 20, 0.4) 50%,
        rgba(26, 23, 20, 0.1) 100%
    );
}

.wellness__hero-content {
    position: absolute;
    top: 50%;
    left: 5rem;
    transform: translateY(-50%);
    max-width: 550px;
    z-index: 2;
}

.wellness__tag {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.wellness__tag-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.wellness__tag-text {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
}

.wellness__title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.wellness__desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 2.5rem;
}

.wellness__features {
    padding: 6rem 5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.wellness__feature {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.wellness__feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition);
}

.wellness__feature:hover .wellness__feature-img {
    transform: scale(1.08);
}

.wellness__feature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(26, 23, 20, 0.9) 0%,
        rgba(26, 23, 20, 0.2) 50%,
        transparent 100%
    );
    transition: all 0.5s var(--transition);
}

.wellness__feature:hover .wellness__feature-overlay {
    background: linear-gradient(
        to top,
        rgba(26, 23, 20, 0.95) 0%,
        rgba(26, 23, 20, 0.3) 60%,
        rgba(26, 23, 20, 0.1) 100%
    );
}

.wellness__feature-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    transform: translateY(1rem);
    transition: transform 0.5s var(--transition);
}

.wellness__feature:hover .wellness__feature-content {
    transform: translateY(0);
}

.wellness__feature-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.wellness__feature-text {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    opacity: 0;
    transition: opacity 0.5s var(--transition);
}

.wellness__feature:hover .wellness__feature-text {
    opacity: 1;
}

.wellness__bottom-bar {
    padding: 3rem 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wellness__info {
    display: flex;
    gap: 3rem;
}

.wellness__info-item {
    text-align: center;
}

.wellness__info-label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 0.3rem;
}

.wellness__info-value {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--white);
}

/* ========================================
   ROOMS SECTION
   ======================================== */
.rooms {
    padding: 8rem 5rem;
    background: var(--cream-light);
}

.rooms__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.rooms__tag {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.rooms__tag-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.rooms__tag-text {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
}

.rooms__title {
    margin-bottom: 1.5rem;
}

.rooms__subtitle {
    color: var(--text-light);
}

.rooms__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Room card filters */
.rooms__filters {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.rooms__filter-btn {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.7rem 1.8rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: transparent;
    color: var(--text-medium);
    cursor: pointer;
    transition: all 0.4s var(--transition);
}

.rooms__filter-btn:hover,
.rooms__filter-btn.active {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.room-card {
    background: var(--white);
    overflow: hidden;
    transition: all 0.5s var(--transition);
    cursor: pointer;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.room-card.hidden {
    display: none;
}

.room-card__img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.room-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition);
}

.room-card:hover .room-card__img {
    transform: scale(1.06);
}

.room-card__badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
}

.room-card__body {
    padding: 2rem;
}

.room-card__category {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 0.4rem;
}

.room-card__name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.room-card__desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.room-card__details {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.room-card__detail {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-medium);
}

.room-card__detail-icon {
    font-size: 1rem;
    color: var(--gold);
}

.room-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.room-card__amenities {
    display: flex;
    gap: 1rem;
}

.room-card__amenity {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}

.room-card__link {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.room-card__link:hover {
    color: var(--gold);
}

/* ========================================
   RESTAURANT SECTION
   ======================================== */
.restaurant {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
}

.restaurant__visual {
    position: relative;
    overflow: hidden;
}

.restaurant__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 600px;
}

.restaurant__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
    background: var(--cream);
}

.restaurant__tag {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.restaurant__tag-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.restaurant__tag-text {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
}

.restaurant__title {
    margin-bottom: 2rem;
}

.restaurant__text {
    margin-bottom: 1.5rem;
}

.restaurant__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.restaurant__highlight {
    padding: 1.5rem;
    background: var(--white);
}

.restaurant__highlight-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.4rem;
    color: var(--text-dark);
}

.restaurant__highlight-text {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.6;
}

.restaurant__food-img {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    width: 280px;
    height: 280px;
    object-fit: cover;
    border: 8px solid var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

/* ========================================
   EXPERIENCE GALLERY
   ======================================== */
.gallery {
    padding: 8rem 5rem;
    background: var(--white);
}

.gallery__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.gallery__tag {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.gallery__tag-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.gallery__tag-text {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery__item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1;
    transition: transform 0.8s var(--transition);
}

.gallery__item:nth-child(1) img {
    aspect-ratio: 1;
}

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 23, 20, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.5s var(--transition);
}

.gallery__item:hover .gallery__item-overlay {
    background: rgba(26, 23, 20, 0.3);
}

.gallery__item-label {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--white);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s var(--transition);
}

.gallery__item:hover .gallery__item-label {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   TESTIMONIAL / QUOTE
   ======================================== */
.quote {
    padding: 8rem 5rem;
    background: var(--dark);
    text-align: center;
}

.quote__icon {
    font-family: var(--font-serif);
    font-size: 5rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 2rem;
    opacity: 0.5;
}

.quote__text {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    line-height: 1.5;
    max-width: 900px;
    margin: 0 auto 2.5rem;
}

.quote__author {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.quote__stars {
    margin-bottom: 2rem;
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 0.3em;
}

/* ========================================
   CTA / BOOKING SECTION
   ======================================== */
.cta {
    position: relative;
    padding: 10rem 5rem;
    text-align: center;
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    inset: 0;
}

.cta__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 23, 20, 0.4);
}

.cta__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta__title {
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.cta__text {
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.cta__buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--dark);
    padding: 5rem 5rem 2rem;
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand {
    max-width: 350px;
}

.footer__logo {
    height: 50px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.footer__brand-text {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    transition: all 0.4s var(--transition);
}

.footer__social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer__col-title {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__link {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s var(--transition);
}

.footer__link:hover {
    color: var(--gold);
}

.footer__contact-item {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.footer__contact-icon {
    color: var(--gold);
    font-size: 0.8rem;
    margin-top: 0.15rem;
}

.footer__contact-text {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

.footer__bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copy {
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.25);
}

.footer__bottom-links {
    display: flex;
    gap: 2rem;
}

.footer__bottom-link {
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.25);
}

.footer__bottom-link:hover {
    color: var(--gold);
}

/* ========================================
   ANIMATIONS (Scroll-triggered via JS)
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========================================
   MOBILE NAV OVERLAY
   ======================================== */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--transition);
}

.mobile-nav.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav__link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    color: var(--white);
    transition: color 0.3s var(--transition);
}

.mobile-nav__link:hover {
    color: var(--gold);
}

.mobile-nav__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ========================================
   LANG SWITCHER
   ======================================== */
.lang-switch {
    display: flex;
    gap: 0.15rem;
    align-items: center;
}

.lang-switch__btn {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.2rem 0.3rem;
    transition: color 0.3s var(--transition);
}

.lang-switch__btn:hover {
    color: var(--white);
}

/* Aktivní jazyk se neukazuje (host už je na něm) */
.lang-switch__btn.active {
    display: none;
}
.lang-switch__btn.active + .lang-switch__divider {
    display: none;
}

.lang-switch__divider {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
}

/* ========================================
   SUBPAGE: CONTENT SECTIONS
   ======================================== */
.content-section {
    padding: 6rem 5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.content-section--cream {
    background: var(--cream-light);
}

.content-section--dark {
    background: var(--dark);
}

.content-section--full {
    max-width: none;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.section-tag__line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.section-tag__text {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ========================================
   SUBPAGE: WELLNESS DETAIL SECTIONS
   ======================================== */
.wellness-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 70vh;
}

.wellness-detail--reverse {
    direction: rtl;
}

.wellness-detail--reverse > * {
    direction: ltr;
}

.wellness-detail__visual {
    position: relative;
    overflow: hidden;
}

.wellness-detail__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.wellness-detail__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
}

.wellness-detail__content--dark {
    background: var(--dark);
    color: var(--white);
}

.wellness-detail__content--cream {
    background: var(--cream);
}

.wellness-detail__number {
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 300;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.wellness-detail__title {
    margin-bottom: 1.5rem;
}

.wellness-detail__text {
    margin-bottom: 1.5rem;
}

.wellness-detail__features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 2rem;
}

.wellness-detail__features-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 300;
}

.wellness-detail__features-item::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

/* ========================================
   SUBPAGE: PRICE TABLE
   ======================================== */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.price-table th {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    text-align: left;
    padding: 1rem 1.5rem;
    border-bottom: 2px solid var(--gold);
}

.price-table td {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-medium);
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.price-table tr:hover td {
    background: rgba(197, 166, 100, 0.05);
}

.price-table__name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-dark);
}

.price-table__price {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--gold-dark);
}

/* ========================================
   SUBPAGE: RESTAURANT DAY JOURNEY
   ======================================== */
.day-journey {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.day-journey__item {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    position: relative;
    transition: all 0.5s var(--transition);
}

.day-journey__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.day-journey__time {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.day-journey__label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.day-journey__title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.day-journey__text {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   SUBPAGE: CONTACT FORM
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-medium);
}

.form-group input,
.form-group textarea,
.form-group select {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--white);
    color: var(--text-dark);
    transition: border-color 0.3s var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Contact info cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-info__card {
    padding: 2rem;
    background: var(--cream-light);
    border-left: 3px solid var(--gold);
}

.contact-info__card-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.contact-info__card-text {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-medium);
    line-height: 1.8;
}

.contact-info__card-text a {
    color: var(--gold-dark);
}

.contact-info__card-text a:hover {
    color: var(--gold);
}

/* Contact map */
.contact-map {
    width: 100%;
    height: 450px;
    border: none;
    filter: grayscale(50%) contrast(1.1);
    transition: filter 0.5s var(--transition);
}

.contact-map:hover {
    filter: grayscale(0%) contrast(1);
}

/* Company details */
.company-details {
    padding: 4rem 5rem;
    background: var(--dark);
    display: flex;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.company-details__item {
    text-align: center;
}

.company-details__label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 0.4rem;
}

.company-details__value {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--white);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1100px) {
    .about {
        grid-template-columns: 1fr;
        padding: 5rem 3rem;
        gap: 3rem;
    }

    .about__content {
        padding-left: 0;
    }

    .about__img-float {
        display: none;
    }

    .restaurant {
        grid-template-columns: 1fr;
    }

    .restaurant__food-img {
        display: none;
    }

    .wellness__features {
        grid-template-columns: 1fr 1fr;
        padding: 4rem 3rem;
    }

    .rooms__grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
    }

    .wellness-detail {
        grid-template-columns: 1fr;
    }

    .wellness-detail--reverse {
        direction: ltr;
    }

    .day-journey {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .content-section {
        padding: 4rem 3rem;
    }

    .intro-strip--4col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .nav {
        padding: 1rem 1.5rem;
    }

    .hero__content {
        padding: 0 2rem 4rem;
    }

    .hero__scroll {
        display: none;
    }

    .intro-strip {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
        gap: 2rem;
    }

    .intro-strip--4col {
        grid-template-columns: 1fr;
    }

    .intro-strip__item::after {
        display: none;
    }

    .about {
        padding: 4rem 2rem;
    }

    .wellness__hero-content {
        left: 2rem;
        right: 2rem;
    }

    .wellness__features {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
    }

    .wellness__bottom-bar {
        flex-direction: column;
        gap: 2rem;
        padding: 3rem 2rem;
    }

    .wellness__info {
        flex-wrap: wrap;
        justify-content: center;
    }

    .rooms {
        padding: 4rem 2rem;
    }

    .rooms__grid {
        grid-template-columns: 1fr;
    }

    .restaurant__content {
        padding: 3rem 2rem;
    }

    .restaurant__highlights {
        grid-template-columns: 1fr;
    }

    .gallery {
        padding: 4rem 2rem;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
    }

    .gallery__item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .quote {
        padding: 5rem 2rem;
    }

    .cta {
        padding: 6rem 2rem;
    }

    .footer {
        padding: 3rem 2rem 2rem;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Subpage responsive */
    .page-hero {
        height: 45vh;
        min-height: 320px;
    }

    .page-hero__content {
        padding: 0 2rem 3rem;
    }

    .content-section {
        padding: 3rem 2rem;
    }

    .wellness-detail__content {
        padding: 3rem 2rem;
    }

    .wellness-detail__img {
        min-height: 300px;
    }

    .day-journey {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .company-details {
        padding: 3rem 2rem;
        gap: 2rem;
    }
}