:root {
    --ink: #172331;
    --muted: #596777;
    --line: #d8dee6;
    --paper: #f7f8f8;
    --white: #ffffff;
    --navy: #23577f;
    --navy-deep: #153a58;
    --gold: #b1843a;
    --green: #1f6f62;
    --shadow: 0 22px 60px rgba(18, 33, 48, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 78px;
    padding: 12px clamp(20px, 5vw, 72px);
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(216, 222, 230, 0.9);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--navy-deep);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.38rem, 2.2vw, 1.9rem);
    font-weight: 700;
    letter-spacing: 0;
    max-width: 560px;
}

.brand img {
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: 6px;
}

.brand span {
    display: grid;
    gap: 1px;
    line-height: 1.05;
}

.brand small {
    display: block;
    color: var(--gold);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: clamp(16px, 3vw, 32px);
}

nav {
    display: flex;
    align-items: center;
    gap: clamp(14px, 3vw, 34px);
    color: var(--muted);
    font-size: 0.96rem;
    font-weight: 700;
}

nav a {
    text-decoration: none;
}

nav a:hover {
    color: var(--navy);
}

.hero {
    min-height: calc(100vh - 78px);
    display: flex;
    align-items: center;
    padding: clamp(34px, 6vw, 72px) clamp(20px, 5vw, 72px);
    color: var(--white);
    background:
        linear-gradient(110deg, rgba(21, 58, 88, 0.98), rgba(23, 53, 76, 0.9)),
        url("rrlogo_png.png") center right / min(62vw, 680px) no-repeat;
}

.hero-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
    align-items: start;
    gap: clamp(28px, 5vw, 64px);
}

.hero-copy {
    max-width: 720px;
}

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

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1 {
    margin: 0;
    max-width: 760px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2.45rem, 5.2vw, 4.85rem);
    line-height: 1.02;
    letter-spacing: 0;
}

.hero-text {
    max-width: 620px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.05rem, 1.8vw, 1.28rem);
    font-weight: 700;
}

.hero-text + .hero-text {
    margin-top: 16px;
    font-size: clamp(1rem, 1.45vw, 1.14rem);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 19px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button.primary {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.button.primary:hover {
    background: #a47730;
}

.button.secondary {
    border-color: rgba(255, 255, 255, 0.38);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.hero-points {
    display: grid;
    gap: 10px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 800;
}

.hero-points li {
    position: relative;
    padding-left: 28px;
}

.hero-points li::before {
    position: absolute;
    top: 0.68em;
    left: 0;
    width: 11px;
    height: 11px;
    content: "";
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(177, 132, 58, 0.18);
}

.service-area {
    max-width: 650px;
    margin: 0 0 22px;
    padding: 14px 16px;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 5px solid var(--gold);
    border-radius: 8px;
    font-weight: 800;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
    border-bottom: 1px solid var(--line);
}

.trust-strip div {
    min-height: 120px;
    padding: 28px clamp(20px, 5vw, 44px);
    background: var(--white);
}

.trust-strip strong {
    display: block;
    color: var(--navy-deep);
    font-size: 1.04rem;
    margin-bottom: 4px;
}

.trust-strip span {
    color: var(--muted);
}

.section {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(64px, 9vw, 108px) 0;
}

.split {
    display: grid;
    grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1fr);
    gap: clamp(32px, 6vw, 78px);
    align-items: start;
}

h2 {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    line-height: 1.1;
    letter-spacing: 0;
}

h3 {
    margin: 0 0 8px;
    color: var(--navy-deep);
    font-size: 1.16rem;
}

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

.service-list article {
    padding: 26px;
    background: var(--white);
    border: 1px solid var(--line);
    border-left: 5px solid var(--gold);
    border-radius: 8px;
}

.service-list p,
.about-panel p,
.contact-intro p,
.section-intro p,
.testimonial-card p,
.review-note {
    margin: 0;
    color: var(--muted);
}

.service-list article p + p,
.about-panel p + p {
    margin-top: 16px;
}

.testimonials {
    width: 100%;
    background: #eef2f5;
    border-bottom: 1px solid var(--line);
}

.section-intro,
.testimonial-grid,
.review-note {
    width: min(1180px, calc(100% - 40px));
    margin-right: auto;
    margin-left: auto;
}

.section-intro {
    margin-bottom: 30px;
}

.section-intro h2 {
    max-width: 780px;
    margin-bottom: 14px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.testimonial-card {
    display: grid;
    align-content: start;
    gap: 12px;
    min-height: 190px;
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 16px 34px rgba(18, 33, 48, 0.08);
}

.stars {
    color: var(--gold);
    font-size: 0.95rem;
    line-height: 1;
}

.testimonial-card blockquote {
    margin: 0;
    color: var(--navy-deep);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.25;
}

.testimonial-card cite {
    color: var(--muted);
    font-size: 0.86rem;
    font-style: normal;
    font-weight: 800;
}

.review-note {
    margin-top: 20px;
    font-size: 0.9rem;
}

.about {
    width: 100%;
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.about-panel {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, 390px) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 58px);
    align-items: start;
}

.about-photo {
    margin: 0;
}

.about-photo img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: 52% 25%;
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(18, 33, 48, 0.18);
}

.about-copy {
    padding-top: 6px;
}

.about-panel h2,
.contact-intro h2 {
    margin-bottom: 18px;
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(240px, 0.68fr) minmax(0, 1fr);
    gap: clamp(32px, 6vw, 72px);
    align-items: start;
}

.contact-form {
    padding: clamp(24px, 4vw, 38px);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(18, 33, 48, 0.09);
}

.lead-form {
    position: relative;
    color: var(--ink);
    border-top: 6px solid var(--gold);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.form-heading {
    margin-bottom: 22px;
}

.form-heading h2 {
    margin-bottom: 10px;
    color: var(--navy-deep);
    font-size: clamp(1.65rem, 2.8vw, 2.25rem);
}

.form-phone {
    display: grid;
    gap: 2px;
    margin: 0 0 16px;
    padding: 14px 16px;
    color: var(--white);
    background: var(--navy-deep);
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
}

.form-phone span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
}

.form-phone strong {
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1.1;
}

.form-phone:hover {
    background: var(--navy);
}

.form-heading p:last-child {
    margin: 0;
    color: var(--muted);
}

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

label {
    display: block;
    margin-bottom: 18px;
    color: var(--ink);
    font-weight: 800;
}

label span {
    display: block;
    margin-bottom: 7px;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 13px;
    color: var(--ink);
    background: #fbfcfd;
    border: 1px solid #c8d0da;
    border-radius: 6px;
    font: inherit;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(35, 87, 127, 0.18);
    border-color: var(--navy);
}

.hidden-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.notice {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 6px;
    font-weight: 700;
}

.notice p {
    margin: 0;
}

.notice.error {
    color: #8a1f1f;
    background: #fff0ef;
    border: 1px solid #efc4c0;
}

.notice.success {
    color: #115b4d;
    background: #eaf7f3;
    border: 1px solid #b7ded4;
}

.form-note {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.text-phone {
    color: var(--navy-deep);
    font-weight: 900;
    white-space: nowrap;
}

.form-button {
    width: 100%;
    border: 0;
    font-size: 1rem;
}

.contact-button {
    align-self: center;
    justify-self: end;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 28px clamp(20px, 5vw, 72px);
    color: rgba(255, 255, 255, 0.78);
    background: #142432;
}

.site-footer p {
    margin: 0;
}

.site-footer a {
    color: var(--white);
    font-weight: 800;
    text-decoration: none;
}

.mobile-call-bar {
    display: none;
}

@media (max-width: 850px) {
    .site-header {
        position: static;
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
        min-height: 0;
    }

    .brand {
        max-width: none;
    }

    .header-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    nav {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        font-size: 0.9rem;
    }

    nav a {
        min-height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 9px 10px;
        background: #f4f6f8;
        border: 1px solid var(--line);
        border-radius: 6px;
        text-align: center;
    }

    .hero {
        min-height: auto;
    }

    .hero-inner,
    .split,
    .about-panel,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .about-photo {
        max-width: 420px;
    }

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

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

    .contact-button {
        justify-self: stretch;
    }
}

@media (max-width: 620px) {
    body {
        padding-bottom: 76px;
    }

    .brand {
        gap: 10px;
        font-size: 1.24rem;
    }

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

    .brand small {
        font-size: 0.64rem;
    }

    .field-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-actions,
    .button {
        width: 100%;
    }

    .site-footer {
        flex-direction: column;
    }

    .about-photo {
        max-width: none;
    }

    .about-photo img {
        aspect-ratio: 1 / 1;
    }

    .mobile-call-bar {
        position: fixed;
        right: 12px;
        bottom: 12px;
        left: 12px;
        z-index: 40;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        min-height: 54px;
        padding: 13px 16px;
        color: var(--white);
        background: var(--gold);
        border-radius: 8px;
        box-shadow: 0 16px 34px rgba(18, 33, 48, 0.28);
        font-weight: 900;
        text-align: center;
        text-decoration: none;
    }

    .mobile-call-bar strong {
        white-space: nowrap;
    }
}
