/* ═══════════════════════════════════════════════
   PAGES.CSS — shared styles for inner pages
   (Models, Pricing, Configure, Contact)
   Built on the demo design tokens in styles.css
   ═══════════════════════════════════════════════ */

/* ── Page hero (compact header for inner pages) ── */
.page-hero {
    padding: calc(clamp(7rem, 12vw, 10rem)) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem);
    background: linear-gradient(180deg, var(--warm-white) 0%, var(--soft-neutral) 100%);
    border-bottom: 1px solid rgba(41, 40, 47, 0.07);
}

.page-hero-inner {
    max-width: 1400px;
    margin: 0 auto;
}

/* ── Media variant: live video background (matches demo hero) ── */
.page-hero--media {
    position: relative;
    overflow: hidden;
    min-height: 72vh;
    display: flex;
    align-items: flex-end;
    background: var(--black);
    border-bottom: none;
    padding-top: clamp(9rem, 14vw, 12rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
}
.page-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.page-hero-media video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 56.25vw;          /* 16:9 */
    min-height: 100%;
    min-width: 177.78vh;      /* 16:9 */
    object-fit: cover;
    animation: heroSlowZoom 20s ease-in-out infinite alternate;
}
@keyframes heroSlowZoom {
    from { transform: translate(-50%, -50%) scale(1); }
    to   { transform: translate(-50%, -50%) scale(1.08); }
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg,
        rgba(41,40,47,0.66) 0%,
        rgba(41,40,47,0.58) 40%,
        rgba(41,40,47,0.82) 72%,
        rgba(41,40,47,0.94) 100%);
}
.page-hero--media .page-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    text-shadow: 0 1px 3px rgba(20,19,24,0.55), 0 2px 24px rgba(20,19,24,0.45);
}
.page-hero.page-hero--media .section-label { color: var(--gold); }
.page-hero.page-hero--media h1 { color: var(--warm-white); }
.page-hero.page-hero--media .page-hero-sub { color: rgba(240,237,232,0.92); }
.page-hero.page-hero--media .breadcrumb,
.page-hero.page-hero--media .breadcrumb a { color: rgba(240,237,232,0.7); }
.page-hero.page-hero--media .breadcrumb a:hover { color: var(--gold); }
.page-hero.page-hero--media .page-hero-meta { border-top-color: rgba(240,237,232,0.18); }
.page-hero.page-hero--media .page-hero-meta .meta-value { color: var(--warm-white); }
.page-hero.page-hero--media .page-hero-meta .meta-label { color: rgba(240,237,232,0.7); }
.page-hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroImgZoom 20s ease-in-out infinite alternate;
}
@keyframes heroImgZoom {
    from { transform: scale(1); }
    to   { transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
    .page-hero-media video,
    .page-hero-media img { animation: none; }
}

/* ── Model detail pages ── */
.detail-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}
.detail-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
    padding-top: clamp(0.5rem, 4vw, 4.5rem);
}
.detail-actions .btn-primary,
.detail-actions .btn-dark { white-space: nowrap; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
}
.gallery-item {
    display: block;
    overflow: hidden;
    background: var(--soft-neutral, #eceae6);
}
.gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-out-expo);
}
.gallery-item:hover img { transform: scale(1.04); }

.floorplan-wrap {
    margin-top: 2.5rem;
    background: #fff;
    border: 1px solid rgba(41, 40, 47, 0.08);
    padding: clamp(1rem, 3vw, 2.5rem);
}
.floorplan-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(1.5rem, 3vw, 3rem);
    margin-top: 2.5rem;
}
.spec-group h4 {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1.1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(41, 40, 47, 0.1);
}
.spec-group ul { list-style: none; padding: 0; margin: 0; }
.spec-group li {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-mid);
    padding: 0.45rem 0;
}
.spec-group li strong { font-weight: 500; color: var(--text-dark); }

@media (max-width: 900px) {
    .detail-layout { grid-template-columns: 1fr; }
    .detail-actions { padding-top: 0; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .gallery-grid { grid-template-columns: 1fr; }
}

.page-hero .breadcrumb {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.page-hero .breadcrumb a { color: var(--text-light); transition: color 0.3s ease; }
.page-hero .breadcrumb a:hover { color: var(--gold); }
.page-hero .breadcrumb span { opacity: 0.4; }

.page-hero h1 {
    font-family: var(--heading);
    font-weight: 200;
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 1.08;
    letter-spacing: 0.01em;
    color: var(--text-dark);
    max-width: 16ch;
    margin-bottom: 1.5rem;
}

.page-hero .page-hero-sub {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-mid);
    max-width: 56ch;
}

.page-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    margin-top: 2.75rem;
    padding-top: 2.25rem;
    border-top: 1px solid rgba(41, 40, 47, 0.08);
}

.page-hero-meta .meta-item .meta-value {
    font-family: var(--heading);
    font-weight: 300;
    font-size: 2rem;
    color: var(--text-dark);
    line-height: 1;
}
.page-hero-meta .meta-item .meta-value span { color: var(--gold); }
.page-hero-meta .meta-item .meta-label {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-light);
}

/* ── Filter bar ── */
.model-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.model-filter {
    padding: 0.7rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(41, 40, 47, 0.16);
    border-radius: 100px;
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-mid);
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
}
.model-filter:hover { border-color: var(--gold); color: var(--text-dark); }
.model-filter.active {
    background: var(--black);
    border-color: var(--black);
    color: var(--warm-white);
}
.model-filter .count { opacity: 0.5; margin-left: 0.4rem; }

/* ── Models grid ── */
.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: clamp(1.5rem, 2.5vw, 2.25rem);
}

.model-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(41, 40, 47, 0.07);
    overflow: hidden;
    transition: transform 0.7s var(--ease-out-expo), box-shadow 0.7s var(--ease-out-expo);
}
.model-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -25px rgba(41, 40, 47, 0.28);
}

.model-card-img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--cream);
}
.model-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out-expo);
}
.model-card:hover .model-card-img img { transform: scale(1.06); }

.model-card-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 0.9rem;
    background: rgba(41, 40, 47, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 100px;
    font-size: 0.6rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--warm-white);
}

.model-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.6rem 1.6rem 1.75rem;
}
.model-card-name {
    font-family: var(--heading);
    font-weight: 300;
    font-size: 1.5rem;
    letter-spacing: 0.01em;
    color: var(--text-dark);
    margin-bottom: 0.85rem;
}
.model-specs {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-mid);
    margin-bottom: 1.5rem;
}
.model-specs .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); opacity: 0.7; }
.model-specs strong { font-weight: 500; color: var(--text-dark); }

.model-card .view-link { margin-top: auto; }
.model-card:hover .view-link { gap: 0.85rem; }
.model-card .view-link svg { width: 15px; height: 15px; }

/* ── Empty state for filters ── */
.models-empty {
    display: none;
    padding: 4rem 0;
    text-align: center;
    color: var(--text-light);
    font-weight: 300;
}

/* ── Generic light CTA band (fallback for inner pages) ── */
.cta-band {
    background: var(--black);
    text-align: center;
}
.cta-band .section-heading { color: var(--warm-white); }

/* ═══════════ CONTACT PAGE ═══════════ */
.contact-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(2.5rem, 6vw, 5.5rem);
    align-items: start;
}
.contact-details .contact-block { margin-bottom: 2.5rem; }
.contact-details .contact-eyebrow {
    font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.6rem;
}
.contact-details .contact-primary {
    font-family: var(--heading); font-weight: 300;
    font-size: 1.6rem; color: var(--text-dark); letter-spacing: 0.01em;
}
.contact-details a.contact-primary { transition: color 0.3s ease; }
.contact-details a.contact-primary:hover { color: var(--gold); }
.showroom-card {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(41,40,47,0.1);
}
.showroom-card h4 {
    font-family: var(--heading); font-weight: 400; font-size: 1.05rem;
    color: var(--text-dark); margin-bottom: 0.5rem;
}
.showroom-card p { font-size: 0.9rem; line-height: 1.6; color: var(--text-mid); }
.showroom-card .hours { color: var(--text-light); font-size: 0.82rem; margin-top: 0.4rem; }

/* Form */
.contact-form { background: #fff; border: 1px solid rgba(41,40,47,0.08); padding: clamp(1.75rem, 4vw, 3rem); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field { margin-bottom: 1.25rem; display: flex; flex-direction: column; }
.field label {
    font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--text-light); margin-bottom: 0.55rem;
}
.field input, .field select, .field textarea {
    font-family: var(--sans); font-size: 0.95rem; font-weight: 300; color: var(--text-dark);
    background: var(--soft-neutral); border: 1px solid rgba(41,40,47,0.14);
    padding: 0.85rem 1rem; border-radius: 2px; width: 100%;
    transition: border-color 0.3s var(--ease-out-expo), background 0.3s ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--gold); background: #fff;
}
.contact-form .btn-primary { width: 100%; justify-content: center; border: none; cursor: pointer; margin-top: 0.5rem; }
.form-success {
    display: none; padding: 1rem 1.25rem; margin-top: 1rem;
    background: rgba(107,124,94,0.12); border-left: 3px solid var(--olive);
    color: var(--text-dark); font-size: 0.9rem;
}

/* ═══════════ PRICING PAGE ═══════════ */
.inclusions-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem; margin-top: 1rem;
}
.inclusion-item {
    padding: 1.75rem; background: #fff; border: 1px solid rgba(41,40,47,0.07);
    display: flex; gap: 1rem; align-items: flex-start;
}
.inclusion-item .tick {
    flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255,181,22,0.16); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
}
.inclusion-item .tick svg { width: 17px; height: 17px; }
.inclusion-item h4 { font-family: var(--heading); font-weight: 400; font-size: 1.05rem; color: var(--text-dark); margin-bottom: 0.35rem; }
.inclusion-item p { font-size: 0.88rem; line-height: 1.6; color: var(--text-mid); }

.price-band {
    background: var(--charcoal); color: var(--warm-white);
    padding: clamp(2.5rem, 6vw, 4.5rem); text-align: center;
    display: flex; flex-direction: column; align-items: center;
}
.price-band h2 { font-family: var(--heading); font-weight: 200; font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: 1rem; }
.price-band p { color: rgba(240,237,232,0.7); max-width: 52ch; margin-bottom: 2rem; line-height: 1.7; }

.finance-note {
    display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 3rem;
    padding-top: 2.5rem; border-top: 1px solid rgba(41,40,47,0.1);
}
.finance-note .fn-item { flex: 1; min-width: 220px; }
.finance-note .fn-item h4 { font-family: var(--heading); font-weight: 400; font-size: 1.15rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.finance-note .fn-item p { font-size: 0.9rem; line-height: 1.65; color: var(--text-mid); }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 900px) {
    .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .models-grid { grid-template-columns: 1fr; }
    .page-hero-meta { gap: 1.5rem 1.75rem; }
    .page-hero-meta .meta-item .meta-value { font-size: 1.6rem; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .page-hero--media { min-height: 60vh; }
    .model-filters { gap: 0.5rem; }
    .model-filter { padding: 0.6rem 1.1rem; font-size: 0.66rem; }
}


/* ── Refine dropdowns (Building Size / Bedrooms / Bathrooms) ── */
.model-filters { margin-bottom: 1.1rem; }
.model-refine {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    border: 1px solid rgba(41, 40, 47, 0.14);
    background: #fff;
    margin-bottom: 1rem;
    overflow: hidden;
}
.refine-field {
    position: relative;
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.8rem 1.4rem;
    border-right: 1px solid rgba(41, 40, 47, 0.1);
}
.refine-field label {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.25rem;
    pointer-events: none;
}
.refine-field select {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    background: transparent;
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-dark);
    cursor: pointer;
    padding-right: 1.5rem;
    width: 100%;
}
.refine-field select:focus { outline: none; }
.refine-field::after {
    content: "";
    position: absolute;
    right: 1.4rem;
    bottom: 1.25rem;
    width: 7px; height: 7px;
    border-right: 1.5px solid var(--text-mid);
    border-bottom: 1.5px solid var(--text-mid);
    transform: rotate(45deg);
    pointer-events: none;
    transition: border-color 0.3s ease;
}
.refine-field:hover::after { border-color: var(--gold); }
.refine-reset {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0 1.8rem;
    background: var(--black);
    color: var(--warm-white);
    border: none;
    font-family: var(--sans);
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}
.refine-reset svg { width: 14px; height: 14px; }
.refine-reset:hover { background: var(--gold); color: var(--black); }
.model-count {
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    color: var(--text-light);
    margin-bottom: clamp(2rem, 4vw, 3rem);
}
.model-count strong { color: var(--text-dark); font-weight: 500; }
@media (max-width: 720px) {
    .model-refine { flex-direction: column; }
    .refine-field { border-right: none; border-bottom: 1px solid rgba(41, 40, 47, 0.1); }
    .refine-field::after { bottom: 1.3rem; }
    .refine-reset { padding: 0.95rem; justify-content: center; }
}


/* ── Price Guide register + info video ── */
.price-guide-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
    margin-top: clamp(2rem, 4vw, 3.5rem);
}
.consent {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    font-size: 0.76rem;
    line-height: 1.55;
    color: var(--text-mid);
    margin: 0.25rem 0 1.5rem;
    cursor: pointer;
}
.consent input { margin-top: 3px; flex: 0 0 auto; accent-color: var(--gold); }
.video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-caption {
    margin-top: 1rem;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-light);
}
.price-guide-points { list-style: none; padding: 0; margin: 1.75rem 0 0; }
.price-guide-points li {
    position: relative;
    padding-left: 1.6rem;
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.5;
    margin-bottom: 0.7rem;
}
.price-guide-points li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 0.45em;
    width: 7px; height: 7px;
    border-right: 1.5px solid var(--gold);
    border-bottom: 1.5px solid var(--gold);
    transform: rotate(45deg);
}

/* ── Contact display-centre video + map ── */
.contact-video .section-heading,
.contact-video .section-label { text-align: center; }
.contact-video .video-embed { margin-top: clamp(2rem, 4vw, 3rem); width: 100%; }
.contact-map .map-embed {
    position: relative;
    width: 100%;
    height: clamp(340px, 42vw, 520px);
    overflow: hidden;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 860px) {
    .price-guide-layout { grid-template-columns: 1fr; }
}


/* ── YouTube click-to-play facade ── */
.video-facade { cursor: pointer; }
.video-facade img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-facade::after {
    content: "";
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(rgba(20,19,24,0.05), rgba(20,19,24,0.38));
    transition: background 0.35s ease;
}
.video-facade:hover::after { background: linear-gradient(rgba(20,19,24,0.02), rgba(20,19,24,0.24)); }
.facade-play {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2;
    width: 76px; height: 76px; border-radius: 50%;
    background: rgba(255,181,22,0.95);
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.35s var(--ease-out-expo), background 0.3s ease;
}
.video-facade:hover .facade-play { transform: translate(-50%, -50%) scale(1.08); background: var(--gold); }
.facade-play svg { width: 28px; height: 28px; color: #1a1a1a; margin-left: 4px; }


/* ── Custom refine dropdowns (override native select styling) ── */
.model-refine { overflow: visible; }
.refine-select {
    position: relative;
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.8rem 1.4rem;
    border-right: 1px solid rgba(41, 40, 47, 0.1);
}
.refine-label {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.35rem;
    pointer-events: none;
}
.refine-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-dark);
    text-align: left;
    line-height: 1.2;
}
.refine-trigger:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.refine-caret { width: 15px; height: 15px; color: var(--text-mid); flex: 0 0 auto; transition: transform 0.35s var(--ease-out-expo), color 0.3s ease; }
.refine-select.open .refine-caret { transform: rotate(180deg); color: var(--gold); }
.refine-select.open .refine-trigger { color: var(--gold); }

.refine-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: -1px;
    right: -1px;
    background: #fff;
    border: 1px solid rgba(41, 40, 47, 0.12);
    box-shadow: 0 22px 60px -16px rgba(41, 40, 47, 0.30);
    list-style: none;
    margin: 0;
    padding: 0.4rem;
    z-index: 60;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.28s var(--ease-out-expo), transform 0.28s var(--ease-out-expo), visibility 0.28s;
}
.refine-select.open .refine-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.refine-opt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.7rem 0.9rem;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-mid);
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.2s ease, color 0.2s ease;
}
.refine-opt:hover { background: rgba(41, 40, 47, 0.05); color: var(--text-dark); }
.refine-opt.is-selected { color: var(--text-dark); font-weight: 500; }
.refine-opt.is-selected::after {
    content: "";
    width: 6px; height: 10px;
    border-right: 1.5px solid var(--gold);
    border-bottom: 1.5px solid var(--gold);
    transform: rotate(45deg);
    flex: 0 0 auto;
    margin: -2px 2px 0 0;
}
@media (max-width: 720px) {
    .refine-select { border-right: none; border-bottom: 1px solid rgba(41, 40, 47, 0.1); }
}


/* ── Contact section headers ── */
.contact-intro { margin-bottom: clamp(2rem, 4vw, 3rem); max-width: 60ch; }
.location-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}
.location-header .btn-dark { flex: 0 0 auto; }
.contact-location .map-embed {
    position: relative;
    width: 100%;
    height: clamp(340px, 42vw, 520px);
    overflow: hidden;
}
.contact-location .map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }


/* ── Contact: office block beside map ── */
.location-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: stretch;
    margin-top: clamp(1.75rem, 3vw, 2.5rem);
}
.office-block { display: flex; flex-direction: column; gap: 1.5rem; }
.office-card {
    padding: 1.6rem 1.75rem;
    background: #fff;
    border: 1px solid rgba(41, 40, 47, 0.1);
}
.office-card h4 {
    font-family: var(--heading);
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.office-card p { font-size: 0.92rem; font-weight: 300; line-height: 1.5; color: var(--text-mid); margin: 0; }
.office-card .hours { font-size: 0.8rem; color: var(--text-light); margin-top: 0.5rem; }
.office-block .btn-dark { align-self: flex-start; margin-top: auto; }
.location-layout .map-embed {
    position: relative;
    width: 100%;
    min-height: 380px;
    height: 100%;
    overflow: hidden;
}
.location-layout .map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 860px) {
    .location-layout { grid-template-columns: 1fr; }
    .location-layout .map-embed { min-height: 340px; }
}


/* ── Contact: Headquarters photo section ── */
.contact-hq .section-label,
.contact-hq .section-heading { text-align: center; }
.hq-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1rem, 2vw, 1.5rem);
    margin-top: clamp(2rem, 4vw, 3rem);
}
.hq-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 3 / 2;
    background: var(--soft-neutral, #eceae6);
}
@media (max-width: 760px) { .hq-gallery { grid-template-columns: 1fr; } }

/* ── Contact: showroom blocks each with map ── */
.showrooms-list { margin-top: clamp(2rem, 4vw, 3rem); }
.showroom-item {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: stretch;
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.showroom-item:last-child { margin-bottom: 0; }
.showroom-info { display: flex; flex-direction: column; }
.showroom-info h3 {
    font-family: var(--heading);
    font-weight: 400;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}
.showroom-info .detail-line { font-size: 0.98rem; font-weight: 300; color: var(--text-mid); margin: 0 0 0.5rem; line-height: 1.5; }
.showroom-info .detail-line a { color: var(--text-dark); transition: color 0.3s ease; }
.showroom-info .detail-line a:hover { color: var(--gold); }
.showroom-info .hours { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; margin: 0.75rem 0 0; }
.showroom-info .btn-dark { align-self: flex-start; margin-top: auto; }
.showroom-info .btn-dark:first-of-type { margin-top: 1.75rem; }
.showroom-map { display: flex; flex-direction: column; gap: 0.75rem; }
.showroom-map .map-embed {
    position: relative;
    width: 100%;
    flex: 1;
    min-height: 300px;
    overflow: hidden;
    background: var(--soft-neutral, #eceae6);
}
.showroom-map .map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.view-map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    align-self: flex-start;
}
.view-map-link svg { width: 13px; height: 13px; }
@media (max-width: 760px) { .showroom-item { grid-template-columns: 1fr; } }


/* ── Ready to chat — multi-step wizard ── */
.chat-wizard, .wizard-success {
    max-width: 720px;
    margin: clamp(2rem, 4vw, 3rem) auto 0;
    background: #C9A878; /* ready-to-chat paneli eski tan tonda kalsın (Mert) — amber vurgular değişti */
    color: var(--text-dark);
    text-align: left;
}
.chat-wizard { padding: clamp(2rem, 5vw, 3.5rem); }
.chat-wizard .btn-primary { background: #fff; color: var(--black); }
.chat-wizard .btn-primary:hover { background: var(--warm-white); }
.wizard-start { text-align: center; }
.wizard-start p { color: rgba(41, 40, 47, 0.78); font-weight: 300; font-size: 1rem; line-height: 1.6; margin-bottom: 1.75rem; }
.chat-form .wizard-step { display: none; }
.chat-form .wizard-step.active { display: block; animation: wizFade 0.45s var(--ease-out-expo); }
@keyframes wizFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.wizard-q {
    font-family: var(--heading);
    font-weight: 400;
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 1.75rem;
}
.wizard-q span { color: #e0574f; }
.wizard-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.chat-wizard .field { margin-bottom: 0; }
.chat-wizard .field label { display: block; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(41, 40, 47, 0.62); margin-bottom: 0.5rem; }
.chat-wizard input, .chat-wizard select, .chat-wizard textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(41, 40, 47, 0.18);
    background: #fff;
    font-family: var(--sans);
    font-size: 0.95rem;
    color: var(--text-dark);
    border-radius: 0;
}
.chat-wizard textarea { min-height: 120px; resize: vertical; }
.chat-wizard input:focus, .chat-wizard select:focus, .chat-wizard textarea:focus { outline: none; border-color: var(--black); }
.wizard-nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 2rem; }
.wizard-back { background: none; border: none; color: rgba(41, 40, 47, 0.7); cursor: pointer; font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; padding: 0.5rem 0; }
.wizard-back:hover { color: var(--text-dark); }
.wizard-progress { font-size: 0.7rem; letter-spacing: 0.14em; color: rgba(41, 40, 47, 0.62); }
.wizard-next, .wizard-submit {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: #fff; color: var(--black); border: none; border-radius: 6px;
    padding: 0.9rem 2rem; font-family: var(--sans); font-size: 0.72rem;
    letter-spacing: 0.16em; text-transform: uppercase; cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}
.wizard-next:hover, .wizard-submit:hover { background: var(--warm-white); transform: translateY(-1px); }
.wizard-next svg, .wizard-submit svg { width: 14px; height: 14px; }
.wizard-success { padding: clamp(2.5rem, 5vw, 4rem); text-align: center; font-weight: 300; font-size: 1.05rem; color: var(--text-mid); }
@media (max-width: 560px) { .wizard-row { grid-template-columns: 1fr; } }


/* ── Wizard step-dots progress ── */
.wizard-steps { display: flex; align-items: center; margin: 2.5rem auto 0.5rem; max-width: 540px; }
.wizard-dot { position: relative; flex: 1 1 0; height: 16px; }
.wizard-dot:last-child { flex: 0 0 auto; }
.wizard-dot::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 12px; height: 12px; border-radius: 50%; background: rgba(255, 255, 255, 0.45); z-index: 2; transition: background 0.3s ease, box-shadow 0.3s ease; }
.wizard-dot:not(:last-child)::after { content: ''; position: absolute; left: 12px; right: 0; top: 50%; height: 2px; transform: translateY(-50%); background: rgba(255, 255, 255, 0.3); z-index: 1; transition: background 0.3s ease; }
.wizard-dot.done::before { background: #fff; }
.wizard-dot.done::after { background: #fff; }
.wizard-dot.active::before { background: #fff; box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3); }

.wizard-next[hidden], .wizard-submit[hidden] { display: none !important; }


/* ── Secondary pages (rich content, faq, process, comparison, video gallery) ── */
.rich-content { max-width: 860px; margin: 0 auto; }
.rich-content .rich-h2 { font-family: var(--heading); font-weight: 400; font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--text-dark); margin: 2.6rem 0 1rem; line-height: 1.2; }
.rich-content .rich-h2:first-child { margin-top: 0; }
.rich-content .rich-h3 { font-family: var(--heading); font-weight: 500; font-size: 1.05rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin: 2rem 0 0.6rem; }
.rich-content .rich-h4 { font-family: var(--sans); font-weight: 500; font-size: 1.05rem; color: var(--text-dark); margin: 1.8rem 0 0.5rem; }
.rich-content p { color: var(--text-mid); font-weight: 300; line-height: 1.75; margin-bottom: 1rem; }
.rich-list { list-style: none; margin: 0 0 1.2rem; padding: 0; }
.rich-list li { position: relative; padding-left: 1.6rem; color: var(--text-mid); font-weight: 300; line-height: 1.7; margin-bottom: 0.5rem; }
.rich-list li::before { content: ''; position: absolute; left: 0; top: 0.6rem; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.legal-content .rich-h4 { padding-top: 1.4rem; border-top: 1px solid rgba(41,40,47,0.08); }

/* FAQ accordion */
.faq-list { max-width: 820px; margin: 2.5rem auto 0; }
.faq-item { border-bottom: 1px solid rgba(41,40,47,0.12); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; background: none; border: none; cursor: pointer; text-align: left; padding: 1.5rem 0; font-family: var(--heading); font-weight: 400; font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--text-dark); }
.faq-q svg { width: 22px; height: 22px; flex: 0 0 auto; transition: transform 0.35s var(--ease-out-expo); color: var(--gold); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out-expo); }
.faq-a p { color: var(--text-mid); font-weight: 300; line-height: 1.75; padding: 0 0 1.5rem; margin: 0; max-width: 68ch; }

/* Process steps */
.process-steps { margin-top: 3rem; display: grid; gap: 1.5rem; }
.process-step { display: grid; grid-template-columns: 88px 1fr; gap: 1.75rem; padding: 2rem; background: var(--warm-white); border: 1px solid rgba(41,40,47,0.07); }
.process-num { font-family: var(--heading); font-weight: 200; font-size: 3rem; color: var(--gold); line-height: 1; }
.process-body h3 { font-family: var(--heading); font-weight: 400; font-size: 1.35rem; color: var(--text-dark); margin-bottom: 0.75rem; }
.process-body p { color: var(--text-mid); font-weight: 300; line-height: 1.7; margin-bottom: 0.8rem; }
.process-list-label { font-weight: 500 !important; color: var(--text-dark) !important; margin-bottom: 0.4rem; }
@media (max-width: 640px) { .process-step { grid-template-columns: 1fr; gap: 0.75rem; padding: 1.5rem; } .process-num { font-size: 2.2rem; } }

/* Comparison */
.cmp-table, .tk-table { margin-top: 2.5rem; border: 1px solid rgba(41,40,47,0.1); }
.cmp-head, .cmp-row { display: grid; grid-template-columns: 1fr 1fr; }
.cmp-head { background: var(--black); color: #fff; font-family: var(--heading); }
.cmp-head .cmp-cell { padding: 1.1rem 1.25rem; font-size: 0.95rem; letter-spacing: 0.03em; }
.cmp-head .cmp-cell:first-child { color: var(--gold-light); }
.cmp-row { border-top: 1px solid rgba(41,40,47,0.09); }
.cmp-cell { padding: 1.1rem 1.25rem; font-size: 0.92rem; font-weight: 300; line-height: 1.6; }
.cmp-yes { color: var(--text-dark); background: rgba(191,161,110,0.06); }
.cmp-no { color: var(--text-light); border-left: 1px solid rgba(41,40,47,0.09); }
.cmp-ic { display: inline-flex; width: 20px; height: 20px; align-items: center; justify-content: center; border-radius: 50%; margin-right: 0.6rem; font-size: 0.7rem; }
.cmp-yes .cmp-ic { background: var(--gold); color: #fff; }
.cmp-no .cmp-ic { background: rgba(41,40,47,0.12); color: var(--text-light); }
.tk-head, .tk-row { display: grid; grid-template-columns: 1.6fr 1fr 1fr; }
.tk-head { background: var(--black); color: #fff; font-family: var(--heading); }
.tk-head > div { padding: 1rem 1.25rem; font-size: 0.9rem; }
.tk-row { border-top: 1px solid rgba(41,40,47,0.09); }
.tk-row > div { padding: 1rem 1.25rem; font-size: 0.9rem; font-weight: 300; }
.tk-svc { color: var(--text-dark); font-weight: 400 !important; }
.tk-orana { color: var(--text-dark); background: rgba(191,161,110,0.06); }
.tk-others { color: var(--text-light); }
@media (max-width: 640px) { .cmp-head .cmp-cell, .cmp-cell { padding: 0.8rem; font-size: 0.82rem; } .tk-head > div, .tk-row > div { padding: 0.7rem 0.6rem; font-size: 0.8rem; } }

/* Video gallery */
.vg-grid { margin-top: 3rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.vg-item .video-embed { aspect-ratio: 16/9; }
.vg-feature { grid-column: span 2; grid-row: span 2; }
@media (max-width: 900px) { .vg-grid { grid-template-columns: repeat(2, 1fr); } .vg-feature { grid-column: span 2; grid-row: auto; } }
@media (max-width: 560px) { .vg-grid { grid-template-columns: 1fr; } .vg-feature { grid-column: auto; } }

/* FAQ accordion open helper handled by JS setting max-height */


/* ── VR experience grid ── */
.vr-grid { margin-top: 3rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.vr-card { display: block; text-decoration: none; background: #fff; border: 1px solid rgba(41,40,47,0.07); transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease; }
.vr-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(41,40,47,0.12); }
.vr-card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.vr-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out-expo); }
.vr-card:hover .vr-card-img img { transform: scale(1.05); }
.vr-badge { position: absolute; top: 1rem; left: 1rem; display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(0,0,0,0.55); color: #fff; font-size: 0.7rem; letter-spacing: 0.1em; padding: 0.35rem 0.7rem; border-radius: 100px; backdrop-filter: blur(4px); }
.vr-badge svg { width: 15px; height: 15px; }
.vr-card-info { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 1.35rem; }
.vr-card-info h3 { font-family: var(--heading); font-weight: 400; font-size: 1.25rem; color: var(--text-dark); }
.vr-view { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.vr-view svg { width: 13px; height: 13px; }
@media (max-width: 900px) { .vr-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .vr-grid { grid-template-columns: 1fr; } }

/* video gallery category filters */
.vg-filters { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2.5rem; }
.vg-filter { background: none; border: 1px solid rgba(41,40,47,0.18); color: var(--text-mid); font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.6rem 1.2rem; border-radius: 100px; cursor: pointer; transition: all 0.3s ease; }
.vg-filter:hover { border-color: var(--gold); color: var(--text-dark); }
.vg-filter.active { background: var(--black); border-color: var(--black); color: #fff; }
.vg-grid { margin-top: 2rem !important; }
.vg-item .video-embed { aspect-ratio: 16/9; }
.vg-feature { grid-column: auto !important; grid-row: auto !important; }
.vg-empty { text-align: center; color: var(--text-light); font-weight: 300; padding: 3rem 0; }


/* ── VR 360 viewer ── */
.vr-viewer { position: relative; width: 100%; aspect-ratio: 16/9; background: #111; overflow: hidden; box-shadow: 0 20px 60px rgba(41,40,47,0.18); }
.vr-viewer iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vr-tour-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; margin-top: 2rem; }
.page-hero--short { min-height: 62vh; }
@media (max-width: 640px) { .vr-viewer { aspect-ratio: 4/5; } }



/* ── Design Studio embed (live, auto-updating) — full-height, single scroll ── */
.ds-embed { padding-top: 72px; }
.ds-embed-frame { width: 100%; height: calc(100vh - 72px); min-height: 620px; }
.ds-embed-frame iframe { width: 100%; height: 100%; border: 0; display: block; }


/* ── Home real-content sections ── */
.home-two { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: start; margin-top: 1.5rem; }
.home-two .rich-list { margin: 0; }
.home-stats { margin-top: 3rem; display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; border-top: 1px solid rgba(41,40,47,0.12); border-bottom: 1px solid rgba(41,40,47,0.12); padding: 2.5rem 0; text-align: center; }
.home-stat-k { display: block; font-family: var(--heading); font-weight: 300; font-size: clamp(1.4rem,3vw,2rem); color: var(--gold); margin-bottom: 0.4rem; }
.home-stat-v { display: block; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); }
.turnkey-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem; }
.turnkey-grid { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(5,1fr); gap: 1px; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.14); }
.turnkey-item { background: var(--black); padding: 1.75rem 1.25rem; color: #fff; font-size: 0.95rem; font-weight: 300; line-height: 1.4; }
.turnkey-item span { display: block; font-family: var(--heading); font-weight: 200; font-size: 1.6rem; color: var(--gold); margin-bottom: 0.75rem; }
.turnkey-cta { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
@media (max-width: 900px) { .home-two { grid-template-columns: 1fr; } .turnkey-grid { grid-template-columns: 1fr 1fr; } .home-stats { grid-template-columns: 1fr; gap: 1.75rem; } }
@media (max-width: 560px) { .turnkey-grid { grid-template-columns: 1fr; } }

/* ── Home: Residential collection grid ── */
.collection-grid { margin-top: 3rem; display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.collection-card { display: flex; flex-direction: column; background: #fff; border: 1px solid rgba(41,40,47,0.08); overflow: hidden; }
.collection-card-img { aspect-ratio: 4/3; overflow: hidden; background: var(--warm-white); }
.collection-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out-expo); }
.collection-card:hover .collection-card-img img { transform: scale(1.05); }
.collection-card-body { padding: 1.6rem 1.75rem 1.75rem; display: flex; flex-direction: column; flex: 1; }
.collection-eyebrow { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }
.collection-card-body h3 { font-family: var(--heading); font-weight: 400; font-size: 1.35rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.collection-desc { color: var(--text-mid); font-weight: 300; font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.25rem; }
.collection-card .view-link { margin-top: auto; }
@media (max-width: 860px) { .collection-grid { grid-template-columns: 1fr; } }


/* ── Home stats (real numbers, count-up) ── */
.home-stat-num { display: block; font-family: var(--heading); font-weight: 200; font-size: clamp(2.4rem,5vw,3.4rem); color: var(--gold); line-height: 1; margin-bottom: 0.6rem; }
.home-stats .home-stat-k { display: block; font-family: var(--heading); font-weight: 400; font-size: 1rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dark); margin-bottom: 0.4rem; }
.home-stats-cta { text-align: center; margin-top: 2.25rem; }


/* ── Scroll-pinned 3-panel ── */
.scroll-panels-track { position: relative; height: 300vh; }
.scroll-panels-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; display: flex; align-items: center; background: var(--warm-white); }
.sp-panel { position: absolute; inset: 0; display: flex; align-items: center; opacity: 0; visibility: hidden; transform: translateX(72px); transition: opacity 0.55s var(--ease-out-expo), transform 0.75s var(--ease-out-expo); pointer-events: none; }
.sp-panel.is-past { transform: translateX(-72px); }
.sp-panel.is-active { opacity: 1; visibility: visible; transform: translateX(0); pointer-events: auto; }
.sp-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; width: 100%; }
.sp-inner--rev .sp-img { order: -1; }
.sp-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.sp-text .rich-list { margin: 1.25rem 0; }
.sp-tag { font-style: italic; color: var(--text-mid); font-weight: 300; }
.sp-progress { position: absolute; left: 50%; bottom: clamp(1.5rem,4vh,2.75rem); transform: translateX(-50%); display: flex; gap: 0.6rem; z-index: 3; }
.sp-progress span { width: 30px; height: 3px; background: rgba(41,40,47,0.16); transition: background 0.35s; }
.sp-progress span.is-on { background: var(--gold); }
@media (max-width: 860px) {
  .scroll-panels-track { height: 300svh; }
  .scroll-panels-sticky { height: 100svh; background: var(--black); align-items: stretch; }
  .sp-panel { align-items: flex-start; }
  .sp-img { position: absolute; inset: 0; z-index: 0; }
  .sp-img img { width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; }
  .sp-panel::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, rgba(20,19,24,0.92) 0%, rgba(20,19,24,0.78) 55%, rgba(20,19,24,0.55) 100%); }
  .sp-panel .container { position: static; }
  .sp-inner { grid-template-columns: 1fr; gap: 0.6rem; padding: 6rem clamp(1.5rem, 6vw, 2.5rem) 4.5rem; }
  .sp-text { position: relative; z-index: 2; }
  .sp-inner--rev .sp-img { order: 0; }
  .sp-text .section-label { color: var(--gold-light); margin-bottom: 0.5rem; }
  .sp-text .section-heading { color: #fff; font-size: clamp(1.85rem, 7.5vw, 2.35rem); line-height: 1.12; }
  .sp-text .rich-list { margin: 1rem 0; }
  .sp-text .rich-list li { color: rgba(255,255,255,0.92); font-size: 0.95rem; margin-bottom: 0.55rem; }
  .sp-tag { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
  .sp-progress { display: flex; bottom: clamp(1rem, 3.5vh, 1.75rem); }
  .sp-progress span { background: rgba(255,255,255,0.32); }
  .sp-progress span.is-on { background: var(--gold); }
}


/* ── Instant Pricing Calculator ── */
.calc-embed-section { padding-top: 3.5rem; }
.calc-embed { max-width: 900px; margin: 0 auto; }
.calc-embed iframe { width: 100%; display: block; }
.calc-placeholder { min-height: 480px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; border: 1px dashed rgba(0,0,0,0.18); border-radius: 12px; background: #fafaf8; text-align: center; padding: 3rem 1.5rem; }
.calc-placeholder-title { font-family: 'Outfit', sans-serif; font-size: 1.5rem; letter-spacing: .01em; }
.calc-placeholder-note { color: rgba(0,0,0,0.5); }
.calc-placeholder-spin { width: 34px; height: 34px; border: 2px solid rgba(0,0,0,0.12); border-top-color: var(--gold,#FFB516);
  border-radius: 50%; animation: calcspin 1s linear infinite; }
@keyframes calcspin { to { transform: rotate(360deg); } }


/* ── Google-style customer reviews ── */
.g-rating-badge { display:inline-flex; align-items:center; gap:.55rem; margin-top:1.25rem; padding:.6rem 1.1rem;
  border:1px solid rgba(0,0,0,0.1); border-radius:40px; background:#fff; box-shadow:0 2px 10px rgba(0,0,0,0.04); }
.g-rating-badge strong { font-family:'Outfit',sans-serif; font-size:1.15rem; }
.g-badge-stars { color:#FBBC04; letter-spacing:1px; }
.g-badge-note { font-size:.8rem; color:rgba(0,0,0,0.55); }
.g-reviews-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(290px,1fr)); gap:1.5rem; margin-top:2.75rem; }
.g-review { background:#fff; border:1px solid rgba(0,0,0,0.08); border-radius:14px; padding:1.6rem 1.6rem 1.75rem;
  box-shadow:0 2px 16px rgba(0,0,0,0.045); display:flex; flex-direction:column; gap:.85rem; text-align:left; }
.g-review-head { display:flex; align-items:center; gap:.7rem; }
.g-avatar { width:44px; height:44px; border-radius:50%; display:grid; place-items:center; color:#fff; flex:0 0 auto;
  font-family:'Outfit',sans-serif; font-weight:500; font-size:1.15rem; }
.g-meta { display:flex; flex-direction:column; line-height:1.35; min-width:0; }
.g-name { font-family:'Outfit',sans-serif; font-weight:500; font-size:1rem; color:#202124; }
.g-posted { font-size:.75rem; color:rgba(0,0,0,0.5); display:inline-flex; align-items:center; gap:.35rem; }
.g-logo-corner { margin-left:auto; flex:0 0 auto; opacity:.95; }
.g-stars { color:#FBBC04; letter-spacing:2px; font-size:1.05rem; }
.g-quote { color:rgba(0,0,0,0.72); font-size:.94rem; line-height:1.62; }
.g-reviews-swiper { margin-top: 2.75rem; padding: 0.25rem 0.25rem 2.9rem; }
.g-reviews-swiper .swiper-wrapper { align-items: stretch; }
.g-reviews-swiper .swiper-slide.g-review { height: auto; }
.g-reviews-swiper .swiper-pagination-bullet { background: var(--gold); opacity: 0.35; }
.g-reviews-swiper .swiper-pagination-bullet-active { opacity: 1; }
.g-reviews-swiper { --swiper-navigation-color: #A6835A; }
.g-reviews-swiper .swiper-button-prev, .g-reviews-swiper .swiper-button-next { width: 42px; height: 42px; top: calc(50% - 2rem); border-radius: 50%; background: #fff; border: 1px solid rgba(0,0,0,0.16); box-shadow: 0 4px 14px rgba(0,0,0,0.14); }
.g-reviews-swiper .swiper-button-prev::after, .g-reviews-swiper .swiper-button-next::after { font-size: 15px; font-weight: 700; }


/* ABOUT-PAGE-LAYOUT — alternating inline images, text beside (not full-width) */
.about-intro, .about-sec { display: flex; align-items: center; gap: clamp(2rem, 5vw, 4.5rem); }
.about-intro-text, .about-sec-text { flex: 1 1 0; min-width: 0; }
.about-intro-img, .about-sec-img { flex: 0 0 42%; max-width: 42%; }
.about-intro-img img, .about-sec-img img { width: 100%; height: auto; display: block; border-radius: 4px; box-shadow: 0 24px 60px rgba(20,19,24,0.12); }
.about-band { display: none; }
.about-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); margin-top: clamp(2rem, 4vw, 3rem); }
.about-why-card { background: var(--warm-white); border: 1px solid rgba(41,40,47,0.08); border-radius: 4px; overflow: hidden; }
.about-why-img img { width: 100%; height: 210px; object-fit: cover; display: block; }
.about-why-body { padding: 1.5rem 1.5rem 1.75rem; }
.about-why-body h3 { font-family: var(--heading); font-weight: 400; letter-spacing: 0.04em; font-size: 1.1rem; margin-bottom: 0.7rem; color: var(--black); }
.about-why-body p { font-size: 0.9rem; line-height: 1.7; color: var(--text-mid); font-weight: 300; }
.about-quote { margin: clamp(2.5rem, 5vw, 3.5rem) auto 0; max-width: 760px; text-align: center; font-family: var(--heading); font-weight: 300; font-style: italic; font-size: clamp(1.3rem, 2.4vw, 1.75rem); line-height: 1.45; color: var(--black); }
@media (max-width: 768px){
  .about-intro, .about-sec { flex-direction: column; align-items: stretch; gap: 1.4rem; }
  .about-intro-img, .about-sec-img { flex-basis: auto; max-width: 100%; }
  .about-why-grid { grid-template-columns: 1fr; }
}


/* ABOUT-ALTERNATE — image side controlled by class, not DOM order */
.about-intro-text, .about-sec-text { order: 1; }
.about-intro-img, .about-sec-img { order: 2; }
.about-sec--rev .about-sec-img { order: 0; }
@media (max-width: 768px){
  .about-sec-img, .about-intro-img, .about-sec--rev .about-sec-img { order: 2; }
}

/* ABOUT-INTRO — text-only, centered (feature image removed) */
.about-intro--solo { justify-content: center; text-align: center; }
.about-intro--solo .about-intro-text { flex: 0 1 760px; max-width: 760px; }
.about-intro--solo .section-sub { margin-left: auto; margin-right: auto; max-width: 640px; }

/* ABOUT-TEAM — leadership grid; placeholder initials now, photos swapped in later (#6) */
.about-team { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1.6rem, 3vw, 2.75rem) clamp(1.4rem, 2.6vw, 2.5rem); margin-top: clamp(2.25rem, 4vw, 3.25rem); }
.team-card { flex: 0 1 190px; text-align: center; margin: 0; }
.team-avatar { width: clamp(118px, 12vw, 150px); height: clamp(118px, 12vw, 150px); margin: 0 auto 1.15rem; border-radius: 50%; overflow: hidden; display: grid; place-items: center; background: linear-gradient(150deg, var(--soft-neutral), var(--cream)); border: 1px solid rgba(41,40,47,0.10); box-shadow: 0 14px 34px rgba(20,19,24,0.10); font-family: var(--heading); font-weight: 400; font-size: clamp(1.55rem, 2.6vw, 1.95rem); letter-spacing: 0.03em; color: var(--text-mid); position: relative; }
.team-avatar::after { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: inset 0 0 0 4px rgba(255,255,255,0.6); pointer-events: none; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-name { font-family: var(--heading); font-weight: 400; font-size: 1.06rem; letter-spacing: 0.01em; color: var(--black); margin-bottom: 0.32rem; }
.team-role { font-size: 0.76rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mid); }
@media (max-width: 768px){
  .about-team { gap: 1.75rem 1.1rem; }
  .team-card { flex-basis: 130px; }
}
