/* ═══════════════════════════════════════════════
   Base 1 — Template Override Layer
   ═══════════════════════════════════════════════
   Thin override on base theme (boldslate-plumber).
   Only what's different. All colors via var(--ocf-*).
   ═══════════════════════════════════════════════ */



/* ─── Hero: 2-col grid + form card ─── */

.base1-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--ocf-bg-dark);
    margin-top: -5rem;
}

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

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

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

.base1-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--ocf-bg-dark) 88%, transparent) 0%,
        color-mix(in srgb, var(--ocf-bg-dark) 75%, transparent) 40%,
        color-mix(in srgb, var(--ocf-bg-dark) 55%, transparent) 100%
    );
}

.base1-hero-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 10rem;
    padding-bottom: 5rem;
}

@media (min-width: 1024px) {
    .base1-hero-grid {
        grid-template-columns: 1fr 420px;
        gap: 4rem;
        align-items: center;
        padding-top: 12rem;
        padding-bottom: 8rem;
    }
}

.base1-hero-text .eyebrow { color: var(--ocf-label-alt); }
.base1-hero-text .heading-section { color: var(--ocf-heading-alt); }
.base1-hero-text .heading-section span { display: block; }

.base1-hero-sub {
    font-size: var(--text-base);
    line-height: 1.75;
    color: var(--ocf-heading-alt);
    max-width: 36rem;
    opacity: 0.8;
}

.base1-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.base1-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-sm);
    font-weight: 400;
    color: var(--ocf-body-alt);
}

.base1-hero-trust svg {
    width: 1rem;
    height: 1rem;
    color: var(--ocf-heading-alt);
    flex-shrink: 0;
}


/* ─── Hero form card ─── */

.hero-form-card {
    background: var(--ocf-bg);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg), 0 0 0 1px color-mix(in srgb, var(--ocf-border-light) 10%, transparent);
}

@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: 600;
    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-form-card .hero-form-fields {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.hero-form-card input,
.hero-form-card textarea,
.hero-form-card select {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--ocf-font-body), system-ui, sans-serif;
    font-size: var(--text-base);
    color: var(--ocf-heading);
    background: var(--ocf-bg-alt);
    border: 1px solid var(--ocf-border-light);
    border-radius: var(--radius);
    outline: none;
    transition: border-color var(--duration) ease, box-shadow var(--duration) ease;
}

.hero-form-card input:focus,
.hero-form-card textarea:focus,
.hero-form-card select:focus {
    border-color: var(--ocf-accent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--ocf-accent) 10%, transparent);
}

.hero-form-card input::placeholder,
.hero-form-card textarea::placeholder {
    color: var(--ocf-divider);
}

.hero-form-card textarea {
    min-height: 80px;
    resize: vertical;
}

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

.hero-form-card .form-submit-btn:hover {
    background: var(--ocf-accent-hover);
}


/* ─── Services: icon cards ─── */

.base1-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .base1-services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .base1-services-grid { grid-template-columns: repeat(3, 1fr); }
}

.base1-service-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border-radius: var(--radius);
    background: var(--ocf-bg);
    border: 1px solid color-mix(in srgb, var(--ocf-border-light) 6%, transparent);
    text-decoration: none;
    transition: border-color var(--duration) ease, box-shadow var(--duration-slow) var(--ease), transform var(--duration-slow) var(--ease);
}

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

.base1-service-card:hover {
    border-color: var(--ocf-border-light);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.base1-service-icon {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--ocf-accent) 8%, transparent);
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    color: var(--ocf-accent);
}

.base1-service-icon svg {
    width: 1.375rem;
    height: 1.375rem;
}

.base1-service-card h3 {
    font-family: var(--ocf-font-heading), Georgia, serif;
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--ocf-heading);
    margin-bottom: 0.5rem;
}

.base1-service-card p {
    font-size: var(--text-sm);
    line-height: 1.7;
    color: var(--ocf-body);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.base1-service-card .card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 1.25rem;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--ocf-body);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: color var(--duration) ease;
}

.base1-service-card:hover .card-arrow { color: var(--ocf-accent); }

.base1-service-card .card-arrow svg {
    width: 0.875rem;
    height: 0.875rem;
    transition: transform var(--duration) ease;
}

.base1-service-card:hover .card-arrow svg {
    transform: translateX(3px);
}


/* ─── Testimonials: contrast section carousel ─── */

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

.base1-testimonials .eyebrow { color: var(--ocf-label); }
.base1-testimonials .heading-section { color: var(--ocf-heading); }

.base1-testimonials-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.base1-testimonial-viewport {
    overflow: hidden;
}

.base1-testimonial-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.base1-testimonial-card {
    flex: 0 0 100%;
    min-width: 0;
    background: var(--ocf-bg);
    border: 1px solid color-mix(in srgb, var(--ocf-border-light) 6%, transparent);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

@media (min-width: 640px) {
    .base1-testimonial-card {
        flex: 0 0 calc(50% - 0.75rem);
        padding: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .base1-testimonial-card { flex: 0 0 calc(33.333% - 1rem); }
}

.base1-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1.25rem;
}

.base1-stars svg {
    width: 1rem;
    height: 1rem;
    fill: #f59e0b;
    color: #f59e0b;
}

.base1-testimonial-card blockquote {
    font-size: var(--text-base);
    line-height: 1.75;
    color: var(--ocf-body);
    flex: 1;
    margin: 0 0 1.5rem;
}

.base1-testimonial-footer {
    padding-top: 1.25rem;
    border-top: 1px solid color-mix(in srgb, var(--ocf-border-light) 6%, transparent);
}

.base1-testimonial-footer strong {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--ocf-heading);
}

.base1-testimonial-footer span {
    display: block;
    font-size: var(--text-xs);
    color: var(--ocf-label);
    margin-top: 0.125rem;
}

.base1-testimonial-nav {
    display: flex;
    gap: 0.75rem;
}

.base1-testimonial-nav button {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--ocf-border-light);
    border-radius: var(--radius-full);
    color: var(--ocf-heading);
    cursor: pointer;
    transition: all var(--duration) ease;
}

.base1-testimonial-nav button:hover {
    background: color-mix(in srgb, var(--ocf-heading) 8%, transparent);
    border-color: color-mix(in srgb, var(--ocf-heading) 20%, transparent);
}

.base1-testimonial-nav button svg {
    width: 1rem;
    height: 1rem;
}


/* ─── CTA: contrast banner ─── */

.base1-cta-banner {
    position: relative;
    background: var(--ocf-bg-alt);
    text-align: center;
    overflow: hidden;
}

.base1-cta-banner .eyebrow { color: var(--ocf-label); }
.base1-cta-banner .heading-section { color: var(--ocf-heading); }

.base1-cta-desc {
    font-size: var(--text-base);
    line-height: 1.75;
    color: var(--ocf-body);
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
}

.base1-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .base1-cta-buttons { flex-direction: row; justify-content: center; }
}

/* btn-ghost on light bg (areas + CTA sections) */
.base1-areas .btn-ghost,
.base1-cta-banner .btn-ghost {
    background-color: transparent;
    color: var(--ocf-heading);
    border-color: var(--ocf-border-light);
}

.base1-areas .btn-ghost:hover,
.base1-cta-banner .btn-ghost:hover {
    background-color: color-mix(in srgb, var(--ocf-heading) 5%, transparent);
    border-color: var(--ocf-heading);
}


/* ─── CTA: service areas section ─── */

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

.base1-areas .eyebrow { color: var(--ocf-label); }
.base1-areas .heading-section { color: var(--ocf-heading); }

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

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

.base1-map {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-lg);
}

.base1-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.base1-areas-desc {
    color: var(--ocf-body);
    line-height: 1.7;
}

.base1-area-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.base1-area-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    background: transparent;
    border: none;
    color: var(--ocf-heading);
    font-size: var(--text-sm);
    font-weight: 500;
    text-decoration: none;
    transition: color var(--duration) ease;
}

.base1-area-link:hover {
    color: var(--ocf-accent);
}

.base1-area-link svg {
    width: 0.875rem;
    height: 0.875rem;
    color: var(--ocf-label);
    flex-shrink: 0;
}


/* ─── FAQ: 2-col accordion ─── */

.base1-faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .base1-faq-grid { grid-template-columns: 1fr 1fr; }
}

.base1-faq-item {
    background: var(--ocf-bg);
    border: 1px solid color-mix(in srgb, var(--ocf-border-light) 6%, transparent);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--duration) ease;
}

.base1-faq-item:hover {
    border-color: var(--ocf-border-light);
}

.base1-faq-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--ocf-font-heading), Georgia, serif;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--ocf-heading);
    line-height: 1.4;
}

.base1-faq-icon {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
    color: var(--ocf-body);
    transition: transform var(--duration) ease;
}

.base1-faq-item.open .base1-faq-icon {
    transform: rotate(45deg);
}

.base1-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.base1-faq-answer p {
    padding: 0 1.5rem 1.25rem;
    font-size: var(--text-sm);
    line-height: 1.7;
    color: var(--ocf-body);
    margin: 0;
}


/* ─── Page header: gradient + crosshatch texture ─── */

.page-header {
    background:
        url('data:image/svg+xml,%3Csvg%20width%3D%2240%22%20height%3D%2240%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M0%200L40%2040M40%200L0%2040%22%20stroke%3D%22%23ffffff%22%20stroke-width%3D%220.5%22%20opacity%3D%220.04%22%2F%3E%3C/svg%3E'),
        linear-gradient(
            135deg,
            var(--ocf-bg-dark) 0%,
            color-mix(in srgb, var(--ocf-bg-dark) 85%, var(--ocf-accent)) 100%
        );
    background-size: 40px 40px, 100% 100%;
}


/* ─── Placeholder image ─── */

.base1-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ocf-bg-dark), color-mix(in srgb, var(--ocf-bg-dark) 80%, var(--ocf-accent)));
    color: var(--ocf-border-alt);
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.base1-placeholder svg {
    width: 3rem;
    height: 3rem;
    opacity: 0.3;
}


/* ─── Footer font bump ─── */

.site-footer { font-size: var(--text-sm); }


/* ═══════════════════════════════════════════════
   About Page — Editorial Layout
   ═══════════════════════════════════════════════ */


/* ─── History: editorial split ─── */

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

.base1-history-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .base1-history-layout {
        grid-template-columns: 5fr 7fr;
        gap: 5rem;
        align-items: start;
    }
}

.base1-history-heading {
    margin-top: 1rem;
}

.base1-history-lead {
    font-family: var(--ocf-font-heading), Georgia, serif;
    font-size: var(--text-2xl);
    font-weight: 400;
    line-height: 1.4;
    color: var(--ocf-heading);
    letter-spacing: -0.01em;
    margin-bottom: 2.5rem;
}

.base1-history-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .base1-history-cols {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}


/* ─── Values: clean grid with hover ─── */

.base1-about-values {
    background: var(--ocf-bg-alt);
}

.base1-values-header {
    max-width: 36rem;
    margin-bottom: 4rem;
}

.base1-values-header .eyebrow {
    margin-bottom: 1rem;
}

.base1-values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .base1-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .base1-values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.base1-value-card {
    background: var(--ocf-bg);
    border: 1px solid color-mix(in srgb, var(--ocf-border-light) 6%, transparent);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all var(--duration-slow) var(--ease);
}

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

.base1-value-card:hover {
    border-color: var(--ocf-border);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.base1-value-number {
    display: block;
    font-family: var(--ocf-font-heading), Georgia, serif;
    font-size: var(--text-3xl);
    font-weight: 300;
    color: color-mix(in srgb, var(--ocf-border) 45%, transparent);
    line-height: 1;
    margin-bottom: 1.5rem;
    transition: color var(--duration-slow) ease;
}

.base1-value-card:hover .base1-value-number {
    color: var(--ocf-accent);
}

.base1-value-title {
    font-family: var(--ocf-font-heading), Georgia, serif;
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--ocf-heading);
    letter-spacing: -0.01em;
    margin-bottom: 0.625rem;
}


/* ─── Service area: centered badges ─── */

.base1-about-area {
    background: var(--ocf-bg);
    border-top: 1px solid color-mix(in srgb, var(--ocf-border-light) 6%, transparent);
}

.base1-area-center {
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.base1-area-center .eyebrow {
    margin-bottom: 1rem;
}

.base1-area-center .heading-section {
    margin-bottom: 1.5rem;
}

.base1-area-desc {
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.base1-area-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.625rem;
}

.base1-area-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--ocf-bg-alt);
    border: 1px solid color-mix(in srgb, var(--ocf-border-light) 6%, transparent);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--ocf-heading);
    transition: all var(--duration) ease;
}

.base1-area-badge:hover {
    border-color: var(--ocf-accent);
    color: var(--ocf-accent);
    background: color-mix(in srgb, var(--ocf-accent) 5%, var(--ocf-bg));
}


/* ═══════════════════════════════════════════════
   Shared Detail Layout (Service + Service Area)
   ═══════════════════════════════════════════════ */

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

/* ─── Grid: content + sticky sidebar ─── */

.base1-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

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

@media (min-width: 1280px) {
    .base1-detail-grid { gap: 5rem; }
}

/* ─── Main content ─── */

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

.base1-detail-lead {
    font-family: var(--ocf-font-heading), Georgia, serif;
    font-size: var(--text-xl);
    font-weight: 400;
    line-height: 1.7;
    color: var(--ocf-heading);
    letter-spacing: -0.01em;
    margin-bottom: 2.5rem;
}

.base1-detail-img {
    margin-bottom: 3rem;
    border-radius: var(--radius);
    overflow: hidden;
}

.base1-detail-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* ─── Features grid ─── */

.base1-detail-features {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid color-mix(in srgb, var(--ocf-border-light) 8%, transparent);
}

.base1-detail-features-eyebrow {
    margin-bottom: 1.5rem;
}

.base1-detail-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .base1-detail-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem 2.5rem;
    }
}

.base1-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.625rem 0;
}

.base1-feature-item svg {
    width: 1.125rem;
    height: 1.125rem;
    color: var(--ocf-accent);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.base1-feature-item span {
    font-size: var(--text-sm);
    color: var(--ocf-body);
    line-height: 1.6;
}

/* ─── Sticky CTA sidebar ─── */

.base1-detail-aside {
    display: none;
}

@media (min-width: 1024px) {
    .base1-detail-aside { display: block; }
}

.base1-detail-sticky {
    position: sticky;
    top: 9rem;
    background: var(--ocf-bg-alt);
    border: 1px solid color-mix(in srgb, var(--ocf-border-light) 6%, transparent);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

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

.base1-detail-sticky-desc {
    font-size: var(--text-sm);
    margin-bottom: 1.5rem;
}

.base1-detail-sticky-btn {
    width: 100%;
    justify-content: center;
}

.base1-detail-sticky-btn svg {
    width: 1rem;
    height: 1rem;
}

.base1-detail-sticky-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid color-mix(in srgb, var(--ocf-border-light) 8%, transparent);
}

.base1-detail-sticky-phone svg {
    width: 1rem;
    height: 1rem;
    color: var(--ocf-body);
    flex-shrink: 0;
}

.base1-detail-sticky-phone a {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--ocf-heading);
    transition: color var(--duration) ease;
}

.base1-detail-sticky-phone a:hover {
    color: var(--ocf-accent);
}

.base1-detail-sticky-note {
    text-align: center;
    font-size: var(--text-xs);
    color: var(--ocf-body);
    margin-top: 1rem;
    opacity: 0.6;
}

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


/* ═══════════════════════════════════════════════
   Contact Page — Industrial Editorial
   ═══════════════════════════════════════════════ */

.base1-contact {
    background: var(--ocf-bg);
}

.base1-contact-heading {
    margin-bottom: 1.25rem;
}

.base1-contact-intro {
    margin-bottom: 2.5rem;
    max-width: 30rem;
}

/* Contact detail rows */

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

.base1-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: color var(--duration) ease;
}

a.base1-contact-item:hover .base1-contact-item-body strong {
    color: var(--ocf-accent);
}

.base1-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    border-radius: var(--radius);
    background: var(--ocf-bg-alt);
    border: 1px solid var(--ocf-border-light);
    color: var(--ocf-accent);
    transition: background var(--duration) ease, border-color var(--duration) ease;
}

a.base1-contact-item:hover .base1-contact-icon {
    background: color-mix(in srgb, var(--ocf-accent) 8%, transparent);
    border-color: color-mix(in srgb, var(--ocf-accent) 20%, transparent);
}

.base1-contact-icon svg {
    width: 1.125rem;
    height: 1.125rem;
}

.base1-contact-item-body {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    padding-top: 0.25rem;
}

.base1-contact-item-body strong {
    font-family: var(--ocf-font-heading), Georgia, serif;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--ocf-heading);
    transition: color var(--duration) ease;
}

.base1-contact-item-body span {
    font-size: var(--text-sm);
    color: var(--ocf-body);
    line-height: 1.5;
}

/* Office hours block */

.base1-contact-hours {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--ocf-border-light);
}

.base1-contact-hours-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    color: var(--ocf-label);
}

.base1-contact-hours-label svg {
    width: 0.875rem;
    height: 0.875rem;
    color: var(--ocf-accent);
    flex-shrink: 0;
}

.base1-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    max-width: 20rem;
}

.base1-hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: var(--text-sm);
}

.base1-hours-list li .text-body {
    font-size: inherit;
}

.base1-hours-list li > span:last-child {
    color: var(--ocf-heading);
    font-weight: 500;
}

.base1-contact-emergency {
    margin-top: 0.875rem;
    font-size: var(--text-xs);
    color: var(--ocf-body);
    line-height: 1.5;
}

/* Form card */

.base1-contact-form-card {
    position: sticky;
    top: 7rem;
}

.base1-contact-form-card:hover {
    transform: none;
}

.base1-contact-form-header {
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--ocf-border-light);
}

.base1-contact-form-header h3 {
    font-family: var(--ocf-font-heading), Georgia, serif;
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--ocf-heading);
    margin-bottom: 0.375rem;
}

.base1-contact-form-header p {
    font-size: var(--text-sm);
    color: var(--ocf-body);
    line-height: 1.6;
}

/* CF7 form inside card */

.base1-contact-form-card .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.base1-contact-form-card .wpcf7-form label {
    display: block;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ocf-label);
    margin-bottom: 0.375rem;
}

.base1-contact-form-card .wpcf7-form input[type="text"],
.base1-contact-form-card .wpcf7-form input[type="email"],
.base1-contact-form-card .wpcf7-form input[type="tel"],
.base1-contact-form-card .wpcf7-form input[type="url"],
.base1-contact-form-card .wpcf7-form textarea,
.base1-contact-form-card .wpcf7-form select {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--ocf-font-body), system-ui, sans-serif;
    font-size: var(--text-base);
    color: var(--ocf-heading);
    background: var(--ocf-bg-alt);
    border: 1px solid var(--ocf-border-light);
    border-radius: var(--radius);
    outline: none;
    transition: border-color var(--duration) ease, box-shadow var(--duration) ease;
}

.base1-contact-form-card .wpcf7-form input:focus,
.base1-contact-form-card .wpcf7-form textarea:focus,
.base1-contact-form-card .wpcf7-form select:focus {
    border-color: var(--ocf-accent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--ocf-accent) 10%, transparent);
}

.base1-contact-form-card .wpcf7-form input::placeholder,
.base1-contact-form-card .wpcf7-form textarea::placeholder {
    color: var(--ocf-divider);
}

.base1-contact-form-card .wpcf7-form textarea {
    min-height: 100px;
    resize: vertical;
}

.base1-contact-form-card .wpcf7-form input[type="submit"] {
    display: block;
    width: 100%;
    padding: 0.875rem 2rem;
    background: var(--ocf-accent);
    color: var(--ocf-heading-alt);
    font-family: var(--ocf-font-body), system-ui, sans-serif;
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background var(--duration) ease;
}

.base1-contact-form-card .wpcf7-form input[type="submit"]:hover {
    background: var(--ocf-accent-hover);
}

/* Fallback when CF7 not configured */

.base1-contact-form-fallback {
    text-align: center;
    padding: 2rem 0;
}

.base1-contact-form-fallback p {
    margin-bottom: 1.5rem;
}

/* Validation messages */

.base1-contact-form-card .wpcf7-not-valid-tip {
    font-size: var(--text-xs);
    color: #dc2626;
    margin-top: 0.25rem;
}

.base1-contact-form-card .wpcf7-response-output {
    font-size: var(--text-sm);
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    margin-top: 0.5rem;
}


/* ═══════════════════════════════════════════════
   Blog Post — Magazine Editorial
   ═══════════════════════════════════════════════ */

/* Hero banner */
.base1-article-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--ocf-bg-dark);
    margin-top: -5rem;
}

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

.base1-article-hero-img {
    position: absolute;
    inset: 0;
}

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

.base1-article-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        color-mix(in srgb, var(--ocf-bg-dark) 90%, transparent) 0%,
        color-mix(in srgb, var(--ocf-bg-dark) 50%, transparent) 50%,
        color-mix(in srgb, var(--ocf-bg-dark) 30%, transparent) 100%
    );
}

.base1-article-hero-overlay--no-img {
    background: linear-gradient(
        135deg,
        var(--ocf-bg-dark) 0%,
        color-mix(in srgb, var(--ocf-bg-dark) 85%, var(--ocf-accent)) 100%
    );
}

.base1-article-hero-inner {
    position: relative;
    z-index: 10;
    padding-top: 9rem;
    padding-bottom: 5rem;
}

@media (min-width: 1024px) {
    .base1-article-hero-inner { padding-top: 11rem; padding-bottom: 6rem; }
}

.base1-article-hero-inner .heading-section {
    color: var(--ocf-heading-alt);
    max-width: 48rem;
}


/* Meta bar */
.base1-article-meta-bar {
    background: var(--ocf-bg);
    border-bottom: 1px solid color-mix(in srgb, var(--ocf-border-light) 8%, transparent);
}

.base1-article-meta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

@media (min-width: 768px) {
    .base1-article-meta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.base1-article-breadcrumbs {
    font-size: var(--text-xs);
    color: var(--ocf-body);
}

.base1-article-breadcrumbs a {
    color: var(--ocf-body);
    transition: color var(--duration) ease;
}

.base1-article-breadcrumbs a:hover {
    color: var(--ocf-heading);
}

.base1-article-meta-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.base1-article-date,
.base1-article-read {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--ocf-body);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.base1-article-date svg,
.base1-article-read svg {
    width: 0.875rem;
    height: 0.875rem;
    color: var(--ocf-accent);
    flex-shrink: 0;
}


/* Article body */
.base1-article-body {
    background: var(--ocf-bg);
}

.base1-article-prose {
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}


/* More articles section */
.base1-article-more {
    background: var(--ocf-bg-alt);
}


/* ═══════════════════════════════════════════════
   Booking Wizard — Full-screen interactive flow
   ═══════════════════════════════════════════════ */

.bw {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--ocf-bg);
    margin-top: -5rem;
    padding-top: 5rem;
}

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

/* ─── Progress bar ─── */

.bw-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--ocf-border-light);
    z-index: 60;
}

.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);
}

/* ─── Header ─── */

.bw-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 55;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
    padding: 0 1.5rem;
    background: color-mix(in srgb, var(--ocf-bg) 92%, transparent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid color-mix(in srgb, var(--ocf-border-light) 6%, transparent);
}

@media (min-width: 1024px) {
    .bw-header { height: 6rem; padding: 0 3rem; }
}

.bw-logo { text-decoration: none; }

.bw-logo-img {
    height: 2rem;
    width: auto;
}

@media (min-width: 1024px) {
    .bw-logo-img { height: 2.5rem; }
}

.bw-logo-text {
    font-family: var(--ocf-font-heading), Georgia, serif;
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--ocf-heading);
    letter-spacing: -0.02em;
}

.bw-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-sm);
    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;
}

/* ─── Steps viewport ─── */

.bw-viewport {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem 0;
}

@media (min-width: 640px) {
    .bw-viewport { padding: 3rem 2rem 0; }
}

@media (min-width: 1024px) {
    .bw-viewport { padding: 4rem 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%;
}

/* ─── Step typography ─── */

.bw-step-badge {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--ocf-accent);
    margin-bottom: 1rem;
}

.bw-title {
    font-family: var(--ocf-font-heading), Georgia, serif;
    font-size: var(--text-4xl);
    font-weight: 600;
    color: var(--ocf-heading);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.bw-subtitle {
    font-size: var(--text-lg);
    line-height: 1.6;
    color: var(--ocf-heading);
    margin-bottom: 2.5rem;
    max-width: 30rem;
}

/* ─── Service tile grid (Step 1) ─── */

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

@media (min-width: 640px) {
    .bw-service-grid { grid-template-columns: repeat(3, 1fr); gap: 0.625rem; }
}

/* ─── Tiles (universal) ─── */

.bw-tile {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--ocf-bg);
    border: 1.5px solid var(--ocf-border-light);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: left;
    font-family: var(--ocf-font-body), system-ui, sans-serif;
    color: var(--ocf-heading);
}

.bw-tile:hover {
    border-color: var(--ocf-border);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.bw-tile.is-selected {
    border-color: var(--ocf-accent);
    background: color-mix(in srgb, var(--ocf-accent) 4%, var(--ocf-bg));
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--ocf-accent) 12%, transparent);
}

.bw-tile.is-selected .bw-tile-check {
    opacity: 1;
    transform: scale(1);
}

.bw-tile-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--ocf-accent);
    transition: color 0.25s ease;
}

.bw-tile-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.bw-tile-label {
    font-size: var(--text-sm);
    font-weight: 600;
    line-height: 1.3;
}

.bw-tile-check {
    margin-left: auto;
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ocf-accent);
    color: var(--ocf-bg);
    border-radius: var(--radius-full);
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.bw-tile-check svg {
    width: 0.75rem;
    height: 0.75rem;
}

/* ─── Choice buttons (Step 2 & 3) ─── */

.bw-field-group {
    margin-bottom: 1.25rem;
}

.bw-field-label {
    display: block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ocf-label);
    margin-bottom: 0.75rem;
}

.bw-optional {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--ocf-divider);
}

.bw-choice-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.bw-choice-row--3 {
    grid-template-columns: repeat(3, 1fr);
}

.bw-choice {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 0.75rem;
    background: var(--ocf-bg);
    border: 1.5px solid var(--ocf-border-light);
    border-radius: var(--radius);
    cursor: pointer;
    font-family: var(--ocf-font-body), system-ui, sans-serif;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--ocf-heading);
    transition: all 0.25s ease;
}

.bw-choice svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--ocf-body);
    transition: color 0.25s ease;
}

.bw-choice:hover {
    border-color: var(--ocf-border);
    box-shadow: var(--shadow-sm);
}

.bw-choice.is-selected {
    border-color: var(--ocf-accent);
    background: color-mix(in srgb, var(--ocf-accent) 4%, var(--ocf-bg));
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--ocf-accent) 12%, transparent);
}

.bw-choice.is-selected svg {
    color: var(--ocf-accent);
}

/* ─── Textarea ─── */

.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: 1.5px solid var(--ocf-border-light);
    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) 10%, transparent);
}

.bw-textarea::placeholder {
    color: var(--ocf-divider);
}

/* ─── Form inputs (Step 3) ─── */

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

@media (min-width: 640px) {
    .bw-form-grid { grid-template-columns: repeat(2, 1fr); }
    .bw-field-full { grid-column: 1 / -1; }
}

.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: 1.5px solid var(--ocf-border-light);
    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) 10%, transparent);
}

.bw-input::placeholder {
    color: var(--ocf-divider);
}

.bw-input.bw-invalid {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.bw-error-msg {
    font-size: var(--text-xs);
    color: #dc2626;
    margin-top: 0.375rem;
    font-weight: 500;
}

/* ─── Summary (Step 4) ─── */

.bw-summary {
    background: var(--ocf-bg-alt);
    border: 1px solid var(--ocf-border-light);
    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 color-mix(in srgb, var(--ocf-border-light) 8%, transparent);
}

.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) 8%, 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.12em;
    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;
}

/* ─── Success state ─── */

.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) 10%, 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);
}

/* ─── Schedule: time + date side by side ─── */

.bw-schedule-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .bw-schedule-row {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .bw-schedule-row .bw-field-group { margin-bottom: 0; }
}

/* ─── Date picker row ─── */

.bw-date-row {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
}

.bw-date-row .bw-choice--asap {
    flex: 0 0 auto;
    min-width: 100px;
}

.bw-date-input-wrap {
    flex: 1;
}

.bw-date-input {
    height: 100%;
    cursor: pointer;
}

.bw-date-input.is-selected {
    border-color: var(--ocf-accent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--ocf-accent) 12%, transparent);
}

/* ─── Nav buttons (inline with content) ─── */

.bw-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 3rem;
}

@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;
}

/* ─── Next button group + Enter hint ─── */

.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; }
}

/* ─── Shake validation ─── */

@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;
}

/* ─── "Other" type-in input ─── */

.bw-other-input-wrap {
    margin-top: 0.75rem;
    animation: bw-fadeUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ─── Mobile refinements ─── */

@media (max-width: 479px) {
    .bw-choice-row--3 {
        grid-template-columns: 1fr;
    }
    .bw-title {
        font-size: var(--text-2xl);
    }
}

