/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #1A1A1A;
    color: #F5F0EB;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── Loader ── */
.loader {
    position: fixed; inset: 0; z-index: 9999;
    background: #1A1A1A;
    display: flex; align-items: center; justify-content: center;
    transition: opacity .5s ease, visibility .5s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-line {
    width: 60px; height: 3px; background: #E8644C;
    animation: loaderAnim 1s ease-in-out infinite;
    transform-origin: left;
}
@keyframes loaderAnim {
    0%, 100% { transform: scaleX(0); transform-origin: left; }
    50% { transform: scaleX(1); transform-origin: left; }
    50.1% { transform-origin: right; }
    100% { transform: scaleX(0); transform-origin: right; }
}

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

/* ── Typography ── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.1; }
.emphasis { font-style: italic; }

/* ── Section Shared ── */
.section-eyebrow {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #E8644C;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    margin-bottom: 20px;
    color: #F5F0EB;
}
.section-title em { color: #E8644C; }
.section-sub {
    font-size: 1.1rem;
    color: #A09890;
    max-width: 560px;
    line-height: 1.7;
}
.section-header { margin-bottom: 64px; }
.section-header--centered { text-align: center; }
.section-header--centered .section-sub { margin: 0 auto; }

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px;
    font-size: .9rem; font-weight: 600;
    border-radius: 4px;
    transition: all .3s ease;
    white-space: nowrap;
}
.btn-primary {
    background: #E8644C;
    color: #fff;
}
.btn-primary:hover { background: #D4533D; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,100,76,.3); }
.btn-ghost {
    border: 1px solid rgba(245,240,235,.25);
    color: #F5F0EB;
}
.btn-ghost:hover { border-color: #E8644C; color: #E8644C; }
.btn-white {
    background: #fff;
    color: #1A1A1A;
}
.btn-white:hover { background: #F5F0EB; transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ── Nav ── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 0 24px;
    transition: background .3s ease, box-shadow .3s ease;
}
.nav.scrolled { background: rgba(26,26,26,.95); backdrop-filter: blur(12px); box-shadow: 0 1px 0 rgba(245,240,235,.06); }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; height: 72px; gap: 40px; }
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700; font-size: 1.1rem;
    color: #F5F0EB;
}
.nav-links { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.nav-link {
    font-size: .85rem; font-weight: 500;
    color: #A09890;
    transition: color .2s ease;
    position: relative;
}
.nav-link::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: #E8644C;
    transition: width .3s ease;
}
.nav-link:hover { color: #F5F0EB; }
.nav-link:hover::after { width: 100%; }
.nav-cta {
    padding: 10px 20px;
    background: #E8644C;
    color: #fff;
    font-size: .85rem; font-weight: 600;
    border-radius: 4px;
    transition: background .2s ease, transform .2s ease;
}
.nav-cta:hover { background: #D4533D; transform: translateY(-1px); }
.nav-toggle { display: none; margin-left: auto; color: #F5F0EB; }

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero-bg-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(232,100,76,.06) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(232,100,76,.04) 0%, transparent 50%);
    pointer-events: none;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.hero-eyebrow {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #E8644C;
    margin-bottom: 24px;
}
.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 28px;
    color: #F5F0EB;
}
.hero-headline .line { display: block; }
.hero-headline em { font-style: italic; color: #E8644C; }
.hero-headline .accent { color: #E8644C; }
.hero-sub {
    font-size: 1.1rem;
    color: #A09890;
    max-width: 480px;
    line-height: 1.75;
    margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { display: flex; flex-direction: column; }
.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem; font-weight: 700;
    color: #E8644C;
}
.stat-label { font-size: .75rem; color: #A09890; text-transform: uppercase; letter-spacing: .1em; }
.stat-divider {
    width: 1px; height: 40px;
    background: rgba(245,240,235,.1);
}
.hero-image { position: relative; }
.hero-image img {
    width: 100%; height: 860px;
    object-fit: cover;
    border-radius: 8px;
}
.hero-image-accent {
    position: absolute;
    bottom: -20px; left: -20px;
    width: 120px; height: 120px;
    border: 2px solid #E8644C;
    border-radius: 4px;
    z-index: -1;
}

/* ── Services ── */
.services { padding: 120px 0; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: rgba(245,240,235,.03);
    border: 1px solid rgba(245,240,235,.06);
    border-radius: 8px;
    padding: 40px 32px;
    transition: all .4s ease;
    opacity: 0;
    transform: translateY(30px);
}
.service-card.revealed { opacity: 1; transform: translateY(0); }
.service-card:hover {
    border-color: rgba(232,100,76,.3);
    background: rgba(232,100,76,.04);
    transform: translateY(-4px);
}
.service-icon { margin-bottom: 24px; }
.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: #F5F0EB;
}
.service-card p {
    font-size: .95rem;
    color: #A09890;
    line-height: 1.7;
}

/* ── About ── */
.about { padding: 120px 0; }
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image img {
    width: 100%; height: 700px;
    object-fit: cover;
    border-radius: 8px;
}
.about-content .section-sub { margin-bottom: 24px; }
.about-content p {
    color: #A09890;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-values { margin-top: 36px; display: grid; gap: 16px; }
.value-item {
    display: flex; align-items: center; gap: 12px;
    font-size: .95rem; color: #F5F0EB;
}
.value-item svg { flex-shrink: 0; }

/* ── Process ── */
.process { padding: 120px 0; background: rgba(245,240,235,.02); }
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.process-step {
    opacity: 0; transform: translateY(30px);
    transition: all .5s ease;
}
.process-step.revealed { opacity: 1; transform: translateY(0); }
.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem; font-weight: 900;
    color: rgba(232,100,76,.2);
    display: block;
    margin-bottom: 16px;
    line-height: 1;
}
.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #F5F0EB;
}
.process-step p {
    font-size: .9rem;
    color: #A09890;
    line-height: 1.7;
}

/* ── CTA Banner ── */
.cta-banner { padding: 100px 0; background: #E8644C; }
.cta-inner { text-align: center; }
.cta-eyebrow {
    font-size: .75rem; font-weight: 600;
    letter-spacing: .15em; text-transform: uppercase;
    color: rgba(255,255,255,.7);
    margin-bottom: 16px;
}
.cta-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: #fff;
    margin-bottom: 36px;
}
.cta-title em { font-style: italic; color: #1A1A1A; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-actions .btn-primary { background: #1A1A1A; color: #fff; }
.cta-actions .btn-primary:hover { background: #2A2A2A; }

/* ── Contact ── */
.contact { padding: 120px 0; }
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}
.contact-sub {
    color: #A09890;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.contact-detail svg { flex-shrink: 0; margin-top: 2px; }
.detail-label {
    display: block;
    font-size: .75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .1em;
    color: #E8644C;
    margin-bottom: 4px;
}
.detail-value {
    display: block;
    font-size: 1rem; color: #F5F0EB;
    line-height: 1.6;
}
.detail-value:hover { color: #E8644C; }

/* ── Form ── */
.contact-form-wrap {
    background: rgba(245,240,235,.03);
    border: 1px solid rgba(245,240,235,.06);
    border-radius: 8px;
    padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: .8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .08em;
    color: #A09890;
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(245,240,235,.05);
    border: 1px solid rgba(245,240,235,.1);
    border-radius: 4px;
    color: #F5F0EB;
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    transition: border-color .2s ease;
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #5A524A; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #E8644C; }
.form-group select option { background: #1A1A1A; }
.form-group textarea { resize: vertical; }
.form-success {
    text-align: center;
    padding: 48px 24px;
}
.form-success h3 {
    font-size: 1.5rem;
    margin: 16px 0 8px;
    color: #F5F0EB;
}
.form-success p { color: #A09890; }

/* ── Footer ── */
.footer {
    padding: 64px 0 32px;
    border-top: 1px solid rgba(245,240,235,.06);
}
.footer-inner { display: flex; flex-direction: column; gap: 40px; }
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand p { font-size: .9rem; color: #A09890; max-width: 280px; }
.nav-logo span { color: #F5F0EB; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
    font-size: .9rem; color: #A09890;
    transition: color .2s ease;
}
.footer-links a:hover { color: #E8644C; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a {
    font-size: .9rem; color: #A09890;
    transition: color .2s ease;
}
.footer-contact a:hover { color: #E8644C; }
.footer-contact span { font-size: .9rem; color: #A09890; }
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(245,240,235,.06);
}
.footer-bottom p { font-size: .8rem; color: #5A524A; }

/* ── Mobile Nav ── */
@media (max-width: 900px) {
    .nav-toggle { display: flex; align-items: center; justify-content: center; }
    .nav-links {
        position: fixed;
        top: 72px; left: 0; right: 0; bottom: 0;
        background: rgba(26,26,26,.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        transform: translateX(100%);
        transition: transform .4s ease;
    }
    .nav-links.open { transform: translateX(0); }
    .nav-link { font-size: 1.25rem; }
    .nav-cta { font-size: 1rem; padding: 14px 28px; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .hero-image img { height: 500px; }
    .hero-image-accent { display: none; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .about-inner { grid-template-columns: 1fr; gap: 48px; }
    .about-image img { height: 450px; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .contact-inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 600px) {
    .hero { padding: 100px 0 60px; }
    .hero-headline { font-size: 2.25rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .hero-stats { gap: 16px; }
    .services { padding: 80px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .process { padding: 80px 0; }
    .process-steps { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 24px; }
    .footer-inner { gap: 32px; }
    .cta-banner { padding: 80px 0; }
}
