/* ══════════════════════════════════════════════════════
   PARSA TAPPETI — Persian Luxury Design System
   ══════════════════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
    /* Persian palette */
    --midnight:     #0a1128;
    --midnight-90:  rgba(10, 17, 40, 0.92);
    --navy:         #131d3a;
    --cream:        #faf3e6;
    --cream-soft:   #f5ead4;
    --gold:         #c9a96e;
    --gold-light:   #dfc9a0;
    --gold-deep:    #a68340;
    --ruby:         #8b1a3a;
    --ruby-deep:    #5e1128;
    --persian-blue: #1e3a5f;
    --turquoise:    #2a7b8e;

    /* Neutrals */
    --text-dark:    #141c2e;
    --text-soft:    #4a5068;
    --text-muted:   #7a8098;
    --stroke:       #e3d6c1;
    --card-bg:      #ffffff;

    /* Shadows */
    --shadow-sm:    0 4px 16px rgba(10,17,40,0.08);
    --shadow-md:    0 16px 48px rgba(10,17,40,0.12);
    --shadow-lg:    0 24px 64px rgba(10,17,40,0.18);
    --shadow-gold:  0 12px 40px rgba(201,169,110,0.3);

    /* Radius */
    --radius-sm:    8px;
    --radius-md:    16px;
    --radius-lg:    24px;
    --radius-xl:    32px;

    /* Transitions */
    --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce:  cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Z-index layers */
    --z-cursor:     9999;
    --z-preloader:  9000;
    --z-header:     1000;
    --z-float:      800;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    width: 100%;
    max-width: 100vw;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

::selection {
    background: var(--gold);
    color: var(--midnight);
}

/* ─── Typography ─── */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-dark);
}

h1 em, h2 em {
    font-style: italic;
    color: var(--gold);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Preloader ── */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: var(--z-preloader);
    background: var(--midnight);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.preloader__ornament {
    width: 60px;
    height: 60px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.preloader__logo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: contain;
}

.preloader__text {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* ── Custom Cursor ── */
.cursor-dot, .cursor-ring {
    display: none;
}

@media (pointer: fine) {
    .cursor-dot {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 6px;
        height: 6px;
        background: var(--gold);
        border-radius: 50%;
        pointer-events: none;
        z-index: var(--z-cursor);
        transform: translate(-50%, -50%);
        transition: width 0.2s, height 0.2s, background 0.2s;
    }

    .cursor-ring {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 36px;
        height: 36px;
        border: 1.5px solid var(--gold);
        border-radius: 50%;
        pointer-events: none;
        z-index: var(--z-cursor);
        transform: translate(-50%, -50%);
        transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), border-color 0.3s;
    }

    body:has(a:hover) .cursor-ring,
    body:has(button:hover) .cursor-ring {
        width: 56px;
        height: 56px;
        border-color: var(--ruby);
    }

    body:has(a:hover) .cursor-dot,
    body:has(button:hover) .cursor-dot {
        width: 10px;
        height: 10px;
        background: var(--ruby);
    }
}

/* ═══════════════════════════════════════════
   TOPBAR
═══════════════════════════════════════════ */
.topbar {
    background: var(--midnight);
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0;
    position: relative;
    z-index: calc(var(--z-header) + 1);
    border-bottom: 1px solid rgba(201,169,110,0.15);
    overflow: hidden;
    letter-spacing: 0.04em;
}

/* Subtle shimmer line at bottom */
.topbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
    animation: topbarShimmer 4s ease-in-out infinite;
}

@keyframes topbarShimmer {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.6; }
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    height: 38px;
}

.topbar__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    height: 100%;
    font-family: var(--ff-heading);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.78rem;
    color: var(--gold);
    position: relative;
}

.topbar__badge i {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Geometric diamond separators */
.topbar__sep {
    width: 4px;
    height: 4px;
    background: var(--gold);
    transform: rotate(45deg);
    opacity: 0.35;
    flex-shrink: 0;
}

.topbar__contacts {
    display: flex;
    gap: 0;
    align-items: center;
    height: 100%;
}

.topbar__link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 18px;
    height: 100%;
    color: rgba(201,169,110,0.7);
    transition: color 0.3s, background 0.3s;
    font-size: 0.8rem;
    text-decoration: none;
    position: relative;
}

.topbar__link:hover {
    color: var(--gold);
    background: rgba(201,169,110,0.06);
}

.topbar__link i {
    font-size: 0.78rem;
}

.topbar__link--wa {
    color: #25d366;
    opacity: 0.85;
    background: none;
    padding: 0 18px;
    border-radius: 0;
}

.topbar__link--wa:hover {
    color: #2ee076;
    background: rgba(37,211,102,0.06);
    opacity: 1;
}

/* ═══════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: var(--z-header);
    background: var(--midnight-90);
    backdrop-filter: blur(20px) saturate(1.5);
    border-bottom: 1px solid rgba(201,169,110,0.15);
    transition: box-shadow 0.4s var(--ease-out);
}

.site-header.scrolled {
    box-shadow: 0 8px 40px rgba(10,17,40,0.4);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand__logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: contain;
    background: transparent;
    border: none;
    padding: 0;
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand__name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--cream);
    letter-spacing: 0.04em;
}

.brand__tagline {
    font-size: 0.78rem;
    color: var(--gold-light);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 4px;
}

.nav-links .nav-link {
    padding: 8px 16px;
    color: var(--cream);
    font-weight: 600;
    font-size: 0.92rem;
    border-radius: var(--radius-sm);
    transition: color 0.3s, background 0.3s;
    position: relative;
}

.nav-links .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out), left 0.3s var(--ease-out);
}

.nav-links .nav-link:hover::after {
    width: 60%;
    left: 20%;
}

.nav-links .nav-link:hover {
    color: var(--gold);
}

.nav-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 1px solid rgba(201,169,110,0.3);
    border-radius: var(--radius-sm);
    padding: 10px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10001;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

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

/* Mobile CTA bar (hidden on desktop) */
.mobile-cta-bar { display: none; }

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.92rem;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.35s var(--ease-out);
    white-space: nowrap;
}

.btn--gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: var(--midnight);
    box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 50px rgba(201,169,110,0.45);
    filter: brightness(1.08);
}

.btn--outline {
    background: transparent;
    color: var(--cream);
    border-color: rgba(201,169,110,0.4);
}

.btn--outline:hover {
    background: rgba(201,169,110,0.1);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn--glass {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: rgba(255,255,255,0.2);
    backdrop-filter: blur(12px);
}

.btn--glass:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 16px 32px;
    font-size: 1rem;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(160deg, var(--midnight) 0%, var(--navy) 40%, #1a2744 70%, var(--persian-blue) 100%);
    padding: 120px 0 80px;
}

.hero__pattern {
    position: absolute;
    inset: 0;
    background-image:
        /* Persian geometric - repeating arabesque */
        radial-gradient(circle at 20% 30%, rgba(201,169,110,0.08) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(201,169,110,0.06) 1px, transparent 1px),
        radial-gradient(circle at 50% 80%, rgba(139,26,58,0.05) 1px, transparent 1px),
        /* Diamond lattice */
        linear-gradient(45deg, rgba(201,169,110,0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(201,169,110,0.03) 25%, transparent 25%),
        linear-gradient(135deg, rgba(201,169,110,0.03) 25%, transparent 25%),
        linear-gradient(-135deg, rgba(201,169,110,0.03) 25%, transparent 25%);
    background-size: 120px 120px, 100px 100px, 140px 140px, 40px 40px, 40px 40px, 40px 40px, 40px 40px;
    opacity: 0.8;
    pointer-events: none;
    animation: patternDrift 60s linear infinite;
}

@keyframes patternDrift {
    0% { background-position: 0 0; }
    100% { background-position: 120px 120px; }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201,169,110,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(139,26,58,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(10,17,40,0.6) 0%, transparent 60%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.ornament-line {
    flex: 0 0 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.ornament-line:last-child {
    background: linear-gradient(270deg, var(--gold), transparent);
}

.hero__title {
    font-size: clamp(2.6rem, 5vw, 4rem);
    color: var(--cream);
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero__title em {
    color: var(--gold);
    font-style: italic;
}

.hero__lead {
    font-size: 1.08rem;
    color: rgba(250,243,230,0.75);
    max-width: 520px;
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    gap: 14px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.chip {
    padding: 10px 20px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(201,169,110,0.18);
    color: var(--gold-light);
    font-size: 0.88rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(12px);
    transition: all 0.35s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.chip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,169,110,0.1), rgba(139,26,58,0.06));
    opacity: 0;
    transition: opacity 0.35s;
}

.chip:hover {
    border-color: rgba(201,169,110,0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.chip:hover::before { opacity: 1; }

.chip__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(201,169,110,0.25), rgba(139,26,58,0.15));
    color: var(--gold);
    font-size: 0.85rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.chip__text {
    position: relative;
    z-index: 1;
}

/* Hero Visual */
.hero__visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero__image-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero__image-border {
    position: absolute;
    inset: 12px;
    border: 1.5px solid rgba(201,169,110,0.35);
    border-radius: calc(var(--radius-xl) - 6px);
    z-index: 2;
    pointer-events: none;
}

.hero__image {
    width: 100%;
    height: 440px;
    object-fit: cover;
    transition: transform 6s var(--ease-out);
}

.hero__image-frame:hover .hero__image {
    transform: scale(1.05);
}

.hero__image-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 3;
    background: var(--midnight-90);
    backdrop-filter: blur(12px);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(201,169,110,0.25);
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.badge-year {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--gold);
    font-size: 1.1rem;
}

.badge-sub {
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.stat-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,169,110,0.15);
    border-radius: var(--radius-md);
    padding: 18px 16px;
    text-align: center;
    backdrop-filter: blur(12px);
    transition: transform 0.35s var(--ease-out), border-color 0.35s;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.stat-card__icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201,169,110,0.2), rgba(139,26,58,0.15));
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.stat-card__number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold);
}

.stat-card__label {
    display: block;
    color: var(--gold-light);
    font-size: 0.82rem;
    font-weight: 600;
    margin-top: 2px;
}

/* Hero scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gold-light);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
}

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

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

/* ═══════════════════════════════════════════
   PERSIAN DIVIDER
═══════════════════════════════════════════ */
.persian-divider {
    position: relative;
    height: 80px;
    margin-top: -1px;
    overflow: hidden;
}

.divider-wave {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.services {
    position: relative;
    padding: 100px 0 120px;
    background: var(--midnight);
    overflow: hidden;
}

.section-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(201,169,110,0.04) 1px, transparent 1px),
        radial-gradient(circle at 90% 80%, rgba(139,26,58,0.03) 1px, transparent 1px);
    background-size: 80px 80px, 100px 100px;
    pointer-events: none;
}

/* Section headers */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-header--light .section-header__eyebrow,
.section-header--light .section-header__title,
.section-header--light .section-header__desc {
    color: var(--cream);
}

.section-header .section-header__title,
.services .section-header__title,
.services .section-header__desc {
    color: var(--cream);
}

.section-header__eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--gold);
    margin-bottom: 14px;
    position: relative;
}

.section-header__title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 20px;
}

.ornament-diamond {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 24px auto;
}

.ornament-diamond::before {
    content: '';
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    border: 2px solid var(--gold);
    transform: rotate(45deg);
    position: relative;
}

.ornament-diamond::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    max-width: 120px;
}

/* Centered version for sections that need it */
.section-header .ornament-diamond {
    justify-content: center;
}

.section-header__desc {
    font-size: 1.05rem;
    color: var(--text-soft);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

.services .section-header__desc { color: rgba(250,243,230,0.7); }

/* Service cards */
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    position: relative;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,169,110,0.12);
    border-radius: var(--radius-lg);
    padding: 44px 32px 36px;
    backdrop-filter: blur(8px);
    transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(201,169,110,0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 24px 60px rgba(201,169,110,0.15);
}

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

/* Corner ornaments */
.service-card__corner {
    position: absolute;
    width: 24px;
    height: 24px;
    border-color: var(--gold);
    border-style: solid;
    opacity: 0;
    transition: opacity 0.35s;
}

.service-card:hover .service-card__corner { opacity: 0.5; }

.service-card__corner--tl { top: 12px; left: 12px; border-width: 2px 0 0 2px; }
.service-card__corner--tr { top: 12px; right: 12px; border-width: 2px 2px 0 0; }
.service-card__corner--bl { bottom: 12px; left: 12px; border-width: 0 0 2px 2px; }
.service-card__corner--br { bottom: 12px; right: 12px; border-width: 0 2px 2px 0; }

.service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(201,169,110,0.2), rgba(139,26,58,0.15));
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 22px;
    border: 1px solid rgba(201,169,110,0.2);
    position: relative;
    z-index: 1;
}

.service-card h3 {
    color: var(--cream);
    font-size: 1.35rem;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: rgba(250,243,230,0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.92rem;
    position: relative;
    z-index: 1;
    transition: gap 0.3s var(--ease-out);
}

.service-card__link:hover {
    gap: 14px;
    color: var(--gold-light);
}

/* ═══════════════════════════════════════════
   METHOD / HORIZONTAL CARDS
═══════════════════════════════════════════ */
.method {
    position: relative;
    padding: 100px 0 120px;
    background: var(--cream);
    overflow: hidden;
}

.method .section-header__title { color: var(--text-dark); }

.method__track-wrap {
    position: relative;
    max-width: 100%;
}

.method__track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

/* Connector line running horizontally under all cards */
.method__connector {
    position: absolute;
    bottom: 0;
    left: 5%;
    right: 5%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-deep), var(--gold), transparent);
    border-radius: 2px;
}

.method__card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--stroke);
    border-radius: var(--radius-lg);
    padding: 32px 26px 36px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
    overflow: hidden;
}

.method__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(201,169,110,0.06), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.method__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.method__card:hover::before { opacity: 1; }

.method__card-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: var(--midnight);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.04em;
    box-shadow: var(--shadow-gold);
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
}

.method__card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(201,169,110,0.15), rgba(139,26,58,0.08));
    color: var(--gold-deep);
    font-size: 1.1rem;
    margin: 0 auto 18px;
    position: relative;
    z-index: 1;
}

.method__card-eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold-deep);
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.method__card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.method__card p {
    color: var(--text-soft);
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Bottom decoration dot on each card */
.method__card-line {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    margin: 20px auto 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}

/* ═══════════════════════════════════════════
   WHY US
═══════════════════════════════════════════ */
.why-us {
    padding: 100px 0;
    background: var(--midnight);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 0% 50%, rgba(201,169,110,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 50%, rgba(139,26,58,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.why-us__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-us .section-header__title {
    color: var(--cream);
}

.why-us__desc {
    color: rgba(250,243,230,0.65);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-top: 16px;
}

.why-us__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,169,110,0.12);
    border-radius: var(--radius-md);
    padding: 22px 24px;
    transition: border-color 0.3s, transform 0.3s var(--ease-out);
}

.why-item:hover {
    border-color: var(--gold);
    transform: translateX(6px);
}

.why-item__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(201,169,110,0.2), rgba(139,26,58,0.12));
    color: var(--gold);
    flex-shrink: 0;
    font-size: 1rem;
}

.why-item strong {
    display: block;
    color: var(--cream);
    font-weight: 700;
    margin-bottom: 4px;
}

.why-item p {
    color: rgba(250,243,230,0.55);
    font-size: 0.9rem;
    margin: 0;
}

/* ═══════════════════════════════════════════
   GALLERY / CAROUSEL
═══════════════════════════════════════════ */
.gallery {
    padding: 100px 0 80px;
    background: var(--cream);
    overflow: hidden;
}

.gallery .section-header__title { color: var(--text-dark); }

/* Carousel */
.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0 20px;
}

.carousel__track {
    display: flex;
    gap: 20px;
    will-change: transform;
    /* animation is set by JS */
}

.carousel__slide {
    flex: 0 0 380px;
    height: 320px;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 0;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.carousel__slide:hover {
    transform: scale(1.04) translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-out);
}

.carousel__slide:hover img {
    transform: scale(1.1);
}

.carousel__slide figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 20px 18px;
    background: linear-gradient(to top, rgba(10,17,40,0.88), transparent);
    display: flex;
    flex-direction: column;
    gap: 4px;
    transform: translateY(8px);
    opacity: 0;
    transition: transform 0.35s var(--ease-out), opacity 0.35s;
}

.carousel__slide:hover figcaption {
    transform: translateY(0);
    opacity: 1;
}

.carousel__cat {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
}

.carousel__label {
    color: var(--cream);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Gradient fades on edges */
.carousel__fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.carousel__fade--left {
    left: 0;
    background: linear-gradient(to right, var(--cream), transparent);
}

.carousel__fade--right {
    right: 0;
    background: linear-gradient(to left, var(--cream), transparent);
}

/* Carousel animation */
@keyframes carouselScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.carousel__track.running {
    animation: carouselScroll var(--carousel-duration, 40s) linear infinite;
}

.carousel__track.running:hover {
    animation-play-state: paused;
}

/* Responsive carousel */
@media (max-width: 768px) {
    .carousel__slide {
        flex: 0 0 300px;
        height: 260px;
    }
    .carousel__fade { width: 60px; }
    .carousel__slide figcaption { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
    .carousel__slide {
        flex: 0 0 260px;
        height: 220px;
    }
    .carousel__fade { width: 30px; }
}

/* ═══════════════════════════════════════════
   PROCESS DETAIL
═══════════════════════════════════════════ */
.process-detail {
    padding: 80px 0 100px;
    background: var(--cream-soft);
}

.process-detail__block {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.process-detail__block:last-child { margin-bottom: 0; }

.process-detail__block--reverse {
    grid-template-columns: 1.2fr 1fr;
}

.process-detail__block--reverse .process-detail__images {
    order: 2;
}

.process-detail__block--reverse .process-detail__text {
    order: 1;
}

.process-detail__images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.process-detail__img {
    border-radius: var(--radius-lg);
    height: 340px;
    object-fit: cover;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--gold);
}

.process-detail__img--offset {
    margin-top: 40px;
}

.process-detail__text h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    margin-bottom: 16px;
}

.process-detail__text p {
    color: var(--text-soft);
    line-height: 1.8;
    margin-bottom: 12px;
}

.detail-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-list li {
    position: relative;
    padding-left: 24px;
    color: var(--text-soft);
    line-height: 1.7;
}

.detail-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border: 2px solid var(--gold);
    transform: rotate(45deg);
}

.detail-list li strong {
    color: var(--text-dark);
}

/* ═══════════════════════════════════════════
   CTA
═══════════════════════════════════════════ */
.cta {
    padding: 80px 0 100px;
    position: relative;
    background: var(--cream);
    overflow: hidden;
}

.cta__pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(201,169,110,0.08), transparent 40%),
        radial-gradient(circle at 80% 30%, rgba(139,26,58,0.06), transparent 40%);
    pointer-events: none;
}

.cta__card {
    position: relative;
    background: linear-gradient(135deg, var(--midnight), var(--navy));
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cta__border {
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(201,169,110,0.25);
    border-radius: calc(var(--radius-xl) - 8px);
    pointer-events: none;
    z-index: 1;
}

.cta__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    padding: 56px;
}

.cta__copy h2 {
    color: var(--cream);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 16px;
}

.cta__copy p {
    color: rgba(250,243,230,0.7);
    font-size: 1.05rem;
    line-height: 1.8;
}

.cta__actions {
    display: flex;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.cta__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-self: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--cream);
    font-weight: 600;
}

.info-item i {
    color: var(--gold);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
    background: var(--midnight);
    color: var(--cream);
    position: relative;
    overflow: hidden;
    padding: 0 0 0;
}

/* ---------- Decorative pattern band ---------- */
.footer__pattern-band {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    height: 48px;
    background: linear-gradient(180deg, rgba(201,169,110,0.08), transparent);
    position: relative;
}

.footer__pattern-strip {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--ruby), var(--gold), transparent);
}

.footer__pattern-diamond {
    width: 14px;
    height: 14px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
    margin: 0 18px;
    box-shadow: 0 0 16px rgba(201,169,110,0.5);
    position: relative;
}

.footer__pattern-diamond::before,
.footer__pattern-diamond::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--ruby);
    border-radius: 50%;
}
.footer__pattern-diamond::before { top: -16px; left: 50%; transform: translateX(-50%) rotate(-45deg); }
.footer__pattern-diamond::after  { bottom: -16px; left: 50%; transform: translateX(-50%) rotate(-45deg); }

/* ---------- Footer Hero (logo + motto) ---------- */
.footer__hero {
    text-align: center;
    padding: 52px 0 40px;
    position: relative;
}

.footer__logo {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    object-fit: contain;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0 auto 16px;
    display: block;
    box-shadow: none;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.footer__logo:hover {
    transform: scale(1.06);
    box-shadow: none;
}

.footer__name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.6rem;
    margin: 0 0 12px;
    letter-spacing: 0.04em;
    background: linear-gradient(135deg, var(--cream), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 14px;
}

.footer__divider span {
    display: block;
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.footer__divider span:last-child {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.footer__divider i {
    color: var(--gold);
    font-size: 0.5rem;
    opacity: 0.7;
}

.footer__motto {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold-light);
    font-size: 1.02rem;
    margin: 0;
    opacity: 0.85;
}

/* ---------- Column grid ---------- */
.footer__columns {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
    gap: 40px;
    padding: 0 0 50px;
    border-top: 1px solid rgba(201,169,110,0.08);
    padding-top: 40px;
}

.footer__col-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.05rem;
    margin: 0 0 18px;
    color: var(--gold);
    position: relative;
    padding-bottom: 12px;
}

.footer__col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--ruby), var(--gold));
    border-radius: 2px;
}

.footer__col-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(250,243,230,0.65);
    margin: 0 0 20px;
}

/* Social icons */
.footer__social {
    display: flex;
    gap: 10px;
}

.footer__social a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(201,169,110,0.2);
    display: grid;
    place-items: center;
    color: var(--gold-light);
    background: rgba(255,255,255,0.03);
    transition: all 0.35s ease;
    font-size: 1.05rem;
    position: relative;
    overflow: hidden;
}

.footer__social a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold), var(--ruby));
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: inherit;
}

.footer__social a:hover::before { opacity: 1; }

.footer__social a i { position: relative; z-index: 1; }

.footer__social a:hover {
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201,169,110,0.3);
}

/* Navigation lists */
.footer__nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__nav li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(250,243,230,0.65);
    font-size: 0.92rem;
    font-weight: 500;
    transition: all 0.3s;
    text-decoration: none;
}

.footer__nav li a i {
    font-size: 0.55rem;
    color: var(--gold);
    opacity: 0.5;
    transition: all 0.3s;
    transform: translateX(0);
}

.footer__nav li a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer__nav li a:hover i {
    opacity: 1;
    transform: translateX(2px);
}

/* Contact list */
.footer__contact-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 22px;
    position: relative;
    padding: 20px 0;
}

/* Gold cross divider */
.footer__contact-list::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,169,110,0.25), transparent);
}

.footer__contact-list::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(201,169,110,0.25), transparent);
}

.footer__contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(250,243,230,0.65);
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.3s;
    text-align: center;
    padding: 8px 4px;
}

a.footer__contact-item:hover { color: var(--gold); }

.footer__contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(201,169,110,0.08);
    border: 1px solid rgba(201,169,110,0.12);
    display: grid;
    place-items: center;
    color: var(--gold);
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: all 0.3s;
}

a.footer__contact-item:hover .footer__contact-icon {
    background: rgba(201,169,110,0.15);
    border-color: rgba(201,169,110,0.3);
    transform: scale(1.05);
}

.footer__btn {
    width: 100%;
    text-align: center;
    margin-top: 4px;
}

/* ---------- Bottom bar ---------- */
.footer__bottom {
    background: rgba(0,0,0,0.25);
    border-top: 1px solid rgba(201,169,110,0.1);
    padding: 18px 0;
}

.footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__bottom p {
    color: rgba(250,243,230,0.4);
    font-size: 0.82rem;
    margin: 0;
}

.footer__bottom-craft {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.82rem;
}

.footer__bottom-craft i {
    color: var(--ruby);
    font-size: 0.7rem;
    animation: heartbeat 1.6s ease-in-out infinite;
}

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

/* Background decorative glow */
.footer::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,110,0.04), transparent 70%);
    top: -200px;
    left: -100px;
    pointer-events: none;
}

.footer::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139,26,58,0.04), transparent 70%);
    bottom: -100px;
    right: -50px;
    pointer-events: none;
}

/* ═══════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════ */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: var(--z-float);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 18px rgba(37,211,102,0.45);
    transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s;
    text-decoration: none;
}

.wa-float:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 10px 32px rgba(37,211,102,0.5);
    color: #fff;
}

/* ── WhatsApp popup bubble ── */
.wa-popup {
    position: fixed;
    bottom: 100px;
    right: 28px;
    z-index: var(--z-float);
    background: #fff;
    color: #1a1a1a;
    padding: 14px 20px 14px 18px;
    border-radius: 16px 16px 4px 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    max-width: 240px;
    opacity: 0;
    transform: translateY(12px) scale(0.95);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    font-family: var(--ff-body);
}

.wa-popup.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.wa-popup::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #fff;
}

.wa-popup__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 0.85rem;
    margin-right: 10px;
    vertical-align: middle;
    flex-shrink: 0;
}

.wa-popup__content {
    display: flex;
    align-items: center;
}

/* ═══════════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════════ */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero__image { height: 360px; }

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

    .why-us__grid { grid-template-columns: 1fr; gap: 40px; }

    .process-detail__block,
    .process-detail__block--reverse {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .process-detail__block--reverse .process-detail__images { order: 0; }
    .process-detail__block--reverse .process-detail__text { order: 0; }

    .cta__content { grid-template-columns: 1fr; padding: 40px; }

    .footer__columns { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer__bottom-inner { flex-direction: column; gap: 6px; text-align: center; }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .nav-toggle { display: flex; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--midnight);
        border-bottom: 2px solid var(--gold);
        padding: 12px 24px 16px;
        z-index: 10000;
        gap: 0;
        box-shadow: 0 12px 40px rgba(10,17,40,0.5);
        animation: menuSlideDown 0.25s ease;
    }

    /* When menu is open: elevate header, hide WA btn */
    body.menu-open .site-header { z-index: 10002; position: sticky; }
    body.menu-open .mobile-cta-bar__btn { display: none; }
    body.menu-open .nav-toggle { border-color: rgba(201,169,110,0.5); }

    @keyframes menuSlideDown {
        from { opacity: 0; transform: translateY(-8px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    .nav-links.open .nav-link {
        font-size: 0.95rem;
        padding: 13px 8px;
        border-bottom: 1px solid rgba(201,169,110,0.08);
        display: flex;
        align-items: center;
        justify-content: space-between;
        letter-spacing: 0.04em;
        font-weight: 500;
    }

    .nav-links.open .nav-link:last-child {
        border-bottom: none;
    }

    .nav-links.open .nav-link::after {
        content: '\f054';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 0.6rem;
        position: static;
        width: auto;
        height: auto;
        background: none;
        color: var(--gold);
        opacity: 0.3;
    }

    .nav-links.open .nav-link:hover::after {
        opacity: 1;
    }

    /* Mobile CTA bar in header */
    .mobile-cta-bar {
        display: flex;
        align-items: center;
        gap: 8px;
        position: relative;
        z-index: 10001;
    }

    .mobile-cta-bar .nav-toggle {
        display: flex;
        position: static;
    }

    .mobile-cta-bar__btn {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        border: 1px solid rgba(201,169,110,0.25);
        display: grid;
        place-items: center;
        color: var(--gold-light);
        background: rgba(255,255,255,0.05);
        font-size: 0.9rem;
        transition: all 0.3s;
    }

    .mobile-cta-bar__btn--wa {
        background: rgba(37,211,102,0.15);
        border-color: rgba(37,211,102,0.3);
        color: #25d366;
    }

    .mobile-cta-bar__btn:hover {
        transform: scale(1.08);
    }

    /* ── Hero mobile ── */
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero__title { font-size: clamp(1.8rem, 6vw, 2.6rem); }
    .hero__image { height: 280px; }
    .hero__lead { font-size: 0.98rem; }
    .hero__eyebrow { font-size: 0.75rem; gap: 10px; flex-wrap: wrap; justify-content: center; }
    .hero__eyebrow .ornament-line { flex: 0 0 30px; }
    .hero__copy { text-align: center; }
    .hero__lead { margin: 0 auto; }
    .hero__actions { justify-content: center; }
    .hero__chips { justify-content: center; }
    .hero__scroll { display: none; }

    /* ── Process detail mobile ── */
    .process-detail { padding: 60px 0 70px; }
    .process-detail__images {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .process-detail__img { height: 240px; width: 100%; }
    .process-detail__img--offset { margin-top: 0; }
    .process-detail__block { margin-bottom: 50px; gap: 24px; }
    .process-detail__text h2 { font-size: 1.4rem; }

    /* ── Section headers mobile ── */
    .section-header { margin-bottom: 44px; }
    .section-header__title { font-size: clamp(1.5rem, 5vw, 2rem); }
    .section-header__desc { font-size: 0.95rem; }

    /* ── Method cards mobile ── */
    .method__track { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .method__card { padding: 24px 18px 28px; }
    .method__card h3 { font-size: 1rem; }
    .method__card p { font-size: 0.85rem; }
    .method__card-num { width: 40px; height: 40px; font-size: 0.9rem; margin-bottom: 12px; }
    .method__card-icon { width: 38px; height: 38px; font-size: 1rem; margin-bottom: 14px; }
    .method__connector { display: none; }

    /* ── Why Us mobile ── */
    .why-us { padding: 60px 0; }
    .why-item { padding: 18px 16px; gap: 14px; }
    .why-item__icon { width: 38px; height: 38px; font-size: 0.9rem; }
    .why-item strong { font-size: 0.92rem; }
    .why-item p { font-size: 0.85rem; }

    /* ── CTA mobile ── */
    .cta { padding: 50px 0 60px; }
    .cta__content { padding: 30px 22px; gap: 28px; }
    .cta__copy h2 { font-size: 1.4rem; }
    .cta__border { inset: 8px; }
    .info-item { font-size: 0.9rem; gap: 10px; }

    /* ── Services mobile ── */
    .services { padding: 60px 0 80px; }
    .service-card { padding: 30px 22px 28px; }
    .service-card h3 { font-size: 1.15rem; }
    .service-card p { font-size: 0.9rem; }

    /* ── Gallery mobile ── */
    .gallery { padding: 60px 0 50px; }

    /* ── Topbar mobile ── */
    .topbar { font-size: 0.78rem; }
    .topbar__contacts { display: none; }
    .topbar__sep { display: none; }
    .topbar__badge { font-size: 0.72rem; letter-spacing: 0.06em; padding: 0 12px; }
    .topbar__badge i { font-size: 0.72rem; }
    .topbar__inner { justify-content: center; }

    /* ── Footer mobile compact ── */
    .footer__hero { padding: 28px 0 20px; }
    .footer__logo { width: 50px; height: 50px; }
    .footer__name { font-size: 1.2rem; margin-bottom: 8px; }
    .footer__motto { font-size: 0.85rem; }
    .footer__divider { margin-bottom: 10px; }
    .footer__divider span { width: 36px; }
    .footer__columns { grid-template-columns: 1fr 1fr; text-align: center; gap: 24px; padding: 0 0 30px; padding-top: 28px; }
    .footer__col:first-child { grid-column: 1 / -1; }
    .footer__col:last-child { grid-column: 1 / -1; }
    .footer__col-title { font-size: 0.95rem; margin-bottom: 12px; padding-bottom: 8px; }
    .footer__col-title::after { left: 50%; transform: translateX(-50%); }
    .footer__col-text { font-size: 0.85rem; line-height: 1.6; margin-bottom: 14px; }
    .footer__social { justify-content: center; }
    .footer__social a { width: 38px; height: 38px; font-size: 0.95rem; }
    .footer__contact-list { grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; padding: 16px 0; }
    .footer__contact-item { font-size: 0.82rem; }
    .footer__contact-icon { width: 32px; height: 32px; font-size: 0.8rem; }
    .footer__nav { gap: 8px; }
    .footer__nav li a { justify-content: center; font-size: 0.85rem; }
    .footer__bottom { padding: 14px 0; }
    .footer__bottom-inner { flex-direction: column; gap: 4px; text-align: center; }
    .footer__bottom p { font-size: 0.75rem; }
    .footer__btn { max-width: 260px; margin: 4px auto 0; font-size: 0.88rem; padding: 12px 20px; }
    .footer__pattern-band { height: 36px; }
    .footer__pattern-diamond { width: 10px; height: 10px; margin: 0 12px; }

    /* ── WhatsApp float tablet/mobile ── */
    .wa-float { bottom: 18px; right: 14px; width: 48px; height: 48px; font-size: 1.25rem; }
    .wa-popup { bottom: 74px; right: 14px; max-width: 200px; }
}

@media (max-width: 480px) {
    /* ── Container tighter ── */
    .container { padding: 0 16px; }

    /* ── Hero small ── */
    .hero { padding: 80px 0 50px; }
    .hero__title { font-size: clamp(1.5rem, 7vw, 2rem); }
    .hero__lead { font-size: 0.92rem; line-height: 1.7; }
    .hero__image { height: 220px; border-radius: var(--radius-lg); }
    .hero__image-badge { top: 14px; left: 14px; padding: 8px 12px; }
    .badge-year { font-size: 0.95rem; }
    .badge-sub { font-size: 0.7rem; }

    .hero__stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .stat-card { padding: 12px 8px; }
    .stat-card__number { font-size: 1.2rem; }
    .stat-card__icon { width: 36px; height: 36px; font-size: 0.9rem; }
    .stat-card__label { font-size: 0.72rem; }

    .hero__chips { flex-direction: column; align-items: stretch; }
    .chip { font-size: 0.82rem; padding: 10px 16px; gap: 10px; }
    .chip__icon { width: 28px; height: 28px; font-size: 0.78rem; border-radius: 8px; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; }

    /* ── Buttons small ── */
    .btn--lg { padding: 14px 24px; font-size: 0.95rem; }

    /* ── CTA small ── */
    .cta__actions { flex-direction: column; }
    .cta__actions .btn { width: 100%; }
    .cta__content { padding: 24px 18px; }

    /* ── Process detail small ── */
    .process-detail__images { grid-template-columns: 1fr; gap: 12px; }
    .process-detail__img { height: 220px; width: 100%; border-width: 2px; border-radius: var(--radius-md); }
    .process-detail__text h2 { font-size: 1.25rem; }
    .process-detail__text p { font-size: 0.9rem; }
    .detail-list li { font-size: 0.88rem; padding-left: 20px; }
    .detail-list li::before { width: 8px; height: 8px; top: 8px; }

    /* ── Method cards small ── */
    .method { padding: 50px 0 60px; }
    .method__track { grid-template-columns: 1fr 1fr; gap: 12px; }
    .method__card { padding: 20px 14px 24px; }
    .method__card-num { width: 36px; height: 36px; font-size: 0.82rem; margin-bottom: 10px; }
    .method__card-icon { width: 34px; height: 34px; font-size: 0.9rem; margin-bottom: 10px; }
    .method__card-eyebrow { font-size: 0.65rem; }
    .method__card h3 { font-size: 0.92rem; margin-bottom: 6px; }
    .method__card p { font-size: 0.8rem; line-height: 1.6; }

    /* ── Services small ── */
    .services { padding: 50px 0 60px; }
    .service-card { padding: 26px 18px 24px; }
    .service-card__icon { width: 48px; height: 48px; font-size: 1.1rem; margin-bottom: 16px; }

    /* ── Why Us small ── */
    .why-us { padding: 50px 0; }
    .why-item { padding: 16px 14px; }

    /* ── Gallery small ── */
    .gallery { padding: 50px 0 40px; }

    /* ── Footer small ── */
    .footer__hero { padding: 32px 0 24px; }
    .footer__logo { width: 54px; height: 54px; }
    .footer__name { font-size: 1.2rem; }
    .footer__motto { font-size: 0.85rem; }
    .footer__divider span { width: 36px; }
    .footer__col-title { font-size: 0.95rem; margin-bottom: 14px; }
    .footer__col-text { font-size: 0.85rem; }
    .footer__nav li a { font-size: 0.88rem; }
    .footer__contact-item { font-size: 0.88rem; }
    .footer__contact-icon { width: 32px; height: 32px; font-size: 0.8rem; }
    .footer__bottom p { font-size: 0.78rem; }
    .footer__pattern-band { height: 36px; }
    .footer__pattern-diamond { width: 10px; height: 10px; margin: 0 12px; }

    /* ── WhatsApp float small ── */
    .wa-float { bottom: 14px; right: 12px; width: 46px; height: 46px; font-size: 1.2rem; }
    .wa-popup { bottom: 68px; right: 12px; font-size: 0.85rem; max-width: 180px; padding: 10px 14px; }
}

/* ═══════════════════════════════════════════
   PRICING PAGE STYLES
═══════════════════════════════════════════ */
.pricing-hero {
    position: relative;
    padding: 160px 0 80px;
    background: linear-gradient(160deg, var(--midnight) 0%, var(--navy) 50%, var(--persian-blue) 100%);
    text-align: center;
    overflow: hidden;
}

.pricing-hero__pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(201,169,110,0.06) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(139,26,58,0.05) 1px, transparent 1px);
    background-size: 100px 100px, 120px 120px;
    pointer-events: none;
}

.pricing-hero h1 {
    color: var(--cream);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    margin-bottom: 16px;
    position: relative;
}

.pricing-hero h1 em {
    color: var(--gold);
}

.pricing-hero p {
    color: rgba(250,243,230,0.7);
    font-size: 1.1rem;
    max-width: 540px;
    margin: 0 auto;
}

/* Pricing values badges */
.pricing-values {
    padding: 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.pricing-values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-value {
    background: var(--card-bg);
    border: 1px solid var(--stroke);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s var(--ease-out);
}

.pricing-value:hover { transform: translateY(-4px); }

.pricing-value__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(201,169,110,0.15), rgba(139,26,58,0.1));
    color: var(--gold);
    font-size: 1.2rem;
    margin: 0 auto 12px;
}

.pricing-value h3 {
    font-size: 1rem;
    color: var(--text-dark);
}

/* Pricing cards */
.pricing-section {
    padding: 80px 0 60px;
    background: var(--cream);
}

.pricing-cards {
    display: flex;
    gap: 24px;
    margin-top: 48px;
    overflow: hidden;
    padding-bottom: 8px;
    touch-action: none;
    user-select: none;
    justify-content: center;
}

.pricing-cards::-webkit-scrollbar {
    display: none;
}

.pricing-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--stroke);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
    min-width: 320px;
    flex: 0 0 calc(33.333% - 16px);
    scroll-snap-align: start;
}

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

.pricing-card__header {
    padding: 36px 28px 24px;
    text-align: center;
    border-bottom: 1px solid var(--stroke);
    background: linear-gradient(135deg, rgba(201,169,110,0.05), transparent);
}

.pricing-card__name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.pricing-card__currency {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 600;
}

.pricing-card__amount {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.pricing-card__unit {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-card__body {
    padding: 28px;
}

.pricing-card__features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.pricing-card__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-soft);
}

.pricing-card__feature i {
    color: var(--gold);
    font-size: 0.85rem;
}

.pricing-card__label {
    display: inline-block;
    background: var(--gold);
    color: var(--midnight);
    padding: 5px 16px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.pricing-card .btn {
    width: 100%;
}

/* Process sections on pricing page */
.pricing-process {
    padding: 80px 0;
    background: var(--cream-soft);
}

.pricing-process__title {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-process__title h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--text-dark);
}

.pricing-gallery {
    display: flex;
    gap: 14px;
    margin-bottom: 40px;
    overflow: hidden;
    padding-bottom: 8px;
    touch-action: none;
    user-select: none;
}

.pricing-gallery::-webkit-scrollbar {
    display: none;
}

.pricing-gallery img {
    border-radius: var(--radius-md);
    height: 260px;
    object-fit: cover;
    border: 3px solid var(--gold);
    min-width: 280px;
    flex: 0 0 calc(25% - 11px);
    scroll-snap-align: start;
    transition: transform 0.4s var(--ease-out);
}

.pricing-gallery img:hover {
    transform: scale(1.03);
}

.pricing-process__content {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
    background: var(--card-bg);
    border: 1px solid var(--stroke);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    box-shadow: var(--shadow-sm);
}

.pricing-process__content h3 {
    color: var(--gold-deep);
    margin-bottom: 20px;
    font-size: 1.4rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 16px;
}

.pricing-process__content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--ruby));
    border-radius: 2px;
}

.pricing-process__content p {
    color: var(--text-soft);
    line-height: 1.85;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.pricing-process__content ul {
    text-align: left;
    max-width: 100%;
    margin: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid var(--stroke);
}

.pricing-process__content ul li {
    position: relative;
    padding-left: 32px;
    color: var(--text-soft);
    line-height: 1.75;
    font-size: 0.93rem;
}

.pricing-process__content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border: 2px solid var(--gold);
    transform: rotate(45deg);
}

.pricing-process__content ul li strong {
    color: var(--gold-deep);
    font-weight: 700;
}

/* Pricing responsive */
@media (max-width: 1024px) {
    .pricing-card { flex: 0 0 calc(50% - 12px); min-width: 280px; }
    .pricing-values__grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-gallery img { flex: 0 0 calc(50% - 7px); min-width: 260px; }
}

@media (max-width: 768px) {
    .pricing-hero { padding: 120px 0 70px; }
    .pricing-hero h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
    .pricing-hero p { font-size: 0.95rem; }
    .pricing-section { padding: 60px 0 40px; }
    .pricing-card { flex: 0 0 calc(100vw - 80px); min-width: 0; max-width: 340px; }
    .pricing-process { padding: 50px 0; }
    .pricing-gallery img { height: 220px; border-width: 2px; flex: 0 0 calc(100vw - 100px); min-width: 0; max-width: 300px; }
    .pricing-card__header { padding: 28px 22px 20px; }
    .pricing-card__amount { font-size: 2.8rem; }
    .pricing-card__body { padding: 22px; }
    .pricing-process__content h3 { font-size: 1.2rem; }
    .pricing-process__content { padding: 28px 22px; }
    .pricing-process__content p { font-size: 0.9rem; }
    .pricing-value { padding: 20px 14px; }
    .pricing-value__icon { width: 42px; height: 42px; }
}

@media (max-width: 480px) {
    .pricing-values__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .pricing-card { flex: 0 0 calc(100vw - 64px); min-width: 0; max-width: 320px; }
    .pricing-gallery img { height: 180px; flex: 0 0 calc(100vw - 80px); min-width: 0; max-width: 280px; }
    .pricing-hero { padding: 100px 0 50px; }
    .pricing-values { margin-top: -36px; }
    .pricing-value { padding: 16px 12px; }
    .pricing-value h3 { font-size: 0.9rem; }
    .pricing-value__icon { width: 38px; height: 38px; font-size: 1rem; margin-bottom: 8px; }
    .pricing-card__name { font-size: 1.25rem; }
    .pricing-card__amount { font-size: 2.4rem; }
    .pricing-process__content ul li { font-size: 0.88rem; padding-left: 28px; }
    .pricing-process__content { padding: 24px 18px; border-radius: var(--radius-lg); }
    .pricing-process__content h3 { font-size: 1.1rem; }
}
