/* ===================================================
   HOTEL SACHER — Style Sheet
   =================================================== */

/* Custom Properties */
:root {
    --red:         #C4A35A;
    --red-dark:    #a8894a;
    --gold:        #b4935d;
    --gold-light:  #c3a97d;
    --gold-hero:   #1F4E63;
    --gold-hero-dark: #163a4a;
    --dark:        #2e2e2e;
    --dark-2:      #343433;
    --text:        #525252;
    --light:       #f7f7f7;
    --white:       #ffffff;
    --gray:        #b3b4b4;
    --border:      #e0e0e0;

    --serif:       'Playfair Display', Georgia, serif;
    --sans:        'Montserrat', Arial, sans-serif;

    --max-w:       1496px;
    --narrow-w:    820px;

    --ease:        cubic-bezier(0.165, 0.84, 0.44, 1);
    --t:           0.3s;
    --t-slow:      0.7s;
}

/* ===================================================
   RESET & BASE
   =================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
    font-family: var(--sans);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t) var(--ease); }
ul { list-style: none; }
address { font-style: normal; }

/* ===================================================
   UTILITIES
   =================================================== */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 28px;
}

.container-narrow { max-width: var(--narrow-w); }

.text-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===================================================
   TYPOGRAPHY
   =================================================== */
h2 {
    font-family: var(--serif);
    font-size: clamp(30px, 3.5vw, 50px);
    font-weight: 400;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 20px;
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
}

h3 {
    font-family: var(--serif);
    font-size: clamp(20px, 2vw, 28px);
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
    font-weight: 400;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 10px;
}

p {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text);
    margin-bottom: 18px;
}
p:last-child { margin-bottom: 0; }

/* ===================================================
   SECTION LABEL
   =================================================== */
.section-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.section-label-light { color: var(--gold-light); }

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
    display: inline-block;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 14px 30px;
    border: 2px solid;
    cursor: pointer;
    transition: all var(--t) var(--ease);
    text-align: center;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}
.btn-primary:hover {
    background: transparent;
    color: var(--red);
}
.btn-blue {
    background: #1F4E63 !important;
    border-color: #1F4E63 !important;
    color: var(--white) !important;
}
.btn-blue:hover {
    background: #163a4a !important;
    border-color: #163a4a !important;
    color: var(--white) !important;
}

.btn-gold {
    background: #C4A35A;
    border-color: #C4A35A;
    color: var(--white);
}
.btn-gold:hover {
    background: transparent;
    color: #C4A35A;
}

.btn-white {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}
.btn-white:hover {
    background: transparent;
    color: var(--white);
}

.btn-white-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-white-outline:hover {
    background: var(--white);
    color: var(--dark);
}

/* Arrow Link */
.link-arrow {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap var(--t) var(--ease);
}
.link-arrow:hover { gap: 16px; }
.link-arrow span { transition: transform var(--t) var(--ease); }
.link-arrow:hover span { transform: translateX(4px); }

/* ===================================================
   ALERT BANNER
   =================================================== */
.alert-banner {
    display: none;
    background: var(--red);
    color: var(--white);
    height: 55px;
    overflow: hidden;
    position: relative;
    z-index: 200;
}

.alert-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 100%;
    padding: 0 60px 0 28px;
    max-width: var(--max-w);
    margin: 0 auto;
    position: relative;
}

.alert-banner p {
    font-size: 13px;
    letter-spacing: 0.3px;
    color: var(--white);
    text-align: center;
    margin: 0;
}

.alert-icon {
    color: var(--gold-light);
    font-size: 13px;
    flex-shrink: 0;
}

.alert-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    padding: 4px 8px;
    transition: color var(--t);
}
.alert-close:hover { color: var(--white); }

/* ===================================================
   HEADER & NAVIGATION
   =================================================== */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

/* ===================================================
   NAVIGATION — Dark Single Bar
   =================================================== */
.nav-main {
    background: transparent;
    padding: 0 32px;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav-main.scrolled {
    background: var(--white);
    box-shadow: 0 2px 24px rgba(0,0,0,0.1);
}

/* Scrolled state — darken all text */
.nav-main.scrolled .nav-center > li > a {
    color: rgba(0,0,0,0.65);
}
.nav-main.scrolled .nav-center > li > a:hover { color: var(--dark); }
.nav-main.scrolled .nav-lang { color: rgba(0,0,0,0.45); }
.nav-main.scrolled .nav-lang.active { color: var(--dark); }
.nav-main.scrolled .nav-lang-sep { color: rgba(0,0,0,0.2); }
.nav-main.scrolled .nav-social-links a { color: rgba(0,0,0,0.4); }
.nav-main.scrolled .nav-social-links a:hover { color: var(--dark); }
.nav-main.scrolled .nav-book-btn {
    border-color: #C4A35A;
    background: #C4A35A;
    color: var(--white) !important;
}
.nav-main.scrolled .nav-book-btn:hover {
    background: #a8894a;
    border-color: #a8894a;
}

.nav-main-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    max-width: var(--max-w);
    margin: 0 auto;
    height: 72px;
    gap: 20px;
}

/* Left group: logo + social icons */
.nav-left-group {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

/* Logo image instances */
.nav-logo-img {
    width: 15px;
    height: 15px;
    display: block;
    object-fit: contain;
    object-fit: contain;
    display: block;
    opacity: 0.55;
    transition: filter 0.4s ease, opacity 0.4s ease;
}
.nav-main.scrolled .nav-logo-img {
    filter: invert(1);
    opacity: 0.6;
}

.hero-logo-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.footer-logo-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block;
    margin: 0 auto 12px;
}

/* Emblem (left) */
.nav-emblem {
    display: flex;
    align-items: center;
    align-self: center;
    flex-shrink: 0;
    color: var(--white);
    opacity: 0.92;
    line-height: 0;
    transition: opacity var(--t), color 0.4s ease;
}
.nav-emblem:hover { opacity: 1; }
.nav-main.scrolled .nav-emblem { color: var(--dark); }
.nav-main.scrolled .hamburger span { background: var(--dark); }

/* Center links — absolutely centered on the page */
.nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    gap: 0;
}
.nav-center li { position: relative; }
.nav-center > li > a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    color: var(--white);
    padding: 10px 16px;
    display: block;
    transition: color 0.4s ease;
    white-space: nowrap;
}
.nav-center > li > a:hover { color: var(--white); }
.nav-center > li > a.nav-active {
    border-bottom: 1.5px solid rgba(196,163,90,0.6);
    padding-bottom: 8px;
}
.mobile-nav li a.nav-active {
    color: #C4A35A;
    border-left: 2px solid rgba(196,163,90,0.6);
    padding-left: 26px;
}

/* Dropdown */
.has-dropdown { position: relative; }

.dropdown {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    border-top: 2px solid #C4A35A;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--t) var(--ease);
    z-index: 999;
}
.dropdown-right { left: auto; right: 0; }

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    padding: 13px 22px;
    border-bottom: 1px solid rgba(196,163,90,0.15);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.55);
    transition: all var(--t);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover {
    color: #C4A35A;
    padding-left: 28px;
    background: #faf9f7;
}

/* Dropdown caret */
.dropdown-caret {
    font-size: 10px;
    opacity: 0.6;
    margin-left: 3px;
    display: inline-block;
    transition: transform 0.2s;
}
.has-dropdown:hover .dropdown-caret { transform: rotate(180deg); }

/* Mobile nav sub-menu */
.mobile-nav-has-sub { border-bottom: 1px solid #f0f0f0; }
.mobile-nav-sub-row {
    display: flex;
    align-items: center;
}
.mobile-nav-sub-label {
    flex: 1;
    display: block;
    padding: 16px 28px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--dark);
    cursor: default;
}
.mobile-nav-sub-toggle {
    padding: 16px 22px;
    background: none;
    border: none;
    font-size: 20px;
    line-height: 1;
    color: var(--dark);
    cursor: pointer;
    transition: transform 0.25s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}
.mobile-nav-has-sub.open .mobile-nav-sub-toggle { transform: rotate(45deg); }
.mobile-nav-sub {
    display: none;
    background: #f7f6f4;
    padding: 4px 0;
}
.mobile-nav-has-sub.open .mobile-nav-sub { display: block; }
.mobile-nav-sub li a {
    padding: 12px 28px 12px 44px;
    font-size: 11px;
    letter-spacing: 1.5px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    color: rgba(0,0,0,0.55);
}
.mobile-nav-sub li:last-child a { border-bottom: none; }
.mobile-nav-sub li a:hover { color: var(--dark); padding-left: 52px; }

/* Right group */
.nav-right-group {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.nav-social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-social-links a {
    color: rgba(255,255,255,0.45);
    display: flex;
    align-items: center;
    transition: color var(--t);
}
.nav-social-links a:hover { color: var(--gold); }

.nav-home-link {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    margin-left: 4px;
    padding-left: 12px;
    border-left: 1px solid rgba(255,255,255,0.35);
    transition: color var(--t);
}
.nav-home-link:hover { color: var(--gold); }
.nav-main.scrolled .nav-home-link { color: rgba(0,0,0,0.55); border-left-color: rgba(0,0,0,0.15); }
.nav-main.scrolled .nav-home-link:hover { color: var(--dark); }

.nav-langs {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-lang {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    color: rgba(255,255,255,0.5);
    transition: color var(--t);
}
.nav-lang.active {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 4px;
}
.nav-lang:hover { color: var(--white); }
.nav-lang-sep { color: rgba(255,255,255,0.2); font-size: 11px; }

.nav-book-btn {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    background: transparent;
    color: var(--white) !important;
    padding: 14px 18px;
    border: 1.5px solid rgba(255,255,255,0.7);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    transition: all var(--t) var(--ease);
}
.nav-book-btn:hover {
    background: var(--white);
    color: var(--dark) !important;
    border-color: var(--white);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
}
.hamburger span {
    display: block;
    height: 1px;
    background: var(--white);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                opacity   0.3s ease,
                width     0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
/* Linii asimetrice: lungă / scurtă / lungă */
.hamburger span:nth-child(1) { width: 24px; }
.hamburger span:nth-child(2) { width: 14px; }
.hamburger span:nth-child(3) { width: 24px; }

/* La deschidere → X elegant */
.hamburger.is-open span:nth-child(1) { width: 22px; transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { width: 22px; transform: translateY(-7px) rotate(-45deg); }

/* Hero Quick-Nav Buttons */
.hero-emblem { margin-bottom: -42px; }

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 300;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #1a1a1a;
    -webkit-font-smoothing: antialiased;
    margin-top: 14px;
    margin-bottom: 0;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 48px;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 52px;
    background: var(--white);
    color: var(--dark);
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    border: 1px solid var(--white);
    transition: background 0.3s ease, color 0.3s ease;
}
.hero-cta-primary:hover {
    background: transparent;
    color: var(--white);
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 52px;
    background: transparent;
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    border: 1px solid rgba(255,255,255,0.7);
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.hero-cta-secondary:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

/* Mobile Menu */
/* ── Fullscreen Split Mobile Menu ── */
.mobile-menu {
    position: fixed;
    inset: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    display: flex;
    flex-direction: row;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.45s cubic-bezier(0.4,0,0.2,1), visibility 0.45s;
    z-index: 10001;
    overflow: hidden;
}
.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-left {
    width: 100%;
    background: #faf9f7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 70px 40px 44px;
    position: relative;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.mobile-menu-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 10px;
    letter-spacing: 6px;
    color: #C4A35A;
    text-transform: uppercase;
    margin-bottom: 36px;
    -webkit-font-smoothing: antialiased;
}

.mobile-menu-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    font-size: 26px;
    color: rgba(0,0,0,0.4);
    cursor: pointer;
    line-height: 1;
    padding: 8px;
    transition: color 0.2s;
}
.mobile-menu-close:hover { color: #C4A35A; }

.mobile-nav { padding: 0; margin: 0; flex: 0; width: 100%; list-style: none; text-align: center; }
.mobile-nav > li {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.mobile-menu.open .mobile-nav > li { opacity: 1; transform: translateY(0); }
.mobile-menu.open .mobile-nav > li:nth-child(1) { transition-delay: 0.07s; }
.mobile-menu.open .mobile-nav > li:nth-child(2) { transition-delay: 0.13s; }
.mobile-menu.open .mobile-nav > li:nth-child(3) { transition-delay: 0.19s; }
.mobile-menu.open .mobile-nav > li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-nav > li:nth-child(5) { transition-delay: 0.31s; }
.mobile-menu.open .mobile-nav > li:nth-child(6) { transition-delay: 0.37s; }
.mobile-menu.open .mobile-nav > li:nth-child(7) { transition-delay: 0.43s; }

.mobile-nav li a {
    display: block;
    padding: 9px 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 23px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #1a1a1a;
    border-bottom: none;
    text-transform: uppercase;
    transition: color 0.2s;
    -webkit-font-smoothing: antialiased;
}
.mobile-nav li a:hover,
.mobile-nav li a.nav-active { color: #C4A35A; padding-left: 0; }

.mobile-menu-footer {
    margin-top: 32px;
    text-align: center;
    width: 100%;
    border-top: none;
    padding: 0;
    padding-bottom: env(safe-area-inset-bottom);
}

.mobile-book-link {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    background: #C4A35A;
    padding: 11px 36px;
    text-decoration: none;
    transition: background 0.2s;
    -webkit-font-smoothing: antialiased;
}
.mobile-book-link:hover { background: #b8924e; color: #fff; }

.mobile-lang {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 14px;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.mobile-lang a { color: #aaa; text-decoration: none; transition: color 0.2s; }
.mobile-lang a.active { color: #C4A35A; }
.mobile-lang span { color: #ddd; }

/* Submenu */
.mobile-nav-has-sub { border-bottom: none; }
.mobile-nav-sub-row { display: flex; align-items: center; justify-content: center; cursor: pointer; }
.mobile-nav-sub-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 23px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #1a1a1a;
    text-transform: uppercase;
    padding: 9px 0;
    cursor: pointer;
    transition: color 0.2s;
    -webkit-font-smoothing: antialiased;
}
.mobile-nav-sub-toggle {
    padding: 9px 8px;
    background: none;
    border: none;
    font-size: 16px;
    color: #C4A35A;
    cursor: pointer;
    transition: transform 0.25s ease;
    font-weight: 300;
}
.mobile-nav-has-sub.open .mobile-nav-sub-toggle { transform: rotate(45deg); }
.mobile-nav-sub { display: none; padding: 2px 0; }
.mobile-nav-has-sub.open .mobile-nav-sub { display: block; }
.mobile-nav-sub li a {
    padding: 5px 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1.5px;
    color: rgba(0,0,0,0.4);
    text-transform: uppercase;
    border-bottom: none;
}
.mobile-nav-sub li a:hover { color: #C4A35A; padding-left: 0; }

.mobile-overlay { display: none; }

/* ===================================================
   HERO SECTION
   =================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.45) 0%,
        rgba(0,0,0,0.55) 50%,
        rgba(0,0,0,0.75) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    margin-top: -50px;
    padding-bottom: 0;
}

.hero-eyebrow {
    display: block;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 22px;
    font-weight: 400;
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(28px, 3.2vw, 46px);
    font-weight: 400;
    letter-spacing: 8px;
    color: var(--white);
    margin-top: -75px;
    line-height: 1;
    margin-bottom: 0;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 300;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #1a1a1a;
    -webkit-font-smoothing: antialiased;
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    z-index: 2;
    pointer-events: none;
}
.hero-scroll span {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.5);
    animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
    0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
    30%  { opacity: 1; }
    50%  { transform: scaleY(1); transform-origin: top; }
    51%  { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* Booking Widget */
.booking-widget {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background: rgba(36, 36, 35, 0.96);
    backdrop-filter: blur(12px);
}

.booking-form {
    display: flex;
    align-items: center;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 28px;
    height: 80px;
}

.booking-field {
    flex: 1;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.booking-field label {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 5px;
    display: block;
    font-weight: 500;
    white-space: nowrap;
}

.booking-field select,
.booking-field input {
    background: none;
    border: none;
    outline: none;
    color: var(--white);
    font-family: var(--sans);
    font-size: 13px;
    width: 100%;
    cursor: pointer;
    appearance: none;
}
.booking-field select option { background: var(--dark); color: var(--white); }
.booking-field input::placeholder { color: rgba(255,255,255,0.45); }

.booking-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

.booking-guests { flex: 0.7; }

.guest-counter {
    display: flex;
    align-items: center;
    gap: 14px;
}

.counter-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--white);
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    transition: all var(--t) var(--ease);
    flex-shrink: 0;
}
.counter-btn:hover { background: var(--red); border-color: var(--red); }

.counter-val {
    color: var(--white);
    font-size: 15px;
    min-width: 22px;
    text-align: center;
    font-weight: 500;
}

.booking-submit {
    background: var(--red);
    color: var(--white);
    border: 2px solid var(--red);
    padding: 0 40px;
    height: 100%;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--t) var(--ease);
    flex-shrink: 0;
    margin-left: 20px;
    white-space: nowrap;
}
.booking-submit:hover {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

/* ===================================================
   INTRO SECTION
   =================================================== */
.section-intro {
    padding: 80px 28px;
    margin-top: 0;
    background: var(--white);
}
.section-intro .container { margin: 0 auto; }
.section-intro h2 { margin-bottom: 20px; }
.section-intro p { max-width: 580px; margin-bottom: 30px; text-align: justify; }

/* ===================================================
   PROPERTIES SECTION
   =================================================== */
.section-properties { padding: 0 0 4px; }

.properties-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    margin-left: 12vw;
    margin-right: 12vw;
}

.property-card { position: relative; overflow: hidden; }

.property-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.08) 60%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.property-content { color: var(--white); }

.property-label {
    display: block;
    font-size: 10px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 6px;
}
.property-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 38px;
    letter-spacing: 0.5px;
    color: var(--white);
    -webkit-font-smoothing: antialiased;
    margin-bottom: 8px;
}
.property-content .btn {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    padding: 8px 18px;
    font-size: 10px;
}
.property-content p { display: none; }
.btn-mobile-text { display: inline; }
.btn-desktop-text { display: none; }
.dining-title-desktop { display: none; }

/* ===================================================
   SECTION SPLIT (Rooms & Torte)
   =================================================== */
.torte-btn-mobile-wrap { display: none; }
.torte-p2-mobile { display: none; }
.spa-btn-mobile-wrap { display: none; }
.spa-p-mobile { display: none; }
.feature-text-mobile { display: none; }
.section-rooms { padding: 0; }
.section-rooms .split-content h2 { margin-top: 0; }
.section-rooms .section-split {
    height: auto !important;
    min-height: 0 !important;
    overflow: hidden;
    align-items: stretch;
}
.section-rooms .split-image {
    overflow: hidden;
    margin-left: 12vw;
}
.section-rooms .split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 80%;
}
.section-rooms .split-content {
    padding: 44px 70px 40px;
    margin-right: 12vw;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.section-torte  { padding: 40px 0; }

.section-torte .section-split,
.section-spa .section-split {
    max-width: 860px;
    margin: 0 auto;
    min-height: 0;
    align-items: center;
}

.section-torte .split-image,
.section-spa .split-image {
    border-radius: 4px;
    overflow: hidden;
    max-height: 340px;
    align-self: center;
}

.section-torte .split-content .btn,
.section-spa .split-content .btn {
    padding: 8px 18px;
    font-size: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 4px;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    width: auto;
    align-self: flex-start;
}

.section-torte .split-content,
.section-spa .split-content {
    margin-left: 0;
    padding: 40px 50px 40px 20px;
    justify-content: center;
    align-self: center;
}

.section-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
}


.section-split-reverse .split-image { order: 2; }
.section-split-reverse .split-content { order: 1; }

.split-image { overflow: hidden; }
.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 70px;
    background: var(--light);
}
.split-content-alt { background: var(--white); }

.aprecia-label { margin-bottom: 0; }
.feature-list { margin: 0 0 36px; }
.feature-list li {
    font-size: 14px;
    color: var(--text);
    padding: 6px 0;
    position: relative;
}
.feature-list li::before { display: none; }

/* ===================================================
   DINING SECTION
   =================================================== */
.section-dining { padding: 120px 0 80px; background: var(--white); }
.section-dining .container { padding: 0; max-width: none; }

.dining-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 4px;
    margin-left: 12vw;
    margin-right: 12vw;
}

.dining-card-large {
    grid-row: 1 / 3;
}

.dining-card { position: relative; overflow: hidden; }

.dining-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 280px;
    max-height: 280px;
}
.dining-card-large .dining-image { min-height: 560px; max-height: 564px; overflow: hidden; }

.dining-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.dining-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.08) 65%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 30px;
    color: var(--white);
}

.dining-label {
    font-size: 10px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 6px;
    display: block;
}
.dining-overlay h3 {
    color: var(--white);
    margin-bottom: 6px;
    font-size: 22px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
}
.dining-overlay .btn {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    letter-spacing: 3px !important;
    -webkit-font-smoothing: antialiased;
}
.dining-overlay p { color: var(--white); font-size: 13px; margin-bottom: 18px; }

/* ===================================================
   SPA SECTION
   =================================================== */
.section-spa { padding: 0; }

.spa-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}

.spa-split-image {
    position: relative;
    overflow: hidden;
    margin-left: 5vw;
}

.spa-split-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.spa-split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 72px;
    margin-right: 5vw;
    background: var(--light);
}

.spa-split-content h2 {
    margin-bottom: 20px;
}

.spa-split-content p {
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 36px;
    font-weight: 300;
    text-align: justify;
}

.split-content p,
.split-content-alt p {
    text-align: justify;
}

/* ===================================================
   QUOTE SECTION
   =================================================== */
.section-quote {
    background: var(--white);
    padding: 100px 28px;
}

blockquote { position: relative; }

.quote-mark {
    font-family: var(--serif);
    font-size: 140px;
    color: var(--gold);
    opacity: 0.25;
    line-height: 0.6;
    display: block;
    margin-bottom: 16px;
}

blockquote p {
    font-family: var(--serif);
    font-size: clamp(16px, 1.5vw, 20px);
    font-style: italic;
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 28px;
    font-weight: 400;
}

blockquote cite {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-style: normal;
}

/* ===================================================
   EVENTS SECTION
   =================================================== */
.section-events { padding: 80px 0; background: var(--white); }

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.event-card { overflow: hidden; }

.event-image {
    overflow: hidden;
    aspect-ratio: 4/3;
}
.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow) var(--ease);
}
.event-card:hover .event-image img { transform: scale(1.06); }

.event-content { padding: 22px 0 0; }

.event-label {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}
.event-content h3 { font-size: 22px; margin-bottom: 8px; }
.event-content p { font-size: 14px; margin-bottom: 16px; }

/* ===================================================
   NEWS / BLOG SECTION
   =================================================== */
.section-news { padding: 80px 0; background: var(--light); }

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.news-card {
    background: var(--white);
    overflow: hidden;
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.news-image {
    overflow: hidden;
    aspect-ratio: 16/10;
}
.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow) var(--ease);
}
.news-card:hover .news-image img { transform: scale(1.06); }

.news-content { padding: 24px; }

.news-category {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}
.news-content h3 { font-size: 20px; margin-bottom: 10px; line-height: 1.35; }
.news-content p { font-size: 14px; margin-bottom: 16px; }

/* ===================================================
   NEWSLETTER SECTION
   =================================================== */
.section-newsletter {
    background: var(--dark-2);
    padding: 80px 28px;
}
.section-newsletter .section-label { color: var(--gold); }
.section-newsletter h2 { color: var(--white); }
.section-newsletter p { color: rgba(255,255,255,0.65); margin-bottom: 36px; }

.newsletter-form {
    display: flex;
    max-width: 520px;
    width: 100%;
}
.newsletter-form input {
    flex: 1;
    padding: 16px 22px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.06);
    color: var(--white);
    font-family: var(--sans);
    font-size: 14px;
    outline: none;
    transition: border-color var(--t);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form .btn-primary {
    border-left: none;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ===================================================
   FOOTER
   =================================================== */
.site-footer { background: #faf6f0; }

/* Booking modal — global styles */
.book-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9100;
    align-items: center;
    justify-content: center;
}
.book-modal.open { display: flex; }

.book-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    cursor: pointer;
}

.book-modal-panel {
    position: relative;
    z-index: 1;
    background: #fff;
    border: 1.5px solid #C4A35A;
    border-top: 4px solid #C4A35A;
    width: calc(100vw - 48px);
    max-width: 520px;
    padding: 36px 32px 30px;
    box-shadow: 0 28px 80px rgba(0,0,0,0.35);
}

.book-modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: rgba(0,0,0,0.35);
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.2s;
}
.book-modal-close:hover { color: #C4A35A; }

.book-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 5px;
}

.book-modal-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: rgba(0,0,0,0.42);
    letter-spacing: 0.06em;
    margin: 0 0 20px;
}

.book-modal-discount {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: rgba(196,163,90,0.08);
    border: 1px solid rgba(196,163,90,0.3);
    border-left: 3px solid #C4A35A;
    padding: 10px 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #8a6f35;
    line-height: 1.55;
    margin-bottom: 22px;
}
.book-modal-discount svg { flex-shrink: 0; margin-top: 1px; color: #C4A35A; }
.book-modal-discount strong { font-weight: 700; }

.book-modal-direct {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 22px;
}

.book-modal-card {
    border: 1.5px solid rgba(196,163,90,0.28);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.book-modal-card:hover {
    border-color: #C4A35A;
    box-shadow: 0 2px 12px rgba(196,163,90,0.12);
}

.book-modal-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.8);
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

.book-modal-card-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: rgba(0,0,0,0.52);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.book-modal-card-btn {
    display: block;
    text-align: center;
    padding: 10px 12px;
    background: #C4A35A;
    color: #fff !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
    margin-top: auto;
}
.book-modal-card-btn:hover { background: #ae8e4e; }

.book-modal-sep {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.28);
}
.book-modal-sep::before,
.book-modal-sep::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(196,163,90,0.18);
}

.book-modal-booking-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border: 1.5px solid rgba(0,0,0,0.18);
    color: rgba(0,0,0,0.6) !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.book-modal-booking-btn:hover {
    border-color: #C4A35A;
    color: #C4A35A !important;
    background: rgba(196,163,90,0.04);
}

.book-modal-booking-note {
    margin: 7px 0 0;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #c0392b;
}

@media (max-width: 480px) {
    .book-modal-panel  { padding: 24px 14px 20px; }
    .book-modal-direct { gap: 8px; }
    .book-modal-card   { padding: 14px 12px; }
}

.footer-top { padding: 80px 0 60px; }
.footer-top .container,
.footer-bottom .container { max-width: 1000px; padding: 0 60px; }

.footer-logo {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo .logo-text { color: var(--dark); font-size: 34px; }
.footer-logo .logo-sub { margin-top: 6px; }

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 36px;
}

.footer-col h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #967444;
    margin-bottom: 22px;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
}

.footer-col ul li { margin-bottom: 10px; font-size: 15px; color: #555047; line-height: 1.7; font-family: 'Cormorant Garamond', Georgia, serif; }
.footer-col ul li a {
    font-size: 15px;
    color: #555047;
    transition: color var(--t);
    line-height: 1.7;
    font-family: 'Cormorant Garamond', Georgia, serif;
}
.footer-col ul li a:hover { color: #6b4f2a; }

.footer-contact address p {
    font-size: 15px;
    color: #555047;
    margin-bottom: 10px;
    line-height: 1.7;
    font-family: 'Cormorant Garamond', Georgia, serif;
}
.footer-contact address a { color: #555047; }
.footer-contact address a:hover { color: #6b4f2a; }

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 22px;
}
.footer-social a {
    color: #555047;
    display: flex;
    align-items: center;
    transition: color var(--t);
}
.footer-social a:hover { color: #6b4f2a; }

.footer-bottom {
    border-top: 1px solid rgba(150,116,68,0.3);
    padding: 22px 0;
}
.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    font-size: 11px;
    color: #555047;
    margin: 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-legal {
    display: flex;
    gap: 24px;
}
.footer-legal li a {
    font-size: 11px;
    color: #555047;
    transition: color var(--t);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.footer-legal li a:hover { color: var(--dark); }

/* ===================================================
   SCROLL ANIMATIONS
   =================================================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ===================================================
   RESPONSIVE — 1100px
   =================================================== */
@media (max-width: 1100px) {
    .dining-grid {
        grid-template-columns: 1fr 1fr;
    }
    .dining-card-large {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    .dining-card-large .dining-image { min-height: 420px; }

    .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===================================================
   RESPONSIVE — 1200px (Collapse nav links earlier)
   =================================================== */
@media (max-width: 1200px) {
    .nav-center > li > a { padding: 10px 10px; font-size: 11px; }
}

@media (max-width: 1020px) {
    /* Hide center nav — hamburger takes over */
    .nav-center { display: none; }
    .hamburger { display: flex; }
    /* Keep right group (lang + book now) visible */
    .nav-right-group { gap: 12px; }
    /* Always show home link in dark on mobile (nav is always white on sub-pages) */
    .nav-home-link {
        color: rgba(0,0,0,0.65) !important;
        border-left-color: rgba(0,0,0,0.2) !important;
    }
}

/* ===================================================
   RESPONSIVE — 980px (Tablet)
   =================================================== */
@media (max-width: 980px) {
    .properties-grid { grid-template-columns: 1fr; margin-left: 0; margin-right: 0; }
    .dining-grid { margin-left: 0; margin-right: 0; }

    /* Reset split margins on mobile */
    .section-rooms .split-image { margin-left: 0; }
    .section-rooms .split-content { margin-right: 0; }
    .section-torte .split-image { margin-right: 0; }
    .section-torte .split-content { margin-left: 0; }

    /* SPA split mobile */
    .spa-split { grid-template-columns: 1fr; }
    .spa-split-image { order: 2; min-height: 300px; margin-left: 40px; margin-right: 40px; }
    .spa-split-content { order: 1; padding: 52px 28px; margin-right: 0; text-align: center; }

    .section-split { grid-template-columns: 1fr; min-height: 0 !important; }
    .section-split-reverse .split-image { order: 0; }
    .section-split-reverse .split-content { order: 0; }
    .split-image { height: 400px; }
    .split-content { padding: 40px 28px; min-height: 0 !important; }
    .split-content h2 { margin-bottom: 16px; }
    .split-content p { margin-bottom: 16px; }

    .section-properties { padding-bottom: 0; }
    .section-rooms { margin-top: 0; padding-top: 0; background: var(--light); }
    .section-rooms .split-image { display: none; }
    .section-rooms .section-split { grid-template-columns: 1fr !important; min-height: unset !important; height: auto !important; overflow: visible !important; }
    .section-rooms .split-content { display: block !important; padding: 88px 28px !important; overflow: visible; }
    .section-rooms .split-content h2 { margin: 0 0 12px 0 !important; }
    .section-rooms .split-content p { margin: 0 0 12px 0 !important; }
    .section-rooms .split-content .btn { margin-top: 8px; }
    .feature-list { display: none; }
    .aprecia-label { display: none; }
    .feature-text-mobile { display: block; margin: 0 28px 36px; }

    .section-torte .split-image { margin-right: 0; border-radius: 0; }
    .section-torte .split-image img { object-position: center center; }
    .torte-btn-desktop { display: none !important; }
    .torte-p2-desktop { display: none !important; }
    .torte-p2-mobile {
        display: block;
        margin-bottom: 16px;
        font-family: 'Cormorant Garamond', Georgia, serif;
        font-size: 1.05rem;
        font-weight: 300;
        letter-spacing: 0.02em;
        line-height: 1.55;
        color: rgba(30,20,10,0.55);
    }
    .torte-btn-mobile-wrap { display: block; padding: 20px 28px; text-align: center; background: var(--white); }
    .torte-btn-mobile-wrap .btn {
        display: inline-block !important;
        width: auto !important;
        white-space: nowrap;
        padding: 8px 18px !important;
        font-size: 10px !important;
        font-family: 'Cormorant Garamond', serif !important;
        font-weight: 600 !important;
        letter-spacing: 4px !important;
        -webkit-font-smoothing: antialiased;
    }
    .section-torte .split-image,
    .section-spa .split-image { padding: 0 40px; }

    .feature-list li { padding-left: 0; border-bottom: none; }
    .feature-list li::before { display: none; }

    .footer-grid { grid-template-columns: repeat(2, 1fr); }

    .booking-form {
        flex-wrap: wrap;
        height: auto;
        padding: 20px 28px;
        gap: 16px 0;
    }
    .booking-field {
        flex: 1;
        min-width: calc(50% - 40px);
        padding: 0 12px;
    }
    .booking-divider { display: none; }
    .booking-submit {
        height: 50px;
        margin-left: 0;
        width: 100%;
        flex-basis: 100%;
    }
}

/* ===================================================
   RESPONSIVE — 740px (Mobile)
   =================================================== */
@media (max-width: 740px) {
    section { padding: 60px 0; }

    .nav-main-inner { height: 60px; }
    .nav-right-group { display: none; }

    /* Hero: reset desktop negative margins, stack buttons */
    .hero-overlay { background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.72) 100%); }
    .hero-content { margin-top: -40px; padding-top: 0; }
    .hero-emblem { margin-bottom: 0; }
    .hero-logo-img { width: 130px; height: 130px; }
    .hero-title { font-size: clamp(22px, 7vw, 36px); margin-top: -25px; margin-bottom: 0; }

    .hero-ctas { margin-top: 40px; flex-direction: column; align-items: center; gap: 12px; }
    .hero-cta-primary, .hero-cta-secondary { width: 200px; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-contact { grid-column: 1 / -1; }
    .footer-bottom .container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .newsletter-form { flex-direction: column; }
    .newsletter-form input { border-bottom: none; }
    .newsletter-form .btn-primary {
        border-left: 2px solid var(--red);
        border-top: none;
    }

    .spa-split-image { margin-left: 40px; margin-right: 40px; }
    .spa-split-content { margin-right: 0; }
    .spa-content { padding: 60px 32px; max-width: 100%; }
    .section-rooms .split-image { margin-left: 0; }
    .section-rooms .split-content { margin-right: 0; }
    .section-torte .split-content { margin-left: 0; }
    .section-dining { padding: 30px 0; }
    .section-properties { padding-bottom: 0; }
    .property-content p { display: none; }
    .section-rooms { margin-top: 0; padding-top: 0; background: var(--light); }
    .section-rooms .split-content .btn { display: block !important; width: 280px !important; margin: 16px auto 0 !important; }
    .feature-list { display: none; }
    .aprecia-label { display: none; }
    .feature-text-mobile { display: block; margin: 0 28px 36px; }
    .section-dining { padding: 60px 0 30px; }
    .section-torte { padding: 30px 0 0; }
    .section-torte .split-content { display: block !important; padding: 28px 28px !important; }
    .section-torte .split-content h2 { margin: 0 0 12px 0 !important; padding: 0 !important; }
    .section-torte .split-content p { margin: 0 0 12px 0 !important; padding: 0 !important; }
    .section-torte .split-content .btn { margin-top: 8px; }
    .section-spa { margin-top: 50px; }
    .section-spa .split-content { text-align: center; align-items: center; padding: 40px 28px 0 !important; margin-bottom: -30px; }
    .section-spa .split-content p { text-align: center !important; }
    .section-spa .split-content .btn { display: inline-block; margin: 0 auto; }
    .spa-p-desktop { display: none !important; }
    .spa-btn-desktop { display: none !important; }
    .spa-btn-mobile-wrap { display: block; padding: 20px 28px; text-align: center; background: var(--white); }
    .spa-p-mobile {
        display: block;
        margin-bottom: 16px;
        font-family: 'Cormorant Garamond', Georgia, serif;
        font-size: 1.05rem;
        font-weight: 300;
        letter-spacing: 0.02em;
        line-height: 1.55;
        color: rgba(30,20,10,0.55);
    }
    .spa-btn-mobile-wrap .btn {
        display: inline-block !important;
        width: auto !important;
        white-space: nowrap;
        padding: 8px 18px !important;
        font-size: 10px !important;
        font-family: 'Cormorant Garamond', serif !important;
        font-weight: 600 !important;
        letter-spacing: 4px !important;
        -webkit-font-smoothing: antialiased;
    }
    .section-quote { padding: 70px 28px; }
    .section-quote blockquote p { font-size: 16px; }
    .section-quote blockquote cite { font-size: 10px; }
    .section-quote .quote-mark { font-size: 80px; }
    .section-torte .split-image { margin-right: 0; border-radius: 0; }
    .section-torte .split-image img { object-position: center center; }
    .torte-btn-desktop { display: none !important; }
    .torte-p2-desktop { display: none !important; }
    .torte-p2-mobile {
        display: block;
        margin-bottom: 16px;
        font-family: 'Cormorant Garamond', Georgia, serif;
        font-size: 1.05rem;
        font-weight: 300;
        letter-spacing: 0.02em;
        line-height: 1.55;
        color: rgba(30,20,10,0.55);
    }
    .torte-btn-mobile-wrap { display: block; padding: 20px 28px; text-align: center; background: var(--white); }
    .torte-btn-mobile-wrap .btn {
        display: inline-block !important;
        width: auto !important;
        white-space: nowrap;
        padding: 8px 18px !important;
        font-size: 10px !important;
        font-family: 'Cormorant Garamond', serif !important;
        font-weight: 600 !important;
        letter-spacing: 4px !important;
        -webkit-font-smoothing: antialiased;
    }
    .spa-split-content .btn { display: block !important; width: 280px !important; margin: 0 auto !important; }
    .section-torte .split-image { padding: 0 40px; }
    .section-dining .section-header { padding: 0 24px; }
    .section-dining .section-header h2 { margin-bottom: 16px !important; padding: 0 !important; }
    .section-dining .section-header p { margin-top: 0 !important; padding: 0 !important; }
    .dining-grid { grid-template-columns: 1fr; margin-left: 0; margin-right: 0; }
    .section-dining .container { padding-left: 0; padding-right: 0; }
    .properties-grid { margin-left: 0; margin-right: 0; }
    .dining-card-large .dining-image { min-height: 280px; max-height: 280px; }
    .dining-image { min-height: 280px; max-height: 280px; }

    /* Centrare property cards */
    .property-overlay { display: block !important; padding: 0 !important; }
    .property-content { position: absolute !important; bottom: 24px !important; left: 0 !important; right: 0 !important; text-align: center !important; padding: 0 20px !important; }
    .property-content h3 { margin: 0 0 4px 0 !important; padding: 0 !important; color: #fff !important; font-size: 1.2rem !important; }
    .property-content p { display: none !important; }
    .property-content .btn { display: block !important; text-align: center !important; margin: 0 auto !important; width: auto !important; max-width: 220px !important; padding-left: 32px !important; padding-right: 32px !important; }

    /* Centrare globală texte și butoane pe mobile */
    .split-content,
    .split-content h2,
    .split-content-alt,
    .split-content-alt h2,
    .property-content,
    .property-content h3,
    .property-content p,
    .dining-overlay,
    .dining-overlay h3,
    .dining-overlay p,
    .spa-split-content { text-align: center; padding: 40px 20px; }
    .split-content p,
    .split-content-alt p,
    .spa-split-content p,
    .section-intro p { text-align: justify !important; text-align-last: center !important; }
    .section-intro { text-align: center; padding: 100px 24px; }
    .spa-split-image { min-height: 260px; }
    .spa-content,
    .spa-content h2,
    .spa-content p,
    .feature-list { text-align: center; }

    .split-content .btn,
    .split-content-alt .btn,
    .property-content .btn { display: block; text-align: center; margin-left: auto; margin-right: auto; }

    .feature-list li { padding-left: 0; border-bottom: none; }
    .feature-list li::before { display: none; }

    /* Dining cards mobile: hide title, show category name in button */
    .dining-title-desktop { display: none; }
    .btn-desktop-text { display: none; }
    .btn-mobile-text { display: inline; }

    /* Dining card buttons — smaller, bolder */
    .dining-overlay .btn {
        font-family: 'Cormorant Garamond', serif !important;
        font-size: 12px !important;
        font-weight: 700 !important;
        letter-spacing: 3.5px !important;
        padding: 9px 20px !important;
        -webkit-text-stroke: 0.4px currentColor;
    }
}

/* ===================================================
   RESPONSIVE — 480px (Small Mobile)
   =================================================== */
@media (max-width: 980px) {
    .rooms-content {
        display: block !important;
        padding: 52px 28px 32px !important;
    }
    .rooms-content h2 {
        margin-bottom: 64px !important;
        margin-top: 0 !important;
        padding: 0 !important;
    }
    .rooms-content p {
        margin-top: 0 !important;
        margin-bottom: 64px !important;
        padding: 0 !important;
    }
    .rooms-content .btn {
        display: block !important;
        width: 280px !important;
        margin: 20px auto 0 !important;
    }
}

@media (max-width: 480px) {
    .alert-banner { height: auto; padding: 10px 0; }
    .alert-inner { flex-wrap: wrap; padding: 0 50px 0 20px; }
    .alert-banner p { font-size: 12px; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-col.footer-contact { grid-column: 1 / -1; }
    .split-content { padding: 48px 24px; }

    .section-rooms .split-content { display: block !important; padding: 88px 24px !important; }
    .section-rooms .split-content h2 { margin: 0 0 64px 0 !important; padding: 0 !important; }
    .section-rooms .split-content p { margin: 0 0 64px 0 !important; padding: 0 !important; }

    .section-torte .split-content { display: block !important; padding: 24px 24px !important; }
    .section-torte .split-content h2 { margin: 0 0 10px 0 !important; padding: 0 !important; }
    .section-torte .split-content p { margin: 0 !important; }

    .booking-field { min-width: 100%; }
    .booking-field:nth-child(n) { padding: 0; }

    .section-intro { padding: 100px 24px; }
}

/* =============================================================================
   CREATIVE ENTRANCE ANIMATIONS (all screen sizes, applied via JS)
   ============================================================================= */

/* Letter fly-in */
.m-char {
    display: inline-block;
    white-space: pre;
    opacity: 0;
    transform: translate(var(--cx, 0px), var(--cy, -40px));
    transition: opacity 0.5s ease, transform 0.55s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.m-char.in { opacity: 1; transform: translate(0, 0); }

/* Directional reveals */
.m-from-left  { opacity: 0; transform: translateX(-80px);       transition: opacity 0.6s ease, transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94); }
.m-from-right { opacity: 0; transform: translateX(80px);         transition: opacity 0.6s ease, transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94); }
.m-from-tl    { opacity: 0; transform: translate(-55px,-55px);   transition: opacity 0.6s ease, transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94); }
.m-from-tr    { opacity: 0; transform: translate( 55px,-55px);   transition: opacity 0.6s ease, transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94); }
.m-from-bl    { opacity: 0; transform: translate(-55px, 55px);   transition: opacity 0.6s ease, transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94); }
.m-from-br    { opacity: 0; transform: translate( 55px, 55px);   transition: opacity 0.6s ease, transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94); }

.m-from-left.in, .m-from-right.in,
.m-from-tl.in, .m-from-tr.in,
.m-from-bl.in, .m-from-br.in {
    opacity: 1; transform: translate(0, 0);
}

/* ── Typewriter cursor ── */
.tw-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: currentColor;
    margin-left: 2px;
    vertical-align: text-bottom;
    animation: twBlink 0.7s step-end infinite;
}
@keyframes twBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}
.tw-cursor.done { animation: none; opacity: 0; }
