
:root {
    --black: #0d0d0d;
    --charcoal: #292927;
    --white: #ffffff;
    --cream: #f7f5f1;
    --panel: #efece5;
    --grey: #6f6d67;
    --line: #d9d5cb;
    --soft-black: #171715;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: 'Work Sans', Arial, sans-serif;
    color: var(--black);
    background: var(--white);
    line-height: 1.65;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    letter-spacing: .1px;
    color: var(--black);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

.container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 24px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 14px;
}

.eyebrow::before,
.eyebrow::after {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--line);
}


/* =========================
   HEADER
========================= */

header {
    background: var(--black);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #20201d;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    max-width: 1150px;
    margin: 0 auto;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
}

.brand img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    letter-spacing: .8px;
    font-weight: 600;
    line-height: 1.1;
}

.brand-text small {
    display: block;
    font-family: 'Work Sans', sans-serif;
    font-size: 9px;
    letter-spacing: 2.5px;
    color: #aaa79e;
    font-weight: 400;
    margin-top: 3px;
}

nav ul {
    display: flex;
    gap: 26px;
    list-style: none;
    align-items: center;
}

nav a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .6px;
    text-transform: uppercase;
    opacity: .78;
    transition: opacity .2s ease;
    position: relative;
    padding-bottom: 4px;
}

nav a:hover,
nav a.active {
    opacity: 1;
}

nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: var(--white);
}

.cta-btn {
    background: var(--white);
    color: var(--black);
    padding: 10px 20px;
    border-radius: 2px;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    border: 1px solid var(--white);
    transition: .2s ease;
    white-space: nowrap;
    opacity: 1;
}

.cta-btn:hover {
    background: transparent;
    color: var(--white);
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    padding: 5px;
}


/* =========================
   HERO
========================= */

.hero {
    background: var(--black);
    color: #fff;
    padding: 78px 0 86px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #232320;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 88% 18%, rgba(255,255,255,.045), transparent 38%);
    pointer-events: none;
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 65px;
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.hero-text {
    flex: 1.05;
    min-width: 320px;
}

.trust-line {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 11px;
    color: #bbb8ae;
    margin-bottom: 21px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.trust-line i {
    color: #fff;
    font-size: 10px;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.12;
    margin-bottom: 20px;
    color: #fff;
}

.hero h1 em {
    font-style: italic;
    color: #d1cec5;
}

.hero p {
    font-size: 16px;
    line-height: 1.75;
    color: #c3c0b7;
    max-width: 505px;
    margin-bottom: 31px;
}

.hero-btns {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-outline {
    padding: 14px 27px;
    border-radius: 2px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 11.5px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    transition: .2s ease;
}

.btn-primary {
    background: #fff;
    color: var(--black);
    border: 1px solid #fff;
}

.btn-primary:hover {
    background: transparent;
    color: #fff;
}

.btn-outline {
    border: 1px solid rgba(255,255,255,.35);
    color: #fff;
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,.05);
}

.hero-visual {
    flex: .9;
    min-width: 280px;
    display: flex;
    justify-content: center;
}

.hero-visual img {
    width: 100%;
    max-width: 460px;
    height: 420px;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
    filter: grayscale(100%);
    border: 4px solid #fff;
}


/* =========================
   TRUST STRIP
========================= */

.trust-strip {
    background: var(--cream);
    border-bottom: 1px solid var(--line);
}

.trust-strip .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-top: 24px;
    padding-bottom: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
}

.trust-item i {
    font-size: 18px;
}

.trust-item span small {
    display: block;
    font-weight: 400;
    color: var(--grey);
    font-size: 11.5px;
    margin-top: 1px;
}


/* =========================
   GENERAL SECTIONS
========================= */

.section {
    padding: 78px 0;
}

.section.alt {
    background: var(--cream);
}

.section-title {
    text-align: center;
    font-size: 34px;
    margin-bottom: 9px;
}

.section-sub {
    text-align: center;
    color: var(--grey);
    margin-bottom: 42px;
    font-size: 14.5px;
}


/* =========================
   ABOUT
========================= */

.about-split {
    display: flex;
    align-items: center;
    gap: 62px;
    flex-wrap: wrap;
}

.about-split .photo {
    flex: 1;
    min-width: 280px;
    max-width: 420px;
}

.about-split .photo-frame {
    border: 1px solid var(--line);
    padding: 13px;
    background: #fff;
}

.about-split .photo-frame img {
    filter: grayscale(100%) contrast(1.03);
}

.about-split .copy {
    flex: 1.2;
    min-width: 300px;
}

.about-split .copy .eyebrow {
    justify-content: flex-start;
}

.about-split .copy .eyebrow::before {
    display: none;
}

.about-split h2 {
    font-size: 34px;
    margin-bottom: 3px;
}

.signature-line {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--grey);
    font-size: 14px;
    margin-bottom: 19px;
}

.about-split p {
    color: #3a3a37;
    margin-bottom: 15px;
    font-size: 15px;
}

.badge-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 23px;
}

.mini-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    border: 1px solid var(--line);
    padding: 9px 13px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .2px;
}

.mini-badge i {
    color: var(--black);
}


/* =========================
   SERVICES
========================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    max-width: 1102px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    padding: 34px 22px;
    text-align: center;
    transition: background .2s ease, color .2s ease;
}

.service-card:hover {
    background: var(--black);
}

.service-card i {
    font-size: 23px;
    margin-bottom: 14px;
    color: var(--black);
    transition: color .2s ease;
}

.service-card p {
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: .2px;
    color: var(--black);
    transition: color .2s ease;
}

.service-card .desc {
    display: block;
    margin-top: 7px;
    font-size: 12px;
    font-weight: 400;
    color: var(--grey);
    transition: color .2s ease;
}

.service-card:hover p,
.service-card:hover i {
    color: #fff;
}

.service-card:hover .desc {
    color: #c7c4bb;
}


/* =========================
   GALLERY
========================= */

.tabs {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 20px;
    border: 1px solid var(--line);
    background: #fff;
    font-weight: 600;
    cursor: pointer;
    font-size: 11.5px;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--grey);
    transition: .2s ease;
}

.tab-btn:hover {
    border-color: var(--black);
    color: var(--black);
}

.tab-btn.active {
    background: var(--black);
    color: #fff;
    border-color: var(--black);
}

.ba-wrap {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    border: 1px solid var(--line);
    background: #fff;
}

.ba-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--cream);
}

.ba-panel {
    display: none;
    height: 100%;
}

.ba-panel.active {
    display: block;
}

.ba-compare {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    touch-action: none;
}

.ba-compare img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.ba-before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.ba-after {
    z-index: 1;
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: 3;
    transform: translateX(-50%);
    pointer-events: none;
}

.ba-handle-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #fff;
    transform: translateX(-50%);
}

.ba-handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    box-shadow: 0 2px 10px rgba(0,0,0,.25);
}

.ba-tag {
    position: absolute;
    bottom: 13px;
    z-index: 4;
    background: var(--black);
    color: #fff;
    font-size: 10px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 5px 12px;
    transition: opacity .2s ease;
}

.ba-tag-before {
    left: 13px;
}

.ba-tag-after {
    right: 13px;
}


/* =========================
   REVIEWS
========================= */

.reviews-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    flex-wrap: wrap;
    gap: 15px;
}

.reviews-head h2 {
    font-size: 30px;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 500;
    color: var(--black);
    font-size: 13px;
}

.stars {
    color: var(--black);
    letter-spacing: 2px;
    font-size: 12px;
}

.fb-reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 10px;
    align-items: start;
}

.fb-review-card {
    background: #fff;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.fb-review-card iframe {
    display: block;
    width: 100%;
    max-width: 500px;
    border: none;
}


/* =========================
   AREAS
========================= */

.areas-section {
    text-align: center;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    max-width: 800px;
    margin: 0 auto;
}

.area-chip {
    border: 1px solid var(--line);
    color: var(--black);
    padding: 9px 17px;
    font-size: 12.5px;
    font-weight: 500;
    transition: .2s ease;
    background: transparent;
}

.area-chip:hover {
    background: var(--black);
    color: #fff;
    border-color: var(--black);
}

.areas-note {
    margin-top: 24px;
    color: var(--grey);
    font-size: 13.5px;
}


/* =========================
   FAQ
========================= */

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 21px 4px;
    cursor: pointer;
    background: none;
    border: 0;
    width: 100%;
    text-align: left;
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--black);
}

.faq-q i {
    transition: transform .25s ease;
    color: var(--grey);
    font-size: 13px;
    flex-shrink: 0;
}

.faq-item.open .faq-q i {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-item.open .faq-a {
    max-height: 300px;
}

.faq-a p {
    padding: 0 4px 22px;
    color: var(--grey);
    font-size: 14px;
}


/* =========================
   CONTACT
========================= */

.contact-section {
    background: var(--black);
    color: #fff;
}

.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 280px;
}

.contact-info .eyebrow {
    justify-content: flex-start;
    color: #aaa79e;
}

.contact-info .eyebrow::before {
    display: none;
}

.contact-info h2 {
    font-size: 34px;
    margin-bottom: 14px;
    color: #fff;
}

.contact-info > p {
    color: #c5c2b9;
    margin-bottom: 27px;
    font-size: 15px;
    max-width: 450px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #e2dfd7;
}

.contact-detail i {
    width: 17px;
    color: #fff;
    font-size: 14px;
}

.contact-detail a {
    color: inherit;
    transition: opacity .2s ease;
}

.contact-detail a:hover {
    opacity: .7;
}

.contact-form {
    flex: 1.1;
    min-width: 300px;
    background: #fff;
    padding: 30px;
    color: var(--black);
}

.contact-form label {
    display: block;
    font-size: 10.5px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 5px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 11px 13px;
    margin-bottom: 16px;
    border: 1px solid var(--line);
    border-radius: 0;
    font-size: 13.5px;
    background: #fff;
    color: var(--black);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--black);
}

.contact-form textarea {
    resize: vertical;
    min-height: 90px;
}

.contact-form button {
    width: 100%;
    background: var(--black);
    color: #fff;
    border: 1px solid var(--black);
    padding: 14px;
    font-weight: 600;
    font-size: 11.5px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: .2s ease;
}

.contact-form button:hover {
    background: #fff;
    color: var(--black);
}


/* =========================
   CTA
========================= */

.cta-banner {
    background: var(--cream);
    text-align: center;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 55px 0;
}

.cta-banner h2 {
    font-size: 28px;
    margin-bottom: 8px;
}

.cta-banner p {
    color: var(--grey);
    margin-bottom: 23px;
}


/* =========================
   FOOTER
========================= */

footer {
    background: #0a0a0a;
    border-top:2px solid white;
    color: #9a978d;
    padding: 55px 0 20px;
    font-size: 13px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 38px;
}

.footer-brand {
    max-width: 280px;
}

.footer-brand .brand {
    margin-bottom: 15px;
}

.footer-brand img {
    height: 38px;
}

.footer-brand p {
    color: #85827a;
    font-size: 13px;
    line-height: 1.7;
}

.footer-badges {
    display: flex;
    gap: 9px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.footer-badges span {
    border: 1px solid #2a2a28;
    padding: 6px 10px;
    font-size: 10px;
    letter-spacing: .4px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #c4c1b8;
}

.footer-cols {
    display: flex;
    gap: 55px;
    flex-wrap: wrap;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 13px;
    font-size: 11px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Work Sans', sans-serif;
}

.footer-col a {
    display: block;
    color: #949188;
    margin-bottom: 8px;
    font-size: 12.5px;
}

.footer-col a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    border: 1px solid #2a2a28;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c4c1b8;
    margin: 0;
}

.footer-social a:hover {
    border-color: #fff;
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #1f1f1c;
    padding-top: 18px;
    text-align: center;
    font-size: 11.5px;
    color: #66635d;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

    nav ul {
        gap: 17px;
    }

    .hero-inner {
        gap: 40px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .trust-strip .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-left: 24px;
        margin-right: 24px;
    }
}


@media (max-width: 900px) {

    .header-inner {
        padding: 13px 20px;
    }

    .menu-toggle {
        display: block;
    }

    nav > ul {
        position: fixed;
        top: 67px;
        left: 0;
        right: 0;
        background: var(--black);
        flex-direction: column;
        padding: 24px 20px 28px;
        gap: 19px;
        transform: translateY(-130%);
        transition: transform .3s ease;
        border-bottom: 1px solid #2a2a28;
        visibility: hidden;
        max-width: 100vw;
    }

    nav > ul.open {
        transform: translateY(0);
        visibility: visible;
    }

    nav a {
        font-size: 12px;
    }

    nav .cta-btn {
        margin-top: 3px;
    }

    .hero {
        padding: 65px 0 70px;
    }

    .hero-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-text {
        min-width: 0;
    }

    .hero-visual {
        min-width: 0;
    }

    .hero-visual img {
        max-width: 100%;
        height: 360px;
    }

    .fb-reviews-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .fb-review-card iframe {
        width: 100%;
    }
}


@media (max-width: 760px) {

    .section {
        padding: 65px 0;
    }

    .about-split {
        gap: 30px;
        flex-direction: column;
    }

    .about-split .photo {
        max-width: 340px;
        width: 100%;
        margin: 0 auto;
    }

    .about-split .copy {
        min-width: 0;
        width: 100%;
        text-align: left;
    }

    .value-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-grid {
        flex-direction: column;
        gap: 38px;
    }

    .contact-form {
        min-width: 0;
    }

    .reviews-head {
        align-items: flex-start;
    }
}


@media (max-width: 600px) {

    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .header-inner {
        padding-left: 18px;
        padding-right: 18px;
    }

    .brand img {
        height: 35px;
    }

    .brand-text {
        font-size: 17px;
    }

    .brand-text small {
        font-size: 7px;
        letter-spacing: 1.8px;
    }

    .hero {
        padding: 52px 0 58px;
    }

    .hero h1 {
        font-size: 34px;
        line-height: 1.14;
    }

    .hero p {
        font-size: 14.5px;
    }

    .hero-visual img {
        height: 300px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-outline {
        justify-content: center;
    }

    .trust-strip .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .section-title {
        font-size: 29px;
    }

    .section-sub {
        font-size: 13.5px;
        padding: 0 10px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        margin-left: 18px;
        margin-right: 18px;
    }

    .service-card {
        padding: 28px 20px;
    }

    .ba-wrap {
        margin-left: 18px;
        margin-right: 18px;
    }

    .tabs {
        padding: 0 12px;
    }

    .tab-btn {
        padding: 9px 14px;
        font-size: 10px;
    }

    .reviews-head h2 {
        font-size: 26px;
    }

    .rating-badge {
        font-size: 12px;
    }

    .fb-review-card {
        padding: 5px;
    }

    .fb-review-card iframe {
        min-height: 300px !important;
    }

    .contact-form {
        padding: 23px 18px;
    }

    .contact-info h2 {
        font-size: 29px;
    }

    .footer-top {
        gap: 32px;
    }

    .footer-cols {
        gap: 35px;
    }

    .faq-list {
        padding: 0 18px;
    }
}


@media (max-width: 400px) {

    .brand-text {
        font-size: 15px;
    }

    .brand-text small {
        font-size: 6.5px;
    }

    .hero h1 {
        font-size: 31px;
    }

    .hero-visual img {
        height: 250px;
    }
}


/* =========================
   ACCESSIBILITY
========================= */

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: .01ms !important;
    }
}


/* =========================================
   SERVICES — BOOK NOW BUTTON
========================================= */

.services-book-wrap {
    display: flex;
    justify-content: center;

    margin-top: 45px;
}


.services-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 25px;

    padding: 15px 24px;

    background: var(--black);
    color: var(--white);

    border: 1px solid var(--black);

    font-family: 'Work Sans', Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;

    transition: transform .25s ease;
}


.services-book-btn span {
    font-size: 18px;
    line-height: 1;
}


/* Lift only — no colour change */

.services-book-btn:hover {
    transform: translateY(-3px);
}


/* Mobile */

@media (max-width: 600px) {

    .services-book-wrap {
        margin-top: 35px;
    }

    .services-book-btn {
        width: 100%;
        max-width: 280px;
    }

    .services-book-btn:hover {
        transform: none;
    }

}

/* =========================================
   FACEBOOK REVIEWS
========================================= */

.emme-facebook-reviews {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;

    width: 100%;
    max-width: 1400px;

    margin: 0 auto;
    padding: 10px 20px 40px;

    overflow: visible;
}


/* =========================================
   REVIEW
========================================= */

.emme-facebook-review {
    flex: 1 1 0;
    min-width: 0;

    display: flex;
    flex-direction: column;
    align-items: center;

    background: transparent;

    transition: transform .25s ease;
}


/* Lift only */

.emme-facebook-review:hover {
    transform: translateY(-4px);
}


/* =========================================
   FACEBOOK CONTENT
========================================= */

.emme-facebook-content {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    overflow: visible;
}

.emme-facebook-content iframe {
    display: block;

    width: 100%;
    max-width: 500px;

    border: 0;
}


/* =========================================
   READ REVIEW
========================================= */

.emme-review-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin-top: 16px;
    padding: 11px 18px;

    background: var(--black);
    color: var(--white);

    border: 1px solid var(--black);

    font-family: 'Work Sans', Arial, sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.4px;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;

    transition: none;
}

.emme-review-link span {
    font-size: 15px;
    line-height: 1;
}


/* No hover colour changes */

.emme-review-link:hover {
    background: var(--black);
    color: var(--white);
}


/* =========================================
   SWIPE DOTS (mobile only)
========================================= */

.fb-dots {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: -20px;
    padding-bottom: 30px;
}

.fb-dots .fb-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--line);
    transition: background .2s ease, transform .2s ease;
    flex-shrink: 0;
}

.fb-dots .fb-dot.active {
    background: var(--black);
    transform: scale(1.25);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .emme-facebook-reviews {
        gap: 12px;
        padding-left: 12px;
        padding-right: 12px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .emme-facebook-reviews {
        justify-content: flex-start;

        gap: 18px;

        padding: 5px 16px 20px;

        overflow-x: auto;
        overflow-y: visible;

        scroll-snap-type: x mandatory;

        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .emme-facebook-reviews::-webkit-scrollbar {
        display: none;
    }

    .emme-facebook-review {
        flex: 0 0 calc(100vw - 32px);

        scroll-snap-align: start;

        transition: none;
    }

    .emme-facebook-review:hover {
        transform: none;
    }

    .emme-facebook-content iframe {
        width: 100%;
    }

    .fb-dots {
        display: flex;
        margin-top: 0;
    }

}


#quote-form-message {
    margin-top: 18px;
    font-family: 'Work Sans', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

#quote-form-message.form-success {
    color: #3f6548;
}

#quote-form-message.form-error {
    color: #9b3f3f;
}

#quote-submit:disabled {
    opacity: .6;
    cursor: not-allowed;
}
    
    
 
/* =========================================
   FORM MESSAGES
========================================= */

.form-message {
    margin-bottom: 25px;
    padding: 16px 20px;

    font-family: 'Work Sans', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

.form-success {
    background: #f3f1ec;
    color: var(--black);
    border-left: 3px solid var(--black);
}

.form-error {
    background: #f7eeee;
    color: #5a2929;
    border-left: 3px solid #8b4545;
}


/* =========================================
   HONEYPOT
========================================= */

.form-honeypot {
    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    padding: 0 !important;
    margin: -1px !important;

    overflow: hidden !important;

    clip: rect(0, 0, 0, 0) !important;

    white-space: nowrap !important;

    border: 0 !important;
}




