/* ==========================================================================
   LILIA APARTMENTS — MEDITERRANEAN CHARM
   Terracotta + sage + cream. Rounded, warm, friendly.
   Typography: Quicksand (rounded geometric sans).
   ========================================================================== */

/* ---------- DESIGN TOKENS ---------- */
:root {
    /* Cream / ivory base */
    --cream-50:   #fefcf7;
    --cream-100:  #fdf8f1;
    --cream-200:  #f7eddd;
    --cream-300:  #ecdcc1;
    --cream-400:  #ddc59c;

    /* Terracotta (primary brand) */
    --terra-50:   #fdeee5;
    --terra-100:  #f8d8c8;
    --terra-200:  #f0bca6;
    --terra-300:  #e5a78a;
    --terra-400:  #d68a6a;
    --terra-500:  #c97b5b;
    --terra-600:  #b8694a;
    --terra-700:  #9a5538;
    --terra-800:  #6d3d28;
    --terra-900:  #4a2918;

    /* Sage (secondary brand) */
    --sage-50:    #f0f4ea;
    --sage-100:   #e6ebde;
    --sage-200:   #d3dcc4;
    --sage-300:   #b6c4a0;
    --sage-400:   #9bac81;
    --sage-500:   #8a9a7b;
    --sage-600:   #6e8060;
    --sage-700:   #556349;
    --sage-800:   #3d4836;
    --sage-900:   #2a3025;

    /* Honey / gold accent */
    --honey:      #d4a574;
    --honey-deep: #b8895a;

    /* Dusty rose (subtle accent) */
    --rose:       #d49b8b;

    /* Text */
    --text-primary: #3d2817;
    --text-body:    #5c3d2e;
    --text-muted:   #8a7560;
    --text-light:   #b09b85;

    /* Surfaces */
    --bg-page:    var(--cream-100);
    --bg-card:    var(--cream-50);
    --bg-soft:    var(--cream-200);

    /* Borders */
    --border-soft: rgba(138, 117, 96, 0.15);
    --border-mid:  rgba(138, 117, 96, 0.28);
    --border-warm: rgba(201, 123, 91, 0.25);

    /* Glass */
    --glass-cream:  rgba(254, 252, 247, 0.75);
    --glass-strong: rgba(254, 252, 247, 0.92);
    --glass-warm:   rgba(201, 123, 91, 0.12);
    --glass-edge:   rgba(255, 255, 255, 0.5);

    /* Shadows (warm tones) */
    --shadow-sm:   0 2px 8px rgba(122, 84, 56, 0.06);
    --shadow-md:   0 6px 20px rgba(122, 84, 56, 0.08);
    --shadow-lg:   0 14px 40px rgba(122, 84, 56, 0.12);
    --shadow-xl:   0 22px 60px rgba(122, 84, 56, 0.15);
    --shadow-warm: 0 12px 32px rgba(201, 123, 91, 0.25);

    /* Gradients */
    --grad-terra:   linear-gradient(135deg, var(--terra-500) 0%, var(--terra-600) 100%);
    --grad-sage:    linear-gradient(135deg, var(--sage-500) 0%, var(--sage-700) 100%);
    --grad-warm:    linear-gradient(135deg, var(--terra-400) 0%, var(--honey) 100%);
    --grad-cream:   linear-gradient(180deg, var(--cream-50) 0%, var(--cream-100) 100%);
    --grad-hero:    linear-gradient(180deg, rgba(74, 41, 24, 0.25) 0%, rgba(74, 41, 24, 0.15) 40%, rgba(74, 41, 24, 0.55) 100%);

    /* Typography */
    --font-body: 'Quicksand', 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Layout */
    --container: 1320px;

    /* Generous rounded corners — the heart of "cute" */
    --radius-sm:  12px;
    --radius-md:  20px;
    --radius-lg:  28px;
    --radius-xl:  36px;
    --radius-pill: 100px;

    /* Motion */
    --ease:     cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--bg-page);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

a {
    color: var(--terra-600);
    text-decoration: none;
    transition: color 0.2s var(--ease);
}
a:hover { color: var(--terra-700); }

::selection { background: var(--terra-200); color: var(--terra-900); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--cream-200); }
::-webkit-scrollbar-thumb {
    background: var(--terra-400);
    border-radius: var(--radius-pill);
    border: 2px solid var(--cream-200);
}
::-webkit-scrollbar-thumb:hover { background: var(--terra-500); }

/* ---------- TYPOGRAPHY UTILITIES ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

/* ---- Brand name styling — matches the official logo's italic serif ---- */
.brand-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 700;
    font-size: 1.05em;       /* slight optical bump — italic serifs read smaller */
    letter-spacing: -0.5px;
    color: inherit;          /* inherits surrounding text colour */
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 1.35rem;
    background: var(--sage-100);
    color: var(--sage-700);
    border: 1.5px solid var(--sage-200);
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-bottom: 1.25rem;
}

.section-tag::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--terra-500);
}

.section-title {
    font-family: var(--font-body);
    font-size: clamp(2.1rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    letter-spacing: -0.7px;
}

.section-title em {
    font-style: italic;
    font-weight: 600;
    color: var(--terra-600);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.75;
    font-weight: 400;
}

/* ---------- LAYOUT ---------- */
section {
    padding: 6.5rem 2rem;
    position: relative;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* ==========================================================================
   HEADER — symmetric logo-menu-logo layout on dark sage background
   ========================================================================== */
#header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    /* Sage → Teal gradient: warm Mediterranean sage flows into a coastal
       teal on the right side. Subtle dual-feel — the brand stays grounded
       in earth tones while hinting at the sea. The 135deg angle starts
       sage at top-left and progresses to teal at bottom-right. */
    background: linear-gradient(135deg,
        rgba(61, 72, 54, 0.92) 0%,
        rgba(48, 90, 95, 0.92) 65%,
        rgba(38, 100, 115, 0.92) 100%);
    -webkit-backdrop-filter: saturate(140%) blur(16px);
    backdrop-filter: saturate(140%) blur(16px);
    border-bottom: 1px solid rgba(212, 165, 116, 0.18);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.12),                       /* depth shadow */
        0 -2px 0 rgba(70, 130, 160, 0.6) inset,               /* marine-blue hairline at bottom edge */
        0 8px 24px -8px rgba(70, 130, 160, 0.35);             /* soft blue glow under the header */
    transition: all 0.4s var(--ease);
    padding: 0;
}

/* Slight darkening + sharper bottom edge after scroll. Gradient stays the
   same shape but shifts deeper toward midnight teal for contrast. */
#header.scrolled {
    background: linear-gradient(135deg,
        rgba(42, 48, 37, 0.96) 0%,
        rgba(32, 65, 72, 0.96) 65%,
        rgba(24, 75, 92, 0.96) 100%);
    border-bottom-color: rgba(212, 165, 116, 0.28);
    box-shadow:
        0 6px 28px rgba(0, 0, 0, 0.16),
        0 -2px 0 rgba(70, 130, 160, 0.55) inset,              /* marine line stays visible on scroll */
        0 8px 24px -8px rgba(70, 130, 160, 0.3);
}

#header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0.65rem 2.5rem;
    gap: 1.5rem;
}

/* ---- Logos (both sides) --------------------------------------------- */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
    flex-shrink: 0;
    transition: transform 0.4s var(--ease-bounce);
}

.logo:hover { transform: scale(1.04); }

.logo--left  { order: 0; }
.logo--right { order: 2; pointer-events: none; }

/* ============= Logo styles =============
   The animated SVG logo (images/liliaapartments_final_fixed_no_green_blobs.svg)
   is loaded as <img> by header.php, which contains the .logo / .logo-img CSS
   inline. Animation is self-contained inside the SVG file. */

/* ---- Legacy classes kept for backward compat ------------------------ */
.logo-mark {
    width: 46px; height: 46px;
    border-radius: 14px;
    background: var(--grad-terra);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-warm);
}

.logo-text h1 {
    font-family: var(--font-body);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--cream-50);
    line-height: 1;
    letter-spacing: -0.4px;
}

.logo-subtitle {
    display: block;
    margin-top: 4px;
    font-size: 0.7rem;
    color: rgba(254, 252, 247, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

/* ---- Menu (centered between the two logos) ------------------------- */
#menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
    order: 1;
}

#menu a {
    display: block;
    padding: 0.65rem 1.1rem;
    color: rgba(254, 252, 247, 0.92);
    font-weight: 600;
    font-size: 0.93rem;
    border-radius: var(--radius-pill);
    transition: all 0.25s var(--ease);
    position: relative;
    letter-spacing: 0.2px;
}

#menu a:not(.nav-cta):hover {
    color: var(--honey);
    background: rgba(254, 252, 247, 0.08);
}

#menu li.active a:not(.nav-cta) {
    color: var(--honey);
    background: rgba(254, 252, 247, 0.1);
}

#menu a.nav-cta {
    background: var(--grad-terra);
    color: var(--cream-50);
    padding: 0.7rem 1.5rem;
    margin-left: 0.5rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(201, 123, 91, 0.4);
    transition: all 0.35s var(--ease-bounce);
}

#menu a.nav-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 28px rgba(201, 123, 91, 0.55);
}

.menu-toggle {
    display: none;
    background: rgba(254, 252, 247, 0.12);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(254, 252, 247, 0.25);
    width: 46px; height: 46px;
    border-radius: 14px;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--cream-50);
    z-index: 1002;
    transition: all 0.3s var(--ease);
    order: 3;
}

.menu-toggle:hover {
    background: rgba(254, 252, 247, 0.2);
    border-color: var(--honey);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    /* Top padding accommodates the dual-logo header (logo height ~142px
       at 230px width × 1.625 aspect, plus padding). */
    padding: 13rem 2rem 6rem;
    background-image: url('../images/beach1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--cream-50);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-hero);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(201, 123, 91, 0.35), transparent 60%);
    z-index: 1;
}

.hero-content {
    max-width: var(--container);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* ==========================================================================
   HERO BADGE — Authentic Booking.com Traveller Review Awards 2026 banner
   ==========================================================================
   Reproduces the official badge: Booking blue background, brand+event text
   on the left, yellow "10 out of 10" square with corner sparkles on the right. */

.hero-badge {
    display: inline-flex;
    align-items: stretch;                /* let the score square fill height */
    gap: 0;
    padding: 0;
    background: #003B95;                  /* official Booking.com blue */
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;                  /* rounded rectangle, not pill */
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 0;                     /* hero-toprow controls spacing */
    overflow: hidden;                     /* clip yellow square to badge radius */
    text-decoration: none;
    transition: transform 0.4s var(--ease-bounce),
                box-shadow 0.4s var(--ease);
    box-shadow:
        0 8px 28px rgba(0, 26, 60, 0.45),
        0 1px 0 rgba(255, 255, 255, 0.12) inset;
    animation: fadeInUp 0.8s var(--ease-out);
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow:
        0 12px 36px rgba(0, 26, 60, 0.55),
        0 1px 0 rgba(255, 255, 255, 0.15) inset;
}

/* ---- Left side: Booking + event line ---- */
.award-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0.6rem 1.1rem 0.6rem 1.25rem;
    gap: 0.1rem;
    line-height: 1.1;
    text-transform: none;
    letter-spacing: 0;
}

.award-brand {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.2px;
}

.award-event {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.1px;
}

/* ---- Right side: yellow score square ---- */
.award-score {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #FEBA02;                  /* official Booking yellow */
    color: #003B95;
    padding: 0.3rem 0.9rem;
    min-width: 68px;
    line-height: 1;
}

.award-score-num {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1;
}

.award-score-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    margin-top: 0.15rem;
}

/* Corner sparkles — small 4-point stars in the yellow square's corners.
   Positioned at top-right and bottom-left as decorative accents. */
.award-score-spark {
    position: absolute;
    width: 9px;
    height: 9px;
    color: #003B95;
    pointer-events: none;
}

.award-score-spark--tr {
    top: 5px;
    right: 6px;
}

.award-score-spark--bl {
    bottom: 5px;
    left: 6px;
}

.hero-title {
    font-family: var(--font-body);
    font-size: clamp(2.5rem, 6vw, 4.6rem);
    font-weight: 700;
    color: var(--cream-50);
    margin-bottom: 1.25rem;
    line-height: 1.1;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 32px rgba(74, 41, 24, 0.4);
    animation: fadeInUp 0.8s var(--ease-out) 0.15s both;
}

.hero-title em {
    font-style: italic;
    color: var(--cream-200);
    font-weight: 600;
}

.hero-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.4vw, 1.2rem);
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 1.5rem;
    opacity: 0.9;
    color: var(--cream-200);
}

.hero-description {
    font-size: clamp(1.05rem, 1.4vw, 1.18rem);
    color: rgba(254, 252, 247, 0.9);
    max-width: 680px;
    margin: 2rem auto 3rem;
    line-height: 1.75;
    font-weight: 500;
    animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s var(--ease-out) 0.45s both;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1.05rem 2.35rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.98rem;
    letter-spacing: 0.3px;
    text-decoration: none;
    border-radius: var(--radius-pill);
    transition: all 0.35s var(--ease-bounce);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Primary CTA — solid honey gold gradient with deep brown text.
   Pairs with the honey logo, trust-strip icons, and partner button to
   create a unified gold accent system across the brand. */
.btn-primary {
    background: linear-gradient(135deg, #D4A574 0%, #B8895E 100%);
    color: #2D1F12;                           /* deep cocoa brown */
    box-shadow:
        0 8px 24px rgba(184, 137, 94, 0.45),
        0 1px 0 rgba(255, 255, 255, 0.2) inset;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 14px 32px rgba(184, 137, 94, 0.55),
        0 1px 0 rgba(255, 255, 255, 0.25) inset;
    color: #1F1409;
}

.btn-primary::after {
    content: '→';
    transition: transform 0.3s var(--ease);
    font-size: 1.1rem;
}

.btn-primary:hover::after { transform: translateX(4px); }

/* Secondary CTA — transparent with honey-gold border. Echoes the partner
   button's ghost style; together with the primary they form a balanced
   "filled gold + outlined gold" pair. */
.btn-secondary {
    background: transparent;
    color: var(--cream-50);
    border: 1.5px solid rgba(212, 165, 116, 0.7);
}

.btn-secondary:hover {
    background: rgba(212, 165, 116, 0.15);
    border-color: var(--honey, #D4A574);
    transform: translateY(-3px) scale(1.02);
    color: var(--cream-50);
}

/* ---- Tertiary partner button ----
   Ghost style with honey-gold accent. Discreet on purpose — it's a link
   to our sister farm, and shouldn't compete visually with the primary
   "explore" / "contact" CTAs. The leaf icon hints at the rural/nature
   nature of the destination; the small ↗ glyph signals an external link. */
.btn-partner {
    background: transparent;
    color: var(--honey, #D4A574);
    border: 1.5px solid rgba(212, 165, 116, 0.55);
    padding: 0.85rem 1.5rem;        /* slightly tighter than primary CTAs */
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: none;
    gap: 0.6rem;
}

.btn-partner:hover {
    background: rgba(212, 165, 116, 0.12);
    border-color: var(--honey, #D4A574);
    color: var(--cream-50);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -4px rgba(212, 165, 116, 0.25);
}

.btn-partner-leaf {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--honey, #D4A574);
    transition: transform 0.4s var(--ease-bounce);
}

.btn-partner:hover .btn-partner-leaf {
    transform: rotate(-12deg) scale(1.15);
    color: var(--cream-50);
}

.btn-partner-ext {
    font-size: 0.95rem;
    font-weight: 400;
    opacity: 0.7;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.btn-partner:hover .btn-partner-ext {
    transform: translate(2px, -2px);
    opacity: 1;
}

/* ---- Top row: Booking badge + partner CTA in same line ----
   Centered horizontally as a group; wraps gracefully on narrow viewports. */
.hero-toprow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.hero-toprow .hero-badge {
    margin-bottom: 0;        /* toprow controls spacing instead of badge */
}

/* Partner CTA when used inside the top row.
   Compact ghost styling matched in height to the Booking badge.
   Sage backdrop matches the header tone for visual cohesion. */
.btn-partner--badge {
    margin: 0;
    background: rgba(61, 72, 54, 0.85);          /* matches header sage */
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-color: rgba(212, 165, 116, 0.7);
    color: #ffd9a8;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s var(--ease-out) 0.18s both;
}

.btn-partner--badge:hover {
    background: rgba(42, 48, 37, 0.92);          /* matches scrolled header */
    border-color: var(--honey, #D4A574);
    color: var(--cream-50);
}


/* ---------- HERO FEATURES (cream glass strip) ---------- */
/* ==========================================================================
   HERO TRUST STRIP — refined, monoline icon row
   ==========================================================================
   Replaces the previous emoji-based card with an inline SVG icon row that
   feels consistent and "premium hospitality" rather than playful emoji.
   Each amenity is shown as a small honey-gold outline icon plus a label,
   separated by hairline vertical dividers. */

.hero-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 920px;
    margin: 4.5rem auto 0;
    padding: 1.4rem 2rem;
    /* Subtle frosted backdrop — much lighter than before so it reads as
       a "credentials line" rather than a separate card. */
    background: rgba(254, 252, 247, 0.08);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(254, 252, 247, 0.18);
    border-radius: var(--radius-pill);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.18),
        0 1px 0 rgba(254, 252, 247, 0.1) inset;
    animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
}

.feature-item {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.3rem 1.6rem;
    color: var(--cream-50);
    border-right: 1px solid rgba(254, 252, 247, 0.18);
    transition: color 0.3s var(--ease);
}

.feature-item:last-child { border-right: none; }
.feature-item:hover     { color: var(--honey); }

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--honey);                    /* honey gold outline icons */
    flex-shrink: 0;
    transition: transform 0.3s var(--ease-bounce);
}

.feature-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-text {
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* ---------- Booking-style rating cell ----------
   The middle item of the trust strip is styled as a compact Booking.com
   review widget: a solid Booking-blue square with the "10" score, paired
   with the official "Εξαιρετικό" label and review-count attribution.
   This anchors social proof directly in the hero. */

.feature-item--rating {
    /* Slightly more breathing room around the badge */
    padding: 0.3rem 1.8rem;
    gap: 0.85rem;
}

.booking-score {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #003B95;                  /* Authentic Booking.com blue */
    color: #ffffff;
    font-family: var(--font-body, system-ui);
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 7px 7px 7px 0;          /* Booking's distinctive bottom-left corner */
    letter-spacing: -0.5px;
    line-height: 1;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 26, 60, 0.35);
}

/* Two-line text version (label + meta) replaces the single uppercase text */
.feature-text--rating {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    line-height: 1.2;
    text-transform: none;        /* override base uppercase */
    letter-spacing: 0;            /* override base 1px */
    white-space: normal;
}

.rating-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--cream-50);
    letter-spacing: 0.3px;
}

.rating-meta {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(254, 252, 247, 0.72);     /* dimmed cream */
    letter-spacing: 0.2px;
}

/* "Booking.com" wordmark — branded blue accent within the meta line */
.booking-brand {
    color: #6db8ff;                       /* Booking sky blue (lighter for dark bg) */
    font-weight: 600;
}



/* Hero scroll cue */
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(254, 252, 247, 0.75);
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
    animation: fadeInUp 1s var(--ease-out) 0.9s both;
}

.hero-scroll::after {
    content: '';
    display: block;
    width: 1px; height: 36px;
    margin: 0.75rem auto 0;
    background: linear-gradient(180deg, rgba(254, 252, 247, 0.7), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50%      { opacity: 1;   transform: scaleY(1); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25%      { transform: rotate(-3deg); }
    75%      { transform: rotate(3deg); }
}

/* ==========================================================================
   APARTMENTS SECTION
   ========================================================================== */
.apartments-section {
    background: var(--cream-100);
    padding-top: 8rem;
    padding-bottom: 8rem;
    position: relative;
}

.apartments-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--cream-50), transparent);
    pointer-events: none;
}

.apartments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    position: relative;
}

.apartment-card {
    background: var(--cream-50);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1.5px solid var(--border-soft);
    transition: all 0.5s var(--ease-out);
    position: relative;
    isolation: isolate;
}

.apartment-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--grad-terra);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s var(--ease-out);
    z-index: 3;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.apartment-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--terra-200);
}

.apartment-card:hover::before { transform: scaleX(1); }

.apartment-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    cursor: pointer;
    background: var(--cream-300);
}

.apartment-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.apartment-card:hover .apartment-image img { transform: scale(1.08); }

.apartment-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(74, 41, 24, 0.45) 100%);
    pointer-events: none;
}

.apartment-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    padding: 0.45rem 1rem;
    background: var(--glass-strong);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    color: var(--terra-700);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.apartment-content {
    padding: 1.85rem;
}

.apartment-title {
    font-family: var(--font-body);
    font-size: 1.55rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.4px;
}

.apartment-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    padding: 0.85rem 0;
    border-top: 1.5px dashed var(--border-soft);
    border-bottom: 1.5px dashed var(--border-soft);
}

.apartment-features .feature {
    font-size: 0.84rem;
    color: var(--sage-700);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.75rem;
    background: var(--sage-50);
    border-radius: var(--radius-pill);
    letter-spacing: 0.2px;
}

.apartment-description {
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 1.75rem;
    font-size: 0.96rem;
    font-weight: 500;
}

.apartment-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.apartment-price {
    font-family: var(--font-body);
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--terra-600);
    line-height: 1;
}

.apartment-price .price-period {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-left: 0.25rem;
}

.apartment-footer .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    background: var(--grad-terra);
    color: var(--cream-50);
    box-shadow: var(--shadow-warm);
}

.apartment-footer .btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 14px 30px rgba(201, 123, 91, 0.45);
}

.apartment-footer .btn::after {
    content: '→';
    margin-left: 0.4rem;
    transition: transform 0.3s var(--ease);
}

.apartment-footer .btn:hover::after { transform: translateX(3px); }

/* ==========================================================================
   REVIEWS SECTION
   ========================================================================== */
.reviews-section {
    background: var(--cream-50);
    position: relative;
}

.rating-overall {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: var(--terra-50);
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--terra-100);
}

.rating-number {
    font-family: var(--font-body);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--terra-600);
    line-height: 1;
}

.rating-stars {
    color: var(--honey);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.rating-text {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.88rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 1.75rem;
}

.review-card {
    background: var(--cream-50);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--border-soft);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 0.85rem;
    right: 1.25rem;
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 1;
    color: var(--terra-100);
    opacity: 0.7;
    pointer-events: none;
}

.review-card:hover {
    border-color: var(--terra-200);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.reviewer-info {
    display: flex;
    gap: 0.85rem;
    align-items: center;
}

.reviewer-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--grad-warm);
    color: var(--cream-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.15rem;
    box-shadow: var(--shadow-warm);
}

.reviewer-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
}

.review-date {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 2px;
    font-weight: 500;
}

.review-rating {
    color: var(--honey);
    font-size: 1rem;
    letter-spacing: 1px;
}

.review-text {
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 1.25rem;
    font-size: 0.96rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.review-source {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    background: var(--sage-100);
    color: var(--sage-700);
    border-radius: var(--radius-pill);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ==========================================================================
   AWARD SHOWCASE — between hero and apartments.
   Surfaces both Booking.com awards above the fold (after a single scroll).
   ========================================================================== */
.award-showcase {
    background: linear-gradient(180deg, var(--cream-50) 0%, var(--cream-100) 100%);
    padding: 4.5rem 2rem;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-soft);
}

/* Soft warm radial behind the awards — premium glow without illustrations */
.award-showcase::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 70%; height: 180%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(212, 165, 116, 0.10), transparent 65%);
    pointer-events: none;
}

.award-showcase-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.award-showcase-title {
    font-family: var(--font-body);
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
}

.award-showcase-title em {
    font-style: italic;
    font-weight: 600;
    color: var(--terra-600);
}

.award-showcase-sub {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.award-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 1;
}

.award-showcase-card {
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 14px 40px rgba(15, 76, 117, 0.16),
        0 0 0 1px var(--border-soft);
    transition: all 0.5s var(--ease-bounce);
    background: var(--cream-50);
    text-decoration: none;
}

.award-showcase-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 22px 56px rgba(15, 76, 117, 0.22),
        0 0 0 1px var(--terra-200);
}

/* Each card preserves its own native aspect ratio so neither asset gets
   cropped. With align-items:center on the grid, both stay vertically
   aligned even when their heights differ. */
.award-showcase-card--still { aspect-ratio: 1000 / 703; }   /* JPG award badge */
.award-showcase-card--video { aspect-ratio: 700 / 300; }    /* Animated banner */

.award-showcase-card img,
.award-showcase-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mobile: stack vertically */
@media (max-width: 768px) {
    .award-showcase { padding: 3rem 1.25rem; }
    .award-showcase-grid { grid-template-columns: 1fr; gap: 1rem; max-width: 460px; }
    .award-showcase-header { margin-bottom: 1.75rem; }
    .award-showcase-title { font-size: 1.55rem; }
    .award-showcase-sub { font-size: 0.85rem; letter-spacing: 1.5px; }
}

/* ==========================================================================
   AWARD TROPHY — Booking.com Traveller Review Awards 2026
   Sits between the reviews section header and the reviews grid.
   ========================================================================== */
.award-trophy {
    display: block;
    margin: 3rem auto 4rem;
    max-width: 540px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--cream-50);
    border: 4px solid var(--cream-50);
    box-shadow:
        0 18px 48px rgba(15, 76, 117, 0.18),
        0 4px 12px rgba(15, 76, 117, 0.08),
        0 0 0 1px var(--border-soft);
    transition: all 0.5s var(--ease-bounce);
    position: relative;
    isolation: isolate;
}

/* Soft golden glow corner accent — hints "premium award" without being loud */
.award-trophy::before {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 120px; height: 120px;
    background: radial-gradient(circle, var(--honey) 0%, transparent 70%);
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease);
}

.award-trophy:hover {
    transform: translateY(-6px);
    box-shadow:
        0 28px 64px rgba(15, 76, 117, 0.25),
        0 6px 16px rgba(15, 76, 117, 0.12),
        0 0 0 1px var(--terra-200);
}

.award-trophy:hover::before { opacity: 0.6; }

.award-trophy img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: calc(var(--radius-lg) - 4px);
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   TRUST STRIP — animated Booking.com banner near footer
   ========================================================================== */
.trust-strip {
    background: var(--cream-100);
    padding: 4rem 2rem;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    position: relative;
    overflow: hidden;
}

.trust-strip::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 80%; height: 200%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(212, 165, 116, 0.08), transparent 60%);
    pointer-events: none;
}

.trust-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.trust-video {
    width: 100%;
    max-width: 460px;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
    box-shadow:
        0 12px 36px rgba(15, 76, 117, 0.18),
        0 0 0 1px var(--border-soft);
    /* MP4/WebM tend to render edge-aliased; soften with subtle inset */
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.trust-video img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
}

.trust-caption {
    text-align: left;
    max-width: 320px;
}

.trust-caption strong {
    display: block;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.45rem;
    color: var(--text-primary);
    line-height: 1.25;
    margin-bottom: 0.5rem;
    letter-spacing: -0.4px;
}

.trust-caption span {
    display: block;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.55;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */
.gallery-section {
    background: var(--cream-100);
    padding-bottom: 8rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
    aspect-ratio: 4 / 3;
    background: var(--cream-300);
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s var(--ease-bounce), box-shadow 0.4s var(--ease);
}

.gallery-item:nth-child(3n+1) { aspect-ratio: 4 / 5; }
.gallery-item:nth-child(4n+2) { aspect-ratio: 5 / 4; }

.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}

.gallery-item:hover {
    transform: translateY(-4px) rotate(-0.5deg);
    box-shadow: var(--shadow-lg);
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(74, 41, 24, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-title {
    color: var(--cream-50);
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    transform: translateY(10px);
    transition: transform 0.4s var(--ease-bounce) 0.05s;
    letter-spacing: -0.3px;
}

.gallery-item:hover .gallery-title { transform: translateY(0); }

.gallery-placeholder {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--grad-cream);
    color: var(--terra-400);
    gap: 0.5rem;
}

/* ==========================================================================
   LOCATION SECTION (warm sage-tinted dark)
   ========================================================================== */
.location-section,
#location {
    background: var(--sage-800);
    color: var(--cream-50);
    position: relative;
    overflow: hidden;
}

.location-section::before,
#location::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 60%;
    background: radial-gradient(ellipse at 50% 0%, rgba(212, 165, 116, 0.25), transparent 70%);
    pointer-events: none;
}

.location-section::after,
#location::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50%;
    background: radial-gradient(ellipse at 80% 100%, rgba(201, 123, 91, 0.2), transparent 60%);
    pointer-events: none;
}

.location-section .section-title,
#location .section-title { color: var(--cream-50); }

.location-section .section-title em,
#location .section-title em { color: var(--honey); }

.location-section .section-tag,
#location .section-tag {
    background: rgba(212, 165, 116, 0.15);
    color: var(--honey);
    border-color: rgba(212, 165, 116, 0.35);
}

.location-section .section-tag::before,
#location .section-tag::before { background: var(--terra-400); }

.location-section .section-description,
#location .section-description { color: rgba(254, 252, 247, 0.78); }

/* ==========================================================================
   CONTACT (light section)
   ========================================================================== */
.contact-section,
#contact {
    background: var(--cream-50);
}

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 54px; height: 54px;
    background: var(--grad-terra);
    color: var(--cream-50);
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: var(--shadow-warm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-bounce);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 16px 36px rgba(201, 123, 91, 0.5);
}

/* ==========================================================================
   BOOKING MESSAGE
   ========================================================================== */
#bookingMessage {
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.75rem;
    font-weight: 600;
    font-size: 0.98rem;
    display: none;
    white-space: pre-line;
    text-align: center;
    border: 1.5px solid;
}

#bookingMessage.success {
    background: var(--sage-50);
    color: var(--sage-800);
    border-color: var(--sage-300);
}

#bookingMessage.error {
    background: rgba(239, 68, 68, 0.08);
    color: #991b1b;
    border-color: rgba(239, 68, 68, 0.3);
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE — TABLET
   ========================================================================== */
@media (max-width: 1024px) {
    section { padding: 5rem 1.5rem; }
    #header nav { padding: 1rem 1.5rem; }
    .hero { padding: 11rem 1.5rem 5rem; background-attachment: scroll; }

    /* Trust strip (3 items): stays in row but tighter */
    .hero-features {
        max-width: 720px;
        padding: 1.2rem 1rem;
    }
    .feature-item {
        padding: 0.4rem 1.1rem;
    }
}

/* ==========================================================================
   RESPONSIVE — MOBILE
   ========================================================================== */
@media (max-width: 768px) {
    section { padding: 4rem 1.25rem; }

    #header nav { padding: 0.65rem 1.25rem; gap: 0.75rem; }
    .logo--right { display: none; }              /* one logo only on mobile */
    .logo-mark { width: 42px; height: 42px; font-size: 1.3rem; }
    .logo-text h1 { font-size: 1.2rem; }
    .logo-subtitle { display: none; }

    .menu-toggle { display: flex; align-items: center; justify-content: center; }

    #menu {
        position: fixed;
        top: 0; right: -100%;
        width: 85%;
        max-width: 340px;
        height: 100vh;
        background: var(--cream-50);
        flex-direction: column;
        align-items: stretch;
        padding: 5.5rem 1.5rem 2rem;
        gap: 0;
        box-shadow: -10px 0 40px rgba(122, 84, 56, 0.15);
        transition: right 0.5s var(--ease);
        overflow-y: auto;
    }

    #menu.active { right: 0; }

    #menu li { width: 100%; margin-bottom: 0.4rem; }

    #menu a {
        width: 100%;
        text-align: left;
        padding: 1rem 1.25rem;
        font-size: 1.05rem;
        border-radius: var(--radius-md);
        color: var(--text-body) !important;
    }

    #menu a:not(.nav-cta):hover {
        background: var(--terra-50) !important;
        color: var(--terra-600) !important;
    }

    #menu a.nav-cta {
        margin: 1rem 0 0;
        text-align: center;
        color: var(--cream-50) !important;
    }

    .hero { min-height: 90vh; padding: 9rem 1.25rem 4rem; }
    .hero-title { font-size: 2.4rem; }
    .hero-subtitle { font-size: 0.9rem; letter-spacing: 2px; }
    .hero-description { font-size: 1rem; margin: 1.5rem auto 2rem; }
    .hero-cta { flex-direction: column; gap: 0.75rem; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .hero-features {
        flex-direction: column;
        max-width: 280px;
        margin-top: 3rem;
        padding: 0.5rem 1.25rem;
        border-radius: var(--radius-lg);
    }
    .feature-item {
        width: 100%;
        padding: 0.75rem 0;
        gap: 0.75rem;
        justify-content: flex-start;
        border-right: none;
        border-bottom: 1px solid rgba(254, 252, 247, 0.18);
    }
    .feature-item:last-child { border-bottom: none; }
    .feature-icon svg { width: 20px; height: 20px; }
    .feature-text { font-size: 0.8rem; letter-spacing: 1px; }

    .section-title { font-size: 1.95rem; }
    .section-description { font-size: 1rem; }

    .apartments-grid,
    .reviews-grid,
    .gallery-grid { grid-template-columns: 1fr; gap: 1.25rem; }

    .apartment-content { padding: 1.5rem; }
    .apartment-footer { flex-direction: column; align-items: stretch; }
    .apartment-footer .btn { justify-content: center; }

    .review-card { padding: 1.5rem; }

    /* Award trophy + trust strip on mobile */
    .award-trophy { margin: 2rem auto 3rem; border-width: 3px; }
    .trust-strip { padding: 2.75rem 1.25rem; }
    .trust-content { flex-direction: column; gap: 1.5rem; text-align: center; }
    .trust-caption { text-align: center; }
    .trust-caption strong { font-size: 1.2rem; }

    .back-to-top { bottom: 1.5rem; right: 1.5rem; width: 48px; height: 48px; }
}

/* ==========================================================================
   PREFERS REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .hero { background-attachment: scroll; }
}