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

:root {
    --bg: #f4f6f8;
    --bg-soft: #edf1f5;
    --surface: #ffffff;
    --surface-strong: #f7f9fc;
    --ink: #15202b;
    --ink-soft: #4d5b69;
    --ink-muted: #6f7f90;
    --brand: #d67a2a;
    --brand-strong: #b85e14;
    --brand-soft: #f2bc84;
    --steel: #1c2d3d;
    --line: #d7dfe7;
    --line-strong: #c4d0dc;
    --success: #2f8a50;
    --shadow-sm: 0 12px 30px rgba(20, 31, 42, 0.08);
    --shadow-md: 0 20px 45px rgba(17, 28, 39, 0.14);
    --shadow-lg: 0 28px 64px rgba(13, 24, 34, 0.2);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 26px;
    --radius-pill: 999px;
    --container: 1180px;
    --nav-height: 86px;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background:
        radial-gradient(1200px 560px at 8% -12%, rgba(214, 122, 42, 0.16), transparent 62%),
        radial-gradient(900px 420px at 98% 8%, rgba(28, 45, 61, 0.16), transparent 55%),
        linear-gradient(180deg, #f5f8fa 0%, #eef3f7 100%);
    line-height: 1.65;
    overflow-x: hidden;
}

a {
    color: inherit;
}

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

section {
    position: relative;
}

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

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 52px;
}

.section-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.9rem, 3vw, 2.75rem);
    font-weight: 800;
    letter-spacing: 0;
    color: var(--steel);
    margin-bottom: 12px;
    text-transform: none;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 94px;
    height: 5px;
    margin: 14px auto 0;
    border-radius: var(--radius-pill);
    background: linear-gradient(90deg, var(--brand), #f3bb7f);
}

.section-header p {
    color: var(--ink-soft);
    font-size: 1.05rem;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(244, 247, 251, 0.9);
    backdrop-filter: blur(12px);
    transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.navbar.scrolled {
    background: rgba(248, 251, 255, 0.96);
    border-color: rgba(195, 208, 220, 0.75);
    box-shadow: 0 14px 38px rgba(19, 31, 44, 0.14);
}

.nav-wrapper {
    min-height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo h1,
.logo-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    font-weight: 800;
    letter-spacing: 0;
    color: var(--steel);
    text-transform: none;
    margin: 0;
}

.logo span {
    color: var(--brand-strong);
    text-shadow: 0 8px 24px rgba(214, 122, 42, 0.25);
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-menu a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    color: var(--ink-soft);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-menu a:hover {
    color: var(--steel);
    background: rgba(28, 45, 61, 0.08);
    transform: translateY(-1px);
}

.nav-call {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    min-width: 132px;
    text-decoration: none;
    color: var(--steel);
    line-height: 1.12;
}

.nav-call span {
    color: var(--ink-muted);
    font-size: 0.72rem;
    font-weight: 600;
}

.nav-call strong {
    color: var(--brand-strong);
    font-size: 1rem;
}

.nav-call:hover strong {
    color: var(--steel);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    border-radius: var(--radius-pill);
    background: var(--steel);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
    min-height: 92svh;
    display: flex;
    align-items: center;
    isolation: isolate;
    padding: calc(var(--nav-height) + 58px) 0 78px;
}

.home-hero {
    min-height: 78svh;
    padding-bottom: 68px;
}

.home-hero::before {
    background: linear-gradient(100deg, rgba(8, 16, 25, 0.86) 0%, rgba(10, 20, 31, 0.7) 55%, rgba(12, 22, 34, 0.3) 100%);
}

.home-hero .hero-overlay {
    display: none;
}

.hero-background,
.hero-image,
.hero-bg-image {
    position: absolute;
    inset: 0;
}

.hero-image,
.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.9) contrast(1.05);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(102deg, rgba(8, 16, 25, 0.82) 0%, rgba(10, 20, 31, 0.72) 48%, rgba(12, 22, 34, 0.35) 100%),
        radial-gradient(600px 300px at 15% 18%, rgba(214, 122, 42, 0.22), transparent 72%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(circle at 32% 34%, black 22%, transparent 85%);
    opacity: 0.45;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    color: #f6f9fc;
    animation: riseIn 0.8s ease-out;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    margin-bottom: 18px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 700;
}

.hero-kicker-seasonal {
    border-color: rgba(255, 190, 115, 0.56);
    background: rgba(184, 94, 20, 0.78);
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.15rem, 5.3vw, 4.2rem);
    font-weight: 800;
    text-transform: none;
    line-height: 1.08;
    letter-spacing: 0;
    margin-bottom: 16px;
    text-wrap: balance;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.28rem);
    color: rgba(236, 243, 249, 0.92);
    max-width: 760px;
    margin: 0 0 28px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-contact-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    max-width: 860px;
    margin: 0 0 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 18px;
    background: rgba(7, 15, 24, 0.42);
    backdrop-filter: blur(10px);
}

.hero-contact-panel a {
    display: grid;
    gap: 2px;
    min-height: 82px;
    padding: 16px 18px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.07);
    transition: background 0.2s ease;
}

.hero-contact-panel a:hover {
    background: rgba(255, 255, 255, 0.13);
}

.hero-contact-panel span {
    color: rgba(232, 241, 249, 0.76);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-contact-panel strong {
    color: #ffffff;
    font-size: clamp(0.95rem, 1.4vw, 1.08rem);
    line-height: 1.25;
}

.btn {
    appearance: none;
    border: none;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
    box-shadow: 0 14px 30px rgba(184, 94, 20, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(184, 94, 20, 0.42);
}

.btn-secondary {
    color: #f4f8fc;
    border: 1px solid rgba(232, 240, 247, 0.58);
    background: rgba(10, 19, 29, 0.28);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(8, 16, 25, 0.55);
    border-color: rgba(255, 255, 255, 0.8);
}

.btn-light {
    color: var(--steel);
    background: #ffffff;
    border: 1px solid rgba(197, 208, 218, 0.9);
    box-shadow: 0 12px 26px rgba(20, 31, 42, 0.08);
}

.btn-light:hover {
    transform: translateY(-2px);
    border-color: rgba(214, 122, 42, 0.75);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 760px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(246, 250, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(7px);
}

.feature-item .feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(214, 122, 42, 0.9);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
}

.feature-item span:last-child {
    font-size: 0.9rem;
    font-weight: 500;
}

.services,
.about,
.certificates,
.contact,
.map-section,
.footer,
.vulcanization,
.patronage,
.blog-preview,
.blog-listing,
.trust-strip,
.reviews-section {
    padding: clamp(78px, 9vw, 108px) 0;
}

.trust-strip {
    margin-top: -36px;
    padding: 0 0 clamp(54px, 7vw, 78px);
    z-index: 5;
}

.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(196, 208, 220, 0.74);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-md);
}

.trust-strip-item {
    padding: 24px 22px;
    border-right: 1px solid rgba(196, 208, 220, 0.68);
}

.trust-strip-item:last-child {
    border-right: 0;
}

.trust-strip-item span,
.quality-label {
    display: block;
    margin-bottom: 6px;
    color: var(--brand-strong);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.trust-strip-item strong {
    display: block;
    margin-bottom: 6px;
    color: var(--steel);
    font-size: clamp(1.1rem, 1.8vw, 1.45rem);
    line-height: 1.18;
}

.trust-strip-item p {
    color: var(--ink-soft);
    font-size: 0.92rem;
    line-height: 1.5;
}

.trust-strip-cta {
    background: linear-gradient(135deg, rgba(214, 122, 42, 0.12), rgba(255, 255, 255, 0.96));
}

.services {
    background: linear-gradient(180deg, rgba(249, 251, 253, 0.96) 0%, rgba(241, 245, 249, 0.96) 100%);
}

.service-practical {
    padding: clamp(64px, 8vw, 92px) 0;
    background: #ffffff;
}

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

.practical-item {
    min-height: 210px;
    padding: 26px 24px;
    border: 1px solid rgba(196, 208, 220, 0.82);
    border-radius: 8px;
    background: #f7fafc;
}

.practical-item > span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--brand-strong);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.practical-item h3 {
    margin-bottom: 10px;
    color: var(--steel);
    font-size: 1.28rem;
    line-height: 1.25;
}

.practical-item p,
.practical-note {
    color: var(--ink-soft);
}

.practical-note {
    margin: 22px 0 0;
    padding: 16px 18px;
    border-left: 4px solid var(--brand);
    background: rgba(214, 122, 42, 0.08);
    font-weight: 600;
}

.practical-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

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

.service-card,
.certificate-card,
.service-item,
.contact-form,
.map-info-card,
.its-logo,
.faq-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 250, 253, 0.96) 100%);
    border: 1px solid rgba(196, 208, 220, 0.68);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.service-card,
.certificate-card {
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card::before,
.certificate-card::before,
.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(214, 122, 42, 0.96), rgba(243, 191, 127, 0.9));
}

.service-card:hover,
.certificate-card:hover,
.service-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(182, 198, 214, 0.92);
}

.service-icon,
.certificate-icon {
    font-size: 2.35rem;
    margin-bottom: 14px;
}

.service-card h3,
.certificate-card h3,
.service-item h4,
.about-content h2,
.patronage-text h2,
.vulcanization-text h3,
.footer-section h3,
.footer-section h4 {
    font-family: 'Inter', sans-serif;
    color: var(--steel);
    letter-spacing: 0;
    text-transform: none;
}

.service-card h3,
.certificate-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-card p,
.certificate-card p,
.service-item p {
    color: var(--ink-soft);
    font-size: 0.96rem;
}

.vulcanization {
    background:
        radial-gradient(580px 320px at 12% 18%, rgba(214, 122, 42, 0.14), transparent 70%),
        linear-gradient(180deg, #eaf0f6 0%, #e3ebf2 100%);
}

.vulcanization-content,
.about-wrapper,
.contact-wrapper,
.patronage-content {
    display: grid;
    gap: 24px;
}

.vulcanization-content,
.about-wrapper,
.contact-wrapper {
    grid-template-columns: 1.05fr 1fr;
}

.vulcanization-text,
.about-content {
    padding: 6px 2px;
}

.vulcanization-text h3 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 14px;
}

.vulcanization-text p,
.about-content p,
.patronage-text p,
.contact-item p,
.map-info-card p {
    color: var(--ink-soft);
}

.vulcanization-text p,
.about-content p,
.patronage-text p {
    margin-bottom: 14px;
}

.local-lead {
    color: var(--steel);
    font-weight: 600;
    padding: 10px 14px;
    border-left: 4px solid var(--brand);
    background: rgba(255, 255, 255, 0.56);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.vulcanization-benefits {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 12px;
    border: 1px solid rgba(197, 208, 218, 0.8);
    background: rgba(255, 255, 255, 0.75);
}

.benefit-icon {
    color: var(--brand-strong);
}

.vulcanization-cta {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vulcanization-cta .btn {
    flex: 1 1 190px;
}

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

.vulcanization-services .service-grid + .service-grid {
    margin-top: 14px;
}

.service-item {
    position: relative;
    padding: 22px 18px;
    text-align: left;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.service-item .service-icon {
    margin-bottom: 8px;
    color: var(--brand-strong);
}

.service-item h4 {
    font-size: 1.26rem;
    margin-bottom: 7px;
}

.about {
    background: linear-gradient(180deg, #f6f9fc 0%, #f0f5fa 100%);
}

.about-content h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 14px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.stat-item {
    padding: 16px 10px;
    border-radius: 14px;
    text-align: center;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(196, 208, 220, 0.76);
}

.stat-item h3 {
    font-family: 'Inter', sans-serif;
    color: var(--brand-strong);
    font-size: clamp(1.9rem, 2.8vw, 2.5rem);
    line-height: 1;
}

.stat-item p {
    margin-top: 6px;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.about-image {
    align-self: center;
}

.about-img,
.about-image-img,
.map-wrapper,
.map-wrapper iframe {
    border-radius: var(--radius-lg);
}

.about-img,
.about-image-img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(191, 204, 216, 0.74);
}

.patronage {
    background: linear-gradient(180deg, #ecf2f7 0%, #e7edf4 100%);
}

.patronage-content {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
}

.quality-panel {
    min-height: 280px;
    padding: 28px;
    border: 1px solid rgba(196, 208, 220, 0.68);
    border-radius: var(--radius-md);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 253, 0.96));
    box-shadow: var(--shadow-sm);
}

.quality-list {
    display: grid;
    gap: 12px;
}

.quality-list div {
    display: grid;
    gap: 4px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(196, 208, 220, 0.72);
}

.quality-list div:last-child {
    border-bottom: 0;
}

.quality-list strong {
    color: var(--steel);
    font-size: 1.12rem;
}

.quality-list span {
    color: var(--ink-soft);
    line-height: 1.55;
}

.patronage-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 12px;
}

.patronage-benefits {
    display: grid;
    gap: 8px;
    margin-top: 10px;
}

.certificates {
    background: linear-gradient(180deg, #f5f9fd 0%, #edf3f8 100%);
}

.blog-preview,
.blog-listing {
    background: linear-gradient(180deg, #f6f9fc 0%, #edf3f8 100%);
}

.services-home {
    padding-top: clamp(62px, 7vw, 88px);
}

.blog-preview--articles {
    background: #ffffff;
}

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

.blog-hero,
.article-header {
    padding: calc(var(--nav-height) + 70px) 0 72px;
    color: #f6f9fc;
    background:
        linear-gradient(105deg, rgba(12, 23, 34, 0.95) 0%, rgba(20, 35, 50, 0.9) 58%, rgba(42, 62, 81, 0.78) 100%),
        radial-gradient(620px 320px at 18% 20%, rgba(214, 122, 42, 0.28), transparent 72%);
}

.blog-hero-content,
.article-header .container {
    max-width: 860px;
}

.eyebrow,
.blog-meta,
.breadcrumb-link {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow,
.breadcrumb-link {
    color: var(--brand-soft);
}

.blog-hero h1,
.article-header h1 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.1rem, 4.6vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    margin: 10px 0 16px;
    text-transform: none;
    letter-spacing: 0;
}

.blog-hero p,
.article-lead {
    color: rgba(236, 243, 249, 0.9);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.blog-card {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(196, 208, 220, 0.72);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(182, 198, 214, 0.95);
}

.blog-card-image-link {
    display: block;
    overflow: hidden;
}

.blog-card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.28s ease;
}

.blog-card:hover .blog-card-image {
    transform: scale(1.035);
}

.blog-card-body {
    padding: 22px 20px 24px;
}

.blog-meta {
    color: var(--brand-strong);
    margin-bottom: 8px;
}

.blog-card h2,
.blog-card h3,
.article-content h2,
.article-sidebar h2,
.article-cta h2 {
    font-family: 'Inter', sans-serif;
    color: var(--steel);
    letter-spacing: 0;
    text-transform: none;
}

.blog-card h2,
.blog-card h3 {
    font-size: 1.42rem;
    line-height: 1.22;
    margin-bottom: 10px;
}

.blog-card h2 a,
.blog-card h3 a {
    text-decoration: none;
}

.blog-card p {
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.text-link {
    display: inline-flex;
    margin-top: 14px;
    color: var(--brand-strong);
    font-weight: 700;
    text-decoration: none;
}

.text-link:hover {
    color: var(--steel);
}

.blog-preview-cta {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.internal-links {
    background: linear-gradient(180deg, #edf3f8 0%, #f6f9fc 100%);
    padding: clamp(54px, 7vw, 78px) 0;
}

.service-proof {
    position: relative;
    z-index: 4;
    margin-top: -24px;
}

.service-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(196, 208, 220, 0.72);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow-md);
}

.service-proof-grid > * {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 88px;
    padding: 16px 20px;
    border-right: 1px solid var(--line);
    text-decoration: none;
}

.service-proof-grid > *:last-child {
    border-right: 0;
}

.service-proof-grid span {
    color: var(--ink-muted);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.service-proof-grid strong {
    margin-top: 2px;
    color: var(--steel);
    font-size: 0.98rem;
}

.service-proof-grid a:hover strong {
    color: var(--brand-strong);
}

.internal-links-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: 24px;
    align-items: center;
    padding: clamp(24px, 4vw, 36px);
    border: 1px solid rgba(196, 208, 220, 0.72);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-sm);
}

.internal-links-panel h2 {
    color: var(--steel);
    font-size: clamp(1.65rem, 2.8vw, 2.35rem);
    line-height: 1.12;
}

.internal-links-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.internal-links-list a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 15px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(196, 208, 220, 0.95);
    color: var(--steel);
    background: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.92rem;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.internal-links-list a:hover {
    color: var(--brand-strong);
    border-color: rgba(214, 122, 42, 0.8);
    transform: translateY(-1px);
}

.reviews-section {
    background:
        linear-gradient(105deg, rgba(12, 23, 34, 0.96) 0%, rgba(23, 39, 55, 0.94) 64%, rgba(46, 67, 87, 0.9) 100%);
    color: #f6f9fc;
}

.reviews-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
    gap: 28px;
    align-items: center;
}

.reviews-copy h2 {
    max-width: 720px;
    margin: 8px 0 14px;
    color: #ffffff;
    font-size: clamp(2rem, 3.4vw, 3rem);
    line-height: 1.1;
}

.reviews-copy p:not(.eyebrow) {
    max-width: 740px;
    color: rgba(232, 241, 249, 0.86);
}

.reviews-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.reviews-card {
    padding: 28px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

.reviews-card h3 {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 1.35rem;
}

.reviews-card ul {
    padding-left: 20px;
    color: rgba(232, 241, 249, 0.84);
}

.reviews-card li {
    margin-bottom: 8px;
}

.breadcrumb-link {
    display: inline-flex;
    margin-bottom: 16px;
    text-decoration: none;
}

.article-page {
    background: linear-gradient(180deg, #f6f9fc 0%, #eef3f8 100%);
}

.article-hero-image {
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(191, 204, 216, 0.74);
    margin: -34px 0 34px;
    position: relative;
    z-index: 2;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 34px;
    align-items: start;
    padding-bottom: clamp(78px, 9vw, 108px);
}

.article-content,
.article-sidebar {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(196, 208, 220, 0.72);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.article-content {
    padding: clamp(24px, 4vw, 46px);
}

.article-content p {
    color: var(--ink-soft);
    margin-bottom: 18px;
}

.article-content h2 {
    font-size: clamp(1.45rem, 2.5vw, 2rem);
    margin: 30px 0 10px;
}

.article-sidebar {
    position: sticky;
    top: calc(var(--nav-height) + 22px);
    padding: 24px 22px;
}

.article-sidebar h2 {
    font-size: 1.45rem;
    margin-bottom: 12px;
}

.article-sidebar ul {
    padding-left: 20px;
    color: var(--ink-soft);
}

.article-sidebar li {
    margin-bottom: 9px;
}

.sidebar-lead {
    display: grid;
    gap: 8px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.sidebar-lead > span {
    color: var(--ink-muted);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.sidebar-lead > strong {
    color: var(--steel);
    font-size: 1.08rem;
}

.sidebar-lead .btn {
    width: 100%;
    margin-top: 4px;
    padding-left: 14px;
    padding-right: 14px;
}

.sidebar-lead small {
    color: var(--ink-muted);
    line-height: 1.4;
}

.article-cta {
    margin-top: 34px;
    padding: 24px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(214, 122, 42, 0.14), rgba(28, 45, 61, 0.08));
    border: 1px solid rgba(214, 122, 42, 0.28);
}

.contact {
    background: linear-gradient(180deg, #e9eff5 0%, #e4ecf3 100%);
}

.contact-wrapper {
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 12px;
}

.contact-item {
    display: flex;
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(196, 208, 220, 0.72);
}

.contact-icon {
    font-size: 1.3rem;
    color: var(--brand-strong);
    min-width: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-item h3 {
    margin-bottom: 3px;
    font-family: 'Inter', sans-serif;
    font-size: 1.18rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--steel);
}

.contact-form {
    padding: 24px;
}

.contact-form-intro {
    margin-bottom: 20px;
}

.contact-form-intro h3 {
    margin-bottom: 6px;
    color: var(--steel);
    font-size: 1.45rem;
}

.contact-form-intro p {
    color: var(--ink-soft);
}

.contact-compact .contact-info .btn {
    width: 100%;
}

.form-group {
    margin-bottom: 12px;
}

.form-label {
    display: block;
    margin-bottom: 6px;
    color: var(--steel);
    font-size: 0.9rem;
    font-weight: 600;
}

.form-hint {
    display: block;
    margin-top: 6px;
    color: var(--ink-muted);
    font-size: 0.82rem;
}

.booking-picker {
    border: 1px solid rgba(193, 206, 219, 0.95);
    border-radius: 14px;
    background: #ffffff;
    padding: 12px;
}

.booking-picker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
}

.booking-month {
    margin: 0;
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--steel);
}

.booking-nav {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(193, 206, 219, 0.95);
    border-radius: 10px;
    background: #fff;
    color: var(--steel);
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
}

.booking-nav:hover {
    border-color: rgba(214, 122, 42, 0.9);
    color: var(--brand-strong);
}

.booking-weekdays,
.booking-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px;
}

.booking-weekdays {
    margin-bottom: 6px;
}

.booking-weekdays span {
    text-align: center;
    font-size: 0.74rem;
    color: var(--ink-muted);
    font-weight: 600;
}

.booking-day {
    height: 36px;
    border: 1px solid rgba(193, 206, 219, 0.95);
    border-radius: 10px;
    background: #fff;
    color: var(--ink);
    font-weight: 600;
    cursor: pointer;
}

.booking-day.is-empty {
    border: 0;
    background: transparent;
    pointer-events: none;
}

.booking-day.is-selected {
    border-color: var(--brand-strong);
    background: rgba(214, 122, 42, 0.16);
    color: var(--brand-strong);
}

.booking-day.is-disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.booking-slots {
    margin-top: 12px;
}

.booking-slots-title {
    margin: 0 0 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink-muted);
}

.booking-wheel {
    position: relative;
    max-height: 220px;
    overflow-y: auto;
    border: 1px solid rgba(193, 206, 219, 0.95);
    border-radius: 12px;
    padding: 88px 8px;
    background:
        linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0.86) 16%, rgba(255, 255, 255, 0.86) 84%, #ffffff 100%);
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
}

.booking-wheel-item {
    display: block;
    width: 100%;
    height: 44px;
    margin: 0;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--steel);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    scroll-snap-align: center;
    cursor: pointer;
    opacity: 0.62;
    transition: opacity 0.16s ease, transform 0.16s ease, color 0.16s ease, background 0.16s ease;
}

.booking-wheel-item.is-selected {
    background: rgba(214, 122, 42, 0.16);
    color: var(--brand-strong);
    opacity: 1;
    transform: scale(1.04);
}

.booking-wheel-item.is-disabled {
    opacity: 0.22;
    cursor: not-allowed;
}

.booking-wheel::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 44px;
    border-top: 1px solid rgba(214, 122, 42, 0.44);
    border-bottom: 1px solid rgba(214, 122, 42, 0.44);
    background: rgba(214, 122, 42, 0.08);
    pointer-events: none;
    z-index: 1;
}

.booking-wheel::-webkit-scrollbar {
    width: 8px;
}

.booking-wheel::-webkit-scrollbar-thumb {
    background: rgba(182, 193, 205, 0.9);
    border-radius: 10px;
}

.booking-wheel::-webkit-scrollbar-track {
    background: rgba(237, 242, 247, 0.8);
    border-radius: 10px;
}

.booking-wheel {
    scrollbar-color: rgba(182, 193, 205, 0.9) rgba(237, 242, 247, 0.8);
    scrollbar-width: thin;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid rgba(193, 206, 219, 0.95);
    background: #ffffff;
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group textarea {
    padding: 12px 14px;
    min-height: 130px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%234d5b69' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 38px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: rgba(214, 122, 42, 0.9);
    box-shadow: 0 0 0 4px rgba(214, 122, 42, 0.14);
}

.form-honeypot {
    display: none !important;
}

.form-status {
    display: none;
    margin-top: 12px;
    padding: 11px 14px;
    border-radius: 12px;
    font-size: 0.92rem;
    font-weight: 500;
    border: 1px solid transparent;
}

.form-status.is-visible {
    display: block;
}

.form-status.success {
    color: #1f6f3e;
    background: rgba(47, 138, 80, 0.14);
    border-color: rgba(47, 138, 80, 0.35);
}

.form-status.error {
    color: #8d1f1f;
    background: rgba(186, 64, 64, 0.14);
    border-color: rgba(186, 64, 64, 0.35);
}

.btn[disabled] {
    opacity: 0.78;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.map-section {
    background: linear-gradient(180deg, #f4f8fc 0%, #ebf1f7 100%);
}

.map-compact {
    padding-top: 0;
    background: #e4ecf3;
}

.map-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(195, 207, 219, 0.82);
    box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
    width: 100%;
    min-height: 440px;
    border: 0;
}

.map-info {
    position: absolute;
    top: 18px;
    right: 18px;
    max-width: 320px;
}

.map-info-card {
    padding: 18px;
    backdrop-filter: blur(6px);
}

.map-info-card h3 {
    font-family: 'Inter', sans-serif;
    color: var(--steel);
    font-size: 1.22rem;
    text-transform: none;
    margin-bottom: 8px;
}

.map-info-card p {
    font-size: 0.92rem;
    margin-bottom: 7px;
}

.map-info-card .btn {
    margin-top: 6px;
    width: 100%;
}

.footer {
    color: #dce7f1;
    background:
        radial-gradient(780px 330px at 90% -20%, rgba(214, 122, 42, 0.18), transparent 65%),
        linear-gradient(160deg, #12202e 0%, #101c28 45%, #0d1822 100%);
    padding-bottom: 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.15fr 0.9fr 0.95fr;
    gap: 22px;
    margin-bottom: 28px;
}

.footer-section h3 {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    margin-bottom: 8px;
    color: #f2f7fc;
}

.footer-section h3 span,
.footer-section h4,
.footer-its-text {
    color: var(--brand-soft);
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.footer-section p,
.footer-section li,
.footer-section a {
    color: rgba(226, 236, 246, 0.86);
    font-size: 0.94rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 7px;
}

.footer-section a {
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-its-logo {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(246, 249, 253, 0.18);
}

.footer-its-text {
    font-size: 0.82rem;
}

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

.footer-bottom {
    padding-top: 16px;
    border-top: 1px solid rgba(233, 241, 248, 0.16);
    text-align: center;
    color: rgba(219, 230, 241, 0.74);
    font-size: 0.88rem;
}

.footer-company-data {
    max-width: 1040px;
    margin: 0 auto 10px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.76rem;
    line-height: 1.65;
    text-align: center;
}

.footer-company-data span {
    display: inline;
}

.footer-company-data span + span::before {
    content: " \00b7 ";
}

.reviews-home {
    padding: 88px 0;
    background: linear-gradient(135deg, #e7edf3 0%, #f8fafc 62%);
}

.reviews-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.4fr);
    gap: 34px;
    align-items: stretch;
}

.reviews-summary {
    padding: 30px;
    border-left: 5px solid var(--brand);
    background: var(--steel);
    color: #fff;
}

.reviews-eyebrow {
    margin-bottom: 8px;
    color: var(--brand-soft);
    font-weight: 800;
    text-transform: uppercase;
}

.reviews-summary h2 {
    font-size: clamp(1.9rem, 3vw, 2.65rem);
    line-height: 1.15;
}

.reviews-summary > p:not(.reviews-eyebrow) {
    margin: 12px 0 24px;
    color: rgba(240, 246, 252, 0.84);
}

.reviews-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.reviews-actions .btn {
    flex: 1 1 180px;
    justify-content: center;
}

.reviews-stars,
.review-stars {
    color: #f0a13e;
    letter-spacing: 0;
}

.reviews-stars {
    margin-top: 12px;
    font-size: 1.45rem;
}

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

.review-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 240px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.review-card > p {
    margin: 18px 0 24px;
    color: var(--steel);
    font-size: 1.16rem;
    font-weight: 700;
    line-height: 1.55;
}

.review-card footer {
    color: var(--steel);
    font-style: normal;
    font-weight: 800;
}

.review-card footer span {
    display: block;
    margin-top: 2px;
    color: var(--ink-muted);
    font-size: 0.82rem;
    font-weight: 500;
}

.form-consent {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    margin: 2px 0 16px;
    color: var(--ink-soft);
    font-size: 0.82rem;
    line-height: 1.45;
}

.form-consent input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--brand-strong);
}

.form-consent a {
    color: var(--brand-strong);
    font-weight: 700;
}

.consent-banner {
    position: fixed;
    left: 50%;
    bottom: 18px;
    z-index: 2200;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 26px;
    align-items: center;
    width: min(1040px, calc(100% - 32px));
    padding: 22px 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: #172532;
    box-shadow: 0 24px 70px rgba(6, 14, 22, 0.36);
    color: #fff;
    transform: translateX(-50%);
}

.consent-banner[hidden] {
    display: none;
}

.consent-banner-copy strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.consent-banner-copy p {
    color: rgba(238, 245, 252, 0.83);
    font-size: 0.9rem;
    line-height: 1.5;
}

.consent-banner-copy a {
    display: inline-block;
    margin-top: 5px;
    color: var(--brand-soft);
    font-size: 0.86rem;
    font-weight: 700;
}

.consent-actions {
    display: flex;
    gap: 9px;
}

.consent-actions .btn {
    width: auto;
    min-width: 150px;
    white-space: nowrap;
}

.privacy-settings-button {
    display: inline-flex;
    margin-top: 8px;
    border: 0;
    background: transparent;
    color: rgba(219, 230, 241, 0.82);
    font: inherit;
    text-decoration: underline;
    cursor: pointer;
}

.privacy-settings-button:hover {
    color: #fff;
}

.legal-hero {
    padding: calc(var(--nav-height) + 70px) 0 64px;
    background: var(--steel);
    color: #fff;
}

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

.legal-hero h1 {
    margin-bottom: 12px;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.1;
}

.legal-hero p {
    max-width: 720px;
    color: rgba(235, 243, 250, 0.82);
}

.legal-content {
    padding: 72px 0 92px;
}

.legal-content .container {
    max-width: 900px;
}

.legal-section {
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
}

.legal-section:first-child {
    padding-top: 0;
}

.legal-section h2 {
    margin-bottom: 12px;
    color: var(--steel);
    font-size: 1.45rem;
}

.legal-section p + p,
.legal-section ul {
    margin-top: 10px;
}

.legal-section ul {
    padding-left: 22px;
}

.legal-section a {
    color: var(--brand-strong);
    font-weight: 700;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.55s ease, transform 0.55s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1120px) {
    .nav-wrapper {
        gap: 14px;
    }

    .nav-menu a {
        padding-left: 11px;
        padding-right: 11px;
    }

    .nav-call {
        min-width: 118px;
    }

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

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

    .trust-strip-item:nth-child(2) {
        border-right: 0;
    }

    .trust-strip-item:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(196, 208, 220, 0.68);
    }

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

@media (max-width: 920px) {
    .practical-grid {
        grid-template-columns: 1fr;
    }

    .practical-item {
        min-height: 0;
    }

    :root {
        --nav-height: 76px;
    }

    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 16px 16px 22px;
        background: rgba(247, 251, 255, 0.98);
        border-bottom: 1px solid rgba(194, 207, 220, 0.74);
        box-shadow: 0 16px 34px rgba(18, 29, 41, 0.15);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.24s ease, opacity 0.24s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-menu a {
        justify-content: center;
        border-radius: 12px;
        min-height: 46px;
    }

    .hamburger {
        display: flex;
    }

    .nav-call {
        display: none;
    }

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

    .service-proof-grid > *:nth-child(2) {
        border-right: 0;
    }

    .service-proof-grid > *:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
        padding: calc(var(--nav-height) + 44px) 0 72px;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        margin: 0 auto;
    }

    .hero-contact-panel {
        margin-left: auto;
        margin-right: auto;
    }

    .vulcanization-content,
    .about-wrapper,
    .contact-wrapper,
    .patronage-content,
    .article-layout,
    .reviews-layout,
    .internal-links-panel {
        grid-template-columns: 1fr;
    }

    .reviews-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
    }

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

    .about-img,
    .about-image-img {
        min-height: 320px;
    }

    .map-info {
        position: static;
        max-width: none;
        margin-top: 10px;
    }

    .map-wrapper iframe {
        min-height: 350px;
    }
}

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

    .services-grid,
    .certificates-grid,
    .blog-grid,
    .footer-content,
    .stats,
    .hero-features,
    .hero-contact-panel,
    .trust-strip-grid {
        grid-template-columns: 1fr;
    }

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

    .reviews-home {
        padding: 64px 0;
    }

    .reviews-grid,
    .consent-banner {
        grid-template-columns: 1fr;
    }

    .reviews-summary,
    .review-card {
        padding: 22px 18px;
    }

    .review-card {
        min-height: 210px;
    }

    .consent-banner {
        bottom: 8px;
        gap: 16px;
        width: calc(100% - 16px);
        max-height: calc(100vh - 16px);
        overflow-y: auto;
        padding: 18px;
    }

    .consent-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .consent-actions .btn {
        width: 100%;
        min-width: 0;
    }

    .trust-strip {
        margin-top: -22px;
    }

    .trust-strip-item,
    .trust-strip-item:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(196, 208, 220, 0.68);
    }

    .trust-strip-item:last-child {
        border-bottom: 0;
    }

    .service-proof {
        margin-top: -14px;
    }

    .service-proof-grid {
        grid-template-columns: 1fr;
    }

    .service-proof-grid > * {
        min-height: 70px;
        padding: 13px 16px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .service-proof-grid > *:last-child {
        border-bottom: 0;
    }

    .hero-title {
        font-size: clamp(2.05rem, 10vw, 2.8rem);
    }

    .hero-subtitle {
        font-size: 0.98rem;
    }

    .home-hero .hero-contact-panel {
        display: none;
    }

    .btn,
    .vulcanization-cta .btn {
        width: 100%;
    }

    .practical-cta .btn {
        width: 100%;
    }

    .service-card,
    .certificate-card,
    .service-item,
    .contact-form,
    .blog-card-body,
    .article-content,
    .article-sidebar {
        padding: 20px 16px;
    }

    .map-wrapper iframe {
        min-height: 280px;
    }

    .footer {
        padding-top: 82px;
        padding-bottom: 104px;
    }

    .mobile-action-bar {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 8px;
        border: 1px solid rgba(196, 208, 220, 0.75);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 16px 42px rgba(13, 24, 34, 0.24);
        backdrop-filter: blur(12px);
    }

    .mobile-action-bar a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 46px;
        border-radius: 13px;
        text-decoration: none;
        color: #fff;
        background: var(--brand-strong);
        font-weight: 800;
    }

    .mobile-action-bar a + a {
        color: var(--steel);
        background: #eef3f8;
    }
}

/* 2026 visual refresh: quieter, more utilitarian presentation. */
body {
    background: #f2f3f3;
}

.hero-content {
    animation: none;
}

.navbar,
.navbar.scrolled {
    border-bottom: 1px solid #d8dbdc;
    background: rgba(248, 248, 245, 0.97);
    box-shadow: none;
    backdrop-filter: none;
}

.logo-link {
    display: grid;
    gap: 1px;
}

.logo-word {
    color: #161a1d;
    font-size: 1.42rem;
    font-weight: 800;
    line-height: 1;
}

.logo-word::after {
    content: ".";
    color: #df5b15;
}

.logo-subline {
    color: #697176;
    font-size: 0.67rem;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
}

.nav-menu a {
    border-radius: 0;
}

.nav-menu a:hover {
    background: transparent;
    color: #df5b15;
    transform: none;
}

.btn {
    min-height: 48px;
    border-radius: 4px;
    box-shadow: none;
}

.btn-primary {
    background: #df5b15;
    box-shadow: none;
}

.btn-primary:hover {
    background: #bd470d;
    box-shadow: none;
    transform: none;
}

.btn-light,
.btn-light:hover,
.btn-secondary:hover {
    box-shadow: none;
    transform: none;
}

.section-header h2::after {
    width: 42px;
    height: 3px;
    border-radius: 0;
    background: #df5b15;
}

.service-card,
.certificate-card,
.service-item,
.contact-form,
.map-info-card,
.its-logo,
.faq-card,
.blog-card,
.review-card,
.map-wrapper {
    border-radius: 6px;
    box-shadow: none;
}

.service-card:hover,
.certificate-card:hover,
.service-item:hover,
.blog-card:hover {
    transform: none;
    box-shadow: none;
}

.blog-hero,
.article-header,
.footer {
    background-color: #171b1f;
    background-image: none;
}

.map-wrapper {
    border: 1px solid #d2d5d6;
}

.home-page {
    --home-ink: #171b1f;
    --home-copy: #545d62;
    --home-paper: #f4f3ee;
    --home-line: #d2d2cc;
    --home-orange: #df5b15;
    --home-green: #2d7d5d;
    background: #ffffff;
}

.home-page .home-hero {
    min-height: 720px;
    padding: calc(var(--nav-height) + 66px) 0 74px;
}

.home-page .home-hero::before {
    background: linear-gradient(90deg, rgba(10, 14, 17, 0.94) 0%, rgba(10, 14, 17, 0.8) 48%, rgba(10, 14, 17, 0.18) 100%);
}

.home-page .hero-image {
    filter: saturate(0.72) contrast(1.05);
    object-position: center 48%;
}

.home-page .hero-content {
    max-width: 820px;
    animation: none;
}

.home-page .hero-kicker {
    gap: 9px;
    min-height: 0;
    margin-bottom: 24px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #d9dddf;
    font-size: 0.77rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4dc18b;
    box-shadow: 0 0 0 4px rgba(77, 193, 139, 0.16);
}

.home-page .hero-title {
    max-width: 760px;
    margin-bottom: 22px;
    font-size: clamp(3rem, 5.25vw, 4.65rem);
    line-height: 1.02;
}

.home-page .hero-title span {
    display: block;
    margin-top: 8px;
    color: #c8cdd0;
    font-size: 0.68em;
    font-weight: 500;
}

.home-page .hero-subtitle {
    max-width: 670px;
    margin-bottom: 30px;
    color: #d7dcde;
    font-size: 1.08rem;
    line-height: 1.65;
}

.home-page .hero-buttons {
    margin-bottom: 34px;
}

.home-page .hero-contact-panel {
    max-width: 720px;
    margin: 0;
    overflow: visible;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
}

.home-page .hero-contact-panel > div {
    display: grid;
    gap: 3px;
    min-height: 70px;
    padding: 15px 20px 15px 0;
}

.home-page .hero-contact-panel > div + div {
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.home-page .hero-contact-panel span {
    letter-spacing: 0;
}

.home-page .trust-strip {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid var(--home-line);
    background: var(--home-paper);
}

.home-page .trust-strip .container {
    width: min(1260px, 100%);
}

.home-page .trust-strip-grid {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.home-page .trust-strip-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 82px;
    padding: 18px 26px;
    border-color: var(--home-line);
    text-decoration: none;
}

.home-page .trust-strip-item span {
    margin: 0;
    color: #92999d;
    font-size: 0.72rem;
    letter-spacing: 0;
}

.home-page .trust-strip-item strong {
    margin: 0;
    color: var(--home-ink);
    font-size: 1.05rem;
}

.home-page .trust-strip-item:hover strong {
    color: var(--home-orange);
}

.service-directory,
.home-guides,
.home-page .faq-home,
.home-page .reviews-home,
.home-page .contact {
    padding: clamp(76px, 8vw, 112px) 0;
}

.service-directory {
    background: var(--home-paper);
}

.section-heading-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.58fr);
    gap: 48px;
    align-items: end;
    margin-bottom: 46px;
}

.section-heading-row h2 {
    max-width: 720px;
    color: var(--home-ink);
    font-size: clamp(2.1rem, 4vw, 3.6rem);
    line-height: 1.06;
}

.section-heading-row > p {
    max-width: 480px;
    color: var(--home-copy);
    font-size: 1rem;
}

.section-label {
    display: block;
    margin-bottom: 9px;
    color: var(--home-orange);
    font-size: 0.73rem;
    font-weight: 800;
    text-transform: uppercase;
}

.service-directory-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
    gap: 58px;
    align-items: start;
}

.service-feature {
    display: block;
    color: inherit;
    text-decoration: none;
}

.service-feature img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    filter: saturate(0.8);
}

.service-feature-copy {
    display: grid;
    padding: 26px 0 0;
}

.service-feature-copy > strong {
    max-width: 540px;
    margin-bottom: 10px;
    color: var(--home-ink);
    font-size: clamp(1.75rem, 3vw, 2.55rem);
    line-height: 1.08;
}

.service-feature-copy > span:not(.section-label):not(.text-link) {
    color: var(--home-copy);
}

.service-feature .text-link {
    width: max-content;
    margin-top: 18px;
}

.service-index {
    border-top: 1px solid var(--home-ink);
}

.service-index-row {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 24px;
    gap: 18px;
    align-items: center;
    min-height: 116px;
    padding: 20px 0;
    border-bottom: 1px solid var(--home-line);
    color: inherit;
    text-decoration: none;
}

.service-index-number {
    align-self: start;
    color: #949a9d;
    font-size: 0.72rem;
}

.service-index-row > span:nth-child(2) {
    display: grid;
    gap: 3px;
}

.service-index-row small {
    color: var(--home-orange);
    font-size: 0.69rem;
    font-weight: 800;
    text-transform: uppercase;
}

.service-index-row strong {
    color: var(--home-ink);
    font-size: 1.28rem;
    line-height: 1.2;
}

.service-index-row > span:nth-child(2) > span {
    color: var(--home-copy);
    font-size: 0.9rem;
}

.row-arrow {
    color: var(--home-orange);
    font-size: 1.25rem;
    transition: transform 0.18s ease;
}

.service-index-row:hover .row-arrow {
    transform: translateX(5px);
}

.home-guides {
    background: #ffffff;
}

.home-guides .section-heading-row {
    grid-template-columns: minmax(0, 1fr) auto;
}

.home-guides .section-heading-row > .text-link {
    margin: 0 0 6px;
}

.guides-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(390px, 0.85fr);
    gap: 58px;
}

.guide-feature a,
.guide-row a {
    color: inherit;
    text-decoration: none;
}

.guide-feature img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    filter: saturate(0.82);
}

.guide-copy {
    display: grid;
    padding-top: 24px;
}

.guide-copy strong {
    max-width: 600px;
    margin-bottom: 9px;
    color: var(--home-ink);
    font-size: clamp(1.65rem, 2.8vw, 2.35rem);
    line-height: 1.12;
}

.guide-copy > span:last-child,
.guide-row a > span > span:last-child {
    color: var(--home-copy);
}

.guide-list {
    border-top: 1px solid var(--home-ink);
}

.guide-row a {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid var(--home-line);
}

.guide-row img {
    width: 180px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    filter: saturate(0.82);
}

.guide-row a > span {
    display: grid;
}

.guide-row strong {
    margin-bottom: 7px;
    color: var(--home-ink);
    font-size: 1.22rem;
    line-height: 1.22;
}

.home-page .reviews-home {
    background: #1d2226;
}

.home-page .reviews-layout {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.4fr);
    gap: 64px;
}

.home-page .reviews-summary {
    padding: 0;
    border: 0;
    background: transparent;
}

.home-page .reviews-summary h2 {
    max-width: 430px;
    font-size: clamp(2rem, 3.6vw, 3.2rem);
}

.home-page .reviews-grid {
    gap: 0;
}

.home-page .review-card {
    min-height: 0;
    padding: 4px 32px;
    border: 0;
    border-left: 1px solid #51585c;
    background: transparent;
}

.home-page .review-card > p,
.home-page .review-card footer {
    color: #eef0f1;
}

.home-page .review-card footer span {
    color: #9fa7ab;
}

.home-page .faq-home {
    background: #efeee9;
}

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

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

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 82px;
    color: var(--home-ink);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

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

.faq-list summary span {
    color: var(--home-orange);
    font-size: 1.55rem;
    font-weight: 400;
    transition: transform 0.2s ease;
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list details p {
    max-width: 780px;
    padding: 0 50px 26px 0;
    color: var(--home-copy);
}

.home-page .contact {
    background: #242a2e;
}

.home-page .contact-wrapper {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.78fr);
    gap: clamp(50px, 8vw, 110px);
    align-items: stretch;
}

.home-page .contact-info {
    display: block;
    padding-top: 8px;
}

.home-page .contact-info h2 {
    max-width: 580px;
    margin-bottom: 18px;
    color: #ffffff;
    font-size: clamp(2.45rem, 4.8vw, 4.2rem);
    line-height: 1.02;
}

.contact-lead {
    max-width: 570px;
    color: #c9ced1;
    font-size: 1.06rem;
}

.contact-phone {
    display: inline-block;
    margin: 30px 0 34px;
    color: #ffffff;
    font-size: clamp(2rem, 4.4vw, 3.8rem);
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
}

.contact-phone:hover,
.contact-route:hover {
    color: #ff8a45;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    max-width: 570px;
    padding-top: 22px;
    border-top: 1px solid #555c60;
}

.contact-details dt {
    margin-bottom: 6px;
    color: #8f999e;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-details dd {
    color: #e3e6e7;
}

.contact-route {
    display: inline-block;
    margin-top: 28px;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

.home-page .contact-form {
    padding: 34px;
    border: 0;
    border-radius: 6px;
    background: #f7f6f1;
}

.home-page .contact-form input,
.home-page .contact-form textarea,
.home-page .contact-form select {
    border-radius: 3px;
    background: #ffffff;
}

.home-page .map-compact {
    padding: 0;
    background: #242a2e;
}

.home-page .map-compact .container {
    width: min(1360px, 100%);
}

.home-page .map-wrapper {
    border: 0;
    border-radius: 0;
}

.home-page .map-wrapper iframe {
    min-height: 430px;
    border-radius: 0;
    filter: grayscale(0.25) contrast(1.02);
}

.home-page .footer {
    background: #14181b;
}

/* Keep supporting pages consistent with the quieter home-page direction. */
.services,
.certificates,
.vulcanization,
.patronage,
.blog-preview,
.blog-listing,
.internal-links,
.contact {
    background: #f2f3f3;
}

.about,
.blog-preview--articles {
    background: #ffffff;
}

.faq-list summary:focus-visible {
    outline: 2px solid #9c4f1e;
    outline-offset: 4px;
}

@media (max-width: 920px) {
    .home-page .hero-content {
        margin: 0;
        text-align: left;
    }

    .home-page .hero-buttons {
        justify-content: flex-start;
    }

    .section-heading-row,
    .service-directory-layout,
    .guides-layout,
    .home-page .reviews-layout,
    .home-page .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .home-guides .section-heading-row {
        grid-template-columns: 1fr;
    }

    .home-guides .section-heading-row > .text-link {
        width: max-content;
        margin: 0;
    }

    .service-directory-layout,
    .guides-layout {
        gap: 46px;
    }
}

@media (max-width: 700px) {
    .home-page {
        --nav-height: 72px;
    }

    .home-page .nav-wrapper {
        min-height: 72px;
    }

    .home-page .nav-menu {
        top: 72px;
        min-height: calc(100dvh - 72px);
        align-content: start;
        gap: 0;
        padding: 16px 20px 100px;
        border-bottom: 0;
        background: #f7f6f1;
        box-shadow: none;
    }

    .home-page .nav-menu a {
        justify-content: flex-start;
        width: 100%;
        min-height: 56px;
        padding: 0 6px;
        border-bottom: 1px solid var(--home-line);
    }

    .home-page .nav-menu li {
        width: 100%;
    }

    .logo-word {
        font-size: 1.22rem;
    }

    .logo-subline {
        font-size: 0.57rem;
    }

    .home-page .home-hero {
        min-height: auto;
        padding: 118px 0 58px;
    }

    .home-page .home-hero::before {
        background: linear-gradient(90deg, rgba(10, 14, 17, 0.93), rgba(10, 14, 17, 0.62));
    }

    .home-page .hero-title {
        font-size: clamp(2.25rem, 10.5vw, 3rem);
    }

    .home-page .hero-title span {
        font-size: 0.64em;
        line-height: 1.16;
    }

    .home-page .hero-subtitle {
        font-size: 0.96rem;
    }

    .home-page .trust-strip {
        margin: 0;
    }

    .home-page .trust-strip-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-page .trust-strip-item,
    .home-page .trust-strip-item:nth-child(2) {
        min-height: 76px;
        padding: 15px 13px;
        border-right: 1px solid var(--home-line);
        border-bottom: 1px solid var(--home-line);
    }

    .home-page .trust-strip-item:nth-child(even) {
        border-right: 0;
    }

    .home-page .trust-strip-item:nth-child(n + 3) {
        border-bottom: 0;
    }

    .home-page .trust-strip-item strong {
        font-size: 0.87rem;
    }

    .service-directory,
    .home-guides,
    .home-page .faq-home,
    .home-page .reviews-home,
    .home-page .contact {
        padding: 68px 0;
    }

    .section-heading-row {
        gap: 15px;
        margin-bottom: 34px;
    }

    .section-heading-row h2 {
        font-size: 2.25rem;
    }

    .service-directory-layout,
    .guides-layout {
        gap: 38px;
    }

    .service-feature img {
        aspect-ratio: 16 / 11;
    }

    .service-index-row {
        grid-template-columns: 26px minmax(0, 1fr) 18px;
        gap: 10px;
        min-height: 104px;
    }

    .service-index-row strong {
        font-size: 1.08rem;
    }

    .guide-row a {
        grid-template-columns: 108px minmax(0, 1fr);
        gap: 14px;
    }

    .guide-row img {
        width: 108px;
    }

    .guide-row strong {
        font-size: 1rem;
    }

    .guide-row a > span > span:last-child {
        display: none;
    }

    .home-page .reviews-layout {
        gap: 42px;
    }

    .home-page .reviews-grid {
        gap: 28px;
    }

    .home-page .review-card {
        min-height: 0;
        padding: 0 0 0 18px;
    }

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

    .home-page .contact-info h2 {
        font-size: 2.75rem;
    }

    .contact-phone {
        font-size: 2.45rem;
    }

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

    .home-page .contact-form {
        padding: 24px 18px;
    }

    .home-page .map-wrapper iframe {
        min-height: 320px;
    }

    .home-page .mobile-action-bar {
        border-radius: 6px;
        backdrop-filter: none;
    }

    .home-page .mobile-action-bar a {
        border-radius: 3px;
    }
}

/* 2026 design refinement: compact, factual and workshop-focused. */
.home-page .container {
    width: min(1180px, calc(100% - 48px));
}

.home-page .home-hero {
    min-height: 620px;
    padding: calc(var(--nav-height) + 44px) 0 48px;
}

.home-page .home-hero::before {
    background: linear-gradient(90deg, rgba(10, 13, 15, 0.94) 0%, rgba(10, 13, 15, 0.79) 46%, rgba(10, 13, 15, 0.12) 100%);
}

.home-page .hero-image {
    filter: saturate(0.56) contrast(1.06);
    object-position: center 45%;
}

.home-page .hero-content {
    max-width: 680px;
}

.home-page .hero-kicker {
    margin-bottom: 16px;
    color: #f08a4e;
    font-size: 0.72rem;
}

.home-page .hero-title {
    max-width: 660px;
    margin-bottom: 18px;
    font-size: clamp(2.75rem, 4.5vw, 3.75rem);
    line-height: 1.03;
}

.home-page .hero-title span {
    margin-top: 5px;
    font-size: 0.75em;
}

.home-page .hero-subtitle {
    max-width: 590px;
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.55;
}

.home-page .hero-buttons {
    margin-bottom: 20px;
}

.hero-hours {
    color: #bfc5c8;
    font-size: 0.82rem;
    font-weight: 600;
}

.hero-hours span {
    padding: 0 6px;
    color: #737c81;
}

.home-page .trust-strip {
    background: #ffffff;
}

.home-page .trust-strip .container {
    width: min(1180px, calc(100% - 48px));
}

.home-page .trust-strip-item {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 3px;
    min-height: 78px;
    padding: 15px 20px;
}

.home-page .trust-strip-item strong {
    font-size: 0.96rem;
}

.home-page .trust-strip-item span {
    color: #747c80;
    font-size: 0.73rem;
}

.service-directory,
.home-guides,
.home-page .faq-home,
.home-page .reviews-home,
.home-page .contact {
    padding: 76px 0;
}

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

.section-heading-row h2 {
    max-width: 660px;
    font-size: clamp(2rem, 3.25vw, 2.7rem);
    line-height: 1.08;
}

.section-heading-row > p {
    font-size: 0.94rem;
}

.service-directory-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
    gap: 48px;
}

.service-feature img {
    aspect-ratio: 16 / 10;
}

.service-feature-copy {
    padding-top: 20px;
}

.service-feature-copy > strong {
    font-size: clamp(1.55rem, 2.5vw, 2rem);
}

.service-index-row {
    grid-template-columns: minmax(0, 1fr) 22px;
    gap: 14px;
    min-height: 84px;
    padding: 14px 0;
}

.service-index-row > span:first-child {
    display: grid;
    gap: 3px;
}

.service-index-row > span:nth-child(2) {
    display: block;
}

.service-index-row > span:first-child > span {
    color: var(--home-copy);
    font-size: 0.86rem;
}

.service-index-row strong {
    font-size: 1.08rem;
}

.guides-layout {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 1fr);
    gap: 48px;
}

.guide-feature img {
    aspect-ratio: 16 / 9;
}

.guide-copy strong {
    font-size: clamp(1.45rem, 2.3vw, 1.85rem);
}

.guide-row a {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 20px;
    padding: 18px 0;
}

.guide-row img {
    width: 150px;
}

.home-page .reviews-home {
    border-top: 1px solid var(--home-line);
    border-bottom: 1px solid var(--home-line);
    background: #e9eceb;
}

.home-page .reviews-layout {
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    gap: 54px;
}

.home-page .reviews-summary h2 {
    color: var(--home-ink);
    font-size: clamp(2rem, 3vw, 2.65rem);
}

.home-page .reviews-summary > p:not(.reviews-eyebrow) {
    color: var(--home-copy);
}

.home-page .review-card {
    padding: 2px 26px;
    border-left-color: #aeb4b2;
}

.home-page .review-card > p,
.home-page .review-card footer {
    color: var(--home-ink);
}

.home-page .review-card footer span {
    color: #687174;
}

.home-page .reviews-home .btn-light {
    border-color: #aeb4b2;
    color: var(--home-ink);
    background: #ffffff;
}

.home-page .faq-home {
    background: #ffffff;
}

.faq-list summary {
    min-height: 72px;
    font-size: 1.06rem;
}

.home-page .contact-wrapper {
    grid-template-columns: minmax(0, 0.88fr) minmax(400px, 0.72fr);
    gap: clamp(44px, 7vw, 86px);
}

.home-page .contact-info h2 {
    font-size: clamp(2.2rem, 3.8vw, 3.2rem);
}

.contact-phone {
    margin: 24px 0 30px;
    font-size: clamp(2rem, 3.6vw, 3rem);
}

.home-page .contact-form {
    padding: 28px;
    background: #f3f4f2;
}

body:not(.home-page) .hero {
    min-height: 700px;
    padding: calc(var(--nav-height) + 46px) 0 64px;
}

body:not(.home-page) .hero-title {
    max-width: 860px;
    font-size: clamp(2.7rem, 4.6vw, 4rem);
    line-height: 1.04;
}

@media (max-width: 920px) {
    .home-page .home-hero {
        min-height: 570px;
    }

    .section-heading-row,
    .home-guides .section-heading-row,
    .service-directory-layout,
    .guides-layout,
    .home-page .reviews-layout,
    .home-page .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .service-directory-layout,
    .guides-layout {
        gap: 36px;
    }

    .service-index {
        width: 100%;
        min-width: 0;
    }

    body:not(.home-page) .hero {
        min-height: 620px;
    }
}

@media (max-width: 700px) {
    .home-page .container,
    .home-page .trust-strip .container {
        width: min(100% - 26px, 1180px);
    }

    .home-page .home-hero {
        min-height: auto;
        padding: 108px 0 42px;
    }

    .home-page .hero-title {
        font-size: clamp(2.15rem, 9.5vw, 2.65rem);
    }

    .home-page .hero-title span {
        font-size: 0.71em;
    }

    .home-page .hero-subtitle {
        font-size: 0.94rem;
    }

    .hero-hours {
        max-width: 310px;
        line-height: 1.55;
    }

    .home-page .trust-strip-grid {
        gap: 0;
    }

    .home-page .trust-strip-item,
    .home-page .trust-strip-item:nth-child(2) {
        min-height: 72px;
        padding: 12px 10px;
    }

    .home-page .trust-strip-item strong {
        font-size: 0.86rem;
    }

    .home-page .trust-strip-item span {
        font-size: 0.66rem;
    }

    .service-directory,
    .home-guides,
    .home-page .faq-home,
    .home-page .reviews-home,
    .home-page .contact {
        padding: 56px 0;
    }

    .section-heading-row {
        margin-bottom: 28px;
    }

    .section-heading-row h2 {
        font-size: 2rem;
    }

    .service-index-row {
        grid-template-columns: minmax(0, 1fr) 18px;
        min-height: 78px;
    }

    .guides-layout {
        gap: 30px;
    }

    .guide-row a {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 14px;
    }

    .guide-row img {
        width: 96px;
    }

    .home-page .reviews-layout {
        gap: 34px;
    }

    .home-page .reviews-grid {
        gap: 24px;
    }

    .home-page .review-card {
        padding-left: 16px;
    }

    .home-page .contact-info h2 {
        font-size: 2.35rem;
    }

    body:not(.home-page) .hero {
        min-height: auto;
        padding: 112px 0 54px;
    }

    body:not(.home-page) .hero-title {
        font-size: clamp(2rem, 8.4vw, 2.5rem);
        text-align: left;
    }

    body:not(.home-page) .hero-content {
        margin: 0;
        text-align: left;
    }

    body:not(.home-page) .hero-buttons {
        justify-content: flex-start;
    }
}
