/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 300;
    color: #26262d;
    background: #fafafa;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── Loader ─── */
#page-loader {
    position: fixed; inset: 0; z-index: 9999;
    background: #1a1a20;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #E86A5B;
    animation: loaderBounce 1.2s ease-in-out infinite;
}
.loader-dot:nth-child(2) { animation-delay: 0.2s; }
.loader-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes loaderBounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

/* ─── Skip Link ─── */
.skip-link {
    position: absolute; top: -100%; left: 16px;
    background: #E86A5B; color: #fff;
    padding: 8px 16px; border-radius: 0 0 4px 4px;
    z-index: 10000; font-size: 14px; font-weight: 500;
    transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ─── Header ─── */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(250, 250, 250, 0.92);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 26, 32, 0.06);
    transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: 0 1px 20px rgba(26, 26, 32, 0.06); }
.header-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex; align-items: center; gap: 10px;
    font-size: 18px; font-weight: 500; color: #1a1a20;
    letter-spacing: -0.02em;
}
.logo-icon { color: #E86A5B; }
.logo-accent { color: #E86A5B; font-weight: 400; }

/* ─── Nav ─── */
.nav-list {
    display: flex; align-items: center; gap: 32px;
}
.nav-link {
    font-size: 13px; font-weight: 400; color: #6b6b78;
    letter-spacing: 0.04em; text-transform: uppercase;
    transition: color 0.2s; position: relative;
}
.nav-link::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: #E86A5B;
    transition: width 0.3s ease;
}
.nav-link:hover { color: #1a1a20; }
.nav-link:hover::after { width: 100%; }
.nav-cta {
    display: flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 500; color: #E86A5B;
    letter-spacing: 0.01em;
    transition: color 0.2s, transform 0.2s;
}
.nav-cta:hover { color: #d45547; transform: translateY(-1px); }
.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    padding: 8px; z-index: 1001;
}
.nav-toggle-line {
    display: block; width: 22px; height: 1.5px;
    background: #1a1a20; transition: all 0.3s ease;
    transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ─── Hero ─── */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    padding: 120px 0 80px;
    position: relative; overflow: hidden;
    background: #fafafa;
}
.hero::before {
    content: ''; position: absolute; top: -200px; right: -200px;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(232,106,91,0.04) 0%, transparent 70%);
    pointer-events: none;
}
.hero-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
}
.hero-eyebrow {
    font-size: 11px; font-weight: 500; letter-spacing: 0.15em;
    text-transform: uppercase; color: #E86A5B; margin-bottom: 20px;
}
.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 400; line-height: 1.1;
    color: #1a1a20; letter-spacing: -0.02em;
    margin-bottom: 24px;
}
.hero-accent {
    font-style: italic; color: #E86A5B;
    font-family: 'Playfair Display', Georgia, serif;
}
.hero-description {
    font-size: 16px; line-height: 1.8; color: #6b6b78;
    max-width: 480px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 400; color: #8e8e9a;
    letter-spacing: 0.02em;
}
.trust-item svg { color: #E86A5B; flex-shrink: 0; }

/* ─── Buttons ─── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 4px;
    font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
    text-transform: uppercase; transition: all 0.3s ease;
}
.btn-primary {
    background: #E86A5B; color: #fff;
    box-shadow: 0 4px 16px rgba(232, 106, 91, 0.25);
}
.btn-primary:hover {
    background: #d45547; transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 106, 91, 0.35);
}
.btn-ghost {
    background: transparent; color: #1a1a20;
    border: 1px solid rgba(26, 26, 32, 0.15);
}
.btn-ghost:hover { border-color: #E86A5B; color: #E86A5B; }
.btn-lg { padding: 16px 32px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }

/* ─── Hero Image ─── */
.hero-image-wrapper { position: relative; }
.hero-image-accent {
    position: absolute; top: -16px; right: -16px;
    width: 100%; height: 100%; border: 1px solid rgba(232,106,91,0.2);
    border-radius: 8px; z-index: -1;
}
.hero-image {
    width: 100%; height: auto; aspect-ratio: 640/800;
    object-fit: cover; border-radius: 8px;
    box-shadow: 0 24px 64px rgba(26, 26, 32, 0.12);
}
.hero-image-badge {
    position: absolute; bottom: 24px; left: 24px;
    background: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(12px);
    padding: 16px 20px; border-radius: 6px;
    display: flex; align-items: baseline; gap: 6px;
    box-shadow: 0 8px 32px rgba(26, 26, 32, 0.1);
}
.badge-label { font-size: 11px; color: #8e8e9a; letter-spacing: 0.04em; }
.badge-value { font-family: 'Playfair Display', Georgia, serif; font-size: 18px; color: #1a1a20; font-style: italic; }
.hero-line {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 1px; background: linear-gradient(90deg, transparent, rgba(26,26,32,0.08), transparent);
}

/* ─── Section Shared ─── */
.section-eyebrow {
    font-size: 11px; font-weight: 500; letter-spacing: 0.15em;
    text-transform: uppercase; color: #E86A5B; margin-bottom: 16px;
}
.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 400; line-height: 1.15;
    color: #1a1a20; letter-spacing: -0.02em; margin-bottom: 20px;
}
.title-accent { font-style: italic; color: #E86A5B; }
.section-header--centered { text-align: center; }
.section-description {
    font-size: 16px; color: #6b6b78; max-width: 560px;
    margin: 0 auto; line-height: 1.8;
}

/* ─── Services ─── */
.services { padding: 120px 0; }
.services .section-header { margin-bottom: 64px; }
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
    background: rgba(26, 26, 32, 0.06);
    border-radius: 8px; overflow: hidden;
}
.service-card {
    background: #fafafa; padding: 40px 32px;
    transition: background 0.3s ease, transform 0.3s ease;
}
.service-card:hover { background: #fff; transform: translateY(-2px); }
.service-icon {
    width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(232,106,91,0.2); border-radius: 8px;
    color: #E86A5B; margin-bottom: 20px;
    transition: background 0.3s, border-color 0.3s;
}
.service-card:hover .service-icon { background: rgba(232,106,91,0.06); border-color: rgba(232,106,91,0.4); }
.service-title {
    font-size: 16px; font-weight: 500; color: #1a1a20;
    margin-bottom: 10px; letter-spacing: -0.01em;
}
.service-desc { font-size: 14px; color: #6b6b78; line-height: 1.7; }

/* ─── About ─── */
.about { padding: 120px 0; background: #fff; }
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-frame {
    border-radius: 8px; overflow: hidden;
    box-shadow: 0 24px 64px rgba(26, 26, 32, 0.1);
}
.about-image { width: 100%; height: auto; aspect-ratio: 580/700; object-fit: cover; }
.about-stats {
    display: flex; gap: 0; margin-top: 32px;
    background: #1a1a20; border-radius: 8px; overflow: hidden;
}
.stat-item { flex: 1; padding: 28px 24px; text-align: center; }
.stat-number {
    display: block; font-family: 'Playfair Display', Georgia, serif;
    font-size: 36px; color: #E86A5B; font-style: italic;
    margin-bottom: 8px;
}
.stat-label { font-size: 12px; color: #8e8e9a; line-height: 1.6; letter-spacing: 0.02em; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.08); }
.about-content-col .section-header { margin-bottom: 24px; }
.about-text { font-size: 15px; color: #6b6b78; line-height: 1.8; margin-bottom: 16px; }
.about-values { margin: 28px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.value-item {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 14px; color: #4a4a54;
}
.value-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #E86A5B; flex-shrink: 0; margin-top: 8px;
}

/* ─── Why Us ─── */
.why-us { padding: 120px 0; background: #1a1a20; color: #fff; }
.why-us .section-eyebrow { color: #E86A5B; }
.why-us .section-title { color: #fff; }
.why-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
    margin-top: 64px;
}
.why-card {
    background: rgba(255,255,255,0.03); padding: 40px 28px;
    border: 1px solid rgba(255,255,255,0.06); border-radius: 8px;
    transition: background 0.3s, border-color 0.3s;
}
.why-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(232,106,91,0.3); }
.why-number {
    display: block; font-family: 'Playfair Display', Georgia, serif;
    font-size: 48px; font-style: italic; color: rgba(232,106,91,0.2);
    margin-bottom: 16px; line-height: 1;
}
.why-title {
    font-size: 16px; font-weight: 500; color: #fff;
    margin-bottom: 10px; letter-spacing: -0.01em;
}
.why-desc { font-size: 13px; color: #8e8e9a; line-height: 1.7; }

/* ─── Testimonials ─── */
.testimonials { padding: 120px 0; background: #fff; }
.testimonials .section-header { margin-bottom: 64px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
    padding: 36px; background: #fafafa;
    border: 1px solid rgba(26,26,32,0.06); border-radius: 8px;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover { border-color: rgba(232,106,91,0.2); box-shadow: 0 8px 32px rgba(26,26,32,0.06); }
.testimonial-quote { color: #E86A5B; opacity: 0.3; margin-bottom: 16px; }
.testimonial-text {
    font-size: 15px; color: #4a4a54; line-height: 1.8;
    margin-bottom: 20px; font-style: italic;
}
.testimonial-author {
    font-size: 12px; color: #8e8e9a; letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ─── Contact ─── */
.contact { padding: 120px 0; background: #fafafa; }
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-intro { font-size: 15px; color: #6b6b78; line-height: 1.8; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-detail-label {
    display: flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase; color: #E86A5B; margin-bottom: 6px;
}
.contact-detail-label svg { flex-shrink: 0; }
dd { font-size: 15px; color: #4a4a54; line-height: 1.7; }
.contact-detail-link { color: #4a4a54; transition: color 0.2s; }
.contact-detail-link:hover { color: #E86A5B; }
.hours-row {
    display: flex; justify-content: space-between; gap: 24px;
    font-size: 14px; padding: 4px 0;
}
.hours-closed span:last-child { color: #E86A5B; }

/* ─── Form ─── */
.contact-form-col { background: #fff; border-radius: 8px; padding: 40px; border: 1px solid rgba(26,26,32,0.06); }
.form-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px; font-weight: 400; color: #1a1a20;
    margin-bottom: 28px; letter-spacing: -0.01em;
}
.form-group { margin-bottom: 20px; }
.form-label {
    display: block; font-size: 11px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #8e8e9a; margin-bottom: 8px;
}
.form-input, .form-textarea {
    width: 100%; padding: 12px 16px;
    border: 1px solid rgba(26,26,32,0.12); border-radius: 4px;
    font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 300;
    color: #1a1a20; background: #fafafa;
    transition: border-color 0.2s, background 0.2s;
    outline: none;
}
.form-input:focus, .form-textarea:focus {
    border-color: #E86A5B; background: #fff;
}
.form-input::placeholder, .form-textarea::placeholder { color: #b8b8c0; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-success {
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    padding: 32px; text-align: center;
}
.form-success svg { color: #E86A5B; }
.form-success p { font-size: 14px; color: #6b6b78; line-height: 1.7; }

/* ─── Footer ─── */
.footer { background: #1a1a20; color: #fff; padding: 64px 0 0; }
.footer-inner {
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px;
    padding-bottom: 48px;
}
.footer .logo { color: #fff; }
.footer-tagline { font-size: 13px; color: #8e8e9a; margin-top: 12px; line-height: 1.6; }
.footer-links nav { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: #8e8e9a; transition: color 0.2s; }
.footer-links a:hover { color: #E86A5B; }
.footer-phone { font-size: 18px; font-weight: 500; color: #E86A5B; margin-bottom: 8px; }
.footer-address { font-size: 13px; color: #8e8e9a; line-height: 1.6; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0; text-align: center;
}
.footer-bottom p { font-size: 12px; color: #6b6b78; }

/* ─── Animations ─── */
.reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero-inner { gap: 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .about-split { gap: 48px; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-list {
        position: fixed; top: 0; right: 0; bottom: 0;
        width: 280px; background: #fff;
        flex-direction: column; align-items: stretch;
        padding: 100px 32px 32px; gap: 0;
        box-shadow: -8px 0 32px rgba(0,0,0,0.1);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    .nav-list.open { transform: translateX(0); }
    .nav-link { padding: 14px 0; font-size: 15px; border-bottom: 1px solid rgba(26,26,32,0.06); }
    .nav-link::after { display: none; }
    .nav-cta { padding: 16px 0; font-size: 15px; }
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-image-wrapper { order: -1; max-width: 400px; margin: 0 auto; }
    .hero-image-accent { top: -10px; right: -10px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .services-grid { grid-template-columns: 1fr; }
    .about-split { grid-template-columns: 1fr; }
    .about-image-frame { max-width: 480px; }
    .why-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-split { grid-template-columns: 1fr; gap: 48px; }
    .contact-form-col { padding: 28px; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .section-header { text-align: center; }
    .section-description { margin: 0 auto; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .header-inner { padding: 0 16px; }
    .hero-title { font-size: 32px; }
    .hero-trust { flex-direction: column; gap: 12px; }
    .about-stats { flex-direction: column; }
    .stat-divider { width: 100%; height: 1px; }
}
