/* Antalya Flooring theme. Warm wood palette, dark header to carry the white
   logo, photo-forward and conversion-focused. Kept lean for high PageSpeed. */

:root {
    --wood-dark: #241910;     /* header / footer */
    --wood-dark-2: #2f2114;
    --wood: #6b4524;          /* walnut */
    --accent: #c1822f;        /* warm oak / amber — CTAs */
    --accent-2: #8f591a;        /* WCAG AA: clears 4.5:1 on white AND the cream tint */
    --accent-ink: #2a1c0c;
    --cream: #faf6f0;
    --cream-2: #f2ebe1;
    --ink: #241c14;
    --muted: #6f655a;
    --line: #e7ded2;
    --white: #ffffff;
    --maxw: 72rem;
    --maxw-narrow: 46rem;
    --radius: .6rem;
    --shadow: 0 6px 24px rgba(36, 25, 16, .10);
    --font: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    overflow-wrap: break-word;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-2); }
h1, h2, h3 { line-height: 1.15; letter-spacing: -.01em; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 1.25rem; }
.container--narrow { max-width: var(--maxw-narrow); }

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 200;
    background: var(--accent); color: var(--accent-ink); padding: .6rem 1rem; font-weight: 700;
}
.skip-link:focus { left: .5rem; top: .5rem; border-radius: var(--radius); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--accent); color: var(--accent-ink);
    padding: .8rem 1.4rem; border: 0; border-radius: var(--radius);
    font: inherit; font-weight: 700; text-decoration: none; cursor: pointer;
    transition: background .15s ease, transform .15s ease;
}
.btn:hover { background: var(--accent-2); transform: translateY(-1px); }
.btn--lg { padding: 1rem 1.8rem; font-size: 1.05rem; }
.btn--ghost { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
.btn--ghost:hover { background: rgba(255,255,255,.12); }
.btn--dark { background: var(--wood); color: var(--white); }
.btn--dark:hover { background: var(--wood-dark-2); }
.btn--wa { background: #25d366; color: #08331b; }
.btn--wa:hover { background: #1eb858; }

/* Header */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: var(--wood-dark);
    box-shadow: 0 2px 14px rgba(0,0,0,.18);
}
.site-header__inner { display: flex; align-items: center; gap: 1.25rem; padding-block: .7rem; }
.site-header__brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--white); font-weight: 800; font-size: 1.15rem; }
.site-header__brand img { height: 40px; width: auto; }
.site-nav { display: flex; gap: 1.25rem; margin-left: auto; }
.site-nav a { color: #e9e0d4; text-decoration: none; font-weight: 600; font-size: .96rem; padding: .3rem 0; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--accent); }
.site-header__cta { display: flex; align-items: center; gap: .75rem; }
.site-header__phone { color: var(--white); text-decoration: none; font-weight: 700; white-space: nowrap; }
.site-header__phone:hover { color: var(--accent); }
.site-header__lang a { color: #c9bba8; text-decoration: none; font-weight: 700; font-size: .9rem; }
.site-header__lang a:hover { color: var(--accent); }

/* Header menu (desktop: inline) + mobile hamburger */
.site-header__menu { display: contents; }
.nav-toggle { display: none; }
@media (max-width: 60rem) {
    .nav-toggle {
        display: inline-grid; place-items: center; margin-left: auto; padding: 0;
        width: 2.8rem; height: 2.8rem; border: 0; border-radius: .5rem; cursor: pointer;
        background: rgba(255,255,255,.1);
    }
    .nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after {
        content: ""; display: block; width: 1.3rem; height: 2px; background: #fff; border-radius: 2px; transition: transform .2s ease, opacity .2s ease;
    }
    .nav-toggle__bars { position: relative; }
    .nav-toggle__bars::before { position: absolute; top: -6px; left: 0; }
    .nav-toggle__bars::after { position: absolute; top: 6px; left: 0; }
    .site-header.is-open .nav-toggle__bars { background: transparent; }
    .site-header.is-open .nav-toggle__bars::before { top: 0; transform: rotate(45deg); }
    .site-header.is-open .nav-toggle__bars::after { top: 0; transform: rotate(-45deg); }

    .site-header__menu {
        display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch;
        background: var(--wood-dark); border-top: 1px solid rgba(255,255,255,.12); box-shadow: 0 12px 24px rgba(0,0,0,.28); padding: .4rem 0;
    }
    .site-header.is-open .site-header__menu { display: flex; }
    .site-nav { flex-direction: column; gap: 0; margin: 0; width: 100%; }
    .site-nav a { padding: .85rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.06); }
    .site-header__cta { flex-direction: column; align-items: stretch; gap: .7rem; padding: .9rem 1.5rem; }
    .site-header__cta .btn { justify-content: center; }
    .site-header__phone span { display: inline; }
    .site-header__lang { padding-top: .2rem; }
}

/* Sections */
.block { padding-block: clamp(2.5rem, 6vw, 5rem); }
.block--tint { background: var(--cream); }
.block--cream { background: var(--cream-2); }
.section-head { text-align: center; max-width: 42rem; margin: 0 auto clamp(1.5rem, 4vw, 2.5rem); }
.section-head h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin: 0 0 .5rem; }
.section-head p { color: var(--muted); font-size: 1.1rem; margin: 0; }
.eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; font-weight: 800; color: var(--accent-2); margin-bottom: .6rem; }

/* Hero */
.hero {
    position: relative; color: var(--white);
    background: var(--wood-dark);
    background-size: cover; background-position: center;
}
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,13,7,.55), rgba(20,13,7,.78)); }
.hero__inner { position: relative; padding-block: clamp(4rem, 12vw, 8rem); max-width: 44rem; }
.hero h1 { font-size: clamp(2rem, 6vw, 3.4rem); margin: 0 0 1rem; }
.hero p { font-size: clamp(1.05rem, 2.4vw, 1.3rem); color: #f0e7da; margin: 0 0 1.8rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.25rem 2rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.18); }
.hero__trust-item { display: flex; align-items: center; gap: .5rem; font-weight: 600; color: #f0e7da; font-size: .98rem; }
.hero__trust-item strong { color: var(--white); }
.stars { color: var(--accent); letter-spacing: .1em; }

/* Trust bar */
.trustbar { background: var(--wood-dark-2); color: #efe6d8; }
.trustbar__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.5rem; padding-block: 1rem; text-align: center; }
.trustbar__item { display: flex; align-items: center; gap: .5rem; font-weight: 600; }

/* Services grid */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 1.25rem; }
.card {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 1.5rem; box-shadow: var(--shadow); transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(36,25,16,.14); }
.card__icon { width: 2.6rem; height: 2.6rem; display: grid; place-items: center; border-radius: .5rem; background: var(--cream-2); color: var(--accent-2); font-size: 1.3rem; margin-bottom: .9rem; }
.card h3 { margin: 0 0 .4rem; font-size: 1.2rem; }
.card p { margin: 0; color: var(--muted); }
.card a.card__link { display: inline-block; margin-top: .8rem; color: var(--accent-2); font-weight: 700; text-decoration: none; }
.card a.card__link:hover { text-decoration: underline; }

/* Features / why-us */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 1.5rem; }
.feature { display: flex; gap: 1rem; }
.feature__icon { flex: 0 0 auto; width: 2.8rem; height: 2.8rem; display: grid; place-items: center; border-radius: 50%; background: var(--accent); color: var(--accent-ink); font-size: 1.3rem; }
.feature h3 { margin: .2rem 0 .3rem; font-size: 1.15rem; }
.feature p { margin: 0; color: var(--muted); }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr)); gap: .9rem; }
.gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 3; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.gallery figure:hover img { transform: scale(1.05); }

/* Reviews */
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr)); gap: 1.25rem; }
.review { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow); }
.review__stars { color: var(--accent-2); letter-spacing: .1em; margin-bottom: .5rem; }
.review p { margin: 0 0 .8rem; }
.review__author { font-weight: 700; color: var(--ink); }
.reviews-cta { text-align: center; margin-top: 1.5rem; }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--wood), var(--accent-2)); color: var(--white); text-align: center; }
.cta-band h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin: 0 0 .6rem; }
.cta-band p { font-size: 1.15rem; color: #fbf1e2; margin: 0 0 1.5rem; }
.cta-band .hero__actions { justify-content: center; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2.5rem; align-items: start; }
@media (max-width: 52rem) { .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; } }
.contact-info dl { margin: 0; }
.contact-info dt { font-weight: 800; margin-top: 1rem; color: var(--ink); }
.contact-info dd { margin: .15rem 0 0; color: var(--muted); }
.contact-info a { color: var(--accent-2); text-decoration: none; font-weight: 600; }
.contact-info a.btn { color: var(--accent-ink); }
.contact-info a.btn--wa { color: #08331b; }
.form-row { display: grid; gap: .35rem; margin-bottom: 1rem; }
.form label { font-weight: 700; font-size: .95rem; }
.form input, .form select, .form textarea {
    width: 100%; padding: .7rem .8rem; border: 1px solid var(--line); border-radius: var(--radius);
    font: inherit; background: var(--white);
}
.form textarea { min-height: 7rem; resize: vertical; }
.form .form-note { font-size: .85rem; color: var(--muted); }
.form__success { background: #e7f4ec; border: 1px solid #b9e0c8; color: #1c6b3f; padding: 1rem; border-radius: var(--radius); margin-bottom: 1rem; }
.form__error { background: #fdecea; border: 1px solid #f3c9c4; color: #b3261e; padding: 1rem; border-radius: var(--radius); margin-bottom: 1rem; }
.map-embed { border: 0; width: 100%; aspect-ratio: 16 / 10; border-radius: var(--radius); margin-top: 1.25rem; }

/* Footer */
.site-footer { background: var(--wood-dark); color: #d8cdbd; padding-block: 3rem 1.5rem; }
.site-footer a { color: #e9e0d4; text-decoration: none; }
.site-footer a:hover { color: var(--accent); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
@media (max-width: 56rem) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
@media (max-width: 34rem) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--white); font-size: 1rem; margin: 0 0 .8rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .4rem; }
.footer-brand img { height: 44px; margin-bottom: .8rem; }
.footer-brand p { color: #b8ab98; margin: 0; max-width: 26ch; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2rem; padding-top: 1.25rem; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; color: #ab9e8b; font-size: .9rem; }

/* Floating WhatsApp */
.wa-float {
    position: fixed; right: 1rem; bottom: 1rem; z-index: 90;
    display: inline-flex; align-items: center; gap: .5rem;
    background: #25d366; color: #08331b; font-weight: 800; text-decoration: none;
    padding: .8rem 1.1rem; border-radius: 2rem; box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.wa-float:hover { background: #1eb858; }
@media (max-width: 40rem) { .wa-float span { display: none; } .wa-float { padding: .9rem; border-radius: 50%; } }

/* Process steps */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr)); gap: 1.5rem; counter-reset: step; }
.step { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.2rem 1.2rem; text-align: center; box-shadow: var(--shadow); }
.step__num { display: inline-grid; place-items: center; width: 2.4rem; height: 2.4rem; border-radius: 50%; background: var(--accent); color: var(--accent-ink); font-weight: 800; font-size: 1.1rem; margin-bottom: .7rem; }
.step h3 { margin: 0 0 .35rem; font-size: 1.1rem; }
.step p { margin: 0; color: var(--muted); font-size: .95rem; }

/* FAQ */
.faq__item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: .6rem; box-shadow: var(--shadow); }
.faq__item summary { cursor: pointer; padding: 1rem 1.2rem; font-weight: 700; list-style: none; position: relative; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: 1.2rem; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--accent-2); font-weight: 400; }
.faq__item[open] summary::after { content: "\2013"; }
.faq__answer { padding: 0 1.2rem 1.1rem; color: #3a322a; }

/* Brands */
.brands { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; }
.brand { background: var(--cream-2); border: 1px solid var(--line); border-radius: 2rem; padding: .5rem 1.2rem; font-weight: 600; color: #5a4a36; }

/* Split (image + text) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.split--right .split__media { order: 2; }
.split__media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
@media (max-width: 50rem) { .split { grid-template-columns: 1fr; gap: 1.5rem; } .split--right .split__media { order: 0; } }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.prose { max-width: var(--maxw-narrow); }
.prose h2 { font-size: 1.6rem; margin-top: 2rem; }
.prose p { color: #3a322a; }

/* ===================== Design overhaul ===================== */
:root {
    --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --font-head: "Fraunces", Georgia, "Times New Roman", serif;
}
h1, h2, h3 { font-family: var(--font-head); font-weight: 600; letter-spacing: -.015em; }
.hero h1 { font-weight: 600; }
.btn, .site-nav a, .eyebrow, .pill, .brand { font-family: var(--font); }

/* Icons */
.icon { width: 1.15em; height: 1.15em; flex: 0 0 auto; vertical-align: -.18em; }
.card__icon { width: 3rem; height: 3rem; background: var(--cream-2); color: var(--accent-2); border-radius: .7rem; }
.card__icon svg { width: 1.5rem; height: 1.5rem; }
.feature__icon { width: 3.2rem; height: 3.2rem; background: rgba(193,130,47,.15); color: var(--accent-2); }
.feature__icon svg { width: 1.5rem; height: 1.5rem; }
.site-header__phone svg { width: 1.05em; height: 1.05em; margin-right: .35rem; vertical-align: -.18em; }
.hero__trust-item svg { color: var(--accent); }

/* Section heading accent */
.section-head h2::after { content: ""; display: block; width: 3rem; height: 3px; background: var(--accent); border-radius: 2px; margin: .85rem auto 0; }

/* Color depth: dark section */
.block--dark { background: var(--wood-dark); color: #ece3d6; }
.block--dark .section-head h2 { color: #fff; }
.block--dark .feature h3 { color: #fff; }
.block--dark .feature p { color: #cabeac; }
.block--dark .feature__icon { background: rgba(255,255,255,.1); color: var(--accent); }

/* Why-us weight */
.features { gap: 2rem; }
.feature h3 { font-size: 1.2rem; }

/* Brands as a clean wordmark row */
.brands { gap: 1.3rem 2.6rem; }
.brand { background: none; border: 0; padding: 0; color: #6b5640; font-weight: 600; font-size: 1.1rem; font-family: var(--font-head); letter-spacing: .01em; }

/* Reviews: wider, quote mark */
.reviews { grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr)); }
.review { position: relative; padding-top: 2rem; }
.review p { font-size: 1.02rem; }
.review__mark { position: absolute; top: .9rem; right: 1.1rem; color: var(--accent); opacity: .22; }
.review__mark svg { width: 2.4rem; height: 2.4rem; }

/* Service / room cards: balanced 3-across (so 6 items read as 3 + 3, not 4 + 2) */
.cards { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 56rem) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 34rem) { .cards { grid-template-columns: 1fr; } }

/* Gallery: featured mosaic ONLY on the home teaser; archive stays a uniform grid */
@media (min-width: 46rem) {
    .gallery--featured { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 11rem; }
    .gallery--featured figure { aspect-ratio: auto; height: 100%; }
    .gallery--featured figure:first-child { grid-column: span 2; grid-row: span 2; }
}

/* Lightbox */
.gallery__open { display: block; height: 100%; cursor: zoom-in; }
.gallery__open img { width: 100%; height: 100%; object-fit: cover; }
.lightbox { position: fixed; inset: 0; background: rgba(20,13,7,.93); display: none; align-items: center; justify-content: center; padding: 2rem; z-index: 200; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 95vw; max-height: 92vh; border-radius: .4rem; box-shadow: 0 12px 50px rgba(0,0,0,.6); }
.lightbox__close { position: absolute; top: .8rem; right: 1.2rem; background: none; border: 0; color: #fff; font-size: 2.6rem; line-height: 1; cursor: pointer; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 3rem; height: 3rem; display: grid; place-items: center; background: rgba(255,255,255,.14); border: 0; border-radius: 50%; color: #fff; font-size: 2rem; line-height: 1; cursor: pointer; }
.lightbox__nav:hover { background: rgba(255,255,255,.28); }
.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }
@media (max-width: 40rem) { .lightbox__nav { width: 2.5rem; height: 2.5rem; font-size: 1.6rem; } }

/* Shadows + WhatsApp refine */
.card, .review, .step { box-shadow: 0 1px 2px rgba(36,25,16,.05), 0 10px 30px rgba(36,25,16,.07); }
.wa-float { padding: .6rem .9rem; font-size: .92rem; box-shadow: 0 6px 20px rgba(0,0,0,.22); }
.wa-float svg { width: 20px; height: 20px; }

/* Footer social icons */
.social { display: flex; gap: .7rem; margin-top: 1rem; }
.social a { display: grid; place-items: center; width: 2.2rem; height: 2.2rem; border-radius: 50%; background: rgba(255,255,255,.12); color: #ece3d6; }
.social a:hover { background: var(--accent); color: var(--accent-ink); }
.social svg { width: 1.15rem; height: 1.15rem; }

/* Brand logo (recreated van logo) */
.site-header__brand .brand-logo { height: 38px; width: auto; display: block; }
.footer-brand .brand-logo { height: 42px; width: auto; margin-bottom: .8rem; }

/* Before / after drag sliders */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 46rem) { .ba-grid { grid-template-columns: 1fr; max-width: 32rem; margin: 0 auto; } }
.ba-item { margin: 0; }
.ba { position: relative; width: 100%; aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); user-select: none; touch-action: none; cursor: ew-resize; background: #111; }
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.ba__before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba__line { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; background: #fff; box-shadow: 0 0 0 1px rgba(0,0,0,.2); transform: translateX(-1px); pointer-events: none; }
.ba__line::after { content: "\2194"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 2.2rem; height: 2.2rem; display: grid; place-items: center; border-radius: 50%; background: #fff; color: var(--ink); font-weight: 700; box-shadow: var(--shadow); }
.ba__tag { position: absolute; top: .6rem; padding: .25rem .7rem; border-radius: 2rem; font-size: .78rem; font-weight: 700; color: #fff; background: rgba(36,25,16,.8); pointer-events: none; }
.ba__tag--b { left: .6rem; }
.ba__tag--a { right: .6rem; }
.ba-item figcaption { margin-top: .7rem; color: var(--muted); font-size: .95rem; text-align: center; }

/* Gallery category filter */
.gallery-filter { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 1.6rem; }
.gallery-filter__chip { font: inherit; font-weight: 600; font-size: .92rem; cursor: pointer; padding: .45rem 1rem; border-radius: 2rem; border: 1px solid var(--line); background: var(--white); color: var(--ink); transition: background .15s, color .15s, border-color .15s; }
.gallery-filter__chip:hover { border-color: var(--accent-2); }
.gallery-filter__chip.is-active { background: var(--wood-dark); border-color: var(--wood-dark); color: #fff; }

/* Cost guide table */
.pricetable { width: 100%; border-collapse: collapse; box-shadow: var(--shadow); border-radius: var(--radius); overflow: hidden; }
.pricetable th, .pricetable td { text-align: left; padding: .85rem 1.1rem; border-bottom: 1px solid var(--line); }
.pricetable thead th { background: var(--wood-dark); color: #fff; font-size: .9rem; letter-spacing: .01em; }
.pricetable tbody tr:nth-child(odd) { background: var(--cream); }
.pricetable tbody tr:last-child td { border-bottom: 0; }
.pricetable td:last-child, .pricetable th:last-child { text-align: right; font-weight: 600; white-space: nowrap; }
.pricetable__note { margin-top: 1rem; color: var(--muted); font-size: .9rem; }

/* Process photo strip (prep -> install -> finished) */
.photostrip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 46rem) { .photostrip { grid-template-columns: 1fr; max-width: 30rem; margin: 0 auto; } }
.photostrip__item { margin: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.photostrip__item img { width: 100%; height: 220px; object-fit: cover; display: block; }
.photostrip__item figcaption { padding: 1rem 1.1rem 1.2rem; display: block; }
.photostrip__item figcaption strong { display: block; color: var(--accent-2); font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .3rem; }
.photostrip__item figcaption span { color: var(--ink); }

/* YouTube videos (thumbnail facade -> click to play) */
.videos { display: grid; grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr)); gap: 1.25rem; }
.video-card { position: relative; display: block; width: 100%; padding: 0; border: 0; cursor: pointer; background: #111; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); text-align: left; aspect-ratio: 16 / 9; }
.video-card img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: .92; transition: opacity .15s, transform .3s; }
@media (hover: hover) { .video-card:hover img { opacity: 1; transform: scale(1.03); } }
.video-card__play { position: absolute; inset: 0; margin: auto; width: 3.4rem; height: 3.4rem; display: grid; place-items: center; border-radius: 50%; background: rgba(193,130,47,.92); color: #fff; font-size: 1.3rem; padding-left: .2rem; }
.video-card__title { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem .8rem .6rem; color: #fff; font-weight: 600; font-size: .9rem; line-height: 1.3; background: linear-gradient(transparent, rgba(0,0,0,.75)); }
.video-card--playing { aspect-ratio: 16 / 9; }
.video-card--playing iframe { width: 100%; height: 100%; border: 0; display: block; }
.videos-cta { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* Video lightbox player (click a card -> larger player + prev/next) */
.vlb { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 1.2rem; background: rgba(0,0,0,.9); }
.vlb[hidden] { display: none; }
.vlb__stage { width: min(100%, 62rem); }
.vlb__frame { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #000; border-radius: .5rem; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,.5); }
.vlb__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vlb__title { color: #fff; text-align: center; margin: .9rem 0 0; font-weight: 600; font-size: 1rem; }
.vlb__close { position: absolute; top: 1rem; right: 1.3rem; background: none; border: 0; color: #fff; font-size: 2.6rem; line-height: 1; cursor: pointer; padding: 0; }
.vlb__nav { position: absolute; top: 50%; transform: translateY(-50%); display: grid; place-items: center; width: 3rem; height: 3rem; border: 0; border-radius: 50%; background: rgba(255,255,255,.14); color: #fff; font-size: 2rem; cursor: pointer; }
.vlb__prev { left: 1rem; }
.vlb__next { right: 1rem; }
.vlb__nav:hover, .vlb__close:hover { background: rgba(255,255,255,.25); color: var(--accent); }
@media (max-width: 40rem) { .vlb__nav { width: 2.4rem; height: 2.4rem; font-size: 1.6rem; } .vlb__prev { left: .3rem; } .vlb__next { right: .3rem; } }

/* Lead form upgrades (postal, consent, compact homepage form) */
.container--narrow { max-width: 48rem; }
.contact-grid--compact { display: block; }
.contact-grid--compact .form { margin-top: .5rem; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
@media (max-width: 30rem) { .form-grid-2 { grid-template-columns: 1fr; } }
.form-opt { color: var(--muted); font-weight: 400; font-size: .85em; }
.form-talk { margin: 0 0 1rem; color: var(--muted); }
.form-talk a { color: var(--accent-2); font-weight: 700; text-decoration: none; }
.form-consent { display: flex; gap: .6rem; align-items: flex-start; margin: .2rem 0 1.1rem; }
.form-consent input { margin-top: .25rem; flex: 0 0 auto; width: 1.05rem; height: 1.05rem; }
.form-consent label { font-size: .82rem; color: var(--muted); line-height: 1.45; }
.contact-trust { margin: .6rem 0 0; font-size: .98rem; color: var(--ink); }
.contact-trust .stars { color: var(--accent-2); letter-spacing: .06em; }
.reviews-rating { text-align: center; margin: 0 0 1.6rem; font-size: 1.1rem; color: var(--ink); }
.reviews-rating .stars { color: var(--accent-2); letter-spacing: .08em; }
.reviews-rating strong { font-size: 1.25rem; }

/* Time-bound offer promo bar (above sticky header; editable in Settings) */
.promo-bar { background: var(--accent); color: var(--accent-ink); font-weight: 600; font-size: .92rem; }
.promo-bar .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .25rem .9rem; padding-block: .55rem; text-align: center; }
.promo-bar a { color: var(--accent-ink); font-weight: 800; text-decoration: underline; text-underline-offset: 2px; white-space: nowrap; }
.promo-bar a:hover { color: var(--wood-dark); }

/* Footer brand CTA + balance */
.footer-cta { display: inline-block; margin-top: 1rem; padding: .6rem 1.1rem; border: 1px solid rgba(255,255,255,.32); border-radius: 2rem; color: #fff !important; font-weight: 700; font-size: .95rem; transition: background .15s, border-color .15s; }
.footer-cta:hover { background: var(--accent); border-color: var(--accent); color: var(--accent-ink) !important; }
.footer-brand .social { margin-top: 1.1rem; }

/* Reassurance microcopy under CTA band */
.reassure { margin: 1.1rem 0 0; font-size: .92rem; color: #fbf1e2; opacity: .92; }

/* Equal-height review cards (author pinned to the bottom) */
.review { display: flex; flex-direction: column; }
.review__author { margin-top: auto; }

/* Sticky mobile contact bar (Call / WhatsApp / Quote) */
.mobile-bar { display: none; }
@media (max-width: 48rem) {
    .mobile-bar {
        position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
        display: grid; grid-auto-flow: column; grid-auto-columns: 1fr;
        background: var(--wood-dark); border-top: 1px solid rgba(255,255,255,.12);
        box-shadow: 0 -4px 16px rgba(0,0,0,.18);
    }
    .mobile-bar__btn { display: flex; align-items: center; justify-content: center; gap: .4rem; padding: .85rem .4rem; color: #efe6d8; text-decoration: none; font-weight: 700; font-size: .92rem; }
    .mobile-bar__btn svg { width: 18px; height: 18px; }
    .mobile-bar__btn + .mobile-bar__btn { border-left: 1px solid rgba(255,255,255,.12); }
    .mobile-bar__btn--wa { color: #25d366; }
    .mobile-bar__btn--cta { background: var(--accent); color: var(--accent-ink); }
    .wa-float { display: none; }
    body { padding-bottom: 3.4rem; }
}
