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

:root {
    --terracotta: #C4694A;
    --terracotta-dark: #A85538;
    --terracotta-light: #D4896E;
    --sand: #F5F0EB;
    --sand-light: #FAF7F4;
    --sand-dark: #E8E0D8;
    --charcoal: #1A1A1A;
    --text: #2D2D2D;
    --text-light: #6B6B6B;
    --text-muted: #9A9A9A;
    --white: #FFFFFF;
    --border: #E5DDD6;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

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

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

/* NAV */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 247, 244, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.nav.scrolled {
    border-bottom-color: var(--border);
    box-shadow: 0 1px 20px rgba(0,0,0,0.04);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    font-size: 0.938rem;
    letter-spacing: -0.01em;
}

.nav-logo span {
    font-weight: 400;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--terracotta);
    transition: width 0.3s var(--ease-out);
}

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

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--terracotta) !important;
    font-weight: 500 !important;
    border: 1px solid var(--terracotta);
    padding: 8px 16px;
    border-radius: 100px;
    transition: background 0.3s ease, color 0.3s ease !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--terracotta);
    color: var(--white) !important;
}

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

.nav-toggle-line {
    width: 22px;
    height: 1.5px;
    background: var(--charcoal);
    transition: transform 0.3s var(--ease-out), opacity 0.3s ease;
    transform-origin: center;
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 72px;
    background: var(--sand-light);
    position: relative;
    overflow: hidden;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.813rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 24px;
}

.hero-tag-line {
    width: 32px;
    height: 1px;
    background: var(--terracotta);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--charcoal);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

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

.hero-sub {
    font-size: 1.063rem;
    line-height: 1.75;
    color: var(--text-light);
    max-width: 480px;
    margin-bottom: 36px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    align-items: center;
}

.hero-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--charcoal);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

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

.hero-visual {
    position: relative;
    height: 600px;
}

.hero-image-main {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

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

.hero-image-accent {
    position: absolute;
    bottom: -30px;
    left: -40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    border: 4px solid var(--sand-light);
}

.hero-image-accent img {
    display: block;
}

.hero-badge {
    position: absolute;
    top: 24px;
    right: -20px;
    background: var(--white);
    padding: 10px 16px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.813rem;
    font-weight: 500;
    color: var(--charcoal);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.hero-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: all 0.3s var(--ease-out);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

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

.btn-primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(196, 105, 74, 0.25);
}

.btn-ghost {
    background: transparent;
    color: var(--charcoal);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    border-color: var(--charcoal);
    transform: translateY(-1px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* SECTION HEADERS */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--charcoal);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 300;
}

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

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

.service-card {
    padding: 36px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease-out);
    position: relative;
    background: var(--sand-light);
}

.service-card:hover {
    border-color: var(--terracotta-light);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(196, 105, 74, 0.08);
}

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

.service-badge {
    position: absolute;
    top: -1px;
    right: 24px;
    background: var(--terracotta);
    color: var(--white);
    font-size: 0.688rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 0 0 6px 6px;
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(196, 105, 74, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    margin-bottom: 20px;
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 0.938rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features li {
    font-size: 0.813rem;
    color: var(--text-light);
    padding-left: 16px;
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 1px;
    background: var(--terracotta);
}

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

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

.about-visual {
    position: relative;
}

.about-image-stack {
    position: relative;
    height: 420px;
}

.about-image-stack img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.about-image-float {
    position: absolute;
    bottom: -24px;
    right: -24px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
    border: 4px solid var(--sand-light);
}

.about-image-float img {
    display: block;
}

.about-content .section-tag {
    margin-bottom: 16px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-text {
    font-size: 0.938rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.about-value {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-value-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(196, 105, 74, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    margin-top: 2px;
}

.about-value span:last-child {
    font-size: 0.875rem;
    color: var(--text);
    line-height: 1.5;
}

/* PROCESS */
.process {
    padding: 100px 0;
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 0 24px;
    position: relative;
}

.process-step:last-child .process-step-line {
    display: none;
}

.process-step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    color: var(--sand-dark);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.process-step-line {
    position: absolute;
    top: 28px;
    right: 0;
    width: calc(100% - 56px);
    height: 1px;
    background: var(--border);
    transform: translateX(50%);
}

.process-step-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.process-step-desc {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* COVERAGE */
.coverage {
    padding: 100px 0;
    background: var(--sand-light);
}

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

.coverage-content .section-tag {
    margin-bottom: 16px;
}

.coverage-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.coverage-text {
    font-size: 0.938rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.coverage-routes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.coverage-route {
    padding: 20px 24px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--white);
    transition: border-color 0.3s ease;
}

.coverage-route:hover {
    border-color: var(--terracotta-light);
}

.coverage-route-name {
    display: block;
    font-weight: 500;
    font-size: 0.938rem;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.coverage-route-detail {
    font-size: 0.813rem;
    color: var(--text-muted);
}

.coverage-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* CTA */
.cta {
    padding: 100px 0;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(196, 105, 74, 0.06);
    pointer-events: none;
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
}

.cta-content .section-tag {
    margin-bottom: 16px;
    color: var(--terracotta-light);
}

.cta-content .section-title {
    text-align: left;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-text {
    font-size: 0.938rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    max-width: 420px;
}

.cta-form-wrapper {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.813rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.938rem;
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--charcoal);
    background: var(--sand-light);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(196, 105, 74, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 40px 20px;
}

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

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--charcoal);
}

.form-success p {
    font-size: 0.938rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* FOOTER */
.footer {
    padding: 64px 0 0;
    background: var(--charcoal);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.938rem;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    max-width: 280px;
}

.footer-contact h4,
.footer-links h4 {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
}

.footer-contact address {
    font-style: normal;
}

.footer-contact p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

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

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

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

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

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

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

.footer-bottom a:hover {
    color: var(--terracotta-light);
}

/* REVEAL ANIMATION */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* MOBILE */
@media (max-width: 1024px) {
    .hero-inner {
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .coverage-inner,
    .cta-inner {
        gap: 48px;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .process-step-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 247, 244, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        border-bottom: 1px solid var(--border);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
    }
    
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 40px 24px 60px;
    }
    
    .hero-visual {
        height: 400px;
        order: -1;
    }
    
    .hero-image-accent {
        left: -16px;
        bottom: -16px;
    }
    
    .hero-badge {
        right: 16px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid,
    .coverage-inner,
    .cta-inner {
        grid-template-columns: 1fr;
    }
    
    .about-visual {
        order: -1;
    }
    
    .about-image-stack {
        height: 300px;
    }
    
    .about-image-float {
        right: -12px;
        bottom: -12px;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .coverage-routes {
        grid-template-columns: 1fr;
    }
    
    .coverage-visual img {
        height: 300px;
    }
    
    .cta-form-wrapper {
        padding: 28px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        justify-content: center;
    }
    
    .service-card {
        padding: 28px;
    }
    
    .cta-form-wrapper {
        padding: 24px;
    }
}
