@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&display=swap');

:root {
    /* Lush Forest Palette - Vibrant & Professional */
    --sov-primary: #064E3B;
    /* Deep Forest Green */
    --sov-accent: #10B981;
    /* Vibrant Mint/Emerald (Action Color) */
    --sov-accent-hover: #059669;
    --sov-ivory: #ffffff;
    /* Clean White Background for Luxury */
    --white: #FFFFFF;
    --text-main: #111827;
    --text-muted: #6B7280;
    --border: rgba(0, 0, 0, 0.05);

    --header-h: 90px;
    --mobile-nav-h: 70px;
    --radius: 24px;
    --shadow-lux: 0 10px 40px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--sov-ivory);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.serif {
    font-family: 'Inter', sans-serif;
    /* Defaulting to Inter for consistency, using Playfair only for accents */
}

.playfair {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* --- Bespoke Luxury Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-lux);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 2rem;
    color: var(--sov-primary);
    text-decoration: none;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
}

.logo::after {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--sov-accent);
    border-radius: 50%;
    margin-left: 4px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    margin-left: 60px;
}

.nav a {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-main);
    text-decoration: none;
    transition: 0.3s;
    position: relative;
    padding: 10px 0;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--sov-accent);
    transition: 0.3s;
    transform: translateX(-50%);
}

.nav a:hover {
    color: var(--sov-accent);
}

.nav a.active::after,
.nav a:hover::after {
    width: 20px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.phone-link {
    text-decoration: none;
    color: var(--sov-primary);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-link svg.icon-chic {
    width: 20px;
    height: 20px;
    fill: var(--sov-accent);
}

.mobile-action-group {
    display: none;
    align-items: center;
    gap: 12px;
}

.m-action-btn,
.mobile-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--sov-ivory);
    border-radius: 50%;
    color: var(--sov-primary);
    text-decoration: none;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(16, 185, 129, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.m-action-btn:active,
.mobile-trigger:active {
    transform: scale(0.9);
    background: var(--sov-accent);
}

.m-action-btn:active svg,
.mobile-trigger:active svg {
    fill: #fff;
}

.m-action-btn svg {
    width: 20px;
    height: 20px;
    fill: var(--sov-accent);
    transition: 0.3s;
}

.desktop-cta {
    background: var(--sov-primary);
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(6, 78, 59, 0.15);
}

.desktop-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 78, 59, 0.25);
    background: var(--sov-accent);
}

/* Mobile Header Special Parts */
.mobile-trigger {
    display: none;
    background: var(--sov-primary);
    border: none;
}

.mobile-trigger svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

@media (max-width: 1024px) {
    .nav {
        display: none;
    }

    .mobile-trigger {
        display: flex;
    }

    .mobile-action-group {
        display: flex;
    }

    .desktop-phone {
        display: none;
    }

    .phone-link {
        display: none;
    }

    .desktop-cta {
        display: none;
    }
}

/* --- Mobile Menu Overlay Refined --- */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 2000;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

.m-menu-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 40px 30px 60px;
}

.m-menu-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.m-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--sov-primary);
    text-decoration: none;
    letter-spacing: 0.2em;
}

.m-menu-close {
    background: #f8fafc;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    color: var(--sov-primary);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.m-menu-nav {
    flex: 1;
}

.m-menu-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.m-menu-nav li {
    opacity: 0;
    transform: translateX(-20px);
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.active .m-menu-nav li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu-overlay.active .m-menu-nav li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu-overlay.active .m-menu-nav li:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-menu-overlay.active .m-menu-nav li:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-menu-overlay.active .m-menu-nav li:nth-child(4) {
    transition-delay: 0.4s;
}

.m-menu-nav a {
    color: var(--sov-primary);
    font-size: 2.2rem;
    font-weight: 800;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    transition: 0.3s;
    display: block;
    opacity: 0.9;
}

.m-menu-nav a.active {
    color: var(--sov-accent);
}

.m-menu-footer {
    margin-top: auto;
    border-top: 1px solid var(--border);
    padding-top: 40px;
}

.m-contact-info {
    margin-bottom: 30px;
}

.m-contact-info span {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--sov-accent);
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.m-contact-info p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sov-primary);
    opacity: 0.8;
}

.m-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--sov-primary);
    color: #fff;
    padding: 22px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 0.1em;
    box-shadow: 0 15px 35px rgba(6, 78, 59, 0.2);
    transition: 0.4s;
}

.m-call-btn svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.m-call-btn:active {
    transform: scale(0.96);
}

/* Stories Bar Refined - Boutique App Style */
.stories-container {
    padding: 15px 0 5px;
    border-bottom: 1px solid var(--border);
    background: #fff;
    overflow: hidden;
}

.stories-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 10px 0;
}

.stories-scroll::-webkit-scrollbar {
    display: none;
}

.story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 75px;
    /* Smaller for better density */
    text-decoration: none;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-img-wrap {
    width: 68px;
    /* Smaller on mobile for density */
    height: 68px;
    border-radius: 50%;
    border: 2.5px solid var(--sov-accent);
    padding: 3px;
    background: #fff;
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

@media (min-width: 769px) {
    .story-img-wrap {
        width: 82px;
        height: 82px;
    }

    .story-item {
        min-width: 95px;
    }
}

.story-item.viewed .story-img-wrap {
    border-color: #f1f5f9;
    box-shadow: none;
    opacity: 0.6;
}

.story-item:hover .story-img-wrap {
    transform: translateY(-3px) scale(1.03);
    border-color: var(--sov-primary);
}

.story-img-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.story-label {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: 0.01em;
    opacity: 0.7;
}

/* Cards & Buttons */
.sov-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
}

.sov-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.sov-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 45px;
    border-radius: 16px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    transition: 0.4s;
    text-decoration: none;
    cursor: pointer;
    border: none;
}

/* --- Ultra-Premium Story Shell System --- */
.review-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 15px;
    opacity: 0;
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-modal-overlay.active {
    opacity: 1;
}

.story-shell {
    width: 100%;
    max-width: 420px;
    position: relative;
    transform: translateY(30px) scale(0.96);
    transition: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Touch Zones for Navigation */
.story-nav-zones {
    position: absolute;
    inset: 0;
    display: flex;
    z-index: 5;
}

.nav-zone {
    flex: 1;
    height: 100%;
}

.review-modal-overlay.active .story-shell {
    transform: translateY(0) scale(1);
}

/* Segmented Indicators */
.story-indicators {
    display: flex;
    gap: 4px;
    padding: 0 10px;
    margin-bottom: 20px;
    width: 100%;
}

.indicator-segment {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.indicator-progress {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0%;
    background: var(--sov-accent);
    transition: width linear;
}

.indicator-segment.filled .indicator-progress {
    width: 100%;
}

/* The Modal Card Refined */
.review-modal {
    background: #ffffff;
    border-radius: 35px;
    padding: 60px 35px 65px;
    position: relative;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

/* Chic Close Button */
.review-close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: #f8fafc;
    border: none;
    border-radius: 14px;
    color: var(--sov-primary);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}

/* Header Content Boutique Scale */
.review-modal-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    text-align: left;
}

.review-author-avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--sov-primary);
    font-family: 'Inter', sans-serif;
    border: 2px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.review-meta-data h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--sov-primary);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.review-platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    padding: 6px 14px;
    border-radius: 10px;
}

.review-platform-badge img {
    height: 10px;
}

.review-platform-badge span {
    font-size: 0.6rem;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Reviews Detail */
.review-stars-row {
    font-size: 1.1rem;
    color: #ffd700;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.review-body-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #1e293b;
    font-weight: 500;
}

/* --- Cinematic Elite Hero System --- */
/* --- New Gen Ultra-Luxe Hero (v3 - Minimal & Elegant) --- */
.premium-hero-v2 {
    position: relative;
    padding: 40px 0 100px;
    background: #ffffff;
    overflow: hidden;
}

.hero-v2-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-v2-gradient {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.03) 0%, transparent 80%);
    filter: blur(80px);
}

.hero-v2-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Content Side - Refined */
.hero-v2-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    background: rgba(16, 185, 129, 0.05);
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--sov-accent);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid var(--sov-accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--sov-accent);
    text-transform: uppercase;
}

.hero-v2-title {
    font-size: clamp(3rem, 7vw, 5.2rem);
    font-weight: 800;
    color: var(--sov-primary);
    line-height: 1.05;
    margin-bottom: 30px;
    letter-spacing: -0.03em;
}

.hero-v2-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #64748b;
    max-width: 520px;
    margin-bottom: 45px;
    font-weight: 400;
}

.hero-v2-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-luxe-primary {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--sov-primary);
    color: #fff;
    padding: 18px 38px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-luxe-primary:hover {
    background: var(--sov-accent);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.2);
}

.btn-luxe-outline {
    display: flex;
    align-items: center;
    padding: 18px 38px;
    border: 1px solid #e2e8f0;
    color: var(--sov-primary);
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.4s;
}

.btn-luxe-outline:hover {
    border-color: var(--sov-primary);
    background: #f8fafc;
}

/* Visual Side - Zen Style */
.hero-v2-visual {
    position: relative;
    padding-left: 20px;
}

.main-portrait-frame {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 120px 40px 120px 40px;
    /* Elegant asymmetric curves */
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.06);
    border: 8px solid #fff;
}

.main-portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9);
}

.floating-stat-card {
    position: absolute;
    top: 10%;
    left: -20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: floatZen 6s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

@keyframes floatZen {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.f-stat-icon {
    font-size: 1.2rem;
    color: var(--sov-accent);
}

.f-stat-content strong {
    display: block;
    font-size: 1.4rem;
    color: var(--sov-primary);
    font-weight: 800;
}

.f-stat-content span {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Stats V2 - Discrete */
.hero-v2-stats {
    display: flex;
    align-items: center;
    gap: 35px;
}

.v2-stat-val {
    font-size: 2rem;
    font-weight: 800;
    color: var(--sov-primary);
    margin-bottom: 5px;
}

.v2-stat-lbl {
    font-size: 0.7rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.v2-stat-sep {
    width: 1px;
    height: 40px;
    background: #E2E8F0;
}

/* --- Trust Mosaic Section (Bespoke Redesign) --- */
.trust-mosaic-section {
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}

.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mosaic-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 35px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    overflow: hidden;
}

.mosaic-card.highlight {
    background: var(--sov-primary);
    color: #fff;
    transform: translateY(-20px);
    box-shadow: 0 30px 60px rgba(6, 78, 59, 0.15);
}

.mosaic-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    border-color: var(--sov-accent);
}

.mosaic-card.highlight:hover {
    transform: translateY(-25px);
    box-shadow: 0 40px 80px rgba(6, 78, 59, 0.25);
}

.mosaic-icon-box {
    width: 64px;
    height: 64px;
    background: var(--sov-ivory);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.mosaic-card.highlight .mosaic-icon-box {
    background: rgba(255, 255, 255, 0.1);
}

.mosaic-icon-box svg {
    width: 32px;
    height: 32px;
    fill: var(--sov-primary);
    transition: 0.4s;
}

.mosaic-card.highlight .mosaic-icon-box svg {
    fill: #ffffff;
}

.mosaic-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
}

.mosaic-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.7;
    font-weight: 500;
}

.mosaic-card.highlight .mosaic-content p {
    opacity: 0.9;
}

/* Mobile Responsive Optimization for Mosaic */
@media (max-width: 1024px) {
    .mosaic-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trust-mosaic-section {
        padding: 80px 0;
    }

    .mosaic-card {
        padding: 40px 30px;
        transform: none !important;
        /* Reset transform for vertical stack */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
    }

    .mosaic-card.highlight {
        order: -1;
        /* Keep the highlighted one on top for mobile attention */
    }
}

/* --- The Prestige Collection (Final Masterpiece) --- */
.rituals-gallery {
    padding: 160px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Artistic Decorative Elements */
.rit-decor {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.4;
}

.rit-decor-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--sov-accent) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.rit-decor-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--sov-primary) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
}

.rituals-header {
    text-align: center;
    margin-bottom: 110px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.ritual-tag-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.ritual-tag-line .line {
    width: 40px;
    height: 1px;
    background: var(--sov-accent);
}

.ritual-badge {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--sov-accent);
}

.ritual-title {
    font-size: clamp(2.5rem, 9vw, 5.5rem);
    font-weight: 900;
    color: var(--sov-primary);
    margin-bottom: 30px;
    letter-spacing: -0.03em;
    line-height: 1.1;
    font-family: 'Inter', sans-serif;
}

.ritual-accent {
    color: var(--sov-accent);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 600;
    display: block;
    /* Placing accent on its own line often looks more premium on mobile */
    margin-top: 5px;
}

.ritual-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Prestige Grid/Slider Optimized for Performance */
.prestige-container {
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.prestigeSwiper {
    padding: 20px 0 80px !important;
    overflow: hidden !important;
    /* Hide overflow to prevent scroll issues */
}

.prestige-card {
    background: #ffffff;
    border-radius: 20px;
    /* Sligtly less rounded for more modern elite look */
    overflow: hidden;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
    will-change: transform;
    /* Hint for browser speed */
}

.prestige-img-box {
    aspect-ratio: 1 / 1.1;
    /* Slightly squarer for better mobile fitting */
    overflow: hidden;
    position: relative;
}

.prestige-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.prestige-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--sov-primary);
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 5;
}

.prestige-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(6, 78, 59, 0.2));
    pointer-events: none;
}

.prestige-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
    .prestige-card:hover .prestige-img-box img {
        transform: scale(1.08);
    }
}

.prestige-info {
    padding: 25px;
    text-align: left;
}

.prestige-header-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.prestige-tag {
    font-size: 0.6rem;
    font-weight: 900;
    color: var(--sov-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.prestige-stars {
    font-size: 0.65rem;
    color: #fbbf24;
    letter-spacing: 1px;
}

.prestige-name {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--sov-primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.prestige-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prestige-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f8fafc;
    padding-top: 20px;
}

.prestige-btn {
    text-decoration: none;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-discover {
    color: var(--sov-primary);
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-reserve {
    color: var(--sov-accent);
}

/* Pagination Customization */
.swiper-pagination {
    bottom: 20px !important;
}

.swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    background: var(--sov-primary) !important;
    opacity: 0.1 !important;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: var(--sov-accent) !important;
    width: 24px !important;
    border-radius: 4px !important;
}

/* Gallery Footer CTA Modernized */
.rituals-footer-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.ritual-all-btn {
    display: inline-flex;
    align-items: center;
    padding: 18px 45px;
    background: var(--sov-primary);
    color: #ffffff;
    text-decoration: none;
    font-weight: 900;
    border-radius: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: 0.4s;
}

.ritual-all-btn:hover {
    transform: translateY(-5px);
    background: #044e3a;
    box-shadow: 0 15px 40px rgba(6, 78, 59, 0.2);
}

/* Mobile Scroll Hint */
.scroll-hint {
    display: none;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--sov-accent);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-hint svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    animation: swipeHint 2s infinite;
}

@keyframes swipeHint {
    0% {
        transform: translateX(0);
        opacity: 0;
    }

    30% {
        transform: translateX(0);
        opacity: 1;
    }

    70% {
        transform: translateX(-15px);
        opacity: 1;
    }

    100% {
        transform: translateX(-15px);
        opacity: 0;
    }
}

/* Mobile Perfection Refined */
@media (max-width: 768px) {
    .scroll-hint {
        display: flex;
    }

    .rituals-gallery {
        padding: 70px 0;
    }

    .rit-decor {
        display: none;
        /* Disable decor on mobile for speed */
    }

    .prestige-container {
        padding: 0 15px;
    }

    .rituals-header {
        margin-bottom: 40px;
        text-align: left;
    }

    .ritual-tag-line {
        justify-content: flex-start;
    }

    .ritual-title {
        font-size: 2.2rem;
        line-height: 1.1;
    }

    .prestige-card {
        border-radius: 16px;
    }

    .prestige-info {
        padding: 20px;
    }

    .prestige-name {
        font-size: 1.25rem;
    }

    .prestige-desc {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .prestige-footer {
        padding-top: 15px;
    }

    .ritual-all-btn {
        width: 100%;
        justify-content: center;
        border-radius: 12px;
    }
}

/* Catalog Grid Layout */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    padding-bottom: 100px;
}

.catalog-reveal {
    background: #ffffff;
    /* Clean white for catalog */
    padding-top: 80px;
}

@media (max-width: 1024px) {
    .catalog-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding-bottom: 60px;
    }
}

/* --- Slim & Elite Page Header --- */
.page-hero {
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
    padding: 22px 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

.hero-title {
    font-size: 1.6rem;
    font-weight: 950;
    color: var(--sov-primary);
    letter-spacing: -0.02em;
    margin: 0;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    order: -1;
}

.breadcrumbs li {
    font-size: 0.7rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.breadcrumbs li a {
    color: var(--sov-primary);
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumbs li a:hover {
    color: var(--sov-accent);
}

.breadcrumbs li::after {
    content: '›';
    margin-left: 8px;
    opacity: 0.4;
}

.breadcrumbs li:last-child::after {
    display: none;
}

.breadcrumbs li:last-child {
    color: #64748b;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 40px 0;
        border-bottom: none;
    }

    .hero-title {
        display: block;
        font-size: 1.8rem;
    }

    .breadcrumbs {
        order: 0;
    }

    .breadcrumbs li {
        font-size: 0.65rem;
    }
}

/* --- Older System Cleanup --- */
.hero-bg,
.hero-overlay,
.cinematic-sub-header {
    display: none;
}

/* --- Experience Journey (3 Steps) --- */
.experience-journey {
    padding: 120px 0;
    background: #fafaf8;
    position: relative;
    overflow: hidden;
}

.journey-header {
    text-align: center;
    margin-bottom: 80px;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

/* Connective Line (Desktop Only) */
.journey-grid::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--sov-accent), transparent);
    z-index: 0;
}

.journey-item {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: 0.5s;
    border: 1px solid rgba(16, 185, 129, 0.05);
}

.journey-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(6, 78, 59, 0.08);
    border-color: var(--sov-accent);
}

.step-num {
    font-size: 3.5rem;
    font-weight: 950;
    color: var(--sov-accent);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.step-content h3 {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--sov-primary);
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.step-content p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .journey-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .journey-grid::after {
        display: none;
    }
}

/* --- Ambience Spotlight --- */
.ambience-spotlight {
    padding: 140px 0;
    background: #fff;
    position: relative;
}

.ambience-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.ambience-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feat-row {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    color: var(--sov-primary);
    font-size: 1rem;
}

.feat-dot {
    width: 6px;
    height: 6px;
    background: var(--sov-accent);
    border-radius: 50%;
}

.ambience-image-group {
    position: relative;
    height: 600px;
}

.amb-img-large {
    width: 80%;
    height: 100%;
    border-radius: 300px 300px 40px 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
}

.amb-img-small {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 45%;
    height: 350px;
    border-radius: 40px;
    overflow: hidden;
    border: 15px solid #fff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.ambience-image-group img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

.ambience-image-group:hover .amb-img-large img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .ambience-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .ambience-image-group {
        height: 500px;
    }

    .amb-img-large {
        width: 100%;
        border-radius: 40px;
    }

    .amb-img-small {
        display: none;
        /* Simplify for mobile speed */
    }
}

/* --- High-Fashion Editorial Gallery (Bento Grid) --- */
.visual-gallery-section {
    padding: 140px 0;
    background: #ffffff;
}

.editorial-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 24px;
    margin-top: 60px;
}

.editorial-item {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    background: #f8fafc;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.editorial-link {
    display: block;
    width: 100%;
    height: 100%;
}

.editorial-img-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.editorial-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, rgba(6, 78, 59, 0.3), transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-zoom-icon {
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(15px);
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-zoom-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--sov-primary);
}

/* Hover States */
.editorial-item:hover .editorial-img-wrap img {
    transform: scale(1.08);
}

.editorial-item:hover .editorial-overlay {
    opacity: 1;
}

.editorial-item:hover .editorial-zoom-icon {
    transform: translateY(0);
}

/* Bento Spans */
.grid-span-1 {
    grid-column: span 2;
    grid-row: span 2;
}

/* Feature Image */
.grid-span-2 {
    grid-column: span 1;
    grid-row: span 2;
}

/* Tall */
.grid-span-3 {
    grid-column: span 1;
    grid-row: span 1;
}

/* Regular */
.grid-span-4 {
    grid-column: span 1;
    grid-row: span 1;
}

/* Regular */
.grid-span-5 {
    grid-column: span 2;
    grid-row: span 1;
}

/* Wide */
.grid-span-6 {
    grid-column: span 1;
    grid-row: span 1;
}

/* Regular */
.grid-span-7 {
    grid-column: span 1;
    grid-row: span 1;
}

/* Regular */

@media (max-width: 1200px) {
    .editorial-grid-v2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .editorial-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
        gap: 15px;
    }

    .grid-span-1,
    .grid-span-2,
    .grid-span-5 {
        grid-column: span 2;
        grid-row: span 1;
    }

    .grid-span-3,
    .grid-span-4,
    .grid-span-6,
    .grid-span-7 {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 600px) {
    .visual-gallery-section {
        padding: 80px 0;
    }

    .editorial-grid-v2 {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }

    .editorial-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        border-radius: 25px;
    }

    .editorial-overlay {
        opacity: 1;
        background: linear-gradient(to top right, rgba(0, 0, 0, 0.2), transparent 40%);
        padding: 15px;
        align-items: flex-end;
        justify-content: flex-end;
    }

    .editorial-zoom-icon {
        transform: translateY(0);
        width: 34px;
        height: 34px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.95);
    }

    .editorial-zoom-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* --- Elite Vera Professional Footer --- */
.site-footer {
    background: #063a2d;
    /* A deeper, more premium shade than the primary green */
    color: #fff;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.footer-decor-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 80px;
}

.site-footer .logo {
    font-size: 2rem;
    font-weight: 950;
    color: #fff !important;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.brand-mission {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 35px;
    max-width: 350px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-link svg {
    width: 20px !important;
    /* Force explicit size to prevent giant icons */
    height: 20px !important;
    fill: currentColor;
    display: block;
}

.social-link:hover {
    background: var(--sov-accent);
    border-color: var(--sov-accent);
    transform: translateY(-5px);
    color: var(--sov-primary);
}

.footer-title {
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 30px;
    color: var(--sov-accent);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--sov-accent);
    padding-left: 5px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.footer-phone {
    display: block;
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--sov-accent);
    text-decoration: none;
    margin-top: 5px;
    letter-spacing: -0.01em;
}

.footer-wa {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.8rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
    transition: 0.3s;
}

.footer-wa:hover {
    border-color: var(--sov-accent);
    color: var(--sov-accent);
}

.footer-bottom {
    margin-top: 100px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-wrap p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-badges span {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
}

.footer-badges .dot {
    width: 4px;
    height: 4px;
    background: var(--sov-accent);
    border-radius: 50%;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 80px 0 140px;
        /* Space for mobile nav */
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        margin-top: 60px;
    }
}

/* --- Mobile Bottom App Bar --- */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75px;
    background: #fff;
    border-top: 1px solid #f1f5f9;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
    z-index: 9999;
    padding: 0 15px;
    justify-content: space-between;
    align-items: center;
}

.m-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #94a3b8;
    flex: 1;
    transition: 0.3s;
}

.m-nav-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.m-nav-link span {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.m-nav-link.active {
    color: var(--sov-primary);
}

.m-nav-special {
    position: relative;
    top: -15px;
}

.m-nav-plus {
    width: 54px;
    height: 54px;
    background: var(--sov-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 10px 25px rgba(6, 78, 59, 0.3);
    border: 5px solid #fff;
    transition: 0.3s;
}

.m-nav-plus svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.m-nav-special:hover .m-nav-plus {
    transform: scale(1.1);
    background: var(--sov-accent);
}

.m-nav-special span {
    color: var(--sov-primary);
}

@media (max-width: 768px) {
    .mobile-nav {
        display: flex;
    }
}

/* --- About Us V2: Premium Editorial Layout --- */
.about-section {
    padding: 60px 0;
    background: #fff;
}

.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.bio-image-stack {
    position: relative;
    height: 650px;
}

.bio-img-main {
    width: 85%;
    height: 90%;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.bio-img-sub {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 300px;
    border-radius: 30px;
    overflow: hidden;
    border: 12px solid #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.bio-image-stack img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bio-image-stack:hover .bio-img-main img {
    transform: scale(1.05);
}

.bio-content .trust-badge {
    margin-bottom: 25px;
}

.about-title {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 950;
    line-height: 1.1;
    color: var(--sov-primary);
    margin-bottom: 35px;
    letter-spacing: -0.02em;
}

.about-p-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 35px;
}

.signature-box {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 25px;
}

.sig-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.sig-text h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--sov-primary);
    margin: 0;
}

.sig-text span {
    font-size: 0.85rem;
    color: var(--sov-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Luxury Values Area */
.values-strip {
    background: var(--sov-primary);
    padding: 60px 0;
    color: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.value-card {
    text-align: left;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--sov-accent);
}

.value-icon svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
}

/* Stats Matrix */
.stats-section {
    padding: 80px 0;
    background: #fafafa;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-size: 4.5rem;
    font-weight: 950;
    color: var(--sov-primary);
    line-height: 1;
    margin-bottom: 15px;
    letter-spacing: -0.04em;
    display: block;
}

.stat-num span {
    color: var(--sov-accent);
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #94a3b8;
}

@media (max-width: 1024px) {
    .bio-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .bio-image-stack {
        height: 500px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }

    .bio-image-stack {
        height: 400px;
    }

    .bio-img-sub {
        display: none;
    }

    .bio-img-main {
        width: 100%;
        height: 100%;
    }

    .about-title {
        font-size: 2.2rem;
    }
}

/* Reveal */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].revealed {
    opacity: 1 !important;
    transform: translateY(0);
}

/* --- Modern About Page System --- */
.about-modern {
    padding: 120px 0;
    overflow: hidden;
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: center;
}

.section-tag-gold {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--sov-accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px;
}

.section-tag-gold::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--sov-accent);
}

.section-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--sov-primary);
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -0.03em;
}

.accent-text {
    color: var(--sov-accent);
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.about-description .p-lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 25px;
    line-height: 1.6;
}

.about-description p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 35px;
}

.about-features-minimal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.f-min-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.f-min-icon {
    font-size: 1.5rem;
    background: #f8fafc;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    transition: 0.3s;
}

.f-min-item:hover .f-min-icon {
    background: var(--sov-accent);
    transform: translateY(-5px);
}

.f-min-text h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--sov-primary);
    margin-bottom: 5px;
}

.f-min-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.about-visual {
    position: relative;
}

.image-wrapper-chic {
    position: relative;
    border-radius: 60px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.1);
}

.image-wrapper-chic img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    transition: 1.5s;
}

.image-wrapper-chic:hover img {
    transform: scale(1.05);
}

.floating-badge {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: #fff;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.f-b-num {
    font-size: 2.5rem;
    font-weight: 950;
    color: var(--sov-accent);
    line-height: 1;
}

.f-b-label {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--sov-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 5px;
}

/* Values Section */
.values-section {
    padding: 120px 0;
    background: #f8fafc;
}

.section-header-center {
    text-align: center;
    margin-bottom: 80px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 40px;
    transition: 0.5s;
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(6, 78, 59, 0.08);
    border-color: var(--sov-accent);
}

.v-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 30px;
    color: var(--sov-accent);
}

.v-card-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--sov-primary);
    margin-bottom: 20px;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Stats Dark */
.stats-dark {
    padding: 100px 0;
    background: var(--sov-primary);
    color: #fff;
}

.stats-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    text-align: center;
}

.stat-p-num {
    display: block;
    font-size: 4rem;
    font-weight: 950;
    color: var(--sov-accent);
    line-height: 1;
    margin-bottom: 15px;
}

.stat-p-num span {
    color: #fff;
}

.stat-p-label {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    opacity: 0.6;
}

/* CTA Section */
.about-cta {
    position: relative;
    padding: 180px 0;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(6, 78, 59, 0.8), rgba(0, 0, 0, 0.6));
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 4rem;
    font-weight: 950;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1;
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-gold {
    background: var(--sov-accent);
    color: var(--sov-primary) !important;
}

.btn-outline-white {
    background: transparent;
    border: 2px solid #fff;
    color: #fff !important;
}

.btn-outline-white:hover {
    background: #fff;
    color: var(--sov-primary) !important;
}

/* --- Mobile Responsiveness for Hakkımızda --- */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-modern {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-features-minimal {
        grid-template-columns: 1fr;
    }

    .image-wrapper-chic {
        border-radius: 40px;
    }

    .image-wrapper-chic img {
        height: 450px;
    }

    .floating-badge {
        padding: 20px;
        bottom: 20px;
        left: 20px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .stats-premium-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* --- Footer Sitemap Chic Mobile Design --- */
@media (max-width: 768px) {
    .footer-sitemap {
        margin-top: 20px;
    }

    .footer-sitemap .footer-title {
        text-align: center;
        margin-bottom: 20px !important;
        font-size: 0.9rem;
    }

    .footer-sitemap .footer-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .footer-sitemap .footer-links li {
        margin-bottom: 0 !important;
    }

    .footer-sitemap .footer-links a {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        padding: 15px 10px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 0.8rem;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.9);
        height: 100%;
        transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .footer-sitemap .footer-links a:active {
        background: var(--sov-accent);
        color: var(--sov-primary);
        transform: scale(0.95);
    }
}

/* --- ULTIMATE MOBILE RESCUE V2 --- */
@media (max-width: 1024px) {
    .premium-hero-v2 {
        padding: 40px 0 80px;
    }

    .hero-v2-inner {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-v2-content {
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-v2-visual {
        order: 1;
        padding-left: 0;
    }

    .main-portrait-frame {
        height: 450px;
        border-radius: 60px 20px 60px 20px;
    }

    .hero-v2-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-v2-desc {
        margin: 0 auto 35px;
    }

    .hero-v2-actions {
        justify-content: center;
        width: 100%;
    }

    .btn-luxe-primary,
    .btn-luxe-outline {
        flex: 1;
        padding: 18px 20px;
    }

    .hero-v2-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        padding: 25px 15px;
        background: #fcfdfe;
        border-radius: 30px;
        border: 1px solid #f1f5f9;
        margin-top: 20px;
        width: 100%;
    }

    .v2-stat-sep {
        display: none;
    }

    .v2-stat-item {
        text-align: center;
    }

    .v2-stat-val {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }

    .v2-stat-lbl {
        font-size: 0.55rem;
        line-height: 1.3;
        color: #64748b;
    }

    .hero-v2-badge {
        justify-content: center;
        margin-bottom: 20px !important;
    }

    .floating-stat-card {
        top: auto;
        bottom: -25px;
        /* Biraz daha aşağı çektik */
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        transform: none;
        /* Temizleme */
        width: 85%;
        max-width: 270px;
        background: #ffffff;
        padding: 18px 25px;
        border-radius: 25px;
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
        z-index: 10;
        display: flex;
        justify-content: center;
        /* Animasyon artık sadece Y ekseninde çalışıyor ve X yerleşimini bozmuyor */
        animation: floatZenMobile 5s ease-in-out infinite;
    }

    .f-stat-content strong {
        font-size: 1.2rem;
    }

    .f-stat-content span {
        font-size: 0.65rem;
    }
}

/* Mobil için özel dikey animasyon (X eksenini ellemez) */
@keyframes floatZenMobile {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@media (max-width: 480px) {
    .premium-hero-v2 {
        padding: 20px 0 110px;
    }

    .hero-v2-title {
        font-size: 2rem;
        margin-bottom: 20px;
        text-align: center;
        padding: 0 15px;
    }

    .hero-v2-desc {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: center;
        padding: 0 20px;
        margin-bottom: 35px;
    }

    .main-portrait-frame {
        height: 380px;
        border-radius: 40px 10px 40px 10px;
        width: calc(100% - 40px);
        margin: 0 auto;
    }

    .hero-v2-actions {
        padding: 0 25px;
        gap: 12px;
    }

    .floating-stat-card {
        width: 80%;
        bottom: -30px;
    }
}

/* --- Floating Contact Buttons --- */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.f-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.f-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.f-phone {
    background: var(--sov-primary);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.f-whatsapp {
    background: #25D366;
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 100px; /* Space for mobile nav */
        right: 20px;
    }
    
    .f-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}