/* ================= RESET & BASE ================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --brand: #ff5f00;
    --brand-2: #f79e18;
    --brand-dark: #d94f00;
    --ink: #20160f;
    --muted: #6b5f57;
    --dark: #1a130d;
    --dark-2: #241a12;
    --line: #ece3db;
    --bg: #ffffff;
    --bg-soft: #fbf6f1;
    --white: #ffffff;
    --shadow-sm: 0 4px 14px rgba(32, 22, 15, 0.08);
    --shadow-md: 0 14px 40px rgba(32, 22, 15, 0.12);
    --shadow-lg: 0 24px 60px rgba(32, 22, 15, 0.18);
    --radius: 14px;
    --nav-h: 108px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 160px;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-family: "Montserrat", sans-serif;
    line-height: 1.15;
    color: var(--ink);
    font-weight: 800;
}

.container {
    width: min(1180px, 92%);
    margin-inline: auto;
}

.ic {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

::selection {
    background: var(--brand);
    color: #fff;
}

/* ================= BUTTONS ================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 40px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease,
        background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    will-change: transform;
}

.btn--primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 10px 24px rgba(255, 95, 0, 0.3);
}

.btn--primary:hover {
    background: var(--brand-dark);
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(255, 95, 0, 0.4);
}

.btn--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

.btn--ghost:hover {
    background: #fff;
    color: var(--ink);
    transform: translateY(-3px);
}

.btn--white {
    background: #fff;
    color: var(--brand-dark);
}

.btn--white:hover {
    background: var(--ink);
    color: #fff;
    transform: translateY(-3px);
}

.btn--block {
    width: 100%;
}

/* ================= TOP BAR ================= */
.topbar {
    background: var(--dark);
    color: #d7c9bd;
    font-size: 0.82rem;
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 42px;
}

.topbar__contacts {
    display: flex;
    gap: 22px;
    align-items: center;
}

.topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #d7c9bd;
    transition: color 0.2s ease;
}

.topbar__item:hover {
    color: var(--brand-2);
}

.topbar__reg {
    color: #b6a494;
    letter-spacing: 0.03em;
}

/* ================= NAVBAR ================= */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand-logo {
    height: 92px;
    width: auto;
    transition: transform 0.3s ease;
}

.brand:hover .brand-logo {
    transform: scale(1.04);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav__links a {
    padding: 10px 16px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--ink);
    border-radius: 8px;
    position: relative;
    transition: color 0.2s ease;
}

.nav__links a::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 4px;
    height: 2px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s ease;
}

.nav__links a:hover {
    color: var(--brand);
}

.nav__links a.active {
    color: var(--brand);
}

.nav__links a.active::after {
    transform: scaleX(1);
}

.nav__links a.nav__cta {
    background: var(--brand);
    color: #fff;
    margin-left: 8px;
}

.nav__links a.nav__cta::after {
    display: none;
}

.nav__links a.nav__cta:hover {
    background: var(--brand-dark);
    color: #fff;
}

.nav__links a.nav__cta.active {
    background: var(--brand-dark);
    color: #fff;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle span {
    width: 26px;
    height: 3px;
    border-radius: 3px;
    background: var(--ink);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav__toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ================= HERO ================= */
.hero {
    position: relative;
    min-height: calc(100vh - 42px - var(--nav-h));
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}

.hero__slides,
.hero__overlay {
    position: absolute;
    inset: 0;
}

.hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.4s ease, transform 7s ease;
}

.hero__slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero__overlay {
    background: linear-gradient(
        105deg,
        rgba(26, 19, 13, 0.9) 0%,
        rgba(26, 19, 13, 0.72) 45%,
        rgba(26, 19, 13, 0.38) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 60px 0;
}

.hero__eyebrow {
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: var(--brand-2);
    padding-left: 46px;
    position: relative;
    margin-bottom: 18px;
}

.hero__eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 34px;
    height: 2px;
    background: var(--brand);
}

.hero__title {
    font-size: clamp(2.3rem, 5.4vw, 4rem);
    color: #fff;
    font-weight: 900;
    margin-bottom: 22px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.hero__title .hl {
    color: var(--brand-2);
}

.hero__sub {
    font-size: 1.08rem;
    max-width: 560px;
    color: #efe6dd;
    margin-bottom: 34px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__dots {
    position: absolute;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero__dots button {
    width: 32px;
    height: 4px;
    border-radius: 4px;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.3s ease, width 0.3s ease;
}

.hero__dots button.is-active {
    background: var(--brand);
    width: 48px;
}

/* ================= PAGE HERO (inner pages) ================= */
.page-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 92px 0;
    color: #fff;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(26, 19, 13, 0.9),
        rgba(217, 79, 0, 0.55)
    );
}

.page-hero__content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    color: #fff;
    font-size: clamp(2rem, 4.4vw, 3.2rem);
    margin-bottom: 10px;
}

.crumbs {
    display: flex;
    gap: 10px;
    align-items: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
}

.crumbs a {
    color: #f2e7dd;
    transition: color 0.2s ease;
}

.crumbs a:hover {
    color: var(--brand-2);
}

.crumbs span {
    color: rgba(255, 255, 255, 0.5);
}

.crumbs em {
    color: var(--brand-2);
    font-style: normal;
}

/* ================= SECTION HELPERS ================= */
.eyebrow {
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.76rem;
    color: var(--brand);
    margin-bottom: 14px;
}

.eyebrow--light {
    color: var(--brand-2);
}

.section__title {
    font-size: clamp(1.7rem, 3.4vw, 2.6rem);
    margin-bottom: 18px;
}

.section__title--light {
    color: #fff;
}

.section__head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 54px;
}

.section__lead {
    color: var(--muted);
    font-size: 1.05rem;
}

/* ================= STATS ================= */
.stats {
    background: var(--dark);
    padding: 46px 0;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat {
    text-align: center;
    color: #fff;
    padding: 12px;
    position: relative;
}

.stat:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -12px;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.stat__num {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 900;
    color: var(--brand-2);
    line-height: 1;
    margin-bottom: 8px;
}

.stat__label {
    font-size: 0.9rem;
    color: #d3c4b6;
    letter-spacing: 0.02em;
}

/* ================= ABOUT ================= */
.about {
    padding: 100px 0;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.about__media {
    position: relative;
}

.about__media img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.about__badge {
    position: absolute;
    right: -18px;
    bottom: -18px;
    background: var(--brand);
    color: #fff;
    width: 118px;
    height: 118px;
    border-radius: 18px;
    display: grid;
    place-content: center;
    text-align: center;
    box-shadow: var(--shadow-md);
    font-family: "Montserrat", sans-serif;
}

.about__badge strong {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    opacity: 0.85;
}

.about__badge span {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.about__text p {
    color: var(--muted);
    margin-bottom: 16px;
}

.about__list {
    margin: 24px 0 30px;
    display: grid;
    gap: 12px;
}

.about__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--ink);
}

.about__list .ic {
    color: var(--brand);
    background: rgba(255, 95, 0, 0.12);
    border-radius: 50%;
    padding: 4px;
    width: 26px;
    height: 26px;
}

/* ================= SERVICES (cards) ================= */
.services {
    padding: 100px 0;
    background: var(--bg-soft);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card__img {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-card__img img {
    transform: scale(1.08);
}

.service-card__icon {
    position: absolute;
    left: 22px;
    bottom: -26px;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--brand);
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.35s ease, background 0.35s ease;
}

.service-card:hover .service-card__icon {
    transform: translateY(-4px) rotate(-6deg);
    background: var(--brand-2);
}

.service-card__icon svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.service-card__body {
    padding: 40px 26px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card__body h3 {
    font-size: 1.35rem;
    margin-bottom: 14px;
}

.service-card__body p {
    color: var(--muted);
    font-size: 0.96rem;
    margin-bottom: 18px;
    flex: 1;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--brand);
    align-self: flex-start;
    transition: gap 0.25s ease, color 0.25s ease;
}

.link-arrow svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.link-arrow:hover {
    gap: 12px;
    color: var(--brand-dark);
}

/* ================= WHY CHOOSE US ================= */
.why {
    padding: 100px 0;
    background: linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 100%);
    position: relative;
    overflow: hidden;
}

.why::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 95, 0, 0.28), transparent 70%);
}

.why__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why__lead {
    color: #d6c7ba;
    margin-bottom: 34px;
}

.why__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 26px;
    margin-bottom: 34px;
}

.feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.feature__ic {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: grid;
    place-items: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.feature:hover .feature__ic {
    background: var(--brand);
    transform: translateY(-3px);
}

.feature__ic svg {
    width: 24px;
    height: 24px;
    fill: var(--brand-2);
    transition: fill 0.3s ease;
}

.feature:hover .feature__ic svg {
    fill: #fff;
}

.feature h4 {
    color: #fff;
    font-size: 1.02rem;
    margin-bottom: 4px;
}

.feature p {
    color: #bdae9f;
    font-size: 0.88rem;
    line-height: 1.5;
}

.why__media img {
    border-radius: var(--radius);
    height: 480px;
    width: 100%;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    border: 4px solid rgba(255, 255, 255, 0.08);
}

/* ================= VISION / MISSION / VALUES ================= */
.vmv {
    padding: 100px 0;
    background: var(--bg-soft);
}

.vmv__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.vmv__card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.vmv__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.vmv__ic {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(150deg, var(--brand), var(--brand-2));
    display: grid;
    place-items: center;
    margin-bottom: 22px;
}

.vmv__ic svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.vmv__card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.vmv__card p {
    color: var(--muted);
    font-size: 0.97rem;
}

/* ================= SERVICE DETAIL ROWS ================= */
.intro {
    padding: 90px 0 0;
}

.svc-detail {
    padding: 60px 0 100px;
}

.svc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    padding: 40px 0;
}

.svc-row + .svc-row {
    border-top: 1px solid var(--line);
}

.svc-row--rev .svc-row__media {
    order: 2;
}

.svc-row__media img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.svc-row__no {
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: 2.4rem;
    color: rgba(255, 95, 0, 0.22);
    line-height: 1;
    margin-bottom: 10px;
}

.svc-row__text h3 {
    font-size: 1.7rem;
    margin-bottom: 16px;
    color: var(--ink);
}

.svc-row__text p {
    color: var(--muted);
    margin-bottom: 14px;
}

/* ================= CTA BAND ================= */
.cta {
    padding: 70px 0;
    background: linear-gradient(120deg, var(--brand) 0%, var(--brand-2) 100%);
}

.cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cta__inner h2 {
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    margin-bottom: 6px;
}

.cta__inner p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 560px;
}

/* ================= TESTIMONIALS ================= */
.tst {
    padding: 100px 0;
    background: var(--bg);
}

.tst__viewport {
    overflow: hidden;
    max-width: 860px;
    margin: 0 auto;
}

.tst__track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.tst__card {
    min-width: 100%;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 48px 46px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.tst__quote {
    width: 56px;
    height: 56px;
    fill: rgba(255, 95, 0, 0.2);
    margin: 0 auto 10px;
}

.tst__card blockquote {
    font-size: 1.16rem;
    color: var(--ink);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 26px;
    font-style: italic;
}

.tst__card figcaption strong {
    display: block;
    font-family: "Montserrat", sans-serif;
    color: var(--ink);
    font-size: 1.02rem;
}

.tst__card figcaption span {
    color: var(--brand);
    font-size: 0.9rem;
    font-weight: 600;
}

.tst__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 34px;
}

.tst__nav button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s;
}

.tst__nav button:hover {
    background: var(--brand);
    border-color: var(--brand);
    transform: translateY(-2px);
}

.tst__nav button svg {
    width: 22px;
    height: 22px;
    fill: var(--ink);
    transition: fill 0.25s ease;
}

.tst__nav button:hover svg {
    fill: #fff;
}

.tst__dots {
    display: flex;
    gap: 9px;
}

.tst__dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 50%;
    border: none;
    background: #d8cabd;
    cursor: pointer;
    transition: background 0.25s ease, width 0.25s ease;
}

.tst__dots button.is-active {
    background: var(--brand);
    width: 26px;
    border-radius: 6px;
}

/* ================= CONTACT ================= */
.contact {
    padding: 100px 0;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.contact__info p {
    color: var(--muted);
    margin-bottom: 30px;
}

.contact__list {
    display: grid;
    gap: 22px;
}

.contact__list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact__ic {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(255, 95, 0, 0.12);
    display: grid;
    place-items: center;
}

.contact__ic svg {
    width: 24px;
    height: 24px;
    fill: var(--brand);
}

.contact__list strong {
    font-family: "Montserrat", sans-serif;
    color: var(--ink);
    display: block;
    margin-bottom: 2px;
}

.contact__list p {
    margin: 0;
    color: var(--muted);
}

.contact__list a:hover {
    color: var(--brand);
}

.contact__form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px;
    box-shadow: var(--shadow-md);
}

.field {
    margin-bottom: 18px;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field label {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--ink);
    margin-bottom: 7px;
}

.field input,
.field textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid var(--line);
    border-radius: 10px;
    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
    color: var(--ink);
    background: #fdfaf7;
    transition: border-color 0.2s ease, box-shadow 0.2s ease,
        background 0.2s ease;
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--brand);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 95, 0, 0.12);
}

.field textarea {
    resize: vertical;
}

.field input.invalid,
.field textarea.invalid {
    border-color: #e05b5b;
    box-shadow: 0 0 0 4px rgba(224, 91, 91, 0.12);
}

.form__note {
    margin-top: 14px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    min-height: 20px;
}

.form__note.ok {
    color: #1c9d6b;
}

.form__note.err {
    color: #e05b5b;
}

/* ================= MAP ================= */
.map {
    line-height: 0;
}

.map iframe {
    width: 100%;
    height: 420px;
    border: 0;
    filter: grayscale(0.1);
}

/* ================= FOOTER ================= */
.footer {
    background: var(--dark);
    color: #c2b3a4;
    padding-top: 66px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding-bottom: 46px;
}

.footer-logo {
    background: #fff;
    border-radius: 12px;
    padding: 12px 16px;
    display: inline-block;
    box-shadow: var(--shadow-sm);
}

.footer-logo img {
    height: 78px;
    width: auto;
}

.footer__brand p {
    margin-top: 18px;
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer__col h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer__col h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 2px;
    background: var(--brand);
}

.footer__col ul {
    display: grid;
    gap: 11px;
}

.footer__col a {
    color: #c2b3a4;
    font-size: 0.92rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer__col a:hover {
    color: var(--brand-2);
    padding-left: 5px;
}

.footer__contact li {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.85rem;
    color: #a08f7f;
}

/* ================= BACK TO TOP ================= */
.to-top {
    position: fixed;
    right: 26px;
    bottom: 26px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--brand);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.25s ease;
    z-index: 90;
}

.to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.to-top:hover {
    background: var(--brand-dark);
    transform: translateY(-4px);
}

.to-top svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

/* ================= WHATSAPP FLOAT ================= */
.wa-float {
    position: fixed;
    left: 26px;
    bottom: 26px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
    z-index: 95;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wa-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 32px rgba(37, 211, 102, 0.55);
}

.wa-float svg {
    width: 34px;
    height: 34px;
    fill: #fff;
    position: relative;
    z-index: 2;
}

.wa-float__pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25d366;
    z-index: 1;
    animation: waPulse 2.2s ease-out infinite;
}

@keyframes waPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.7);
        opacity: 0;
    }
    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

/* ================= REVEAL ANIMATION ================= */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .about__grid,
    .why__grid,
    .contact__grid,
    .svc-row {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .why__media {
        order: -1;
    }

    .svc-row--rev .svc-row__media {
        order: 0;
    }

    .services__grid,
    .vmv__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vmv__grid > .vmv__card:last-child {
        grid-column: 1 / -1;
    }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 12px;
    }

    .stat:nth-child(2)::after {
        display: none;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 820px) {
    .topbar__item--loc,
    .topbar__reg {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__links {
        position: fixed;
        top: calc(42px + var(--nav-h));
        right: 0;
        width: min(320px, 84%);
        height: calc(100vh - 42px - var(--nav-h));
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 24px 20px;
        box-shadow: -14px 0 40px rgba(32, 22, 15, 0.16);
        transform: translateX(100%);
        transition: transform 0.35s ease;
        overflow-y: auto;
    }

    .nav__links.open {
        transform: translateX(0);
    }

    .nav__links a {
        padding: 14px 16px;
        font-size: 1rem;
        border-bottom: 1px solid var(--line);
        border-radius: 0;
    }

    .nav__links a::after {
        display: none;
    }

    .nav__links a.nav__cta {
        margin: 12px 0 0;
        border-radius: 40px;
        text-align: center;
        border-bottom: none;
    }
}

@media (max-width: 620px) {
    .services__grid,
    .vmv__grid {
        grid-template-columns: 1fr;
    }

    .why__features {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr;
    }

    .field-row {
        grid-template-columns: 1fr;
    }

    .about,
    .services,
    .why,
    .vmv,
    .tst,
    .contact {
        padding: 70px 0;
    }

    .about__media img,
    .why__media img {
        height: 340px;
    }

    .cta__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .tst__card {
        padding: 36px 26px;
    }

    .tst__card blockquote {
        font-size: 1.02rem;
    }

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

    .brand-logo {
        height: 68px;
    }

    .topbar__contacts {
        gap: 14px;
    }
}
