/* CSS Variables - Luxury Minimal */
:root {
    --primary: #000000;
    --primary-light: #222222;
    --accent: #000000;
    --accent-light: #222222;
    --accent-subtle: rgba(0, 0, 0, 0.05);
    --bg-light: #ffffff;
    --bg-cream: #f8f8f8;
    --bg-white: #ffffff;
    --text-primary: #000000;
    --text-secondary: #444444;
    --text-muted: #888888;
    --border: #e5e5e5;
    --border-dark: #cccccc;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.06);
    --radius: 0px;
    --radius-lg: 0px;
    --transition: all 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-white);
    color: var(--text-primary);
    line-height: 1.8;
    overflow-x: hidden;
    font-size: 13px;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1.0;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    letter-spacing: -0.03em;
}

h3 {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
}

/* Utilities */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

.gradient-text {
    color: var(--accent);
}

.section-tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 400;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 20px;
}

.section-header {
    text-align: left;
    max-width: 700px;
    margin: 0 0 80px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 48px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    margin-top: 20px;
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-light);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-dark);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: var(--bg-white);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-dark);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: var(--bg-white);
}

.btn-cta-primary {
    background: #ffffff;
    color: var(--primary);
}

.btn-cta-primary:hover {
    background: rgba(255,255,255,0.88);
}

.btn-cta-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.35);
}

.btn-cta-outline:hover {
    border-color: rgba(255,255,255,0.7);
}

.btn-large {
    padding: 18px 40px;
    font-size: 0.875rem;
}

.btn-nav {
    padding: 0;
    background: transparent;
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: none;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.btn-nav:hover {
    background: transparent;
    color: var(--text-secondary);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(250, 249, 247, 0.98);
    backdrop-filter: blur(12px);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

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

.logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 1.5px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 180px 32px 140px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-content {
    width: 100%;
}

.hero-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 400;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 40px;
}

.hero h1 {
    margin-bottom: 28px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 80px;
}

/* Services Section */
.services {
    padding: 140px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
}

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

.services-grid-two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    gap: 24px;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 56px 48px;
    transition: var(--transition);
    position: relative;
}

.service-card:last-child {
    border-right: 1px solid var(--border);
    padding-left: 48px;
    padding-right: 48px;
}

.service-card:hover {
    border-color: var(--primary);
}

.service-card.featured {
    border-color: var(--accent);
    background: var(--bg-white);
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.service-icon {
    display: none;
}

.service-number {
    display: block;
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 32px;
    font-family: 'Inter', sans-serif;
}

.service-card h3 {
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.service-card > p {
    color: var(--text-secondary);
    margin-bottom: 28px;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.service-list {
    list-style: none;
}

.service-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
}

/* Services Group Labels */
.services-group-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6875rem;
    font-weight: 400;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 24px;
    margin-top: 56px;
}

.services-group-label:first-of-type {
    margin-top: 0;
}

.services-grid-one {
    grid-template-columns: 1fr;
    max-width: 600px;
    gap: 24px;
}

/* Service Pricing */
.service-pricing {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.pricing-label {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.pricing-options {
    display: flex;
    align-items: center;
    gap: 24px;
}

.pricing-option {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pricing-amount {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

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

.pricing-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.pricing-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.pricing-cta {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: var(--transition);
}

.pricing-cta:hover {
    color: var(--text-muted);
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--bg-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-content .section-tag {
    margin-bottom: 20px;
}

.about-content h2 {
    margin-bottom: 28px;
}

.about-lead {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 28px;
    line-height: 1.3;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
    letter-spacing: -0.02em;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-credentials {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.credential {
    display: flex;
    align-items: center;
}

.credential img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.9;
}

.credential img:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.about-photo {
    position: relative;
}

.about-photo-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.highlight-card {
    background: transparent;
    border: none;
    border-top: 1px solid var(--border);
    border-radius: 0;
    padding: 24px 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.highlight-card:hover {
    border-color: var(--primary);
}

.highlight-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.highlight-content p,
.highlight-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Results Section */
.results {
    padding: 120px 0;
    background: var(--bg-white);
}

/* Advisory Section */
.advisory {
    padding: 80px 0;
    background: var(--bg-white);
}

.advisory-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.advisory-content h2 {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.advisory-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.advisory-card {
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 28px 48px;
    text-align: center;
    transition: var(--transition);
}

.advisory-card:hover {
    border-color: var(--primary);
}

.advisory-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 16px;
    opacity: 0.8;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.advisory-card h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 6px;
}

.advisory-card a {
    text-decoration: none;
    color: inherit;
}

.advisory-card a:hover h4 {
    color: var(--text-muted);
}

.advisory-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .service-pricing {
        flex-direction: column;
        align-items: flex-start;
    }

    .pricing-options {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .advisory-grid {
        flex-direction: column;
        align-items: center;
    }

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

/* CTA Section */
.cta-section {
    padding: 160px 0;
    background: var(--primary);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-content p {
    color: rgba(255,255,255,0.65);
    font-size: 1.0625rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-brand .logo {
    font-size: 1.25rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.875rem;
    max-width: 280px;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

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

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-social a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

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

.footer-bottom {
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8125rem;
}

.footer-email {
    margin-top: 8px;
}

.footer-email a {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        padding-top: 140px;
    }

    .services-grid,
    .services-grid-two,
    .services-grid-one {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-light);
        flex-direction: column;
        padding: 32px;
        gap: 24px;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .about-credentials {
        flex-direction: column;
        gap: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        align-items: center;
    }

    .footer-brand {
        align-items: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.service-card,
.about-content,
.about-photo {
    animation: fadeInUp 0.6s ease-out forwards;
}

.service-card:nth-child(2) {
    animation-delay: 0.1s;
}

.service-card:nth-child(3) {
    animation-delay: 0.2s;
}

.highlight-card:nth-child(2) {
    animation-delay: 0.1s;
}

.highlight-card:nth-child(3) {
    animation-delay: 0.2s;
}

.highlight-card:nth-child(4) {
    animation-delay: 0.3s;
}
