/*
 * LEFKADA VILLA — Index2 Editorial Homepage
 * Aesthetic: "Aegean Editorial" — Cinematic Mediterranean luxury
 * Inspired by Le Collectionist + The Thinking Traveller
 */

/* ============================================
   HERO
   ============================================ */
.lv-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 1200px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.lv-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.lv-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    animation: heroKen 20s ease-in-out infinite alternate;
}

@keyframes heroKen {
    0% { transform: scale(1); }
    100% { transform: scale(1.06); }
}

.lv-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(12, 18, 30, 0.75) 0%,
        rgba(12, 18, 30, 0.3) 40%,
        rgba(12, 18, 30, 0.08) 70%,
        rgba(12, 18, 30, 0.02) 100%
    );
    z-index: 1;
}

.lv-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px 12vh;
    max-width: 860px;
}

.lv-hero__eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    opacity: 0;
    animation: heroFadeUp 1s ease 0.3s forwards;
}

.lv-hero__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(38px, 6vw, 72px);
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin: 0 0 24px;
    opacity: 0;
    animation: heroFadeUp 1.2s ease 0.5s forwards;
}

.lv-hero__title em {
    font-style: italic;
    color: #E8C9A8;
}

.lv-hero__subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(15px, 1.8vw, 18px);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: heroFadeUp 1.2s ease 0.7s forwards;
}

.lv-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    padding: 16px 36px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 0;
    transition: all 0.4s ease;
    opacity: 0;
    animation: heroFadeUp 1.2s ease 0.9s forwards;
}

.lv-hero__cta:hover {
    background: #fff;
    color: #1B2D4F;
    border-color: #fff;
}

.lv-hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: heroFadeUp 1s ease 1.2s forwards;
}

.lv-hero__scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.lv-hero__scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #E8C9A8;
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { top: -100%; }
    50% { top: 100%; }
    100% { top: 100%; }
}

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


/* ============================================
   EDITORIAL INTRO
   ============================================ */
.lv-intro {
    padding: 120px 24px;
    text-align: center;
    background: #FAFAF8;
    position: relative;
}

.lv-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, #E8E0D8, transparent);
}

.lv-intro__inner {
    max-width: 700px;
    margin: 0 auto;
}

.lv-intro__label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C4956A;
    margin-bottom: 28px;
}

.lv-intro__heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 400;
    color: #1B2D4F;
    line-height: 1.3;
    letter-spacing: -0.015em;
    margin: 0 0 28px;
}

.lv-intro__heading em {
    font-style: italic;
}

.lv-intro__text {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: #6B7B8D;
    line-height: 1.8;
    margin: 0;
}

.lv-intro__divider {
    width: 48px;
    height: 1px;
    background: #C4956A;
    margin: 40px auto 0;
}


/* ============================================
   FEATURED VILLAS
   ============================================ */
.lv-villas {
    padding: 100px 0 120px;
    background: #fff;
    overflow: hidden;
}

.lv-villas__header {
    max-width: 1200px;
    margin: 0 auto 56px;
    padding: 0 24px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.lv-villas__label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C4956A;
    margin-bottom: 12px;
}

.lv-villas__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 400;
    color: #1B2D4F;
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin: 0;
}

.lv-villas__viewall {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #1B2D4F;
    text-decoration: none;
    white-space: nowrap;
    padding-bottom: 2px;
    border-bottom: 1px solid #C4956A;
    transition: all 0.3s ease;
}

.lv-villas__viewall:hover {
    color: #C4956A;
}

.lv-villas__grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.lv-villa-card {
    text-decoration: none;
    display: block;
    position: relative;
}

.lv-villa-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    margin-bottom: 20px;
}

.lv-villa-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lv-villa-card:hover .lv-villa-card__image img {
    transform: scale(1.05);
}

.lv-villa-card__location {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C4956A;
    margin-bottom: 6px;
}

.lv-villa-card__name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-weight: 500;
    color: #1B2D4F;
    line-height: 1.25;
    margin: 0 0 8px;
    transition: color 0.3s ease;
}

.lv-villa-card:hover .lv-villa-card__name {
    color: #C4956A;
}

.lv-villa-card__tagline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 16px;
    font-style: italic;
    color: #8E9BAE;
    line-height: 1.5;
    margin: 0 0 12px;
}

.lv-villa-card__meta {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: #8E9BAE;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lv-villa-card__meta-sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #D4C4B0;
    display: inline-block;
}


/* ============================================
   DESTINATIONS
   ============================================ */
.lv-destinations {
    padding: 120px 0;
    background: #FAFAF8;
}

.lv-destinations__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
    padding: 0 24px;
}

.lv-destinations__label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C4956A;
    margin-bottom: 16px;
}

.lv-destinations__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 400;
    color: #1B2D4F;
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin: 0 0 16px;
}

.lv-destinations__subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: #6B7B8D;
    line-height: 1.7;
    margin: 0;
}

.lv-destinations__grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.lv-dest-card {
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
    aspect-ratio: 4 / 5;
}

.lv-dest-card--wide {
    grid-column: span 2;
    aspect-ratio: 8 / 5;
}

.lv-dest-card__image {
    position: absolute;
    inset: 0;
}

.lv-dest-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lv-dest-card:hover .lv-dest-card__image img {
    transform: scale(1.06);
}

.lv-dest-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(12, 18, 30, 0.65) 0%,
        rgba(12, 18, 30, 0.1) 50%,
        rgba(12, 18, 30, 0) 100%
    );
    z-index: 1;
    transition: background 0.4s ease;
}

.lv-dest-card:hover .lv-dest-card__overlay {
    background: linear-gradient(
        to top,
        rgba(12, 18, 30, 0.75) 0%,
        rgba(12, 18, 30, 0.2) 60%,
        rgba(12, 18, 30, 0.05) 100%
    );
}

.lv-dest-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 28px;
}

.lv-dest-card__name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 26px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 4px;
    line-height: 1.2;
}

.lv-dest-card__desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.lv-dest-card:hover .lv-dest-card__desc {
    max-height: 60px;
    opacity: 1;
    margin-top: 8px;
}


/* ============================================
   GUIDE SECTION
   ============================================ */
.lv-guide {
    padding: 120px 0;
    background: #fff;
}

.lv-guide__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.lv-guide__header {
    text-align: center;
    margin-bottom: 72px;
}

.lv-guide__label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C4956A;
    margin-bottom: 16px;
}

.lv-guide__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 400;
    color: #1B2D4F;
    line-height: 1.2;
    margin: 0;
}

.lv-guide__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 96px;
}

.lv-guide__row:last-child {
    margin-bottom: 0;
}

.lv-guide__row--reverse {
    direction: rtl;
}

.lv-guide__row--reverse > * {
    direction: ltr;
}

.lv-guide__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.lv-guide__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lv-guide__text-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C4956A;
    margin-bottom: 16px;
}

.lv-guide__text-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 400;
    color: #1B2D4F;
    line-height: 1.25;
    margin: 0 0 20px;
}

.lv-guide__text-body {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: #6B7B8D;
    line-height: 1.8;
    margin: 0 0 28px;
}

.lv-guide__text-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #1B2D4F;
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid #C4956A;
    transition: all 0.3s ease;
}

.lv-guide__text-link:hover {
    color: #C4956A;
}


/* ============================================
   TESTIMONIALS
   ============================================ */
.lv-testimonials {
    padding: 120px 0;
    background: #1B2D4F;
    position: relative;
    overflow: hidden;
}

.lv-testimonials::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 149, 106, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.lv-testimonials__header {
    text-align: center;
    margin-bottom: 72px;
    padding: 0 24px;
}

.lv-testimonials__label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C4956A;
    margin-bottom: 16px;
}

.lv-testimonials__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    margin: 0;
}

.lv-testimonials__grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.lv-testimonial {
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.lv-testimonial__quote-mark {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 64px;
    color: #C4956A;
    line-height: 1;
    margin-bottom: 8px;
    opacity: 0.6;
}

.lv-testimonial__text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 18px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0 0 24px;
}

.lv-testimonial__villa {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #C4956A;
    margin: 0;
}


/* ============================================
   FAQ
   ============================================ */
.lv-faq {
    padding: 120px 0;
    background: #FAFAF8;
}

.lv-faq__inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}

.lv-faq__header {
    text-align: center;
    margin-bottom: 56px;
}

.lv-faq__label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C4956A;
    margin-bottom: 16px;
}

.lv-faq__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 400;
    color: #1B2D4F;
    line-height: 1.2;
    margin: 0;
}

.lv-faq-item {
    border-bottom: 1px solid #E8E0D8;
}

.lv-faq-item:first-child {
    border-top: 1px solid #E8E0D8;
}

.lv-faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    cursor: pointer;
    user-select: none;
}

.lv-faq-item__question h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1B2D4F;
    margin: 0;
    line-height: 1.5;
}

.lv-faq-item__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.3s ease;
}

.lv-faq-item__icon::before,
.lv-faq-item__icon::after {
    content: '';
    position: absolute;
    background: #C4956A;
    transition: transform 0.3s ease;
}

.lv-faq-item__icon::before {
    top: 50%;
    left: 2px;
    right: 2px;
    height: 1.5px;
    transform: translateY(-50%);
}

.lv-faq-item__icon::after {
    left: 50%;
    top: 2px;
    bottom: 2px;
    width: 1.5px;
    transform: translateX(-50%);
}

.lv-faq-item.active .lv-faq-item__icon::after {
    transform: translateX(-50%) scaleY(0);
}

.lv-faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.lv-faq-item__answer p {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: #6B7B8D;
    line-height: 1.8;
    margin: 0;
    padding: 0 0 24px;
}


/* ============================================
   CTA
   ============================================ */
.lv-cta {
    position: relative;
    padding: 160px 24px;
    background: #1B2D4F;
    text-align: center;
    overflow: hidden;
}

.lv-cta__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.lv-cta__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.lv-cta__content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.lv-cta__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
}

.lv-cta__title em {
    font-style: italic;
    color: #E8C9A8;
}

.lv-cta__text {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0 0 40px;
}

.lv-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #1B2D4F;
    text-decoration: none;
    padding: 18px 42px;
    background: #fff;
    border: none;
    transition: all 0.4s ease;
}

.lv-cta__btn:hover {
    background: #C4956A;
    color: #fff;
}


/* ============================================
   TRUST STATS (between sections)
   ============================================ */
.lv-stats {
    padding: 80px 24px;
    background: #fff;
    border-top: 1px solid #F0EBE4;
    border-bottom: 1px solid #F0EBE4;
}

.lv-stats__inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.lv-stat__number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 42px;
    font-weight: 400;
    color: #1B2D4F;
    line-height: 1;
    margin-bottom: 8px;
}

.lv-stat__label {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: #8E9BAE;
    letter-spacing: 0.5px;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .lv-villas__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .lv-destinations__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lv-dest-card--wide {
        grid-column: span 2;
    }

    .lv-guide__row {
        gap: 40px;
    }

    .lv-testimonials__grid {
        grid-template-columns: 1fr 1fr;
    }

    .lv-testimonials__grid .lv-testimonial:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .lv-hero {
        min-height: 500px;
    }

    .lv-hero__content {
        padding-bottom: 18vh;
    }

    .lv-hero__scroll {
        display: none;
    }

    .lv-intro {
        padding: 80px 24px;
    }

    .lv-intro::before {
        height: 40px;
    }

    .lv-villas {
        padding: 80px 0;
    }

    .lv-villas__header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 36px;
    }

    .lv-villas__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .lv-villa-card__image {
        aspect-ratio: 4 / 3;
    }

    .lv-destinations {
        padding: 80px 0;
    }

    .lv-destinations__grid {
        grid-template-columns: 1fr;
    }

    .lv-dest-card--wide {
        grid-column: span 1;
    }

    .lv-dest-card {
        aspect-ratio: 16 / 10;
    }

    .lv-guide {
        padding: 80px 0;
    }

    .lv-guide__row,
    .lv-guide__row--reverse {
        grid-template-columns: 1fr;
        gap: 32px;
        direction: ltr;
    }

    .lv-guide__image {
        aspect-ratio: 16 / 10;
    }

    .lv-guide__header {
        margin-bottom: 48px;
    }

    .lv-guide__row {
        margin-bottom: 64px;
    }

    .lv-testimonials {
        padding: 80px 0;
    }

    .lv-testimonials__grid {
        grid-template-columns: 1fr;
    }

    .lv-testimonials__grid .lv-testimonial:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .lv-testimonial {
        padding: 28px;
    }

    .lv-faq {
        padding: 80px 0;
    }

    .lv-cta {
        padding: 100px 24px;
    }

    .lv-stats__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }
}

@media (max-width: 480px) {
    .lv-hero__title {
        font-size: 34px;
    }

    .lv-stats__inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px 16px;
    }
}
