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

:root {
    --sage: #8FA39B;
    --sage-light: #A8B8B0;
    --sage-dark: #6B7D75;
    --cream: #FAF8F5;
    --cream-dark: #F0EDE8;
    --charcoal: #2C2C2C;
    --charcoal-light: #4A4A4A;
    --rose: #D4B5A8;
    --white: #FFFFFF;
}

html {
    scroll-behavior: smooth;
}

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

/* Subtle texture overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.015;
    pointer-events: none;
    z-index: 9999;
}

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

/* ============================================
   PAGE LOADER
   ============================================ */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-icon {
    width: 60px;
    height: 60px;
    color: var(--sage);
    animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-icon svg {
    width: 100%;
    height: 100%;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    line-height: 1.2;
}

em {
    font-style: italic;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--charcoal);
    transition: transform 0.3s ease;
    z-index: 1001;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.logo-tagline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--sage);
    letter-spacing: 0.1em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--sage);
    transition: width 0.3s ease;
}

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

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

.nav-cta {
    padding: 0.75rem 1.5rem;
    background: var(--sage);
    color: var(--white);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--sage-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(143, 163, 155, 0.3);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

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

.mobile-menu a {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--sage);
}

.mobile-menu .mobile-cta {
    margin-top: 1rem;
    padding: 1rem 2rem;
    background: var(--sage);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.938rem;
    letter-spacing: 0.02em;
    border-radius: 2px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

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

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

.btn-primary:hover {
    background: var(--sage-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(143, 163, 155, 0.3);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
}

/* ============================================
   HERO SECTION - Full Image Background
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(250, 248, 245, 0.92) 0%, 
        rgba(250, 248, 245, 0.85) 50%,
        rgba(143, 163, 155, 0.3) 100%);
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    filter: blur(100px);
}

.hero-shape.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--sage-light);
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.hero-shape.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--rose);
    bottom: -100px;
    left: -100px;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: fadeUp 1s ease 0.2s backwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(143, 163, 155, 0.15);
    color: var(--sage-dark);
    font-size: 0.813rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--sage);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.hero-title .highlight {
    color: var(--sage-dark);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0.15em;
    left: 0;
    width: 100%;
    height: 0.15em;
    background: var(--sage-light);
    opacity: 0.5;
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--charcoal-light);
    max-width: 500px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-visual {
    display: flex;
    justify-content: center;
    animation: fadeUp 1s ease 0.4s backwards;
}

.hero-card {
    width: 280px;
    height: 350px;
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 30px 60px rgba(143, 163, 155, 0.3);
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: -20px;
    border: 1px solid rgba(143, 163, 155, 0.3);
    border-radius: 4px;
    z-index: -1;
}

.hero-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.15) 100%);
}

.shell-icon {
    width: 120px;
    height: 120px;
    color: rgba(255, 255, 255, 0.8);
    animation: gentleFloat 6s ease-in-out infinite;
}

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

.shell-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--sage-dark);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.6;
}

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

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

/* Section Labels */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--sage);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.section-intro {
    font-size: 1.125rem;
    color: var(--charcoal-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================
   ABOUT SECTION - With Real Image
   ============================================ */
.about {
    padding: 8rem 0;
    background: var(--white);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, var(--cream) 0%, transparent 100%);
    opacity: 0.5;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    position: relative;
    z-index: 1;
}

.about-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-text {
    font-size: 1.0625rem;
    color: var(--charcoal-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-image {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
    position: relative;
    z-index: 1;
}

.about-image.visible {
    opacity: 1;
    transform: translateY(0);
}

.image-frame {
    position: relative;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--sage-light);
    z-index: 0;
    transition: all 0.4s ease;
}

.image-frame:hover::before {
    top: -25px;
    right: -25px;
}

.about-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
    filter: saturate(0.9);
    transition: all 0.5s ease;
}

.image-frame:hover .about-img {
    filter: saturate(1);
    transform: scale(1.02);
}

.image-accent {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--sage-light) 0%, var(--sage) 100%);
    opacity: 0.3;
    z-index: 0;
    border-radius: 4px;
}

/* Credentials badges */
.credentials {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.credential-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(143, 163, 155, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.credential-badge:hover {
    background: rgba(143, 163, 155, 0.2);
    transform: translateY(-2px);
}

.credential-badge svg {
    width: 20px;
    height: 20px;
    color: var(--sage);
}

.credential-badge span {
    font-size: 0.813rem;
    font-weight: 600;
    color: var(--sage-dark);
    letter-spacing: 0.02em;
}

/* ============================================
   SERVICES SECTION - Cards with Images
   ============================================ */
.services {
    padding: 8rem 0;
    background: var(--cream);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.service-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    min-height: 380px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:nth-child(1) { transition-delay: 0s; }
.service-card:nth-child(2) { transition-delay: 0.1s; }
.service-card:nth-child(3) { transition-delay: 0.2s; }
.service-card:nth-child(4) { transition-delay: 0.3s; }

.service-image-bg {
    position: absolute;
    inset: 0;
    background-image: var(--card-image);
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image-bg {
    transform: scale(1.1);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(250, 248, 245, 0.1) 0%, 
        rgba(250, 248, 245, 0.95) 60%, 
        rgba(250, 248, 245, 1) 100%);
    z-index: 1;
}

.service-content {
    position: relative;
    z-index: 2;
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    color: var(--sage);
    background: rgba(143, 163, 155, 0.1);
    border-radius: 50%;
    padding: 12px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--sage);
    color: var(--white);
    transform: translateY(-5px);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.service-card p {
    font-size: 0.875rem;
    color: var(--charcoal-light);
    line-height: 1.7;
}

/* ============================================
   BENEFITS SECTION - With Side Image
   ============================================ */
.benefits {
    padding: 8rem 0;
    background: var(--sage);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.benefits .section-label {
    color: rgba(255, 255, 255, 0.7);
}

.benefits .section-title {
    color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.benefits-image {
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.benefits-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.benefits-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 4px;
    filter: brightness(0.95);
}

.benefits-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80%;
    height: 80%;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    z-index: -1;
}

.benefits-content {
    position: relative;
}

.benefits-list {
    margin-top: 2.5rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.6s ease;
}

.benefit-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.benefit-item:nth-child(1) { transition-delay: 0.1s; }
.benefit-item:nth-child(2) { transition-delay: 0.2s; }
.benefit-item:nth-child(3) { transition-delay: 0.3s; }
.benefit-item:nth-child(4) { transition-delay: 0.4s; }

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.25);
    min-width: 50px;
    line-height: 1;
}

.benefit-text h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.benefit-text p {
    font-size: 0.875rem;
    opacity: 0.8;
    line-height: 1.7;
}

/* ============================================
   WHAT TO EXPECT / PROCESS SECTION
   ============================================ */
.process {
    padding: 8rem 0;
    background: var(--cream-dark);
    position: relative;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 4rem;
}

.process-step {
    flex: 1;
    max-width: 250px;
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.process-step:nth-child(1) { transition-delay: 0s; }
.process-step:nth-child(3) { transition-delay: 0.15s; }
.process-step:nth-child(5) { transition-delay: 0.3s; }
.process-step:nth-child(7) { transition-delay: 0.45s; }

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 4rem;
    font-weight: 300;
    color: var(--sage-light);
    opacity: 0.3;
    line-height: 1;
    z-index: 0;
}

.step-icon {
    position: relative;
    z-index: 1;
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(143, 163, 155, 0.15);
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(143, 163, 155, 0.25);
    background: var(--sage);
}

.step-icon svg {
    width: 28px;
    height: 28px;
    color: var(--sage);
    transition: color 0.3s ease;
}

.process-step:hover .step-icon svg {
    color: var(--white);
}

.process-step h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.process-step p {
    font-size: 0.875rem;
    color: var(--charcoal-light);
    line-height: 1.7;
}

.process-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--sage-light), var(--sage));
    margin-top: 35px;
    opacity: 0.4;
    flex-shrink: 0;
}

/* ============================================
   TESTIMONIAL SECTION - Full Background
   ============================================ */
.testimonial {
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
}

.testimonial-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.testimonial-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(143, 163, 155, 0.92) 0%, 
        rgba(107, 125, 117, 0.95) 100%);
}

.testimonial-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-mark {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 10rem;
    line-height: 0.5;
    color: rgba(255, 255, 255, 0.15);
    margin-bottom: 1rem;
}

.testimonial blockquote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.author-name {
    font-size: 0.938rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.1em;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(100px);
}

.cta-shape.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--sage-light);
    top: -200px;
    left: -200px;
    animation: float 15s ease-in-out infinite;
}

.cta-shape.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--rose);
    bottom: -150px;
    right: -150px;
    animation: float 18s ease-in-out infinite reverse;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.125rem;
    color: var(--charcoal-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--charcoal-light);
}

.cta-note svg {
    width: 18px;
    height: 18px;
    color: var(--sage);
    flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

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

.footer-logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.footer-tagline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.875rem;
    color: var(--sage-light);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.footer-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-location svg {
    width: 16px;
    height: 16px;
    color: var(--sage-light);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.938rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--sage-light);
    transition: width 0.3s ease;
}

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

.footer-links a:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--sage);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(143, 163, 155, 0.4);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-visual {
        display: none;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        order: -1;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .credentials {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .process-connector {
        display: none;
    }
    
    .process-step {
        flex: 0 0 calc(50% - 1rem);
        max-width: none;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .benefits-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 7rem 0 4rem;
    }
    
    .hero-image {
        background-attachment: scroll;
    }
    
    .testimonial-bg {
        background-attachment: scroll;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .about,
    .services,
    .benefits,
    .process,
    .testimonial,
    .cta {
        padding: 5rem 0;
    }
    
    .credentials {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .service-card {
        min-height: 320px;
    }
    
    .process-step {
        flex: 0 0 100%;
    }
    
    .benefits-grid {
        text-align: center;
    }
    
    .benefit-item {
        flex-direction: column;
        gap: 0.75rem;
        text-align: left;
    }
    
    .testimonial {
        padding: 6rem 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        align-items: center;
    }
    
    .footer-location {
        justify-content: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo-name {
        font-size: 1.25rem;
    }
    
    .logo-tagline {
        font-size: 0.75rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
    }
    
    .btn-large {
        padding: 1rem 1.75rem;
        font-size: 0.938rem;
    }
    
    .quote-mark {
        font-size: 6rem;
    }
}
