@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --resale-ink: #211c18;
    --resale-smoke: #6f655c;
    --resale-sand: #bcb1a7;
    --resale-stone: #ddd4ca;
    --resale-ivory: #f6f1eb;
    --resale-card: rgba(255, 255, 255, 0.12);
    --resale-line: rgba(255, 255, 255, 0.22);
    --font-body: "Inter", sans-serif;
    --font-display: "Inter", sans-serif;
}

* {
    box-sizing: border-box;
    outline: none;
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    min-height: 100%;
    background: var(--resale-ivory);
    color: var(--resale-ink);
    font-family: var(--font-body);
    font-optical-sizing: auto;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img,
button,
iframe,
a {
    user-select: none;
}

.fadeIn {
    animation: fadeIn 1s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.myShadow {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

input:user-invalid {
    border: 1.5px solid rgba(255, 0, 0, 0.416);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease-out forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.04em;
    font-size: clamp(2.65rem, 5vw, 4.9rem);
    line-height: 1.04;
}

.heading-tight {
    line-height: 1.04;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 60;
    padding: 1rem 0;
}

.site-header__inner {
    width: min(100%, 88rem);
    margin: 0 auto;
    padding: 0 1rem;
}

.site-header__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 5.1rem;
    padding: 0.8rem 1rem 0.8rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(16, 13, 12, 0.14);
    backdrop-filter: blur(18px);
    box-shadow: 0 22px 54px rgba(10, 8, 7, 0.12);
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.site-header.is-scrolled .site-header__bar {
    border-color: rgba(188, 177, 167, 0.58);
    background: rgba(246, 241, 235, 0.9);
    box-shadow: 0 24px 54px rgba(10, 8, 7, 0.1);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
    text-decoration: none;
}

.site-brand__logo {
    width: 3.15rem;
    height: 3.15rem;
    flex: 0 0 auto;
    padding: 0.2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    object-fit: cover;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.site-header.is-scrolled .site-brand__logo {
    border-color: rgba(188, 177, 167, 0.5);
    background: rgba(255, 255, 255, 0.92);
}

.site-brand__copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.site-brand__name {
    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 400;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.site-brand__meta {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    transition: color 0.3s ease;
}

.site-header.is-scrolled .site-brand__name {
    color: var(--resale-ink);
}

.site-header.is-scrolled .site-brand__meta {
    color: var(--resale-smoke);
}

.site-nav {
    display: none;
}

.site-nav__list,
.site-mobile-nav__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.site-nav__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 0.76rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.site-nav__link::after {
    content: "";
    position: absolute;
    inset: auto 0 -0.45rem;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
    transform: scaleX(1);
}

.site-header.is-scrolled .site-nav__link {
    color: rgba(21, 19, 17, 0.84);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-call-btn {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 3.1rem;
    padding: 0.8rem 1.2rem;
    border-radius: 999px;
    background: #ffffff;
    color: var(--resale-ink);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.site-call-btn:hover {
    transform: translateY(-2px);
    background: #f0e7dd;
}

.site-header.is-scrolled .site-call-btn {
    background: var(--resale-ink);
    color: #ffffff;
}

.site-header.is-scrolled .site-call-btn:hover {
    background: #2a241f;
}

.site-menu-btn,
.site-mobile-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.site-menu-btn {
    flex-direction: column;
}

.site-menu-btn:hover,
.site-mobile-close:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.14);
}

.site-header.is-scrolled .site-menu-btn {
    border-color: rgba(188, 177, 167, 0.5);
    background: rgba(255, 255, 255, 0.74);
    color: var(--resale-ink);
}

.site-menu-btn span {
    display: block;
    width: 1rem;
    height: 1px;
    margin: 0.12rem 0;
    background: currentColor;
}

.site-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(16, 13, 12, 0.54);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.site-nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.site-mobile-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 81;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: min(90vw, 24rem);
    height: 100vh;
    overflow-y: auto;
    padding: 1.35rem 1.2rem 1.5rem;
    background: rgba(246, 241, 235, 0.98);
    box-shadow: -20px 0 60px rgba(10, 8, 7, 0.16);
    transform: translateX(100%);
    transition: transform 0.35s ease;
}

.site-mobile-panel.is-open {
    transform: translateX(0);
}

.site-mobile-panel__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.site-mobile-panel__eyebrow {
    margin: 0;
    color: var(--resale-smoke);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.site-mobile-panel__title {
    margin: 0.55rem 0 0;
    color: var(--resale-ink);
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.06;
}

.site-mobile-close {
    border-color: rgba(188, 177, 167, 0.48);
    background: #ffffff;
    color: var(--resale-ink);
}

.site-mobile-nav__list {
    display: grid;
    gap: 0.75rem;
}

.site-mobile-nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 3.6rem;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(188, 177, 167, 0.42);
    border-radius: 1.2rem;
    background: #ffffff;
    color: var(--resale-ink);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.site-mobile-nav__link:hover,
.site-mobile-nav__link.is-active {
    transform: translateY(-1px);
    border-color: var(--resale-sand);
    background: #fdfbf8;
}

.site-mobile-panel__meta {
    display: grid;
    gap: 0.75rem;
}

.site-mobile-meta-card {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem;
    border: 1px solid rgba(188, 177, 167, 0.35);
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.74);
    color: var(--resale-ink);
    text-decoration: none;
}

.site-mobile-meta-card__label {
    color: var(--resale-smoke);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.site-mobile-meta-card strong {
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.5;
}

.site-mobile-quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.7rem;
    padding: 0.95rem 1.25rem;
    border-radius: 999px;
    background: var(--resale-ink);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.site-mobile-quote-btn:hover {
    transform: translateY(-2px);
    background: #2a241f;
}

.site-footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(188, 177, 167, 0.18), transparent 24%),
        linear-gradient(180deg, #201b18 0%, #151311 100%);
    color: #f7f2ed;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 100%);
    background-size: 80px 80px;
    opacity: 0.28;
}

.site-footer__inner {
    position: relative;
    z-index: 1;
    width: min(100%, 88rem);
    margin: 0 auto;
    padding: 4.5rem 1rem 1.4rem;
}

.site-footer__top {
    display: grid;
    gap: 2rem;
    padding-bottom: 2.3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__intro {
    max-width: 46rem;
}

.site-footer__eyebrow {
    margin: 0;
    color: rgba(247, 242, 237, 0.6);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.site-footer__title {
    margin: 1rem 0 0;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3.35rem);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.site-footer__text {
    margin: 1rem 0 0;
    max-width: 40rem;
    color: rgba(247, 242, 237, 0.72);
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.8;
}

.site-footer__actions {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.site-footer__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    min-height: 3.7rem;
    padding: 0.95rem 1.35rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.site-footer__btn:hover {
    transform: translateY(-2px);
}

.site-footer__btn--light {
    background: #ffffff;
    color: var(--resale-ink);
}

.site-footer__btn--light:hover {
    background: #f0e7dd;
}

.site-footer__btn--dark {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.site-footer__btn--dark:hover {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.12);
}

.site-footer__grid {
    display: grid;
    gap: 2rem;
    padding: 2.5rem 0;
}

.site-footer__brand-block {
    display: grid;
    gap: 1.15rem;
}

.site-footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.site-footer__logo {
    width: 4.25rem;
    height: 4.25rem;
    flex: 0 0 auto;
    padding: 0.2rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.92);
    object-fit: cover;
}

.site-footer__brand-name {
    margin: 0;
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.site-footer__brand-copy {
    margin: 0.5rem 0 0;
    color: rgba(247, 242, 237, 0.7);
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.7;
}

.site-footer__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.site-footer__tags span {
    display: inline-flex;
    align-items: center;
    min-height: 2.15rem;
    padding: 0.45rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(247, 242, 237, 0.86);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-footer__list-title {
    margin: 0 0 1rem;
    color: rgba(247, 242, 237, 0.56);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.site-footer__list {
    display: grid;
    gap: 0.85rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__list a,
.site-footer__list span {
    color: rgba(247, 242, 237, 0.82);
    text-decoration: none;
    font-size: 0.94rem;
    font-weight: 300;
    line-height: 1.65;
    transition: color 0.3s ease;
}

.site-footer__list a:hover {
    color: #ffffff;
}

.site-footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__bottom p {
    margin: 0;
    color: rgba(247, 242, 237, 0.58);
    font-size: 0.86rem;
    line-height: 1.6;
}

.home-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 100svh;
    background:
        radial-gradient(circle at top right, rgba(246, 241, 235, 0.18), transparent 26%),
        linear-gradient(180deg, rgba(16, 13, 12, 0.16) 0%, rgba(16, 13, 12, 0.5) 100%),
        url("https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D") center/cover no-repeat;
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(90deg, rgba(16, 13, 12, 0.88) 0%, rgba(16, 13, 12, 0.56) 42%, rgba(16, 13, 12, 0.2) 100%);
}

.home-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 9rem;
    z-index: 0;
    background: linear-gradient(180deg, rgba(16, 13, 12, 0) 0%, rgba(16, 13, 12, 0.52) 100%);
    pointer-events: none;
}

.home-hero__content {
    position: relative;
    z-index: 1;
}

.home-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--resale-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.32em;
    text-transform: uppercase;
}

.home-hero__eyebrow-line {
    width: 2.5rem;
    height: 1px;
    background: rgba(255, 255, 255, 0.8);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 3.7rem;
    padding: 0.95rem 1.5rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-2px);
}

.hero-cta--primary {
    background: #ffffff;
    color: var(--resale-ink);
}

.hero-cta--primary:hover {
    background: #f0e7dd;
}

.hero-cta--secondary {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    backdrop-filter: blur(16px);
}

.hero-cta--secondary:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.12);
}

.home-hero__trust {
    display: grid;
    gap: 0.9rem;
}

.home-hero__trust-card {
    padding: 1rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 48px rgba(10, 8, 7, 0.14);
}

.home-hero__trust-label {
    display: inline-block;
    margin-bottom: 0.55rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.home-hero__trust-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.65;
}

.services-preview {
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(188, 177, 167, 0.16), transparent 26%),
        linear-gradient(180deg, #fbf7f2 0%, #f6f1eb 100%);
}

.services-preview__intro {
    margin-bottom: 2.5rem;
}

.services-preview__eyebrow {
    margin: 0;
    color: var(--resale-smoke);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.services-preview__title {
    margin: 0.8rem 0 0;
    color: var(--resale-ink);
    font-family: var(--font-display);
    font-size: clamp(2.05rem, 4vw, 3.35rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.services-preview__text {
    margin: 1rem 0 0;
    max-width: 36rem;
    color: rgba(21, 19, 17, 0.72);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.85;
}

.services-preview__grid {
    display: grid;
    gap: 1.25rem;
}

.services-card {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    min-height: 17rem;
    padding: 2rem 1.45rem;
    border: 1px solid rgba(188, 177, 167, 0.38);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 40px rgba(16, 13, 12, 0.04);
    transition: transform 0.35s ease, border-color 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease;
}

.services-card:hover {
    transform: translateY(-4px);
    border-color: rgba(188, 177, 167, 0.64);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 24px 52px rgba(16, 13, 12, 0.08);
}

.services-card__title {
    margin: 0;
    color: var(--resale-ink);
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2.6vw, 2rem);
    font-weight: 500;
    line-height: 1.12;
}

.services-card__text {
    margin: 0;
    max-width: 26rem;
    color: rgba(21, 19, 17, 0.68);
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.8;
}

.services-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: auto;
    color: var(--resale-ink);
    text-decoration: none;
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.services-card__link i {
    transition: transform 0.3s ease;
}

.services-card__link:hover i {
    transform: translateX(4px);
}

.services-preview__cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 1.9rem;
}

.services-preview__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    min-height: 3.8rem;
    padding: 0.95rem 1.5rem;
    border: 1px solid rgba(188, 177, 167, 0.56);
    background: transparent;
    color: var(--resale-ink);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.services-preview__cta:hover {
    transform: translateY(-2px);
    border-color: rgba(111, 101, 92, 0.5);
    background: rgba(255, 255, 255, 0.68);
}

.before-after-showcase {
    position: relative;
    background: #f2ebe2;
}

.before-after-showcase__intro {
    margin-bottom: 2.5rem;
}

.before-after-showcase__eyebrow {
    margin: 0;
    color: var(--resale-smoke);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.before-after-showcase__title {
    margin: 0.8rem 0 0;
    color: var(--resale-ink);
    font-family: var(--font-display);
    font-size: clamp(2.05rem, 4vw, 3.35rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.before-after-showcase__text {
    margin: 1rem 0 0;
    max-width: 38rem;
    color: rgba(21, 19, 17, 0.7);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.85;
}

.before-after-showcase__grid {
    display: grid;
    gap: 1.6rem;
}

.before-after-card {
    border: 1px solid rgba(188, 177, 167, 0.34);
    background: rgba(255, 255, 255, 0.62);
    box-shadow: 0 20px 48px rgba(16, 13, 12, 0.05);
    overflow: hidden;
}

.before-after-card__images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem;
    padding: 0.35rem;
    background: rgba(255, 255, 255, 0.7);
}

.before-after-card__figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: #ebe3d8;
}

.before-after-card__image {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1.14;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.before-after-card:hover .before-after-card__image {
    transform: scale(1.03);
}

.before-after-card__label {
    display: flex;
    justify-content: center;
    padding: 0.7rem 0.75rem 0.8rem;
    color: var(--resale-ink);
    background: rgba(255, 255, 255, 0.92);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.before-after-card__content {
    padding: 1.35rem 1.15rem 1.45rem;
}

.before-after-card__title {
    margin: 0;
    color: var(--resale-ink);
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 1.95rem);
    font-weight: 500;
    line-height: 1.12;
}

.before-after-card__text {
    margin: 0.8rem 0 0;
    color: rgba(21, 19, 17, 0.68);
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.8;
}

.why-choose-us {
    position: relative;
    background:
        radial-gradient(circle at bottom left, rgba(188, 177, 167, 0.14), transparent 28%),
        linear-gradient(180deg, #fcf8f3 0%, #f6f1eb 100%);
}

.why-choose-us__intro {
    margin-bottom: 2.4rem;
}

.why-choose-us__eyebrow {
    margin: 0;
    color: var(--resale-smoke);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.why-choose-us__title {
    margin: 0.8rem 0 0;
    color: var(--resale-ink);
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.why-choose-us__text {
    margin: 1rem auto 0;
    max-width: 40rem;
    color: rgba(21, 19, 17, 0.7);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.85;
}

.why-choose-us__grid {
    display: grid;
    gap: 1.2rem;
}

.why-choose-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.25rem;
    border: 1px solid rgba(188, 177, 167, 0.3);
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 18px 42px rgba(16, 13, 12, 0.04);
}

.why-choose-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.15rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    color: var(--resale-ink);
    font-size: 1.15rem;
    box-shadow: inset 0 0 0 1px rgba(188, 177, 167, 0.18);
}

.why-choose-card__title {
    margin: 0;
    color: var(--resale-ink);
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.4vw, 1.9rem);
    font-weight: 500;
    line-height: 1.12;
}

.why-choose-card__text {
    margin: 0.85rem 0 0;
    max-width: 18rem;
    color: rgba(21, 19, 17, 0.68);
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.8;
}

.final-cta {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 24%),
        linear-gradient(180deg, #231f1c 0%, #151311 100%);
    color: #f7f2ed;
}

.final-cta__inner {
    position: relative;
    z-index: 1;
}

.final-cta__content {
    max-width: 34rem;
    margin: 0 auto;
    text-align: center;
}

.final-cta__eyebrow {
    margin: 0;
    color: rgba(247, 242, 237, 0.58);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.final-cta__title {
    margin: 0.95rem 0 0;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: clamp(2.05rem, 4vw, 3.25rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.final-cta__text {
    margin: 1rem auto 0;
    max-width: 30rem;
    color: rgba(247, 242, 237, 0.72);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.85;
}

.final-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1.8rem;
}

.final-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 3.8rem;
    padding: 0.95rem 1.35rem;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.final-cta__btn:hover {
    transform: translateY(-2px);
}

.final-cta__btn--light {
    background: #ffffff;
    color: var(--resale-ink);
}

.final-cta__btn--light:hover {
    background: #f0e7dd;
}

.final-cta__btn--ghost {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #ffffff;
}

.final-cta__btn--ghost:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.home-faq {
    background: linear-gradient(180deg, #f3ece4 0%, #f6f1eb 100%);
}

.home-faq__grid {
    display: grid;
    gap: 2rem;
}

.home-faq__eyebrow {
    margin: 0;
    color: var(--resale-smoke);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.home-faq__title {
    margin: 0.85rem 0 0;
    color: var(--resale-ink);
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.home-faq__text {
    margin: 1rem 0 0;
    max-width: 34rem;
    color: rgba(21, 19, 17, 0.7);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.85;
}

.home-faq__list {
    display: grid;
    gap: 0.85rem;
}

.faq-item {
    border: 1px solid rgba(188, 177, 167, 0.34);
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 18px 42px rgba(16, 13, 12, 0.04);
}

.faq-item__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.25rem 1.2rem;
    border: 0;
    background: transparent;
    color: var(--resale-ink);
    cursor: pointer;
    text-align: left;
    font-family: var(--font-display);
    font-size: clamp(1.32rem, 2.15vw, 1.7rem);
    font-weight: 500;
    line-height: 1.2;
}

.faq-item__icon {
    flex: 0 0 auto;
    font-size: 1rem;
    transition: transform 0.35s ease;
}

.faq-item.is-open .faq-item__icon {
    transform: rotate(45deg);
}

.faq-item__content {
    height: 0;
    overflow: hidden;
    transition: height 0.38s ease;
}

.faq-item__content-inner {
    padding: 0 1.2rem 1.2rem;
}

.faq-item__content-inner p {
    margin: 0;
    max-width: 42rem;
    color: rgba(21, 19, 17, 0.68);
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.85;
}

.contact-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(246, 241, 235, 0.18), transparent 26%),
        linear-gradient(180deg, rgba(16, 13, 12, 0.15) 0%, rgba(16, 13, 12, 0.46) 100%),
        url("https://images.unsplash.com/photo-1560449752-3fd4bdbe7df0?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D") center/cover no-repeat;
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16, 13, 12, 0.88) 0%, rgba(16, 13, 12, 0.55) 42%, rgba(16, 13, 12, 0.18) 100%);
}

.contact-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1.5rem;
}

.contact-hero__content {
    max-width: 42rem;
}

.contact-hero__eyebrow {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.contact-hero__title {
    margin: 0.85rem 0 0;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: clamp(2.35rem, 4.8vw, 4.45rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.02;
}

.contact-hero__text {
    margin: 1rem 0 0;
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
}

.contact-hero__actions {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1.8rem;
}

.contact-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 3.8rem;
    padding: 0.95rem 1.4rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.contact-hero__btn:hover {
    transform: translateY(-2px);
}

.contact-hero__btn--light {
    background: #ffffff;
    color: var(--resale-ink);
}

.contact-hero__btn--light:hover {
    background: #f0e7dd;
}

.contact-hero__btn--ghost {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.contact-hero__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.36);
}

.contact-hero__panel {
    display: grid;
    gap: 0.85rem;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
}

.contact-hero__panel-item {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.contact-hero__panel-label {
    display: inline-block;
    margin-bottom: 0.4rem;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.contact-hero__panel-item a,
.contact-hero__panel-item p {
    margin: 0;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.7;
}

.contact-methods {
    background: linear-gradient(180deg, #f8f3ed 0%, #f6f1eb 100%);
}

.contact-methods__grid {
    display: grid;
    gap: 1.2rem;
}

.contact-method-card {
    display: flex;
    flex-direction: column;
    padding: 1.8rem 1.4rem;
    border: 1px solid rgba(188, 177, 167, 0.32);
    background: rgba(255, 255, 255, 0.6);
}

.contact-method-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.65rem;
    height: 3.65rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    color: var(--resale-ink);
    font-size: 1rem;
    box-shadow: inset 0 0 0 1px rgba(188, 177, 167, 0.16);
}

.contact-method-card__title {
    margin: 0;
    color: var(--resale-ink);
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2.7vw, 2rem);
    font-weight: 500;
    line-height: 1.12;
}

.contact-method-card__text {
    margin: 0.75rem 0 0;
    color: rgba(21, 19, 17, 0.68);
    font-size: 0.97rem;
    font-weight: 300;
    line-height: 1.8;
}

.contact-method-card__link {
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    color: var(--resale-ink);
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-method-card__link--static {
    cursor: default;
}

.contact-form-section {
    background: linear-gradient(180deg, #f6f1eb 0%, #f9f4ee 100%);
}

.contact-form-section__grid {
    display: grid;
    gap: 1.3rem;
}

.contact-form-wrap,
.contact-sidebar__card {
    border: 1px solid rgba(188, 177, 167, 0.32);
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 18px 42px rgba(16, 13, 12, 0.04);
}

.contact-form-wrap {
    padding: 1.5rem 1.25rem;
}

.contact-form-wrap__eyebrow,
.contact-sidebar__eyebrow {
    margin: 0;
    color: var(--resale-smoke);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.contact-form-wrap__title,
.contact-sidebar__title {
    margin: 0.75rem 0 0;
    color: var(--resale-ink);
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.4vw, 2.85rem);
    font-weight: 500;
    line-height: 1.08;
}

.contact-form-wrap__text {
    margin: 0.9rem 0 0;
    color: rgba(21, 19, 17, 0.7);
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.85;
}

.contact-form {
    margin-top: 1.6rem;
}

.contact-form__grid {
    display: grid;
    gap: 1rem;
}

.contact-form__field {
    display: grid;
    gap: 0.45rem;
    margin-bottom: 1rem;
}

.contact-form__field span {
    color: var(--resale-ink);
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
    width: 100%;
    padding: 1rem 1rem;
    border: 1px solid rgba(188, 177, 167, 0.42);
    background: rgba(255, 255, 255, 0.92);
    color: var(--resale-ink);
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.6;
    appearance: none;
}

.contact-form__field textarea {
    resize: vertical;
    min-height: 10rem;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
    border-color: rgba(111, 101, 92, 0.65);
}

.contact-form__botcheck {
    display: none;
}

.contact-form__footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.contact-form__note {
    margin: 0;
    color: rgba(21, 19, 17, 0.62);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
}

.contact-form__status {
    min-height: 1.35rem;
    margin: -0.25rem 0 0;
    color: #2f6c46;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.6;
}

.contact-form__status.is-error {
    color: #8c3d34;
}

.contact-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.8rem;
    padding: 0.95rem 1.4rem;
    border: 0;
    background: var(--resale-ink);
    color: #ffffff;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-form__submit:hover {
    transform: translateY(-2px);
    background: #2a241f;
}

.contact-form__submit:disabled {
    cursor: wait;
    opacity: 0.82;
    transform: none;
}

.contact-sidebar {
    display: grid;
    gap: 1.2rem;
}

.contact-sidebar__card {
    padding: 1.45rem 1.25rem;
}

.contact-sidebar__list {
    display: grid;
    gap: 1rem;
    margin-top: 1.3rem;
}

.contact-sidebar__item {
    padding-top: 1rem;
    border-top: 1px solid rgba(188, 177, 167, 0.28);
}

.contact-sidebar__item:first-child {
    padding-top: 0;
    border-top: 0;
}

.contact-sidebar__label {
    display: inline-block;
    margin-bottom: 0.4rem;
    color: var(--resale-smoke);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.contact-sidebar__item a,
.contact-sidebar__item p {
    margin: 0;
    color: var(--resale-ink);
    text-decoration: none;
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.75;
}

.contact-steps {
    display: grid;
    gap: 1rem;
    margin-top: 1.2rem;
}

.contact-steps__item {
    padding-top: 1rem;
    border-top: 1px solid rgba(188, 177, 167, 0.28);
}

.contact-steps__item:first-child {
    padding-top: 0;
    border-top: 0;
}

.contact-steps__item strong {
    display: block;
    color: var(--resale-ink);
    font-size: 0.84rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-steps__item p {
    margin: 0.5rem 0 0;
    color: rgba(21, 19, 17, 0.68);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.75;
}

.service-areas {
    background: linear-gradient(180deg, #f9f4ee 0%, #f6f1eb 100%);
}

.service-areas__panel {
    padding: 1.8rem 1.25rem;
    border: 1px solid rgba(188, 177, 167, 0.34);
    background: rgba(255, 255, 255, 0.62);
}

.service-areas__eyebrow {
    margin: 0;
    color: var(--resale-smoke);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.service-areas__title {
    margin: 0.8rem 0 0;
    color: var(--resale-ink);
    font-family: var(--font-display);
    font-size: clamp(1.95rem, 3.8vw, 3rem);
    font-weight: 500;
    line-height: 1.08;
}

.service-areas__text {
    margin: 0.9rem 0 0;
    max-width: 40rem;
    color: rgba(21, 19, 17, 0.68);
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.85;
}

.service-areas__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.4rem;
}

.service-areas__tags span {
    display: inline-flex;
    align-items: center;
    min-height: 2.2rem;
    padding: 0.45rem 0.8rem;
    border: 1px solid rgba(188, 177, 167, 0.42);
    background: rgba(255, 255, 255, 0.85);
    color: var(--resale-ink);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.thank-you-page {
    min-height: 100vh;
    background: linear-gradient(180deg, #f8f3ed 0%, #f2ebe2 100%);
}

.thank-you-page__wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-card {
    width: min(100%, 42rem);
    padding: 2.2rem 1.4rem;
    border: 1px solid rgba(188, 177, 167, 0.32);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 20px 48px rgba(16, 13, 12, 0.06);
    text-align: center;
}

.thank-you-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    margin-bottom: 1.25rem;
    border-radius: 999px;
    background: rgba(216, 240, 224, 0.96);
    color: #2f7a4d;
    font-size: 1.8rem;
}

.thank-you-card__eyebrow {
    margin: 0;
    color: var(--resale-smoke);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.26em;
    text-transform: uppercase;
}

.thank-you-card__title {
    margin: 0.9rem 0 0;
    color: var(--resale-ink);
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.08;
}

.thank-you-card__text {
    margin: 1rem auto 0;
    max-width: 30rem;
    color: rgba(21, 19, 17, 0.72);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.85;
}

.thank-you-card__actions {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1.6rem;
}

.thank-you-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.5rem;
    padding: 0.95rem 1.3rem;
    border: 1px solid rgba(188, 177, 167, 0.42);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.thank-you-card__btn:hover {
    transform: translateY(-2px);
}

.thank-you-card__btn--dark {
    background: var(--resale-ink);
    border-color: var(--resale-ink);
    color: #ffffff;
}

.thank-you-card__btn--dark:hover {
    background: #2a241f;
}

.thank-you-card__btn--ghost {
    background: transparent;
    color: var(--resale-ink);
}

.thank-you-card__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.8);
}

.services-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(246, 241, 235, 0.18), transparent 26%),
        linear-gradient(180deg, rgba(16, 13, 12, 0.16) 0%, rgba(16, 13, 12, 0.5) 100%),
        url("https://images.unsplash.com/photo-1560185127-6ed189bf02f4?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D") center/cover no-repeat;
}

.services-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16, 13, 12, 0.88) 0%, rgba(16, 13, 12, 0.56) 42%, rgba(16, 13, 12, 0.2) 100%);
}

.services-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1.5rem;
}

.services-hero__content {
    max-width: 42rem;
}

.services-hero__eyebrow,
.services-listing__eyebrow,
.services-process__eyebrow,
.services-cta__eyebrow {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.services-hero__eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.services-hero__title,
.services-listing__title,
.services-process__title,
.services-cta__title {
    margin: 0.85rem 0 0;
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.services-hero__title {
    color: #ffffff;
    font-size: clamp(2.35rem, 4.8vw, 4.45rem);
    font-weight: 700;
    line-height: 1.02;
}

.services-hero__text,
.services-listing__text,
.services-process__step p,
.services-cta__text {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.85;
}

.services-hero__text {
    margin: 1rem 0 0;
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.78);
}

.services-hero__actions,
.services-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1.8rem;
}

.services-hero__btn,
.services-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 3.8rem;
    padding: 0.95rem 1.4rem;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.services-hero__btn:hover,
.services-cta__btn:hover {
    transform: translateY(-2px);
}

.services-hero__btn--light,
.services-cta__btn--light {
    background: #ffffff;
    color: var(--resale-ink);
}

.services-hero__btn--light:hover,
.services-cta__btn--light:hover {
    background: #f0e7dd;
}

.services-hero__btn--ghost,
.services-cta__btn--ghost {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.services-hero__btn--ghost:hover,
.services-cta__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.36);
}

.services-hero__panel {
    display: grid;
    gap: 0.85rem;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
}

.services-hero__panel-item {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.services-hero__panel-label {
    display: inline-block;
    margin-bottom: 0.4rem;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.services-hero__panel-item p {
    margin: 0;
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.7;
}

.services-listing {
    background: linear-gradient(180deg, #f8f3ed 0%, #f6f1eb 100%);
}

.services-listing__intro {
    margin-bottom: 2.5rem;
}

.services-listing__eyebrow,
.services-process__eyebrow {
    color: var(--resale-smoke);
}

.services-listing__title,
.services-process__title {
    color: var(--resale-ink);
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.services-listing__text {
    margin: 1rem 0 0;
    max-width: 38rem;
    color: rgba(21, 19, 17, 0.7);
}

.services-listing__grid {
    display: grid;
    gap: 1.2rem;
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    padding: 1.9rem 1.45rem;
    border: 1px solid rgba(188, 177, 167, 0.34);
    background: rgba(255, 255, 255, 0.62);
    box-shadow: 0 18px 42px rgba(16, 13, 12, 0.04);
}

.service-detail-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.75rem;
    height: 3.75rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--resale-ink);
    font-size: 1rem;
    box-shadow: inset 0 0 0 1px rgba(188, 177, 167, 0.18);
}

.service-detail-card__title {
    margin: 0;
    color: var(--resale-ink);
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2.6vw, 1.95rem);
    font-weight: 500;
    line-height: 1.12;
}

.service-detail-card__text {
    margin: 0.8rem 0 0;
    color: rgba(21, 19, 17, 0.68);
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.8;
}

.services-process {
    background: transparent;
}

.services-process__panel {
    padding: 0;
    border: 0;
    background: transparent;
}

.services-process__steps {
    display: grid;
    gap: 1rem;
    margin-top: 1.6rem;
}

.services-process__step {
    padding: 1.15rem 0 0;
    border-top: 1px solid rgba(188, 177, 167, 0.28);
}

.services-process__step:first-child {
    padding-top: 0;
    border-top: 0;
}

.services-process__number {
    display: inline-block;
    margin-bottom: 0.55rem;
    color: var(--resale-smoke);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
}

.services-process__step h3 {
    margin: 0;
    color: var(--resale-ink);
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.4vw, 1.9rem);
    font-weight: 500;
    line-height: 1.12;
}

.services-process__step p {
    margin: 0.75rem 0 0;
    color: rgba(21, 19, 17, 0.68);
}

.services-cta {
    background: linear-gradient(180deg, #231f1c 0%, #181512 100%);
}

.services-cta__panel {
    position: relative;
    overflow: hidden;
    padding: 2.5rem 1.35rem;
    background: transparent;
    color: #f7f2ed;
    text-align: center;
}

.services-cta__content {
    max-width: 34rem;
    margin: 0 auto;
}

.services-cta__eyebrow {
    color: rgba(247, 242, 237, 0.58);
}

.services-cta__title {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.services-cta__text {
    margin: 1rem auto 0;
    max-width: 30rem;
    color: rgba(247, 242, 237, 0.72);
}

@media (min-width: 640px) {
    .home-hero__trust {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .services-card {
        padding: 2.2rem 2rem;
    }

    .before-after-card__content {
        padding: 1.6rem 1.5rem 1.7rem;
    }

    .why-choose-card {
        padding: 2.3rem 1.6rem;
    }

    .service-detail-card,
    .services-process__panel,
    .services-cta__panel,
    .faq-item__trigger,
    .faq-item__content-inner {
        padding-left: 1.7rem;
        padding-right: 1.7rem;
    }

    .services-hero__panel {
        padding: 1.4rem;
    }

    .contact-method-card,
    .contact-form-wrap,
    .contact-sidebar__card,
    .service-areas__panel {
        padding-left: 1.6rem;
        padding-right: 1.6rem;
    }

    .contact-hero__panel {
        padding: 1.4rem;
    }

    .contact-form__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer__actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (min-width: 1024px) {
    .site-header__inner {
        padding: 0 1.35rem;
    }

    .site-nav {
        display: block;
    }

    .site-call-btn {
        display: inline-flex;
    }

    .site-menu-btn {
        display: none;
    }

    .services-preview__intro {
        margin-bottom: 3.25rem;
    }

    .services-preview__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
    }

    .before-after-showcase__intro {
        margin-bottom: 3rem;
    }

    .before-after-showcase__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
    }

    .why-choose-us__intro {
        margin-bottom: 3rem;
    }

    .why-choose-us__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
    }

    .final-cta__actions {
        flex-direction: row;
        justify-content: center;
    }

    .final-cta__btn {
        min-width: 14rem;
    }

    .services-hero__grid {
        grid-template-columns: minmax(0, 1.3fr) minmax(19rem, 0.7fr);
        align-items: end;
        gap: 2rem;
    }

    .services-hero__actions,
    .services-cta__actions {
        flex-direction: row;
    }

    .home-faq__grid {
        grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
        align-items: start;
        gap: 2rem;
    }

    .services-listing__intro {
        margin-bottom: 3rem;
    }

    .services-listing__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
    }

    .services-process__steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
    }

    .services-process__step {
        padding-top: 0;
        padding-left: 1rem;
        border-top: 0;
        border-left: 1px solid rgba(188, 177, 167, 0.28);
    }

    .services-process__step:first-child {
        padding-left: 0;
        border-left: 0;
    }

    .services-cta__btn {
        min-width: 14rem;
    }

    .contact-hero__grid {
        grid-template-columns: minmax(0, 1.3fr) minmax(19rem, 0.7fr);
        align-items: end;
        gap: 2rem;
    }

    .contact-hero__actions {
        flex-direction: row;
    }

    .contact-methods__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
    }

    .contact-form-section__grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.8fr);
        gap: 1.5rem;
        align-items: start;
    }

    .site-footer__inner {
        padding: 5.2rem 1.35rem 1.6rem;
    }

    .site-footer__top {
        grid-template-columns: minmax(0, 1.3fr) auto;
        align-items: end;
    }

    .site-footer__actions {
        justify-content: flex-end;
    }

    .site-footer__grid {
        grid-template-columns: 1.4fr 0.8fr 0.8fr 0.9fr;
        gap: 2.2rem;
        align-items: start;
    }

    .site-footer__bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (max-width: 639px) {
    .home-hero {
        background-position: 62% center;
    }

    .home-hero__eyebrow {
        letter-spacing: 0.18em;
    }

    .site-brand__meta {
        display: none;
    }

    .site-brand__name {
        font-size: 0.67rem;
        letter-spacing: 0.18em;
    }

    .site-brand__logo {
        width: 2.8rem;
        height: 2.8rem;
    }

    .services-preview__intro {
        margin-bottom: 2rem;
    }

    .services-card {
        min-height: auto;
    }

    .before-after-showcase__intro {
        margin-bottom: 2rem;
    }

    .why-choose-us__intro {
        margin-bottom: 2rem;
    }
}
