/* ═══════════════════════════════════════════════
   פנטהאוז נוף יונה — MEDITERRANEAN OLIVE & TERRACOTTA
   Complete stylesheet — Hebrew RTL only
   Mobile-optimized
   ═══════════════════════════════════════════════ */

   :root {
    /* Turquoise — couleur clé (salle de bain, mer) */
    --turq-deep:     #0A7A78;
    --turq:          #0FAAA6;
    --turq-mid:      #2EC4BF;
    --turq-light:    #7DDDD9;
    --turq-pale:     #C0EFED;
    --turq-wash:     #E8F9F8;

    /* Soleil / Or chaud */
    --sun-deep:      #C47C10;
    --sun:           #E89C20;
    --sun-light:     #F5BE60;
    --sun-pale:      #FAEABB;
    --sun-wash:      #FDF6E0;

    /* Blanc cassé / crème neutre */
    --cream-dark:    #B8A080;
    --cream:         #D4BFA0;
    --cream-light:   #E8D8C0;
    --cream-pale:    #F5EEE4;
    --cream-wash:    #FDFAF6;

    /* Backgrounds */
    --bg-body:       #FBFAF8;
    --bg-card:       #FFFFFF;
    --bg-alt:        #F0FAFA;

    /* Text */
    --text-primary:  #0F2B2A;
    --text-secondary:#3A5E5D;
    --text-muted:    #7A9E9D;

    /* Accents */
    --accent:        var(--turq);
    --accent-hover:  var(--turq-deep);
    --accent-warm:   var(--sun);

    /* Borders & shadows */
    --border:        #C8E8E7;
    --border-light:  #DFF4F3;
    --shadow-soft:   0 2px 16px rgba(10, 122, 120, 0.07);
    --shadow-med:    0 8px 32px rgba(10, 122, 120, 0.11);
    --shadow-lg:     0 16px 48px rgba(10, 122, 120, 0.17);

    /* Layout */
    --section-gap:   100px;
    --radius:        10px;
    --radius-lg:     16px;
    --radius-xl:     24px;
    --footer-bg:     #062626;
    --footer-text:   #7ACBC8;
    --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-h:      70px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
}

body {
    font-family: "Heebo", "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-body);
    direction: rtl;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

h1, h2, h3, h4 {
    font-family: "Noto Serif Hebrew", "Heebo", serif;
    font-weight: 400;
    line-height: 1.3;
    color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); }

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-gap) 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--turq);
    background: var(--turq-wash);
    padding: 5px 18px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.section-intro {
    max-width: 620px;
    margin: 14px auto 0;
    color: var(--text-secondary);
}


/* ═══════════ HEADER ═══════════ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    transition: var(--transition);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(253, 250, 245, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 12px rgba(10, 122, 120, 0.10);
}

.header-content {
    display: flex;
    align-items: center;
    height: var(--header-h);
    gap: 16px;
}

.logo { flex-shrink: 0; }

.logo-link {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-family: "Noto Serif Hebrew", serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--turq-deep);
    transition: var(--transition);
}

.site-header:not(.scrolled) .logo-main {
    color: #fff;
}

.logo-sub {
    font-family: "Heebo", sans-serif;
    font-size: 0.52rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--cream-light);
    font-weight: 500;
}

.site-header.scrolled .logo-sub {
    color: var(--turq-light);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.main-nav a {
    font-size: 0.84rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    padding: 6px 13px;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.site-header.scrolled .main-nav a {
    color: var(--text-secondary);
}

.main-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.site-header.scrolled .main-nav a:hover {
    color: var(--accent);
    background: var(--turq-wash);
}

.btn-nav-cta {
    background: var(--accent) !important;
    color: #fff !important;
    font-weight: 600 !important;
    border-radius: 999px !important;
    padding: 8px 22px !important;
}

.btn-nav-cta:hover {
    background: var(--accent-hover) !important;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

.site-header.scrolled .menu-toggle span {
    background: var(--text-primary);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ═══════════ HERO ═══════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: url('images/hero.jpg') center 40%/cover no-repeat;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 780px;
    padding: 0 24px;
    margin-bottom: 8vh;
}

.hero-content h1 {
    color: #fff;
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    font-weight: 300;
    margin: 14px 0 10px;
    line-height: 1.25;
    text-shadow:
        0 0 6px rgba(0,0,0,1),
        0 0 14px rgba(0,0,0,1),
        0 0 30px rgba(0,0,0,0.85),
        0 0 60px rgba(0,0,0,0.65);
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(0,0,0,0.30);
    padding: 6px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.30);
    text-shadow: 0 0 6px rgba(0,0,0,0.7);
}

.hero-subtitle {
    font-family: "Heebo", sans-serif;
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    font-weight: 300;
    color: #fff;
    margin-top: 4px;
    margin-bottom: 36px;
    line-height: 1.8;
    text-shadow:
        0 0 5px rgba(0,0,0,1),
        0 0 12px rgba(0,0,0,1),
        0 0 28px rgba(0,0,0,0.85),
        0 0 50px rgba(0,0,0,0.60);
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ═══════════ BUTTONS ═══════════ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--accent);
    color: #fff;
    font-family: "Heebo", sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
    justify-content: center;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 170, 166, 0.35);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: #fff;
    font-family: "Heebo", sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(255, 255, 255, 0.52);
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: #fff;
}

.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: transparent;
    color: var(--accent);
    font-family: "Heebo", sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    border: 2px solid var(--turq-pale);
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
}

.btn-secondary-outline:hover {
    border-color: var(--accent);
    background: var(--turq-wash);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #25D366;
    color: #fff;
    font-family: "Heebo", sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
}

.btn-whatsapp:hover {
    background: #1EBE57;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-full { width: 100%; }


/* ═══════════ QUICK FACTS ═══════════ */
.quick-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-med);
    margin-top: -56px;
    position: relative;
    z-index: 10;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.fact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 16px;
    gap: 8px;
    position: relative;
}

.fact-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--border-light);
}

.fact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent);
    background: var(--turq-wash);
    margin-bottom: 4px;
}

.fact-value {
    font-family: "Noto Serif Hebrew", serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.fact-label {
    font-size: 0.76rem;
    color: var(--text-muted);
}


/* ═══════════ SPLIT LAYOUT ═══════════ */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}


/* ═══════════ ABOUT ═══════════ */
.about-text h2 { margin-bottom: 20px; }

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.85;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-med);
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--turq-wash);
    border-radius: var(--radius);
    font-size: 0.87rem;
    font-weight: 500;
    color: var(--text-primary);
}

.hi-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    font-size: 1rem;
    flex-shrink: 0;
    color: var(--accent);
    box-shadow: var(--shadow-soft);
}


/* ═══════════ ROOM CARDS ═══════════ */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-med);
}

.room-img-wrap {
    overflow: hidden;
    height: 220px;
}

.room-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.card:hover .room-thumb {
    transform: scale(1.06);
}

.room-content {
    padding: 24px;
}

.room-badge {
    display: inline-block;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sun-deep);
    background: var(--sun-pale);
    padding: 4px 14px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.room-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.room-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.room-card li {
    font-size: 0.87rem;
    color: var(--text-secondary);
    padding: 5px 0;
    padding-inline-start: 20px;
    position: relative;
    line-height: 1.6;
}

.room-card li::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--turq-pale);
    border: 2px solid var(--turq-mid);
}


/* ═══════════ BATHROOMS STRIP ═══════════ */
.bathrooms-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
    padding: 28px;
    background: var(--turq-wash);
    border-radius: var(--radius-xl);
    border: 1px solid var(--turq-pale);
}

.bath-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.bath-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--accent);
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
}

.bath-item strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
}

.bath-item span {
    font-size: 0.78rem;
    color: var(--text-muted);
}


/* ═══════════ AMENITIES ═══════════ */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 16px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.amenity-item:hover {
    border-color: var(--turq-pale);
    box-shadow: var(--shadow-soft);
    background: var(--turq-wash);
}

.amenity-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--accent);
    background: var(--turq-wash);
}

.amenity-item span:last-child {
    font-size: 0.87rem;
    font-weight: 500;
    color: var(--text-primary);
}


/* ═══════════ SHABBAT SECTION ═══════════ */
.shabbat-section {
    background: linear-gradient(148deg, #edfbfa 0%, #d0f0ee 100%);
    position: relative;
    overflow: hidden;
}

.shabbat-section::before {
    content: '✡';
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
    font-size: 260px;
    opacity: 0.04;
    color: var(--turq-light);
    pointer-events: none;
    line-height: 1;
}

.section-eyebrow-warm {
    color: var(--sun-deep) !important;
    background: var(--sun-pale) !important;
}

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

.shabbat-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 26px 22px;
    border-bottom: 3px solid var(--sun-light);
    box-shadow: 0 2px 12px rgba(14, 200, 195, 0.10);
    transition: var(--transition);
}

.shabbat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(14, 200, 195, 0.18);
}

.shabbat-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--sun-pale), var(--sun-wash));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sun-deep);
    font-size: 1.1rem;
    margin-bottom: 14px;
    flex-shrink: 0;
}

.shabbat-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.shabbat-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.65;
}


/* ═══════════ GALLERY ═══════════ */
.gallery-grid {
    columns: 3;
    column-gap: 14px;
}

.gallery-grid img {
    width: 100%;
    break-inside: avoid;
    margin-bottom: 14px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
    filter: brightness(0.88);
}


/* ═══════════ LOCATION ═══════════ */
.location-split { align-items: start; }

.location-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.85;
}

.map-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-med);
}

.map-image-wrapper a { display: block; }

.map-image {
    width: 100%;
    transition: transform 0.4s ease;
}

.map-image:hover { transform: scale(1.02); }

.map-hint {
    font-size: 0.76rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 10px;
}

.location-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.location-gallery figure {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.location-gallery figure:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-med);
}

.location-gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.6s ease;
    background: var(--turq-wash);
}

/* Fallback for missing entourage images */
.location-gallery img[src*="entourage"] {
    min-height: 180px;
}

.location-gallery img:not([src*="terrace"]):not([src*="beach"]):not([src*="hero"]):not([src*="living"]) {
    /* keep natural fallback */
}

.location-gallery figure:hover img { transform: scale(1.05); }

.location-gallery figcaption {
    padding: 14px 18px;
    font-size: 0.83rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.location-gallery figcaption strong {
    color: var(--accent);
}


/* ═══════════ CONTACT ═══════════ */
.contact-split { align-items: start; }

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
}

.contact-method:not(:last-child) {
    border-bottom: 1px solid var(--border-light);
}

.contact-method > i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    color: var(--accent);
    background: var(--turq-wash);
}

.contact-method div { font-size: 0.92rem; }

.contact-method strong {
    display: block;
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-method a { color: var(--text-primary); font-weight: 500; }
.contact-method a:hover { color: var(--accent); }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form .form-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.contact-form input,
.contact-form textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: "Heebo", sans-serif;
    font-size: 0.92rem;
    background: var(--bg-card);
    color: var(--text-primary);
    transition: var(--transition);
    width: 100%;
    direction: rtl;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(15, 170, 166, 0.14);
}


/* ═══════════ FAQ ACCORDION ═══════════ */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: start;
    font-family: "Heebo", sans-serif;
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--text-primary);
    gap: 16px;
    transition: var(--transition);
}

.faq-question:hover { color: var(--accent); }

.faq-chevron {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--turq-wash);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    color: var(--accent);
    transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    background: var(--accent);
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer-inner {
    padding: 0 0 20px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-item.active .faq-answer { max-height: 300px; }


/* ═══════════ LIGHTBOX ═══════════ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.lightbox.open {
    opacity: 1;
    pointer-events: all;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 38, 38, 0.92);
    backdrop-filter: blur(8px);
}

.lightbox-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    object-fit: contain;
}

.lightbox-close {
    position: fixed;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
}

.lightbox-close:hover { background: rgba(255, 255, 255, 0.3); }

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255, 255, 255, 0.3); }


/* ═══════════ FOOTER ═══════════ */
.site-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand p {
    margin-top: 14px;
    font-size: 0.85rem;
    line-height: 1.75;
}

.footer-logo-main { color: #fff !important; }

.footer-col h4 {
    color: #fff;
    font-family: "Heebo", sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    font-size: 0.84rem;
    padding: 4px 0;
    color: var(--footer-text);
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--cream-light);
    padding-inline-start: 5px;
}

.footer-bottom {
    margin-top: 48px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 0.78rem;
}


/* ═══════════ WHATSAPP FLOAT ═══════════ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 900;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    fill: #fff;
}


/* ═══════════ SCROLL REVEAL ═══════════ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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


/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET (max-width: 768px)
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {
    :root { --section-gap: 64px; }

    /* Header / Nav */
    .menu-toggle { display: flex; }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--footer-bg);
        flex-direction: column;
        padding: 90px 32px 40px;
        gap: 4px;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        z-index: 999;
    }

    body.nav-open .main-nav { transform: translateX(0); }

    .main-nav a {
        color: rgba(255, 255, 255, 0.82) !important;
        font-size: 1rem;
        padding: 12px 16px;
    }

    .main-nav a:hover {
        background: rgba(255, 255, 255, 0.08) !important;
        color: #fff !important;
    }

    /* Hero */
    .hero { min-height: 100svh; }

    .hero-content {
        padding: 0 16px;
        margin-bottom: 6vh;
    }

    .hero-content h1 {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
        line-height: 1.35;
    }

    /* Quick Facts */
    .quick-facts {
        grid-template-columns: 1fr 1fr;
        margin-top: -36px;
    }

    .fact-item:nth-child(2)::after { display: none; }

    /* Split */
    .split {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* About */
    .about-image { order: -1; }
    .about-highlights { grid-template-columns: 1fr; }

    /* Cards */
    .cards { grid-template-columns: 1fr; }

    /* Bathrooms strip */
    .bathrooms-strip {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        padding: 20px;
    }

    /* Gallery */
    .gallery-grid { columns: 2; column-gap: 10px; }
    .gallery-grid img { margin-bottom: 10px; }

    /* Shabbat */
    .shabbat-grid { grid-template-columns: 1fr 1fr; }

    /* Location */
    .location-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    /* Contact */
    .btn-whatsapp,
    .btn-secondary-outline { width: 100%; justify-content: center; }

    /* FAQ */
    .faq-question { font-size: 0.9rem; padding: 16px 0; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

    /* Lightbox */
    .lightbox-prev,
    .lightbox-next { width: 40px; height: 40px; font-size: 1.3rem; }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-close { top: 16px; right: 16px; width: 40px; height: 40px; }

    /* WhatsApp float */
    .whatsapp-float { bottom: 20px; left: 20px; width: 52px; height: 52px; }
    .whatsapp-icon { width: 28px; height: 28px; }
}


/* ═══════════════════════════════════════════════
   RESPONSIVE — PHONE (max-width: 480px)
   ═══════════════════════════════════════════════ */
@media (max-width: 480px) {
    :root { --section-gap: 48px; }

    .container { padding: 0 16px; }

    /* Hero */
    .hero-content h1 { font-size: 1.45rem; line-height: 1.4; }
    .hero-subtitle { font-size: 0.85rem; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary { width: 100%; justify-content: center; }

    /* Quick Facts */
    .quick-facts { grid-template-columns: 1fr 1fr; border-radius: var(--radius-lg); }
    .fact-item { padding: 18px 10px; }
    .fact-icon { width: 40px; height: 40px; font-size: 0.9rem; }
    .fact-value { font-size: 1.1rem; }
    .fact-label { font-size: 0.7rem; }

    /* Section headers */
    .section-header { margin-bottom: 32px; }
    .section-header h2 { font-size: 1.4rem; }
    .section-intro { font-size: 0.87rem; }

    /* Gallery */
    .gallery-grid { columns: 1; }

    /* Bathrooms strip */
    .bathrooms-strip { grid-template-columns: 1fr; }

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

    /* Shabbat */
    .shabbat-grid { grid-template-columns: 1fr; }

    /* Location */
    .location-gallery { grid-template-columns: 1fr; }

    /* Contact */
    .contact-card { padding: 20px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { margin-top: 32px; }

    /* Lightbox */
    .lightbox-image { max-width: 95vw; max-height: 75vh; }
}