:root {
    --gold: #E9B949;
    --gold-dark: #fab029;
    --gold-light: #F5D98A;
    --navy: #2B4052;
    --navy-dark: #1E2D3A;
    --cream: #FDF9F3;
    --sage: #E8EDE9;
    --blush: #F9EBE8;
    --sky: #E6EEF4;
    --stone: #E8E5E0;
    --white: #FFFFFF;
    --text-primary: #2B4052;
    --text-secondary: #5A6B7A;
    --shadow-soft: 0 4px 20px rgba(43, 64, 82, 0.08);
    --shadow-medium: 0 8px 30px rgba(43, 64, 82, 0.12);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Heebo', sans-serif;
    background: var(--cream);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Animated Background */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.bg-shape:nth-child(1) {
    width: 600px;
    height: 600px;
    background: var(--gold-light);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.bg-shape:nth-child(2) {
    width: 400px;
    height: 400px;
    background: var(--sky);
    bottom: 20%;
    left: -100px;
    animation-delay: -5s;
}

.bg-shape:nth-child(3) {
    width: 300px;
    height: 300px;
    background: var(--blush);
    top: 50%;
    right: 10%;
    animation-delay: -10s;
}

@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); }
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(253, 249, 243, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 35px;
    height: 35px;
    background: var(--gold-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.logo-icon-img {
    mix-blend-mode: darken;
    border-radius: 100%;
}

.logo:hover .logo-icon {
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
}

.logo-text.white-text {
    color: var(--white);
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--navy);
}

nav a:hover::after {
    width: 100%;
}

.cta-btn {
    background: var(--navy);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid var(--navy);
}

.cta-btn:hover {
    background: transparent;
    color: var(--navy);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    box-shadow: var(--shadow-soft);
}

.hero-badge::before {
    content: '🌱';
}

.hero-title {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(233, 185, 73, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(233, 185, 73, 0.4);
}

.btn-primary svg {
    rotate: 180deg;
}

.btn-secondary {
    background: var(--white);
    color: var(--navy);
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--stone);
}

.btn-secondary:hover {
    border-color: var(--navy);
}

.hero-visual {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.hero-blob {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: morph 8s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(233, 185, 73, 0.25);
}

.hero-blob img {
    width: 360px;
}

@keyframes morph {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

.hero-blob svg {
    width: 50%;
    height: 50%;
    fill: var(--navy);
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-medium);
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card:nth-child(2) {
    top: 10%;
    left: -10%;
    animation-delay: -1s;
}

.floating-card:nth-child(3) {
    bottom: 15%;
    right: -5%;
    animation-delay: -2s;
}

.floating-card span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Section */
.services {
    padding: 120px 0;
    background: var(--white);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--navy);
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

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

.service-card {
    background: var(--cream);
    padding: 32px 28px;
    border-radius: var(--radius-md);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

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

.service-card:nth-child(1) { background: var(--blush); }
.service-card:nth-child(2) { background: var(--sky); }
.service-card:nth-child(3) { background: var(--sage); }
.service-card:nth-child(4) { background: var(--stone); }

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.service-title {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 1.35rem;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.4;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Approach Section */
.approach {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.approach-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.approach-image {
    position: relative;
}

.approach-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.approach-img-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    opacity: 0.1;
    z-index: 1;
}

.approach-img-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.approach-accent {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--gold);
    border-radius: 50%;
    bottom: -30px;
    left: -30px;
    z-index: -1;
    opacity: 0.3;
}

.photo-credit {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.6rem;
}

.photo-credit a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

.photo-credit a:hover {
    color: var(--gold-light);
}

.approach-text h2 {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--navy);
    margin-bottom: 24px;
}

.approach-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.approach-highlight {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-sm);
    border-right: 4px solid var(--gold);
    margin-top: 32px;
    box-shadow: var(--shadow-soft);
}

.approach-highlight p {
    margin: 0;
    font-weight: 500;
    color: var(--navy);
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--gold);
    border-radius: 50%;
    top: -300px;
    left: -200px;
    opacity: 0.05;
}

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

.about-text h2 {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 24px;
}

.about-text p {
    opacity: 0.85;
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 2.5rem;
    color: var(--gold);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.7;
}

.about-image {
    position: relative;
}

.about-img-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.1);
    height: 530px;
}

.about-img-wrapper img {
    width: 100%;
    object-fit: cover;
}

.about-card {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: var(--white);
    color: var(--navy);
    padding: 24px 28px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-medium);
}

.about-card h4 {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.about-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--cream);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.contact-info {
    padding: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy);
}

.contact-info h2 {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 2rem;
    margin-bottom: 16px;
}

.contact-info > p {
    margin-bottom: 40px;
    opacity: 0.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--navy);
}

.contact-item-text h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-item-text a,
.contact-item-text p {
    font-size: 1rem;
    text-decoration: none;
    color: var(--navy);
    opacity: 0.9;
    margin: 0;
}

.contact-form {
    padding: 60px;
}

.contact-form h3 {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--stone);
    border-radius: var(--radius-sm);
    font-family: 'Heebo', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--cream);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    background: var(--navy);
    color: var(--white);
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-family: 'Heebo', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.form-submit:hover {
    background: var(--navy-dark);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
}

.footer-logo .logo-icon svg {
    width: 24px;
    height: 24px;
}

.footer-logo span {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 1.25rem;
}

footer p {
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Scroll Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .approach-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .approach-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-image-wrapper {
        max-width: 320px;
    }
    
    .floating-card {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info,
    .contact-form {
        padding: 40px 24px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 16px;
    }
    
    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Form Success Message */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success p {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 500;
}

/* reCAPTCHA Styling */
.recaptcha-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.recaptcha-wrapper .g-recaptcha {
    transform-origin: center;
}

@media (max-width: 400px) {
    .recaptcha-wrapper .g-recaptcha {
        transform: scale(0.85);
        transform-origin: center;
    }
}
