:root {
    --black: #050607;
    --charcoal: #0d1013;
    --charcoal-2: #15191d;
    --charcoal-3: #1b2026;
    --bronze: #c58a55;
    --bronze-dark: #9f6b3d;
    --bronze-light: #e6b985;
    --steel: #7f92a3;
    --steel-dark: #526575;
    --light: #f5f2ed;
    --light-2: #ebe5dc;
    --white: #ffffff;
    --muted: #b9bec3;
    --dark-text: #15191d;
    --soft-text: #5e656d;
    --border-dark: rgba(255, 255, 255, 0.12);
    --border-light: rgba(12, 16, 19, 0.12);
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
    --shadow-soft: 0 18px 50px rgba(15, 19, 23, 0.12);
    --radius: 24px;
    --radius-sm: 14px;
    --container: 1180px;
    --header-height: 88px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    background: var(--light);
    color: var(--dark-text);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

.site-main {
    background: var(--light);
}

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

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

p {
    margin: 0 0 1rem;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem;
    font-family: "Montserrat", "Inter", Arial, sans-serif;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

h1 {
    font-size: clamp(3rem, 7vw, 6.8rem);
}

h2 {
    font-size: clamp(2.1rem, 4vw, 4.1rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.6rem);
}

::selection {
    background: var(--bronze);
    color: var(--black);
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.skip-link:focus {
    clip: auto !important;
    clip-path: none;
    display: block;
    height: auto;
    left: 12px;
    top: 12px;
    width: auto;
    z-index: 99999;
    padding: 12px 16px;
    background: var(--bronze);
    color: var(--black);
    border-radius: 10px;
}

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

.container.narrow {
    width: min(calc(100% - 40px), 880px);
}

.section {
    padding: clamp(72px, 9vw, 130px) 0;
}

.section-dark {
    background: radial-gradient(circle at top left, rgba(197, 138, 85, 0.12), transparent 38%), linear-gradient(135deg, var(--black), var(--charcoal));
    color: var(--light);
}

.section-light {
    background: linear-gradient(180deg, var(--light), #fffaf4);
    color: var(--dark-text);
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--bronze-light);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-kicker::before {
    content: "";
    display: inline-block;
    width: 42px;
    height: 1px;
    background: currentColor;
}

.section-kicker.dark {
    color: var(--bronze-dark);
}

.section-heading {
    max-width: 800px;
    margin-bottom: 46px;
}

.section-heading p {
    max-width: 690px;
    color: var(--soft-text);
    font-size: 1.06rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 16px 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    letter-spacing: -0.01em;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--bronze-light), var(--bronze));
    color: var(--black);
    box-shadow: 0 16px 40px rgba(197, 138, 85, 0.24);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--bronze), var(--bronze-dark));
}

.btn-outline {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.22);
    color: var(--light);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--bronze);
}

.btn-small {
    min-height: 44px;
    padding: 11px 18px;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, rgba(5, 6, 7, 0.86), rgba(5, 6, 7, 0.22));
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    transition: background 180ms ease, height 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
    height: 76px;
    background: rgba(5, 6, 7, 0.92);
    border-color: rgba(255, 255, 255, 0.1);
}

.header-inner {
    display: grid;
    grid-template-columns: 220px 1fr auto;
    align-items: center;
    gap: 28px;
}

.brand-wrap {
    display: flex;
    align-items: center;
    min-width: 0;
}

.site-logo,
.custom-logo-link {
    display: inline-flex;
    align-items: center;
    max-width: 215px;
}

.site-logo img,
.custom-logo-link img {
    display: block;
    max-height: 52px;
    width: auto;
    object-fit: contain;
}

.primary-nav {
    justify-self: center;
}

.menu-list {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.menu-list a {
    color: rgba(245, 242, 237, 0.78);
    font-size: 0.94rem;
    font-weight: 700;
    transition: color 180ms ease;
}

.menu-list a:hover,
.menu-list .current-menu-item > a {
    color: var(--bronze-light);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-phone {
    color: rgba(245, 242, 237, 0.86);
    font-weight: 800;
    white-space: nowrap;
}

.mobile-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: var(--light);
    transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero-section {
    position: relative;
    min-height: 100svh;
    padding: calc(var(--header-height) + 86px) 0 72px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 18%, rgba(197, 138, 85, 0.18), transparent 36%), linear-gradient(100deg, rgba(5, 6, 7, 0.94), rgba(5, 6, 7, 0.74) 42%, rgba(5, 6, 7, 0.32));
    z-index: 1;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 180px;
    background: linear-gradient(to top, var(--light), rgba(245, 242, 237, 0.72) 10%, transparent 78%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 84px 84px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 74%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 52px;
    align-items: end;
}

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

.hero-copy p {
    max-width: 650px;
    color: rgba(245, 242, 237, 0.82);
    font-size: clamp(1.04rem, 1.5vw, 1.22rem);
}

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

.hero-trust-line {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.hero-trust-line span {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 8px 13px;
    color: rgba(245, 242, 237, 0.72);
    font-size: 0.86rem;
    background: rgba(255, 255, 255, 0.05);
}

.hero-card {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(13, 16, 19, 0.82), rgba(13, 16, 19, 0.54));
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.hero-card-label {
    color: var(--bronze-light);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    font-weight: 900;
}

.hero-card h2 {
    margin-top: 12px;
    font-size: 1.65rem;
}

.hero-card p {
    color: var(--muted);
}

.hero-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 22px;
}

.hero-card-grid div {
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-card-grid strong {
    display: block;
    color: var(--bronze-light);
    font-size: 0.86rem;
}

.hero-card-grid span {
    color: var(--light);
    font-weight: 800;
}


.homepage-builder-content {
    margin: 0;
    padding: 0;
    background: var(--light);
    color: var(--dark-text);
    position: relative;
    z-index: 3;
}

.homepage-builder-content > *:first-child,
.homepage-builder-content .elementor > *:first-child,
.homepage-builder-content .entry-content > *:first-child,
.homepage-builder-content .wp-block-group:first-child,
.homepage-builder-content .wp-block-cover:first-child,
.homepage-builder-content .elementor-section:first-child,
.homepage-builder-content .e-con:first-child {
    margin-top: 0 !important;
}

.homepage-builder-content > *:last-child,
.homepage-builder-content .elementor > *:last-child,
.homepage-builder-content .wp-block-group:last-child,
.homepage-builder-content .wp-block-cover:last-child,
.homepage-builder-content .elementor-section:last-child,
.homepage-builder-content .e-con:last-child {
    margin-bottom: 0 !important;
}

.homepage-builder-content .alignfull {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
}

.homepage-builder-content .wp-block-group,
.homepage-builder-content .wp-block-cover,
.homepage-builder-content .e-con,
.homepage-builder-content .elementor-section {
    color: inherit;
}

.homepage-builder-content h1,
.homepage-builder-content h2,
.homepage-builder-content h3,
.homepage-builder-content h4,
.homepage-builder-content h5,
.homepage-builder-content h6 {
    color: var(--dark-text);
}

.homepage-builder-content p,
.homepage-builder-content li {
    color: var(--soft-text);
}

.homepage-builder-content a:not(.btn) {
    color: var(--bronze-dark);
}

.homepage-builder-content .has-background,
.homepage-builder-content .wp-block-cover,
.homepage-builder-content .elementor-section,
.homepage-builder-content .e-con {
    box-sizing: border-box;
}

.trust-strip {
    background: var(--white);
    color: var(--dark-text);
    border-top: 1px solid rgba(21, 25, 29, 0.08);
    border-bottom: 1px solid rgba(21, 25, 29, 0.08);
    box-shadow: 0 10px 35px rgba(15, 19, 23, 0.045);
}

.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-strip-grid div {
    padding: 24px 24px;
    border-right: 1px solid rgba(21, 25, 29, 0.08);
}

.trust-strip-grid div:first-child {
    border-left: 1px solid rgba(21, 25, 29, 0.08);
}

.trust-strip-grid span {
    display: block;
    color: var(--bronze);
    font-weight: 900;
    margin-bottom: 4px;
}

.trust-strip-grid strong {
    display: block;
    color: var(--dark-text);
    font-size: 0.98rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    min-height: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(21, 25, 29, 0.08);
}

.service-card a {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.service-image {
    min-height: 260px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 6, 7, 0.38), transparent 70%);
}

.service-content {
    padding: 26px;
    flex: 1;
}

.service-content span {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--bronze-dark);
    font-weight: 900;
    letter-spacing: 0.12em;
}

.service-content h3,
.service-content h2 {
    margin-bottom: 12px;
    color: var(--dark-text);
    font-size: 1.45rem;
}

.service-content p {
    color: var(--soft-text);
    min-height: 78px;
}

.service-content strong {
    display: inline-flex;
    color: var(--dark-text);
    font-weight: 900;
    margin-top: 8px;
}

.service-content strong::after {
    content: "→";
    margin-left: 8px;
    color: var(--bronze-dark);
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(32px, 6vw, 76px);
    align-items: center;
}

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

.split-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 6, 7, 0.72), transparent 58%);
}

.image-badge {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    padding: 20px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(5, 6, 7, 0.56);
    backdrop-filter: blur(16px);
}

.image-badge strong,
.image-badge span {
    display: block;
}

.image-badge strong {
    font-size: 1.2rem;
}

.image-badge span {
    color: var(--muted);
}

.split-copy p {
    color: rgba(245, 242, 237, 0.75);
    max-width: 620px;
    font-size: 1.06rem;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 34px;
}

.feature-list div {
    padding: 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-list strong,
.feature-list span {
    display: block;
}

.feature-list strong {
    color: var(--light);
    margin-bottom: 6px;
}

.feature-list span {
    color: var(--muted);
    font-size: 0.93rem;
}

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

.process-card {
    padding: 28px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid rgba(21, 25, 29, 0.08);
    box-shadow: var(--shadow-soft);
}

.process-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    margin-bottom: 26px;
    background: var(--charcoal);
    color: var(--bronze-light);
    font-weight: 900;
}

.process-card h3 {
    color: var(--dark-text);
}

.process-card p {
    color: var(--soft-text);
}

.gallery-band {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    min-height: 520px;
    background: var(--black);
    overflow: hidden;
}

.gallery-item {
    background-size: cover;
    background-position: center;
    min-height: 520px;
    filter: saturate(0.88) contrast(1.02);
}

.gallery-item.large {
    min-height: 560px;
}

.gallery-caption {
    position: absolute;
    left: 50%;
    bottom: 42px;
    width: min(520px, calc(100% - 40px));
    transform: translateX(-50%);
    padding: 28px;
    border-radius: var(--radius);
    background: rgba(5, 6, 7, 0.74);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow);
    text-align: center;
}

.gallery-caption span {
    color: var(--bronze-light);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 900;
    font-size: 0.75rem;
}

.gallery-caption h2 {
    font-size: clamp(1.45rem, 3vw, 2.2rem);
    margin: 10px 0 16px;
}

.gallery-caption a {
    color: var(--bronze-light);
    font-weight: 900;
}

.quote-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.75fr);
    gap: clamp(32px, 6vw, 70px);
    align-items: start;
}

.quote-copy p {
    color: rgba(245, 242, 237, 0.76);
    font-size: 1.07rem;
    max-width: 600px;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 30px;
}

.contact-cards a,
.contact-info-list a,
.contact-info-list div {
    display: block;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.055);
}

.contact-cards span,
.contact-info-list span {
    display: block;
    margin-bottom: 4px;
    color: var(--bronze-light);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-cards strong,
.contact-info-list strong {
    display: block;
    color: var(--light);
    font-size: 0.98rem;
    word-break: break-word;
}

.quote-panel {
    padding: clamp(22px, 4vw, 34px);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(145deg, rgba(21, 25, 29, 0.9), rgba(13, 16, 19, 0.82));
    box-shadow: var(--shadow);
}

.quote-panel h2 {
    font-size: 1.8rem;
}

.quote-form {
    display: grid;
    gap: 16px;
}

.form-row.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.quote-form label {
    display: grid;
    gap: 7px;
    color: rgba(245, 242, 237, 0.88);
    font-weight: 800;
    font-size: 0.9rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.075);
    color: var(--light);
    padding: 14px 15px;
    font: inherit;
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.quote-form select option {
    color: var(--dark-text);
}

.quote-form textarea {
    resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    border-color: var(--bronze);
    box-shadow: 0 0 0 4px rgba(197, 138, 85, 0.16);
    background: rgba(255, 255, 255, 0.1);
}

.quote-form ::placeholder {
    color: rgba(245, 242, 237, 0.42);
}

.form-note {
    margin: 0;
    color: rgba(245, 242, 237, 0.52);
    font-size: 0.82rem;
    text-align: center;
}

.form-success,
.form-error {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 800;
}

.form-success {
    background: rgba(93, 190, 139, 0.14);
    border: 1px solid rgba(93, 190, 139, 0.3);
    color: #baf2d0;
}

.form-error {
    background: rgba(220, 85, 85, 0.14);
    border: 1px solid rgba(220, 85, 85, 0.3);
    color: #ffd2d2;
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(28px, 6vw, 76px);
}

.faq-intro p {
    color: var(--soft-text);
}

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

.faq-list details {
    border: 1px solid var(--border-light);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 12px 30px rgba(15, 19, 23, 0.06);
    overflow: hidden;
}

.faq-list summary {
    cursor: pointer;
    padding: 20px 22px;
    color: var(--dark-text);
    font-weight: 900;
    list-style: none;
}

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

.faq-list summary::after {
    content: "+";
    float: right;
    color: var(--bronze-dark);
}

.faq-list details[open] summary::after {
    content: "–";
}

.faq-list details p {
    padding: 0 22px 20px;
    color: var(--soft-text);
}

.site-footer {
    background: var(--black);
    color: var(--light);
}

.footer-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 34px;
    align-items: center;
    padding: 72px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta h2 {
    font-size: clamp(2rem, 4vw, 3.6rem);
}

.footer-cta p {
    max-width: 660px;
    color: var(--muted);
}

.footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 0.5fr 0.7fr;
    gap: 60px;
    padding: 52px 0;
}

.footer-brand p {
    max-width: 420px;
    margin-top: 18px;
    color: var(--muted);
}

.footer-links {
    display: grid;
    align-content: start;
    gap: 8px;
}

.footer-links h3 {
    font-size: 1rem;
    color: var(--bronze-light);
    letter-spacing: 0;
}

.footer-links a,
.footer-links span {
    color: var(--muted);
}

.footer-links a:hover {
    color: var(--bronze-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(245, 242, 237, 0.55);
    font-size: 0.88rem;
}

.footer-bottom p {
    margin: 0;
}

.page-main {
    background: var(--light);
}

.page-hero {
    position: relative;
    padding: calc(var(--header-height) + 90px) 0 90px;
    overflow: hidden;
}

.page-hero-image {
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
}

.page-hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(5,6,7,0.92), rgba(5,6,7,0.62), rgba(5,6,7,0.42));
    z-index: 0;
}

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

.page-hero p {
    max-width: 650px;
    color: rgba(245, 242, 237, 0.78);
    font-size: 1.08rem;
}

.content-section {
    padding-top: 70px;
}

.content-wrap {
    color: var(--dark-text);
    font-size: 1.06rem;
}

.content-wrap h2,
.content-wrap h3,
.content-wrap h4 {
    margin-top: 1.6em;
    color: var(--dark-text);
}

.content-wrap p,
.content-wrap li {
    color: var(--soft-text);
}

.content-wrap a {
    color: var(--bronze-dark);
    font-weight: 800;
}

.content-wrap ul,
.content-wrap ol {
    padding-left: 1.4em;
}

.single-featured-image {
    background: var(--light);
    padding: 34px 0 0;
    text-align: center;
}

.single-featured-image img {
    width: min(calc(100% - 40px), 1120px);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

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

.post-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.post-thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.post-card-content {
    padding: 24px;
    color: var(--dark-text);
}

.post-card-content span {
    color: var(--bronze-dark);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.post-card-content h2 {
    font-size: 1.4rem;
    margin-top: 8px;
}

.post-card-content p {
    color: var(--soft-text);
}

.text-link {
    color: var(--bronze-dark);
    font-weight: 900;
}

.pagination-wrap {
    grid-column: 1 / -1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(28px, 6vw, 76px);
    align-items: start;
}

.contact-details h2,
.contact-details p {
    color: var(--dark-text);
}

.contact-details p {
    color: var(--soft-text);
}

.contact-info-list {
    display: grid;
    gap: 14px;
    margin-top: 30px;
}

.contact-info-list a,
.contact-info-list div {
    border-color: rgba(21, 25, 29, 0.1);
    background: var(--white);
    box-shadow: 0 12px 30px rgba(15, 19, 23, 0.06);
}

.contact-info-list span {
    color: var(--bronze-dark);
}

.contact-info-list strong {
    color: var(--dark-text);
}

.light-form {
    background: var(--charcoal);
    border-color: rgba(21, 25, 29, 0.12);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 44px;
    align-items: start;
}

.sticky-panel {
    position: sticky;
    top: 110px;
}

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

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

@media (max-width: 1080px) {
    .header-inner {
        grid-template-columns: 190px auto auto;
    }

    .primary-nav {
        justify-self: end;
    }

    .menu-list {
        gap: 18px;
    }

    .header-phone {
        display: none;
    }

    .hero-content,
    .quote-grid,
    .split-grid,
    .contact-grid,
    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        max-width: 520px;
    }

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

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

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .sticky-panel {
        position: static;
    }
}

@media (max-width: 820px) {
    :root {
        --header-height: 76px;
    }

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

    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .site-logo,
    .custom-logo-link {
        max-width: 190px;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        justify-self: end;
    }

    .primary-nav {
        position: fixed;
        inset: var(--header-height) 14px auto 14px;
        z-index: 999;
        padding: 18px;
        border-radius: 22px;
        background: rgba(5, 6, 7, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: var(--shadow);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .primary-nav.is-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .menu-list {
        display: grid;
        gap: 4px;
    }

    .menu-list a {
        display: block;
        padding: 13px 12px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.04);
    }

    .header-cta {
        display: none;
    }

    .hero-section {
        min-height: auto;
        padding-top: calc(var(--header-height) + 70px);
    }

    .hero-copy h1 {
        font-size: clamp(2.8rem, 14vw, 4.4rem);
    }

    .hero-actions,
    .footer-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .service-grid,
    .post-grid,
    .process-grid,
    .trust-strip-grid,
    .feature-list,
    .contact-cards,
    .form-row.two-col,
    .faq-grid,
    .footer-cta,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .trust-strip-grid div,
    .trust-strip-grid div:first-child {
        border-left: 0;
        border-right: 0;
        border-bottom: 1px solid rgba(21, 25, 29, 0.08);
    }

    .split-image {
        min-height: 430px;
    }

    .gallery-band {
        grid-template-columns: 1fr;
    }

    .gallery-item,
    .gallery-item.large {
        min-height: 320px;
    }

    .gallery-caption {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        width: auto;
        margin: -80px 14px 36px;
        z-index: 3;
    }

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

@media (max-width: 520px) {
    .section {
        padding: 64px 0;
    }

    .hero-section {
        padding-bottom: 48px;
    }

    .hero-card,
    .quote-panel,
    .process-card,
    .service-content {
        padding: 22px;
    }

    .hero-card-grid {
        grid-template-columns: 1fr;
    }

    .service-image {
        min-height: 230px;
    }

    .page-hero {
        padding: calc(var(--header-height) + 66px) 0 66px;
    }

    .content-section {
        padding-top: 56px;
    }
}

/* ------------------------------------------------------------
   Elementor / builder compatibility fixes v1.0.2
   ------------------------------------------------------------ */

body.admin-bar .site-header {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

/* The header is fixed, so normal pages need their content to start below it.
   The front page hero already has its own header offset built into the hero. */
body:not(.home):not(.front-page) .site-main,
.gostruction-builder-main,
.elementor-page-main {
    padding-top: var(--header-height);
}

body:not(.home):not(.front-page) .site-main .page-hero:first-child {
    margin-top: 0;
}

/* Elementor pages should be true full width. Do not force a theme container,
   title hero, entry margins, or accidental top gaps. */
.elementor-page-main,
.gostruction-builder-main {
    background: var(--light);
    overflow-x: clip;
}

.gostruction-elementor-page,
.gostruction-elementor-page > .entry-content,
.gostruction-elementor-page .elementor,
.gostruction-elementor-page .elementor-section-wrap {
    width: 100%;
    max-width: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

.gostruction-elementor-page > *:first-child,
.gostruction-elementor-page .elementor > *:first-child,
.gostruction-elementor-page .elementor-section-wrap > *:first-child,
.gostruction-elementor-page .e-con:first-child,
.gostruction-elementor-page .elementor-section:first-child,
.homepage-builder-content > *:first-child,
.homepage-builder-content .elementor > *:first-child,
.homepage-builder-content .elementor-section-wrap > *:first-child,
.homepage-builder-content .e-con:first-child,
.homepage-builder-content .elementor-section:first-child {
    margin-top: 0 !important;
}

.gostruction-elementor-page .elementor-widget:first-child,
.homepage-builder-content .elementor-widget:first-child {
    margin-top: 0 !important;
}

/* Stops Elementor's first container from visually sliding underneath the fixed header. */
.elementor-page-main .gostruction-elementor-page > .elementor:first-child,
.gostruction-builder-main .gostruction-elementor-page > .elementor:first-child {
    display: flow-root;
}

/* Home page custom Elementor/Gutenberg content appears immediately after the built-in hero. */
.home .homepage-builder-content,
.front-page .homepage-builder-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
    display: flow-root;
}

.home .homepage-builder-content + .trust-strip,
.front-page .homepage-builder-content + .trust-strip {
    margin-top: 0;
}

/* Prevent default WordPress content margins from adding a mystery white strip above sections. */
.content-wrap > *:first-child,
.entry-content > *:first-child {
    margin-top: 0;
}

.content-wrap > *:last-child,
.entry-content > *:last-child {
    margin-bottom: 0;
}

/* Better defaults for Elementor sections placed inside the GoStruction theme. */
.elementor-page .site-main .elementor-section,
.elementor-page .site-main .e-con,
.homepage-builder-content .elementor-section,
.homepage-builder-content .e-con {
    box-sizing: border-box;
}

@media (max-width: 960px) {
    body:not(.home):not(.front-page) .site-main,
    .gostruction-builder-main,
    .elementor-page-main {
        padding-top: 76px;
    }
}

/* Because normal pages now begin below the fixed header, their theme hero does
   not need to include the header height again. */
body:not(.home):not(.front-page) .site-main .page-hero:first-child {
    padding-top: 90px;
}

@media (max-width: 520px) {
    body:not(.home):not(.front-page) .site-main .page-hero:first-child {
        padding-top: 66px;
    }
}
