/* Hero */
.hero {
    min-height: auto;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 2rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(139, 115, 85, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(3.2rem, 8vw, 5.5rem);
    font-weight: 300;
    margin-bottom: 1.2rem;
    line-height: 1.05;
    letter-spacing: 0.03em;
    color: var(--charcoal);
}

.hero p {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    margin-bottom: 3rem;
    color: #666;
    line-height: 1.8;
    font-weight: 400;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.25rem;
}

/* Pricing */
.pricing-section {
    background: var(--linen);
    border-top: 1px solid var(--sand);
    border-bottom: 1px solid var(--sand);
    position: relative;
}

.pricing-section .section-title { color: var(--charcoal); }
.pricing-section .section-subtitle { color: #777; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

/* Process */
.process-section {
    background: var(--cream);
    border-top: 1px solid var(--linen);
    border-bottom: 1px solid var(--linen);
}

/* About */
.about-section {
    background: var(--white);
    border-bottom: 1px solid var(--linen);
}

.about-section .container > div {
    max-width: 620px;
    margin: 0 auto;
    text-align: left;
}

.about-section .container > div p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 1.25rem;
    font-weight: 400;
    font-size: 1.02rem;
}

/* CTA Section */
.cta-section {
    background: var(--charcoal);
    color: var(--cream);
    text-align: center;
    padding: 7rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(139, 115, 85, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 1.25rem;
    font-weight: 300;
    color: var(--cream);
    position: relative;
    letter-spacing: 0.03em;
}

.cta-section p {
    font-size: 1rem;
    color: var(--sand);
    margin-bottom: 2.5rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    position: relative;
}

/* Blog Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    border: 1px solid var(--linen);
    transition: var(--transition);
}

.blog-card:hover {
    border-color: var(--sand);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.blog-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.blog-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Service Detail Page */
.service-hero {
    background: var(--gradient-hero);
    padding: 180px 2rem 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(139, 115, 85, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.service-hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    margin-bottom: 1.25rem;
    font-weight: 300;
    position: relative;
    letter-spacing: 0.02em;
}

.service-hero p {
    font-size: 1.05rem;
    color: #666;
    max-width: 560px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
    line-height: 1.7;
    position: relative;
}

.content-section {
    max-width: 680px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.content-section h2 {
    font-size: 1.8rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    margin-top: 3.5rem;
    font-weight: 400;
}

.content-section h2:first-child { margin-top: 0; }

.content-section p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 1.25rem;
    font-weight: 400;
}

.content-section ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.content-section ul li {
    padding: 0.6rem 0 0.6rem 1.5rem;
    position: relative;
    color: #666;
    line-height: 1.65;
    font-weight: 400;
}

.content-section ul li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--bronze);
    font-weight: 600;
}

/* Blog Detail Page */
.blog-hero {
    background: var(--gradient-hero);
    padding: 180px 2rem 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.75rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    position: relative;
}

.blog-meta {
    color: #888;
    font-size: 0.85rem;
    font-weight: 400;
    position: relative;
}

.blog-content {
    max-width: 660px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.blog-content h2 {
    font-size: 1.6rem;
    color: var(--charcoal);
    margin: 3rem 0 1rem;
    font-weight: 400;
}

.blog-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 1.25rem;
    font-weight: 400;
}

.blog-content ul, .blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-content li {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

/* Section Divider */
.section-divider {
    width: 60px;
    height: 1px;
    background: var(--bronze);
    margin: 0 auto 3rem;
    opacity: 0.4;
}

/* Mobile */
@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .hero { padding: 140px 1.5rem 4rem; }
    .service-hero { padding: 150px 1.5rem 80px; }
    .blog-hero { padding: 150px 1.5rem 60px; }
    .section { padding: 5rem 0; }
}
