/* Robison Drywall — premium minimalist, intentional rhythm */

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

:root {
    --ink: #141416;
    --ink-soft: #3f3f46;
    --body: #404047;
    --true-black: #000000;
    --charcoal: #1c1f26;
    --navy: #1a1d24;
    --white: #ffffff;
    --warm: #f4f2ef;
    --warm-deep: #ebe8e3;
    --line: #ddd9d3;
    --line-soft: rgba(20, 20, 22, 0.08);
    --muted: #6b6b76;
    --accent: #8a7a62;
    --accent-soft: rgba(138, 122, 98, 0.14);
    --radius: 8px;
    --radius-lg: 14px;
    --shadow-sm: 0 2px 8px rgba(20, 20, 22, 0.06);
    --shadow-md: 0 12px 40px rgba(20, 20, 22, 0.1);
    --shadow-lg: 0 24px 56px rgba(20, 20, 22, 0.14);
    --container: 1140px;
    --section-y: clamp(4rem, 8vw, 6rem);
    --font-sans: "Archivo", system-ui, sans-serif;
    --font-serif: "Libre Baskerville", Georgia, serif;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --dur-fast: 0.22s;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--body);
    background: var(--white);
}

body.lightbox-open {
    overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

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

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

a {
    color: var(--ink);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
    transition: color var(--dur-fast) var(--ease);
}

a:hover {
    color: var(--accent);
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.35rem;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition:
        opacity 0.5s var(--ease),
        transform 0.5s var(--ease);
    transition-delay: var(--reveal-delay, 0ms);
}

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


.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 9999;
    padding: 0.75rem 1rem;
    background: var(--charcoal);
    color: var(--white);
}

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

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--true-black);
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 4.25rem;
}

.header-logo img {
    height: clamp(2.4rem, 2rem + 1vw, 3rem);
    width: auto;
    max-width: 10.5rem;
    object-fit: contain;
}

.header-nav {
    display: flex;
    gap: 1.35rem;
    margin-left: auto;
}

.header-nav a {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

.header-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--dur-fast) var(--ease);
}

.header-nav a:hover {
    color: var(--white);
}

.header-nav a:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-phone-link {
    color: var(--white);
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    white-space: nowrap;
}

.header-phone-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.mobile-menu-btn {
    display: none;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
    background: transparent;
    cursor: pointer;
    margin-left: auto;
}

.mobile-menu-btn-lines,
.mobile-menu-btn-lines::before,
.mobile-menu-btn-lines::after {
    display: block;
    width: 1.1rem;
    height: 2px;
    background: var(--white);
    margin: 0 auto;
    position: relative;
}

.mobile-menu-btn-lines::before,
.mobile-menu-btn-lines::after {
    content: "";
    position: absolute;
    left: 0;
}

.mobile-menu-btn-lines::before { top: -6px; }
.mobile-menu-btn-lines::after { top: 6px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.72rem 1.35rem;
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 700;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition:
        background var(--dur-fast) var(--ease),
        color var(--dur-fast) var(--ease),
        border-color var(--dur-fast) var(--ease),
        transform var(--dur-fast) var(--ease),
        box-shadow var(--dur-fast) var(--ease);
}

.btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: var(--charcoal);
    color: var(--white);
    border-color: var(--charcoal);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--white);
    color: var(--ink);
    border-color: var(--line);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--ink);
    box-shadow: var(--shadow-sm);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line);
}

.btn-ghost:hover {
    border-color: var(--accent);
    background: var(--accent-soft);
}

.site-header .btn-primary {
    background: var(--white);
    color: var(--true-black);
    border-color: var(--white);
}

.site-header .btn-primary:hover {
    background: var(--warm);
    border-color: var(--warm);
}

.btn-lg {
    padding: 0.92rem 1.55rem;
}

.btn-small {
    padding: 0.5rem 0.95rem;
    font-size: 0.8125rem;
}

.btn-block { width: 100%; }
.btn-icon { flex-shrink: 0; }

/* Sticky mobile CTA */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 180;
    padding: 0.55rem 0.65rem calc(0.55rem + env(safe-area-inset-bottom));
    gap: 0.4rem;
    background: var(--charcoal);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(110%);
    transition: transform 0.28s var(--ease);
}

.sticky-cta.is-visible {
    transform: translateY(0);
}

.sticky-cta .btn {
    flex: 1;
    padding: 0.65rem 0.5rem;
    font-size: 0.8125rem;
}

.btn-sticky-call {
    background: var(--white);
    color: var(--charcoal);
}

.btn-sticky-text,
.btn-sticky-form {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.32);
}

/* Hero */
.hero-split {
    position: relative;
    padding: clamp(2.75rem, 6vw, 4.75rem) 0 clamp(3.25rem, 7vw, 5.25rem);
    background: var(--warm);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.hero-split::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            105deg,
            rgba(244, 242, 239, 0.97) 0%,
            rgba(244, 242, 239, 0.88) 42%,
            rgba(244, 242, 239, 0.35) 68%,
            transparent 100%
        );
    pointer-events: none;
    z-index: 0;
}

.hero-split-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
}

.hero-copy-inner {
    position: relative;
    padding: clamp(1.25rem, 3vw, 2rem) 0;
}

.hero-kicker {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.85rem;
}

.hero-kicker::after {
    content: "";
    display: block;
    width: 2.5rem;
    height: 1px;
    background: var(--accent);
    margin-top: 0.5rem;
    opacity: 0.6;
}

.hero-copy h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.05rem, 1.45rem + 2.3vw, 3.25rem);
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-lead {
    font-size: 1.0625rem;
    max-width: 34rem;
    margin-bottom: 1.35rem;
    color: var(--ink-soft);
}

.hero-cta-panel {
    padding: 1.05rem 1.15rem;
    margin-bottom: 1.35rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-cta-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.6rem;
    margin-bottom: 0.65rem;
}

.hero-cta-row .btn {
    flex: 1 1 0;
    min-width: 0;
}

.hero-meta {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.45;
    color: var(--muted);
}

.hero-meta a {
    color: var(--ink);
    font-weight: 600;
    text-decoration: none;
}

.hero-meta a:hover {
    color: var(--accent);
}

.hero-meta a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 2px;
}

.hero-meta-alt {
    margin: 0.45rem 0 0;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: var(--muted);
}

.hero-meta-alt a {
    color: var(--ink-soft);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: rgba(20, 20, 22, 0.22);
    text-underline-offset: 0.15em;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.hero-meta-alt a:hover {
    color: var(--accent);
    text-decoration-color: currentColor;
}

.hero-meta-alt a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 2px;
}

.hero-points {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 1.1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink-soft);
}

.hero-points li::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    margin-right: 0.45rem;
    vertical-align: middle;
}

.hero-photo-card {
    margin: 0;
    background: var(--charcoal);
    padding: 0.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.hero-photo-card img {
    border-radius: calc(var(--radius-lg) - 4px);
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center 30%;
}

.hero-photo-caption {
    margin-top: 0.6rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    letter-spacing: 0.04em;
}

/* Sections — rhythm */
.section {
    padding: var(--section-y) 0;
    border-top: 1px solid var(--line-soft);
}

.section--white {
    background: var(--white);
}

.section--warm {
    background: var(--warm);
}

.section--dark {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.86);
    border-top-color: rgba(255, 255, 255, 0.06);
}

/* Supporting copy on dark surfaces */
.section--dark p,
.section--dark li {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
}

.section-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.65rem;
}

.section--dark .section-eyebrow {
    color: rgba(200, 185, 160, 0.95);
}

.section-head {
    margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
    max-width: 42rem;
}

.section-head--on-dark {
    max-width: 36rem;
}

.section-head-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.25rem;
    max-width: none;
}

.section-head h2,
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.85rem, 1.35rem + 1.5vw, 2.55rem);
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.section--dark .section-head h2 {
    color: var(--white);
}

.section-lead {
    color: var(--muted);
    max-width: 36rem;
    font-size: 1.02rem;
}

.section--dark .section-lead {
    color: rgba(255, 255, 255, 0.62);
}

/* Services */
.service-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-block {
    background: var(--white);
    padding: 1.85rem;
    transition: background var(--dur-fast) var(--ease);
}

.service-block:hover {
    background: var(--warm);
}

.service-block h3 {
    font-size: 1.125rem;
    color: var(--ink);
    margin-bottom: 0.55rem;
}

.service-block-cta {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.88);
}

.service-block-cta p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
}

.service-block-cta:hover {
    background: var(--navy);
}

.service-block-cta h3 {
    color: var(--white);
}

.service-block-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.1rem;
}

.service-block-cta .btn-primary {
    background: var(--white);
    color: var(--charcoal);
}

.service-block-cta .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.38);
}

/* About */
.about-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.75rem;
    align-items: start;
}

.about-lead {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--ink-soft);
}

.about-copy p + p {
    margin-top: 0.9rem;
}

.about-aside {
    display: grid;
    gap: 0.75rem;
}

.about-stat-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.1rem 1.2rem;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}

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

.about-stat-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 0.3rem;
}

.about-stat-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ink);
}

.about-stat-value a {
    text-decoration: none;
}

/* Gallery */
.gallery-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(140px, 1fr);
    gap: 0.75rem;
}

.section-cta-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.6rem;
    margin-top: 1rem;
}

.section-cta-row .btn {
    flex: 0 0 auto;
    width: auto;
    min-height: 3rem;
    padding: 0.85rem 1.25rem;
}

.section-cta-row .btn-lg {
    padding: 0.85rem 1.25rem;
    min-height: 3rem;
}

#gallery .section-head .section-cta-row {
    margin-top: 1rem;
}

.project-gallery-actions {
    display: flex;
    justify-content: center;
    padding-top: 1.35rem;
}

.project-gallery-actions[hidden] {
    display: none;
}

.project-gallery-empty {
    grid-column: 1 / -1;
    border: 1px dashed var(--line);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.1rem;
    background: var(--warm);
    color: var(--ink);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.project-gallery-empty p {
    margin: 0;
}

.stack-cta {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: flex-end;
}

@media (max-width: 720px) {
    .stack-cta {
        align-items: stretch;
        width: 100%;
    }
}

.gallery-tile {
    border: none;
    padding: 0;
    cursor: pointer;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--charcoal);
    position: relative;
    box-shadow: var(--shadow-sm);
    grid-column: span 3;
    min-height: 160px;
    transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}

.gallery-tile:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.gallery-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 20, 22, 0.25), transparent 50%);
    opacity: 0;
    transition: opacity var(--dur-fast) var(--ease);
    pointer-events: none;
}

.gallery-tile:hover::after {
    opacity: 1;
}

.gallery-tile img {
    width: 100%;
    height: 100%;
    min-height: 160px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s var(--ease);
}

.gallery-tile:hover img {
    transform: scale(1.05);
}

.gallery-tile-wide {
    grid-column: span 6;
    grid-row: span 2;
    min-height: 320px;
}

.gallery-tile-tall {
    grid-column: span 3;
    grid-row: span 2;
    min-height: 320px;
}

.gallery-bento--uniform {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    grid-auto-rows: auto;
    gap: 0.65rem;
}

.gallery-bento--uniform .gallery-tile,
.gallery-bento--uniform .gallery-tile-wide,
.gallery-bento--uniform .gallery-tile-tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
}

.gallery-bento--uniform .gallery-tile img {
    min-height: 0;
    aspect-ratio: 4 / 3;
}

.gallery-bento--preview {
    max-width: 100%;
}

/* Project cards (listing) */
.project-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 0.25rem;
}

.project-card {
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--warm);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}

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

.project-card-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--charcoal);
}

.project-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s var(--ease);
}

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

.project-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 1.1rem 1.15rem 1.2rem;
}

.project-card-title {
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(1.15rem, 2.2vw, 1.4rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--ink);
}

.project-card-summary {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.45;
    color: var(--muted);
}

.project-card-meta {
    margin: 0.2rem 0 0;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink);
    opacity: 0.55;
}

.project-back {
    margin: 0 0 1.25rem;
}

.project-back a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.project-back a:hover {
    color: var(--ink);
}

.project-detail-head {
    max-width: 40rem;
    margin-bottom: 1.75rem;
}

.project-detail-head .section-lead {
    margin-bottom: 0.65rem;
}

.project-detail-meta {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink);
    opacity: 0.55;
}

@media (max-width: 720px) {
    .project-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Reviews — dark band */
.section-reviews {
    padding-top: clamp(3.5rem, 7vw, 5rem);
    padding-bottom: clamp(3.5rem, 7vw, 5rem);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
    margin-bottom: 1.75rem;
}

.review-card {
    margin: 0;
    padding: 1.15rem 1.1rem 1.2rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition:
        transform var(--dur-fast) var(--ease),
        background var(--dur-fast) var(--ease),
        border-color var(--dur-fast) var(--ease),
        box-shadow var(--dur-fast) var(--ease);
}

.review-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.review-header {
    order: -1;
}

.review-name {
    display: block;
    font-style: normal;
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.review-stars {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.review-meta {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.review-quote {
    font-size: 0.9rem;
    line-height: 1.58;
    color: rgba(255, 255, 255, 0.78);
}

.reviews-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    padding-top: 0.5rem;
}

.section-reviews .btn-primary {
    background: var(--white);
    color: var(--charcoal);
}

.section-reviews .btn-primary:hover {
    background: var(--warm);
}

.section-reviews .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
}

.section-reviews .btn-secondary:hover {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.06);
}

.section-reviews .btn-ghost {
    color: rgba(255, 255, 255, 0.88);
    border-color: rgba(255, 255, 255, 0.22);
}

.section-reviews .btn-ghost:hover {
    border-color: var(--accent);
    color: var(--white);
}

.reviews-google-link[href*="PLACEHOLDER"] {
    display: none;
}

/* Service area */
.area-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: start;
}

.area-seo {
    margin-top: 1.1rem;
    font-size: 0.9375rem;
    color: var(--muted);
}

.area-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-content: flex-start;
}

.city-chip {
    display: inline-block;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink);
    transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}

.city-chip:hover {
    border-color: var(--accent);
    background: var(--accent-soft);
}

/* FAQ */
.faq-wrap .section-head {
    max-width: none;
}

.faq-list {
    display: grid;
    gap: 0.6rem;
    max-width: none;
    width: 100%;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.2rem 1.1rem;
    background: var(--white);
    transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}

.faq-item[open] {
    border-color: rgba(138, 122, 98, 0.35);
    box-shadow: var(--shadow-sm);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--ink);
    padding: 0.95rem 0;
    list-style-position: outside;
}

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

.faq-item p {
    padding-bottom: 1rem;
    color: var(--body);
}

.faq-item a {
    color: var(--ink);
    font-weight: 600;
}

/* Contact — dark */
.section-contact {
    border-bottom: none;
}

.section-contact .section-eyebrow {
    color: rgba(200, 185, 160, 0.95);
}

.section-contact .section-head h2 {
    color: var(--white);
}

.section-contact .section-lead {
    color: rgba(255, 255, 255, 0.62);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2.75rem;
    align-items: start;
}

.contact-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(200, 185, 160, 0.9);
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--white);
}

.contact-value:hover {
    color: rgba(255, 255, 255, 0.85);
}

.contact-methods {
    list-style: none;
    margin-top: 1.75rem;
    display: grid;
    gap: 1.15rem;
}

.contact-form-panel {
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 1.65rem;
    box-shadow: var(--shadow-lg);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-field label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--ink);
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 0.72rem 0.9rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font: inherit;
    background: var(--warm);
    color: var(--ink);
    transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
}

.form-privacy {
    font-size: 0.8125rem;
    color: var(--muted);
}

.form-feedback {
    padding: 1.25rem;
    border-radius: var(--radius);
    margin-top: 1rem;
}

.form-success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.form-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

/* Footer */
.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.78);
    padding: 0;
    border-top: 3px solid var(--accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2.5rem;
    padding: clamp(2.75rem, 5vw, 3.5rem) 0 2.25rem;
}

.footer-logo-link {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-logo-link:hover .footer-logo-wrap {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.footer-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.1rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    transition: box-shadow var(--dur-fast) var(--ease);
}

.footer-logo {
    display: block;
    height: clamp(2rem, 4vw, 2.65rem);
    width: auto;
    max-width: 10.5rem;
    object-fit: contain;
}

.footer-tagline {
    font-size: 0.9375rem;
    max-width: 24rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
}

.footer-hours {
    margin-top: 0.85rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.48);
}

.footer-col-title {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent);
    margin-bottom: 0.85rem;
}

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

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--dur-fast) var(--ease);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--white);
}

.footer-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.15rem 0 1.5rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.42);
}

.footer-bar-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.65rem;
}

.footer-area-note {
    color: rgba(255, 255, 255, 0.38);
}

.footer-credit {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 10px;
    padding: 9px 0 20px;
    text-align: center;
}

.site-footer .footer-credit .footer-credit-text {
    margin: 0;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.45);
}

.site-footer .footer-credit .footer-credit-link {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-decoration: none;
    transition: color 150ms ease;
}

.site-footer .footer-credit .footer-credit-link:hover {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: underline;
}

.site-footer .footer-credit .footer-credit-link:focus-visible {
    color: rgba(255, 255, 255, 0.95);
    outline: 2px solid rgba(255, 255, 255, 0.75);
    outline-offset: 2px;
    border-radius: 2px;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .site-footer .footer-credit {
        margin-top: 9px;
        padding-top: 8px;
        padding-bottom: 18px;
    }

    .site-footer .footer-credit .footer-credit-text {
        font-size: 11.5px;
    }
}

.seo-text {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Lightbox */
.lightbox-root[hidden] {
    display: none;
}

.lightbox-root {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 22, 0.9);
}

.lightbox-panel {
    position: relative;
    z-index: 1;
    width: min(96vw, 1180px);
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
}

.lightbox-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.65rem, 2vw, 1.25rem);
    width: 100%;
}

.lightbox-img {
    max-height: min(78vh, 820px);
    max-width: min(78vw, 980px);
    width: auto;
    height: auto;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.lightbox-nav {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    cursor: pointer;
    transition:
        background var(--dur-fast) var(--ease),
        border-color var(--dur-fast) var(--ease),
        transform var(--dur-fast) var(--ease),
        opacity var(--dur-fast) var(--ease);
}

.lightbox-nav:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.55);
    transform: translateY(-1px);
}

.lightbox-nav:disabled {
    opacity: 0.28;
    cursor: default;
}

.lightbox-counter {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
    letter-spacing: 0.04em;
}

.lightbox-close {
    position: absolute;
    top: -2.75rem;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.85;
    transition: opacity var(--dur-fast) var(--ease);
}

.lightbox-close:hover {
    opacity: 1;
}

@media (max-width: 720px) {
    .lightbox-stage {
        gap: 0;
    }

    .lightbox-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
        width: 2.75rem;
        height: 2.75rem;
        background: rgba(20, 20, 22, 0.55);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
    }

    .lightbox-nav:hover:not(:disabled) {
        transform: translateY(-50%);
    }

    .lightbox-prev {
        left: 0.35rem;
    }

    .lightbox-next {
        right: 0.35rem;
    }

    .lightbox-img {
        max-width: 92vw;
        max-height: 72vh;
    }
}

/* Privacy */
.page-legal {
    padding: 3rem 0 4rem;
    max-width: 42rem;
}

.page-legal h1 {
    font-family: var(--font-serif);
    color: var(--ink);
    margin-bottom: 1rem;
}

.page-legal h2 {
    font-size: 1.125rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--ink);
}

.page-legal p,
.page-legal li {
    margin-bottom: 0.75rem;
    color: var(--body);
}

.page-legal ul {
    padding-left: 1.25rem;
}

/* Responsive */
@media (max-width: 960px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-split-grid,
    .about-split,
    .area-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

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

    .gallery-tile,
    .gallery-tile-wide,
    .gallery-tile-tall {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 180px;
    }

    .gallery-tile-wide {
        grid-column: span 2;
    }

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

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

    .header-nav,
    .header-cta .header-phone-link {
        display: none;
    }

    .header-cta {
        margin-left: auto;
    }

    .mobile-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .header-nav.is-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--true-black);
        padding: 1rem 1.25rem 1.25rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .header-cta.is-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 12rem);
        left: 1.25rem;
        right: 1.25rem;
        background: var(--true-black);
        padding-bottom: 1rem;
    }

    .site-header {
        position: relative;
    }

    .header-inner {
        flex-wrap: wrap;
    }

    .sticky-cta {
        display: flex;
    }

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

    .section-head-row .btn {
        width: 100%;
    }

    .section-cta-row {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 0.5rem;
    }

    .section-cta-row .btn {
        width: 100%;
    }

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

    .hero-cta-panel {
        padding: 1rem;
    }
}

@media (min-width: 769px) {
    .sticky-cta {
        display: none !important;
    }
}

/* —— Cookie consent —— */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 600;
    padding: 1rem;
    background: rgba(24, 24, 26, 0.96);
    color: var(--white);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.28);
}

.consent-banner[hidden],
.consent-modal[hidden] {
    display: none !important;
}

.consent-banner__inner {
    max-width: 72rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
    align-items: flex-end;
    justify-content: space-between;
}

.consent-banner__copy {
    flex: 1 1 18rem;
    max-width: 40rem;
}

.consent-banner__title {
    margin: 0 0 0.35rem;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--white);
}

.consent-banner__text,
.consent-banner__gpc,
.consent-modal__lead,
.consent-pref__desc {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.84);
}

.consent-banner__text a,
.consent-modal a {
    color: #fff;
    text-decoration: underline;
}

.consent-banner__gpc {
    margin-top: 0.45rem;
    color: rgba(255, 220, 160, 0.95);
}

.consent-banner__actions,
.consent-modal__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.consent-banner__actions .btn,
.consent-modal__actions .btn {
    min-height: 2.75rem;
}

.consent-banner .btn-ghost,
.consent-modal .btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.consent-banner .btn-ghost:hover,
.consent-modal .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
}

.consent-modal {
    position: fixed;
    inset: 0;
    z-index: 650;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.consent-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 12, 14, 0.72);
}

.consent-modal__panel {
    position: relative;
    z-index: 1;
    width: min(34rem, 100%);
    max-height: min(90vh, 40rem);
    overflow: auto;
    background: #1c1c1f;
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 1.35rem 1.25rem 1.25rem;
    box-shadow: var(--shadow-lg);
}

.consent-modal__panel h2 {
    margin: 0 0 0.5rem;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: #fff;
}

.consent-modal__lead {
    margin-bottom: 1rem;
}

.consent-modal__close {
    position: absolute;
    top: 0.55rem;
    right: 0.7rem;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.8;
}

.consent-modal__close:hover {
    opacity: 1;
}

.consent-prefs {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.consent-pref {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0.75rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-md, 8px);
    background: rgba(255, 255, 255, 0.04);
}

.consent-pref__title {
    margin: 0 0 0.2rem;
    font-weight: 600;
    color: #fff;
}

.consent-switch {
    position: relative;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.consent-switch input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
}

.consent-switch__ui {
    width: 2.6rem;
    height: 1.45rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    position: relative;
    transition: background 0.2s ease;
}

.consent-switch__ui::after {
    content: "";
    position: absolute;
    top: 0.18rem;
    left: 0.18rem;
    width: 1.05rem;
    height: 1.05rem;
    border-radius: 50%;
    background: #fff;
    transition: transform 0.2s ease;
}

.consent-switch input:checked + .consent-switch__ui {
    background: var(--accent, #c45c26);
}

.consent-switch input:checked + .consent-switch__ui::after {
    transform: translateX(1.1rem);
}

.consent-switch input:disabled + .consent-switch__ui {
    opacity: 0.55;
    cursor: not-allowed;
}

.consent-embed-placeholder {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
    justify-content: center;
    min-height: 12rem;
    padding: 1.25rem;
    border: 1px dashed var(--line, #d0cbc3);
    background: var(--warm, #f4f2ef);
    color: var(--ink, #1c1c1f);
    border-radius: var(--radius-lg, 12px);
}

.consent-embed-placeholder.is-loaded {
    border: none;
    background: transparent;
    padding: 0;
    min-height: 0;
}

.consent-embed-placeholder.is-loaded > p,
.consent-embed-placeholder.is-loaded > .btn {
    display: none;
}

.footer-links a[data-consent-action] {
    cursor: pointer;
}

body.has-consent-banner {
    padding-bottom: 7rem;
}

@media (max-width: 720px) {
    .consent-banner__actions {
        width: 100%;
    }

    .consent-banner__actions .btn {
        flex: 1 1 auto;
    }

    body.has-consent-banner {
        padding-bottom: 11rem;
    }
}

.footer-cookie-settings {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
    text-decoration: none;
}

.footer-cookie-settings:hover {
    text-decoration: underline;
}
