/* ═══════════════════════════════════════════════
   Elite 1 — Quiet Luxury Template Override
   ═══════════════════════════════════════════════
   Editorial serif typography, generous whitespace,
   warm earth tones. All colors via var(--ocf-*).
   Fonts: Instrument Serif (heading) + DM Sans (body)
   ═══════════════════════════════════════════════ */



/* ─── Hero: Editorial Split Layout ─── */

.elite1-hero {
    position: relative;
    min-height: min(90vh, 56rem);
    display: flex;
    align-items: center;
    background: var(--ocf-bg);
    overflow: hidden;
    margin-top: -5rem;
    padding-top: 8rem;
    padding-bottom: 5rem;
}

@media (min-width: 1024px) {
    .elite1-hero {
        margin-top: -6rem;
        padding-top: 10rem;
        padding-bottom: 6rem;
    }
}

.elite1-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .elite1-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

/* Hero text */

.elite1-hero-eyebrow {
    font-size: var(--text-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ocf-label);
    margin-bottom: 1.5rem;
}

.elite1-hero-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ocf-heading);
    margin-bottom: 2rem;
}

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

.elite1-hero-sub {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--ocf-body);
    max-width: 32rem;
    margin-bottom: 2.5rem;
}

.elite1-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

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

.elite1-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-sm);
    color: var(--ocf-body);
}

.elite1-trust-item svg {
    width: 1rem;
    height: 1rem;
    color: var(--ocf-accent);
    flex-shrink: 0;
}

/* Hero visual — editorial image */

.elite1-hero-visual {
    position: relative;
}

.elite1-hero-image {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

@media (min-width: 1024px) {
    .elite1-hero-image {
        aspect-ratio: 3 / 4;
    }
}

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

/* Floating card on image */

.elite1-hero-card {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--ocf-bg);
    border: 1px solid var(--ocf-border-light);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    min-width: 200px;
}

@media (max-width: 639px) {
    .elite1-hero-card {
        bottom: -1rem;
        left: 1rem;
        right: 1rem;
    }
}

.elite1-hero-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.elite1-hero-card-rating {
    display: inline-flex;
    gap: 2px;
    color: #d4a853;
}

.elite1-hero-card-rating svg {
    flex-shrink: 0;
}

.elite1-hero-card-label {
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--ocf-label);
}

.elite1-hero-card-stat {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.elite1-hero-card-number {
    font-family: var(--ocf-font-heading), Georgia, serif;
    font-size: var(--text-2xl);
    font-weight: 400;
    color: var(--ocf-heading);
    line-height: 1;
}

.elite1-hero-card-desc {
    font-size: var(--text-sm);
    color: var(--ocf-body);
    line-height: 1.3;
}


/* ─── Hero form card (compact on-ramp) ─── */

.elite1-form-card {
    background: var(--ocf-bg);
    border: 1px solid var(--ocf-border-light);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

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

.elite1-form-title {
    font-family: var(--ocf-font-heading), Georgia, serif;
    font-size: var(--text-xl);
    font-weight: 400;
    color: var(--ocf-heading);
    margin-bottom: 0.375rem;
}

.elite1-form-subtitle {
    font-size: var(--text-sm);
    color: var(--ocf-body);
    margin-bottom: 1.5rem;
}

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


/* ─── Hero service on-ramp (shared with base1 classes) ─── */

.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-light);
    border-radius: 6px;
    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-border);
    background: var(--ocf-bg-alt);
}

.hero-svc-row.is-selected {
    border-color: var(--ocf-accent);
    background: color-mix(in srgb, var(--ocf-accent) 4%, var(--ocf-bg));
}

.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: 4px;
    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.75rem 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: 500;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 6px;
    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.4;
    cursor: not-allowed;
}


/* ─── Services: Minimal Text List ─── */

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

.elite1-services-header {
    max-width: 36rem;
    margin-bottom: 3rem;
}

.elite1-svc-list {
    display: flex;
    flex-direction: column;
}

.elite1-svc-row {
    display: grid;
    grid-template-columns: 2.5rem 1fr auto;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--ocf-border-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .elite1-svc-row {
        grid-template-columns: 3rem 1fr 1fr auto;
        gap: 2rem;
        padding: 1.75rem 0;
    }
}

.elite1-svc-row:first-child {
    border-top: 1px solid var(--ocf-border-light);
}

.elite1-svc-row:hover {
    padding-left: 1rem;
}

.elite1-svc-row:hover .elite1-svc-title {
    color: var(--ocf-accent);
}

.elite1-svc-row:hover .elite1-svc-arrow {
    opacity: 1;
    transform: translateX(0);
}

.elite1-svc-num {
    font-family: var(--ocf-font-heading), Georgia, serif;
    font-size: var(--text-sm);
    color: var(--ocf-label);
    font-weight: 400;
}

.elite1-svc-title {
    font-family: var(--ocf-font-heading), Georgia, serif;
    font-size: var(--text-xl);
    font-weight: 400;
    color: var(--ocf-heading);
    transition: color 0.3s ease;
}

.elite1-svc-desc {
    display: none;
    font-size: var(--text-sm);
    color: var(--ocf-body);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .elite1-svc-desc { display: block; }
}

.elite1-svc-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ocf-label);
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
}


/* Services grid (services page) */

.elite1-svc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

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

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

.elite1-svc-card:hover {
    border-color: var(--ocf-border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.elite1-svc-card-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.elite1-svc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.elite1-svc-card:hover .elite1-svc-card-img img {
    transform: scale(1.05);
}

.elite1-svc-card-body {
    padding: 1.5rem;
}

.elite1-svc-card-body h3 {
    font-family: var(--ocf-font-heading), Georgia, serif;
    font-size: var(--text-lg);
    font-weight: 400;
    color: var(--ocf-heading);
    margin-bottom: 0.5rem;
}

.elite1-svc-card-body p {
    font-size: var(--text-sm);
    color: var(--ocf-body);
    line-height: 1.7;
}


/* ─── About: Full-width Image + Overlapping Card ─── */

.elite1-about {
    background: var(--ocf-bg);
    overflow: visible;
}

.elite1-about-image {
    width: 100%;
    aspect-ratio: 16 / 7;
    border-radius: 8px;
    overflow: hidden;
}

@media (max-width: 639px) {
    .elite1-about-image {
        aspect-ratio: 4 / 3;
    }
}

.elite1-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.elite1-about-card {
    background: var(--ocf-bg);
    border: 1px solid var(--ocf-border-light);
    border-radius: 8px;
    padding: 2.5rem;
    margin-top: -4rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 48rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

@media (min-width: 768px) {
    .elite1-about-card {
        padding: 3.5rem;
        margin-top: -6rem;
    }
}

.elite1-about-commitments {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--ocf-border-light);
}

@media (min-width: 640px) {
    .elite1-about-commitments {
        grid-template-columns: 1fr 1fr;
    }
}

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

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


/* ─── Testimonials: Single Large Rotating Quote ─── */

.elite1-testimonials {
    background: var(--ocf-bg-alt);
}

.elite1-testimonials-header {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto 4rem;
}

.elite1-testimonial-stage {
    max-width: 44rem;
    margin: 0 auto;
    position: relative;
    min-height: 280px;
}

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

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

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

.elite1-testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.elite1-testimonial-author strong {
    font-family: var(--ocf-font-body), system-ui, sans-serif;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--ocf-heading);
}

.elite1-testimonial-author span {
    font-size: var(--text-sm);
    color: var(--ocf-label);
}

/* Dots */

.elite1-testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
}

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

.elite1-dot.is-active {
    background: var(--ocf-heading);
    transform: scale(1.3);
}

.elite1-dot:hover:not(.is-active) {
    background: var(--ocf-body);
}


/* ─── Trust Stats: Large Serif Numbers ─── */

.elite1-trust {
    border-top: 1px solid var(--ocf-border-light);
    border-bottom: 1px solid var(--ocf-border-light);
}

.elite1-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .elite1-trust-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}

.elite1-trust-stat {
    text-align: center;
    padding: 1rem 0;
}

.elite1-trust-value {
    font-family: var(--ocf-font-heading), Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--ocf-heading);
    line-height: 1;
    margin-bottom: 0.5rem;
}

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


/* ─── CTA: Light Airy Banner ─── */

.elite1-cta {
    background: var(--ocf-bg-alt);
}

.elite1-cta-inner {
    text-align: center;
}

.elite1-cta-desc {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--ocf-body);
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

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


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

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

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

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

.elite1-map {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

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

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

.elite1-area-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
}

.elite1-area-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--ocf-heading);
    text-decoration: none;
    padding: 0.375rem 0;
    transition: color 0.2s ease;
}

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

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


/* ─── FAQ Accordion ─── */

.elite1-faq {
    background: var(--ocf-bg-alt);
}

.elite1-faq-list {
    display: flex;
    flex-direction: column;
}

.elite1-faq-item {
    border-bottom: 1px solid var(--ocf-border-light);
}

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

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

.elite1-faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    color: var(--ocf-label);
    transition: transform 0.3s ease;
}

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

.elite1-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.elite1-faq-answer p {
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--ocf-body);
    padding-bottom: 1.5rem;
}


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

.elite1-page-header {
    background: var(--ocf-bg-alt);
    padding: 8rem 0 4rem;
    position: relative;
}

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

.elite1-page-header-inner {
    position: relative;
    z-index: 2;
}

.elite1-page-header .heading-section {
    max-width: 36rem;
}

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


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

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

.elite1-post-card:hover {
    border-color: var(--ocf-border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.elite1-post-card--overlay {
    position: relative;
    min-height: 280px;
    text-decoration: none;
    border: none;
}

.elite1-post-card-bg {
    position: absolute;
    inset: 0;
}

.elite1-post-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.elite1-post-card--overlay:hover .elite1-post-card-bg img {
    transform: scale(1.05);
}

.elite1-post-card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        color-mix(in srgb, var(--ocf-bg) 90%, transparent) 0%,
        color-mix(in srgb, var(--ocf-bg) 65%, transparent) 50%,
        color-mix(in srgb, var(--ocf-bg) 35%, transparent) 100%
    );
    transition: background 0.4s ease;
}

.elite1-post-card-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.elite1-post-card-image img {
    transition: transform 0.5s ease;
}

.elite1-post-card:hover .elite1-post-card-image img {
    transform: scale(1.05);
}

.elite1-post-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.5rem;
}

.elite1-post-card-body--overlay {
    position: relative;
    z-index: 2;
    justify-content: flex-end;
    padding: 1.5rem 1.5rem 2.5rem;
}

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

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

.elite1-post-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.elite1-post-card-title a:hover {
    color: var(--ocf-accent);
}

.elite1-post-card-excerpt {
    font-size: var(--text-sm);
    line-height: 1.7;
    color: var(--ocf-body);
    margin-bottom: 1.5rem;
    flex: 1;
}


/* ─── Contact Form Section ─── */

.elite1-contact-header {
    margin-bottom: 2rem;
}

.elite1-contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.elite1-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.elite1-contact-row svg {
    width: 1.125rem;
    height: 1.125rem;
    color: var(--ocf-accent);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.elite1-contact-value {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--ocf-heading);
}

.elite1-contact-note {
    display: block;
    font-size: var(--text-xs);
    color: var(--ocf-body);
}


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

/* ─── Modal overlay ─── */

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

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

.bw-progress {
    position: relative;
    width: 100%;
    height: 3px;
    background: var(--ocf-border-light);
    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);
}

/* ─── Header ─── */

.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 color-mix(in srgb, var(--ocf-border-light) 6%, transparent);
}
.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: 400;
    color: var(--ocf-heading);
    letter-spacing: -0.01em;
}

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

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

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

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

.bw-step-badge {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    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: 400;
    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;
}

/* ─── Service checklist (wizard select mode) ─── */

.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-light);
    border-radius: 6px;
    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-border);
    background: var(--ocf-bg-alt);
}

.bw-service-row.is-selected {
    border-color: var(--ocf-accent);
    background: color-mix(in srgb, var(--ocf-accent) 4%, var(--ocf-bg));
}

.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: 4px;
    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: #fff;
}

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

/* ─── Form fields ─── */

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

.bw-field-label {
    display: block;
    font-size: var(--text-xs);
    font-weight: 500;
    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-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-light);
    border-radius: 6px;
    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;
}

/* ─── 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: 1px solid var(--ocf-border-light);
    border-radius: 6px;
    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);
}

/* ─── Summary ─── */

.bw-summary {
    background: var(--ocf-bg-alt);
    border: 1px solid var(--ocf-border-light);
    border-radius: 8px;
    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: 6px;
    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: 500;
    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);
}

/* ─── Nav buttons ─── */

.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: 500;
    border-radius: 6px;
    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;
}

/* ─── Enter key 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 + Other input ─── */

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


/* ═══════════════════════════════════════════════
   Service / Area Detail Pages
   ═══════════════════════════════════════════════ */

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

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

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

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

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

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

.elite1-detail-img {
    margin-bottom: 3rem;
    border-radius: 8px;
    overflow: hidden;
}

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

.elite1-detail-guarantees {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--ocf-border-light);
}

.elite1-detail-guarantees .eyebrow {
    margin-bottom: 1.5rem;
}

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

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

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

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

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

/* Sticky sidebar */

.elite1-detail-sidebar {
    display: none;
}

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

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

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

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

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

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

.elite1-detail-sticky-phone svg {
    width: 1.125rem;
    height: 1.125rem;
    color: var(--ocf-heading);
    flex-shrink: 0;
}

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

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

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


/* ─── Page About: History Section ─── */

.elite1-about-page-history-inner {
    max-width: 48rem;
    margin: 0 auto;
}

.elite1-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);
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 3rem;
}

.elite1-about-page-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .elite1-about-page-columns {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

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


/* ─── Page About: Values Section ─── */

.elite1-about-page-values-header {
    text-align: center;
}

.elite1-about-page-values-list {
    max-width: 44rem;
    margin: 0 auto;
}

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

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

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

.elite1-about-page-value-desc {
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--ocf-body);
    max-width: 36rem;
}
