/* ==============================================
   ZANZA BAR & STUDIO — Poros, Kefalonia
   Premium Mediterranean Design System
   ============================================== */

/* ---- Custom Properties ---- */
:root {
    /* Brand — warm Mediterranean palette from the business cards */
    --orange: #D4612C;
    --orange-light: #E87D4A;
    --red: #B5392B;
    --gold: #C9A24D;
    --gold-light: #E0C67A;
    --earth: #8B6F47;
    --olive: #697A42;
    --terracotta: #C0673A;

    /* Darks */
    --ink: #1A1412;
    --ink-deep: #0E0B09;
    --ink-soft: #2A2320;

    /* Lights */
    --cream: #FBF5EC;
    --sand: #F2E6D4;
    --warm-white: #FFFBF6;
    --paper: #FAF7F2;

    /* Neutrals */
    --n50: #FAFAF9;
    --n100: #F5F4F2;
    --n200: #E8E5E1;
    --n300: #D4D0CC;
    --n400: #A8A29E;
    --n500: #78716C;
    --n600: #57534E;
    --n700: #44403C;
    --n800: #292524;
    --n900: #1C1917;

    /* Type */
    --f-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --f-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --f-accent: 'Cormorant Garamond', Georgia, serif;
    --f-logo: 'Finger Paint', cursive;

    /* Layout */
    --wrap: 1140px;
    --gutter: clamp(1.25rem, 4vw, 2.5rem);
    --section-y: clamp(5rem, 10vw, 9rem);

    /* Motion */
    --ease: cubic-bezier(.4,0,.2,1);
    --ease-out: cubic-bezier(.0,0,.2,1);
    --ease-spring: cubic-bezier(.175,.885,.32,1.275);

    /* Depth */
    --sh-xs: 0 1px 2px rgba(0,0,0,.06);
    --sh-sm: 0 2px 8px rgba(0,0,0,.08);
    --sh-md: 0 8px 24px rgba(0,0,0,.1);
    --sh-lg: 0 16px 48px rgba(0,0,0,.12);
    --sh-xl: 0 24px 64px rgba(0,0,0,.16);

    /* Radius */
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 16px;
    --r-xl: 24px;
    --r-pill: 100px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--f-body);
    color: var(--n800);
    background: var(--warm-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width:100%; height:auto; display:block; }

a {
    color: var(--orange);
    text-decoration: none;
    transition: color .25s var(--ease);
}
a:hover { color: var(--red); }

::selection {
    background: var(--gold-light);
    color: var(--ink);
}

/* Lucide icon sizes */
.icon-xs { width: 14px; height: 14px; }
.icon-sm { width: 18px; height: 18px; }
.icon-md { width: 24px; height: 24px; }
.icon-lg { width: 32px; height: 32px; }
.icon-xl { width: 48px; height: 48px; }

.star-fill { fill: var(--gold); color: var(--gold); }

/* ---- Layout ---- */
.wrap {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ---- Navigation ---- */
.nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    padding: 1.1rem 0;
    transition: all .45s var(--ease);
}

.nav.scrolled {
    background: rgba(14,11,9,.92);
    backdrop-filter: blur(24px) saturate(1.6);
    -webkit-backdrop-filter: blur(24px) saturate(1.6);
    padding: .65rem 0;
    box-shadow: 0 1px 0 rgba(255,255,255,.04), var(--sh-md);
}

.nav__inner {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    font-family: var(--f-logo);
    font-size: 1.8rem;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    letter-spacing: .02em;
    display: flex;
    align-items: baseline;
}

.nav__logo-z {
    font-size: 1.2em;
    color: var(--orange);
    margin-right: -1px;
}

.nav__logo-text { color: #fff; }

.nav__menu {
    display: flex;
    align-items: center;
    gap: .25rem;
}

.nav__link {
    color: rgba(255,255,255,.78);
    font-weight: 500;
    font-size: .875rem;
    padding: .5rem .9rem;
    border-radius: var(--r-sm);
    transition: all .25s var(--ease);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    white-space: nowrap;
}

.nav__link:hover,
.nav__link.active {
    color: #fff;
    background: rgba(255,255,255,.08);
}

.nav__link--cta {
    background: var(--orange) !important;
    color: #fff !important;
    border-radius: var(--r-pill) !important;
    padding: .5rem 1.1rem !important;
    margin-left: .4rem;
    font-weight: 600;
}
.nav__link--cta:hover {
    background: var(--red) !important;
    transform: translateY(-1px);
}

/* Mobile toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
    border-radius: 50%;
    transition: all .3s var(--ease);
}
.nav__toggle:active { transform: scale(.9); }
.nav__toggle span {
    width: 22px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .35s cubic-bezier(.2,.6,.3,1);
    display: block;
}
.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .8rem 1.8rem;
    border-radius: var(--r-pill);
    font-family: var(--f-body);
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .3s var(--ease);
    line-height: 1.2;
}

.btn--primary {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}
.btn--primary:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212,97,44,.35);
}

.btn--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.3);
}
.btn--ghost:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.6);
    color: #fff;
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--n700);
    border-color: var(--n300);
}
.btn--outline:hover {
    background: var(--n100);
    border-color: var(--n400);
    color: var(--n900);
    transform: translateY(-2px);
}

.btn--sm {
    padding: .45rem 1rem;
    font-size: .8rem;
    font-weight: 600;
    border-radius: var(--r-pill);
    background: #fff;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    text-decoration: none;
    transition: all .25s var(--ease);
    border: none;
}
.btn--sm:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-1px);
}

/* ---- Hero ---- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute; inset: 0;
    background:
        url('https://images.unsplash.com/photo-1470337458703-46ad1756a187?w=1920&q=80')
        center / cover no-repeat;
    background-color: #1a0e05;
}

.hero__pattern {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='none' stroke='%23C9A24D' stroke-width='0.5'/%3E%3Ccircle cx='30' cy='30' r='3' fill='none' stroke='%23D4612C' stroke-width='0.5'/%3E%3Cpath d='M30 12L30 20M40 30L48 30M30 40L30 48M12 30L20 30' stroke='%23C9A24D' stroke-width='0.4'/%3E%3C/svg%3E");
    opacity: .08;
    pointer-events: none;
}

.hero__gradient {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(26,14,5,.75) 0%, rgba(26,14,5,.35) 35%, rgba(26,14,5,.8) 100%),
        radial-gradient(ellipse at 30% 60%, rgba(212,97,44,.2) 0%, transparent 60%),
        radial-gradient(ellipse at 75% 30%, rgba(201,162,77,.15) 0%, transparent 50%);
}

/* Dancing figure — matching the business card silhouette */
.hero__dancer {
    position: absolute;
    left: 7%;
    bottom: 12%;
    width: 130px;
    color: rgba(212,97,44,.15);
    z-index: 1;
    transform: scaleX(-1);
    animation: danceSway 4s ease-in-out infinite;
    pointer-events: none;
}
.hero__dancer svg { width: 100%; height: auto; }

@keyframes danceSway {
    0%, 100% { transform: scaleX(-1) rotate(-2deg); }
    50% { transform: scaleX(-1) rotate(2deg); }
}

/* Floating music notes */
.hero__note {
    position: absolute;
    font-size: 1.8rem;
    color: rgba(201,162,77,.18);
    z-index: 1;
    pointer-events: none;
    animation: noteFloat 6s ease-in-out infinite;
}
.hero__note--1 { top: 18%; right: 12%; animation-delay: 0s; font-size: 2.4rem; }
.hero__note--2 { top: 32%; left: 14%; animation-delay: 1.5s; font-size: 1.6rem; }
.hero__note--3 { bottom: 22%; right: 16%; animation-delay: 3s; }
.hero__note--4 { top: 24%; left: 30%; animation-delay: 4.5s; font-size: 1.4rem; }

@keyframes noteFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: .18; }
    50% { transform: translateY(-15px) rotate(8deg); opacity: .35; }
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 2rem var(--gutter);
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-family: var(--f-accent);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: .06em;
    color: var(--gold-light);
    padding: .35rem 1rem;
    border: 1px solid rgba(201,162,77,.3);
    border-radius: var(--r-pill);
    backdrop-filter: blur(8px);
    margin-bottom: 1.5rem;
}

/* Brand block — matching the card layout ("bar" above "Zanza") */
.hero__brand {
    position: relative;
    display: inline-block;
    margin-bottom: .3rem;
}

.hero__bar-label {
    display: block;
    font-family: var(--f-logo);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: rgba(255,255,255,.65);
    letter-spacing: .12em;
    text-align: right;
    padding-right: .5em;
    margin-bottom: -.2em;
}

.hero__title {
    font-family: var(--f-logo);
    font-size: clamp(5rem, 16vw, 11rem);
    font-weight: 400;
    color: #fff;
    line-height: .85;
    letter-spacing: .01em;
    text-shadow:
        3px 3px 0 rgba(212,97,44,.35),
        0 0 60px rgba(212,97,44,.12);
}

.hero__divider {
    display: flex;
    justify-content: center;
    margin: 1rem auto 1.2rem;
}
.hero__divider-svg {
    width: 100px;
    height: 12px;
}

.hero__tagline {
    font-family: var(--f-body);
    font-size: clamp(.85rem, 1.8vw, 1.1rem);
    color: rgba(255,255,255,.6);
    letter-spacing: .35em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero__desc {
    font-family: var(--f-accent);
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    font-weight: 400;
    font-style: italic;
    color: rgba(255,255,255,.7);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Hero trust badge */
.hero__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero__trust-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .45rem 1rem;
    background: rgba(201,162,77,.15);
    border: 1px solid rgba(201,162,77,.35);
    border-radius: var(--r-pill);
    color: var(--gold-light);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .02em;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.hero__trust-badge i { color: var(--gold); }

.hero__trust-rating {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.hero__trust-score {
    font-family: var(--f-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.hero__trust-stars {
    display: flex;
    gap: 1px;
}
.hero__trust-stars .star-fill {
    color: var(--gold) !important;
    width: 14px;
    height: 14px;
}

.hero__trust-count {
    font-size: .82rem;
    color: rgba(255,255,255,.55);
    font-weight: 500;
}

.hero__actions {
    display: flex;
    gap: .8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.4);
    z-index: 2;
    animation: scrollPulse 2.5s ease-in-out infinite;
    text-decoration: none;
}

@keyframes scrollPulse {
    0%,100% { transform: translateX(-50%) translateY(0); opacity: .4; }
    50% { transform: translateX(-50%) translateY(8px); opacity: .8; }
}

/* ---- Sections ---- */
.section {
    position: relative;
    padding: var(--section-y) 0;
}

.section--cream { background: var(--cream); }
.section--warm { background: linear-gradient(180deg, var(--sand) 0%, var(--cream) 100%); }
.section--dark {
    background: var(--ink);
    color: #fff;
    overflow: hidden;
}

.section__bg-glow {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(212,97,44,.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201,162,77,.05) 0%, transparent 50%);
    pointer-events: none;
}
.section__bg-glow--alt {
    background:
        radial-gradient(ellipse at 70% 70%, rgba(212,97,44,.06) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 30%, rgba(201,162,77,.04) 0%, transparent 50%);
}

.section__head {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section__tag {
    display: inline-block;
    font-family: var(--f-accent);
    font-size: 1rem;
    font-style: italic;
    font-weight: 500;
    color: var(--orange);
    padding: .25rem .8rem;
    border: 1px solid rgba(212,97,44,.2);
    border-radius: var(--r-pill);
    margin-bottom: .8rem;
    letter-spacing: .03em;
}

.section__tag--light {
    color: var(--gold-light);
    border-color: rgba(201,162,77,.25);
}

.section__title {
    font-family: var(--f-display);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    color: var(--n900);
    letter-spacing: -.025em;
    line-height: 1.08;
}

.section__head--light .section__title { color: #fff; }

.section__rule {
    width: 40px; height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--gold));
    margin: .9rem auto;
    border-radius: 2px;
    transition: width .6s cubic-bezier(.22,.68,.31,1);
}
.section:hover .section__rule,
.section.is-visible .section__rule {
    width: 56px;
}

.section__sub {
    font-family: var(--f-accent);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--n500);
    margin-top: .3rem;
}
.section__head--light .section__sub { color: rgba(255,255,255,.55); }

/* ---- Story ---- */
.story {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story__lead {
    font-family: var(--f-accent);
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--n700);
    margin-bottom: 1rem;
}

.story__text p {
    color: var(--n600);
    margin-bottom: .8rem;
    font-size: .95rem;
    line-height: 1.8;
}

.story__quote {
    position: relative;
    margin: 2rem 0 0;
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(212,97,44,.04), rgba(201,162,77,.06));
    border-left: 3px solid;
    border-image: linear-gradient(180deg, var(--orange), var(--gold)) 1;
    border-radius: 0 var(--r-md) var(--r-md) 0;
    font-family: var(--f-accent);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--n700);
    line-height: 1.7;
}
.story__quote p { margin: 0; color: var(--n700); font-size: inherit; }
.story__quote-icon {
    position: absolute;
    top: -10px;
    left: 12px;
    color: var(--orange);
    opacity: .5;
}

.story__sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story__stats {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--warm-white);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-sm);
    border: 1px solid var(--n200);
    transition: all .5s cubic-bezier(.2,.6,.3,1);
    position: relative;
    overflow: hidden;
}
.stat::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212,97,44,.03), rgba(201,162,77,.04));
    opacity: 0;
    transition: opacity .5s cubic-bezier(.2,.6,.3,1);
}
.stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,.1);
    border-color: rgba(212,97,44,.15);
}
.stat:hover::before { opacity: 1; }

.stat__icon {
    color: var(--orange);
    margin-bottom: .5rem;
    display: flex;
    justify-content: center;
    position: relative;
}

.stat__num {
    font-family: var(--f-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
    position: relative;
}

.stat__suffix {
    font-family: var(--f-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--gold);
    position: relative;
}

.stat__label {
    display: block;
    font-size: .82rem;
    color: var(--n500);
    margin-top: .2rem;
    letter-spacing: .02em;
    position: relative;
}

.story__vibe {
    text-align: center;
    padding: 1.8rem 1.5rem;
    background: linear-gradient(135deg, var(--ink), var(--ink-soft));
    border-radius: var(--r-lg);
    border: 1px solid rgba(255,255,255,.06);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.story__vibe::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 70%, rgba(212,97,44,.1) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(201,162,77,.08) 0%, transparent 60%);
    pointer-events: none;
}

.story__vibe-icon {
    color: var(--gold);
    margin-bottom: .8rem;
    display: flex;
    justify-content: center;
    position: relative;
}

.story__vibe-text {
    font-family: var(--f-accent);
    font-style: italic;
    font-size: 1.05rem;
    color: rgba(255,255,255,.8);
    line-height: 1.6;
    margin-bottom: .8rem;
    position: relative;
}

.story__vibe-tag {
    font-size: .78rem;
    color: rgba(255,255,255,.4);
    letter-spacing: .08em;
    text-transform: uppercase;
    position: relative;
}

/* ---- Features (Bar) ---- */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.feature {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--r-lg);
    transition: all .4s var(--ease);
}
.feature:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(212,97,44,.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,.25);
}

.feature__icon {
    color: var(--gold);
    margin-bottom: 1.2rem;
    display: flex;
    justify-content: center;
}

.feature__title {
    font-family: var(--f-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: .6rem;
}

.feature__text {
    color: rgba(255,255,255,.6);
    font-size: .9rem;
    line-height: 1.7;
}

/* Secondary features row */
.features--secondary {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.feature--compact {
    padding: 1.5rem 1rem;
    text-align: center;
}
.feature--compact .feature__icon {
    margin-bottom: .8rem;
}
.feature--compact .feature__title {
    font-size: 1rem;
    margin-bottom: .35rem;
}
.feature--compact .feature__text {
    font-size: .82rem;
    line-height: 1.55;
}

/* Bar CTA */
.bar-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.bar-cta__card {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .7rem 1.2rem;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r-pill);
    font-size: .9rem;
    color: rgba(255,255,255,.7);
    transition: all .25s var(--ease);
}
.bar-cta__card:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.2);
}
.bar-cta__card i { color: var(--gold); }
.bar-cta__card a {
    color: var(--gold-light);
    font-weight: 600;
}
.bar-cta__card a:hover { color: #fff; }

/* ---- Rooms ---- */
.rooms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.rooms__lead {
    font-family: var(--f-accent);
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--n700);
    margin-bottom: .8rem;
}

.rooms__info > p {
    color: var(--n600);
    margin-bottom: 1rem;
    font-size: .95rem;
    line-height: 1.8;
}

.rooms__highlight-text {
    font-family: var(--f-accent);
    font-style: italic;
    font-size: 1rem;
    color: var(--orange);
    padding: .8rem 0;
    border-top: 1px solid rgba(212,97,44,.15);
    border-bottom: 1px solid rgba(212,97,44,.15);
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: .01em;
}

/* Rooms Perks */
.rooms__perks {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.rooms__perk {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 1.2rem;
    background: rgba(255,255,255,.7);
    border-radius: var(--r-md);
    border: 1px solid var(--n200);
    transition: all .45s cubic-bezier(.2,.6,.3,1);
}
.rooms__perk:hover {
    background: #fff;
    border-color: rgba(212,97,44,.15);
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
}

.rooms__perk-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212,97,44,.08), rgba(201,162,77,.12));
    border-radius: var(--r-md);
    color: var(--orange);
}

.rooms__perk strong {
    display: block;
    font-size: .92rem;
    color: var(--n800);
    margin-bottom: .15rem;
}
.rooms__perk span {
    font-size: .82rem;
    color: var(--n500);
    line-height: 1.5;
}

.amenities {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .6rem;
    margin-bottom: 1.5rem;
    padding: 1rem 1.2rem;
    background: var(--cream);
    border-radius: var(--r-md);
    border: 1px solid var(--n200);
}

.amenity {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-weight: 500;
    color: var(--n700);
    font-size: .88rem;
}
.amenity i { color: var(--olive); flex-shrink: 0; }

.rooms__actions {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
}

/* Rooms Showcase (right column) */
.rooms__showcase {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.rooms__card {
    background: #fff;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--sh-lg);
    border: 1px solid var(--n200);
    transition: all .6s cubic-bezier(.2,.6,.3,1);
}
.rooms__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 64px rgba(0,0,0,.12);
}

.rooms__card-img {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.rooms__placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #8B6F47 0%, #A0845C 40%, #6B5335 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.8);
    gap: .5rem;
}
.rooms__placeholder span {
    font-family: var(--f-accent);
    font-style: italic;
    font-size: 1rem;
}

.rooms__card-badge {
    position: absolute;
    top: 1rem; right: 1rem;
    display: flex;
    align-items: center;
    gap: .35rem;
    background: rgba(14,11,9,.7);
    backdrop-filter: blur(8px);
    color: var(--gold-light);
    font-size: .75rem;
    font-weight: 600;
    padding: .35rem .75rem;
    border-radius: var(--r-pill);
}

.rooms__card-body {
    padding: 1.5rem;
}
.rooms__card-body h3 {
    font-family: var(--f-display);
    font-size: 1.25rem;
    color: var(--n900);
    margin-bottom: .4rem;
}
.rooms__card-body p {
    color: var(--n600);
    font-size: .88rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.rooms__badges {
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .25rem .7rem;
    background: var(--sand);
    border-radius: var(--r-pill);
    font-size: .78rem;
    font-weight: 500;
    color: var(--n700);
}
.badge i { color: var(--earth); }

/* Rooms Testimonial */
.rooms__testimonial {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--ink), var(--ink-soft));
    border-radius: var(--r-lg);
    border: 1px solid rgba(255,255,255,.06);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.rooms__testimonial::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(201,162,77,.08) 0%, transparent 70%);
    pointer-events: none;
}
.rooms__testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: .8rem;
    position: relative;
}
.rooms__testimonial-stars .star-fill { color: var(--gold); }
.rooms__testimonial p {
    font-family: var(--f-accent);
    font-style: italic;
    font-size: .95rem;
    color: rgba(255,255,255,.75);
    line-height: 1.65;
    margin-bottom: .6rem;
    position: relative;
}
.rooms__testimonial cite {
    font-style: normal;
    font-size: .8rem;
    color: rgba(255,255,255,.4);
    position: relative;
}

/* ---- Reviews Section ---- */
.section--reviews {
    background: var(--cream);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.review-card {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 1.8rem;
    border: 1px solid var(--n200);
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
    transition: all .4s var(--ease);
    display: flex;
    flex-direction: column;
}
.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0,0,0,.08);
    border-color: rgba(201,162,77,.25);
}

.review-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: .8rem;
}
.review-card__stars .star-fill {
    color: var(--gold) !important;
    width: 15px;
    height: 15px;
}

.review-card__title {
    font-family: var(--f-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--n900);
    margin-bottom: .6rem;
}

.review-card__text {
    font-size: .9rem;
    color: var(--n600);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1rem;
}

.review-card__footer {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    padding-top: .8rem;
    border-top: 1px solid var(--n200);
}
.review-card__footer cite {
    font-style: normal;
    font-weight: 600;
    font-size: .88rem;
    color: var(--n800);
}
.review-card__footer span {
    font-size: .78rem;
    color: var(--n500);
}

.reviews-cta {
    text-align: center;
}

.reviews-cta__stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}
.reviews-cta__stat {
    font-size: .88rem;
    color: var(--n600);
}
.reviews-cta__stat strong {
    color: var(--orange);
    font-size: 1rem;
}

/* ---- Reviews Ribbon (legacy) ---- */
.ribbon {
    background: var(--paper);
    padding: 3rem 0;
    border-top: 1px solid var(--n200);
    border-bottom: 1px solid var(--n200);
}

.ribbon__inner {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ribbon__icon {
    flex-shrink: 0;
    color: var(--gold);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201,162,77,.12), rgba(201,162,77,.06));
    border-radius: 50%;
    border: 1px solid rgba(201,162,77,.2);
}

.ribbon__quote {
    flex: 1;
    font-family: var(--f-accent);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--n800);
    line-height: 1.65;
    border: none;
    padding: 0;
    margin: 0;
}

.ribbon__meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    flex-shrink: 0;
}

.ribbon__stars {
    display: flex;
    gap: 2px;
}

.ribbon__source {
    font-size: .82rem;
    color: var(--n500);
}

/* ---- Location ---- */
.location {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.location__lead {
    font-family: var(--f-accent);
    font-size: 1.15rem;
    color: var(--n700);
    line-height: 1.8;
    margin-bottom: .8rem;
}

.location__text > p {
    color: var(--n600);
    margin-bottom: 2rem;
    font-size: .95rem;
}

.highlights {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

.highlight {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.highlight__icon {
    flex-shrink: 0;
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sand);
    border-radius: var(--r-md);
    color: var(--orange);
    border: 1px solid var(--n200);
}

.highlight strong {
    display: block;
    font-size: .95rem;
    color: var(--n800);
    margin-bottom: .15rem;
}
.highlight p {
    font-size: .85rem;
    color: var(--n500);
    margin: 0;
    line-height: 1.5;
}

.location__map {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-lg);
    border: 1px solid var(--n200);
    min-height: 420px;
}
.location__map iframe { display: block; min-height: 420px; }

/* ---- Contact ---- */
.contacts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.contact-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all .4s var(--ease);
}
.contact-card:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(212,97,44,.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,.25);
}

.contact-card__icon {
    color: var(--gold);
    margin-bottom: .8rem;
    display: flex;
    justify-content: center;
}

.contact-card h3 {
    font-family: var(--f-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: .2rem;
}

.contact-card__role {
    font-family: var(--f-accent);
    font-style: italic;
    color: var(--gold-light);
    font-size: .95rem;
    display: block;
    margin-bottom: 1.2rem;
}

.contact-card__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .7rem;
}
.contact-card__list li {
    display: flex;
    align-items: center;
    gap: .5rem;
    justify-content: center;
    font-size: .88rem;
}
.contact-card__list li i { color: var(--gold); flex-shrink: 0; }
.contact-card__list li a { color: rgba(255,255,255,.75); }
.contact-card__list li a:hover { color: var(--gold-light); }

.contact-card__address {
    font-style: normal;
    color: rgba(255,255,255,.6);
    line-height: 1.8;
    margin-bottom: .8rem;
    font-size: .9rem;
}

.contact-card__hours {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    justify-content: center;
    text-align: left;
    font-size: .85rem;
    color: rgba(255,255,255,.5);
}
.contact-card__hours i { color: var(--gold); margin-top: 2px; }
.contact-card__hours strong { color: rgba(255,255,255,.8); }

/* ---- Footer ---- */
.footer {
    background: var(--ink-deep);
    color: rgba(255,255,255,.5);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(255,255,255,.04);
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
    margin-bottom: 1.5rem;
}

.footer__logo {
    font-family: var(--f-logo);
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: baseline;
    margin-bottom: .3rem;
}

.footer__brand {
    display: flex;
    flex-direction: column;
}
.footer__brand p { font-size: .88rem; line-height: 1.6; }

.footer__nav {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}
.footer__nav a {
    color: rgba(255,255,255,.5);
    font-size: .88rem;
    transition: color .25s;
}
.footer__nav a:hover { color: var(--gold); }

.footer__social {
    display: flex;
    gap: .6rem;
}
.footer__social a {
    color: rgba(255,255,255,.4);
    width: 38px; height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    transition: all .25s var(--ease);
}
.footer__social a:hover {
    color: #fff;
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-2px);
}

.footer__bottom {
    text-align: center;
    font-size: .82rem;
}

/* ---- Section Dividers ---- */
.section + .section::before,
.section + .happy-hour::before,
.happy-hour + .section::before,
.ribbon + .section::before {
    content: '';
    display: block;
    height: 0;
}

/* Scroll progress indicator */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--gold));
    z-index: 9999;
    transition: width .1s linear;
    pointer-events: none;
}

.ribbon__quote-wrap {
    flex: 1;
    min-width: 0;
}

.btn--reviews {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem 1.4rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--ink);
    font-weight: 600;
    font-size: .85rem;
    border-radius: var(--r-pill);
    border: none;
    text-decoration: none;
    transition: all .35s var(--ease);
}
.btn--reviews:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,162,77,.35);
    color: var(--ink);
}

.footer__tagline {
    font-family: var(--f-accent);
    font-style: italic;
    font-size: .9rem;
    color: rgba(255,255,255,.35);
    margin-top: .3rem;
}

/* ---- Happy Hour — Neon ---- */
.happy-hour {
    position: relative;
    background: #0A0408;
    padding: clamp(4rem, 8vw, 7rem) 0;
    overflow: hidden;
    text-align: center;
}

.happy-hour__glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(255,0,100,.08) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 70%, rgba(255,140,50,.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(200,80,200,.05) 0%, transparent 50%);
    pointer-events: none;
    animation: neon-breathe 4s ease-in-out infinite alternate;
}

.happy-hour__scanline {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255,255,255,.01) 2px,
        rgba(255,255,255,.01) 4px
    );
}

@keyframes neon-breathe {
    0% { opacity: .6; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

.happy-hour__inner {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
    padding: clamp(2.5rem, 6vw, 4rem) clamp(2rem, 5vw, 3.5rem);
    border-radius: var(--r-xl);
    background: rgba(15,5,20,.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.neon-border {
    position: absolute;
    inset: 0;
    border-radius: var(--r-xl);
    border: 2px solid transparent;
    background: linear-gradient(#0A0408, #0A0408) padding-box,
                linear-gradient(135deg, #ff3c78, #ff8c32, #ff3c78) border-box;
    pointer-events: none;
    animation: neon-border-glow 3s ease-in-out infinite alternate;
}

@keyframes neon-border-glow {
    0% { box-shadow: 0 0 15px rgba(255,60,120,.15), inset 0 0 15px rgba(255,60,120,.05); }
    50% { box-shadow: 0 0 30px rgba(255,140,50,.2), inset 0 0 30px rgba(255,140,50,.08); }
    100% { box-shadow: 0 0 20px rgba(255,60,120,.18), inset 0 0 20px rgba(255,60,120,.06); }
}

.happy-hour__content { position: relative; z-index: 1; }

.happy-hour__pre {
    display: inline-block;
    font-family: var(--f-accent);
    font-style: italic;
    font-size: .95rem;
    color: rgba(255,140,80,.7);
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: .5rem;
}

.happy-hour__title {
    font-family: var(--f-logo);
    font-size: clamp(2.8rem, 8vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.neon-text {
    color: #ff3c78;
    text-shadow:
        0 0 7px rgba(255,60,120,.5),
        0 0 20px rgba(255,60,120,.3),
        0 0 42px rgba(255,60,120,.2),
        0 0 80px rgba(255,60,120,.1);
    animation: neon-flicker 5s ease-in-out infinite;
}

@keyframes neon-flicker {
    0%, 100% { opacity: 1; }
    92% { opacity: 1; }
    93% { opacity: .85; }
    94% { opacity: 1; }
    96% { opacity: .9; }
    97% { opacity: 1; }
}

.happy-hour__time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    margin-bottom: 1.5rem;
}
.happy-hour__time i { color: #ff8c32; filter: drop-shadow(0 0 6px rgba(255,140,50,.4)); }

.happy-hour__hours {
    font-family: var(--f-display);
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: .04em;
}
.happy-hour__hours small {
    font-size: .55em;
    font-weight: 500;
    opacity: .7;
    vertical-align: super;
    margin-left: 1px;
}

.happy-hour__divider {
    width: 80px;
    height: 2px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(90deg, transparent, #ff3c78, #ff8c32, #ff3c78, transparent);
    border-radius: 2px;
    animation: neon-breathe 3s ease-in-out infinite alternate;
}

.happy-hour__deal {
    margin-bottom: 1.2rem;
}

.happy-hour__price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: .1rem;
    line-height: 1;
    margin-bottom: .3rem;
}
.happy-hour__currency {
    font-family: var(--f-display);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 700;
    color: #ff8c32;
    text-shadow: 0 0 8px rgba(255,140,50,.4);
    margin-top: .15em;
}
.happy-hour__amount {
    font-family: var(--f-display);
    font-size: clamp(4rem, 10vw, 6rem);
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 20px rgba(255,255,255,.15);
}
.happy-hour__cents {
    font-size: .45em;
    font-weight: 600;
    vertical-align: super;
    color: rgba(255,255,255,.6);
}

.happy-hour__label {
    font-family: var(--f-accent);
    font-style: italic;
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: rgba(255,255,255,.55);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.happy-hour__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: .88rem;
    color: rgba(255,255,255,.4);
    margin: 1.2rem 0 1.5rem;
}
.happy-hour__note i {
    color: #ff3c78;
    filter: drop-shadow(0 0 4px rgba(255,60,120,.3));
}

.btn--neon {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .9rem 2rem;
    background: transparent;
    color: #ff3c78;
    font-family: var(--f-body);
    font-weight: 600;
    font-size: .9rem;
    border: 2px solid #ff3c78;
    border-radius: var(--r-pill);
    cursor: pointer;
    text-decoration: none;
    letter-spacing: .03em;
    transition: all .4s var(--ease);
    box-shadow: 0 0 12px rgba(255,60,120,.15);
}
.btn--neon:hover {
    background: #ff3c78;
    color: #fff;
    box-shadow: 0 0 30px rgba(255,60,120,.35), 0 4px 20px rgba(255,60,120,.25);
    transform: translateY(-2px);
}

/* ---- iOS Liquid Glass — Global ---- */

/* Smooth spring transition override for interactive elements */
.btn, .feature, .stat, .contact-card, .rooms__card, .rooms__perk,
.highlight, .footer__social a, .amenity, .badge {
    transition-timing-function: cubic-bezier(.22,.68,.31,1);
}

/* Glass cards — frosted blur backdrop */
.glass {
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 8px 32px rgba(0,0,0,.06), inset 0 0 0 .5px rgba(255,255,255,.1);
}

/* Stat cards glass on hover */
.stat {
    transition: all .5s cubic-bezier(.22,.68,.31,1);
}
.stat:hover {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 12px 40px rgba(0,0,0,.1), inset 0 0 0 .5px rgba(255,255,255,.15);
}

/* Feature cards glass lift */
.feature {
    transition: all .5s cubic-bezier(.22,.68,.31,1);
}
.feature:hover {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 20px 50px rgba(0,0,0,.18), inset 0 0 0 .5px rgba(255,255,255,.1);
}

/* Contact cards glass morph */
.contact-card {
    transition: all .5s cubic-bezier(.22,.68,.31,1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.contact-card:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,.25), inset 0 0 0 .5px rgba(255,255,255,.12);
}

/* Navigation frosted glass upgrade */
.nav--scrolled {
    backdrop-filter: blur(24px) saturate(1.5) !important;
    -webkit-backdrop-filter: blur(24px) saturate(1.5) !important;
    border-bottom: 1px solid rgba(255,255,255,.06) !important;
    box-shadow: 0 1px 30px rgba(0,0,0,.08) !important;
}

/* Smooth curve AOS overrides */
[data-aos] {
    transition-timing-function: cubic-bezier(.22,.68,.31,1) !important;
    transition-duration: 850ms !important;
}
[data-aos].aos-animate {
    transition-timing-function: cubic-bezier(.2,.6,.3,1) !important;
}

/* Liquid hover lift for all buttons */
.btn {
    transition: all .4s cubic-bezier(.22,.68,.31,1);
}
.btn:hover {
    box-shadow: 0 8px 24px rgba(212,97,44,.18), 0 2px 8px rgba(0,0,0,.06);
}
.btn:active {
    transform: scale(.97) translateY(0);
    transition-duration: .1s;
}

/* Smooth scroll indicator */
.hero__scroll i {
    animation: scroll-float 2.5s cubic-bezier(.2,.6,.3,1) infinite;
}
@keyframes scroll-float {
    0%, 100% { transform: translateY(0); opacity: .6; }
    50% { transform: translateY(8px); opacity: 1; }
}

/* Smooth section reveal glow */
.section__bg-glow {
    transition: opacity 1.2s cubic-bezier(.2,.6,.3,1);
}

/* Rooms card liquid shadow */
.rooms__card {
    transition: all .6s cubic-bezier(.2,.6,.3,1);
}
.rooms__card:hover {
    box-shadow: 0 24px 64px rgba(0,0,0,.15), 0 8px 24px rgba(0,0,0,.06);
}

/* Highlight items smooth stagger */
.highlight {
    transition: all .45s cubic-bezier(.2,.6,.3,1);
}
.highlight:hover {
    transform: translateX(6px);
}
.highlight:hover .highlight__icon {
    box-shadow: 0 4px 16px rgba(212,97,44,.15);
    border-color: rgba(212,97,44,.2);
    transition: all .35s cubic-bezier(.2,.6,.3,1);
}

/* Footer social liquid press */
.footer__social a {
    transition: all .4s cubic-bezier(.2,.6,.3,1);
}
.footer__social a:active {
    transform: scale(.9);
    transition-duration: .1s;
}

/* Link smooth underline slide */
.nav__link {
    position: relative;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
    transition: all .4s cubic-bezier(.2,.6,.3,1);
    transform: translateX(-50%);
}
.nav__link:hover::after,
.nav__link--active::after {
    width: 100%;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .story,
    .rooms,
    .location {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .features { grid-template-columns: 1fr; }
    .contacts { grid-template-columns: 1fr; }

    .story__sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .story__stats {
        flex-direction: row;
        flex: 1;
        min-width: 280px;
    }
    .story__vibe {
        flex: 1;
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .nav__toggle { display: flex; }

    .nav__menu {
        position: fixed;
        top: 0; right: -100%;
        width: 72%;
        max-width: 300px;
        height: 100vh;
        height: 100dvh;
        background: rgba(12,9,7,.97);
        backdrop-filter: blur(48px) saturate(1.6);
        -webkit-backdrop-filter: blur(48px) saturate(1.6);
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        gap: 0;
        transition: right .5s cubic-bezier(.22,.68,.31,1);
        z-index: 1050;
        box-shadow: -16px 0 48px rgba(0,0,0,.5), -1px 0 0 rgba(255,255,255,.03);
        overflow-y: auto;
        overscroll-behavior: contain;
        border-left: 1px solid rgba(255,255,255,.03);
    }
    .nav__menu.open { right: 0; }

    /* Sidebar top spacer */
    .nav__menu::before {
        content: '';
        display: block;
        height: 4.5rem;
        flex-shrink: 0;
        border-bottom: 1px solid rgba(255,255,255,.03);
    }

    .nav__link {
        font-size: .88rem;
        font-weight: 400;
        padding: .9rem 1.8rem;
        border-radius: 0;
        color: rgba(255,255,255,.5);
        transition: all .35s cubic-bezier(.22,.68,.31,1);
        border-bottom: 1px solid rgba(255,255,255,.03);
        letter-spacing: .04em;
        text-transform: none;
        position: relative;
    }
    .nav__link:first-child {
        border-top: none;
    }
    .nav__link::before {
        content: '';
        position: absolute;
        left: 0; top: 0; bottom: 0;
        width: 2px;
        background: linear-gradient(180deg, var(--orange), var(--gold));
        opacity: 0;
        transform: scaleY(0);
        transition: all .35s cubic-bezier(.22,.68,.31,1);
    }
    .nav__link:hover,
    .nav__link.active {
        color: rgba(255,255,255,.95);
        background: rgba(255,255,255,.03);
        padding-left: 2rem;
    }
    .nav__link:hover::before,
    .nav__link.active::before {
        opacity: 1;
        transform: scaleY(1);
    }
    .nav__link--cta {
        margin: 1.2rem 1.8rem 0 !important;
        padding: .75rem 1.4rem !important;
        justify-content: center;
        border-bottom: none !important;
        border-radius: var(--r-pill) !important;
        font-size: .85rem !important;
        font-weight: 600 !important;
        letter-spacing: .02em !important;
    }
    .nav__link--cta::before { display: none; }

    /* Sidebar footer */
    .nav__menu::after {
        content: 'Poros, Kefalonia';
        display: block;
        margin-top: auto;
        padding: 1.8rem;
        text-align: center;
        font-family: var(--f-accent);
        font-style: italic;
        font-size: .75rem;
        color: rgba(255,255,255,.15);
        letter-spacing: .1em;
        text-transform: uppercase;
        border-top: 1px solid rgba(255,255,255,.03);
    }

    /* Overlay behind sidebar */
    .nav__overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.45);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        z-index: 1040;
        opacity: 0;
        pointer-events: none;
        transition: opacity .45s cubic-bezier(.22,.68,.31,1);
    }
    .nav__overlay.visible {
        opacity: 1;
        pointer-events: auto;
    }

    .hero__title {
        font-size: clamp(3.5rem, 18vw, 5.5rem);
    }
    .hero__bar-label {
        font-size: clamp(1rem, 4vw, 1.4rem);
    }
    .hero__dancer {
        display: none;
    }
    .hero__note { display: none !important; }

    .hero__desc {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }
    .hero__actions .btn { width: 100%; max-width: 280px; justify-content: center; }

    .story__stats {
        flex-direction: row;
        gap: 1rem;
    }
    .stat { flex: 1; padding: 1.2rem .8rem; }
    .stat__num { font-size: 2rem; }

    .rooms__actions { flex-direction: column; }
    .rooms__actions .btn { justify-content: center; }

    .rooms__perks { gap: .8rem; }
    .rooms__perk { padding: .8rem 1rem; }

    .amenities { grid-template-columns: 1fr; }

    .rooms__showcase { order: -1; }
    .rooms__testimonial { display: block; }

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

    /* Reviews grid — single column on mobile */
    .reviews-grid { grid-template-columns: 1fr; }

    /* Secondary features — 2 col on tablet, stacks on mobile */
    .features--secondary { grid-template-columns: repeat(2, 1fr); }

    /* Hero trust — vertical stack */
    .hero__trust {
        flex-direction: column;
        gap: .6rem;
    }

    .bar-cta { flex-direction: column; align-items: center; }
    .bar-cta__card { width: 100%; justify-content: center; }

    .footer__top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    .footer__brand {
        align-items: center;
    }
    .footer__logo {
        justify-content: center;
        font-size: 2.2rem;
    }
    .footer__nav {
        justify-content: center;
        gap: .8rem 1rem;
    }
    .footer__social { justify-content: center; }
}

@media (max-width: 480px) {
    :root { --section-y: 3.5rem; }

    .story__stats { flex-direction: column; }
    .stat { padding: 1rem; }

    .features--secondary { grid-template-columns: repeat(2, 1fr); }
    .feature--compact { padding: 1.2rem .8rem; }
    .feature--compact .feature__title { font-size: .9rem; }
    .feature--compact .feature__text { font-size: .78rem; }

    .rooms__card-img { height: 220px; }

    .location__map { min-height: 300px; }
    .location__map iframe { min-height: 300px; }

    .happy-hour__inner { padding: 2rem 1.2rem; }
    .happy-hour__title { font-size: 2.4rem; }
    .happy-hour__amount { font-size: 3.6rem; }
}

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .2s !important;
    }
    .neon-border, .neon-text, .happy-hour__glow, .happy-hour__divider {
        animation: none !important;
    }
    [data-aos] {
        transition-duration: 0ms !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ---- Print ---- */
@media print {
    .nav, .hero__scroll, .hero__pattern, .hero__gradient, .hero__dancer, .hero__note, .section__bg-glow { display: none; }
    .hero { min-height: auto; padding: 2rem; background: #fff; }
    .hero__title, .hero__badge, .hero__tagline, .hero__desc, .hero__bar-label { color: #000; }
    .section { page-break-inside: avoid; padding: 2rem 0; }
    .section--dark { background: #fff; color: #000; }
}
