/* ============================================
   SAKABULA COUNTRY ESTATE
   Brand Stylesheet

   Color Palette:
   - Primary (Forest Green):  #2C5530
   - Primary Light:           #4A7C59
   - Primary Dark:            #1B3A1E
   - Accent (Warm Gold):      #C8A96E
   - Accent Light:            #E8D5A8
   - Accent Dark:             #A68B4B
   - Background (Warm Cream): #FDFBF7
   - Background Alt:          #F5F0E8
   - Text Dark:               #1A1A1A
   - Text Medium:             #4A4A4A
   - Text Light:              #7A7A7A

   Typography:
   - Headings: Playfair Display (serif)
   - Body: Inter (sans-serif)
   ============================================ */

/* --- Custom Properties --- */
:root {
    --color-primary: #2C5530;
    --color-primary-light: #4A7C59;
    --color-primary-dark: #1B3A1E;
    --color-primary-rgb: 44, 85, 48;

    --color-accent: #C8A96E;
    --color-accent-light: #E8D5A8;
    --color-accent-dark: #A68B4B;
    --color-accent-rgb: 200, 169, 110;

    --color-bg: #FDFBF7;
    --color-bg-alt: #F5F0E8;
    --color-bg-dark: #1B2A1E;
    --color-bg-dark-rgb: 27, 42, 30;

    --color-text: #1A1A1A;
    --color-text-medium: #4A4A4A;
    --color-text-light: #7A7A7A;
    --color-text-on-dark: #F5F0E8;

    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1);

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s ease;

    --container-max: 1200px;
    --container-wide: 1400px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-accent-dark);
}

/* --- Utility --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    border-color: var(--color-accent);
}

.btn-primary:hover {
    background: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--color-accent-rgb), 0.35);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: white;
    color: var(--color-primary-dark);
    border-color: white;
    transform: translateY(-2px);
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(var(--color-bg-dark-rgb), 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-img {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: height var(--transition-base), opacity var(--transition-fast);
}

.navbar.scrolled .nav-logo-img {
    height: 38px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.nav-link {
    display: inline-block;
    padding: 0.5rem 1.125rem;
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
    letter-spacing: 0.01em;
}

.nav-link:hover {
    color: white;
}

.nav-link--cta {
    margin-left: 0.75rem;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    font-weight: 500;
    border-radius: var(--radius-full);
    padding: 0.5rem 1.5rem;
}

.nav-link--cta:hover {
    background: var(--color-accent-dark);
    color: white;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 31, 18, 0.7) 0%, rgba(27, 58, 30, 0.55) 40%, rgba(44, 85, 48, 0.5) 70%, rgba(15, 31, 18, 0.75) 100%),
        url('../images/gallery/hero-bg.jpg') center/cover no-repeat;
}


.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255,255,255,0.01) 2px,
            rgba(255,255,255,0.01) 4px
        );
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(200, 169, 110, 0.3);
    border-radius: 50%;
    animation: float linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translateY(-10vh) rotate(720deg);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    padding: var(--space-md);
}

.hero-logo {
    margin-bottom: var(--space-md);
}

.hero-logo-img {
    height: clamp(80px, 12vw, 140px);
    width: auto;
    filter: brightness(0) invert(1);
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent-light);
    border: 1px solid rgba(var(--color-accent-rgb), 0.3);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.1875rem);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto var(--space-lg);
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.3); }
}

/* --- Section Base --- */
.section {
    padding: var(--space-2xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-xl);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent-dark);
    margin-bottom: var(--space-sm);
}

.section-tag--light {
    color: var(--color-accent-light);
}

.section-title {
    margin-bottom: var(--space-sm);
}

.section-title em {
    color: var(--color-primary-light);
    font-style: italic;
}

.section-title--light {
    color: white;
}

.section-title--light em {
    color: var(--color-accent);
}

.section-desc {
    font-size: 1.0625rem;
    color: var(--color-text-medium);
    line-height: 1.8;
}

/* --- About Section --- */
.section--about {
    background: var(--color-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-text {
    max-width: 560px;
}

.about-lead {
    font-size: 1.1875rem;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.about-text p {
    color: var(--color-text-medium);
    margin-bottom: var(--space-sm);
    line-height: 1.8;
}

.about-card {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(var(--color-accent-rgb), 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    position: relative;
    z-index: 1;
}

.stat {
    text-align: center;
    padding: var(--space-sm);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.03em;
}

/* --- Views Section --- */
.section--views {
    padding: var(--space-2xl) 0;
    position: relative;
    overflow: hidden;
}

.views-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(170deg, rgba(var(--color-bg-dark-rgb), 0.82) 0%, rgba(27, 58, 30, 0.75) 40%, rgba(var(--color-bg-dark-rgb), 0.85) 100%),
        url('../images/gallery/views-drakensberg.jpg') center/cover no-repeat;
}

.views-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-xl);
    position: relative;
    z-index: 1;
}

.views-text {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
}

.views-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    position: relative;
    z-index: 1;
}

.view-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    transition: all var(--transition-base);
}

.view-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    border-color: rgba(var(--color-accent-rgb), 0.3);
}

.view-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-sm);
    color: var(--color-accent);
}

.view-card-icon svg {
    width: 100%;
    height: 100%;
}

.view-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.5rem;
}

.view-card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* --- Lifestyle Section --- */
.section--lifestyle {
    background: var(--color-bg-alt);
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.lifestyle-card {
    background: white;
    border-radius: var(--radius-md);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.lifestyle-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.lifestyle-card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-sm);
    color: var(--color-primary);
    transition: color var(--transition-base);
}

.lifestyle-card:hover .lifestyle-card-icon {
    color: var(--color-accent-dark);
}

.lifestyle-card-icon svg {
    width: 100%;
    height: 100%;
}

.lifestyle-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.lifestyle-card p {
    font-size: 0.9375rem;
    color: var(--color-text-medium);
    line-height: 1.7;
}

/* --- Features Section --- */
.section--features {
    background: var(--color-bg);
}

.features-showcase {
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all var(--transition-base);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item:hover {
    padding-left: var(--space-sm);
}

.feature-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent-light);
    line-height: 1;
    min-width: 80px;
    transition: color var(--transition-base);
}

.feature-item:hover .feature-number {
    color: var(--color-accent);
}

.feature-content h3 {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-size: 0.9375rem;
    color: var(--color-text-medium);
    line-height: 1.8;
}

/* --- Community Section --- */
.section--community {
    position: relative;
    overflow: hidden;
    padding: var(--space-2xl) 0;
}

.community-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(150deg, rgba(var(--color-bg-dark-rgb), 0.88) 0%, rgba(27, 58, 30, 0.85) 50%, rgba(var(--color-bg-dark-rgb), 0.9) 100%),
        url('../images/gallery/community-halloween.jpg') center/cover no-repeat;
}

.community-content {
    position: relative;
    z-index: 1;
    max-width: 750px;
}

.community-text p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.community-highlights {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.community-highlight {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-base);
}

.community-highlight:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(var(--color-accent-rgb), 0.3);
}

.community-highlight svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-accent);
}

.community-highlight span {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
}

/* --- Gallery Section --- */
.section--gallery {
    background: var(--color-bg-alt);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 1rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--transition-base);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

.gallery-note {
    text-align: center;
    font-size: 0.9375rem;
    color: var(--color-text-medium);
}

.gallery-note a {
    color: var(--color-primary);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.gallery-note a:hover {
    color: var(--color-accent-dark);
}

/* --- Contact Section --- */
.section--contact {
    background: var(--color-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.contact-card {
    background: white;
    border-radius: var(--radius-md);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all var(--transition-base);
}

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

.contact-card-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto var(--space-sm);
    color: var(--color-primary);
}

.contact-card-icon svg {
    width: 100%;
    height: 100%;
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.contact-name {
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.contact-detail {
    font-size: 0.9375rem;
    color: var(--color-text-medium);
    margin-bottom: 0.25rem;
    line-height: 1.6;
}

.contact-detail a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-detail a:hover {
    color: var(--color-accent-dark);
}

.contact-meta {
    font-size: 0.8125rem;
    color: var(--color-text-light);
    margin-top: 0.5rem;
}

.contact-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* --- Footer --- */
.footer {
    background: var(--color-bg-dark);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: var(--space-sm);
}

.footer-tagline {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.footer-social {
    display: flex;
    gap: var(--space-xs);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--color-accent);
    color: var(--color-primary-dark);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-links h4,
.footer-contact h4,
.footer-legal h4 {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: var(--space-sm);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-contact p,
.footer-legal p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.375rem;
    line-height: 1.5;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

/* --- Animations --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children animations */
.views-cards .view-card:nth-child(2) { transition-delay: 0.15s; }
.views-cards .view-card:nth-child(3) { transition-delay: 0.3s; }

.lifestyle-grid .lifestyle-card:nth-child(2) { transition-delay: 0.1s; }
.lifestyle-grid .lifestyle-card:nth-child(3) { transition-delay: 0.2s; }
.lifestyle-grid .lifestyle-card:nth-child(4) { transition-delay: 0.1s; }
.lifestyle-grid .lifestyle-card:nth-child(5) { transition-delay: 0.2s; }
.lifestyle-grid .lifestyle-card:nth-child(6) { transition-delay: 0.3s; }

.contact-grid .contact-card:nth-child(2) { transition-delay: 0.15s; }
.contact-grid .contact-card:nth-child(3) { transition-delay: 0.3s; }

.features-showcase .feature-item:nth-child(2) { transition-delay: 0.1s; }
.features-showcase .feature-item:nth-child(3) { transition-delay: 0.2s; }
.features-showcase .feature-item:nth-child(4) { transition-delay: 0.3s; }
.features-showcase .feature-item:nth-child(5) { transition-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .about-text {
        max-width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }
}

@media (max-width: 768px) {
    :root {
        --space-xl: 4rem;
        --space-2xl: 5rem;
    }

    /* Mobile navigation */
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: rgba(var(--color-bg-dark-rgb), 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: var(--space-lg);
        gap: var(--space-xs);
        transition: right var(--transition-base);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-link {
        font-size: 1.125rem;
        padding: 0.75rem 0;
        color: rgba(255, 255, 255, 0.9);
    }

    .nav-link--cta {
        margin-left: 0;
        margin-top: var(--space-sm);
    }

    /* Grids */
    .views-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .lifestyle-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .feature-item {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .feature-number {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .hero-scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

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

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-sm);
    }
}

/* --- Print --- */
@media print {
    .navbar,
    .hero-particles,
    .hero-scroll-indicator,
    .gallery-placeholder svg {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: var(--space-lg);
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }

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