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

:root {
    --terracotta: #C4704B;
    --terracotta-dark: #A85A3A;
    --sand: #F5F0EB;
    --sand-light: #FAF8F5;
    --sand-dark: #E8E0D8;
    --charcoal: #2A2522;
    --charcoal-light: #4A4440;
    --warm-gray: #8A8078;
    --white: #FFFFFF;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--charcoal);
    background-color: var(--sand-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* ─── HEADER ─── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--sand-dark);
    transition: box-shadow var(--transition);
}

.header.scrolled {
    box-shadow: 0 1px 0 var(--sand-dark);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.02em;
    color: var(--charcoal);
}

.logo-mark {
    font-size: 1.1rem;
    color: var(--terracotta);
}

/* ─── NAV ─── */
.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--warm-gray);
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--terracotta);
    transition: width var(--transition);
}

.nav-link:hover {
    color: var(--charcoal);
}

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

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

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--charcoal);
    transition: var(--transition);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ─── HERO ─── */
.hero {
    padding-top: 140px;
    padding-bottom: 100px;
    background: var(--sand-light);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    max-width: 540px;
}

.hero-headline em {
    font-style: italic;
    color: var(--terracotta);
}

.hero-sub {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--charcoal-light);
    margin-bottom: 2.5rem;
    max-width: 440px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition);
}

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

.btn-primary:hover {
    background: var(--terracotta-dark);
    border-color: var(--terracotta-dark);
}

.btn-ghost {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--sand-dark);
}

.btn-ghost:hover {
    border-color: var(--charcoal);
}

.btn-full {
    width: 100%;
}

.hero-trust {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-trust li {
    font-size: 0.8125rem;
    color: var(--warm-gray);
    letter-spacing: 0.02em;
}

.hero-trust li::before {
    content: '—';
    margin-right: 0.5rem;
    color: var(--terracotta);
}

.hero-image {
    position: relative;
}

.hero-img-wrap {
    overflow: hidden;
    border-radius: 2px;
}

.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-img-wrap:hover img {
    transform: scale(1.02);
}

.hero-accent {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--sand-light);
    border: 1px solid var(--sand-dark);
    border-radius: 2px;
}

.accent-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--terracotta);
}

.accent-text {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--charcoal);
}

/* ─── SECTION COMMON ─── */
.section-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

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

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

.service-card {
    padding: 2.5rem 2rem;
    border: 1px solid var(--sand-dark);
    margin: -0.5px;
    transition: all var(--transition);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: width var(--transition);
}

.service-card:hover::before {
    width: 100%;
}

.service-card:hover {
    background: var(--sand-light);
}

.service-num {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--sand-dark);
    margin-bottom: 1.25rem;
    transition: color var(--transition);
}

.service-card:hover .service-num {
    color: var(--terracotta);
}

.service-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.service-desc {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--warm-gray);
}

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

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

.about-img-wrap {
    overflow: hidden;
    border-radius: 2px;
}

.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-img-wrap:hover img {
    transform: scale(1.02);
}

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

.about-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--sand-dark);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-num {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--terracotta);
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-gray);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--sand-dark);
}

/* ─── AREAS ─── */
.areas {
    padding: 100px 0;
    background: var(--charcoal);
    color: var(--white);
}

.areas-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.areas-label-wrap .section-label {
    color: var(--terracotta);
}

.areas-label-wrap .section-title {
    color: var(--white);
}

.areas-intro {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2.5rem;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.area-tag {
    padding: 0.6rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    transition: all var(--transition);
}

.area-tag:hover {
    color: var(--white);
    border-color: var(--terracotta);
    background: rgba(196, 112, 75, 0.1);
}

/* ─── CONTACT ─── */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-intro {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--charcoal-light);
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.contact-item-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-gray);
}

.contact-item-value {
    font-size: 1rem;
    color: var(--charcoal);
    line-height: 1.6;
}

.contact-item-value a {
    color: var(--terracotta);
    transition: color var(--transition);
}

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

/* ─── FORM ─── */
.contact-form-wrap {
    position: relative;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 0;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--charcoal);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--sand-dark);
    border-radius: 0;
    outline: none;
    transition: border-color var(--transition);
    -webkit-appearance: none;
}

.form-input::placeholder {
    color: var(--sand-dark);
}

.form-input:focus {
    border-color: var(--terracotta);
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A8078' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 2rem;
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    height: 100%;
}

.form-success.visible {
    display: flex;
}

.success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--terracotta);
    color: var(--white);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.form-success p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--charcoal-light);
}

/* ─── FOOTER ─── */
.footer {
    padding: 3rem 0;
    background: var(--sand);
    border-top: 1px solid var(--sand-dark);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
    font-size: 0.9375rem;
    color: var(--charcoal);
}

.footer-copy {
    font-size: 0.8125rem;
    color: var(--warm-gray);
}

.footer-address {
    font-size: 0.8125rem;
    color: var(--warm-gray);
}

/* ─── MOBILE ─── */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image {
        order: -1;
        max-width: 500px;
    }

    .hero-headline {
        max-width: 100%;
    }

    .hero-accent {
        bottom: -1rem;
        left: -0.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image {
        order: -1;
    }

    .areas-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1.25rem;
    }

    .nav-list {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(250, 248, 245, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform var(--transition);
    }

    .nav-list.open {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-trust {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-trust li::before {
        content: '—';
        margin-right: 0.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-wrap: wrap;
    }

    .stat-divider {
        display: none;
    }

    .areas-grid {
        gap: 0.5rem;
    }
}

/* ─── ANIMATIONS ─── */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }
.fade-up:nth-child(5) { transition-delay: 0.32s; }
.fade-up:nth-child(6) { transition-delay: 0.40s; }
