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

:root {
    --navy: #354045;
    --navy-dark: #2a3338;
    --primary: #c85a3a;
    --primary-muted: #9e3d28;
    --accent: #c85a3a;
    --accent-light: #e0896a;
    --cream: #f5f2ed;
    --gray-mid: #6b7280;
    --gray-light: #e8e4df;
    --white: #ffffff;
    --text: #1a2744;
    --text-muted: #6b7280;
    --font-head: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    font-size: 16px;
    line-height: 1.6;
}

/* ── TOP BAR ── */
.topbar {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    padding: 6px 0;
}

.topbar-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.topbar a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.topbar span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ── HEADER ── */
header {
    background: var(--navy);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-mark {
    width: 42px;
    height: 42px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    color: white;
    letter-spacing: 1.3px;
    line-height: 1.2;
    text-transform: uppercase;
}

.logo-text span {
    display: block;
    margin-top: 3px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-light);
    font-family: var(--font-body);
    text-transform: uppercase;
}

nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 14px;
    transition: color 0.15s;
    text-transform: uppercase;
    font-family: var(--font-head);
    font-size: 15px;
    letter-spacing: 0.8px;
}

nav a:hover {
    color: white;
}

/* WordPress nav menu compatibility */
nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}
nav ul li {
    margin: 0;
    padding: 0;
}
nav ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 14px;
    transition: color 0.15s;
    text-transform: uppercase;
    font-family: var(--font-head);
    font-size: 15px;
    letter-spacing: 0.8px;
}
nav ul li a:hover {
    color: white;
}
nav .menu-primary-container {
    display: flex;
}

.nav-cta {
    background: var(--accent);
    color: white !important;
    padding: 9px 18px !important;
    margin-left: 8px;
}

.nav-cta:hover {
    background: var(--accent-light) !important;
}

/* ── HERO ── */
.hero {
    background: var(--navy);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 80px 24px 72px;
}

.hero-bg, .hero-bg-alt {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05) rotate(-0.8deg);
    filter: blur(1.5px);
}

.hero-bg {
    animation: heroCrossfade 16s infinite;
}

.hero-bg-alt {
    animation: heroCrossfade 16s infinite;
    animation-delay: 8s;
}

@keyframes heroCrossfade {
    0%, 35% {
        opacity: 1;
    }
    45%, 85% {
        opacity: 0;
    }
    95%, 100% {
        opacity: 1;
    }
}

.hero-bg::after, .hero-bg-alt::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding-left: 54px;
}

.hero-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.hero h1 {
    font-family: var(--font-head);
    font-size: 58px;
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

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

.hero p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 32px;
}

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

.btn-primary {
    background: var(--accent);
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    transition: background 0.15s;
}

.btn-primary:hover {
    background: var(--accent-light);
}

.btn-secondary {
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    transition: border-color 0.15s;
}

.btn-secondary:hover {
    border-color: white;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat-num {
    font-family: var(--font-head);
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.hero-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 340px;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 260px;
    height: 260px;
    border: 40px solid rgba(200, 90, 58, 0.08);
    border-radius: 50%;
}

.hero-visual::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 160px;
    height: 160px;
    border: 24px solid rgba(200, 90, 58, 0.06);
    border-radius: 50%;
}

.hero-card-stack {
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-card {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 28px;
    margin-bottom: 16px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    color: inherit;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.hero-card:last-child {
    margin-bottom: 0;
}

.hero-card:hover {
    background: rgba(0, 0, 0, 0.65);
    transform: translateX(4px);
    cursor: pointer;
}

.hero-card-icon {
    width: 54px;
    height: 54px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
}

.hero-card-body {
    flex: 1;
}

.hero-card-title {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    margin-bottom: 6px;
}

.hero-card-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: 12px;
}

.hero-card-link {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.15s;
}

.hero-card-link:hover {
    color: var(--accent-light);
}

/* ── HERO ANIMATIONS ── */
.hero-content > * {
    opacity: 0;
    transform: translateY(40px);
    animation: heroSlideUp 0.7s ease-out forwards;
}

.hero-content > *:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-content > *:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-content > *:nth-child(3) {
    animation-delay: 0.3s;
}

.hero-content > *:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes heroSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-visual .hero-card {
    opacity: 0;
    transform: translateX(40px);
    animation: slideInRight 0.6s ease-out forwards;
}

.hero-visual .hero-card:nth-child(1) {
    animation-delay: 0.3s;
}

.hero-visual .hero-card:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.stat-suffix {
    font-variant-numeric: normal;
}

/* ── TRUST BAR ── */
.trust-bar {
    background: var(--accent);
    padding: 14px 24px;
    overflow: hidden;
}

.trust-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.trust-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

/* ── INTRO SECTION ── */
.intro-section {
    padding: 72px 24px;
    background: var(--white);
}

.intro-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.intro-content .section-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.intro-title {
    font-family: var(--font-head);
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.05;
    color: var(--navy);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.intro-title em {
    font-style: normal;
    color: var(--accent);
}

.intro-body {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
}

.intro-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--gray-light);
}

.intro-stat-box {
    background: var(--navy);
    padding: 32px 28px;
    text-align: center;
}

.intro-stat-box:nth-child(2) {
    background: var(--navy-dark);
}

.intro-stat-box:nth-child(3) {
    background: var(--accent);
}

.intro-stat-box:nth-child(4) {
    background: var(--navy);
}

.intro-stat-num {
    font-family: var(--font-head);
    font-size: 40px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.intro-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 6px;
}

/* ── SERVICES ── */
.section {
    padding: 72px 24px;
}

.section-alt {
    background: var(--cream);
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-head {
    margin-bottom: 48px;
}

.section-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-head);
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.05;
    color: var(--navy);
    letter-spacing: 0.5px;
}

.section-title em {
    font-style: normal;
    color: var(--accent);
}

.section-sub {
    font-size: 16px;
    color: var(--text-muted);
    margin-top: 12px;
    max-width: 520px;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    padding: 36px 32px;
    position: relative;
    transition: transform 0.15s;
}

.service-card:hover {
    z-index: 1;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26, 39, 68, 0.12);
}

.service-title {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--navy);
    margin-bottom: 12px;
    text-decoration: none;
    display: block;
}

.service-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.service-tag {
    background: var(--gray-light);
    color: var(--navy);
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 10px;
}

.service-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.service-link-primary {
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.15s;
}

.service-link-primary:hover {
    background: var(--accent-light);
}

.service-link-secondary {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--navy);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-bottom: 2px solid var(--gray-light);
    padding-bottom: 2px;
    transition: border-color 0.15s;
}

.service-link-secondary:hover {
    border-color: var(--navy);
}

.service-card .accent-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s;
}

.service-card:hover .accent-bar {
    transform: scaleX(1);
}

.service-img {
    margin: 0 -32px 16px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* ── COVERAGE BAND ── */
.coverage-band {
    background: var(--navy);
    padding: 48px 24px;
    text-align: center;
    color: white;
}

.coverage-band-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.coverage-band p.label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.coverage-band h2 {
    font-family: var(--font-head);
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.coverage-band h2 em {
    font-style: normal;
    color: var(--accent);
}

.coverage-band p.desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 32px;
}

.coverage-areas {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.coverage-area-tag {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 16px;
}

/* ── GALLERY ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.6);
}

.gallery-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.6));
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gallery-item:hover .gallery-label {
    opacity: 1;
}

.gallery-item:nth-child(1) {
    grid-row: span 2;
    aspect-ratio: auto;
}

/* ── GALLERY WRAPPER (WP Gallery support) ── */
.gallery-wrapper .gallery,
.gallery-wrapper .wp-block-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.gallery-wrapper .gallery .gallery-item,
.gallery-wrapper .wp-block-gallery .wp-block-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    margin: 0;
    padding: 0;
    width: 100% !important;
    flex: none !important;
}

.gallery-wrapper .gallery .gallery-item img,
.gallery-wrapper .wp-block-gallery .wp-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-wrapper .gallery .gallery-item:hover img,
.gallery-wrapper .wp-block-gallery .wp-block-image:hover img {
    transform: scale(1.05);
    filter: brightness(0.6);
}

.gallery-wrapper .gallery .gallery-caption,
.gallery-wrapper .wp-block-gallery .blocks-gallery-caption,
.gallery-wrapper .wp-block-gallery figcaption {
    display: none;
}

/* ── WHY US ── */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.why-content .section-head {
    margin-bottom: 32px;
}

.why-list {
    list-style: none;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-light);
}

.why-list li:first-child {
    border-top: 1px solid var(--gray-light);
}

.why-num {
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-light);
    line-height: 1;
    flex-shrink: 0;
    width: 36px;
}

.why-text-title {
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--navy);
    margin-bottom: 4px;
}

.why-text-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.why-visual {
    background: var(--navy);
    padding: 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.why-visual::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 160px;
    height: 160px;
    border: 30px solid rgba(200, 90, 58, 0.12);
    border-radius: 50%;
}

.why-quote {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
}

.why-quote em {
    font-style: normal;
    color: var(--accent);
}

.why-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.stars {
    color: var(--accent);
    font-size: 18px;
    letter-spacing: 2px;
}

.why-rating-num {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
}

.why-rating-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}

.why-certifications {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cert-badge {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* ── CONTACT ── */
.contact-section {
    background: var(--navy);
    color: white;
    padding: 72px 24px;
}

.contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info .section-label {
    color: var(--accent);
}

.contact-info .section-title {
    color: white;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 28px;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    color: white;
}

.contact-detail-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 3px;
}

.contact-detail-value {
    font-size: 16px;
    font-weight: 500;
    color: white;
}

.contact-detail-value a {
    color: inherit;
    text-decoration: none;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-row {
    margin-bottom: 16px;
}

.form-row label {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 16px;
    outline: none;
    transition: border-color 0.15s;
    -webkit-appearance: none;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: var(--accent);
}

.form-row textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row select option {
    background: var(--navy);
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-submit {
    background: var(--accent);
    color: white;
    border: none;
    padding: 14px 28px;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    transition: background 0.15s;
}

.form-submit:hover {
    background: var(--accent-light);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-feedback {
    margin-top: 12px;
    font-size: 14px;
    display: none;
}

.form-feedback.form-success,
.form-feedback.form-error {
    display: block;
    padding: 12px 14px;
    border-radius: 2px;
}

.form-feedback.form-success {
    background: rgba(34, 120, 60, 0.25);
    border: 1px solid rgba(34, 120, 60, 0.4);
    color: #6ee69a;
}

.contact-form--sent .form-feedback.form-success {
    font-size: 16px;
    padding: 16px 18px;
    text-align: center;
}

.form-feedback.form-error {
    background: rgba(180, 40, 40, 0.25);
    border: 1px solid rgba(180, 40, 40, 0.4);
    color: #f08080;
}

/* ── MAP ── */
.map-wrap {
    position: relative;
    width: 100%;
    height: 420px;
    pointer-events: none;
}

.map-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #354045;
    opacity: 0.2;
    mix-blend-mode: color;
    z-index: 450;
    pointer-events: none;
}

.map-leaflet {
    width: 100%;
    height: 100%;
}

.map-leaflet .leaflet-tile {
    filter: grayscale(0.5) sepia(0.15) saturate(0.6) brightness(0.95);
}

.mj-map-marker {
    background: transparent !important;
    border: 0 !important;
}

/* ── FOOTER ── */
footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.55);
    padding: 48px 24px 24px;
    font-size: 14px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
}

.footer-about {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.7;
    margin-top: 12px;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.footer-social a {
    color: #fff;
    font-size: 28px;
    transition: color 0.15s;
}

.footer-social a:hover {
    color: var(--primary);
}

.footer-col-title {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.15s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 13px;
}

.footer-badge {
    background: var(--accent);
    color: white;
    padding: 3px 8px;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .topbar-inner {
        flex-direction: column;
        gap: 8px;
        font-size: 14px;
    }

    .topbar-inner .topbar-location {
        display: none;
    }

    .topbar-inner .topbar-sep {
        display: none;
    }

    .topbar-inner .topbar-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        padding: 4px 0;
    }

    .header-inner {
        padding: 0 24px;
    }

    nav a:not(.nav-cta) {
        display: none;
    }

    .hero {
        padding: 48px 24px 48px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-left: 0;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        max-width: 100%;
    }

    .hero-visual {
        display: none;
    }

    .hero-stats {
        margin-top: 28px;
        padding-top: 24px;
    }

    .intro-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-visual {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .why-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .why-visual {
        padding: 28px;
    }

    .section-title {
        font-size: 32px;
    }

    .section {
        padding: 48px 24px;
    }

    .contact-section {
        padding: 48px 24px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .map-wrap {
        height: 300px;
    }

    .gallery-grid,
    .gallery-wrapper .gallery,
    .gallery-wrapper .wp-block-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:nth-child(1) {
        grid-row: auto;
        aspect-ratio: 4 / 3;
    }

    .coverage-band h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .gallery-grid,
    .gallery-wrapper .gallery,
    .gallery-wrapper .wp-block-gallery {
        grid-template-columns: 1fr;
    }

    .logo-text {
        font-size: 15px;
    }

    .logo-text span {
        display: none;
    }

    .logo-mark {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .logo {
        gap: 8px;
    }

    .nav-cta {
        white-space: nowrap;
        font-size: 13px !important;
        padding: 8px 14px !important;
    }

    .header-inner {
        height: 56px;
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero {
        padding: 36px 20px 36px;
    }

    .hero-stat-num {
        font-size: 28px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        text-align: center;
    }

    .section-title {
        font-size: 26px;
    }

    .section {
        padding: 36px 16px;
    }

    .contact-section {
        padding: 36px 16px;
    }

    .contact-form {
        padding: 24px 20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .map-wrap {
        height: 240px;
    }

    .intro-title {
        font-size: 30px;
    }

    .service-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .service-link-primary,
    .service-link-secondary {
        justify-content: center;
    }
}

/* ── PASSWORD OVERLAY ── */
.password-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 39, 68, 0.97);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.password-overlay.hidden {
    display: none;
}

.password-box {
    background: var(--white);
    padding: 48px 40px 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.password-box h2 {
    font-family: var(--font-head);
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 4px;
}

.password-box p {
    color: var(--gray-mid);
    font-size: 15px;
    margin-bottom: 28px;
}

.password-box form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.password-box input[type="password"] {
    padding: 12px 16px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.2s;
}

.password-box input[type="password"]:focus {
    border-color: var(--primary);
}

.password-box button {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-head);
    cursor: pointer;
    transition: background 0.2s;
}

.password-box button:hover {
    background: var(--primary-muted);
}

.password-error {
    color: #dc2626;
    font-size: 14px;
    display: none;
    margin-top: -4px;
}

.password-error.show {
    display: block;
}


/* ── SERVICE PAGE HERO ── *//* ── PAGE HERO ── */
.page-hero {
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 96px 24px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(1px);
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.75) 100%);
}
.page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.page-hero .hero-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.page-hero h1 em {
  font-style: normal;
  color: var(--accent);
  display: block;
  font-size: 32px;
  margin-top: 8px;
  letter-spacing: 1px;
}
.page-hero p.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 20px;
}
.page-hero p.breadcrumb a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}
.page-hero p.breadcrumb a:hover { color: white; }

/* ── CONTENT LAYOUT ── */
.section { padding: 72px 24px; }
.section-alt { background: var(--cream); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-head { margin-bottom: 48px; }
.section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: 0.5px;
}
.section-title em { font-style: normal; color: var(--accent); }
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 640px;
  line-height: 1.7;
}

.content-block {
  max-width: 780px;
}
.content-block p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.content-block p:last-child { margin-bottom: 0; }
.content-block .lead {
  font-size: 18px;
  color: var(--text);
  font-weight: 500;
}

/* ── CONTENT BLOCK ── */.content-block {
  max-width: 780px;
}
.content-block p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.content-block p:last-child { margin-bottom: 0; }
.content-block .lead {
  font-size: 18px;
  color: var(--text);
  font-weight: 500;
}

/* ── SYMPTOM LIST ── *//* ── SYMPTOM LIST ── */
.symptom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.symptom-item {
  background: var(--white);
  border-left: 3px solid var(--accent);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.section-alt .symptom-item { background: var(--white); }
.symptom-item:hover { box-shadow: 0 4px 16px rgba(26,39,68,0.08); }
.symptom-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: white;
}
.symptom-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
  margin-bottom: 6px;
}
.symptom-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── PROCESS STEPS ── *//* ── PROCESS STEPS ── */
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gray-light);
  border: 1px solid var(--gray-light);
  margin-top: 40px;
}
.process-step {
  background: var(--white);
  padding: 32px 28px;
  position: relative;
}
.section-alt .process-step { background: var(--cream); }
.process-step-num {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.process-step-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
  margin-bottom: 8px;
}
.process-step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── CALLOUT BOX ── *//* ── CALLOUT BOX ── */
.callout {
  background: var(--navy);
  padding: 36px 32px;
  margin-top: 48px;
  position: relative;
  overflow: hidden;
}
.callout::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: rgba(200,90,58,0.08);
  border-radius: 50%;
}
.callout-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
  margin-bottom: 12px;
}
.callout-title em { font-style: normal; color: var(--accent); }
.callout p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}
.callout p:last-child { margin-bottom: 0; }

/* ── CTA BAND ── *//* ── CTA BAND ── */
.cta-band {
  background: var(--navy);
  padding: 72px 24px;
  text-align: center;
  color: white;
}
.cta-band-inner { max-width: 600px; margin: 0 auto; }
.cta-band h2 {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.cta-band h2 em { font-style: normal; color: var(--accent); }
.cta-band p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 32px;
}
.cta-band .btn-primary {
  background: var(--accent);
  color: white;
  padding: 14px 32px;
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  transition: background 0.15s;
}
.cta-band .btn-primary:hover { background: var(--accent-light); }

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── SERVICE PAGE RESPONSIVE ── */
@media (max-width: 768px) {
  .symptom-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .page-hero { padding: 36px 16px; }
  .page-hero h1 { font-size: 28px; }
  .page-hero h1 em { font-size: 18px; }
  .cta-band { padding: 36px 16px; }
  .cta-band h2 { font-size: 22px; }
  .process-step { padding: 24px 20px; }
  .symptom-item { padding: 20px; }
}

/* ── TRUST TICKER ── */
.trust-ticker { display: none; }

@media (max-width: 1024px) {
  .trust-inner { display: none; }
  .trust-ticker {
    display: block;
    overflow: hidden;
    padding: 14px 0;
    background: var(--accent);
  }
  .trust-track {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: ticker-scroll var(--ticker-duration, 15s) linear infinite;
  }
  .trust-track .trust-item {
    flex-shrink: 0;
  }
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}