:root {
    --bg: #ffffff;
    --surface: #ffffff;
    --dark: #0f1b3d;
    --dark-soft: #183084;
    --text: #1a2440;
    --muted: #4d5870;
    --border: #e4e8f0;
    --accent: #f04818;
    --accent-hover: #d63d12;
    --accent-light: #ffe8e0;
    --brand-navy: #183084;
    --brand-navy-deep: #0f1b3d;
    --brand-navy-soft: #e8eefc;
    --brand-orange: #f04818;
    --brand-orange-hover: #d63d12;
    --brand-orange-soft: #fff1ea;
    --brand-sky: #5b8def;
    --brand-blue: #183084;
    --brand-yellow: #f04818;
    --brand-yellow-deep: #d63d12;
    --brand-red: #f04818;
    --brand-red-deep: #d63d12;
    --success: #166534;
    --error: #991b1b;
    --radius: 8px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --shadow: 0 8px 28px rgba(15, 27, 61, 0.08);
    --shadow-lg: 0 22px 55px rgba(15, 27, 61, 0.16);
    --font-sans: "DM Sans", system-ui, sans-serif;
    --font-display: "Myriad Pro", "DM Sans", system-ui, sans-serif;
    --font-serif: "Myriad Pro", "DM Sans", system-ui, sans-serif;
    --container: min(1380px, calc(100% - 3rem));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--accent);
    transition: color 0.2s;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.75rem); margin: 0 0 1rem; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin: 0 0 0.75rem; }
h3 { font-size: 1.35rem; margin: 0 0 0.5rem; }
h4 { font-family: var(--font-sans); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 0.75rem; color: var(--muted); }

p { margin: 0 0 1rem; }

.container {
    width: var(--container);
    margin: 0 auto;
}

/* ── Header ── */

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

.header-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 1440px;
    margin-inline: auto;
    padding: 0.5rem clamp(0.9rem, 1.8vw, 1.6rem);
    box-sizing: border-box;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--text);
    flex-shrink: 0;
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--accent);
    color: #fff;
    border-radius: 8px;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    flex-shrink: 0;
}

.site-logo-image {
    display: block;
    width: auto;
    height: 54px;
    max-width: 230px;
    border-radius: 0;
    object-fit: contain;
    flex-shrink: 0;
    background: transparent;
    padding: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 0;
    flex-shrink: 0;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--brand-navy);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    white-space: nowrap;
}

.header-phone-icon {
    color: var(--brand-orange);
}

.logo-text {
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

.site-nav {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.05rem;
    margin-left: auto;
    justify-content: flex-end;
    flex: 0 1 auto;
    min-width: 0;
}

.site-nav a {
    text-decoration: none;
    color: var(--brand-navy);
    font-size: 0.84rem;
    font-weight: 600;
    transition: color 0.15s ease, background 0.15s ease;
    white-space: nowrap;
}

.site-nav a.is-active,
.site-nav--desktop .nav-item--has-children.is-active > a {
    color: var(--brand-navy);
    font-weight: 700;
}

.site-nav--desktop > a,
.site-nav--desktop .nav-item--has-children > a {
    display: inline-flex;
    align-items: center;
    padding: 0.42rem 0.52rem;
    border-radius: 7px;
    color: var(--brand-navy);
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.1;
    box-shadow: none;
}

.site-nav--desktop > a:hover,
.site-nav--desktop .nav-item--has-children:hover > a,
.site-nav--desktop .nav-item--has-children:focus-within > a {
    color: var(--brand-orange);
    background: var(--brand-orange-soft);
}

.site-nav--desktop > a.is-active,
.site-nav--desktop .nav-item--has-children.is-active > a {
    color: var(--brand-navy);
    background: var(--brand-navy-soft);
    box-shadow: none;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-item--has-children > a {
    text-decoration: none;
    transition: color 0.15s ease, background 0.15s ease;
}

.site-nav--desktop .nav-submenu-indicator {
    display: inline-block;
    width: 0.3rem;
    height: 0.3rem;
    margin-left: 0.26rem;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-0.06rem);
    opacity: 0.5;
    flex-shrink: 0;
}

.site-nav--desktop .nav-item--has-children.is-active .nav-submenu-indicator,
.site-nav--desktop .nav-item--has-children:hover .nav-submenu-indicator,
.site-nav--desktop .nav-item--has-children:focus-within .nav-submenu-indicator {
    opacity: 0.9;
}

.site-nav--desktop .nav-submenu-toggle {
    display: none;
}

.nav-submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    padding: 0;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.nav-submenu-toggle span {
    display: block;
    width: 0.45rem;
    height: 0.45rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s;
}

.nav-item--has-children.is-open > .nav-submenu-toggle span,
.nav-mobile-item.is-open > .nav-mobile-row .nav-submenu-toggle span {
    transform: rotate(-135deg);
}

.site-nav--desktop .nav-submenu {
    position: absolute;
    top: calc(100% + 0.3rem);
    left: 0;
    margin-top: 0;
    min-width: 16rem;
    padding: 0.45rem;
    border: 1px solid rgba(24, 48, 132, 0.1);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(15, 27, 61, 0.14);
    display: none;
    flex-direction: column;
    gap: 0.08rem;
    z-index: 120;
}

.site-nav--desktop .nav-submenu::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 0.5rem;
}

.site-nav--desktop .nav-item--has-children:hover .nav-submenu,
.site-nav--desktop .nav-item--has-children:focus-within .nav-submenu {
    display: flex;
}

.nav-submenu a {
    display: block;
    padding: 0.55rem 0.7rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--brand-navy);
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.25;
    white-space: normal;
}

.nav-submenu a:hover {
    color: var(--brand-orange);
    background: var(--brand-orange-soft);
}

.nav-submenu a.is-active {
    color: var(--brand-orange);
    background: var(--brand-orange-soft);
    font-weight: 700;
}

.site-nav a:hover {
    color: var(--brand-orange);
}

.header-cta {
    flex-shrink: 0;
}


.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 46px;
    height: 46px;
    margin-left: 0;
    flex-shrink: 0;
    padding: 0;
    border: 2px solid var(--brand-navy);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.nav-toggle:hover {
    border-color: var(--brand-orange);
    background: var(--brand-orange-soft);
    box-shadow: 0 6px 16px rgba(24, 48, 132, 0.12);
}

.nav-toggle-bar {
    display: block;
    width: 20px;
    height: 2.5px;
    border-radius: 999px;
    background: var(--brand-navy);
    transition: transform 0.2s, opacity 0.2s;
}

body.nav-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

body.nav-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-nav-mobile {
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
}

.site-nav-mobile-inner {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.25rem 0 1.5rem;
}

.site-nav-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.site-nav-mobile-links a {
    display: block;
    padding: 0.75rem 0;
    text-decoration: none;
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 600;
    border-bottom: 1px solid var(--border);
}

.nav-mobile-item {
    border-bottom: 1px solid var(--border);
}

.nav-mobile-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-mobile-row > a {
    flex: 1;
    display: block;
    padding: 0.75rem 0;
    text-decoration: none;
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 600;
    border-bottom: none;
}

.nav-mobile-row .nav-submenu-toggle {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    color: var(--text);
}

.site-nav-mobile-links .nav-submenu {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 0 0.5rem 0.75rem;
}

.site-nav-mobile-links .nav-submenu[hidden] {
    display: none;
}

.site-nav-mobile-links .nav-submenu-link {
    display: block;
    padding: 0.55rem 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
}

.site-nav-mobile-links .nav-submenu-link:hover {
    color: var(--accent);
}

.site-nav-mobile-links a.is-active,
.site-nav-mobile-links .nav-submenu-link.is-active {
    color: var(--accent);
    font-weight: 600;
}

.site-nav-mobile-links .nav-mobile-item.is-active > .nav-mobile-row > a {
    color: var(--accent);
}

.site-nav-mobile-links a:hover {
    color: var(--accent);
}

body.nav-open {
    overflow: hidden;
}

/* ── Buttons ── */

.button,
button.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.925rem;
    font-weight: 600;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.button:hover,
button.button:hover {
    background: var(--accent-hover);
    color: #fff;
}

.button-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.875rem;
}

.button-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.button-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.button-light {
    background: #fff;
    color: var(--accent);
}

.button-light:hover {
    background: var(--accent-light);
    color: var(--accent-hover);
}

.button-secondary {
    background: var(--accent-light);
    color: var(--accent);
}

.button-secondary:hover {
    background: #ddd9fc;
}

.button-full {
    width: 100%;
}

.text-link {
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    color: var(--accent);
}

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

/* ── Hero (legacy demo — homepage uses .hero-home in brand block below) ── */

.hero-legacy {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 17, 24, 0.88) 0%, rgba(17, 17, 24, 0.55) 60%, rgba(91, 92, 246, 0.35) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 6rem 0;
    max-width: 720px;
    color: #fff;
}

.hero-content h1 {
    color: #fff;
}

.hero-lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 1rem;
}

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

/* ── Page hero (inner pages) ── */

.page-hero {
    position: relative;
    overflow: hidden;
    background: var(--dark);
    color: #fff;
    padding: 5rem 0 4rem;
}

.page-hero .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.page-hero .hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 24, 0.72);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero-short {
    padding: 4rem 0 3rem;
}

.page-hero h1 {
    color: #fff;
    max-width: 680px;
}

.page-hero-lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 560px;
    margin-bottom: 0;
}

.page-hero-lead a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

/* ── Sections ── */

.section {
    padding: clamp(3.75rem, 7vw, 6.25rem) 0;
}

/* Inner pages: denser vertical rhythm than the homepage */
body:not(.page-home) .section {
    padding: clamp(1.65rem, 3.2vw, 2.75rem) 0;
}

body:not(.page-home) .page-hero-short {
    padding: 2.5rem 0 2rem;
    min-height: 240px;
}

body:not(.page-home) .page-hero-short .page-hero-lead {
    max-width: 40rem;
    margin-top: 0.65rem;
}

body:not(.page-home) .section-header {
    margin-bottom: 1.15rem;
}

body:not(.page-home) .section-header.centered {
    max-width: 42rem;
}

body:not(.page-home) .section-local {
    padding-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
}

body:not(.page-home) .section-split .split-media {
    min-height: clamp(220px, 28vw, 380px);
}

body:not(.page-home) .split-content {
    padding: 0.1rem 0;
}

body:not(.page-home) .section-dh-facts {
    padding-top: 0;
    padding-bottom: 0.35rem;
}

body:not(.page-home) .dh-facts {
    padding: 0;
    gap: 0.75rem;
}

body:not(.page-home) .dh-fact {
    padding: 1rem 1.1rem;
}

body:not(.page-home) .dh-steps {
    gap: 0.85rem;
}

body:not(.page-home) .dh-step {
    padding: 1.15rem 1.15rem 1.05rem;
}

body:not(.page-home) .section-lead-wrap {
    max-width: 42rem;
    margin: 0 auto 1.15rem;
}

body:not(.page-home) .section-lead-wrap p {
    margin: 0;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.65;
}

body:not(.page-home) .split-content p,
body:not(.page-home) .narrow-content p,
body:not(.page-home) .faq-answer p {
    line-height: 1.7;
}

body:not(.page-home) .split-content p + p,
body:not(.page-home) .narrow-content p + p {
    margin-top: 0.75rem;
}

body:not(.page-home) .check-grid {
    margin-top: 0.85rem;
    gap: 0.5rem 0.95rem;
}

body:not(.page-home) .local-banner {
    min-height: 280px;
}

body:not(.page-home) .local-banner-inner {
    padding: clamp(2rem, 4vw, 3rem) 1.5rem;
}

body:not(.page-home) .trust-bar {
    margin-top: 0;
    margin-bottom: 0.35rem;
}

body:not(.page-home) .section-faq .faq-list {
    margin-top: 0.35rem;
}

body:not(.page-home) .section-dh-steps + .section,
body:not(.page-home) .section-dh-facts + .section {
    padding-top: clamp(1.5rem, 3vw, 2.4rem);
}

.section-muted {
    background: #fff;
}

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

.section-dark h2,
.section-dark h3 {
    color: #fff;
}

.section-dark p {
    color: rgba(255, 255, 255, 0.72);
}

.section-header {
    max-width: 600px;
    margin-bottom: 3rem;
}

.section-header.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-lead {
    color: var(--muted);
    font-size: 1.05rem;
}

.section-cta {
    margin-top: 2.5rem;
}

/* ── Stats ── */

.stats-bar {
    background: var(--surface);
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.stat strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.stat span {
    font-size: 0.875rem;
    color: var(--muted);
}

/* ── Service cards (home) ── */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: box-shadow 0.25s, transform 0.25s;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.service-icon {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.service-card h3 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.1rem;
}

.service-card p {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 0;
}

/* ── Split layout ── */

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.25rem, 2.5vw, 2rem);
    align-items: stretch;
}

.split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(0.25rem, 1vw, 0.75rem) 0;
}

.split-media {
    position: relative;
    min-height: clamp(280px, 42vw, 520px);
    height: 100%;
    border-radius: var(--radius-xl);
    background-color: var(--brand-navy-soft);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    isolation: isolate;
}

.split-media::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
    background:
        linear-gradient(145deg, rgba(240, 72, 24, 0.18) 0%, transparent 42%),
        linear-gradient(0deg, rgba(15, 27, 61, 0.12) 0%, transparent 45%);
    pointer-events: none;
}

.split-media img {
    display: none;
}

.split-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.check-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.82);
}

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

.check-list-light li {
    color: var(--text);
}

.text-link-light {
    color: rgba(255, 255, 255, 0.85);
}

.text-link-light:hover {
    color: #fff;
}

/* ── Work grid ── */

.work-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.25rem;
}

.work-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/10;
}

.work-card-large {
    grid-row: span 2;
    aspect-ratio: auto;
}

.work-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.work-card:hover img {
    transform: scale(1.04);
}

.work-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 17, 24, 0.85) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: #fff;
}

.work-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.35rem;
}

.work-overlay h3 {
    color: #fff;
    font-size: 1.25rem;
    margin: 0;
}

.work-overlay p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0.25rem 0 0;
}

/* ── Post cards ── */

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.post-grid--cols-1 {
    grid-template-columns: 1fr;
}

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

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

.post-grid--cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.post-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: box-shadow 0.25s;
}

.post-card:hover {
    box-shadow: var(--shadow);
}

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

.post-card-image img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform 0.35s;
}

.post-card:hover .post-card-image img {
    transform: scale(1.04);
}

.post-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.post-card-body h3 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.post-card-body h3 a {
    color: var(--text);
    text-decoration: none;
}

.post-card-body h3 a:hover {
    color: var(--accent);
}

.post-card-body p {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.post-meta {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.read-more {
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--accent);
}

.post-taxonomy,
.blog-filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.post-header .post-taxonomy {
    margin-bottom: 1rem;
}

.taxonomy-pill {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    background: var(--accent-light);
    color: var(--accent);
    border: 1px solid transparent;
    transition: background 0.2s, border-color 0.2s;
}

.taxonomy-pill:hover {
    background: #ddd9fc;
    color: var(--accent-hover);
}

.taxonomy-pill.is-active {
    background: var(--accent);
    color: #fff;
}

.taxonomy-pill-category {
    background: #ede9fe;
    color: #5b21b6;
}

.taxonomy-pill-category:hover {
    background: #ddd6fe;
    color: #4c1d95;
}

.taxonomy-pill-category.is-active {
    background: #5b21b6;
    color: #fff;
}

.taxonomy-pill-tag {
    background: #f1f5f9;
    color: #475569;
}

.taxonomy-pill-tag:hover {
    background: #e2e8f0;
    color: #334155;
}

.taxonomy-pill-tag.is-active {
    background: #334155;
    color: #fff;
}

.blog-filters-section {
    padding: 1.5rem 0 0;
}

.blog-filters {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
}

.blog-filter-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.blog-filters--minimal {
    background: transparent;
    border: none;
    padding: 0;
    gap: 0.75rem;
}

.blog-filters--minimal .blog-filter-label {
    font-size: 0.7rem;
    margin-bottom: 0.35rem;
}

.blog-filters--tabs {
    gap: 0;
    padding: 0;
    overflow: hidden;
}

.blog-filters--tabs .blog-filter-group {
    border-bottom: 1px solid var(--border);
}

.blog-filters--tabs .blog-filter-group:last-child {
    border-bottom: none;
}

.blog-filters--tabs .blog-filter-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 0.5rem;
    scrollbar-width: none;
}

.blog-filters--tabs .blog-filter-pills::-webkit-scrollbar {
    display: none;
}

.blog-filters--tabs .taxonomy-pill {
    border-radius: 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
}

.blog-filters--tabs .taxonomy-pill:hover {
    background: transparent;
    color: var(--accent);
}

.blog-filters--tabs .taxonomy-pill.is-active {
    background: transparent;
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.blog-filters--tabs .taxonomy-pill-category.is-active {
    background: transparent;
    color: #5b21b6;
    border-bottom-color: #5b21b6;
}

.blog-filters--tabs .taxonomy-pill-tag.is-active {
    background: transparent;
    color: var(--text);
    border-bottom-color: var(--text);
}

.blog-filters--compact {
    padding: 0.85rem 1rem;
}

.blog-filters--compact .blog-filter-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scrollbar-width: thin;
}

.blog-filters--compact .taxonomy-pill {
    flex-shrink: 0;
    font-size: 0.72rem;
    padding: 0.2rem 0.55rem;
}

.blog-filters--dropdown {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
}

.blog-filter-dropdown {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: min(100%, 220px);
    flex: 1;
}

.blog-filter-select {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font: inherit;
    font-size: 0.9rem;
    background: var(--bg);
    color: var(--text);
    cursor: pointer;
}

.blog-filter-select:focus {
    outline: none;
    border-color: var(--accent);
}

/* ── Blog page ── */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.blog-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: box-shadow 0.25s;
}

.blog-card:hover {
    box-shadow: var(--shadow-lg);
}

.blog-card-featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

.blog-card-featured .blog-card-image img {
    height: 100%;
    aspect-ratio: unset;
    min-height: 320px;
}

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

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

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

.blog-card-body {
    padding: 1.75rem 2rem;
}

.blog-card-body h2 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.blog-card-featured .blog-card-body h2 {
    font-size: 1.6rem;
}

.blog-card-body h2 a {
    color: var(--text);
    text-decoration: none;
}

.blog-card-body h2 a:hover {
    color: var(--accent);
}

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

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

.blog-grid--grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.blog-grid--grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.blog-grid--grid-4 .blog-card-body {
    padding: 1.25rem 1.5rem;
}

.blog-grid--grid-4 .blog-card-body h2 {
    font-size: 1rem;
}

.blog-grid--stack {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.blog-grid--list {
    grid-template-columns: 1fr;
    gap: 1rem;
}

.blog-grid--list .blog-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: stretch;
}

.blog-grid--list .blog-card-image img {
    height: 100%;
    min-height: 140px;
    aspect-ratio: unset;
}

.blog-grid--list .blog-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-grid--magazine {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.blog-card-hero {
    grid-column: 1 / -1;
}

.blog-card-hero .blog-card-image img {
    aspect-ratio: 21/9;
    max-height: 420px;
}

.blog-card-hero .blog-card-body h2 {
    font-size: 1.75rem;
}

.blog-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 2.5rem;
}

.blog-page-link,
.blog-page-current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

.blog-page-link {
    color: var(--text);
    border: 1px solid var(--border);
    background: var(--surface);
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.blog-page-link:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.blog-page-current {
    background: var(--accent);
    color: #fff;
}

/* ── Single post ── */

.post-single {
    padding-bottom: 4rem;
}

.post-header {
    background: var(--dark);
    color: #fff;
    padding: 4rem 0 3rem;
}

.post-header h1 {
    color: #fff;
    max-width: 760px;
}

.post-header .post-meta a {
    color: rgba(255, 255, 255, 0.6);
}

.post-excerpt {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.15rem;
    max-width: 640px;
}

.post-featured-image {
    margin: -2rem 0 2.5rem;
}

.post-featured-image img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.photo-credit {
    margin-top: 0.65rem;
    font-size: 0.8rem;
    color: var(--muted);
    text-align: right;
}

.photo-credit a {
    color: var(--muted);
}

.post-content {
    max-width: 720px;
    font-size: 1.05rem;
    line-height: 1.75;
}

.post-content h1 {
    margin-top: 2.5rem;
    font-size: 2rem;
    line-height: 1.2;
}

.post-content h2 {
    margin-top: 2.5rem;
    font-size: 1.6rem;
    line-height: 1.25;
}

.post-content h3 {
    margin-top: 2rem;
    font-size: 1.25rem;
    line-height: 1.3;
}

.post-content p,
.post-content ul,
.post-content ol {
    margin-bottom: 1.25rem;
}

.post-content ul,
.post-content ol {
    padding-left: 1.4rem;
}

.post-content li {
    margin-bottom: 0.35rem;
}

.post-content a {
    font-weight: 500;
}

.post-content blockquote {
    margin: 1.75rem 0;
    padding: 1rem 1.25rem;
    border-left: 4px solid #6366f1;
    background: rgba(99, 102, 241, 0.06);
    border-radius: 0 12px 12px 0;
    color: #312e81;
    font-style: italic;
}

.post-content pre,
.post-content pre.ql-syntax {
    margin: 1.5rem 0;
    padding: 1rem 1.15rem;
    background: #1e1e2e;
    color: #e8e8ef;
    border-radius: 12px;
    overflow-x: auto;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.9rem;
    line-height: 1.55;
}

.post-content code {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.9em;
    background: rgba(99, 102, 241, 0.08);
    padding: 0.15rem 0.4rem;
    border-radius: 6px;
}

.post-content pre code {
    background: none;
    padding: 0;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
    box-shadow: var(--shadow);
}

.post-content .ql-align-center {
    text-align: center;
}

.post-content .ql-align-right {
    text-align: right;
}

.post-content .ql-align-justify {
    text-align: justify;
}

.post-content img.ql-align-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.post-content img.ql-align-right {
    display: block;
    margin-left: auto;
    margin-right: 0;
}

.post-footer {
    max-width: 720px;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.post-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.post-nav-spacer {
    display: block;
}

.post-nav-link {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem 1.15rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    text-decoration: none;
    color: var(--text);
    box-shadow: var(--shadow);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.post-nav-link:hover {
    border-color: rgba(91, 92, 246, 0.35);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.post-nav-prev {
    text-align: left;
}

.post-nav-next {
    text-align: right;
    margin-left: auto;
}

.post-nav-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
}

.post-nav-prev .post-nav-label::before {
    content: '← ';
}

.post-nav-next .post-nav-label::after {
    content: ' →';
}

.post-nav-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--accent);
}

.post-nav-link:hover .post-nav-title {
    color: var(--accent-hover);
}

.post-back-link {
    display: inline-block;
}

/* ── Services page ── */

.services-list {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.service-block-reverse {
    direction: rtl;
}

.service-block-reverse > * {
    direction: ltr;
}

.service-block-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.service-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.service-block h2 {
    margin-bottom: 1rem;
}

.service-block p {
    color: var(--muted);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0;
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-size: 0.95rem;
}

.feature-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.service-price {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--muted);
}

.service-price strong {
    color: var(--text);
    font-size: 1.1rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.process-step {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
}

.process-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
}

.process-step p {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ── Contact ── */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
}

.contact-card h3 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    margin-bottom: 0.35rem;
}

.contact-card a {
    font-weight: 600;
    text-decoration: none;
}

.contact-hours {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0.25rem 0 0;
}

.contact-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 0.5rem;
}

.contact-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.section-map {
    padding: 0;
}

.contact-map {
    width: 100%;
    height: clamp(320px, 52vh, 520px);
    background: #e8eef5;
    overflow: hidden;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-form-wrap {
    min-width: 0;
}

.contact-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.content-access-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
}

.content-access-gate {
    max-width: 28rem;
    margin: 0 auto;
}

.content-access-gate-title {
    font-family: var(--font-display, inherit);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin-bottom: 0.75rem;
}

.content-access-gate-lead {
    color: var(--text-muted, #5c5c6f);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.content-access-gate-error {
    margin-bottom: 1rem;
}

.content-access-gate-form {
    margin-top: 0;
}

.contact-form-wrap .contact-notice {
    margin-bottom: 1rem;
}

.contact-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.contact-form-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 1.25rem;
}

.form-group {
    margin-bottom: 1.25rem;
    min-width: 0;
}

.form-group--full {
    grid-column: 1 / -1;
}

.form-group--half {
    grid-column: span 1;
}

.form-group--checkbox {
    display: block;
}

.form-group--checkbox-group {
    border: 0;
    padding: 0;
    margin: 0 0 1.25rem;
    min-width: 0;
}

.form-group--checkbox-group legend {
    display: block;
    width: 100%;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text);
    padding: 0;
}

.contact-checkbox-group-options {
    display: grid;
    gap: 0.75rem;
}

.contact-checkbox-group-options--vertical {
    grid-template-columns: 1fr;
}

.contact-checkbox-group-options--horizontal {
    grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
}

.contact-checkbox-option {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    min-height: 3rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    cursor: pointer;
    margin: 0;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.contact-checkbox-option:hover {
    border-color: #cbd5e1;
}

.contact-checkbox-option:has(input:checked) {
    border-color: var(--accent);
    background: rgba(37, 99, 235, 0.06);
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.08);
}

.contact-checkbox-option:focus-within {
    outline: none;
    border-color: var(--accent);
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 500;
    cursor: pointer;
    margin: 0;
}

.form-group .checkbox-label {
    display: inline-flex;
}

.checkbox-label input[type="checkbox"],
.form-group input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    min-width: 1rem;
    margin: 0;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: #fff;
    accent-color: var(--accent);
    flex-shrink: 0;
}

.checkbox-label span {
    line-height: 1.45;
}

.form-group > label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text);
}

.form-required {
    color: var(--error);
    font-weight: 700;
    margin-left: 0.15em;
}

.form-group input:not([type="checkbox"]),
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font: inherit;
    font-size: 0.95rem;
    background: var(--bg);
    transition: border-color 0.2s;
}

.form-group input:not([type="checkbox"]):focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

/* ── CTA banner ── */

.cta-banner {
    background: var(--accent);
    padding: 4rem 0;
}

.cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-banner h2 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
    max-width: 480px;
}

/* ── Newsletter ── */

.newsletter-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.newsletter-form input {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    font: inherit;
    min-width: 240px;
    background: var(--bg);
}

/* ── Footer ── */

.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.65);
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem 0 3rem;
}

.footer-brand .site-logo {
    margin-bottom: 0.75rem;
}

.footer-brand .logo-text {
    color: #fff;
}

.footer-brand p {
    font-size: 0.9rem;
    max-width: 280px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #fff;
}

.footer-contact p {
    font-size: 0.9rem;
    margin: 0;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.4);
}

/* ── 404 ── */

.error-page {
    text-align: center;
    padding: 6rem 2rem;
}

.error-page h1 {
    font-size: 6rem;
    color: var(--accent);
    opacity: 0.3;
    margin-bottom: 0.5rem;
}

.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--muted);
}

/* ── Scroll reveal & motion ── */

.reveal {
    /* Always visible by default — blank builder sections were caused by opacity:0 */
    opacity: 1;
    transform: none;
    transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js-reveal .reveal.is-visible {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    will-change: transform;
}

.tilt-card.is-tilting {
    transition: transform 0.08s ease-out;
}

.parallax-media {
    background-size: cover;
    background-position: center;
    will-change: background-position, transform;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    z-index: 400;
    background: linear-gradient(90deg, var(--brand-navy), var(--brand-orange));
    pointer-events: none;
    transform-origin: left center;
}

@keyframes hero-fade-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.hero-animate > * {
    opacity: 0;
    animation: hero-fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-animate > *:nth-child(1) { animation-delay: 0.1s; }
.hero-animate > *:nth-child(2) { animation-delay: 0.22s; }
.hero-animate > *:nth-child(3) { animation-delay: 0.34s; }
.hero-animate > *:nth-child(4) { animation-delay: 0.46s; }
.hero-animate > *:nth-child(5) { animation-delay: 0.58s; }

.hero-bg {
    animation: hero-ken-burns 20s ease-in-out infinite alternate;
}

@keyframes hero-ken-burns {
    from { transform: scale(1); }
    to { transform: scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero-animate > * {
        opacity: 1;
        animation: none;
    }

    .hero-bg {
        animation: none;
    }
}

/* ── Trust bar ── */

.trust-bar {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.trust-bar-label {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 1.25rem;
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem 3rem;
}

.trust-logo {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--muted);
    opacity: 0.55;
    transition: opacity 0.25s, color 0.25s;
}

.trust-logo:hover {
    opacity: 1;
    color: var(--text);
}

/* ── Testimonials ── */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s, transform 0.3s;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 1.5rem;
    flex: 1;
}

.testimonial-quote::before {
    content: "\201C";
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    line-height: 1;
    color: var(--accent);
    opacity: 0.4;
    margin-bottom: 0.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--muted);
    margin: 0;
}

/* ── Values grid ── */

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}

.value-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--accent-light);
}

.value-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1rem;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.value-card h3 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ── Team grid ── */

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    text-align: center;
}

.team-photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1rem;
    aspect-ratio: 3/4;
    background: var(--border);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.team-card:hover .team-photo img {
    transform: scale(1.04);
}

.team-card h3 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-bio {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

/* ── Timeline ── */

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--border);
}

.timeline-item {
    text-align: center;
    padding: 0 1rem;
    position: relative;
}

.timeline-year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.timeline-item h3 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.timeline-item p {
    font-size: 0.875rem;
    color: var(--muted);
    margin: 0;
}

/* ── FAQ accordion ── */

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    background: none;
    border: none;
    font: inherit;
    font-weight: 600;
    font-size: 1rem;
    text-align: left;
    color: var(--text);
    cursor: pointer;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: transform 0.3s, background 0.2s;
}

.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
    background: var(--accent);
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.is-open .faq-answer {
    max-height: 500px;
    padding-bottom: 1.25rem;
}

.faq-answer p {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.7;
}

/* ── Why choose us ── */

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.why-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: box-shadow 0.3s, transform 0.3s;
}

.why-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.why-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.why-card h3 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.why-card p {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 1024px) {
    .testimonial-grid,
    .values-grid,
    .team-grid,
    .why-grid,
    .post-grid--cols-3,
    .post-grid--cols-4 {
        grid-template-columns: 1fr 1fr;
    }

    .timeline {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .timeline::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .testimonial-grid,
    .values-grid,
    .team-grid,
    .why-grid,
    .timeline,
    .contact-layout,
    .contact-form-fields,
    .post-grid--cols-2,
    .post-grid--cols-3,
    .post-grid--cols-4 {
        grid-template-columns: 1fr;
    }

    .form-group--half {
        grid-column: 1 / -1;
    }
}

/* Responsive layout rules: generated from Admin → Options → Layout breakpoints */


/* ── Shared notices (contact form; admin notices live in admin.css) ── */

.notice {
    padding: 0.9rem 1rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.notice-success {
    background: #dcfce7;
    color: var(--success);
}

.notice-error {
    background: #fee2e2;
    color: var(--error);
}

.notice ul {
    margin: 0;
    padding-left: 1.2rem;
}

.contact-notice {
    align-self: start;
}

    .contact-layout .notice ul {
    margin: 0;
    padding-left: 1.1rem;
}

/* Page builder preview (admin logged in + ?builder=1) */
body.page-builder-mode [data-easy-block-id] {
    position: relative;
    cursor: pointer;
    outline: 2px dashed transparent;
    outline-offset: 4px;
    transition: outline-color 0.15s ease;
}

body.page-builder-mode [data-easy-block-id]:hover {
    outline-color: rgba(99, 102, 241, 0.55);
}

body.page-builder-mode [data-easy-block-id].is-builder-selected {
    outline: 2px solid #6366f1;
    outline-offset: 4px;
}

body.page-builder-mode [data-easy-block-id].is-builder-pending-remove,
[data-easy-block-id].is-builder-pending-remove {
    opacity: 0.38;
    filter: grayscale(0.35);
    pointer-events: none;
    outline: 2px dashed rgba(244, 63, 94, 0.55) !important;
    outline-offset: 4px;
    transition: opacity 0.25s ease, filter 0.25s ease, outline-color 0.25s ease;
}

/* Live site: wrappers must not affect layout between hero, trust bar, and sections */
.easy-block-root {
    display: contents;
}

body.page-builder-mode .easy-block-root {
    display: block;
}

/* ── Direct Heat modern brand ── */

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--brand-navy);
}

.site-header--modern {
    position: sticky;
    top: 0;
    z-index: 200;
    border-top: 4px solid var(--brand-navy);
    border-bottom: 1px solid rgba(24, 48, 132, 0.08);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
}

.site-header--modern::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 38%;
    height: 4px;
    background: var(--brand-orange);
    pointer-events: none;
}

.site-header--modern .site-logo-image {
    height: 62px;
    max-width: 260px;
}

.site-header--modern .header-inner {
    width: 100%;
    max-width: 1440px;
    margin-inline: auto;
}

.site-header--modern .header-cta.button-sm {
    padding: 0.65rem 1.05rem;
    font-size: 0.86rem;
}

.site-header--modern .header-actions {
    padding-left: 0.85rem;
    margin-left: 0;
    border-left: 1px solid rgba(24, 48, 132, 0.1);
}

.site-header--modern .site-nav--desktop {
    margin-left: auto;
}

.site-header--modern .site-nav--desktop > a,
.site-header--modern .site-nav--desktop .nav-item--has-children > a {
    font-size: 0.86rem;
    padding: 0.48rem 0.58rem;
}

.button,
.button-sm {
    background: var(--brand-orange);
    border-radius: 8px;
    text-transform: none;
    font-weight: 700;
    font-family: var(--font-display);
    letter-spacing: 0.01em;
    padding: 0.9rem 1.45rem;
    box-shadow: 0 10px 28px rgba(240, 72, 24, 0.22);
}

.button:hover,
.button-sm:hover {
    background: var(--brand-orange-hover);
    box-shadow: 0 12px 32px rgba(214, 61, 18, 0.28);
}

.button-outline {
    background: transparent;
    color: var(--brand-navy);
    border: 2px solid var(--brand-navy);
    box-shadow: none;
}

.button-outline:hover {
    background: var(--brand-navy);
    color: #fff;
}

.button-outline--light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.08);
}

.button-outline--light:hover {
    background: #fff;
    color: var(--brand-navy);
    border-color: #fff;
}

.button-light {
    background: #fff;
    color: var(--brand-navy);
    box-shadow: 0 10px 30px rgba(15, 27, 61, 0.2);
}

.button-light:hover {
    background: var(--accent-light);
    color: var(--brand-navy);
}

.site-nav--desktop > a.is-active,
.site-nav--desktop .nav-item--has-children.is-active > a {
    color: var(--brand-navy);
    background: var(--brand-navy-soft);
    box-shadow: none;
}

.nav-item--has-children > a,
.site-nav--desktop .nav-item--has-children:hover > a,
.site-nav--desktop .nav-item--has-children:focus-within > a {
    color: inherit;
}

/* Full-bleed hero */
.hero-home {
    position: relative;
    min-height: min(88vh, 820px);
    display: grid;
    align-items: end;
    overflow: hidden;
    color: #fff;
    isolation: isolate;
}

.hero-home-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-home-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% center;
    transform: scale(1.04);
    animation: heroKen 22s ease-out forwards;
}

@keyframes heroKen {
    from { transform: scale(1.08); }
    to { transform: scale(1.02); }
}

.hero-home-wash {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(15, 27, 61, 0.9) 0%, rgba(15, 27, 61, 0.68) 38%, rgba(15, 27, 61, 0.28) 68%, rgba(15, 27, 61, 0.12) 100%),
        linear-gradient(180deg, rgba(15, 27, 61, 0.22) 0%, rgba(15, 27, 61, 0.5) 100%);
}

.hero-home-flow {
    position: absolute;
    right: -10%;
    bottom: 0;
    width: min(980px, 72vw);
    max-width: none;
    height: auto;
    opacity: 0.9;
    pointer-events: none;
    z-index: 1;
    transform-origin: 75% 100%;
    /* Soft left fade so it emerges from the photo instead of sitting on it */
    -webkit-mask-image: linear-gradient(105deg, transparent 0%, transparent 18%, rgba(0,0,0,0.55) 38%, #000 58%);
    mask-image: linear-gradient(105deg, transparent 0%, transparent 18%, rgba(0,0,0,0.55) 38%, #000 58%);
    filter: none;
    animation: none;
}

@keyframes heroFlowRise {
    from {
        transform: translate3d(16px, 20px, 0) scale(0.985);
    }
    to {
        transform: translate3d(-8px, -12px, 0) scale(1.025);
    }
}

@keyframes flowDrift {
    from { transform: translate3d(0, 0, 0) rotate(0deg); }
    to { transform: translate3d(-18px, 22px, 0) rotate(2deg); }
}

.hero-home-inner {
    position: relative;
    z-index: 2;
    padding: clamp(5rem, 10vh, 7.5rem) 0 clamp(3.5rem, 7vh, 5rem);
}

.hero-home-copy {
    max-width: 34rem;
}

.hero-brand {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
}

.hero-brand::after {
    content: "";
    display: block;
    width: 3.25rem;
    height: 3px;
    margin-top: 0.7rem;
    background: var(--brand-orange);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6.5vw, 4.75rem);
    line-height: 0.95;
    margin: 0 0 1.15rem;
    text-transform: none;
    color: #fff;
}

.hero-title .navy,
.hero-title .accent {
    display: block;
}

.hero-title .navy { color: #fff; }
.hero-title .accent { color: #ff8a5c; }

.hero-home .hero-lead,
.hero-home .page-section-lead,
.hero-home p.hero-lead {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.1rem;
    line-height: 1.65;
    max-width: 30rem;
    margin: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin: 1.85rem 0 0;
}

.trust-bar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 1.35rem 0;
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--brand-navy);
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(24, 48, 132, 0.1);
}

.trust-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.section-header--ruled {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.85rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.75rem;
    position: relative;
}

.section-header--ruled h2 {
    margin: 0;
    position: relative;
    display: inline-block;
    color: var(--brand-navy);
}

.section-header--ruled h2::before,
.section-header--ruled h2::after {
    content: "";
    position: absolute;
    top: 50%;
    width: min(110px, 12vw);
    height: 2px;
    border-radius: 99px;
    background: rgba(24, 48, 132, 0.18);
}

.section-header--ruled h2::before {
    right: calc(100% + 1rem);
}
.section-header--ruled h2::after { left: calc(100% + 1rem); }

.section-header--ruled .section-lead {
    margin: 0;
    color: var(--muted);
    max-width: 36rem;
}

.section-solutions,
.section-split.section--cool,
.section-split.section--warm,
.section-split:not(.section--navy),
.section-efficiency,
.section-dh-steps,
.section-dh-facts,
.section-reviews,
.section-everyday {
    background: #fff;
}

.section-split.section--navy {
    background: linear-gradient(135deg, #101f4d 0%, #183084 55%, #1e3a9a 100%);
    color: #fff;
}

.section-split.section--navy .eyebrow {
    color: #ffb089;
}

.section-split.section--navy h2,
.section-split.section--navy .split-content p,
.section-split.section--navy .split-content li {
    color: #fff;
}

.section-split.section--navy .split-content p {
    color: rgba(255, 255, 255, 0.88);
}

.section-split.section--navy .check-grid li::before {
    color: #fff;
}

.section-split.section--navy .button-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.7);
}

.section-split.section--navy .button-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.comfort-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
}

.comfort-card {
    border: 1px solid rgba(24, 48, 132, 0.1);
    border-radius: var(--radius-xl);
    padding: 1.7rem 1.5rem 1.5rem;
    background: #fff;
    box-shadow: 0 12px 36px rgba(15, 27, 61, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}

.comfort-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand-navy);
}

.comfort-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 48px rgba(15, 27, 61, 0.12);
    border-color: rgba(24, 48, 132, 0.22);
}

.comfort-card h3 {
    margin: 0.7rem 0 0.5rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--brand-navy);
}

.comfort-card p {
    color: var(--muted);
    margin-bottom: 1rem;
}

.comfort-icon-wrap {
    position: relative;
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
}

.comfort-icon-wrap::before {
    content: "";
    position: absolute;
    inset: 6% 2% 2% 10%;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, rgba(240, 72, 24, 0.35), rgba(24, 48, 132, 0.08) 62%, transparent 72%);
    pointer-events: none;
}

.comfort-icon-img {
    position: relative;
    z-index: 1;
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block;
}

.page-home .split-layout,
.section-split .split-layout {
    gap: clamp(1.25rem, 2.5vw, 2rem);
}

.section-split .split-media {
    min-height: clamp(220px, 28vw, 380px);
}

.page-home .split-media,
.page-home .section-split .split-media {
    min-height: clamp(300px, 40vw, 560px);
}

.page-home .split-content h2,
.section-split .split-content h2 {
    font-size: clamp(2rem, 3.4vw, 2.85rem);
    line-height: 1.1;
    margin: 0 0 1rem;
    color: inherit;
}

.section-split:not(.section--navy) .split-content h2 {
    color: var(--brand-navy);
}

.section-why {
    position: relative;
    overflow: hidden;
}

.section-why .why-copy {
    position: relative;
    z-index: 1;
}

.section-why .why-copy::after {
    content: "";
    position: absolute;
    right: -24%;
    top: -5%;
    width: min(620px, 100%);
    aspect-ratio: 1;
    background: url("../../uploads/brand/flow-pattern-soft.png") center / contain no-repeat;
    opacity: 0.35;
    pointer-events: none;
    z-index: -1;
}

.check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 1.35rem;
    list-style: none;
    margin: 1.5rem 0 2rem;
    padding: 0;
}

.check-grid li {
    position: relative;
    padding: 0.7rem 0.85rem 0.7rem 2.35rem;
    color: var(--text);
    font-weight: 600;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(24, 48, 132, 0.08);
}

.section--navy .check-grid li {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.check-grid li::before {
    content: "✓";
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.72rem;
    color: #fff;
    background: var(--brand-orange);
    font-weight: 800;
}

.section-efficiency {
    background: #fff;
}

.efficiency-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
}

.efficiency-copy h2 {
    font-size: clamp(2rem, 3.2vw, 2.7rem);
    line-height: 1.12;
    color: var(--brand-navy);
}

.efficiency-media {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 420px;
}

.efficiency-flow {
    position: absolute;
    width: min(620px, 125%);
    opacity: 0.92;
    pointer-events: none;
    animation: flowDrift 16s ease-in-out infinite alternate-reverse;
}

.efficiency-photo {
    position: relative;
    z-index: 1;
    width: min(320px, 74%);
    border-radius: 50%;
    aspect-ratio: 1;
    object-fit: cover;
    box-shadow: 0 24px 60px rgba(15, 27, 61, 0.22);
    border: 6px solid rgba(255, 255, 255, 0.9);
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
}

.review-grid--page {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card {
    background: #fff;
    border: 1px solid rgba(24, 48, 132, 0.1);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    box-shadow: 0 14px 40px rgba(15, 27, 61, 0.06);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: var(--brand-navy);
}

.review-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.35rem;
}

.review-source {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-orange);
}

.review-card--marquee {
    width: min(360px, 78vw);
    min-height: 260px;
    margin: 0;
}

.reviews-marquee {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    padding: 0.5rem 0 1rem;
}

.reviews-marquee-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    animation: reviewsMarquee 55s linear infinite;
}

.reviews-marquee:hover .reviews-marquee-track {
    animation-play-state: paused;
}

.reviews-marquee-item {
    flex: 0 0 auto;
}

@keyframes reviewsMarquee {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
}

.reviews-slider {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 1rem;
}

.reviews-slider-viewport {
    overflow: hidden;
}

.reviews-slider-track {
    position: relative;
}

.reviews-slider-slide {
    width: 100%;
}

.reviews-slider-slide[hidden] {
    display: none;
}

.review-card--slider {
    min-height: 280px;
    margin: 0 auto;
    max-width: 680px;
}

.reviews-slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    margin-top: 1.35rem;
}

.reviews-slider-prev,
.reviews-slider-next {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 2px solid var(--brand-navy);
    background: #fff;
    color: var(--brand-navy);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.reviews-slider-prev:hover,
.reviews-slider-next:hover {
    background: var(--brand-navy);
    color: #fff;
}

.reviews-slider-dots {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 240px;
}

.reviews-slider-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(24, 48, 132, 0.25);
    cursor: pointer;
}

.reviews-slider-dot.is-active {
    background: var(--brand-orange);
    transform: scale(1.15);
}

.reviews-home-rating {
    display: inline-flex;
    align-items: baseline;
    gap: 0.65rem;
    margin: 0.35rem 0 0;
    color: var(--muted);
}

.reviews-home-rating strong {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--brand-navy);
    line-height: 1;
}

.reviews-score-band {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    border: 1px solid rgba(24, 48, 132, 0.1);
    border-radius: var(--radius-xl);
    background: #fff;
    box-shadow: var(--shadow);
}

.reviews-score-number {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 5rem);
    line-height: 0.95;
    color: var(--brand-navy);
    margin: 0.35rem 0;
}

.reviews-score-meta {
    color: var(--muted);
    margin: 0.5rem 0 0;
}

.section-reviews-score {
    padding-bottom: 1rem;
}

.review-quote {
    font-family: var(--font-display);
    font-size: 3.4rem;
    line-height: 1;
    color: var(--brand-navy);
    opacity: 0.85;
    margin-bottom: 0.35rem;
}

.review-card p {
    color: var(--text);
    font-size: 1.05rem;
}

.review-card cite {
    display: block;
    font-style: normal;
    font-weight: 700;
    color: var(--brand-navy);
    margin-top: 1rem;
}

.review-stars {
    color: var(--brand-orange);
    letter-spacing: 0.08em;
    margin-top: 0.45rem;
}

.section-local {
    padding-bottom: clamp(3.75rem, 7vw, 6rem);
}

.local-banner {
    position: relative;
    overflow: hidden;
    min-height: 380px;
    display: grid;
    place-items: center;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    width: var(--container);
    max-width: calc(100% - 3rem);
    margin-inline: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.local-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(15, 27, 61, 0.9), rgba(24, 48, 132, 0.72) 52%, rgba(240, 72, 24, 0.55));
}

.local-banner-inner {
    position: relative;
    z-index: 1;
    padding: clamp(3.5rem, 7vw, 5.5rem) 1.5rem;
    max-width: 760px;
}

.local-banner h2 {
    color: #fff;
    font-size: clamp(2.1rem, 4vw, 3.1rem);
    margin: 0 0 0.85rem;
}

.local-banner p { color: rgba(255, 255, 255, 0.9); }

.site-footer--modern { background: var(--brand-navy-deep); }

.footer-grid--modern {
    grid-template-columns: 1.3fr repeat(3, 1fr) 1.1fr;
    gap: 1.75rem;
}

.site-logo-image--footer {
    height: 56px;
    max-width: 220px;
    background: transparent !important;
    padding: 0 !important;
}

.footer-license,
.footer-areas {
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
}

.link-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.link-card {
    display: block;
    padding: 1.35rem 1.4rem;
    border: 1px solid rgba(24, 48, 132, 0.1);
    border-radius: var(--radius-xl);
    text-decoration: none;
    color: var(--text);
    background: #fff;
    box-shadow: 0 10px 30px rgba(15, 27, 61, 0.05);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand-navy);
}

.link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(15, 27, 61, 0.12);
    border-color: rgba(240, 72, 24, 0.35);
}

.link-card h3 {
    margin: 0 0 0.45rem;
    color: var(--brand-navy);
    font-size: 1.15rem;
}

.link-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.text-link {
    color: var(--brand-orange);
    font-weight: 700;
    text-decoration: none;
}

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

.text-link--navy {
    color: var(--brand-navy);
}

.text-link--navy:hover { color: var(--brand-orange); }

.narrow-content {
    max-width: 820px;
}

.dh-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.75rem;
}

.dh-link-cards {
    margin: 0 0 2rem;
}

.page-hero-short {
    min-height: 250px;
}

.page-home .page-hero-short {
    min-height: 320px;
}

.page-hero-short .hero-actions {
    margin-top: 1.25rem;
}

.page-hero-short .button-outline--light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.85);
}

.narrow-content h2,
.split-content h2 {
    margin-top: 2rem;
}

.narrow-content h2:first-child,
.split-content h2:first-child {
    margin-top: 0;
}

.narrow-content h3,
.split-content h3 {
    margin-top: 1.35rem;
}

.narrow-content ul,
.split-content ul {
    margin: 0.85rem 0 1.25rem;
    padding-left: 1.2rem;
}

.narrow-content li,
.split-content li {
    margin-bottom: 0.4rem;
}

.dh-note {
    margin: 2rem 0 0;
    padding: 1.25rem 1.4rem;
    border-left: 4px solid var(--brand-orange);
    background: #f7f9fc;
    border-radius: 0 10px 10px 0;
}

.dh-note h3 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
}

.section-dh-facts {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    background: transparent;
}

.dh-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 0.5rem 0 0.25rem;
}

.dh-fact {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 1.4rem 1.4rem;
    background: #fff;
    border: 1px solid rgba(24, 48, 132, 0.1);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 28px rgba(15, 27, 61, 0.05);
    position: relative;
    overflow: hidden;
}

.dh-fact::before {
    content: none;
}

.dh-fact strong {
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2.4vw, 1.95rem);
    color: var(--brand-navy);
    line-height: 1.1;
    position: relative;
}

.dh-fact span {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
}

.section-dh-steps {
    background: #fff;
}

.dh-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.dh-step {
    padding: 1.55rem 1.5rem 1.4rem;
    background: #fff;
    border: 1px solid rgba(24, 48, 132, 0.1);
    border-radius: var(--radius-xl);
    box-shadow: 0 12px 32px rgba(15, 27, 61, 0.05);
    position: relative;
    overflow: hidden;
}

.dh-step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    background: var(--brand-navy);
}

.dh-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.4rem;
    height: 2rem;
    margin-bottom: 0.75rem;
    padding: 0 0.65rem;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #fff;
    background: var(--brand-navy);
}

.dh-step h3 {
    margin: 0 0 0.55rem;
    font-size: 1.15rem;
    color: var(--brand-navy);
}

.dh-step p {
    margin: 0;
    color: var(--muted);
}

.dh-plain-list {
    margin: 0.4rem 0 0;
    padding-left: 1.1rem;
}

.dh-plain-list li {
    margin-bottom: 0.35rem;
}

.contact-form-anchor {
    scroll-margin-top: 6rem;
}

.page-hero-short {
    min-height: 360px;
}

.page-hero .hero-bg::after {
    background:
        linear-gradient(105deg, rgba(15, 27, 61, 0.78) 0%, rgba(24, 48, 132, 0.55) 48%, rgba(240, 72, 24, 0.28) 100%);
}

.faq-item {
    border-radius: 14px;
    border: 1px solid rgba(24, 48, 132, 0.1);
    background: #fff;
    margin-bottom: 0.75rem;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 27, 61, 0.05);
}

.faq-question {
    background: #fff;
}

.faq-item.is-open .faq-question {
    background: #fff;
    color: var(--brand-navy);
}

.contact-card {
    border-radius: var(--radius-xl);
    border: 1px solid rgba(24, 48, 132, 0.1);
    background: #fff;
    box-shadow: 0 12px 32px rgba(15, 27, 61, 0.05);
}

.contact-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 220px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-xl);
}

.footer-areas a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.footer-areas a:hover {
    color: #fff;
}

.page-hero h1,
.section-header h2,
.eyebrow { font-family: var(--font-display); }

.eyebrow {
    margin: 0 0 0.65rem;
    color: var(--brand-orange);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.eyebrow--light { color: #ffb89a; }

@media (prefers-reduced-motion: reduce) {
    .hero-home-photo,
    .hero-home-flow,
    .efficiency-flow,
    .reviews-marquee-track {
        animation: none !important;
    }

    .hero-home-flow {
        opacity: 0.85;
        transform: none;
    }

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

    .scroll-progress { display: none; }
}

@media (max-width: 1000px) {
    .reviews-score-band,
    .review-grid--page {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1100px) {
    /* Line graphic smears into a colour blob when scaled down — hide on tablet/under. */
    .hero-home-flow {
        display: none;
    }

    .hero-home-photo {
        object-position: 62% center;
        animation: none;
        transform: none;
    }
}

@media (max-width: 980px) {
    .hero-home { min-height: min(78vh, 700px); }
    .hero-home-wash {
        background:
            linear-gradient(180deg, rgba(15, 27, 61, 0.55) 0%, rgba(15, 27, 61, 0.82) 100%),
            linear-gradient(105deg, rgba(15, 27, 61, 0.75) 0%, rgba(15, 27, 61, 0.35) 100%);
    }

    .comfort-grid,
    .review-grid,
    .footer-grid--modern,
    .efficiency-layout,
    .split-layout,
    .dh-facts,
    .dh-steps { grid-template-columns: 1fr 1fr; }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .split-media {
        min-height: 260px;
        order: -1;
    }

    .trust-row { grid-template-columns: 1fr 1fr; }
    .section-why .why-copy::after { opacity: 0.35; right: -8%; }
}

/* Collapse header nav before items crowd / wrap; show hamburger at the same time.
   Matches Admin → Options → Layout breakpoints (tablet = 1300). CMS also injects this with !important. */
@media (max-width: 1300px) {
    .site-header .site-nav--desktop {
        display: none !important;
    }

    .site-header .header-actions .nav-toggle,
    .site-header .nav-toggle {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-shrink: 0;
        margin-left: 0;
    }

    .site-header--modern .header-actions {
        margin-left: auto;
        padding-left: 0;
        border-left: none;
        gap: 0.55rem;
    }

    .header-cta--desktop {
        display: none !important;
    }
}

@media (max-width: 700px) {
    .hero-title { font-size: clamp(2.4rem, 11vw, 3.2rem); }
    .comfort-grid,
    .review-grid,
    .check-grid,
    .trust-row,
    .footer-grid--modern,
    .efficiency-layout,
    .dh-facts,
    .dh-steps { grid-template-columns: 1fr; }

    .header-actions .header-phone { display: none; }
    .page-home .local-banner { min-height: 320px; }
    body:not(.page-home) .local-banner { min-height: 260px; }
}
