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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

:root {
    /* New Color Palette - From Logo */
    --primary: #6B4E3D;           /* Rich brown */
    --secondary: #8B6F47;         /* Medium brown (logo) */
    --background-light: #EDE5DC;  /* Cream */
    --background-warm: #C4AF9A;   /* Warm beige */
    --dark: #3D2E25;              /* Darker brown */
    --text-light: #F5F1EB;        /* Off-white */
    --accent: #A08060;            /* Muted tan */

    /* Functional Colors */
    --text-primary: var(--dark);
    --text-secondary: var(--primary);
    --border-color: rgba(107, 78, 61, 0.2);
    --shadow: rgba(61, 46, 37, 0.15);
    --glass: rgba(237, 229, 220, 0.7);
    --glass-border: rgba(107, 78, 61, 0.18);
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--background-light);
    color: var(--dark);
    overflow-x: hidden;
    /* Cursor handled in mobile-first responsive section below */
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.15s ease;
    mix-blend-mode: difference;
}

.cursor-glow {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.05s ease;
    box-shadow: 0 0 20px var(--primary);
}

/* Animated Background */
.bg-animation {
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(107, 78, 61, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 111, 71, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(160, 128, 96, 0.06) 0%, transparent 50%);
    animation: gradient-shift 15s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.grain {
    position: fixed;
    inset: 0;
    z-index: 1;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 5%; /* Mobile-first: smaller padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(237, 229, 220, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 20px var(--shadow);
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    font-family: 'Playfair Display', serif;
}

.logo-main {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.05em;
}

.logo-ornament {
    color: var(--secondary);
    font-size: 0.8rem;
    opacity: 0.8;
}

.logo-subtitle {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    font-family: 'Outfit', sans-serif;
}

.logo:hover .logo-ornament {
    animation: ornament-glow 1s ease-in-out;
}

@keyframes ornament-glow {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.logo .heart {
    color: var(--primary);
    display: inline-block;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10% { transform: scale(1.2); }
    20% { transform: scale(1); }
}

.nav-links {
    display: none; /* Hidden by default on mobile */
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--secondary);
}

.nav-links a:hover::before {
    width: 100%;
}

/* Hero Section - Updated with stats */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 12rem 5% 4rem;
    overflow: hidden;
}

.hero-diagonal {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr; /* Mobile-first: single column */
    gap: 2rem;
    align-items: center;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 8.5vw, 6rem);
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 1.25rem;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 20%, #D4AF7A 40%, #F5E6D3 50%, #D4AF7A 60%, var(--secondary) 80%, var(--primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s linear infinite;
    animation-delay: 1.5s;
    word-break: normal;
    hyphens: none;
}

.hero-text .tagline {
    font-size: clamp(1rem, 3.2vw, 1.4rem);
    color: var(--secondary);
    margin-bottom: 1rem;
    font-style: italic;
    opacity: 0.92;
    line-height: 1.5;
    max-width: 640px;
}

.hero-text .hero-geo {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    opacity: 0.7;
    margin-bottom: 2rem;
    max-width: 640px;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--dark);
    opacity: 0.85;
    max-width: 600px;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1.2rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border: 2px solid transparent; /* Consistent border for all buttons */
    border-radius: 8px;
    cursor: pointer; /* Mobile-first: pointer cursor for touch/click */
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap; /* Prevent text wrapping */
}

.btn-primary {
    background: var(--primary);
    color: var(--text-light);
    box-shadow: 0 10px 40px var(--shadow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary); /* Use border-color instead of border */
    backdrop-filter: blur(10px);
}

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

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem; /* Reduced gap on mobile */
    position: relative;
    z-index: 3;
    width: 100%; /* Prevent overflow */
    max-width: 100%;
}

/* About Section */
.about {
    padding: 4rem 5%; /* Mobile-first: smaller padding */
    position: relative;
    z-index: 2;
    background: var(--background-warm);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr; /* Mobile-first: single column */
    gap: 2rem;
    align-items: center;
}

.about-image-placeholder {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.2rem;
    text-align: center;
    padding: 2rem;
}

.about-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.about-photo {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
    border: 3px solid var(--background-light);
}

/* Promotions Section */
.promotions {
    padding: 4rem 5%; /* Mobile-first: smaller padding */
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.promo-card {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
    text-align: center;
}

.promo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.24);
}

.promo-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.12), rgba(107, 78, 61, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.promo-icon svg {
    width: 28px;
    height: 28px;
}

.promo-tip {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    margin-top: 3rem;
    display: inline-flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
}

.promo-tip svg {
    width: 22px;
    height: 22px;
    stroke: #fff;
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.promo-tip p {
    font-size: 0.95rem;
    color: #fff;
    opacity: 0.9;
    margin: 0;
}

.hero-stat-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.hero-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--shadow);
}

.hero-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 5rem); /* Responsive to prevent overflow */
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 20%, #D4AF7A 40%, #F5E6D3 50%, #D4AF7A 60%, var(--secondary) 80%, var(--primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 4px 20px rgba(139, 111, 71, 0.3));
    letter-spacing: 1px;
    word-break: keep-all; /* Prevent text breaking */
    white-space: nowrap; /* Keep text on one line */
    position: relative;
    z-index: 2;
    animation: shimmer 6s linear infinite;
}

.hero-stat-label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    font-weight: 500;
    color: var(--dark);
    position: relative;
    z-index: 2;
}

/* Services Section - 3D Cards */
.services {
    padding: 4rem 5%; /* Mobile-first: smaller padding */
    position: relative;
    z-index: 2;
}

/* USP strip — value pillars above the price list */
.usp-strip {
    max-width: 1200px;
    margin: 0 auto 5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.usp-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.usp-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(61, 46, 37, 0.08);
}

.usp-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.14), rgba(107, 78, 61, 0.08));
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.usp-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary);
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.usp-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.35rem;
    letter-spacing: 0.01em;
}

.usp-text p {
    font-size: 0.9rem;
    color: var(--dark);
    opacity: 0.78;
    line-height: 1.55;
    margin: 0;
}

/* Service price list — refined */
.service-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.85rem 1rem;
    margin: 0 auto 1.5rem;
    background: rgba(107, 78, 61, 0.06);
    border-radius: 10px;
    width: fit-content;
}

.service-price .price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 0.02em;
}

.service-price .price-note {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    opacity: 0.7;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    opacity: 0.8;
    line-height: 1.8;
    color: var(--dark);
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr; /* Mobile-first: single column */
    gap: 2rem;
    perspective: 1000px;
}

.service-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover {
    transform: translateY(-20px) rotateX(5deg);
    box-shadow: 0 30px 80px var(--shadow);
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.10), rgba(107, 78, 61, 0.06));
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
    stroke-width: 1.4;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.4s;
}

.service-card:hover .service-icon {
    transform: scale(1.08);
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.18), rgba(107, 78, 61, 0.10));
}

.service-card:hover .service-icon svg {
    stroke: var(--secondary);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    color: var(--primary);
}

.service-card p {
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    color: var(--dark);
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 1rem;
}

/* FAQ Section - Neumorphic Style */
.faq {
    padding: 4rem 5%; /* Mobile-first: smaller padding */
    position: relative;
    z-index: 2;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(107, 78, 61, 0.08);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--primary);
    flex-shrink: 0;
}

.faq-icon svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-icon {
    background: var(--primary);
    color: var(--text-light);
}

.faq-item.active .faq-icon svg {
    transform: rotate(180deg);
}

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

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

.faq-answer-content {
    padding: 0 2rem 2rem 2rem;
    opacity: 0.8;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 4rem 5% 2rem; /* Mobile-first: smaller padding */
    position: relative;
    z-index: 2;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr; /* Mobile-first: single column */
    gap: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 20%, #D4AF7A 40%, #F5E6D3 50%, #D4AF7A 60%, var(--secondary) 80%, var(--primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.contact-info p {
    font-size: 1.1rem;
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.15rem 2.25rem;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.28);
    transition: all 0.3s;
    margin-bottom: 3rem;
    width: fit-content;
}

.whatsapp-btn svg {
    fill: #fff;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.45);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.10), rgba(107, 78, 61, 0.06));
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-detail-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.contact-detail-text p {
    opacity: 0.7;
    font-size: 0.95rem;
    margin: 0;
}

/* Contact form — refined premium: dark text on cream, proper contrast,
   strong labels, refined focus states matching brand */
.contact-form {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(61, 46, 37, 0.12);
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
}

.contact-form .form-subtitle {
    font-size: 0.95rem;
    color: var(--dark);
    opacity: 0.7;
    margin-bottom: 1.75rem;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    color: var(--primary);
    text-transform: none;
    opacity: 1;
}

.form-group label .req {
    color: var(--secondary);
    margin-left: 2px;
    opacity: 0.75;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.95rem 1.1rem;
    background: #fff;
    border: 1.5px solid rgba(107, 78, 61, 0.18);
    border-radius: 10px;
    color: var(--dark);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(61, 46, 37, 0.4);
    font-weight: 400;
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: rgba(107, 78, 61, 0.35);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(107, 78, 61, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.form-notice {
    font-size: 0.78rem;
    color: var(--dark);
    opacity: 0.62;
    line-height: 1.55;
    margin: 0.5rem 0 1.25rem;
}

.form-submit {
    width: 100%;
    padding: 1.1rem;
    background: var(--primary);
    color: var(--text-light);
    border: none;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    box-shadow: 0 8px 24px rgba(107, 78, 61, 0.22);
    font-size: 1rem;
    margin-top: 0.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.form-submit svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.form-submit:hover {
    transform: translateY(-2px);
    background: var(--secondary);
    box-shadow: 0 12px 32px rgba(107, 78, 61, 0.28);
}

/* intl-tel-input overrides — match brand */
.iti { width: 100%; }
.iti__selected-flag { border-radius: 10px 0 0 10px; padding: 0 10px 0 12px; }
.iti__country-list {
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 12px 32px rgba(61, 46, 37, 0.14);
}
.iti__country.iti__highlight { background-color: rgba(107, 78, 61, 0.08); }
.iti input[type="tel"] { padding-left: 55px !important; }

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }
}

/* Footer */
footer {
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 2;
    background: var(--primary);
    color: var(--text-light);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.footer-logo-main {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.05em;
}

.footer-logo-ornament {
    color: var(--secondary);
    font-size: 1rem;
    opacity: 0.9;
}

.footer-logo-subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0.9;
    font-family: 'Outfit', sans-serif;
}

.footer-logo .heart {
    color: var(--secondary);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    color: var(--primary);
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--secondary);
    transform: translateY(-5px);
    color: var(--text-light);
}

.footer-text {
    opacity: 0.5;
    font-size: 0.9rem;
}

.site-credit {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.6rem;
    color: rgba(245, 241, 235, 0.3);
}

.site-credit a {
    color: inherit;
    text-decoration: none;
}

.site-credit a:hover {
    color: rgba(245, 241, 235, 0.6);
}

/* Responsive */
/* Mobile-first: Hide cursor on mobile */
body {
    cursor: auto;
}

.cursor,
.cursor-glow {
    display: none;
}

.hero {
    padding-top: 8rem;
}

.hero-diagonal {
    display: none;
}

/* Mobile logo adjustments */
.logo-main {
    font-size: 1.2rem;
}

.logo-subtitle {
    font-size: 0.6rem;
}

/* Tablet and up: 768px+ */
@media (min-width: 768px) {
    .logo-main {
        font-size: 1.5rem;
    }

    .logo-subtitle {
        font-size: 0.65rem;
    }
    nav {
        padding: 2rem 5%; /* Larger padding on tablet+ */
    }

    .nav-links {
        display: flex; /* Show navigation on tablet+ */
    }

    .hero {
        padding-top: 12rem;
    }

    .contact-container {
        grid-template-columns: 1fr 1fr; /* 2 columns on tablet+ */
        gap: 3rem;
    }

    .usp-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    body {
        cursor: none; /* Custom cursor on desktop */
    }

    .cursor,
    .cursor-glow {
        display: block;
    }
}

/* Desktop: 1024px+ */
@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1.2fr 0.8fr; /* 2 columns on desktop */
        gap: 4rem;
    }

    .hero-stats {
        gap: 2rem; /* Larger gap on desktop */
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); /* fluid — 3 or 4 cards */
        gap: 2.5rem;
    }

    .usp-strip {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .contact-container {
        gap: 4rem;
    }

    .hero-diagonal {
        display: block; /* Show diagonal on desktop */
    }

    /* Larger section padding on desktop */
    .services,
    .faq,
    .contact,
    .about,
    .promotions {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }

    .about-container {
        grid-template-columns: 1fr 1fr; /* 2 columns on desktop */
        gap: 4rem;
    }

    .contact-form {
        padding: 3rem; /* More padding on desktop */
    }
}

/* Large desktop: 1440px+ */
@media (min-width: 1440px) {
    nav {
        padding: 2rem calc((100% - 1400px) / 2); /* Center content on large screens */
    }

    .hero,
    section {
        padding-left: calc((100% - 1400px) / 2);
        padding-right: calc((100% - 1400px) / 2);
    }
}

/* ================================================================
   LANDING PAGES — shared layout for hub + service + geo pages
   ================================================================ */

/* Landing hero — shorter than home, no diagonal, no stats grid */
.landing-hero {
    position: relative;
    padding: 10rem 5% 4rem;
    z-index: 2;
    overflow: hidden;
}

.landing-hero .hero-diagonal {
    display: none;
}

.landing-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.landing-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 20%, #D4AF7A 40%, #F5E6D3 50%, #D4AF7A 60%, var(--secondary) 80%, var(--primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s linear infinite;
    animation-delay: 1.5s;
}

.landing-hero .lead {
    font-size: clamp(1rem, 2.6vw, 1.25rem);
    color: var(--dark);
    line-height: 1.6;
    max-width: 700px;
    margin-bottom: 0.5rem;
}

.landing-hero .lead strong {
    color: var(--primary);
    font-weight: 600;
}

.landing-hero .geo-note {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    opacity: 0.7;
    margin: 1rem 0 2rem;
}

.landing-hero .cta-microcopy {
    font-size: 0.85rem;
    color: var(--dark);
    opacity: 0.7;
    margin-top: 0.75rem;
    font-style: italic;
}

/* Landing section — reusable padded block */
.landing-section {
    position: relative;
    z-index: 2;
    padding: 4rem 5%;
}

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

.landing-section.dark {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--text-light);
}

.landing-section.dark h2,
.landing-section.dark h3 {
    color: #fff;
}

.landing-section-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.landing-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 4.5vw, 2.75rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.landing-section .section-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark);
    opacity: 0.85;
    margin-bottom: 2rem;
    max-width: 780px;
}

.landing-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--secondary);
    margin: 2rem 0 0.75rem;
    letter-spacing: 0.01em;
}

.landing-section p {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--dark);
    opacity: 0.85;
    margin-bottom: 1rem;
}

.landing-section strong {
    color: var(--primary);
    font-weight: 600;
}

/* Price list — clean rows with amount + duration + travel-included tick */
.price-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin: 1.25rem 0 1.5rem;
}

.price-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    padding: 0.85rem 1.15rem;
    background: rgba(255, 255, 255, 0.55);
    border-left: 3px solid var(--primary);
    border-radius: 8px;
    align-items: baseline;
}

.price-row .label {
    font-size: 0.98rem;
    color: var(--dark);
}

.price-row .label .duration {
    color: var(--dark);
    opacity: 0.55;
    font-size: 0.88rem;
    margin-left: 0.5rem;
}

.price-row .amount {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
    white-space: nowrap;
}

.travel-tick {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--primary);
    opacity: 0.85;
    margin-top: 0.5rem;
    font-weight: 500;
}

.travel-tick::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(107, 78, 61, 0.10);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.75rem;
}

/* Pillars — 4-up reusable trust block */
.pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.25rem 0;
}

.pillar {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.25rem 1.15rem;
}

.pillar strong {
    display: block;
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
    letter-spacing: 0.01em;
}

.pillar p {
    font-size: 0.92rem;
    line-height: 1.55;
    opacity: 0.85;
    margin: 0;
}

/* TikTok teaser strip */
.tiktok-teaser {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1.5rem;
    background: rgba(107, 78, 61, 0.06);
    border-radius: 14px;
    border: 1px solid var(--glass-border);
}

.tiktok-teaser svg {
    width: 42px;
    height: 42px;
    fill: var(--primary);
    flex-shrink: 0;
}

.tiktok-teaser a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s;
}

.tiktok-teaser a:hover {
    border-bottom-color: var(--primary);
}

/* Internal links block */
.internal-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.internal-links-group h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    opacity: 0.7;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.internal-links-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.internal-links-group a {
    color: var(--dark);
    text-decoration: none;
    font-size: 0.98rem;
    border-bottom: 1px dashed rgba(107, 78, 61, 0.35);
    transition: color 0.2s, border-color 0.2s;
    padding-bottom: 2px;
}

.internal-links-group a:hover {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
    border-bottom-style: solid;
}

/* Final CTA block */
.landing-cta {
    text-align: center;
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--text-light);
}

.landing-cta h2 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: clamp(1.9rem, 4.5vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.landing-cta .kicker {
    font-family: 'Playfair Display', serif;
    color: rgba(255,255,255,0.85);
    font-style: italic;
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.landing-cta p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
}

.landing-cta .whatsapp-btn {
    margin: 0 auto 1rem;
    background: #fff;
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.landing-cta .whatsapp-btn svg {
    fill: var(--primary);
}

.landing-cta .whatsapp-btn:hover {
    background: var(--text-light);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.28);
}

.landing-cta .microcopy {
    font-size: 0.9rem;
    opacity: 0.85;
    color: #fff;
}

@media (min-width: 768px) {
    .pillars { grid-template-columns: repeat(2, 1fr); }
    .internal-links { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

@media (min-width: 1024px) {
    .pillars { grid-template-columns: repeat(4, 1fr); }
    .internal-links { grid-template-columns: repeat(3, 1fr); }
    .landing-hero { padding: 12rem 5% 5rem; }
    .landing-section { padding: 6rem 5%; }
}

/* ================================================================
   BREADCRUMBS — visible trail matching BreadcrumbList JSON-LD
   ================================================================ */
.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6.5rem 5% 0;
    font-size: 0.82rem;
    color: var(--dark);
    opacity: 0.75;
    position: relative;
    z-index: 5;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.5rem;
    align-items: center;
    padding: 0;
    margin: 0;
}

.breadcrumb li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.03em;
}

.breadcrumb li + li::before {
    content: "›";
    color: var(--primary);
    opacity: 0.55;
    margin-right: 0.5rem;
    font-size: 1rem;
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s, color 0.2s;
    padding-bottom: 1px;
}

.breadcrumb a:hover {
    border-bottom-color: var(--primary);
    color: var(--secondary);
}

.breadcrumb li[aria-current="page"] {
    color: var(--dark);
    opacity: 0.9;
    font-weight: 500;
}

/* Trim padding when breadcrumb sits above landing-hero */
.breadcrumb + .landing-hero { padding-top: 2rem; }

@media (min-width: 1024px) {
    .breadcrumb { padding-left: 5%; padding-right: 5%; padding-top: 7rem; }
    .breadcrumb + .landing-hero { padding-top: 2.5rem; }
}

/* ================================================================
   COOKIE CONSENT BANNER — brand-matched styling for shared module
   ================================================================ */
.cookie-consent-banner {
    position: fixed;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    bottom: 1.25rem;
    max-width: 900px;
    width: calc(100% - 2rem);
    z-index: 10000;
    background: rgba(237, 229, 220, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(61, 46, 37, 0.20);
    color: var(--dark);
    padding: 1.25rem 1.5rem;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Outfit', sans-serif;
}

.cookie-consent-banner.active {
    transform: translateX(-50%) translateY(0);
}

.cookie-consent-banner__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-consent-banner__text { flex: 1; }

.cookie-consent-banner__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 0.35rem;
}

.cookie-consent-banner__description {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--dark);
    opacity: 0.82;
    margin: 0;
}

.cookie-consent-banner__link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(107,78,61,0.35);
    padding-bottom: 1px;
}

.cookie-consent-banner__link:hover { border-bottom-color: var(--primary); }

.cookie-consent-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
}

.cookie-consent-banner__button {
    padding: 0.6rem 1.1rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.25s;
    letter-spacing: 0.02em;
}

.cookie-consent-banner__button--accept {
    background: var(--primary);
    color: var(--text-light);
    box-shadow: 0 6px 18px rgba(107, 78, 61, 0.22);
}

.cookie-consent-banner__button--accept:hover {
    background: var(--secondary);
    transform: translateY(-1px);
}

.cookie-consent-banner__button--reject {
    background: transparent;
    color: var(--primary);
    border-color: rgba(107, 78, 61, 0.35);
}

.cookie-consent-banner__button--reject:hover {
    border-color: var(--primary);
    background: rgba(255,255,255,0.35);
}

.cookie-consent-banner__button--settings {
    background: transparent;
    color: var(--dark);
    opacity: 0.7;
    border: none;
    padding: 0.5rem 0.75rem;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-consent-banner__button--settings:hover { opacity: 1; }

@media (min-width: 720px) {
    .cookie-consent-banner__content {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }
    .cookie-consent-banner__actions { flex-shrink: 0; }
}

/* Preferences modal — used only if the settings button is shown */
.cookie-preferences-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
}
.cookie-preferences-modal.active { display: flex; }
.cookie-preferences-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(61, 46, 37, 0.55);
    backdrop-filter: blur(8px);
}
.cookie-preferences-modal__container {
    position: relative;
    max-width: 560px;
    width: calc(100% - 2rem);
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
    background: var(--background-light);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 24px 80px rgba(61, 46, 37, 0.35);
    color: var(--dark);
}
.cookie-preferences-modal__title {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.cookie-preferences-modal__description { font-size: 0.9rem; opacity: 0.85; margin-bottom: 1rem; }
.cookie-preferences-modal__categories { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1rem; }
.cookie-preferences-modal__category {
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    background: rgba(255,255,255,0.55);
}
.cookie-preferences-modal__category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}
.cookie-preferences-modal__category-label {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}
.cookie-preferences-modal__required-badge {
    display: inline-block;
    font-size: 0.7rem;
    padding: 0.15rem 0.55rem;
    background: rgba(107, 78, 61, 0.12);
    color: var(--primary);
    border-radius: 999px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-left: 0.5rem;
}
.cookie-preferences-modal__close {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    padding: 0.25rem 0.5rem;
}
