:root {
    --ink: #151515;
    --ink-soft: #343434;
    --muted: #6f6f6f;
    --line: #dededb;
    --surface: #ffffff;
    --surface-soft: #f6f5f2;
    --surface-warm: #eceae5;
    --accent: #d5272f;
    --accent-dark: #b91f27;
    --success: #16874a;
    --container: 1180px;
    --shadow-soft: 0 22px 55px rgba(20, 20, 20, .09);
    --radius-large: 26px;
    --radius-medium: 18px;
    --header-height: 82px;
}

.page-loader {
    display: none;
}

html.is-loading body > :not(.page-loader) {
    visibility: visible;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(213, 39, 47, .38);
    outline-offset: 4px;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
    font: inherit;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3,
strong {
    text-wrap: balance;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    padding: 112px 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    color: #fff;
    background: var(--ink);
    border-radius: 8px;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(16px);
    transition: height .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
    height: 72px;
    border-color: rgba(20, 20, 20, .08);
    box-shadow: 0 8px 28px rgba(20, 20, 20, .05);
}

.header-inner {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 24px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 7px;
}

.brand img {
    width: 62px;
    height: 50px;
}

.brand-copy {
    display: grid;
    line-height: 1.12;
}

.brand-copy strong {
    font-size: 18px;
    letter-spacing: -.02em;
}

.brand-copy small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .02em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
}

.main-nav a {
    position: relative;
    padding: 10px 0;
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 650;
}

.main-nav a::after {
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.admin-link {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 15px;
    gap: 8px;
    color: var(--ink);
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.admin-link:hover,
.admin-link:focus-visible {
    color: var(--accent);
    background: #fff;
    border-color: rgba(213, 39, 47, .35);
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 10px;
    cursor: pointer;
}

.menu-toggle i {
    font-size: 24px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 158px 0 58px;
    background: #f3f1ed;
}

.hero::before {
    position: absolute;
    top: 74px;
    right: -180px;
    width: 420px;
    height: 420px;
    content: "";
    border: 86px solid rgba(213, 39, 47, .045);
    border-radius: 50%;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(390px, .98fr);
    align-items: center;
    gap: clamp(50px, 7vw, 96px);
}

.eyebrow {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
    gap: 10px;
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow span {
    width: 26px;
    height: 2px;
    background: var(--accent);
}

.eyebrow-light {
    color: rgba(255, 255, 255, .68);
}

.hero h1 {
    max-width: 640px;
    margin-bottom: 26px;
    font-size: clamp(48px, 6.4vw, 82px);
    font-weight: 760;
    letter-spacing: -.06em;
    line-height: .98;
}

.hero h1 em {
    color: var(--accent);
    font-style: normal;
}

.hero-lead {
    max-width: 610px;
    margin-bottom: 32px;
    color: var(--muted);
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 20px;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 760;
    line-height: 1.2;
    transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    color: #fff;
    background: var(--accent);
    box-shadow: 0 13px 30px rgba(213, 39, 47, .2);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--accent-dark);
    box-shadow: 0 16px 34px rgba(213, 39, 47, .28);
}

.button-quiet {
    color: var(--ink);
    background: #fff;
    border-color: var(--line);
}

.button-quiet:hover,
.button-quiet:focus-visible {
    border-color: var(--ink);
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    margin: 28px 0 0;
    padding: 0;
    gap: 10px 24px;
    color: var(--ink-soft);
    font-size: 13px;
    font-weight: 650;
    list-style: none;
}

.hero-points li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-points i {
    color: var(--success);
}

.hero-visual {
    position: relative;
    padding: 0 0 24px 24px;
}

.hero-visual::before {
    position: absolute;
    z-index: -1;
    right: 24px;
    bottom: 0;
    left: 0;
    height: 78%;
    content: "";
    background: var(--ink);
    border-radius: var(--radius-large);
}

.hero-image {
    overflow: hidden;
    aspect-ratio: 4 / 4.35;
    background: #d9d9d7;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-soft);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-badge {
    position: absolute;
    z-index: 2;
    top: 20px;
    left: 0;
    display: flex;
    align-items: center;
    min-width: 238px;
    padding: 13px 16px;
    gap: 11px;
    color: #fff;
    background: var(--ink);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 12px;
    box-shadow: 0 14px 35px rgba(20, 20, 20, .18);
}

.location-badge i {
    color: var(--accent);
    font-size: 20px;
}

.location-badge span {
    display: grid;
    line-height: 1.3;
}

.location-badge strong {
    font-size: 13px;
}

.location-badge small {
    color: rgba(255, 255, 255, .58);
    font-size: 11px;
}

.hero-note {
    position: absolute;
    right: -22px;
    bottom: 54px;
    display: flex;
    align-items: center;
    width: min(330px, 80%);
    padding: 17px 18px;
    gap: 13px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(20, 20, 20, .08);
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(20, 20, 20, .16);
    backdrop-filter: blur(10px);
}

.note-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--accent);
    background: rgba(213, 39, 47, .09);
    border-radius: 10px;
    font-size: 20px;
}

.hero-note > span:last-child {
    display: grid;
    line-height: 1.35;
}

.hero-note strong {
    font-size: 14px;
}

.hero-note small {
    color: var(--muted);
    font-size: 12px;
}

.trust-row {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: .72fr 1fr 1fr;
    align-items: stretch;
    margin-top: 58px;
    background: #fff;
    border: 1px solid rgba(20, 20, 20, .08);
    border-radius: 16px;
    box-shadow: 0 12px 34px rgba(20, 20, 20, .055);
}

.trust-row > div {
    display: flex;
    align-items: center;
    min-height: 88px;
    padding: 20px 28px;
    gap: 14px;
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 650;
}

.trust-row > div + div {
    border-left: 1px solid var(--line);
}

.trust-row strong {
    color: var(--accent);
    font-size: 31px;
    line-height: 1;
}

.trust-row i {
    color: var(--accent);
    font-size: 22px;
}

.services-section {
    background: #fff;
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr minmax(320px, .55fr);
    align-items: end;
    margin-bottom: 54px;
    gap: 50px;
}

.section-heading .eyebrow {
    margin-bottom: 18px;
}

.section-heading h2,
.method-intro h2,
.about-copy h2,
.contact-main h2 {
    margin-bottom: 0;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 750;
    letter-spacing: -.05em;
    line-height: 1.05;
}

.section-heading > p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.service-card {
    position: relative;
    min-height: 284px;
    padding: 30px;
    background: #fff;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: color .22s ease, background .22s ease;
}

.service-card:hover {
    color: #fff;
    background: var(--ink);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 50px;
    color: var(--accent);
    background: rgba(213, 39, 47, .08);
    border-radius: 12px;
    font-size: 23px;
}

.service-number {
    position: absolute;
    top: 32px;
    right: 30px;
    color: #aaa;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
    letter-spacing: -.025em;
    line-height: 1.25;
}

.service-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
    transition: color .22s ease;
}

.service-card:hover p {
    color: rgba(255, 255, 255, .68);
}

.method-section {
    color: #fff;
    background: var(--ink);
}

.method-grid {
    display: grid;
    grid-template-columns: minmax(300px, .82fr) minmax(460px, 1.18fr);
    gap: clamp(70px, 10vw, 145px);
}

.method-intro h2 {
    margin-bottom: 24px;
}

.method-intro > p:not(.eyebrow) {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .63);
    font-size: 16px;
    line-height: 1.75;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .35);
    font-size: 14px;
    font-weight: 750;
}

.text-link i {
    color: var(--accent);
    transition: transform .2s ease;
}

.text-link:hover i,
.text-link:focus-visible i {
    transform: translateX(4px);
}

.steps {
    margin: 0;
    padding: 0;
    list-style: none;
}

.steps li {
    display: grid;
    grid-template-columns: 58px 1fr;
    padding: 26px 0 32px;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, .15);
}

.steps li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.steps li > span {
    color: var(--accent);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .12em;
}

.steps h3 {
    margin-bottom: 8px;
    font-size: 22px;
    letter-spacing: -.025em;
}

.steps p {
    max-width: 540px;
    margin: 0;
    color: rgba(255, 255, 255, .6);
    font-size: 15px;
    line-height: 1.7;
}

.about-section {
    background: var(--surface-soft);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(340px, .82fr) minmax(420px, 1.18fr);
    align-items: center;
    gap: clamp(60px, 9vw, 130px);
}

.about-mark {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 500px;
    background: var(--surface-warm);
    border-radius: var(--radius-large);
}

.about-mark img {
    position: relative;
    z-index: 1;
    width: min(88%, 440px);
    height: auto;
}

.about-location {
    position: absolute;
    z-index: 2;
    right: 20px;
    bottom: 20px;
    display: inline-flex;
    align-items: center;
    padding: 10px 13px;
    gap: 7px;
    color: #fff;
    background: var(--ink);
    border-radius: 9px;
    font-size: 12px;
    font-weight: 750;
}

.about-location i {
    color: var(--accent);
}

.about-copy h2 {
    max-width: 650px;
    margin-bottom: 26px;
}

.about-lead {
    max-width: 670px;
    margin-bottom: 34px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.about-list {
    display: grid;
    gap: 0;
}

.about-list > div {
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: start;
    padding: 18px 0;
    gap: 15px;
    border-top: 1px solid var(--line);
}

.about-list > div:last-child {
    border-bottom: 1px solid var(--line);
}

.about-list i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--accent);
    background: #fff;
    border-radius: 10px;
    font-size: 19px;
}

.about-list span {
    display: grid;
}

.about-list strong {
    font-size: 15px;
}

.about-list small {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.coverage-section {
    background: #fff;
}

.coverage-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
    align-items: stretch;
    gap: clamp(52px, 8vw, 110px);
}

.coverage-copy h2 {
    max-width: 720px;
    margin-bottom: 24px;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 750;
    letter-spacing: -.05em;
    line-height: 1.05;
}

.coverage-copy > p:not(.eyebrow) {
    max-width: 710px;
    margin-bottom: 36px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.coverage-areas {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
}

.coverage-areas span {
    position: relative;
    padding: 15px 12px 15px 23px;
    color: var(--ink-soft);
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    font-weight: 700;
}

.coverage-areas span:nth-child(odd) {
    border-right: 1px solid var(--line);
}

.coverage-areas span::before {
    position: absolute;
    top: 50%;
    left: 4px;
    width: 7px;
    height: 7px;
    content: "";
    background: var(--accent);
    border-radius: 50%;
    transform: translateY(-50%);
}

.coverage-panel {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
    min-height: 480px;
    overflow: hidden;
    padding: clamp(32px, 5vw, 54px);
    color: #fff;
    background: var(--ink);
    border-radius: var(--radius-large);
}

.coverage-panel::before {
    position: absolute;
    top: -95px;
    right: -95px;
    width: 260px;
    height: 260px;
    content: "";
    border: 58px solid rgba(213, 39, 47, .18);
    border-radius: 50%;
}

.coverage-panel-icon {
    position: absolute;
    top: 36px;
    left: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    color: var(--accent);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 13px;
    font-size: 25px;
}

.coverage-panel > p {
    margin-bottom: 9px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.coverage-panel h3 {
    margin-bottom: 9px;
    font-size: clamp(30px, 4vw, 44px);
    letter-spacing: -.045em;
    line-height: 1.08;
}

.coverage-panel > span {
    margin-bottom: 28px;
    color: rgba(255, 255, 255, .56);
    font-size: 14px;
}

.coverage-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.coverage-actions .button {
    width: auto;
}

.coverage-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .8);
    font-size: 13px;
    font-weight: 750;
}

.coverage-phone:hover,
.coverage-phone:focus-visible {
    color: #fff;
}

.faq-section {
    background: var(--surface-soft);
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(280px, .78fr) minmax(480px, 1.22fr);
    gap: clamp(64px, 9vw, 130px);
}

.faq-intro {
    align-self: start;
    position: sticky;
    top: 110px;
}

.faq-intro h2 {
    margin-bottom: 22px;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 750;
    letter-spacing: -.05em;
    line-height: 1.05;
}

.faq-intro > p:not(.eyebrow) {
    max-width: 430px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    display: grid;
    grid-template-columns: 1fr 34px;
    align-items: center;
    min-height: 82px;
    padding: 17px 0;
    gap: 22px;
    font-size: 17px;
    font-weight: 750;
    line-height: 1.4;
    list-style: none;
    cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: var(--accent);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 9px;
    font-size: 16px;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.faq-list details[open] summary i {
    color: #fff;
    background: var(--accent);
    border-color: var(--accent);
    transform: rotate(45deg);
}

.faq-list details > p {
    max-width: 720px;
    margin: -4px 54px 27px 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.contact-section {
    padding-bottom: 84px;
    background: #fff;
}

.contact-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    color: #fff;
    background: var(--accent);
    border-radius: var(--radius-large);
    box-shadow: 0 24px 60px rgba(213, 39, 47, .17);
}

.contact-main {
    padding: clamp(40px, 7vw, 78px);
}

.contact-main .eyebrow span {
    background: #fff;
}

.contact-main h2 {
    max-width: 560px;
    margin-bottom: 22px;
}

.contact-main > p:not(.eyebrow) {
    max-width: 500px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .78);
    font-size: 17px;
}

.button-white {
    color: var(--ink);
    background: #fff;
}

.button-white:hover,
.button-white:focus-visible {
    color: var(--accent);
    box-shadow: 0 14px 34px rgba(20, 20, 20, .16);
}

.contact-details {
    display: grid;
    margin: 0;
    padding: clamp(34px, 6vw, 68px);
    background: rgba(20, 20, 20, .14);
    font-style: normal;
}

.contact-details > a,
.contact-details > div {
    display: grid;
    grid-template-columns: 40px 1fr;
    align-items: center;
    padding: 15px 0;
    gap: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.contact-details > :first-child {
    border-top: 1px solid rgba(255, 255, 255, .2);
}

.contact-details i {
    color: #fff;
    font-size: 21px;
}

.contact-details span {
    display: grid;
    min-width: 0;
}

.contact-details small {
    color: rgba(255, 255, 255, .62);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.contact-details strong {
    overflow-wrap: anywhere;
    font-size: 14px;
}

.contact-details a:hover strong,
.contact-details a:focus-visible strong {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.site-footer {
    color: #fff;
    background: #0b0b0b;
}

.footer-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 150px;
    gap: 30px;
}

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

.footer-brand img {
    width: 62px;
    height: 62px;
    filter: invert(1);
}

.footer-brand span {
    display: grid;
    line-height: 1.4;
}

.footer-brand strong {
    font-size: 15px;
}

.footer-brand small {
    color: rgba(255, 255, 255, .5);
    font-size: 12px;
}

.social-links {
    display: flex;
    gap: 9px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 10px;
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
    color: #fff;
    background: var(--accent);
    border-color: var(--accent);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    gap: 20px;
    color: rgba(255, 255, 255, .48);
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 12px;
}

.footer-bottom p {
    margin: 0;
}

.footer-legal {
    display: grid;
    gap: 3px;
}

.footer-credit {
    color: rgba(255, 255, 255, .62);
}

.footer-credit strong {
    color: rgba(255, 255, 255, .88);
    font-weight: 750;
}

.footer-bottom a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
    color: #fff;
}

.whatsapp-float {
    position: fixed;
    z-index: 80;
    right: 22px;
    bottom: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    color: #fff;
    background: #1faa59;
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(20, 20, 20, .22);
    font-size: 25px;
    transition: transform .2s ease, background .2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    background: #168f49;
    transform: translateY(-3px);
}

.reveal {
    opacity: 1;
    transform: none;
}

.error-page {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    width: min(calc(100% - 40px), 680px);
    min-height: 100svh;
    margin-inline: auto;
    padding: 60px 0;
}

.error-page > img {
    width: 160px;
    height: 160px;
    margin-bottom: 22px;
}

.error-page h1 {
    margin-bottom: 14px;
    font-size: clamp(42px, 8vw, 72px);
    letter-spacing: -.055em;
    line-height: 1;
}

.error-page > p:not(.eyebrow) {
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 17px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1040px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(340px, .82fr);
        gap: 48px;
    }

    .hero h1 {
        font-size: clamp(48px, 6.4vw, 68px);
    }

    .hero-note {
        right: -8px;
    }

    .service-card {
        padding: 26px;
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 72px;
    }

    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .section {
        padding: 86px 0;
    }

    .brand {
        order: 1;
    }

    .brand-copy {
        display: none;
    }

    .admin-link {
        order: 2;
        margin-left: auto;
    }

    .menu-toggle {
        display: inline-flex;
        order: 3;
        margin-left: auto;
    }

    .main-nav {
        position: fixed;
        z-index: 110;
        top: var(--header-height);
        right: 16px;
        left: 16px;
        display: grid;
        order: 4;
        padding: 14px;
        gap: 0;
        visibility: hidden;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 14px;
        box-shadow: var(--shadow-soft);
        opacity: 0;
        transform: translateY(-10px);
        transition: visibility .2s ease, opacity .2s ease, transform .2s ease;
    }

    .main-nav.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .main-nav a {
        padding: 14px 12px;
        border-bottom: 1px solid var(--line);
    }

    .main-nav a:last-child {
        border-bottom: 0;
    }

    .main-nav a::after {
        display: none;
    }

    .hero {
        padding-top: 124px;
    }

    .hero-grid,
    .method-grid,
    .about-grid,
    .coverage-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-visual {
        width: min(100%, 620px);
        margin-inline: auto;
    }

    .hero-image {
        aspect-ratio: 5 / 4;
    }

    .trust-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .trust-row > div {
        align-content: center;
        align-items: flex-start;
        flex-direction: column;
        padding: 20px;
        gap: 7px;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section-heading > p {
        max-width: 620px;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .method-grid {
        gap: 54px;
    }

    .method-intro {
        max-width: 670px;
    }

    .about-grid {
        gap: 52px;
    }

    .about-mark {
        min-height: 390px;
    }

    .about-mark img {
        width: min(70%, 420px);
    }

    .coverage-grid,
    .faq-grid {
        gap: 50px;
    }

    .coverage-panel {
        min-height: 420px;
    }

    .faq-intro {
        position: static;
        max-width: 670px;
    }

    .contact-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .section {
        padding: 68px 0;
    }

    .header-inner {
        gap: 8px;
    }

    .brand img {
        width: 54px;
        height: 44px;
    }

    .admin-link {
        min-height: 40px;
        padding: 0 11px;
        font-size: 12px;
    }

    .admin-link span {
        display: none;
    }

    .admin-link i {
        font-size: 18px;
    }

    .hero {
        padding: 111px 0 42px;
    }

    .hero::before {
        display: none;
    }

    .eyebrow {
        margin-bottom: 17px;
        font-size: 10px;
    }

    .hero h1 {
        margin-bottom: 22px;
        font-size: clamp(43px, 13vw, 58px);
    }

    .hero-lead {
        font-size: 16px;
        line-height: 1.6;
    }

    .hero-actions {
        display: grid;
    }

    .button {
        width: 100%;
    }

    .hero-points {
        display: grid;
    }

    .hero-visual {
        padding: 0 0 16px 12px;
    }

    .hero-image {
        aspect-ratio: 4 / 4.15;
        border-radius: 20px;
    }

    .hero-visual::before {
        right: 16px;
        border-radius: 20px;
    }

    .hero-note {
        right: -2px;
        bottom: 34px;
        width: min(290px, 88%);
        padding: 13px;
    }

    .location-badge {
        top: 14px;
        left: 0;
        min-width: 214px;
        padding: 10px 12px;
    }

    .trust-row {
        grid-template-columns: 1fr;
        margin-top: 42px;
    }

    .trust-row > div {
        flex-direction: row;
        align-items: center;
        min-height: 70px;
        padding: 16px 19px;
        gap: 12px;
    }

    .trust-row > div + div {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .trust-row strong {
        min-width: 42px;
        font-size: 27px;
    }

    .section-heading {
        margin-bottom: 36px;
    }

    .section-heading h2,
    .method-intro h2,
    .about-copy h2,
    .contact-main h2 {
        font-size: clamp(34px, 10vw, 44px);
    }

    .section-heading > p {
        font-size: 15px;
    }

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

    .service-card {
        min-height: 238px;
        padding: 24px;
    }

    .service-icon {
        margin-bottom: 34px;
    }

    .steps li {
        grid-template-columns: 42px 1fr;
        gap: 12px;
    }

    .steps h3 {
        font-size: 19px;
    }

    .about-mark {
        min-height: 300px;
        border-radius: 20px;
    }

    .about-mark img {
        width: min(84%, 360px);
    }

    .about-location {
        right: 14px;
        bottom: 14px;
    }

    .about-lead {
        font-size: 15px;
    }

    .coverage-copy h2,
    .faq-intro h2 {
        font-size: clamp(34px, 10vw, 44px);
    }

    .coverage-copy > p:not(.eyebrow) {
        font-size: 15px;
    }

    .coverage-areas {
        grid-template-columns: 1fr;
    }

    .coverage-areas span:nth-child(odd) {
        border-right: 0;
    }

    .coverage-panel {
        min-height: 400px;
        padding: 30px 24px;
        border-radius: 20px;
    }

    .coverage-panel-icon {
        top: 24px;
        left: 24px;
        width: 50px;
        height: 50px;
    }

    .coverage-actions {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
    }

    .coverage-actions .button {
        width: 100%;
    }

    .coverage-phone {
        justify-content: center;
    }

    .faq-list summary {
        min-height: 74px;
        font-size: 15px;
    }

    .faq-list details > p {
        margin-right: 0;
        font-size: 14px;
    }

    .contact-section {
        padding-bottom: 56px;
    }

    .contact-shell {
        border-radius: 20px;
    }

    .contact-main {
        padding: 34px 24px 40px;
    }

    .contact-main > p:not(.eyebrow) {
        font-size: 15px;
    }

    .contact-details {
        padding: 28px 24px 34px;
    }

    .contact-details strong {
        font-size: 13px;
    }

    .footer-main {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        min-height: 180px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 20px 0;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 52px;
        height: 52px;
    }
}
