/* ================================================
   CASA SOFIA — Main Stylesheet
   Brand colors, mobile-first, RTL Hebrew
================================================ */

/* ---- CSS Variables (Brand Palette) ---- */
:root {
    --sand:      #E8DCC8;
    --terracotta:#C4654A;
    --olive:     #6B7A4F;
    --charcoal:  #2C2C2C;
    --cream:     #FAF6EF;
    --gold:      #C9A84C;
    --white:     #FFFFFF;
    --text-main: #2C2C2C;
    --text-muted:#6B6B6B;
    --shadow:    0 4px 24px rgba(44,44,44,0.10);
    --shadow-sm: 0 2px 8px rgba(44,44,44,0.08);
    --radius:    12px;
    --radius-sm: 8px;
    --transition:all 0.28s ease;
    --nav-height:72px;
}

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

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

body {
    font-family: 'Assistant', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-main);
    background-color: var(--cream);
    direction: rtl;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Frank Ruhl Libre', 'Georgia', serif;
    line-height: 1.25;
    color: var(--charcoal);
}

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

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

ul { list-style: none; }

/* ---- Container ---- */
.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Section backgrounds ---- */
.section-sand { background-color: var(--sand); }
.section-dark  { background-color: var(--charcoal); }

/* ---- Section headers ---- */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.heading-light   { color: var(--cream) !important; }
.subtitle-light  { color: rgba(250,246,239,0.75); font-size: 1.1rem; }


/* ================================================
   BUTTONS
================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Assistant', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
    text-align: center;
}

.btn-lg { padding: 16px 36px; font-size: 1.1rem; }

.btn-primary {
    background: var(--terracotta);
    color: var(--white);
    border-color: var(--terracotta);
}
.btn-primary:hover {
    background: #b05540;
    border-color: #b05540;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196,101,74,0.35);
}

.btn-secondary {
    background: var(--olive);
    color: var(--white);
    border-color: var(--olive);
}
.btn-secondary:hover {
    background: #5a6842;
    border-color: #5a6842;
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
}

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

.btn-kitchen {
    display: block;
    width: 100%;
    background: transparent;
    color: var(--cream);
    border: 2px solid rgba(250,246,239,0.4);
    border-radius: 50px;
    padding: 12px 20px;
    font-family: 'Assistant', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    margin-top: auto;
}
.btn-kitchen:hover {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: var(--white);
}

.btn-whatsapp-xl {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: var(--white);
    padding: 18px 48px;
    border-radius: 50px;
    font-family: 'Assistant', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 24px rgba(37,211,102,0.35);
}
.btn-whatsapp-xl:hover {
    background: #1ebe5c;
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(37,211,102,0.45);
}
.btn-whatsapp-xl i { font-size: 1.4rem; }


/* ================================================
   FLOATING WHATSAPP
================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    padding: 14px 20px;
    border-radius: 50px;
    font-family: 'Assistant', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(37,211,102,0.40);
    transition: var(--transition);
    animation: float-pulse 3s ease-in-out infinite;
}

.whatsapp-float i { font-size: 1.5rem; }
.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

.whatsapp-label { font-size: 0.9rem; }

@keyframes float-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.40); }
    50%       { box-shadow: 0 4px 30px rgba(37,211,102,0.65); }
}

/* Scroll to top */
.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 998;
    width: 44px;
    height: 44px;
    background: var(--terracotta);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
}
.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
}
.scroll-top:hover {
    background: #b05540;
    transform: translateY(-3px);
}


/* ================================================
   NAVIGATION
================================================ */
#navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 900;
    background: rgba(250,246,239,0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
    height: var(--nav-height);
}

#navbar.scrolled {
    border-bottom-color: var(--sand);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-svg {
    width: 52px;
    height: 40px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-casa {
    font-family: 'Assistant', sans-serif;
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    color: var(--olive);
    text-transform: uppercase;
}

.logo-sofia {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: 0.08em;
}

/* Desktop nav links */
.nav-links {
    display: none;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-family: 'Assistant', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    left: 0;
    height: 2px;
    background: var(--terracotta);
    transform: scaleX(0);
    transition: transform 0.25s ease;
    transform-origin: right;
}

.nav-links a:hover { color: var(--terracotta); }
.nav-links a:hover::after { transform: scaleX(1); }

/* Nav actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-cta {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--cream);
    border-top: 1px solid var(--sand);
    padding: 16px 20px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-link {
    font-family: 'Assistant', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    padding: 14px 0;
    border-bottom: 1px solid var(--sand);
    transition: color 0.2s;
}

.mobile-link:last-child { border-bottom: none; }
.mobile-link:hover { color: var(--terracotta); }

.mobile-link-cta {
    color: var(--terracotta);
    font-weight: 700;
    margin-top: 8px;
}


/* ================================================
   SECTION 1 — HERO
================================================ */
#hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--sand); /* fallback */
    transform: scale(1.04);
    transition: transform 8s ease-out;
}

.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(44,44,44,0.15) 0%,
        rgba(44,44,44,0.25) 50%,
        rgba(44,44,44,0.60) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: var(--nav-height);
}

.hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-headline {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-sub-he {
    font-family: 'Assistant', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255,255,255,0.90);
    margin-bottom: 8px;
    font-weight: 400;
}

.hero-sub-en {
    font-family: 'Assistant', sans-serif;
    font-size: clamp(0.85rem, 2vw, 1rem);
    color: rgba(255,255,255,0.65);
    margin-bottom: 28px;
    font-style: italic;
    direction: ltr;
    text-align: right;
}

.hero-trust {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.3);
}

.trust-badge i { color: var(--gold); }

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}


/* ================================================
   SECTION 2 — EXPERIENCE
================================================ */
#experience {
    padding: 80px 0;
    background: var(--cream);
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

/* Photo placeholder */
.photo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--sand);
    border: 2.5px dashed var(--terracotta);
    border-radius: var(--radius);
    min-height: 320px;
    padding: 32px 24px;
    text-align: center;
    color: var(--text-muted);
}

.photo-placeholder i {
    font-size: 2.5rem;
    color: var(--terracotta);
    opacity: 0.5;
    margin-bottom: 8px;
}

.ph-title {
    font-family: 'Assistant', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--terracotta);
    letter-spacing: 0.05em;
}

.ph-desc {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 1rem;
    color: var(--charcoal);
}

.ph-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

.experience-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 12px;
}

.experience-subhead {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 1.2rem;
    color: var(--terracotta);
    margin-bottom: 24px;
    font-style: italic;
}

.body-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 16px;
}

.body-bold { font-weight: 700; color: var(--charcoal); }

.offering-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 28px 0;
}

.offering-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--sand);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
}

.offering-icon { font-size: 1.6rem; flex-shrink: 0; }

.offering-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.offering-info strong {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 1rem;
    color: var(--charcoal);
}

.offering-info span {
    font-size: 0.88rem;
    color: var(--text-muted);
}


/* ================================================
   SECTION 3 — THE SPACE
================================================ */
#space {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: var(--cream);
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.feature-icon { font-size: 2rem; margin-bottom: 4px; }

.feature-he {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--charcoal);
}

.feature-en {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Space photos */
.space-photos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.space-photo-main,
.space-photo-half {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--sand);
}

.space-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.space-photo-main { height: 280px; }
.space-photo-half { height: 180px; }

.space-photo-main:hover .space-img,
.space-photo-half:hover .space-img {
    transform: scale(1.04);
}

.space-photos-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.img-fallback {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 180px;
    color: var(--text-muted);
    gap: 8px;
    font-size: 0.85rem;
}

.img-fallback i { font-size: 2rem; opacity: 0.4; }


/* ================================================
   SECTION 4 — THE VIEW
================================================ */
#view {
    padding: 0 0 80px;
}

.view-panorama-wrap {
    position: relative;
    height: 300px;
    overflow: hidden;
    margin-bottom: 60px;
}

.view-panorama {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.view-panorama-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 40%,
        rgba(250,246,239,0.95) 100%
    );
}

.view-content {
    text-align: center;
}

.view-content h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    margin-bottom: 16px;
    line-height: 1.35;
}

.view-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Distance cards — horizontal scroll on mobile */
.distance-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
}

.distance-scroll::-webkit-scrollbar { display: none; }

.distance-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 18px 24px;
    min-width: 110px;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
    border: 1px solid var(--sand);
    transition: var(--transition);
}

.distance-card:hover {
    border-color: var(--terracotta);
    transform: translateY(-3px);
}

.dest-he {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
}

.dest-en {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-align: center;
}

.drive-time {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--terracotta);
    margin-top: 4px;
}


/* ================================================
   SECTION 5 — GALLERY
================================================ */
#gallery {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    background: var(--sand);
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

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

/* Placeholder items */
.gallery-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--sand);
    border: 2px dashed rgba(196,101,74,0.35);
    color: var(--text-muted);
    text-align: center;
    padding: 20px;
    cursor: default;
}

.gallery-placeholder i {
    font-size: 1.8rem;
    color: var(--terracotta);
    opacity: 0.45;
}

.gallery-placeholder span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--terracotta);
    opacity: 0.7;
}

.gallery-placeholder small {
    font-size: 0.7rem;
    opacity: 0.6;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox.hidden { display: none; }

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.92);
    cursor: pointer;
}

.lightbox-img {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 6px;
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    z-index: 2;
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: background 0.2s;
}

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

.lightbox-close { top: 20px; left: 20px; }
.lightbox-prev  { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { left: 20px;  top: 50%; transform: translateY(-50%); }


/* ================================================
   SECTION 6 — TESTIMONIALS
================================================ */
#testimonials {
    padding: 80px 0;
    background: var(--cream);
}

.airbnb-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--sand);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 8px;
}

.airbnb-badge i { color: var(--gold); }
.airbnb-badge strong { color: var(--charcoal); font-size: 1.1rem; }

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.review-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--sand);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-stars { font-size: 1.1rem; }

.review-text {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--charcoal);
    font-style: italic;
    flex: 1;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    border-top: 1px solid var(--sand);
    padding-top: 14px;
}

.reviewer-name { font-weight: 700; }
.review-source  { color: var(--text-muted); }

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


/* ================================================
   SECTION 7 — CANDY'S KITCHEN
================================================ */
#candys-kitchen {
    padding: 80px 0;
}

.kitchen-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.kitchen-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(250,246,239,0.15);
    border-radius: var(--radius);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: var(--transition);
}

.kitchen-card:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(196,101,74,0.4);
    transform: translateY(-4px);
}

.kitchen-icon { font-size: 2.4rem; }

.kitchen-card h3 {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 1.2rem;
    color: var(--cream);
    font-weight: 700;
}

.kitchen-card p {
    font-size: 0.9rem;
    color: rgba(250,246,239,0.65);
    line-height: 1.6;
}

.kitchen-price {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
}

.kitchen-note {
    font-size: 0.82rem;
    color: rgba(250,246,239,0.50);
}


/* ================================================
   SECTION 8 — HOW TO BOOK
================================================ */
#book {
    padding: 80px 0;
    background: var(--cream);
}

.steps-row {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 60px;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--sand);
    box-shadow: var(--shadow-sm);
    text-align: center;
    flex: 1;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--terracotta);
    color: var(--white);
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.step-emoji { font-size: 2rem; margin-bottom: 10px; }

.step-card h3 {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.step-arrow {
    display: none; /* hidden on mobile, shown on desktop */
    align-items: center;
    font-size: 1.3rem;
    color: var(--sand);
    flex-shrink: 0;
}

/* Big CTA block */
.book-cta-block {
    background: linear-gradient(135deg, var(--sand) 0%, #d5c9b3 100%);
    border-radius: var(--radius);
    padding: 48px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.book-cta-block h3 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: var(--charcoal);
}

.book-phone {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--terracotta);
    direction: ltr;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 600;
}


/* ================================================
   SECTION 9 — FAQ
================================================ */
#faq {
    padding: 80px 0;
}

.faq-list {
    max-width: 740px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(44,44,44,0.12);
}

.faq-item:first-child { border-top: 1px solid rgba(44,44,44,0.12); }

.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 4px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--charcoal);
    text-align: right;
    transition: color 0.2s;
}

.faq-q:hover { color: var(--terracotta); }

.faq-icon {
    font-size: 0.9rem;
    color: var(--terracotta);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease, padding 0.25s ease;
}

.faq-a:not([hidden]) {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-a[hidden] { display: block !important; }

.faq-a p {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.75;
    padding: 0 4px;
}


/* ================================================
   SECTION 10 — FIND US
================================================ */
#find-us {
    padding: 80px 0;
    background: var(--cream);
}

.map-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.map-wrap iframe { display: block; }

.directions-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    text-align: right;
    line-height: 1.6;
}

.directions-note i {
    color: var(--terracotta);
    margin-top: 3px;
    flex-shrink: 0;
}


/* ================================================
   FOOTER
================================================ */
#footer {
    background: var(--charcoal);
    color: var(--cream);
    padding: 48px 0 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(250,246,239,0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo svg {
    width: 48px;
    height: 37px;
}

.footer-logo .logo-case,
.footer-logo .logo-sofia { color: var(--cream); }

.footer-slogan {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 1.15rem;
    color: rgba(250,246,239,0.60);
    font-style: italic;
    margin-top: -8px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #25D366;
    font-size: 1.05rem;
    font-weight: 700;
    transition: opacity 0.2s;
    direction: ltr;
}

.footer-wa:hover { opacity: 0.8; }
.footer-wa i { font-size: 1.3rem; }

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: rgba(250,246,239,0.55);
    font-size: 1.3rem;
    transition: color 0.2s;
}

.footer-social a:hover { color: var(--terracotta); }

.footer-bottom {
    padding: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(250,246,239,0.35);
}


/* ================================================
   RESPONSIVE — Tablet (640px+)
================================================ */
@media (min-width: 640px) {

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

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

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

    .steps-row {
        flex-direction: row;
        align-items: flex-start;
    }

    .step-arrow {
        display: flex;
        margin-top: 60px;
    }

    .distance-scroll {
        justify-content: center;
        overflow-x: visible;
        flex-wrap: wrap;
    }

    .space-photos {
        grid-template-columns: 1.6fr 1fr;
    }

    .space-photo-main { height: 360px; }
    .space-photo-half { height: 174px; }
    .space-photos-col { flex-direction: column; display: flex; gap: 12px; }

    .footer-inner { flex-direction: row; justify-content: space-between; text-align: right; }

}


/* ================================================
   RESPONSIVE — Desktop (900px+)
================================================ */
@media (min-width: 900px) {

    .nav-links { display: flex; }
    .hamburger { display: none; }
    .nav-cta { display: inline-flex; }

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

    .hero-headline { font-size: 5rem; }

    .view-panorama-wrap { height: 400px; }

    .space-photo-main { height: 420px; }

    .offering-cards { flex-direction: row; }

    .kitchen-card { padding: 36px 32px; }

}


/* ================================================
   RESPONSIVE — Large Desktop (1200px+)
================================================ */
@media (min-width: 1200px) {

    .gallery-grid {
        grid-template-columns: repeat(5, 1fr);
    }

}


/* ================================================
   UTILITY
================================================ */
.hidden { display: none !important; }

/* Smooth reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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