:root {
    --brand-red: #d10607;
    --brand-red-dark: #a80405;
    --brand-red-soft: rgba(209, 6, 7, 0.08);
    --ink: #0f1115;
    --ink-soft: #3a3f47;
    --muted: #6b7280;
    --line: #e7e2d8;
    --cream: #fffdf9;
    --cream-2: #f4ede0;
    --beige: #ebe1d0;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(15, 17, 21, 0.04), 0 1px 2px rgba(15, 17, 21, 0.04);
    --shadow-md: 0 12px 32px rgba(15, 17, 21, 0.08), 0 4px 8px rgba(15, 17, 21, 0.04);
    --shadow-lg: 0 24px 60px rgba(15, 17, 21, 0.14), 0 8px 16px rgba(15, 17, 21, 0.06);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --radius-pill: 999px;
    --container: 1200px;
    --space-section: clamp(64px, 10vw, 120px);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--white);
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; }
a:hover { color: var(--brand-red); }

h1, h2, h3, h4, h5 {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 4.4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.0625rem; }
h5 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; }

p { color: var(--ink-soft); }

.container,
.nav-container,
.hero-inner { padding-left: 24px; padding-right: 24px; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; }

.section-label {
    display: inline-block;
    font-size: 0.82rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.16em;
    color: var(--brand-red);
    margin-bottom: 16px;
}

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head h2 { margin-bottom: 16px; }
.section-lead { font-size: 1.0625rem; color: var(--ink-soft); }

.text-accent { color: var(--brand-red); }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    font-family: inherit; font-weight: 600; font-size: 0.95rem;
    padding: 16px 28px; border-radius: var(--radius-pill);
    border: 1.5px solid transparent;
    cursor: pointer; transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none; line-height: 1; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-md { padding: 14px 24px; font-size: 0.9rem; }
.btn-block { width: 100%; padding: 18px 28px; font-size: 1rem; }

.btn-primary { background: var(--brand-red); color: #fff; box-shadow: 0 8px 20px rgba(209, 6, 7, 0.25); }
.btn-primary:hover { background: var(--brand-red-dark); color: #fff; box-shadow: 0 14px 32px rgba(209, 6, 7, 0.35); }

.btn-ghost { background: rgba(255, 255, 255, 0.08); color: #fff; border-color: rgba(255, 255, 255, 0.4); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.btn-phone-icon { width: 18px; height: 18px; display: inline-flex; }
.btn-phone-icon svg { width: 100%; height: 100%; }

.site-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 18px 0;
    background: rgba(15, 17, 21, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: padding 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}
.site-nav.scrolled,
.site-nav.menu-open {
    padding: 12px 0;
    background: rgba(15, 17, 21, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}
.site-nav.menu-open { padding: 18px 0; }
.nav-container {
    max-width: var(--container); margin: 0 auto;
    display: flex; align-items: center; gap: 32px;
}
.nav-brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.nav-logo { height: 38px; width: auto; }
.nav-menu { display: flex; gap: 4px; margin-left: auto; }
.nav-menu a {
    color: rgba(255, 255, 255, 0.85); font-weight: 500; font-size: 0.95rem;
    padding: 10px 16px; border-radius: var(--radius-pill);
    transition: background 0.2s ease, color 0.2s ease;
}
.nav-menu a:hover { color: #fff; background: rgba(255, 255, 255, 0.08); }
.nav-phone {
    display: inline-flex; align-items: center; gap: 10px;
    color: #fff; font-weight: 600; font-size: 0.95rem;
    padding: 10px 18px; border-radius: var(--radius-pill);
    background: var(--brand-red);
    transition: background 0.2s ease, transform 0.2s ease;
}
.nav-phone:hover { background: var(--brand-red-dark); color: #fff; transform: translateY(-1px); }
.phone-icon { width: 16px; height: 16px; display: inline-flex; }
.phone-icon svg { width: 100%; height: 100%; }

.nav-toggle {
    display: none; background: transparent; border: 0; cursor: pointer;
    width: 44px; height: 44px;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 5px; padding: 0;
    margin-left: auto;
    border-radius: 10px;
}
.nav-toggle:hover { background: rgba(255, 255, 255, 0.08); }
.nav-toggle span {
    display: block; width: 22px; height: 2px; background: #fff;
    transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
    position: absolute;
    top: 100%; left: 0; right: 0;
    display: flex; flex-direction: column;
    padding: 8px 24px 24px;
    background: rgba(15, 17, 21, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    pointer-events: none;
}
.nav-mobile a {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500; font-size: 1.05rem;
    padding: 18px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex; align-items: center; justify-content: space-between;
    transition: color 0.15s ease;
}
.nav-mobile a::after {
    content: '→';
    color: rgba(255, 255, 255, 0.3);
    font-size: 1rem;
    transition: transform 0.2s ease, color 0.2s ease;
}
.nav-mobile a:hover { color: #fff; }
.nav-mobile a:hover::after { color: var(--brand-red); transform: translateX(4px); }
.nav-mobile .mobile-phone {
    margin-top: 18px;
    background: var(--brand-red);
    color: #fff;
    text-align: center;
    border-radius: var(--radius-pill);
    border-bottom: 0;
    padding: 16px 24px;
    font-weight: 600;
    font-size: 1rem;
    justify-content: center;
}
.nav-mobile .mobile-phone::after { display: none; }
.nav-mobile .mobile-phone:hover { background: var(--brand-red-dark); color: #fff; }
.nav-mobile.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 80px;
    display: flex; align-items: center;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
}
.hero-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
}
.hero-overlay {
    position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg, rgba(15, 17, 21, 0.78) 0%, rgba(15, 17, 21, 0.6) 60%, rgba(15, 17, 21, 0.78) 100%);
}
.hero-inner {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
}
.hero-lead, .hero-trust { max-width: 640px; }
.eyebrow {
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.18em;
    margin-bottom: 24px;
}
.hero h1 { color: #fff; margin-bottom: 28px; max-width: 720px; overflow-wrap: break-word; }
.hero-lead {
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    line-height: 1.65;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.hero-trust {
    list-style: none; display: flex; flex-wrap: wrap; gap: 8px 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-trust li {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem; font-weight: 500;
}

.services { padding: var(--space-section) 0; background: var(--cream); }
.services-foot {
    margin-top: 64px;
    padding: 40px 48px;
    background: var(--ink);
    color: #fff;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}
.services-foot p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    font-weight: 500;
    margin: 0;
    max-width: 380px;
}
.services-foot-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.services-foot .btn-outline { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.services-foot .btn-outline:hover { background: #fff; color: var(--ink); border-color: #fff; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.service-card {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--line);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex; flex-direction: column;
    position: relative;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}
.service-image::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15, 17, 21, 0.15) 100%);
}
.service-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card:hover .service-image img { transform: scale(1.06); }
.service-body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.service-points {
    list-style: none;
    margin: 18px 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.service-points li {
    position: relative;
    padding-left: 24px;
    color: var(--ink-soft);
    font-size: 0.94rem;
    line-height: 1.5;
}
.service-points li::before {
    content: '';
    position: absolute;
    left: 0; top: 8px;
    width: 14px; height: 2px;
    background: var(--brand-red);
    border-radius: 2px;
}
.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-red);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    transition: gap 0.2s ease, color 0.2s ease;
}
.service-cta:hover { gap: 14px; color: var(--brand-red-dark); }
.service-num {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem; font-weight: 700;
    color: var(--brand-red);
    background: var(--brand-red-soft);
    padding: 6px 12px; border-radius: var(--radius-pill);
    margin-bottom: 16px;
    letter-spacing: 0.04em;
}
.service-body h3 { margin-bottom: 12px; }
.service-body p { color: var(--ink-soft); }

.about {
    padding: var(--space-section) 0;
    background: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
}
.about-media {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 5;
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }

.about-content h2 { margin-bottom: 20px; }
.about-content > p { margin-bottom: 14px; max-width: 580px; }
.about-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.contact { padding: var(--space-section) 0; background: var(--cream-2); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: start;
}
.contact-info h2 { margin-bottom: 18px; }
.contact-info > p { margin-bottom: 36px; max-width: 520px; }

.contact-blocks { display: flex; flex-direction: column; gap: 0; }
.contact-block {
    padding: 22px 0;
    border-top: 1px solid var(--line);
}
.contact-block:last-child { border-bottom: 1px solid var(--line); }
.contact-block h4 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
    margin-bottom: 8px;
    font-weight: 600;
}
.contact-block p { color: var(--ink); font-size: 1rem; line-height: 1.6; }
.contact-block a { color: var(--ink); font-weight: 500; }
.contact-block a:hover { color: var(--brand-red); }

.contact-form-wrap {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
}
#contact-form h3 { margin-bottom: 8px; }
.form-lead { color: var(--ink-soft); margin-bottom: 28px; font-size: 0.95rem; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 0.85rem; font-weight: 600;
    color: var(--ink); margin-bottom: 8px;
    letter-spacing: 0.01em;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    font-family: inherit; font-size: 0.95rem;
    color: var(--ink);
    background: #faf7f0;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.form-group select { cursor: pointer; appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%), linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%); background-position: calc(100% - 18px) center, calc(100% - 13px) center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 40px; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--brand-red);
    background: #fff;
    box-shadow: 0 0 0 4px var(--brand-red-soft);
}
.form-group textarea { resize: vertical; min-height: 130px; font-family: inherit; }
.form-foot {
    text-align: center;
    margin-top: 16px;
    font-size: 0.82rem;
    color: var(--muted);
}

.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.75);
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
}
.footer-brand p { color: rgba(255, 255, 255, 0.7); font-size: 0.92rem; max-width: 320px; }
.footer-logo { height: 44px; width: auto; margin-bottom: 22px; }
.footer-col h5 {
    color: #fff;
    font-size: 0.78rem; letter-spacing: 0.18em;
    margin-bottom: 22px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--brand-red); }
.footer-contact li { color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; }
.footer-hours li {
    display: flex; justify-content: space-between; gap: 16px;
    color: rgba(255, 255, 255, 0.7); font-size: 0.95rem;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-hours li:last-child { border-bottom: 0; padding-bottom: 0; }
.footer-hours li span:last-child { color: #fff; font-weight: 500; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
}
.footer-bottom-inner {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(255, 255, 255, 0.5); font-size: 0.85rem; }

@media (max-width: 1024px) {
    .nav-menu { gap: 0; }
    .nav-menu a { padding: 8px 12px; font-size: 0.9rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-media { aspect-ratio: 16 / 10; max-height: 480px; }
}

@media (max-width: 768px) {
    .nav-menu, .nav-phone { display: none; }
    .nav-toggle { display: flex; }
    .nav-container { gap: 12px; }
    .services-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px 24px; }
    .hero { padding: 120px 0 60px; min-height: auto; }
    .hero-trust { gap: 14px 22px; }
    .footer-bottom-inner { justify-content: center; text-align: center; }
    .services-foot { padding: 32px 28px; flex-direction: column; align-items: flex-start; }
    .services-foot p { max-width: 100%; }
    .about-grid, .contact-grid { gap: 40px; }
    .about-media { aspect-ratio: 4 / 3; max-height: 360px; }
}

@media (max-width: 640px) {
    .container,
    .nav-container,
    .hero-inner { padding-left: 18px; padding-right: 18px; }
    .hero h1 { font-size: 1.95rem; line-height: 1.2; }
    .hero-lead { font-size: 1rem; margin-bottom: 28px; }
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .hero-ctas .btn { width: 100%; }
    .about-ctas .btn,
    .services-foot-ctas .btn { width: 100%; justify-content: center; }
    .about-ctas, .services-foot-ctas { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; }
    .service-body { padding: 24px; }
    .services-foot { padding: 28px 22px; border-radius: var(--radius-md); }
    .contact-form-wrap { padding: 24px 20px; }
}

#contact-form { max-width: 100%; overflow: hidden; }
#contact-form .g-recaptcha { transform-origin: left center; max-width: 100%; }

@media (max-width: 400px) {
    #contact-form .g-recaptcha { transform: scale(0.85); }
}
@media (max-width: 340px) {
    #contact-form .g-recaptcha { transform: scale(0.75); }
}

.service-card, .contact-block, .about-media, .about-content {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.service-card.in-view, .contact-block.in-view, .about-media.in-view, .about-content.in-view {
    opacity: 1;
    transform: translateY(0);
}
.service-card:nth-child(2) { transition-delay: 0.08s; }
.service-card:nth-child(3) { transition-delay: 0.16s; }
.service-card:nth-child(4) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
        transition-duration: 0.01ms;
    }
    html { scroll-behavior: auto; }
}
