:root {
    --elios-yellow:#f5c629;
    --elios-yellow-dark:#e8b916;
    --elios-dark:#202628;
    --elios-grey:#74797a;
    --elios-light:#f7f6f2;
    --elios-blue:#dfeef2;
    --elios-border:#ddd;
}

html { scroll-behavior:smooth; }

body {
    margin:0;
    font-family:'DM Sans',sans-serif;
    color:var(--elios-dark);
    background:#fff;
    font-weight:400;
}

body.menu-open { overflow:hidden; }

h1,h2,h3,h4,h5,.serif {
    font-family:'Playfair Display',serif;
}

a { text-decoration:none; }

.container-wide {
    width:100%;
    max-width:1500px;
    margin:0 auto;
    padding-left:30px;
    padding-right:30px;
}

/* HEADER */
.site-header {
    position:absolute;
    top:0;
    left:0;
    z-index:100;
    width:100%;
    color:#fff;
}

.header-top {
    height:42px;
    border-bottom:1px solid rgba(255,255,255,.20);
    font-size:11px;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.header-top .container-wide { height:100%; }

.header-top-left {
    color:rgba(255,255,255,.65);
}

.header-contacts {
    display:flex;
    height:100%;
    align-items:center;
}

.header-contacts a {
    display:flex;
    height:100%;
    padding:0 18px;
    align-items:center;
    color:rgba(255,255,255,.88);
    border-left:1px solid rgba(255,255,255,.16);
    transition:background .25s ease,color .25s ease;
}

.header-contacts a:hover {
    color:#fff;
    background:rgba(255,255,255,.08);
}

.header-contacts .header-request {
    color:var(--elios-dark);
    background:var(--elios-yellow);
    border-left:0;
    font-weight:600;
}

.header-contacts .header-request:hover {
    color:var(--elios-dark);
    background:#fff;
}

.header-main {
    height:105px;
}

.header-main .container-wide {
    height:100%;
}

.header-logo,
.menu-logo {
    color:#fff;
    font-family:'Playfair Display',serif;
    font-size:31px;
    line-height:.9;
}

.header-logo:hover,
.menu-logo:hover {
    color:#fff;
}

.header-logo small,
.menu-logo small {
    display:block;
    margin-top:9px;
    font-family:'DM Sans',sans-serif;
    font-size:8px;
    font-weight:500;
    letter-spacing:.25em;
    text-transform:uppercase;
}

.menu-toggle {
    display:flex;
    align-items:center;
    gap:16px;
    padding:10px 0;
    color:#fff;
    background:transparent;
    border:0;
}

.menu-toggle-label {
    font-size:11px;
    font-weight:500;
    letter-spacing:.16em;
    text-transform:uppercase;
}

.menu-toggle-icon {
    position:relative;
    width:44px;
    height:22px;
}

.menu-toggle-icon i {
    position:absolute;
    right:0;
    width:44px;
    height:1px;
    background:#fff;
    transition:width .25s ease;
}

.menu-toggle-icon i:first-child {
    top:6px;
}

.menu-toggle-icon i:last-child {
    top:15px;
    width:29px;
}

.menu-toggle:hover .menu-toggle-icon i:last-child {
    width:44px;
}

/* STICKY HEADER */
.sticky-header {
    position:fixed;
    top:0;
    left:0;
    z-index:900;
    width:100%;
    height:78px;
    background:rgba(255,255,255,.97);
    box-shadow:0 5px 30px rgba(0,0,0,.08);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    transform:translateY(-110%);
    opacity:0;
    pointer-events:none;
    transition:transform .45s cubic-bezier(.77,0,.18,1),opacity .35s ease;
}

.sticky-header.visible {
    transform:translateY(0);
    opacity:1;
    pointer-events:auto;
}

.sticky-header-inner {
    display:flex;
    height:100%;
    align-items:center;
    justify-content:space-between;
}

.sticky-logo {
    color:var(--elios-dark);
    font-family:'Playfair Display',serif;
    font-size:25px;
    line-height:.9;
}

.sticky-logo:hover {
    color:var(--elios-dark);
}

.sticky-logo small {
    display:block;
    margin-top:7px;
    font-family:'DM Sans',sans-serif;
    font-size:7px;
    font-weight:500;
    letter-spacing:.23em;
    text-transform:uppercase;
}

.sticky-actions {
    display:flex;
    height:100%;
    align-items:center;
}

.sticky-actions > a {
    display:flex;
    height:100%;
    padding:0 17px;
    align-items:center;
    color:var(--elios-dark);
    border-left:1px solid rgba(0,0,0,.08);
    font-size:10px;
    font-weight:500;
    letter-spacing:.08em;
    text-transform:uppercase;
    transition:background .2s ease;
}

.sticky-actions > a:hover {
    color:var(--elios-dark);
    background:rgba(0,0,0,.035);
}

.sticky-actions .sticky-request {
    background:var(--elios-yellow);
    border:0;
    font-weight:600;
}

.sticky-actions .sticky-request:hover {
    background:var(--elios-yellow-dark);
}

.sticky-menu-toggle {
    height:100%;
    margin-left:22px;
    color:var(--elios-dark);
}

.sticky-menu-toggle .menu-toggle-icon i {
    background:var(--elios-dark);
}

/* MENU FULLSCREEN */
.menu-overlay {
    position:fixed;
    inset:0;
    z-index:1000;
    visibility:hidden;
    opacity:0;
    color:#fff;
    transition:visibility .5s,opacity .5s ease;
}

.menu-overlay.open {
    visibility:visible;
    opacity:1;
}

.menu-overlay-bg {
    position:absolute;
    inset:0;
    background:#182022;
    transform:translateY(-100%);
    transition:transform .65s cubic-bezier(.77,0,.18,1);
}

.menu-overlay.open .menu-overlay-bg {
    transform:translateY(0);
}

.menu-overlay-inner {
    position:relative;
    z-index:2;
    display:flex;
    min-height:100%;
    flex-direction:column;
}

.menu-overlay-top {
    height:125px;
    border-bottom:1px solid rgba(255,255,255,.12);
}

.menu-close {
    position:relative;
    display:flex;
    align-items:center;
    gap:18px;
    padding:15px 5px;
    color:#fff;
    background:transparent;
    border:0;
    font-size:10px;
    letter-spacing:.15em;
    text-transform:uppercase;
}

.menu-close span {
    margin-right:50px;
}

.menu-close i {
    position:absolute;
    right:0;
    width:34px;
    height:1px;
    background:#fff;
}

.menu-close i:nth-of-type(1) {
    transform:rotate(45deg);
}

.menu-close i:nth-of-type(2) {
    transform:rotate(-45deg);
}

.menu-overlay-content {
    flex:1;
    padding:60px 0 70px;
}

.main-overlay-nav {
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.main-overlay-nav a {
    display:inline-flex;
    align-items:baseline;
    gap:24px;
    color:#fff;
    font-family:'Playfair Display',serif;
    font-size:clamp(46px,5.3vw,82px);
    line-height:1.13;
    transition:opacity .25s ease,transform .25s ease;
}

.main-overlay-nav a span {
    width:20px;
    color:rgba(255,255,255,.35);
    font-family:'DM Sans',sans-serif;
    font-size:9px;
    letter-spacing:.1em;
}

.main-overlay-nav:hover a {
    opacity:.25;
}

.main-overlay-nav a:hover {
    opacity:1;
    transform:translateX(12px);
}

.menu-side {
    max-width:320px;
    margin-left:auto;
    padding-left:45px;
    border-left:1px solid rgba(255,255,255,.12);
}

.menu-side-label {
    margin-bottom:25px;
    color:rgba(255,255,255,.4);
    font-size:9px;
    font-weight:600;
    letter-spacing:.18em;
    text-transform:uppercase;
}

.menu-side p {
    margin-bottom:25px;
    color:rgba(255,255,255,.65);
    line-height:1.7;
}

.menu-side > a:not(.btn) {
    display:block;
    margin-bottom:7px;
    color:#fff;
    font-size:14px;
}

.menu-side-actions {
    margin-top:35px;
}

.menu-overlay-bottom {
    display:flex;
    min-height:65px;
    align-items:center;
    justify-content:space-between;
    border-top:1px solid rgba(255,255,255,.12);
    color:rgba(255,255,255,.4);
    font-size:10px;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.menu-overlay-bottom a {
    margin-left:25px;
    color:rgba(255,255,255,.65);
}

/* BUTTONS */
.btn-book {
    padding:15px 24px;
    background:var(--elios-yellow);
    border:0;
    border-radius:0;
    color:var(--elios-dark);
    font-size:11px;
    font-weight:600;
    letter-spacing:.09em;
    text-transform:uppercase;
    transition:background .25s ease;
}

.btn-book:hover {
    background:var(--elios-yellow-dark);
    color:var(--elios-dark);
}

.btn-large {
    padding-left:45px;
    padding-right:45px;
}

/* HERO */
.hero {
    position:relative;
    display:flex;
    min-height:100svh;
    align-items:flex-end;
    background:
        linear-gradient(90deg,rgba(15,22,24,.52) 0%,rgba(15,22,24,.15) 55%,rgba(15,22,24,.05) 100%),
        url('https://www.hotelelios.com/storage-image/Content/Homepage/camere-in-alto.jpeg') center center/cover no-repeat;
}

.hero::after {
    content:"";
    position:absolute;
    inset:auto 0 0;
    height:35%;
    background:linear-gradient(0deg,rgba(10,18,20,.3),transparent);
    pointer-events:none;
}

.hero-inner {
    position:relative;
    z-index:2;
    width:100%;
}

.hero-content {
    max-width:820px;
    padding:220px 0 80px;
}

.hero-kicker {
    margin-bottom:26px;
    color:rgba(255,255,255,.75);
    font-size:10px;
    font-weight:500;
    letter-spacing:.24em;
    text-transform:uppercase;
}

.hero h1 {
    margin:0 0 28px;
    color:#fff;
    font-size:clamp(66px,8vw,125px);
    font-weight:400;
    letter-spacing:-.035em;
    line-height:.87;
}

.hero p {
    max-width:550px;
    margin-bottom:38px;
    color:rgba(255,255,255,.85);
    font-size:17px;
    line-height:1.7;
}

.hero-scroll {
    display:inline-flex;
    align-items:center;
    gap:14px;
    color:#fff;
    font-size:10px;
    font-weight:600;
    letter-spacing:.16em;
    text-transform:uppercase;
}

.hero-scroll:hover {
    color:#fff;
}

.hero-scroll span {
    font-size:18px;
    transition:transform .25s ease;
}

.hero-scroll:hover span {
    transform:translateY(5px);
}

/* BOOKING */
.booking-wrap {
    position:relative;
    z-index:10;
    margin-top:-55px;
}

.booking-bar {
    padding:25px 28px;
    background:#fff;
    box-shadow:0 20px 60px rgba(0,0,0,.14);
}

.booking-item {
    padding:4px 25px;
    border-right:1px solid var(--elios-border);
}

.booking-label {
    margin-bottom:7px;
    color:#888;
    font-size:10px;
    letter-spacing:.15em;
    text-transform:uppercase;
}

.booking-value {
    font-family:'Playfair Display',serif;
    font-size:19px;
}

.booking-submit {
    padding:16px 35px;
}

/* COMMON */
.section-space {
    padding:120px 0;
}

.section-kicker {
    margin-bottom:20px;
    color:#a5830d;
    font-size:11px;
    font-weight:600;
    letter-spacing:.24em;
    text-transform:uppercase;
}

.display-title {
    font-size:clamp(40px,4.8vw,67px);
    font-weight:400;
    line-height:1.08;
}

.lead-copy {
    color:var(--elios-grey);
    font-size:17px;
    line-height:1.9;
}

.bg-light-elios {
    background:var(--elios-light);
}

.link-arrow {
    display:inline-flex;
    align-items:center;
    gap:13px;
    color:var(--elios-dark);
    font-size:12px;
    font-weight:600;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.link-arrow::after {
    content:"→";
    font-size:18px;
    transition:transform .25s ease;
}

.link-arrow:hover {
    color:var(--elios-dark);
}

.link-arrow:hover::after {
    transform:translateX(7px);
}

/* INTRO */
.intro-text {
    max-width:1050px;
    margin:0 auto;
    text-align:center;
}

.intro-copy {
    max-width:850px;
    margin-left:auto;
    margin-right:auto;
}

/* VISUAL */
.visual-block {
    min-height:700px;
    background-position:center;
    background-repeat:no-repeat;
    background-size:cover;
}

.visual-beach {
    background-image:url('https://www.hotelelios.com/storage-image/Content/Homepage/home-2.jpg');
}

.visual-food {
    background-image:url('https://www.hotelelios.com/storage-image/Content/Homepage/home-4.jpg');
}

.content-block {
    padding:85px 9%;
}

/* EXPERIENCE */
.experience-card {
    position:relative;
    display:block;
    min-height:620px;
    overflow:hidden;
    color:#fff;
}

.experience-card img {
    width:100%;
    height:620px;
    object-fit:cover;
    transition:transform .8s ease;
}

.experience-card:hover img {
    transform:scale(1.035);
}

.experience-overlay {
    position:absolute;
    inset:0;
    background:linear-gradient(0deg,rgba(0,0,0,.58) 0%,rgba(0,0,0,.06) 60%);
}

.experience-content {
    position:absolute;
    right:40px;
    bottom:40px;
    left:40px;
    color:#fff;
}

.experience-kicker {
    margin-bottom:8px;
    font-size:12px;
    letter-spacing:.15em;
    text-transform:uppercase;
}

.experience-content h3 {
    margin-bottom:13px;
    color:#fff;
    font-size:38px;
}

.experience-content span {
    color:#fff;
    font-size:14px;
}

/* BENEFITS */
.benefit-number {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:50px;
    height:50px;
    margin-bottom:26px;
    border:1px solid #d9d9d9;
    border-radius:50%;
    font-family:'Playfair Display',serif;
    font-size:18px;
}

.benefit h3 {
    margin-bottom:15px;
    font-size:25px;
}

.benefit p {
    color:var(--elios-grey);
    line-height:1.75;
}

/* QUOTE */
.quote-section {
    background:var(--elios-blue);
}

.quote-text {
    max-width:1000px;
    margin:0 auto;
    font-family:'Playfair Display',serif;
    font-size:clamp(38px,4.3vw,65px);
    line-height:1.18;
    text-align:center;
}

/* CTA */
.cta {
    position:relative;
    display:flex;
    min-height:600px;
    align-items:center;
    background:
        linear-gradient(rgba(10,20,22,.30),rgba(10,20,22,.46)),
        url('https://www.hotelelios.com/storage-image/Content/Homepage/home-2.jpg') center center/cover no-repeat;
}

.cta h2 {
    color:#fff;
    font-size:clamp(48px,6vw,82px);
}

.cta p {
    color:rgba(255,255,255,.9);
    font-size:18px;
}

/* FOOTER */
.site-footer {
    padding:85px 0 28px;
    background:var(--elios-dark);
    color:rgba(255,255,255,.62);
}

.footer-main {
    padding-bottom:75px;
}

.footer-logo {
    display:inline-block;
    margin-bottom:28px;
    color:#fff;
    font-family:'Playfair Display',serif;
    font-size:42px;
    line-height:1;
}

.footer-logo:hover {
    color:#fff;
}

.footer-tagline {
    margin:0;
    color:rgba(255,255,255,.82);
    font-family:'Playfair Display',serif;
    font-size:25px;
    line-height:1.45;
}

.footer-title {
    margin-bottom:22px;
    color:rgba(255,255,255,.42);
    font-size:10px;
    font-weight:600;
    letter-spacing:.18em;
    text-transform:uppercase;
}

.footer-nav,
.footer-contacts {
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
}

.footer-nav a,
.footer-contacts a {
    color:rgba(255,255,255,.82);
    font-size:14px;
    transition:color .2s ease;
}

.footer-nav a:hover,
.footer-contacts a:hover {
    color:#fff;
}

.footer-contacts span {
    margin-top:7px;
    color:rgba(255,255,255,.5);
    font-size:13px;
    line-height:1.7;
}

.footer-bottom {
    display:flex;
    justify-content:space-between;
    gap:30px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.1);
    color:rgba(255,255,255,.4);
    font-size:11px;
}

/* TABLET */
@media (max-width:991.98px) {
    .header-main {
        height:85px;
    }

    .menu-overlay-top {
        height:100px;
    }

    .menu-side {
        display:none;
    }

    .menu-overlay-content {
        padding:45px 0;
    }

    .main-overlay-nav a {
        font-size:clamp(43px,8vw,65px);
    }

    .booking-wrap {
        margin-top:0;
    }

    .booking-bar {
        box-shadow:none;
        border-bottom:1px solid #eee;
    }

    .booking-item {
        padding:16px 5px;
        border-right:0;
        border-bottom:1px solid #eee;
    }

    .section-space {
        padding:80px 0;
    }

    .visual-block {
        min-height:500px;
    }

    .experience-card {
        min-height:500px;
    }

    .experience-card img {
        height:500px;
    }

    .site-footer {
        padding-top:65px;
    }

    .footer-main {
        padding-bottom:55px;
    }
}

/* MOBILE */
@media (max-width:767.98px) {
    .container-wide {
        padding-left:20px;
        padding-right:20px;
    }

    .header-top {
        height:40px;
    }

    .header-contacts {
        width:100%;
    }

    .header-contacts a {
        flex:1;
        justify-content:center;
        padding:0 7px;
        font-size:9px;
    }

    .header-contacts .header-phone {
        display:none;
    }

    .header-logo {
        font-size:26px;
    }

    .menu-toggle-label {
        display:none;
    }

    .sticky-header {
        height:68px;
    }

    .sticky-logo {
        font-size:22px;
    }

    .sticky-logo small {
        display:none;
    }

    .sticky-actions .sticky-request {
        padding:0 13px;
        font-size:8px;
    }

    .sticky-menu-toggle {
        margin-left:15px;
    }

    .sticky-menu-toggle .menu-toggle-icon {
        width:35px;
    }

    .sticky-menu-toggle .menu-toggle-icon i {
        width:35px;
    }

    .sticky-menu-toggle .menu-toggle-icon i:last-child {
        width:23px;
    }

    .sticky-menu-toggle:hover .menu-toggle-icon i:last-child {
        width:35px;
    }

    .hero {
        background-position:60% center;
    }

    .hero-content {
        padding:180px 0 55px;
    }

    .hero h1 {
        font-size:clamp(58px,17vw,78px);
    }

    .hero p {
        max-width:90%;
        font-size:15px;
    }

    .menu-overlay-bottom > span {
        display:none;
    }

    .menu-overlay-bottom {
        justify-content:flex-end;
    }

    .content-block {
        padding:60px 25px;
    }

    .experience-content {
        right:25px;
        bottom:25px;
        left:25px;
    }

    .booking-bar {
        padding:20px;
    }

    .booking-submit {
        width:100%;
    }

    .cta {
        min-height:500px;
    }

    .footer-logo {
        font-size:36px;
    }

    .footer-tagline {
        font-size:22px;
    }

    .footer-bottom {
        flex-direction:column;
        gap:8px;
    }
}

@media (max-width:575.98px) {
    .display-title {
        font-size:39px;
    }

    .section-space {
        padding:65px 0;
    }

    .visual-block {
        min-height:420px;
    }

    .experience-card {
        min-height:460px;
    }

    .experience-card img {
        height:460px;
    }

    .quote-text {
        font-size:36px;
    }
}