:root {
    --terracotta: #C05A37;
    --terracotta-dark: #A04828;
    --sand: #F4E8D5;
    --sand-light: #FDF8F0;
    --sand-dark: #E8D5BC;
    --charcoal: #2C2C2C;
    --cream: #FAF7F2;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(192, 90, 55, 0.15);
    --shadow-lg: 0 10px 40px rgba(192, 90, 55, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

/* Background Shapes */
.bg-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: -1;
    pointer-events: none;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--terracotta);
    top: -200px;
    right: -200px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--sand);
    bottom: 20%;
    left: -100px;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--terracotta);
    bottom: -100px;
    right: 10%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--sand-dark);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--charcoal);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--terracotta);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 24px;
    border-radius: 12px;
    transform: rotate(-5deg);
}

.logo-text {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 18px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--charcoal);
    border: 2px solid var(--sand-dark);
}

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

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--sand-light) 0%, var(--sand) 50%, var(--sand-dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(192, 90, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(244, 232, 213, 0.5) 0%, transparent 50%);
    pointer-events: none;
}

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

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--white);
    color: var(--terracotta);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

.hero h1 {
    font-size: clamp(40px, 5vw, 64px);
    color: var(--charcoal);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero h1 span {
    color: var(--terracotta);
}

.hero-sub {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    max-width: 500px;
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.visual-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-1 {
    width: 280px;
    height: 350px;
    top: 0;
    right: 0;
    z-index: 2;
}

.card-2 {
    width: 220px;
    height: 180px;
    bottom: 40px;
    left: 0;
    z-index: 1;
}

.card-3 {
    width: 160px;
    height: 160px;
    bottom: 0;
    right: 40px;
    z-index: 3;
    background: var(--terracotta);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.stat-box {
    text-align: center;
    color: var(--white);
}

.stat-number {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--white);
}

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

.section-tag {
    display: inline-block;
    color: var(--terracotta);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--charcoal);
}

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

.service-card {
    padding: 40px 32px;
    background: var(--cream);
    border-radius: 24px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--terracotta);
    box-shadow: var(--shadow-lg);
}

.service-card.accent {
    background: var(--terracotta);
    color: var(--white);
}

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

.service-card.accent p {
    color: rgba(255, 255, 255, 0.9);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--sand);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-card.accent .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: var(--terracotta);
}

.service-card.accent .service-icon svg {
    color: var(--white);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-card p {
    color: #666;
    line-height: 1.7;
}

.service-card.accent p {
    color: rgba(255, 255, 255, 0.9);
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--sand-light);
}

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

.about-image {
    position: relative;
}

.image-frame {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--terracotta);
    color: var(--white);
    padding: 20px 32px;
    border-radius: 20px;
    transform: rotate(5deg);
}

.badge-text {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 18px;
}

.about-content .section-tag {
    text-align: left;
}

.about-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 24px;
}

.about-content p {
    color: #666;
    margin-bottom: 16px;
    font-size: 16px;
}

.about-features {
    list-style: none;
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.about-features svg {
    width: 24px;
    height: 24px;
    color: var(--terracotta);
    flex-shrink: 0;
}

/* Location Section */
.location {
    padding: 100px 0;
    background: var(--white);
}

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

.location-info .section-tag {
    text-align: left;
}

.location-info h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 16px;
}

.location-desc {
    color: #666;
    margin-bottom: 40px;
}

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

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--sand);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    color: var(--terracotta);
}

.contact-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--charcoal);
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-item a {
    color: var(--terracotta);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--terracotta-dark);
}

.location-map {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 450px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 40px;
}

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

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

/* Footer */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

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

.footer-brand .logo-icon {
    width: 56px;
    height: 56px;
    font-size: 28px;
}

.footer-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-contact a {
    color: var(--sand);
    text-decoration: none;
}

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

/* Responsive */
@media (max-width: 968px) {
    .hero-container,
    .about-container,
    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        height: 400px;
        order: -1;
    }

    .card-1 {
        width: 220px;
        height: 280px;
    }

    .card-2 {
        width: 180px;
        height: 140px;
    }

    .card-3 {
        width: 120px;
        height: 120px;
    }

    .stat-number {
        font-size: 36px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 40px 24px;
        gap: 24px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        border-bottom: 1px solid var(--sand-dark);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }

    .location-map {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-visual {
        height: 320px;
    }

    .card-1 {
        width: 180px;
        height: 220px;
    }

    .card-2 {
        width: 140px;
        height: 110px;
    }

    .card-3 {
        width: 100px;
        height: 100px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }
}
