* {
    box-sizing: border-box;
}

:root {
    --brand: #941633;
    --brand-dark: #681024;
    --ink: #19151a;
    --muted: #6d626a;
    --paper: #ffffff;
    --soft: #f8f2f4;
    --line: #ead9df;
    --shadow: 0 22px 70px rgba(67, 20, 35, 0.18);
    --radius: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.55;
}

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

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

.container {
    width: min(1160px, calc(100% - 36px));
    margin: 0 auto;
}

.top-strip {
    background: var(--brand-dark);
    color: #fff;
    font-size: 14px;
}

.strip-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.strip-inner a {
    font-weight: 700;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.navbar {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid var(--brand);
}

.brand strong {
    display: block;
    font-size: 24px;
    letter-spacing: -0.03em;
}

.brand small {
    display: block;
    color: var(--muted);
    margin-top: -2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    font-weight: 700;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--brand);
}

.quote-btn,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.quote-btn,
.btn.primary {
    background: var(--brand);
    color: #fff !important;
    box-shadow: 0 14px 35px rgba(148, 22, 51, 0.28);
}

.btn.secondary {
    background: #fff;
    color: var(--brand);
    border-color: var(--line);
}

.btn.light {
    background: #fff;
    color: var(--brand);
}

.btn.full {
    width: 100%;
    border: 0;
    font-size: 18px;
}

.quote-btn:hover,
.btn:hover {
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    background: var(--brand);
    color: #fff;
    border: 0;
    border-radius: 12px;
    width: 44px;
    height: 44px;
    font-size: 22px;
}

.hero {
    background:
        radial-gradient(circle at 80% 20%, rgba(148,22,51,.16), transparent 28%),
        linear-gradient(135deg, #fff 0%, #fff6f8 50%, #f7e8ed 100%);
    padding: 86px 0 74px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 54px;
    align-items: center;
}

.eyebrow {
    color: var(--brand);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 13px;
    margin: 0 0 12px;
}

h1, h2, h3 {
    line-height: 1.05;
    margin: 0 0 18px;
    letter-spacing: -0.045em;
}

h1 {
    font-size: clamp(42px, 7vw, 76px);
}

h2 {
    font-size: clamp(31px, 4vw, 48px);
}

h3 {
    font-size: 23px;
}

.hero-text,
.page-hero p,
.section p {
    color: var(--muted);
    font-size: 18px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-row span {
    background: #fff;
    border: 1px solid var(--line);
    color: var(--brand-dark);
    padding: 9px 13px;
    border-radius: 999px;
    font-weight: 800;
}

.hero-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 38px;
    box-shadow: var(--shadow);
    position: relative;
}

.hero-card:before {
    content: "";
    position: absolute;
    inset: -18px -18px auto auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--brand);
    opacity: .12;
}

.hero-card img {
    width: 190px;
    height: 190px;
    object-fit: contain;
    margin: 0 auto 24px;
    border-radius: 50%;
}

.hero-card h2 {
    font-size: 34px;
}

.hero-card a {
    color: var(--brand);
    font-weight: 900;
}

.service-strip {
    padding: 0 0 26px;
    margin-top: -38px;
    position: relative;
    z-index: 2;
}

.strip-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.strip-cards article,
.service-block,
.quote-mini,
.contact-card,
.form-side,
.quote-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 16px 45px rgba(67,20,35,0.09);
}

.strip-cards article {
    padding: 26px;
}

.strip-cards span,
.number {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    background: var(--soft);
    color: var(--brand);
    font-weight: 900;
    margin-bottom: 14px;
}

.section {
    padding: 74px 0;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 50px;
    align-items: center;
}

.check-list {
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.check-list li {
    margin: 12px 0;
    padding-left: 32px;
    position: relative;
    font-weight: 700;
}

.check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand);
    font-weight: 900;
}

.image-panel {
    min-height: 420px;
    background: linear-gradient(145deg, var(--brand), var(--brand-dark));
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 36px;
    position: relative;
    overflow: hidden;
}

.stat-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    max-width: 330px;
    position: relative;
    z-index: 2;
}

.stat-card strong {
    display: block;
    font-size: 28px;
    margin-bottom: 8px;
}

.stat-card span {
    color: var(--muted);
}

.panel-lines {
    position: absolute;
    right: 36px;
    bottom: 36px;
    width: 230px;
    display: grid;
    gap: 14px;
}

.panel-lines span {
    display: block;
    height: 28px;
    border-radius: 999px;
    background: rgba(255,255,255,.32);
}

.cta-band {
    background: var(--brand);
    color: #fff;
    padding: 60px 0;
}

.cta-band .eyebrow,
.cta-band p {
    color: #ffe8ee;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.page-hero {
    background: linear-gradient(135deg, var(--soft), #fff);
    padding: 74px 0;
    border-bottom: 1px solid var(--line);
}

.page-hero .container {
    max-width: 900px;
}

.service-list {
    display: grid;
    gap: 22px;
}

.service-block {
    padding: 34px;
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 34px;
    align-items: start;
}

.service-block ul {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
    font-weight: 700;
}

.service-block li {
    margin: 10px 0;
}

.quote-mini {
    padding: 42px;
    text-align: center;
    background: var(--soft);
}

.form-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
}

.quote-form {
    padding: 30px;
}

.form-section {
    border-bottom: 1px solid var(--line);
    padding-bottom: 26px;
    margin-bottom: 26px;
}

.form-section:last-of-type {
    border-bottom: 0;
    margin-bottom: 20px;
}

.form-section h2 {
    font-size: 28px;
    margin-bottom: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

label {
    display: grid;
    gap: 8px;
    font-weight: 800;
    color: var(--ink);
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #dec8d0;
    border-radius: 14px;
    min-height: 50px;
    padding: 13px 14px;
    font: inherit;
    color: var(--ink);
    background: #fff;
}

textarea {
    resize: vertical;
    min-height: 150px;
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(148,22,51,.15);
    border-color: var(--brand);
}

.wide-label {
    margin-top: 18px;
}

.wide-label small {
    color: var(--muted);
    font-weight: 500;
}

.hidden-field {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
}

.notice-box {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px;
}

.notice-box h2 {
    font-size: 24px;
}

.form-side {
    padding: 28px;
    position: sticky;
    top: 128px;
}

.form-side img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 50%;
    margin-bottom: 18px;
}

.form-side ol {
    padding-left: 20px;
    color: var(--muted);
    font-weight: 700;
}

.form-side li {
    margin: 10px 0;
}

.phone-card {
    display: block;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    margin-top: 22px;
}

.phone-card strong {
    display: block;
    color: var(--brand);
    font-size: 20px;
}

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

.contact-card {
    padding: 30px;
}

.contact-card a {
    color: var(--brand);
    font-weight: 900;
    font-size: 20px;
}

.success-page {
    min-height: 520px;
    display: flex;
    align-items: center;
}

.site-footer {
    background: #170c11;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .8fr .8fr;
    gap: 36px;
    padding: 56px 0;
}

.footer-logo {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
    margin-bottom: 14px;
}

.site-footer p,
.site-footer span {
    color: #d8c5cc;
}

.site-footer h3,
.site-footer h4 {
    color: #fff;
}

.site-footer a {
    display: block;
    color: #f5d8e0;
    margin: 9px 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 18px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 14px;
}

.footer-bottom a {
    display: inline;
    margin: 0;
    text-decoration: underline;
}

@media (max-width: 880px) {
    .strip-inner,
    .cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .navbar {
        min-height: 82px;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links {
        display: none;
        position: absolute;
        left: 18px;
        right: 18px;
        top: 122px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 20px;
        padding: 18px;
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;
    }

    .nav-links.open {
        display: flex;
    }

    .hero-grid,
    .two-col,
    .service-block,
    .form-wrap,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .strip-cards {
        grid-template-columns: 1fr;
    }

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

    .form-side {
        position: static;
    }

    h1 {
        font-size: 42px;
    }

    .hero {
        padding-top: 56px;
    }
}

@media (max-width: 520px) {
    .container {
        width: min(100% - 26px, 1160px);
    }

    .brand strong {
        font-size: 20px;
    }

    .brand img {
        width: 58px;
        height: 58px;
    }

    .hero-card,
    .quote-form,
    .service-block,
    .quote-mini,
    .contact-card {
        padding: 24px;
    }

    .btn,
    .quote-btn {
        width: 100%;
    }
}
