:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #c9a959;
    --accent-light: #e8d5a3;
    --text: #2d2d2d;
    --text-light: #6b6b6b;
    --white: #ffffff;
    --off-white: #f8f6f3;
    --cream: #faf9f6;
    --shadow: rgba(0,0,0,0.08);
    --shadow-dark: rgba(0,0,0,0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
}

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

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1100px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 12px 32px;
    z-index: 1000;
    box-shadow: 0 4px 30px var(--shadow);
}

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

.logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.hero-cinematic {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    overflow: hidden;
}

.hero-cinematic::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1920&h=1080&fit=crop') center/cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,26,46,0.4) 0%, rgba(26,26,46,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 0 24px;
}

.hero-tag {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 540px;
    margin: 0 auto 40px;
    opacity: 0.9;
    line-height: 1.8;
}

.cta-primary {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--white);
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.intro-hook {
    padding: 120px 24px;
    background: var(--white);
}

.lead-text {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 300;
}

.intro-hook p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.section-label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.story-block {
    display: flex;
    min-height: 600px;
}

.story-visual {
    flex: 1;
    position: relative;
}

.story-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    background: var(--cream);
}

.story-text h2 {
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 24px;
    line-height: 1.3;
}

.story-text p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.insight-reveal {
    padding: 100px 24px;
    background: var(--primary);
}

.insight-reveal .container {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.insight-card {
    text-align: center;
    color: var(--white);
}

.insight-number {
    display: block;
    font-size: 4rem;
    font-weight: 200;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 12px;
}

.insight-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    max-width: 180px;
}

.transformation-block {
    padding: 120px 24px;
    background: var(--white);
}

.transformation-block h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 32px;
}

.transformation-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

blockquote {
    margin: 48px 0;
    padding: 32px 40px;
    background: var(--cream);
    border-left: 4px solid var(--accent);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary);
}

blockquote cite {
    display: block;
    margin-top: 16px;
    font-size: 0.9rem;
    font-style: normal;
    color: var(--text-light);
}

.parallax-cta {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920&h=800&fit=crop') center/cover fixed;
}

.parallax-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26,26,46,0.75);
}

.parallax-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.parallax-content h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 16px;
}

.parallax-content p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.testimonial-flow {
    padding: 100px 24px;
    background: var(--off-white);
}

.testimonial-item {
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto 60px;
}

.testimonial-item.reverse {
    flex-direction: row-reverse;
}

.testimonial-image {
    flex-shrink: 0;
}

.testimonial-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 32px var(--shadow-dark);
}

.testimonial-content p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.8;
}

.testimonial-author {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
}

.services-preview {
    padding: 120px 24px;
    background: var(--white);
    text-align: center;
}

.services-preview h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 60px;
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    padding: 48px 32px;
    background: var(--cream);
    border-radius: 8px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px var(--shadow-dark);
}

.service-card.featured {
    background: var(--primary);
    color: var(--white);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--primary);
    padding: 6px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--accent);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--primary);
}

.service-card.featured h3 {
    color: var(--white);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-card.featured p {
    color: rgba(255,255,255,0.8);
}

.service-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 24px;
}

.service-link {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.service-link:hover {
    opacity: 0.7;
}

.trust-elements {
    padding: 80px 24px;
    background: var(--secondary);
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
    color: var(--white);
}

.trust-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 200;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.trust-item p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.urgency-block {
    padding: 120px 24px;
    background: var(--cream);
    text-align: center;
}

.urgency-block h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 24px;
}

.urgency-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.urgency-block .cta-primary {
    margin-top: 20px;
}

.form-section {
    padding: 120px 24px;
    background: var(--white);
}

.form-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.form-intro h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 16px;
}

.form-intro p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.contact-form {
    max-width: 560px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201,169,89,0.15);
}

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

.form-submit {
    width: 100%;
    font-size: 1.1rem;
    padding: 18px;
}

.final-cta {
    padding: 120px 24px;
    background: var(--primary);
    text-align: center;
    color: var(--white);
}

.final-cta h2 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.site-footer {
    padding: 80px 24px 40px;
    background: #0d0d1a;
    color: var(--white);
}

.footer-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.footer-brand {
    flex: 2;
    min-width: 250px;
}

.footer-brand .logo {
    color: var(--white);
    font-size: 1.5rem;
    display: block;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

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

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta a {
    display: block;
    background: var(--accent);
    color: var(--primary);
    padding: 16px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(201,169,89,0.4);
    transition: transform 0.3s;
}

.sticky-cta a:hover {
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 20px 24px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    min-width: 250px;
}

.cookie-content a {
    color: var(--accent);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background: var(--accent);
    color: var(--primary);
}

.cookie-btn.reject {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

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

.page-header {
    padding: 160px 24px 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto;
}

.page-content {
    padding: 80px 24px;
    background: var(--white);
}

.page-content h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 48px 0 20px;
}

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

.page-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.page-content ul {
    margin: 16px 0 24px 24px;
    color: var(--text-light);
}

.page-content li {
    margin-bottom: 8px;
}

.services-full {
    padding: 80px 24px;
}

.service-detail {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #eee;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-detail-visual {
    flex: 1;
}

.service-detail-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.service-detail h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.service-detail p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.service-detail .service-price {
    font-size: 2rem;
    margin: 24px 0;
}

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text);
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 12px;
    height: 12px;
    border: 2px solid var(--accent);
    border-radius: 50%;
}

.contact-page-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 280px;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 32px;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 8px;
}

.contact-item p {
    color: var(--text);
    font-size: 1.1rem;
}

.contact-form-wrapper {
    flex: 1;
    min-width: 320px;
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 24px;
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    border: 3px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--accent);
}

.thanks-content h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 16px;
}

.thanks-service {
    display: inline-block;
    background: rgba(201,169,89,0.2);
    color: var(--accent);
    padding: 12px 24px;
    border-radius: 4px;
    margin: 24px 0;
    font-weight: 500;
}

.thanks-content .cta-secondary {
    margin-top: 32px;
}

.about-story {
    padding: 80px 24px;
}

.about-intro {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-intro-text {
    flex: 1;
}

.about-intro-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 400;
}

.about-intro-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.about-intro-image {
    flex: 1;
}

.about-intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.team-section {
    padding: 80px 24px;
    background: var(--cream);
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 60px;
    font-weight: 400;
}

.team-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.team-member {
    text-align: center;
    max-width: 280px;
}

.team-member img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.team-member span {
    font-size: 0.9rem;
    color: var(--accent);
}

.values-section {
    padding: 80px 24px;
}

.values-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 40px;
    background: var(--cream);
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.value-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-radius: 0 0 20px 20px;
        box-shadow: 0 16px 32px var(--shadow);
        display: none;
    }

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

    .story-block {
        flex-direction: column;
    }

    .story-text {
        padding: 60px 24px;
    }

    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
    }

    .about-intro {
        flex-direction: column;
    }

    .testimonial-item,
    .testimonial-item.reverse {
        flex-direction: column;
        text-align: center;
    }

    .insight-reveal .container {
        gap: 40px;
    }

    .contact-page-grid {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .nav-floating {
        top: 12px;
        width: calc(100% - 24px);
        padding: 10px 20px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .parallax-content h2 {
        font-size: 2rem;
    }

    .services-preview h2,
    .transformation-block h2,
    .urgency-block h2,
    .form-intro h2 {
        font-size: 1.8rem;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta {
        right: 12px;
        bottom: 12px;
    }

    .sticky-cta a {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}