/**
 * Nococut Luxury Villas — Premium Stylesheet
 *
 * Elegant, animated, luxury villa experience.
 * Accessible for older users while visually stunning.
 */

/* ==========================================================================
   CSS Custom Properties
   ========================================================================== */

:root {
    /* Colors — refined luxury palette */
    --color-gold: #C6A87D;
    --color-gold-light: #D4BC9A;
    --color-gold-dark: #A08058;
    --color-gold-glow: rgba(198, 168, 125, 0.15);
    --color-navy: #0C1A2A;
    --color-navy-light: #162537;
    --color-navy-mid: #1E3148;
    --color-charcoal: #1A1A2E;
    --color-cream: #FBF9F6;
    --color-cream-dark: #F3EDE5;
    --color-white: #FFFFFF;
    --color-text: #2A2A2A;
    --color-text-light: #6B6B6B;
    --color-text-muted: #999999;
    --color-border: #E8E2D9;
    --color-border-light: #F0EBE3;
    --color-success: #25D366;
    --color-overlay: rgba(12, 26, 42, 0.7);

    /* Typography */
    --font-heading: 'Cabin', 'Segoe UI', Roboto, sans-serif;
    --font-accent: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --fs-base: 1.125rem;
    --fs-sm: 0.9375rem;
    --fs-md: 1rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 2rem;
    --fs-3xl: 2.75rem;
    --fs-4xl: 3.5rem;
    --fs-5xl: 4.5rem;
    --fs-display: 5.5rem;
    --lh: 1.75;
    --lh-tight: 1.15;
    --ls-wide: 0.25em;
    --ls-normal: 0.05em;

    /* Spacing */
    --sp-2xs: 0.25rem;
    --sp-xs: 0.5rem;
    --sp-sm: 1rem;
    --sp-md: 1.5rem;
    --sp-lg: 2rem;
    --sp-xl: 3rem;
    --sp-2xl: 4rem;
    --sp-3xl: 5rem;
    --sp-4xl: 6rem;

    /* Layout */
    --max-w: 1280px;
    --max-w-narrow: 800px;
    --max-w-wide: 1400px;
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 8px 30px rgba(198, 168, 125, 0.2);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration: 0.4s;
    --duration-slow: 0.7s;
    --duration-fast: 0.25s;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    line-height: var(--lh);
    color: var(--color-text);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

::selection {
    background-color: var(--color-gold);
    color: var(--color-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-gold-dark);
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-out);
}

a:hover,
a:focus {
    color: var(--color-gold);
}

a:focus-visible {
    outline: 3px solid var(--color-gold);
    outline-offset: 3px;
    border-radius: 2px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: var(--lh-tight);
    color: var(--color-navy);
}

p {
    margin-bottom: var(--sp-md);
}

ul, ol {
    padding-left: var(--sp-md);
}

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--duration-slow) var(--ease-out),
                transform var(--duration-slow) var(--ease-out);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity var(--duration-slow) var(--ease-out),
                transform var(--duration-slow) var(--ease-out);
}

.reveal-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity var(--duration-slow) var(--ease-out),
                transform var(--duration-slow) var(--ease-out);
}

.reveal-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity var(--duration-slow) var(--ease-out),
                transform var(--duration-slow) var(--ease-out);
}

.reveal-scale.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered children */
.stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s var(--ease-out),
                transform 0.5s var(--ease-out);
}

.stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.is-visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger.is-visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger.is-visible > *:nth-child(5) { transition-delay: 0.4s; }
.stagger.is-visible > *:nth-child(6) { transition-delay: 0.5s; }

.stagger.is-visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale,
    .stagger > * {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ==========================================================================
   Accessibility
   ========================================================================== */

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--sp-sm);
    background: var(--color-navy);
    color: var(--color-white);
    padding: var(--sp-sm) var(--sp-md);
    z-index: 9999;
    font-size: var(--fs-base);
    border-radius: 0 0 var(--radius) var(--radius);
}

.skip-link:focus { top: 0; }

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--sp-lg);
}

.container--narrow {
    max-width: var(--max-w-narrow);
}

.container--wide {
    max-width: var(--max-w-wide);
}

.text-center { text-align: center; }

.section {
    padding: var(--sp-3xl) 0;
    position: relative;
}

.section--cream {
    background-color: var(--color-cream);
}

.section--dark {
    background-color: var(--color-navy);
}

.section--charcoal {
    background-color: var(--color-charcoal);
}

/* Elegant section divider */
.section__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-md);
    margin-bottom: var(--sp-xl);
}

.section__divider::before,
.section__divider::after {
    content: '';
    width: 60px;
    height: 1px;
    background: var(--color-gold);
}

.section__divider-icon {
    color: var(--color-gold);
    font-size: var(--fs-xl);
}

.section__label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-gold);
    margin-bottom: var(--sp-sm);
}

.section__label--light {
    color: var(--color-gold-light);
}

.section__title {
    margin-bottom: var(--sp-md);
    font-size: var(--fs-2xl);
    font-weight: 600;
}

.section__title--light {
    color: var(--color-white);
}

.section__lead {
    font-size: var(--fs-lg);
    color: var(--color-text-light);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--sp-xl);
}

.section__lead--light {
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-xs);
    min-height: 54px;
    padding: 15px 36px;
    font-family: var(--font-body);
    font-size: var(--fs-md);
    font-weight: 500;
    letter-spacing: var(--ls-normal);
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--duration) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity var(--duration-fast);
}

.btn:hover::before {
    opacity: 1;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-white);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-gold);
}

.btn--primary:hover,
.btn--primary:focus {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(198, 168, 125, 0.35);
    color: var(--color-white);
}

.btn--outline {
    background: transparent;
    color: var(--color-navy);
    border-color: var(--color-gold);
}

.btn--outline:hover,
.btn--outline:focus {
    background: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn--outline-light {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline-light:hover,
.btn--outline-light:focus {
    background: var(--color-white);
    color: var(--color-navy);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.btn--large {
    min-height: 62px;
    padding: 18px 48px;
    font-size: var(--fs-lg);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all var(--duration) var(--ease-out);
    border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: var(--color-border-light);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}

/* Transparent header on homepage hero */
.home .site-header:not(.is-scrolled) {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.home .site-header:not(.is-scrolled) .site-header__logo-text,
.home .site-header:not(.is-scrolled) .site-nav__list li a {
    color: var(--color-white);
}

.home .site-header:not(.is-scrolled) .hamburger,
.home .site-header:not(.is-scrolled) .hamburger::before,
.home .site-header:not(.is-scrolled) .hamburger::after {
    background-color: var(--color-white);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 90px;
    max-width: var(--max-w-wide);
    margin: 0 auto;
    padding: 0 var(--sp-lg);
}

.site-header__brand a {
    text-decoration: none;
}

.site-header__logo-text {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    font-weight: 700;
    color: var(--color-navy);
    text-decoration: none;
    letter-spacing: 0.08em;
    transition: color var(--duration-fast);
}

.custom-logo-link img {
    max-height: 80px;
    width: auto;
}

/* Navigation */
.site-nav {
    display: flex;
    align-items: center;
    gap: var(--sp-md);
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: var(--sp-lg);
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-nav__list li a {
    font-size: var(--fs-md);
    font-weight: 400;
    color: var(--color-text);
    text-decoration: none;
    padding: var(--sp-xs) 0;
    position: relative;
    transition: color var(--duration-fast);
}

.site-nav__list li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width var(--duration) var(--ease-out);
}

.site-nav__list li a:hover::after,
.site-nav__list li.current-menu-item a::after {
    width: 100%;
}

.site-nav__list li a:hover,
.site-nav__list li.current-menu-item a {
    color: var(--color-gold-dark);
}

.site-nav__cta {
    min-height: 48px;
    padding: 12px 28px;
    font-size: var(--fs-sm);
}

/* Hamburger */
.site-header__menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 26px;
    height: 2px;
    background-color: var(--color-navy);
    position: relative;
    transition: background-color var(--duration-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 26px;
    height: 2px;
    background-color: var(--color-navy);
    left: 0;
    transition: transform var(--duration) var(--ease-out), top var(--duration) var(--ease-out);
}

.hamburger::before { top: -8px; }
.hamburger::after  { top: 8px; }

.site-header__menu-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
}

.site-header__menu-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.site-header__menu-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* ==========================================================================
   Hero — Cinematic Full-Screen
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-navy);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(12, 26, 42, 0.3) 0%,
        rgba(12, 26, 42, 0.5) 40%,
        rgba(12, 26, 42, 0.8) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--sp-xl) 0;
    max-width: 900px;
}

.hero__label {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-sm);
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: var(--ls-wide);
    color: var(--color-gold-light);
    margin-bottom: var(--sp-lg);
    opacity: 0;
    animation: heroFadeUp 1s var(--ease-out) 0.3s forwards;
}

.hero__label::before,
.hero__label::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--color-gold);
    opacity: 0.5;
}

.hero__title {
    color: var(--color-white);
    font-size: var(--fs-5xl);
    font-weight: 600;
    margin-bottom: var(--sp-md);
    line-height: 1.1;
    opacity: 0;
    animation: heroFadeUp 1s var(--ease-out) 0.5s forwards;
}

.hero__subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: var(--fs-lg);
    font-weight: 300;
    max-width: 550px;
    margin: 0 auto var(--sp-xl);
    line-height: var(--lh);
    opacity: 0;
    animation: heroFadeUp 1s var(--ease-out) 0.7s forwards;
}

.hero__actions {
    display: flex;
    gap: var(--sp-md);
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: heroFadeUp 1s var(--ease-out) 0.9s forwards;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-xs);
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--fs-sm);
    text-decoration: none;
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    animation: heroFadeUp 1s var(--ease-out) 1.2s forwards;
    opacity: 0;
}

.hero__scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ==========================================================================
   Intro Section — Elegant Typography
   ========================================================================== */

.intro {
    padding: var(--sp-2xl) 0;
    text-align: center;
}

.intro__text {
    font-family: var(--font-accent);
    font-size: var(--fs-2xl);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-navy);
    max-width: 750px;
    margin: 0 auto;
    font-style: italic;
}

.intro__text em {
    color: var(--color-gold);
    font-style: normal;
}

/* ==========================================================================
   Villa Cards — Premium
   ========================================================================== */

.villa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
    gap: var(--sp-lg);
}

.villa-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--duration) var(--ease-out),
                box-shadow var(--duration) var(--ease-out);
}

.villa-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.villa-card__image-link {
    display: block;
    overflow: hidden;
    position: relative;
}

.villa-card__image-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(12, 26, 42, 0.4) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--duration);
}

.villa-card:hover .villa-card__image-link::after {
    opacity: 1;
}

.villa-card__image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}

.villa-card:hover .villa-card__image {
    transform: scale(1.05);
}

.villa-card__image-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-dark) 50%, var(--color-cream) 100%);
    background-size: 200% 200%;
    animation: shimmer 3s ease infinite;
    position: relative;
}

.villa-card__image-placeholder::after {
    content: 'Upload villa photo in admin';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: var(--fs-sm);
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.villa-card__body {
    padding: var(--sp-lg);
}

.villa-card__title {
    font-size: var(--fs-2xl);
    margin-bottom: var(--sp-xs);
}

.villa-card__title a {
    color: var(--color-navy);
    text-decoration: none;
    transition: color var(--duration-fast);
}

.villa-card__title a:hover {
    color: var(--color-gold);
}

.villa-card__meta {
    font-size: var(--fs-sm);
    color: var(--color-gold-dark);
    font-weight: 500;
    margin-bottom: var(--sp-md);
    letter-spacing: var(--ls-normal);
}

.villa-card__desc {
    color: var(--color-text-light);
    margin-bottom: var(--sp-lg);
    line-height: var(--lh);
}

.villa-card__price {
    font-family: var(--font-body);
    font-size: var(--fs-lg);
    color: var(--color-gold-dark);
    font-weight: 600;
    margin-bottom: var(--sp-md);
}

.villa-card__actions {
    display: flex;
    gap: var(--sp-sm);
    flex-wrap: wrap;
}

.villa-card__actions .btn {
    flex: 1;
    min-width: 140px;
    text-align: center;
}

/* ==========================================================================
   Booking Widget
   ========================================================================== */

.booking-widget {
    background: var(--color-cream);
    position: relative;
    z-index: 10;
    margin-top: -44px;
    padding: var(--sp-xl) 0 var(--sp-lg);
}

.booking-form {
    display: flex;
    align-items: flex-end;
    gap: 0;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: var(--sp-lg) var(--sp-xl);
    border: 1px solid var(--color-border-light);
}

.booking-form--villa {
    max-width: 900px;
    margin: 0 auto;
}

.booking-form__field {
    flex: 1;
    padding: var(--sp-xs) var(--sp-md);
}

.booking-form__field label {
    display: block;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--color-navy);
    text-transform: uppercase;
    letter-spacing: var(--ls-wide);
    margin-bottom: var(--sp-xs);
}

.booking-form__field select,
.booking-form__field input[type="date"] {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: var(--fs-md);
    color: var(--color-navy);
    background: var(--color-cream);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
    appearance: none;
    -webkit-appearance: none;
}

.booking-form__field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%230C1A2A'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.booking-form__field select:focus,
.booking-form__field input[type="date"]:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px var(--color-gold-glow);
}

.booking-form__field--submit {
    flex: 0 0 auto;
    padding-bottom: var(--sp-xs);
}

.booking-form__field--submit .btn {
    white-space: nowrap;
    min-height: 50px;
    padding: 12px 36px;
}

.villa-booking-inline {
    padding: var(--sp-md) 0;
    background: var(--color-cream);
}

.villa-specs-section {
    background: var(--color-navy);
    padding: var(--sp-xl) 0;
}

.villa-specs-section .villa-specs {
    border-bottom: none;
    padding: 0;
}

.villa-spec__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(198, 168, 125, 0.15);
    color: var(--color-gold);
    margin: 0 auto var(--sp-sm);
}

.villa-hero__label {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-gold);
    margin-bottom: var(--sp-sm);
    font-weight: 500;
}

/* ==========================================================================
   Offer Cards — Image-Based
   ========================================================================== */

.offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-lg);
}

.offer-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    transition: transform var(--duration) var(--ease-out),
                box-shadow var(--duration) var(--ease-out);
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.offer-card__image {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.offer-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}

.offer-card:hover .offer-card__image img {
    transform: scale(1.06);
}

.offer-card__content {
    padding: var(--sp-md) var(--sp-lg);
}

.offer-card__title {
    font-size: var(--fs-lg);
    color: var(--color-navy);
    margin-bottom: var(--sp-xs);
}

.offer-card__content p {
    font-size: var(--fs-sm);
    color: var(--color-text-light);
    line-height: var(--lh);
}

/* ==========================================================================
   Villa Description
   ========================================================================== */

.villa-description__headline {
    font-size: var(--fs-2xl);
    color: var(--color-navy);
    text-align: center;
    margin-bottom: var(--sp-xs);
    line-height: var(--lh-tight);
    font-weight: 600;
}

.villa-description__headline::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--color-gold);
    margin: var(--sp-md) auto var(--sp-xl);
}

.villa-description__text {
    font-size: var(--fs-md);
    line-height: 1.85;
    color: var(--color-text-light);
    max-width: 780px;
    margin: 0 auto;
}

.villa-description__text p {
    margin-bottom: var(--sp-md);
}

.villa-description__text p:last-child {
    margin-bottom: 0;
}

.villa-description__text h2,
.villa-description__text h3 {
    color: var(--color-navy);
    font-size: var(--fs-lg);
    font-weight: 600;
    margin-top: var(--sp-xl);
    margin-bottom: var(--sp-sm);
    padding-top: var(--sp-md);
    border-top: 1px solid var(--color-border-light);
}

/* ==========================================================================
   Facilities Grid
   ========================================================================== */

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-sm);
    margin-top: var(--sp-sm);
}

.facility {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--sp-sm);
    padding: var(--sp-lg) var(--sp-md);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    transition: transform var(--duration) var(--ease-out),
                box-shadow var(--duration) var(--ease-out),
                border-color var(--duration);
}

.facility:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-gold);
}

.facility__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
}

.facility__icon svg {
    width: 22px;
    height: 22px;
}

.facility__info {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2xs);
}

.facility__title {
    font-size: var(--fs-md);
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 0;
}

.facility__desc {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   Nearby Places
   ========================================================================== */

.nearby-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.nearby-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--sp-sm) var(--sp-lg);
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border-light);
    transition: background var(--duration-fast);
}

.nearby-item:nth-child(odd) {
    border-right: 1px solid var(--color-border-light);
}

.nearby-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.nearby-item:hover {
    background: var(--color-cream);
}

.nearby-item__name {
    font-weight: 500;
    color: var(--color-navy);
    font-size: var(--fs-sm);
}

.nearby-item__time {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    font-weight: 400;
    white-space: nowrap;
    margin-left: var(--sp-sm);
}

/* ==========================================================================
   Highlights — Icon Cards with hover glow
   ========================================================================== */

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-lg);
}

.highlight {
    text-align: center;
    padding: var(--sp-xl) var(--sp-lg);
    border-radius: var(--radius-xl);
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    transition: transform var(--duration) var(--ease-out),
                box-shadow var(--duration) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0;
    transition: opacity var(--duration);
}

.highlight:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.highlight:hover::before {
    opacity: 1;
}

.highlight__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--color-gold-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--sp-md);
    color: var(--color-gold);
    transition: background var(--duration), transform var(--duration);
}

.highlight:hover .highlight__icon {
    background: var(--color-gold);
    color: var(--color-white);
    transform: scale(1.1);
}

.highlight__icon svg {
    transition: color var(--duration), fill var(--duration);
}

.highlight:hover .highlight__icon svg {
    fill: var(--color-white);
}

.highlight__title {
    font-size: var(--fs-xl);
    margin-bottom: var(--sp-sm);
    color: var(--color-navy);
}

.highlight p {
    color: var(--color-text-light);
    font-size: var(--fs-md);
    margin-bottom: 0;
}

/* ==========================================================================
   Experience Section — Side by Side
   ========================================================================== */

.experience {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 480px;
}

.experience__image {
    overflow: hidden;
    position: relative;
}

.experience__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s var(--ease-out);
}

.experience__image:hover img {
    transform: scale(1.05);
}

.experience__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--sp-2xl);
    background: var(--color-navy);
    color: var(--color-white);
}

.experience__content .section__label {
    color: var(--color-gold);
}

.experience__content h2 {
    color: var(--color-white);
    font-size: var(--fs-3xl);
    margin-bottom: var(--sp-md);
}

.experience__content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--fs-lg);
    line-height: var(--lh);
}

.experience__features {
    list-style: none;
    padding: 0;
    margin-top: var(--sp-lg);
    display: flex;
    flex-direction: column;
    gap: var(--sp-sm);
}

.experience__features li {
    display: flex;
    align-items: center;
    gap: var(--sp-sm);
    font-size: var(--fs-base);
    color: rgba(255, 255, 255, 0.8);
}

.experience__features li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-gold);
    flex-shrink: 0;
}

/* ==========================================================================
   Testimonial Section
   ========================================================================== */

.testimonial-section {
    background: var(--color-cream);
    padding: var(--sp-3xl) 0;
    overflow: hidden;
}

.testimonials-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    text-align: center;
    padding: var(--sp-xl) var(--sp-lg);
}

.testimonial__stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: var(--sp-md);
    color: var(--color-gold);
}

.testimonial__quote {
    font-family: var(--font-accent);
    font-size: var(--fs-xl);
    font-style: italic;
    font-weight: 400;
    color: var(--color-navy);
    line-height: 1.6;
    margin-bottom: var(--sp-lg);
    position: relative;
}

.testimonial__quote::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--color-gold);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-accent);
    line-height: 1;
}

.testimonial__author {
    font-size: var(--fs-md);
    font-weight: 600;
    color: var(--color-navy);
}

.testimonial__source {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
}

/* ==========================================================================
   CTA Section — Elegant with subtle pattern
   ========================================================================== */

.cta-section {
    background: var(--color-navy);
    position: relative;
    overflow: hidden;
    padding: var(--sp-2xl) 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-gold-glow), transparent 70%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(198, 168, 125, 0.08), transparent 70%);
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   Villa Single Page
   ========================================================================== */

.villa-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.villa-hero__image {
    position: absolute;
    inset: 0;
}

.villa-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.villa-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(12, 26, 42, 0.25) 0%,
        rgba(12, 26, 42, 0.55) 60%,
        rgba(12, 26, 42, 0.85) 100%
    );
}

.villa-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--sp-2xl) 0;
}

.villa-hero__title {
    color: var(--color-white);
    font-size: var(--fs-4xl);
    margin-bottom: var(--sp-xs);
    letter-spacing: 0.02em;
}

.villa-hero__price {
    color: var(--color-gold-light);
    font-size: var(--fs-lg);
    font-weight: 400;
    letter-spacing: var(--ls-normal);
}

.villa-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 0;
    border-bottom: none;
}

.villa-spec {
    text-align: center;
    padding: var(--sp-md) var(--sp-sm);
    position: relative;
}

.villa-spec:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.villa-spec__value {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.3;
    margin-bottom: var(--sp-2xs);
}

.villa-spec__label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: var(--ls-wide);
    margin-top: 0;
}

.villa-content {
    font-size: var(--fs-base);
    line-height: var(--lh);
}

.villa-content h2 {
    margin-top: var(--sp-xl);
    margin-bottom: var(--sp-md);
}

.villa-content h3 {
    margin-top: var(--sp-lg);
    margin-bottom: var(--sp-sm);
}

.villa-content ul, .villa-content ol {
    margin-bottom: var(--sp-md);
}

.villa-content li {
    margin-bottom: var(--sp-xs);
}

/* ==========================================================================
   Gallery Grid — Masonry-like with lightbox hover
   ========================================================================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-sm);
}

.gallery-grid .gallery-item:first-child {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.gallery-item {
    display: block;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 4/3;
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(12, 26, 42, 0.3);
    opacity: 0;
    transition: opacity var(--duration);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* ==========================================================================
   Page Header — Elegant
   ========================================================================== */

.page-header {
    background: var(--color-navy);
    padding: calc(90px + var(--sp-3xl)) 0 var(--sp-3xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(198, 168, 125, 0.06), transparent 60%);
    pointer-events: none;
}

.page-header__title {
    color: var(--color-white);
    font-size: var(--fs-4xl);
    margin-bottom: var(--sp-sm);
    position: relative;
}

.page-header__subtitle {
    font-size: var(--fs-lg);
    color: rgba(255, 255, 255, 0.6);
    max-width: 550px;
    margin: 0 auto;
    position: relative;
}

.page-content {
    font-size: var(--fs-base);
    line-height: var(--lh);
}

.page-content h2 {
    margin-top: var(--sp-xl);
    margin-bottom: var(--sp-md);
}

.page-content img {
    border-radius: var(--radius-lg);
    margin: var(--sp-lg) 0;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-xl);
    align-items: start;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--sp-md);
}

.contact-method {
    padding: var(--sp-lg);
    background: var(--color-cream);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border-light);
    transition: transform var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out);
}

.contact-method:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.contact-method__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-gold-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    margin-bottom: var(--sp-md);
}

.contact-method__title {
    font-size: var(--fs-xl);
    margin-bottom: var(--sp-sm);
}

.contact-method__detail {
    color: var(--color-text-light);
    margin-bottom: var(--sp-xs);
}

.contact-method__detail a {
    color: var(--color-gold-dark);
    font-weight: 500;
    font-size: var(--fs-lg);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color var(--duration-fast);
}

.contact-method__detail a:hover {
    border-bottom-color: var(--color-gold);
}

.contact-map__placeholder {
    background: var(--color-cream);
    border-radius: var(--radius-xl);
    height: 100%;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--sp-lg);
    text-align: center;
    color: var(--color-text-muted);
    border: 1px solid var(--color-border-light);
}

/* ==========================================================================
   Footer — Premium
   ========================================================================== */

.site-footer {
    background: var(--color-navy);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--sp-2xl) 0 var(--sp-lg);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--sp-xl);
    padding-bottom: var(--sp-xl);
    margin-bottom: var(--sp-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__title {
    color: var(--color-white);
    font-size: var(--fs-xl);
    margin-bottom: var(--sp-md);
}

.site-footer__tagline {
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: var(--ls-wide);
    color: var(--color-gold);
    margin-bottom: var(--sp-md);
}

.site-footer__mission {
    font-size: var(--fs-md);
    line-height: var(--lh);
    color: rgba(255, 255, 255, 0.7);
    max-width: 450px;
}

.site-footer__contact-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--sp-md);
}

.site-footer__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-sm);
    font-size: var(--fs-md);
}

.site-footer__contact-list a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--sp-xs);
    transition: color var(--duration-fast);
}

.site-footer__contact-list a:hover {
    color: var(--color-gold);
}

.site-footer__contact-list svg {
    flex-shrink: 0;
    opacity: 0.5;
}

.site-footer__bottom {
    text-align: center;
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.55);
}

/* ==========================================================================
   WhatsApp Floating Button — Pulse Effect
   ========================================================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 64px;
    height: 64px;
    background: var(--color-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: transform var(--duration) var(--ease-out),
                box-shadow var(--duration) var(--ease-out);
    text-decoration: none;
    animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    animation: none;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3); }
    50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* ==========================================================================
   Booking Page
   ========================================================================== */

.booking-villas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--sp-lg);
    margin-bottom: var(--sp-xl);
}

.booking-villa {
    padding: var(--sp-2xl) var(--sp-xl);
    background: var(--color-cream);
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--color-border-light);
    transition: transform var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out);
}

.booking-villa:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.booking-villa__title {
    margin-bottom: var(--sp-xs);
}

.booking-villa__meta {
    color: var(--color-gold-dark);
    font-weight: 500;
    margin-bottom: var(--sp-lg);
    letter-spacing: var(--ls-normal);
}

.booking-villa__desc {
    color: var(--color-text-light);
    margin-bottom: var(--sp-xl);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.booking-info {
    text-align: center;
    padding: var(--sp-2xl);
    background: var(--color-navy);
    border-radius: var(--radius-xl);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
}

.booking-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-gold-glow), transparent 70%);
    pointer-events: none;
}

.booking-info h3 {
    color: var(--color-white);
    margin-bottom: var(--sp-sm);
    position: relative;
}

.booking-info p {
    max-width: 500px;
    margin: 0 auto var(--sp-lg);
    position: relative;
}

/* ==========================================================================
   WordPress Defaults
   ========================================================================== */

.alignleft { float: left; margin-right: var(--sp-md); margin-bottom: var(--sp-md); }
.alignright { float: right; margin-left: var(--sp-md); margin-bottom: var(--sp-md); }
.aligncenter { display: block; margin-left: auto; margin-right: auto; margin-bottom: var(--sp-md); }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: var(--fs-sm); color: var(--color-text-muted); text-align: center; margin-top: var(--sp-xs); }

/* ==========================================================================
   Section Visual Separators
   ========================================================================== */

.section--bordered {
    border-top: 1px solid var(--color-border-light);
}

.section--bordered-gold {
    background: var(--color-cream);
}

/* ==========================================================================
   Google Map Embed
   ========================================================================== */

.map-embed {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: var(--sp-lg);
    border: 1px solid var(--color-border-light);
}

.map-embed iframe {
    display: block;
    width: 100%;
    height: 350px;
    border: 0;
}

/* ==========================================================================
   Villa Overview Grid (Home Page)
   ========================================================================== */

.villa-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-lg);
    margin-top: var(--sp-xl);
}

.villa-overview__card {
    display: flex;
    gap: var(--sp-lg);
    padding: var(--sp-lg);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border-light);
    transition: transform var(--duration) var(--ease-out),
                box-shadow var(--duration) var(--ease-out);
}

.villa-overview__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.villa-overview__image {
    width: 200px;
    flex-shrink: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.villa-overview__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.villa-overview__info h3 {
    font-size: var(--fs-xl);
    color: var(--color-navy);
    margin-bottom: var(--sp-xs);
}

.villa-overview__info p {
    font-size: var(--fs-sm);
    color: var(--color-text-light);
    line-height: var(--lh);
    margin-bottom: var(--sp-sm);
}

.villa-overview__meta {
    font-size: var(--fs-sm);
    color: var(--color-gold-dark);
    font-weight: 500;
    margin-bottom: var(--sp-sm);
}

@media (max-width: 1024px) {
    .villa-overview {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .villa-overview__card {
        flex-direction: column;
    }

    .villa-overview__image {
        width: 100%;
        aspect-ratio: 16/9;
    }

    .map-embed iframe {
        height: 250px;
    }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience {
        grid-template-columns: 1fr;
    }

    .experience__content {
        padding: var(--sp-2xl);
    }

    .villa-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid .gallery-item:first-child {
        grid-column: auto;
        grid-row: auto;
    }

    .booking-form {
        flex-wrap: wrap;
    }

    .booking-form__field {
        flex: 1 1 45%;
    }

    .booking-form__field--submit {
        flex: 1 1 100%;
        padding-top: var(--sp-sm);
    }

    .booking-form__field--submit .btn {
        width: 100%;
    }

    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .villa-description__text {
        text-align: left;
    }
}

@media (max-width: 768px) {
    :root {
        --fs-5xl: 2.75rem;
        --fs-4xl: 2.25rem;
        --fs-3xl: 1.875rem;
        --fs-2xl: 1.5rem;
    }

    .site-header__inner {
        min-height: 70px;
    }

    .site-header__menu-toggle {
        display: flex;
    }

    .site-nav {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(12, 26, 42, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: var(--sp-xl);
        gap: 0;
        z-index: 1000;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav__list {
        flex-direction: column;
        gap: 0;
        text-align: center;
    }

    .site-nav__list li a {
        display: block;
        padding: var(--sp-md) 0;
        font-size: var(--fs-xl);
        color: var(--color-white) !important;
        font-family: var(--font-heading);
    }

    .site-nav__list li a::after {
        display: none;
    }

    .site-nav__list li a:hover {
        color: var(--color-gold) !important;
    }

    .site-nav__cta {
        margin-top: var(--sp-lg);
    }

    .hero {
        min-height: 90vh;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .hero__actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero__scroll {
        display: none;
    }

    .section {
        padding: var(--sp-2xl) 0;
    }

    .intro {
        padding: var(--sp-2xl) 0;
    }

    .intro__text {
        font-size: var(--fs-xl);
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: var(--sp-md);
    }

    .offer-grid {
        grid-template-columns: 1fr;
        gap: var(--sp-md);
    }

    .booking-form {
        flex-direction: column;
        padding: var(--sp-lg);
    }

    .booking-form__field {
        padding: var(--sp-xs) 0;
    }

    .booking-widget {
        margin-top: 0;
    }

    .nearby-grid {
        grid-template-columns: 1fr;
    }

    .nearby-item:nth-child(odd) {
        border-right: none;
    }

    .nearby-item:nth-last-child(-n+2) {
        border-bottom: 1px solid var(--color-border-light);
    }

    .nearby-item:last-child {
        border-bottom: none;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: var(--sp-xl);
    }

    .villa-specs {
        grid-template-columns: repeat(2, 1fr);
    }

    .villa-spec:nth-child(2)::after {
        display: none;
    }

    .page-header {
        padding: calc(70px + var(--sp-2xl)) 0 var(--sp-2xl);
    }

    .booking-villas {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .villa-card__image,
    .villa-card__image-placeholder {
        height: 250px;
    }

    .container {
        padding: 0 var(--sp-md);
    }
}

/* ==========================================================================
   Print
   ========================================================================== */

/* ==========================================================================
   Preloader
   ========================================================================== */

.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader__inner {
    text-align: center;
}

.preloader__logo {
    font-family: var(--font-heading);
    font-size: var(--fs-3xl);
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.1em;
    margin-bottom: var(--sp-lg);
    opacity: 0;
    animation: preloaderFade 0.8s var(--ease-out) 0.2s forwards;
}

.preloader__bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
    opacity: 0;
    animation: preloaderFade 0.5s var(--ease-out) 0.5s forwards;
}

.preloader__bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    border-radius: 2px;
    animation: preloaderBar 1.5s var(--ease-in-out) 0.6s forwards;
}

@keyframes preloaderFade {
    to { opacity: 1; }
}

@keyframes preloaderBar {
    0% { width: 0%; }
    60% { width: 80%; }
    100% { width: 100%; }
}

/* ==========================================================================
   Custom Scrollbar
   ========================================================================== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-dark);
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--color-gold) var(--color-cream);
}

/* ==========================================================================
   Nearby Attractions
   ========================================================================== */

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-md);
}

.attraction {
    display: flex;
    align-items: center;
    gap: var(--sp-md);
    padding: var(--sp-md) var(--sp-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    transition: transform var(--duration) var(--ease-out),
                box-shadow var(--duration) var(--ease-out),
                border-color var(--duration);
}

.attraction:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-gold);
}

.attraction__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-gold-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
    transition: background var(--duration), color var(--duration);
}

.attraction:hover .attraction__icon {
    background: var(--color-gold);
    color: var(--color-white);
}

.attraction:hover .attraction__icon svg {
    fill: var(--color-white);
}

.attraction__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.attraction__name {
    font-weight: 500;
    font-size: var(--fs-md);
    color: var(--color-navy);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.attraction__distance {
    font-size: var(--fs-sm);
    color: var(--color-gold-dark);
    font-weight: 400;
}

/* ==========================================================================
   Testimonial Slider
   ========================================================================== */

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s var(--ease-out);
}

.testimonials-track .testimonial {
    min-width: 100%;
    flex-shrink: 0;
    padding: var(--sp-xl) var(--sp-lg);
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-md);
    margin-top: var(--sp-md);
}

.testimonials-nav__btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--color-border);
    background: var(--color-white);
    color: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--duration) var(--ease-out);
}

.testimonials-nav__btn:hover {
    border-color: var(--color-gold);
    background: var(--color-gold);
    color: var(--color-white);
}

.testimonials-nav__btn:hover svg {
    fill: var(--color-white);
}

.testimonials-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.testimonials-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background var(--duration), transform var(--duration);
}

.testimonials-dot.is-active {
    background: var(--color-gold);
    transform: scale(1.3);
}

/* ==========================================================================
   Body padding for fixed header
   ========================================================================== */

body:not(.home) {
    padding-top: 0;
}

/* ==========================================================================
   Responsive — Attractions & Slider
   ========================================================================== */

@media (max-width: 1024px) {
    .attractions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .attractions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-track .testimonial {
        padding: var(--sp-lg) var(--sp-sm);
    }
}

@media (max-width: 480px) {
    .attractions-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Print
   ========================================================================== */

@media print {
    .site-header, .site-footer, .whatsapp-float, .btn, .hero__scroll, .preloader { display: none; }
    body { font-size: 12pt; color: #000; }
    .hero { min-height: auto; background: none; padding: 1cm 0; }
    .hero__overlay { display: none; }
    .hero__title, .hero__subtitle { color: #000; text-shadow: none; }
    .reveal, .reveal-left, .reveal-right, .reveal-scale, .stagger > * { opacity: 1; transform: none; }
}
