/* ═══════════════════════════════════════════════
   Noir 1 — Cinematic Dark Editorial
   ═══════════════════════════════════════════════
   Film noir aesthetics, dramatic serif typography,
   amber accents on pure black, grain textures.
   Fonts: Playfair Display (heading) + Source Sans 3 (body)
   ═══════════════════════════════════════════════ */


/* ─── Film Grain Texture ─── */

.noir1-grain::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
}


/* ─── Hero: Movie Poster Composition ─── */

.noir1-hero {
    position: relative;
    min-height: min(100vh, 60rem);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ocf-bg);
    overflow: hidden;
    margin-top: -5rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .noir1-hero { margin-top: -6rem; }
}

.noir1-hero-bg {
    position: absolute;
    inset: 0;
}

.noir1-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: grayscale(20%) contrast(1.1);
}

/* Cinematic vignette */
.noir1-hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        transparent 20%,
        color-mix(in srgb, var(--ocf-bg) 40%, transparent) 55%,
        color-mix(in srgb, var(--ocf-bg) 85%, transparent) 75%,
        var(--ocf-bg) 100%
    );
    z-index: 2;
}

.noir1-hero-content {
    position: relative;
    z-index: 10;
    max-width: 52rem;
    padding: 10rem 2rem 6rem;
}

@media (min-width: 1024px) {
    .noir1-hero-content { padding: 14rem 2rem 8rem; }
}

.noir1-hero-eyebrow {
    font-size: var(--text-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--ocf-accent);
    margin-bottom: 2rem;
}

.noir1-hero-headline {
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ocf-heading);
    margin-bottom: 2rem;
}

.noir1-hero-headline span {
    display: block;
}

.noir1-hero-sub {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--ocf-body);
    max-width: 36rem;
    margin: 0 auto 3rem;
}

.noir1-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.noir1-hero .btn-ghost {
    color: var(--ocf-heading);
    border-color: var(--ocf-border);
}

.noir1-hero .btn-ghost:hover {
    border-color: var(--ocf-accent);
    color: var(--ocf-accent);
}


/* ─── Hero Form Card (dark variant) ─── */

.hero-form-card {
    background: var(--ocf-bg-alt);
    border: 1px solid var(--ocf-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

@media (min-width: 640px) { .hero-form-card { padding: 2.5rem; } }

.hero-form-card .hero-form-title {
    font-family: var(--ocf-font-heading), Georgia, serif;
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--ocf-heading);
    margin-bottom: 0.25rem;
}

.hero-form-card > p {
    font-size: var(--text-sm);
    color: var(--ocf-body);
    margin-bottom: 1.5rem;
}

.hero-svc-list {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    margin-bottom: 1rem;
    max-height: 280px;
    overflow-y: auto;
}

.hero-svc-row {
    display: flex; align-items: center; gap: 0.75rem; width: 100%;
    padding: 0.625rem 0.875rem; background: transparent;
    border: 1px solid var(--ocf-border); border-radius: var(--radius);
    cursor: pointer; transition: all 0.2s ease; text-align: left;
    font-family: var(--ocf-font-body), system-ui, sans-serif;
}

.hero-svc-row:hover { border-color: var(--ocf-divider); background: color-mix(in srgb, var(--ocf-heading) 3%, transparent); }
.hero-svc-row.is-selected { border-color: var(--ocf-accent); background: color-mix(in srgb, var(--ocf-accent) 8%, transparent); }

.hero-svc-check {
    width: 1.25rem; height: 1.25rem;
    display: flex; align-items: center; justify-content: center;
    border: 1.5px solid var(--ocf-border); border-radius: 3px;
    flex-shrink: 0; transition: all 0.2s ease; color: transparent;
}

.hero-svc-row.is-selected .hero-svc-check { background: var(--ocf-accent); border-color: var(--ocf-accent); color: var(--ocf-bg); }
.hero-svc-check svg { width: 0.75rem; height: 0.75rem; }
.hero-svc-label { font-size: var(--text-sm); font-weight: 500; color: var(--ocf-heading); }

.form-submit-btn {
    display: block; width: 100%; padding: 0.875rem 2rem;
    background: var(--ocf-accent); color: var(--ocf-bg);
    font-family: var(--ocf-font-body), system-ui, sans-serif;
    font-size: var(--text-sm); font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    border: none; border-radius: var(--radius);
    cursor: pointer; transition: background var(--duration) ease, opacity var(--duration) ease;
}

.form-submit-btn:hover:not(:disabled) { background: var(--ocf-accent-hover); }
.form-submit-btn:disabled { opacity: 0.3; cursor: not-allowed; }


/* ─── Services: Filmstrip Horizontal Scroll ─── */

.noir1-services {
    background: var(--ocf-bg);
}

.noir1-services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 639px) {
    .noir1-services-header { flex-direction: column; align-items: flex-start; }
}

.noir1-svc-filmstrip {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    cursor: grab;
    scrollbar-width: none;
}

.noir1-svc-filmstrip::-webkit-scrollbar { display: none; }

.noir1-svc-film-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 360px;
    padding: 2rem 1.75rem;
    background: var(--ocf-bg-alt);
    border: 1px solid var(--ocf-border);
    border-radius: var(--radius);
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s ease;
}

@media (min-width: 768px) { .noir1-svc-film-card { flex: 0 0 300px; min-height: 400px; } }

.noir1-svc-film-card:hover {
    border-color: var(--ocf-accent);
    transform: translateY(-4px);
}

.noir1-svc-film-num {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--ocf-font-heading), Georgia, serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--ocf-border);
    line-height: 1;
    opacity: 0.5;
    transition: color 0.4s ease;
}

.noir1-svc-film-card:hover .noir1-svc-film-num {
    color: var(--ocf-accent);
    opacity: 0.3;
}

.noir1-svc-film-title {
    font-family: var(--ocf-font-heading), Georgia, serif;
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--ocf-heading);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.noir1-svc-film-desc {
    font-size: var(--text-sm);
    color: var(--ocf-body);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.noir1-svc-film-arrow {
    color: var(--ocf-label);
    transition: color 0.3s ease, transform 0.3s ease;
}

.noir1-svc-film-card:hover .noir1-svc-film-arrow {
    color: var(--ocf-accent);
    transform: translateX(4px);
}

/* Services grid (archive page) */
.noir1-svc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) { .noir1-svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .noir1-svc-grid { grid-template-columns: repeat(3, 1fr); } }

.noir1-svc-card {
    display: flex; flex-direction: column;
    border: 1px solid var(--ocf-border); border-radius: var(--radius);
    overflow: hidden; text-decoration: none; transition: all 0.3s ease;
    background: var(--ocf-bg-alt);
}

.noir1-svc-card:hover { border-color: var(--ocf-accent); transform: translateY(-4px); }
.noir1-svc-card-img { aspect-ratio: 16/10; overflow: hidden; }
.noir1-svc-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; filter: grayscale(15%); }
.noir1-svc-card:hover .noir1-svc-card-img img { transform: scale(1.05); filter: grayscale(0%); }
.noir1-svc-card-body { padding: 1.5rem; }
.noir1-svc-card-body h3 { font-family: var(--ocf-font-heading), Georgia, serif; font-size: var(--text-lg); font-weight: 700; color: var(--ocf-heading); margin-bottom: 0.5rem; }
.noir1-svc-card-body p { font-size: var(--text-sm); color: var(--ocf-body); line-height: 1.7; }


/* ─── About: Cinematic Widescreen ─── */

.noir1-about {
    background: var(--ocf-bg);
}

.noir1-about-cinema {
    width: 100%;
    aspect-ratio: 21 / 9;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    margin-bottom: 4rem;
}

@media (max-width: 639px) { .noir1-about-cinema { aspect-ratio: 16/9; } }

.noir1-about-cinema img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.05) saturate(0.9);
}

/* Letterbox bars for cinematic feel */
.noir1-about-cinema::before,
.noir1-about-cinema::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 6%;
    background: var(--ocf-bg);
    z-index: 2;
}
.noir1-about-cinema::before { top: 0; }
.noir1-about-cinema::after { bottom: 0; }

.noir1-about-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .noir1-about-split { grid-template-columns: 1fr 1.2fr; gap: 5rem; }
}

.noir1-about-commitments {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 2.5rem;
    margin-top: 2.5rem;
    border-top: 1px solid var(--ocf-border);
}

.noir1-commitment {
    flex: 1 1 calc(50% - 1rem);
    min-width: 180px;
}

.noir1-commitment h4 {
    font-family: var(--ocf-font-heading), Georgia, serif;
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--ocf-heading);
    margin-bottom: 0.25rem;
}

.noir1-commitment p {
    font-size: var(--text-sm);
    color: var(--ocf-body);
    line-height: 1.6;
}


/* ─── Testimonials: Magazine Pull-Quote ─── */

.noir1-testimonials {
    background: var(--ocf-bg-alt);
    position: relative;
}

.noir1-testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.noir1-testimonial-stage {
    max-width: 48rem;
    margin: 0 auto;
    position: relative;
    min-height: 280px;
    text-align: center;
}

.noir1-quote-mark {
    font-family: var(--ocf-font-heading), Georgia, serif;
    font-size: 6rem;
    line-height: 1;
    color: var(--ocf-accent);
    opacity: 0.4;
    margin-bottom: -1rem;
    display: block;
}

.noir1-testimonial-slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    pointer-events: none;
}

.noir1-testimonial-slide.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

.noir1-testimonial-quote {
    font-family: var(--ocf-font-heading), Georgia, serif;
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.7;
    color: var(--ocf-heading);
    margin-bottom: 2rem;
    max-width: 40rem;
}

.noir1-testimonial-author {
    font-size: var(--text-sm);
    color: var(--ocf-body);
    letter-spacing: 0.05em;
}

.noir1-testimonial-author strong {
    color: var(--ocf-heading);
    font-weight: 600;
}

.noir1-testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

.noir1-dot {
    width: 6px; height: 6px; border-radius: 50%;
    border: none; background: var(--ocf-border);
    cursor: pointer; transition: all 0.3s ease; padding: 0;
}

.noir1-dot.is-active { background: var(--ocf-accent); transform: scale(1.5); }
.noir1-dot:hover:not(.is-active) { background: var(--ocf-body); }


/* ─── Trust Stats ─── */

.noir1-trust {
    background: var(--ocf-bg);
    border-top: 1px solid var(--ocf-border);
    border-bottom: 1px solid var(--ocf-border);
}

.noir1-trust-grid {
    display: flex;
    justify-content: center;
    gap: 0;
}

.noir1-trust-stat {
    flex: 1;
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}

.noir1-trust-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 50%;
    transform: translateY(-50%);
    width: 1px; height: 2rem;
    background: var(--ocf-border);
}

.noir1-trust-value {
    font-family: var(--ocf-font-heading), Georgia, serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--ocf-accent);
    line-height: 1;
    margin-bottom: 0.375rem;
}

.noir1-trust-label {
    font-size: var(--text-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ocf-label);
}


/* ─── CTA: Pure Black + Amber Accent ─── */

.noir1-cta {
    background: var(--ocf-bg);
    border-top: 2px solid var(--ocf-accent);
    text-align: center;
}

.noir1-cta-inner {
    max-width: 44rem;
    margin: 0 auto;
}

.noir1-cta .eyebrow { color: var(--ocf-accent); }

.noir1-cta-desc {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--ocf-body);
    margin-bottom: 2.5rem;
}

.noir1-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.noir1-cta .btn-ghost {
    color: var(--ocf-heading);
    border-color: var(--ocf-border);
}

.noir1-cta .btn-ghost:hover {
    border-color: var(--ocf-accent);
    color: var(--ocf-accent);
}


/* ─── Service Areas ─── */

.noir1-areas {
    background: var(--ocf-bg-alt);
}

.noir1-areas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) { .noir1-areas-grid { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; } }

.noir1-map { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; filter: grayscale(80%) invert(92%) contrast(0.9); }
.noir1-map iframe { width: 100%; height: 100%; border: 0; }

.noir1-areas-desc { font-size: var(--text-base); line-height: 1.7; color: var(--ocf-body); }

.noir1-area-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.noir1-area-tag {
    display: inline-block; padding: 0.5rem 1rem;
    font-size: var(--text-sm); font-weight: 500;
    color: var(--ocf-heading); background: transparent;
    border: 1px solid var(--ocf-border); border-radius: var(--radius-full);
    text-decoration: none; transition: all 0.2s ease;
}

.noir1-area-tag:hover { border-color: var(--ocf-accent); color: var(--ocf-accent); }


/* ─── FAQ ─── */

.noir1-faq { background: var(--ocf-bg); }
.noir1-faq-list { max-width: 40rem; }
.noir1-faq-item { border-bottom: 1px solid var(--ocf-border); }

.noir1-faq-trigger {
    display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
    width: 100%; padding: 1.25rem 0; background: none; border: none;
    cursor: pointer; text-align: left;
    font-family: var(--ocf-font-heading), Georgia, serif;
    font-size: var(--text-base); font-weight: 700; color: var(--ocf-heading);
    transition: color 0.2s ease;
}

.noir1-faq-trigger:hover { color: var(--ocf-accent); }

.noir1-faq-icon { width: 1.25rem; height: 1.25rem; flex-shrink: 0; color: var(--ocf-label); transition: transform 0.3s ease; }
.noir1-faq-item.open .noir1-faq-icon { transform: rotate(45deg); }

.noir1-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.noir1-faq-answer p { font-size: var(--text-base); line-height: 1.8; color: var(--ocf-body); padding-bottom: 1.25rem; }


/* ─── Page Header ─── */

.noir1-page-header {
    background: var(--ocf-bg);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
}

@media (min-width: 1024px) { .noir1-page-header { padding: 10rem 0 5rem; } }

.noir1-page-header .eyebrow { color: var(--ocf-accent); }

.noir1-page-divider {
    width: 3rem; height: 2px;
    background: var(--ocf-accent);
    margin: 2rem auto 0;
}


/* ─── Post Card ─── */

.noir1-post-card {
    display: flex; flex-direction: column;
    border: 1px solid var(--ocf-border); border-radius: var(--radius);
    overflow: hidden; transition: all 0.3s ease; background: var(--ocf-bg-alt);
}

.noir1-post-card:hover { border-color: var(--ocf-accent); transform: translateY(-4px); }

.noir1-post-card--overlay { position: relative; min-height: 280px; text-decoration: none; border: none; }
.noir1-post-card-bg { position: absolute; inset: 0; }
.noir1-post-card-bg img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; filter: grayscale(15%); }
.noir1-post-card--overlay:hover .noir1-post-card-bg img { transform: scale(1.05); filter: grayscale(0%); }

.noir1-post-card-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(to top, var(--ocf-bg) 0%, color-mix(in srgb, var(--ocf-bg) 60%, transparent) 50%, transparent 100%);
}

.noir1-post-card-image { display: block; aspect-ratio: 16/10; overflow: hidden; }
.noir1-post-card-image img { transition: transform 0.5s ease; filter: grayscale(15%); }
.noir1-post-card:hover .noir1-post-card-image img { transform: scale(1.05); filter: grayscale(0%); }

.noir1-post-card-body { display: flex; flex-direction: column; flex: 1; padding: 1.5rem; }
.noir1-post-card-body--overlay { position: relative; z-index: 2; justify-content: flex-end; padding: 1.5rem 1.5rem 2rem; }

.noir1-post-card-meta {
    font-size: var(--text-xs); font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.2em;
    color: var(--ocf-accent); margin-bottom: 0.5rem;
}

.noir1-post-card-title {
    font-family: var(--ocf-font-heading), Georgia, serif;
    font-size: var(--text-lg); font-weight: 700;
    color: var(--ocf-heading); margin-bottom: 0.5rem; line-height: 1.3;
}

.noir1-post-card-title a { color: inherit; text-decoration: none; transition: color 0.3s ease; }
.noir1-post-card-title a:hover { color: var(--ocf-accent); }
.noir1-post-card-excerpt { font-size: var(--text-sm); line-height: 1.7; color: var(--ocf-body); margin-bottom: 1.5rem; flex: 1; }


/* ─── Detail Pages ─── */

.noir1-detail { background: var(--ocf-bg); }

.noir1-detail-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .noir1-detail-grid { grid-template-columns: 1fr 320px; gap: 4rem; } }
@media (min-width: 1280px) { .noir1-detail-grid { gap: 5rem; } }

.noir1-detail-content { min-width: 0; }

.noir1-detail-lead {
    font-family: var(--ocf-font-heading), Georgia, serif;
    font-size: var(--text-xl); font-weight: 400; font-style: italic;
    line-height: 1.8; color: var(--ocf-heading); margin-bottom: 2.5rem;
}

.noir1-detail-img { margin-bottom: 3rem; border-radius: var(--radius); overflow: hidden; }
.noir1-detail-img img { width: 100%; height: auto; display: block; filter: grayscale(10%); }

.noir1-detail-guarantees { margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--ocf-border); }
.noir1-detail-guarantees .eyebrow { margin-bottom: 1.5rem; }
.noir1-detail-guarantees-grid { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
@media (min-width: 640px) { .noir1-detail-guarantees-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem 2.5rem; } }

.noir1-guarantee-item { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.625rem 0; }
.noir1-guarantee-item svg { width: 1.125rem; height: 1.125rem; color: var(--ocf-accent); flex-shrink: 0; margin-top: 0.125rem; }
.noir1-guarantee-item span { font-size: var(--text-sm); color: var(--ocf-body); line-height: 1.6; }

.noir1-detail-sidebar { display: none; }
@media (min-width: 1024px) { .noir1-detail-sidebar { display: block; } }

.noir1-detail-sticky {
    position: sticky; top: 9rem;
    background: var(--ocf-bg-alt); border: 1px solid var(--ocf-border);
    border-radius: var(--radius-lg); padding: 2rem;
}

.noir1-detail-sticky h3 {
    font-family: var(--ocf-font-heading), Georgia, serif;
    font-size: var(--text-xl); font-weight: 700;
    color: var(--ocf-heading); line-height: 1.25; margin-bottom: 0.5rem;
}

.noir1-detail-sticky .text-body { font-size: var(--text-sm); margin-bottom: 1.5rem; }
.noir1-detail-sticky .btn-primary { width: 100%; justify-content: center; }

.noir1-detail-sticky-phone {
    display: flex; align-items: center; gap: 0.5rem;
    margin-top: 1.25rem; padding-top: 1.25rem;
    border-top: 1px solid var(--ocf-border);
}

.noir1-detail-sticky-phone svg { width: 1.125rem; height: 1.125rem; color: var(--ocf-heading); flex-shrink: 0; }
.noir1-detail-sticky-phone a { font-size: var(--text-sm); font-weight: 600; color: var(--ocf-heading); text-decoration: none; transition: color var(--duration) ease; }
.noir1-detail-sticky-phone a:hover { color: var(--ocf-accent); }

.noir1-detail-related { background: var(--ocf-bg-alt); }


/* ─── About Page ─── */

.noir1-about-page-history { background: var(--ocf-bg); }
.noir1-about-page-history-inner { max-width: 48rem; margin: 0 auto; text-align: center; }

.noir1-about-page-lead {
    font-family: var(--ocf-font-heading), Georgia, serif;
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 400; font-style: italic;
    line-height: 1.8; color: var(--ocf-heading);
    max-width: 40rem; margin: 0 auto 3rem;
}

.noir1-about-page-columns { display: grid; grid-template-columns: 1fr; gap: 1.5rem; text-align: left; }
@media (min-width: 768px) { .noir1-about-page-columns { grid-template-columns: 1fr 1fr; gap: 3rem; } }

.noir1-about-page-values { background: var(--ocf-bg-alt); }
.noir1-about-page-values-header { text-align: center; margin-bottom: 3rem; }
.noir1-about-page-values-list { max-width: 44rem; margin: 0 auto; }

.noir1-about-page-value {
    padding: 2rem 0;
    border-bottom: 1px solid var(--ocf-border);
}

.noir1-about-page-value:first-child { border-top: 1px solid var(--ocf-border); }

.noir1-about-page-value-title {
    font-family: var(--ocf-font-heading), Georgia, serif;
    font-size: var(--text-xl); font-weight: 700;
    color: var(--ocf-heading); margin-bottom: 0.5rem;
}

.noir1-about-page-value-desc { font-size: var(--text-base); line-height: 1.8; color: var(--ocf-body); }


/* ─── Contact ─── */

.noir1-contact-header { margin-bottom: 2rem; }
.noir1-contact-details { display: flex; flex-direction: column; gap: 1rem; }
.noir1-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.noir1-contact-item svg { width: 1.125rem; height: 1.125rem; color: var(--ocf-accent); flex-shrink: 0; margin-top: 0.125rem; }


/* ═══════════════════════════════════════════════
   Booking Wizard
   ═══════════════════════════════════════════════ */

.bw-overlay { position: fixed; inset: 0; z-index: 99999; pointer-events: none; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.bw-overlay.is-open { pointer-events: auto; opacity: 1; visibility: visible; }
.bw-backdrop { display: none; }
.bw-modal-close { position: absolute; top: 1rem; right: 1rem; z-index: 10; width: 2.5rem; height: 2.5rem; display: flex; align-items: center; justify-content: center; background: color-mix(in srgb, var(--ocf-heading) 6%, transparent); border: none; border-radius: var(--radius-full); cursor: pointer; color: var(--ocf-body); transition: all var(--duration) ease; }
.bw-modal-close:hover { background: color-mix(in srgb, var(--ocf-heading) 12%, transparent); color: var(--ocf-heading); }
.bw-modal-close svg { width: 1.125rem; height: 1.125rem; }

.bw { position: relative; width: 100%; height: 100%; display: flex; flex-direction: column; background: var(--ocf-bg); overflow-y: auto; }

.bw-progress { position: relative; width: 100%; height: 3px; background: var(--ocf-border); z-index: 2; flex-shrink: 0; }
.bw-progress-bar { height: 100%; width: 20%; background: var(--ocf-accent); border-radius: 0 2px 2px 0; transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1); }

.bw-header { position: relative; display: flex; align-items: center; justify-content: center; width: 100%; padding: 0.625rem 1.5rem; flex-shrink: 0; border-bottom: 1px solid var(--ocf-border); }
.bw-header-brand { display: flex; align-items: center; gap: 1.5rem; }
@media (max-width: 639px) { .bw-header-brand { flex-direction: column; gap: 0.125rem; } }
@media (min-width: 1024px) { .bw-header { height: 6rem; padding: 0 3rem; } }

.bw-logo-text { font-family: var(--ocf-font-heading), Georgia, serif; font-size: var(--text-sm); font-weight: 700; color: var(--ocf-heading); }
.bw-phone { display: flex; align-items: center; gap: 0.4rem; font-size: var(--text-xs); font-weight: 500; color: var(--ocf-heading); text-decoration: none; transition: color var(--duration) ease; }
.bw-phone:hover { color: var(--ocf-accent); }
.bw-phone svg { width: 1rem; height: 1rem; }

.bw-viewport { flex: 1; display: flex; align-items: flex-start; justify-content: center; padding: 1.5rem 1.5rem 0; }
@media (min-width: 640px) { .bw-viewport { padding: 1.5rem 2rem 0; } }
@media (min-width: 1024px) { .bw-viewport { padding: 2rem 3rem 0; } }

.bw-step { display: none; width: 100%; max-width: 680px; margin: 0 auto; animation: bw-fadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.bw-step.is-active { display: block; }
.bw-step.is-leaving { animation: bw-fadeOut 0.25s ease forwards; }

@keyframes bw-fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bw-fadeOut { from { opacity: 1; transform: translateY(0); } to { opacity: 0; transform: translateY(-16px); } }

.bw-step-inner { width: 100%; }
.bw-step-badge { display: inline-block; font-size: var(--text-xs); font-weight: 600; text-transform: uppercase; letter-spacing: 0.25em; color: var(--ocf-accent); margin-bottom: 0.5rem; }
.bw-title { font-family: var(--ocf-font-heading), Georgia, serif; font-size: var(--text-2xl); font-weight: 700; color: var(--ocf-heading); letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 0.5rem; }
.bw-subtitle { font-size: var(--text-base); line-height: 1.5; color: var(--ocf-body); margin-bottom: 1.5rem; max-width: 30rem; }

.bw-service-list { display: flex; flex-direction: column; gap: 0.5rem; }
.bw-service-row { display: flex; align-items: center; gap: 1rem; width: 100%; padding: 1rem 1.25rem; background: var(--ocf-bg); border: 1px solid var(--ocf-border); border-radius: var(--radius); cursor: pointer; transition: all 0.2s ease; text-align: left; font-family: var(--ocf-font-body), system-ui, sans-serif; }
.bw-service-row:hover { border-color: var(--ocf-divider); background: color-mix(in srgb, var(--ocf-heading) 3%, transparent); }
.bw-service-row.is-selected { border-color: var(--ocf-accent); background: color-mix(in srgb, var(--ocf-accent) 8%, transparent); }

.bw-service-row-check { width: 1.5rem; height: 1.5rem; display: flex; align-items: center; justify-content: center; border: 1.5px solid var(--ocf-border); border-radius: 3px; flex-shrink: 0; transition: all 0.2s ease; color: transparent; }
.bw-service-row.is-selected .bw-service-row-check { background: var(--ocf-accent); border-color: var(--ocf-accent); color: var(--ocf-bg); }
.bw-service-row-check svg { width: 0.875rem; height: 0.875rem; }
.bw-service-row-label { font-size: var(--text-base); font-weight: 500; color: var(--ocf-heading); }

.bw-field-group { margin-bottom: 0.875rem; }
.bw-field-label { display: block; font-size: var(--text-xs); font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: var(--ocf-label); margin-bottom: 0.75rem; }
.bw-optional { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--ocf-label); }

.bw-form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.875rem; }
.bw-field-full { grid-column: 1 / -1; }
@media (max-width: 400px) { .bw-form-grid { grid-template-columns: 1fr; } }

.bw-input { display: block; width: 100%; padding: 0.875rem 1rem; font-family: var(--ocf-font-body), system-ui, sans-serif; font-size: var(--text-base); color: var(--ocf-heading); background: var(--ocf-bg); border: 1px solid var(--ocf-border); border-radius: var(--radius); outline: none; transition: border-color var(--duration) ease, box-shadow var(--duration) ease; }
.bw-input:focus { border-color: var(--ocf-accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--ocf-accent) 12%, transparent); }
.bw-input::placeholder { color: var(--ocf-label); }
.bw-input.bw-invalid { border-color: #dc2626; box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15); }
.bw-error-msg { font-size: var(--text-xs); color: #dc2626; margin-top: 0.375rem; font-weight: 500; }

.bw-textarea { display: block; width: 100%; padding: 0.875rem 1rem; font-family: var(--ocf-font-body), system-ui, sans-serif; font-size: var(--text-base); color: var(--ocf-heading); background: var(--ocf-bg); border: 1px solid var(--ocf-border); border-radius: var(--radius); outline: none; resize: vertical; min-height: 90px; transition: border-color var(--duration) ease, box-shadow var(--duration) ease; }
.bw-textarea:focus { border-color: var(--ocf-accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--ocf-accent) 12%, transparent); }
.bw-textarea::placeholder { color: var(--ocf-label); }

.bw-summary { background: var(--ocf-bg-alt); border: 1px solid var(--ocf-border); border-radius: var(--radius-lg); padding: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
@media (min-width: 640px) { .bw-summary { padding: 2.5rem; } }
.bw-summary-row { display: flex; align-items: flex-start; gap: 1rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--ocf-border); }
.bw-summary-row:last-child { padding-bottom: 0; border-bottom: none; }
.bw-summary-icon { display: flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem; flex-shrink: 0; border-radius: var(--radius); background: color-mix(in srgb, var(--ocf-accent) 12%, transparent); color: var(--ocf-accent); }
.bw-summary-icon svg { width: 1.125rem; height: 1.125rem; }
.bw-summary-label { font-size: var(--text-xs); font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--ocf-label); margin-bottom: 0.25rem; }
.bw-summary-value { font-size: var(--text-base); font-weight: 500; color: var(--ocf-heading); line-height: 1.4; }

.bw-success-icon { width: 5rem; height: 5rem; margin: 0 auto 2rem; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-full); background: color-mix(in srgb, var(--ocf-accent) 12%, transparent); color: var(--ocf-accent); animation: bw-pop 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.bw-success-icon svg { width: 2.5rem; height: 2.5rem; }
@keyframes bw-pop { 0% { transform: scale(0); opacity: 0; } 60% { transform: scale(1.15); } 100% { transform: scale(1); opacity: 1; } }
.bw-step--success .bw-title { margin-bottom: 1rem; }
.bw-step--success .bw-subtitle { max-width: 32rem; margin-left: auto; margin-right: auto; }
.bw-success-actions { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; margin-top: 2rem; }
.bw-success-phone { font-size: var(--text-sm); font-weight: 500; color: var(--ocf-body); text-decoration: none; transition: color var(--duration) ease; }
.bw-success-phone:hover { color: var(--ocf-accent); }

.bw-nav { display: flex; align-items: center; justify-content: space-between; max-width: 680px; width: 100%; margin: 0 auto; padding: 1.5rem 1.5rem 2rem; flex-shrink: 0; }
@media (min-width: 640px) { .bw-nav { padding: 2.5rem 2rem 3rem; } }
@media (min-width: 1024px) { .bw-nav { padding: 3rem 3rem 4rem; } }

.bw-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.875rem 2rem; font-family: var(--ocf-font-body), system-ui, sans-serif; font-size: var(--text-sm); font-weight: 600; border-radius: var(--radius); cursor: pointer; transition: all 0.25s ease; border: none; }
.bw-btn svg { width: 1rem; height: 1rem; }
.bw-btn--back { background: transparent; color: var(--ocf-body); padding-left: 1rem; }
.bw-btn--back:hover { color: var(--ocf-heading); }
.bw-btn--next { background: var(--ocf-accent); color: var(--ocf-bg); margin-left: auto; }
.bw-btn--next:hover { background: var(--ocf-accent-hover); }
.bw-btn--next:active { transform: scale(0.98); }
.bw-btn--next.is-loading { opacity: 0.7; pointer-events: none; }

.bw-next-group { display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem; margin-left: auto; }
.bw-key-hint { display: none; font-size: var(--text-xs); font-weight: 400; color: var(--ocf-label); line-height: 1; }
.bw-key-hint strong { font-weight: 600; color: var(--ocf-heading); }
@media (min-width: 768px) { .bw-key-hint { display: block; } }

@keyframes bw-shake { 0%, 100% { transform: translateX(0); } 20% { transform: translateX(-6px); } 40% { transform: translateX(6px); } 60% { transform: translateX(-4px); } 80% { transform: translateX(4px); } }
.bw-shake { animation: bw-shake 0.4s ease; }
.bw-other-input-wrap { margin-top: 0.75rem; animation: bw-fadeUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@media (max-width: 479px) { .bw-title { font-size: var(--text-2xl); } }
