:root {
    --bg: #f4f2ee;
    --surface: #ffffff;
    --ink: #191f24;
    --ink-soft: #656d73;
    --line: rgba(25, 31, 36, 0.08);
    --brand: #ad7b3d;
    --brand-deep: #8d5d2b;
    --brand-soft: rgba(173, 123, 61, 0.14);
    --dark: #101924;
    --dark-2: #172431;
    --white: #ffffff;
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --shadow-soft: 0 18px 50px rgba(16, 24, 38, 0.08);
    --shadow-strong: 0 22px 60px rgba(16, 24, 38, 0.16);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.025;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 160px;
}

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

a {
    color: inherit;
}

.hidden {
    display: none;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -3rem;
    background: var(--dark);
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 999px;
    text-decoration: none;
    z-index: 300;
}

.skip-link:focus {
    top: 1rem;
}

.container-shell {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.serif,
.brand-mark,
.hero-title,
.section-heading h2,
.summary-card h2,
.pull-quote,
.contact-copy h2,
.page-hero-copy h1 {
    font-family: "Cormorant Garamond", serif;
}

.icon {
    width: 1.35rem;
    height: 1.35rem;
    display: inline-block;
    flex-shrink: 0;
}

.icon-sm {
    width: 1.15rem;
    height: 1.15rem;
}

.icon-inline {
    margin-top: 0.05rem;
}

.offer-banner {
    position: relative;
    background: linear-gradient(90deg, var(--brand), var(--brand-deep));
    color: var(--white);
}

.offer-banner-inner {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.75rem 3.5rem 0.75rem 1rem;
    position: relative;
}

.offer-banner p {
    margin: 0;
    text-align: center;
    font-size: 0.94rem;
    font-weight: 700;
}

.banner-close {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    opacity: 0.84;
}

.site-header {
    position: fixed;
    top: 52px;
    left: 0;
    right: 0;
    z-index: 200;
    transition: top 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled,
.page-header.static-header {
    background: rgba(16, 24, 38, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
}

.page-header.static-header {
    position: sticky;
    top: 0;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--white);
    gap: 0.28rem;
    min-height: 3.4rem;
}

.brand-logo {
    width: 4rem;
    height: 4rem;
    min-width: 4rem;
    display: block;
}

.brand-text {
    display: grid;
    gap: 0.14rem;
    line-height: 1;
    justify-items: center;
    padding: 0.85rem 0 0;
    position: relative;
    min-width: auto;
    margin-left: 0;
}

.brand-name {
    font-family: "Manrope", sans-serif;
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.86);
    padding-left: 0.16em;
}

.brand-accent {
    font-family: "Manrope", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    color: #d8a24b;
    letter-spacing: 0.52em;
    text-transform: uppercase;
    line-height: 1;
    padding-left: 0.16em;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.nav-link,
.mobile-nav-link,
.footer-nav a {
    text-decoration: none;
}

.nav-link {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.4rem;
    width: 0;
    height: 2px;
    background: var(--brand);
    transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.current::after {
    width: 100%;
}

.btn-primary,
.btn-secondary,
.mobile-quote-link,
.summary-link,
.contact-btn,
.sticky-footer a,
.form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.01em;
    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary,
.form-submit {
    background: var(--brand);
    color: var(--white);
    box-shadow: 0 14px 32px rgba(196, 104, 51, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.summary-link:hover,
.summary-link:focus-visible,
.contact-btn:hover,
.contact-btn:focus-visible,
.form-submit:hover,
.form-submit:focus-visible {
    background: var(--brand-deep);
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1.5px solid rgba(255, 255, 255, 0.72);
    color: var(--white);
    background: transparent;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
}

.nav-cta {
    padding: 0.9rem 1.3rem;
    font-size: 0.92rem;
}

.mobile-actions {
    display: none;
    align-items: center;
    gap: 0.8rem;
}

.mobile-quote-link {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.7rem 1rem;
    font-size: 0.88rem;
}

.menu-button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    display: inline-grid;
    place-items: center;
    position: relative;
}

.menu-button .menu-icon-close {
    display: none;
}

.menu-button.is-open .menu-icon-open {
    display: none;
}

.menu-button.is-open .menu-icon-close {
    display: inline-block;
}

.mobile-menu-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    background: rgba(16, 24, 38, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0 0 24px 24px;
    box-shadow: 0 24px 60px rgba(16, 24, 38, 0.22);
    overflow: hidden;
}

.mobile-nav {
    display: grid;
    gap: 0;
}

.mobile-nav-link {
    color: rgba(255, 255, 255, 0.94);
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1rem;
}

.mobile-nav-link:last-child {
    border-bottom: 0;
}


.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--dark);
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    opacity: 0.22;
    pointer-events: none;
}

.hero-tagline {
    margin: 1rem 0 1.7rem;
    max-width: 680px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1rem;
    line-height: 1.85;
}

.mobile-menu-brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1.1rem 1.3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.95);
}

.mobile-menu-brand .brand-logo {
    width: 2.1rem;
    height: 2.1rem;
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

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

.hero-overlay {
    background:
        linear-gradient(115deg, rgba(16, 24, 38, 0.92) 15%, rgba(16, 24, 38, 0.65) 52%, rgba(196, 104, 51, 0.34) 100%),
        radial-gradient(circle at top right, rgba(215, 163, 71, 0.18), transparent 30%);
}

.hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
    gap: 2rem;
    align-items: end;
    min-height: 100vh;
    padding-top: 9rem;
    padding-bottom: 4rem;
}

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

.eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.82rem 1rem;
    border-radius: 999px;
    background: rgba(196, 104, 51, 0.18);
    border: 1px solid rgba(255, 179, 127, 0.3);
    color: #ffe0ca;
    font-size: 0.92rem;
    font-weight: 800;
}

.status-dot {
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 999px;
    background: #7cf1a9;
    box-shadow: 0 0 0 0 rgba(124, 241, 169, 0.5);
    animation: pulse 2s infinite;
}

.hero-title {
    margin: 1.4rem 0 1rem;
    font-size: clamp(2.8rem, 6vw, 5.4rem);
    line-height: 0.96;
    letter-spacing: -0.035em;
    font-weight: 600;
    color: var(--white);
}

.hero-text {
    margin: 0;
    max-width: 700px;
    color: rgba(255, 250, 245, 0.88);
    font-size: 1.04rem;
    line-height: 1.95;
}

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

.hero-btn {
    min-width: 210px;
    padding: 1rem 1.4rem;
}

.hero-points {
    list-style: none;
    padding: 0;
    margin: 1.8rem 0 0;
    display: grid;
    gap: 0.9rem;
}

.hero-points li,
.contact-checklist div {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.hero-points li {
    color: rgba(255, 250, 245, 0.88);
    font-size: 0.96rem;
}

.hero-points .icon {
    color: #ffb37f;
}

.hero-summary {
    display: flex;
    justify-content: flex-end;
}

.summary-card {
    width: min(360px, 100%);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    box-shadow: var(--shadow-strong);
}

.summary-kicker,
.priority-label,
.section-kicker,
.contact-item span {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    font-weight: 800;
}

.summary-kicker {
    color: #ffd7bd;
    margin: 0 0 0.5rem;
}

.summary-card h2 {
    margin: 0 0 1.2rem;
    font-size: 2.1rem;
    line-height: 1.05;
    letter-spacing: -0.025em;
    font-weight: 600;
}

.summary-list {
    display: grid;
    gap: 1rem;
}

.summary-list div {
    display: grid;
    gap: 0.18rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.summary-list strong {
    font-size: 0.98rem;
}

.summary-list span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.94rem;
}

.summary-link {
    margin-top: 1.35rem;
    width: 100%;
    padding: 0.95rem 1.1rem;
    background: var(--white);
    color: var(--dark);
}

.trust-strip {
    background: linear-gradient(180deg, #efe3d1 0%, #f6eee2 100%);
    border-top: 1px solid rgba(16, 24, 38, 0.04);
    border-bottom: 1px solid rgba(16, 24, 38, 0.07);
}

.trust-strip-inner {
    padding: 2rem 0;
}

.trust-strip-header {
    display: grid;
    gap: 0.5rem;
    max-width: 40rem;
    margin-bottom: 1.5rem;
}

.trust-strip-header h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    line-height: 1.1;
    color: var(--dark);
}

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

.trust-card {
    padding: 1.5rem 1.35rem;
    border-radius: var(--radius-md);
    text-align: center;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(16, 24, 38, 0.08);
    box-shadow: 0 18px 40px rgba(16, 24, 38, 0.06);
    min-height: 14rem;
    display: grid;
    place-items: center;
}

.stat-number {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.1rem, 4.5vw, 4.1rem);
    line-height: 1;
    letter-spacing: -0.03em;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 0.55rem;
}

.section-pad {
    padding: clamp(3rem, 6vw, 6.5rem) 0;
}

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

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

.section-dark {
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 2.8rem;
}

.section-kicker {
    margin: 0 0 0.8rem;
    color: var(--brand);
}

.section-heading h2,
.contact-copy h2,
.page-hero-copy h1 {
    margin: 0 0 1rem;
    font-size: clamp(2.1rem, 4vw, 4rem);
    line-height: 1.03;
    letter-spacing: -0.028em;
    font-weight: 600;
}

.section-heading p,
.contact-copy p,
.coverage-card p,
.priority-card p,
.work-card-body p,
.detailed-service-card p,
.trust-card p,
.footer-copy,
.footer-bottom p,
.page-hero-copy p,
.form-note,
.form-status {
    color: var(--ink-soft);
}

.priority-services,
.feature-grid,
.detailed-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.priority-card,
.coverage-card,
.contact-card,
.feature-card,
.detailed-service-card,
.work-showcase-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.priority-card,
.feature-card,
.detailed-service-card {
    padding: 1.5rem;
}

.priority-card {
    background: linear-gradient(180deg, #fff5ed 0%, #ffffff 100%);
}

.process-grid-home .priority-card {
    min-height: 100%;
}

.priority-label {
    color: var(--brand);
}

.priority-card h3,
.feature-card h3,
.detailed-service-card h3,
.coverage-card h3,
.work-card-body h3,
.contact-card h3 {
    margin: 0.7rem 0 0.7rem;
    font-size: 1.16rem;
    line-height: 1.42;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.feature-grid {
    align-items: stretch;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

.feature-icon {
    width: 3.25rem;
    height: 3.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.08);
    color: #ffccaa;
}

.feature-card p {
    color: rgba(255, 244, 232, 0.78);
}

.text-link {
    text-decoration: none;
    font-weight: 700;
}

.text-link.on-dark,
.feature-card h3.on-dark {
    color: #fff5ea;
}

.section-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    gap: 2rem;
    align-items: start;
}

.coverage-stack {
    display: grid;
    gap: 1rem;
}

.coverage-card {
    padding: 1.5rem;
}

.quote-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.pull-quote {
    margin: 0;
    font-size: clamp(1.4rem, 3vw, 2.3rem);
    line-height: 1.34;
    letter-spacing: -0.015em;
    font-weight: 600;
    color: var(--dark-2);
}

.page-main {
    min-height: calc(100vh - 80px);
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 5vw, 4rem);
    background:
        linear-gradient(120deg, rgba(16, 24, 38, 0.95), rgba(16, 24, 38, 0.8)),
        linear-gradient(135deg, rgba(196, 104, 51, 0.18), rgba(215, 163, 71, 0.1));
}

.page-hero-contact {
    background: linear-gradient(180deg, rgba(16, 24, 38, 0.95), rgba(16, 24, 38, 0.82));
}

.page-hero-layout {
    display: grid;
    align-items: end;
    min-height: 280px;
}

.page-hero-copy {
    max-width: 780px;
    color: var(--white);
}

.page-hero-copy p {
    color: rgba(255, 250, 245, 0.82);
}

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

.work-showcase-card {
    overflow: hidden;
}

.works-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.filter-chip {
    border: 1px solid rgba(16, 24, 38, 0.12);
    background: var(--surface);
    color: var(--ink);
    border-radius: 999px;
    padding: 0.85rem 1.15rem;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.filter-chip:hover,
.filter-chip.active {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-1px);
}

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

.portfolio-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.portfolio-image-button {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.portfolio-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.portfolio-card-body {
    padding: 0.6rem 0.8rem;
    min-height: auto;
}

.portfolio-card-body h3 {
    margin: 0.25rem 0 0.35rem;
    font-size: 0.95rem;
    line-height: 1.2;
    font-weight: 700;
}

.portfolio-card-body p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.4;
    font-size: 0.8rem;
    display: none;
}

.portfolio-meta {
    display: flex;
    justify-content: space-between;
    gap: 0.6rem;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand);
    margin-top: 0.35rem;
}

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

.comparison-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.comparison-card-copy {
    padding: 1.5rem 1.5rem 0;
}

.comparison-card-copy h3 {
    margin: 0.45rem 0 0.8rem;
    font-size: 1.25rem;
}

.comparison-card-copy p:last-child {
    margin: 0;
    color: var(--ink-soft);
}

.comparison-view {
    position: relative;
    margin: 1.5rem 1.5rem 1.25rem;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #ece4d9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.comparison-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison-after {
    clip-path: inset(0 0 0 50%);
}

.comparison-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.95);
    transform: translateX(-1px);
    pointer-events: none;
}

.comparison-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: var(--brand);
    transform: translate(-50%, -50%);
    box-shadow: 0 8px 24px rgba(16, 24, 38, 0.25);
}

.comparison-range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
}

.comparison-labels {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 1.35rem 1.35rem;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-soft);
}

.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 400;
    background: rgba(12, 16, 24, 0.88);
    display: grid;
    place-items: center;
    padding: 2rem;
}

.gallery-modal.hidden {
    display: none;
}

.gallery-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    cursor: pointer;
}

.gallery-modal-image {
    max-width: min(1100px, 92vw);
    max-height: 78vh;
    border-radius: 18px;
    box-shadow: var(--shadow-strong);
}

.gallery-modal-caption {
    margin-top: 1rem;
    color: rgba(255, 250, 245, 0.9);
    text-align: center;
    font-weight: 600;
}

body.modal-open {
    overflow: hidden;
}

.service-media {
    margin: -1.5rem -1.5rem 1.2rem;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.service-media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.detailed-service-card:hover .service-media img {
    transform: scale(1.04);
}

.work-showcase-card img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

.work-card-body {
    padding: 1.4rem;
}

.contact-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2rem;
    align-items: stretch;
}

.contact-card {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
}

.contact-checklist {
    display: grid;
    gap: 1rem;
}

.contact-checklist .icon {
    color: var(--brand);
}

.contact-card {
    padding: 1.8rem;
    border-radius: 28px;
    box-shadow: 0 34px 80px rgba(16, 24, 38, 0.1);
    background: #ffffff;
}

.quote-form {
    display: grid;
    gap: 1rem;
}

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

.quote-form label {
    display: grid;
    gap: 0.45rem;
}

.quote-form span {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ink);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    border: 1px solid rgba(16, 24, 38, 0.12);
    border-radius: 16px;
    background: #fffdf9;
    padding: 0.95rem 1rem;
    font: inherit;
    color: var(--ink);
    resize: vertical;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
    color: #84796f;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: 0;
    border-color: rgba(196, 104, 51, 0.6);
    box-shadow: 0 0 0 3px rgba(196, 104, 51, 0.12);
}

.form-submit {
    border: 0;
    cursor: pointer;
    padding: 1rem 1.2rem;
}

.form-note,
.form-status {
    margin: 0;
    font-size: 0.92rem;
}

.form-status.is-success {
    color: #146c43;
}

.form-status.is-error {
    color: #a32929;
}

.site-footer {
    background: #121212;
    color: rgba(255, 244, 232, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-layout,
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
}

.footer-layout {
    align-items: flex-start;
    padding: 2.8rem 0 2rem;
}

.footer-brand {
    color: var(--white);
    display: inline-block;
    margin-bottom: 0.9rem;
}

.footer-copy {
    max-width: 460px;
    line-height: 1.85;
}

.footer-contact {
    margin-top: 1.25rem;
    color: rgba(255, 244, 232, 0.78);
    line-height: 1.7;
}

.footer-contact a {
    color: var(--white);
    text-decoration: underline;
}

.footer-note {
    margin-top: 0.85rem;
    color: rgba(255, 244, 232, 0.72);
    max-width: 520px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.35rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    text-decoration: none;
    font-weight: 700;
    transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.footer-social a:hover,
.footer-social a:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(230, 165, 85, 0.8);
    background: rgba(230, 165, 85, 0.14);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem 1.2rem;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.2rem 0 2rem;
    font-size: 0.92rem;
}

.sticky-footer {
    display: none;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(124, 241, 169, 0.46); }
    70% { box-shadow: 0 0 0 12px rgba(124, 241, 169, 0); }
    100% { box-shadow: 0 0 0 0 rgba(124, 241, 169, 0); }
}

@media (max-width: 1100px) {
    .hero-layout,
    .section-split,
    .quote-layout,
    .contact-page-layout {
        grid-template-columns: 1fr;
    }

    .hero-summary {
        justify-content: flex-start;
    }

    .priority-services,
    .feature-grid,
    .detailed-services-grid,
    .works-grid,
    .works-gallery,
    .comparison-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 760px) {
    .desktop-nav {
        display: none;
    }

    .mobile-actions {
        display: flex;
    }

    .site-header {
        background: rgba(16, 24, 38, 0.98);
        padding: 0.9rem 0;
    }

    .header-row {
        padding: 0.45rem 0;
    }

    .brand-mark {
        gap: 0.34rem;
        min-height: 3rem;
    }

    .brand-logo {
        width: 3.85rem;
        height: 3.85rem;
        min-width: 3.85rem;
    }

    .brand-text {
        min-width: 12.9rem;
        padding-top: 0.92rem;
        margin-left: -0.05rem;
    }

    .brand-text::before {
        width: 4.7rem;
        height: 1.05rem;
    }

    .brand-name {
        font-size: 0.7rem;
        letter-spacing: 0.3em;
    }

    .brand-accent {
        font-size: 0.62rem;
        letter-spacing: 0.42em;
    }

    .hero-layout {
        padding-top: 7.8rem;
        padding-bottom: 4.5rem;
        min-height: auto;
        grid-template-columns: 1fr;
    }

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

    .hero-text,
    .hero-tagline,
    .page-hero-copy p {
        font-size: 1rem;
        line-height: 1.8;
    }

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

    .hero-btn,
    .summary-link,
    .btn-primary,
    .btn-secondary,
    .form-submit {
        width: 100%;
    }

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

    .page-hero-copy {
        padding: 1.5rem 0 0;
        max-width: 100%;
    }

    .contact-page-layout {
        gap: 1.5rem;
    }

    .contact-copy,
    .contact-card {
        width: 100%;
        max-width: 740px;
    }

    .contact-card {
        padding: 1.5rem 1.25rem;
        margin: 0 auto;
    }

    .quote-form label {
        background: #fff;
        padding: 0.8rem 0.9rem;
        border-radius: 20px;
        box-shadow: 0 10px 24px rgba(16, 24, 38, 0.06);
    }

    .quote-form input,
    .quote-form select,
    .quote-form textarea {
        background: transparent;
        border: 0;
        padding: 0;
        box-shadow: none;
    }

    .quote-form input:focus,
    .quote-form select:focus,
    .quote-form textarea:focus {
        border-color: rgba(196, 104, 51, 0.6);
        box-shadow: none;
    }

    .quote-form span {
        font-size: 0.88rem;
        font-weight: 700;
        color: var(--ink);
        display: inline-block;
        margin-bottom: 0.45rem;
    }

    .quote-form input::placeholder,
    .quote-form textarea::placeholder {
        color: #7a6c63;
    }

    .form-submit {
        padding: 1.1rem 1.25rem;
    }

    .mobile-menu-panel {
        border-radius: 0 0 24px 24px;
    }

    .trust-grid,
    .priority-services,
    .feature-grid,
    .detailed-services-grid,
    .works-grid,
    .works-gallery,
    .comparison-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .section-pad {
        padding: 4.5rem 0;
    }

    .offer-banner-inner {
        padding-inline: 1rem 3rem;
    }

    .summary-card {
        width: 100%;
    }

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

    .sticky-footer {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 220;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
        padding: 0.75rem;
        background: rgba(18, 18, 18, 0.96);
        backdrop-filter: blur(12px);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .sticky-footer a {
        padding: 0.95rem 1rem;
        font-size: 0.92rem;
        color: var(--white);
    }

    .sticky-footer a:first-child {
        background: rgba(255, 255, 255, 0.08);
    }

    .sticky-footer a:last-child {
        background: var(--brand);
    }
}

@media (max-width: 520px) {
    .container-shell {
        width: min(100% - 1.25rem, 1180px);
    }

    .brand-mark {
        gap: 0.28rem;
    }

    .brand-logo {
        width: 3.45rem;
        height: 3.45rem;
        min-width: 3.45rem;
    }

    .brand-text {
        padding-top: 0.82rem;
        min-width: 0;
        margin-left: -0.04rem;
    }

    .brand-text::before {
        width: 4rem;
        height: 0.9rem;
    }

    .brand-name {
        font-size: 0.62rem;
        letter-spacing: 0.24em;
    }

    .brand-accent {
        font-size: 0.56rem;
        letter-spacing: 0.34em;
    }

    .mobile-quote-link {
        display: none;
    }

    .offer-banner p,
    .section-heading p,
    .feature-card p,
    .priority-card p,
    .work-card-body p,
    .detailed-service-card p,
    .contact-copy p {
        font-size: 0.96rem;
    }
}
