/* ===========================
   ROOT VARIABLES & RESET
   =========================== */
:root {
    --navy: #0f1f35;
    --navy-mid: #162a45;
    --navy-light: #1e3a5f;
    --sage: #8aaa8a;
    --sage-light: #b5ccb5;
    --gold: #c9a96e;
    --gold-light: #e8c98a;
    --cream: #faf8f4;
    --cream-mid: #f2ede4;
    --text: #2c3e50;
    --text-light: #5a6a7a;
    --text-muted: #8899aa;
    --white: #ffffff;
    --glass: rgba(255,255,255,0.06);
    --glass-border: rgba(255,255,255,0.12);
    --shadow-soft: 0 8px 40px rgba(15,31,53,0.12);
    --shadow-card: 0 4px 24px rgba(15,31,53,0.08);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--cream);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

body.menu-open {
    overflow: hidden;
}

/* ===========================
   CUSTOM CURSOR
   =========================== */
#cursor {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
    mix-blend-mode: normal;
}

#cursor-follower {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(201,169,110,0.5);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.12s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}

body.cursor-hover #cursor {
    width: 16px;
    height: 16px;
    background: var(--gold-light);
}
body.cursor-hover #cursor-follower {
    width: 48px;
    height: 48px;
    border-color: rgba(201,169,110,0.8);
}

/* ===========================
   PRELOADER
   =========================== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

.preloader-inner {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--gold);
    animation: spin 1s linear infinite;
}

.preloader-inner span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.1em;
    animation: pulse 1s ease-in-out infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ===========================
   NAVBAR
   =========================== */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition);
}

#navbar.scrolled {
    background: rgba(15, 31, 53, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--white);
}

.logo-initials {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy);
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

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

.logo-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.01em;
}

.logo-title {
    font-size: 0.7rem;
    color: var(--gold);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.nav-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
}

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

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

.nav-link:hover::after {
    width: calc(100% - 1.75rem);
}

.nav-link.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
}

.nav-link.nav-cta::after { display: none; }

.nav-link.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(201,169,110,0.4);
    color: var(--navy);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-fast);
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-link {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 300;
    transition: var(--transition-fast);
    display: block;
    transform: translateY(20px);
    opacity: 0;
}

.mobile-menu.open .mobile-link {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.mobile-menu.open li:nth-child(1) .mobile-link { transition-delay: 0.1s; }
.mobile-menu.open li:nth-child(2) .mobile-link { transition-delay: 0.15s; }
.mobile-menu.open li:nth-child(3) .mobile-link { transition-delay: 0.2s; }
.mobile-menu.open li:nth-child(4) .mobile-link { transition-delay: 0.25s; }
.mobile-menu.open li:nth-child(5) .mobile-link { transition-delay: 0.3s; }

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

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: none;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.btn svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    box-shadow: 0 4px 20px rgba(201,169,110,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201,169,110,0.45);
    color: var(--navy);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.25);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===========================
   HERO SECTION
   =========================== */
#hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    animation: float 8s ease-in-out infinite;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #1e3a5f, transparent);
    top: -200px;
    left: -150px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(138,170,138,0.4), transparent);
    bottom: -100px;
    right: -100px;
    animation-delay: -3s;
}

.hero-orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(201,169,110,0.25), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -5s;
    animation-duration: 10s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.hero-orb-3 {
    animation-name: floatCenter;
}
@keyframes floatCenter {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -55%) scale(1.08); }
}

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

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(201,169,110,0.6);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--gold);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-subtitle strong {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 3rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.stat {
    text-align: center;
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    display: inline-block;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.12);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.35);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===========================
   SECTIONS COMMON
   =========================== */
.section {
    padding: 6rem 0;
}

.section-alt {
    background: var(--cream-mid);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
    padding: 0 1rem;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 24px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.section-tag::before { right: 100%; margin-right: -0.875rem; }
.section-tag::after { left: 100%; margin-left: -0.875rem; }

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}

.section-desc {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    max-height: 500px;
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-initials {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 300;
    color: rgba(255,255,255,0.15);
    letter-spacing: 0.15em;
    position: relative;
    z-index: 1;
}

.about-glow {
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle at 60% 40%, rgba(201,169,110,0.15) 0%, transparent 60%),
                radial-gradient(circle at 30% 70%, rgba(138,170,138,0.1) 0%, transparent 50%);
    animation: glowShift 6s ease-in-out infinite;
}

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

.about-image-badge {
    position: absolute;
    bottom: -0.75rem;
    right: -0.75rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    padding: 0.65rem 1.1rem;
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: var(--shadow-soft);
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.about-deco {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201,169,110,0.2);
}

.about-deco-1 {
    width: 120px;
    height: 120px;
    top: -20px;
    right: -20px;
    animation: rotateSlow 20s linear infinite;
}

.about-deco-2 {
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: -20px;
    border-color: rgba(138,170,138,0.3);
    animation: rotateSlow 15s linear infinite reverse;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-content .section-tag { text-align: left; }

.about-lead {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.75;
    margin: 1.5rem 0 1rem;
    font-weight: 400;
}

.about-text {
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.about-credentials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.credential {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(15,31,53,0.06);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.credential:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(201,169,110,0.2);
}

.credential-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.credential div {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.credential strong {
    font-size: 0.9rem;
    color: var(--navy);
    font-weight: 600;
}

.credential span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===========================
   SERVICES SECTION
   =========================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(15,31,53,0.06);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    animation-delay: var(--delay);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(15,31,53,0.15);
    border-color: rgba(201,169,110,0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover .service-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

.service-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: rgba(15,31,53,0.05);
    line-height: 1;
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-num {
    color: rgba(201,169,110,0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(15,31,53,0.05), rgba(15,31,53,0.02));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--navy-light);
    border: 1px solid rgba(15,31,53,0.08);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--gold);
    border-color: transparent;
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.5rem;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-tags span {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--navy-light);
    background: rgba(15,31,53,0.05);
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    border: 1px solid rgba(15,31,53,0.08);
    letter-spacing: 0.03em;
}

.service-arrow {
    color: var(--gold);
    opacity: 0;
    transform: translate(-8px, 8px);
    transition: var(--transition);
    align-self: flex-end;
}

/* ===========================
   APPROACH SECTION
   =========================== */
.approach-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 2rem;
}

.approach-step {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(15,31,53,0.06);
    transition: var(--transition);
    cursor: default;
}

.approach-step:last-child { border-bottom: none; }

.approach-step:hover {
    padding-left: 1rem;
}

.step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: rgba(201,169,110,0.3);
    line-height: 1;
    flex-shrink: 0;
    transition: var(--transition);
    min-width: 2.5rem;
    padding-top: 0.1rem;
}

.approach-step:hover .step-num {
    color: var(--gold);
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.35rem;
}

.step-content p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.65;
}

.approach-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-card-stack {
    position: relative;
    width: 340px;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-quote-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    color: var(--white);
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 80px rgba(15,31,53,0.25);
    width: 100%;
}

.quote-icon {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.75rem;
    opacity: 0.7;
}

.approach-quote-card > p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.quote-avatar {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    flex-shrink: 0;
}

.quote-author div {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.quote-author strong {
    font-size: 0.875rem;
    color: var(--white);
    font-weight: 600;
}

.quote-author span {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 400;
}

.approach-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    animation: ringPulse 4s ease-in-out infinite;
}

.approach-ring-1 {
    inset: -24px;
    border-color: rgba(201,169,110,0.15);
    animation-delay: 0s;
}

.approach-ring-2 {
    inset: -48px;
    border-color: rgba(201,169,110,0.07);
    animation-delay: -2s;
}

@keyframes ringPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(15,31,53,0.06);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    animation-delay: var(--delay);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(201,169,110,0.2);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.testimonial-card > p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 1.5rem;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(15,31,53,0.06);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    flex-shrink: 0;
}

.testimonial-author div {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.testimonial-author strong {
    font-size: 0.875rem;
    color: var(--navy);
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.contact-lead {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.75;
    margin: 1.5rem 0 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(15,31,53,0.06);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(6px);
    border-color: rgba(201,169,110,0.2);
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-item > div {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.contact-item span {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-item strong {
    font-size: 0.9rem;
    color: var(--navy);
    font-weight: 500;
}

.contact-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    background: rgba(15,31,53,0.04);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    border-left: 3px solid var(--gold);
    line-height: 1.5;
}

.contact-note svg { flex-shrink: 0; margin-top: 1px; }

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid rgba(15,31,53,0.06);
    box-shadow: var(--shadow-soft);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1.5px solid rgba(15,31,53,0.1);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--cream);
    transition: var(--transition-fast);
    outline: none;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    font-weight: 300;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
}

.form-group select {
    cursor: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235a6a7a' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-success {
    display: none;
    align-items: center;
    gap: 0.75rem;
    background: rgba(138,170,138,0.1);
    border: 1px solid rgba(138,170,138,0.3);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    color: #4a7a4a;
    font-size: 0.9rem;
    font-weight: 500;
    animation: fadeIn 0.4s ease;
}

.form-success.show {
    display: flex;
}

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

/* ===========================
   WHATSAPP BUTTON
   =========================== */
.sticky-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 500;
    background: #25d366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(37,211,102,0.4);
    transition: var(--transition);
    text-decoration: none;
}

.sticky-whatsapp:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 40px rgba(37,211,102,0.55);
}

.sticky-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
}

.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 0.75rem);
    background: var(--navy);
    color: var(--white);
    padding: 0.4rem 0.875rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: var(--transition-fast);
    pointer-events: none;
}

.whatsapp-pulse {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,0.5);
    animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.15); opacity: 0; }
}

/* ===========================
   FOOTER
   =========================== */
footer {
    background: var(--navy);
    color: rgba(255,255,255,0.6);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-logo strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
}

.footer-logo span {
    font-size: 0.72rem;
    color: var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-brand > p {
    font-size: 0.875rem;
    line-height: 1.65;
    max-width: 260px;
}

.footer-links h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-legal a:hover { color: var(--gold); }

.footer-emergency {
    color: rgba(255,200,100,0.6);
    font-size: 0.72rem;
}

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1),
                transform 0.8s cubic-bezier(0.4,0,0.2,1);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Stagger delays for grid items */
.services-grid .service-card.visible,
.testimonials-grid .testimonial-card.visible {
    transition-delay: var(--delay, 0s);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .about-grid,
    .approach-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-frame {
        max-height: 350px;
        aspect-ratio: auto;
    }

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

    .approach-visual {
        order: -1;
    }

    .approach-card-stack {
        width: 300px;
        height: 300px;
    }

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

    .footer-brand {
        grid-column: 1/-1;
    }
}

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

    body { cursor: auto; }
    #cursor, #cursor-follower { display: none; }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        padding: 1.25rem 1.5rem;
        gap: 1.5rem;
    }

    .section { padding: 4rem 0; }

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

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .contact-form-wrapper {
        padding: 1.75rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        justify-content: center;
        width: 100%;
    }

    .stat-divider { display: none; }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 2rem;
    }
}
