:root,
body {
    font-synthesis-weight: none;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-400.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-700.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --ink: #161713;
    --ink-soft: #363832;
    --muted: #5f6057;
    --line: rgba(22, 23, 19, 0.14);
    --line-strong: rgba(22, 23, 19, 0.26);
    --paper: #f7f6f2;
    --paper-2: #efeee8;
    --white: #ffffff;
    --black: #070806;
    --accent: #8d1e2d;
    --accent-dark: #5f111d;
    --olive: #737865;
    --steel: #88918c;
    --shadow: 0 24px 80px rgba(10, 12, 10, 0.16);
    --radius: 8px;
    --container: min(100% - 48px, 1500px);
    --font: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--paper);
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: 0;
    overflow-x: hidden;
}

body.nav-locked {
    overflow: hidden;
}

body::selection {
    color: var(--white);
    background: var(--accent);
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

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

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

button {
    color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid rgba(177, 126, 64, 0.9);
    outline-offset: 3px;
}

main {
    min-height: 100vh;
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.page-shell {
    opacity: 0;
    animation: pageIn 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes pageIn {
    to {
        opacity: 1;
    }
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    transform: translateY(-150%);
    padding: 10px 14px;
    color: var(--white);
    background: var(--black);
    border-radius: var(--radius);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 80;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 82px;
    padding: 18px 28px;
    color: var(--white);
    transition: color 260ms ease, background 260ms ease, border-color 260ms ease, min-height 260ms ease;
}

.site-header.is-scrolled,
.site-header.on-light {
    color: var(--ink);
    background: rgba(247, 246, 242, 0.9);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
    min-height: 68px;
}

.brand {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.brand-logo-mark,
.brand-logo-text {
    display: block;
    flex: 0 0 auto;
}

.brand-logo-mark {
    width: 44px;
    height: 28px;
}

.brand-logo-text {
    width: 124px;
    height: 25px;
}

.brand-logo-mark img,
.brand-logo-text img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    filter: brightness(0) saturate(100%);
    transition: filter 260ms ease, opacity 260ms ease;
}

.site-header:not(.is-scrolled):not(.on-light) .brand-logo-mark img,
.site-header:not(.is-scrolled):not(.on-light) .brand-logo-text img {
    filter: brightness(0) invert(1);
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
}

.brand-word {
    display: none;
    gap: 1px;
}

.brand-word strong {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand-word span {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.78;
}

.header-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: clamp(16px, 2.2vw, 34px);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.header-nav a {
    position: relative;
    opacity: 0.86;
    transition: opacity 180ms ease;
}

.header-nav a:hover,
.header-nav a[aria-current="page"] {
    opacity: 1;
}

.header-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 240ms ease;
}

.header-nav a:hover::after,
.header-nav a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 650;
    letter-spacing: 0.06em;
}

.icon-button,
.menu-button {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid currentColor;
    border-radius: 999px;
    color: inherit;
    background: transparent;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.menu-button {
    display: inline-flex;
    width: auto;
    min-width: 94px;
    gap: 12px;
    padding: 0 16px 0 18px;
    border-color: rgba(247, 246, 242, 0.58);
    background: rgba(247, 246, 242, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
    backdrop-filter: blur(14px) saturate(120%);
}

.site-header.is-scrolled .menu-button,
.site-header.on-light .menu-button {
    border-color: rgba(22, 23, 19, 0.28);
    background: rgba(247, 246, 242, 0.68);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.menu-button-label {
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.icon-button:hover,
.menu-button:hover {
    transform: translateY(-1px);
    background: rgba(247, 246, 242, 0.22);
}

.site-header.is-scrolled .menu-button:hover,
.site-header.on-light .menu-button:hover {
    background: rgba(247, 246, 242, 0.82);
}

.menu-button-lines {
    position: relative;
    width: 18px;
    height: 12px;
}

.menu-button-lines::before,
.menu-button-lines::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 240ms ease, top 240ms ease;
}

.menu-button-lines::before {
    top: 2px;
}

.menu-button-lines::after {
    top: 10px;
}

body.menu-open .menu-button-lines::before {
    top: 6px;
    transform: rotate(42deg);
}

body.menu-open .menu-button-lines::after {
    top: 6px;
    transform: rotate(-42deg);
}

.menu-overlay,
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    color: var(--paper);
    background: rgba(7, 8, 6, 0.94);
    opacity: 0;
    pointer-events: none;
    transition: opacity 260ms ease;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
}

body.menu-open .menu-overlay,
body.search-open .search-overlay {
    opacity: 1;
    pointer-events: auto;
}

.menu-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
    gap: 8vw;
    align-items: start;
    width: min(100% - 56px, 1520px);
    margin-inline: auto;
    padding: 104px 0 48px;
}

.menu-links {
    display: grid;
    gap: 6px;
    counter-reset: menu;
}

.menu-links a {
    position: relative;
    display: grid;
    gap: 8px;
    padding: 12px 0 14px 52px;
    border-bottom: 1px solid rgba(247, 246, 242, 0.18);
    transition: border-color 200ms ease, padding-left 240ms ease;
}

.menu-links a::before {
    counter-increment: menu;
    content: "0" counter(menu);
    position: absolute;
    left: 0;
    top: 18px;
    color: rgba(247, 246, 242, 0.52);
    font-size: 12px;
    font-weight: 650;
}

.menu-links a:hover {
    padding-left: 72px;
    border-color: rgba(247, 246, 242, 0.46);
}

.menu-links strong {
    font-size: 42px;
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: 0;
}

.menu-brand-word {
    display: inline-flex;
    align-items: center;
    gap: 0.16em;
    vertical-align: 0.01em;
    white-space: nowrap;
}

.menu-brand-main {
    display: inline-block;
    font-weight: 300;
    letter-spacing: 1.2px;
    line-height: 1;
    text-transform: uppercase;
    transform: translateY(0.045em) scaleY(0.85);
    transform-origin: left center;
}

.menu-brand-sub {
    font-size: 0.72em;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    text-transform: lowercase;
    transform: translateY(0.08em);
}

.menu-links small {
    max-width: 700px;
    color: rgba(247, 246, 242, 0.68);
    font-size: 14px;
}

.menu-aside {
    align-self: stretch;
    display: grid;
    align-content: start;
    gap: 28px;
    padding-left: 40px;
    border-left: 1px solid rgba(247, 246, 242, 0.18);
}

.menu-aside h2 {
    max-width: 520px;
    margin: 0;
    font-size: 40px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
}

.menu-aside p {
    max-width: 460px;
    margin: 0;
    color: rgba(247, 246, 242, 0.7);
}

.menu-contact {
    display: grid;
    gap: 8px;
    color: rgba(247, 246, 242, 0.78);
    font-size: 14px;
}

.overlay-close {
    position: fixed;
    top: 22px;
    right: 28px;
    z-index: 95;
    min-width: 76px;
    min-height: 42px;
    border: 1px solid rgba(247, 246, 242, 0.72);
    border-radius: 999px;
    color: var(--paper);
    background: transparent;
    cursor: pointer;
}

.search-panel {
    width: min(100% - 48px, 1050px);
    margin: auto;
    padding: clamp(32px, 7vw, 80px) 0;
}

.search-panel h2 {
    max-width: 850px;
    margin: 0 0 34px;
    font-size: 92px;
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: 0;
}

.search-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 14px;
    align-items: end;
}

.field {
    display: grid;
    gap: 8px;
}

.field label,
.field span {
    color: rgba(247, 246, 242, 0.72);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.field input,
.field select,
.field textarea,
.form-grid input,
.form-grid select,
.form-grid textarea {
    width: 100%;
    min-height: 54px;
    padding: 14px 16px;
    color: inherit;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(247, 246, 242, 0.28);
    border-radius: var(--radius);
    outline: none;
}

.field textarea,
.form-grid textarea {
    resize: vertical;
    min-height: 130px;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
    border-color: currentColor;
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible,
.form-grid input:focus-visible,
.form-grid select:focus-visible,
.form-grid textarea:focus-visible {
    outline: 3px solid rgba(177, 126, 64, 0.9);
    outline-offset: 3px;
}

.search-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.search-quick a {
    padding: 9px 13px;
    border: 1px solid rgba(247, 246, 242, 0.26);
    border-radius: 999px;
    color: rgba(247, 246, 242, 0.72);
    font-size: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    color: var(--white);
    background: var(--ink);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

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

.btn.light {
    color: var(--ink);
    background: var(--paper);
    border-color: var(--paper);
}

.btn.outline {
    color: inherit;
    background: transparent;
    border-color: currentColor;
}

.btn.accent {
    color: var(--white);
    background: var(--accent);
    border-color: var(--accent);
}

.btn.full {
    width: 100%;
}

.text-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.text-link::after {
    content: "";
    width: 38px;
    height: 1px;
    background: currentColor;
    transition: width 200ms ease;
}

.text-link:hover::after {
    width: 56px;
}

.hero {
    position: relative;
    display: grid;
    align-items: end;
    min-height: 88svh;
    color: var(--white);
    overflow: hidden;
    background: var(--black);
}

.hero.media-hero {
    min-height: 76svh;
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    animation: slowZoom 10s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes slowZoom {
    to {
        transform: scale(1);
    }
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 5, 4, 0.78), rgba(4, 5, 4, 0.3) 45%, rgba(4, 5, 4, 0.1)),
        linear-gradient(0deg, rgba(4, 5, 4, 0.72), rgba(4, 5, 4, 0.08) 52%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: clamp(28px, 5vw, 64px);
    width: var(--container);
    margin-inline: auto;
    padding: 132px 0 clamp(42px, 8vh, 76px);
}

.hero-copy {
    max-width: 980px;
    min-width: 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: currentColor;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 1;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: currentColor;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 22px;
    font-size: 92px;
    font-weight: 500;
    line-height: 0.94;
    letter-spacing: 0;
    max-width: 100%;
    overflow-wrap: normal;
    hyphens: none;
}

.page-title {
    font-size: 76px;
}

.hero-copy p {
    max-width: 690px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
}

.mobile-break {
    display: none;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-meta div {
    display: grid;
    gap: 8px;
    padding: 20px 24px 0 0;
}

.hero-meta span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-meta strong {
    font-size: 24px;
    font-weight: 550;
}

.section {
    padding: clamp(64px, 7vw, 112px) 0;
}

.section.compact {
    padding: clamp(44px, 5vw, 78px) 0;
}

.section.dark {
    color: var(--paper);
    background: var(--ink);
}

.section.white {
    background: var(--white);
}

.section.rule-top {
    border-top: 1px solid var(--line);
}

.section-head {
    display: grid;
    grid-template-columns: 180px minmax(0, 780px);
    gap: clamp(36px, 5vw, 84px);
    align-items: start;
    margin-bottom: clamp(32px, 5vw, 58px);
}

.section-head > div {
    display: grid;
    gap: 20px;
}

.section-head h2 {
    margin-bottom: 0;
    font-size: 54px;
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: 0;
}

.section-head p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
}

.section.dark .section-head p,
.section.dark .muted,
.section.dark .editorial-text p {
    color: rgba(247, 246, 242, 0.68);
}

.intro-band {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.62fr);
    gap: clamp(34px, 6vw, 88px);
    align-items: start;
}

.intro-band h2 {
    margin-bottom: 0;
    font-size: 62px;
    font-weight: 500;
    line-height: 1.02;
}

.intro-band p {
    max-width: 620px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 18px;
}

.service-rail {
    display: grid;
    border-top: 1px solid var(--line);
}

.service-row {
    display: grid;
    grid-template-columns: 70px clamp(280px, 24vw, 390px) minmax(360px, 1fr) minmax(190px, 220px);
    gap: 30px;
    align-items: center;
    padding: clamp(26px, 2.6vw, 36px) 0;
    border-bottom: 1px solid var(--line);
}

.service-row .text-link {
    justify-self: end;
}

.service-row .num {
    color: var(--muted);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.14em;
}

.service-row h3 {
    margin: 0;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.02;
}

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

.story-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.8fr);
    gap: clamp(32px, 7vw, 110px);
    align-items: stretch;
}

.story-media {
    min-height: 560px;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--paper-2);
}

.story-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-copy {
    display: grid;
    align-content: center;
}

.story-copy h2 {
    margin-bottom: 24px;
    font-size: 52px;
    font-weight: 500;
    line-height: 1.02;
}

.story-copy p {
    color: var(--muted);
    font-size: 18px;
}

.services-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.8fr);
    gap: clamp(34px, 7vw, 110px);
    align-items: stretch;
}

.services-panel-media {
    min-height: 620px;
    overflow: hidden;
    border-radius: var(--radius);
    background: rgba(247, 246, 242, 0.08);
}

.services-panel-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-panel-copy {
    display: grid;
    align-content: center;
}

.services-panel-copy h2 {
    max-width: 640px;
    margin-bottom: 22px;
    font-size: 52px;
    font-weight: 500;
    line-height: 1.02;
}

.services-panel-copy > p:not(.eyebrow) {
    max-width: 680px;
    color: rgba(247, 246, 242, 0.68);
    font-size: 18px;
}

.service-principle-list {
    display: grid;
    margin-top: 34px;
    border-top: 1px solid rgba(247, 246, 242, 0.18);
}

.service-principle-list div {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(247, 246, 242, 0.18);
}

.service-principle-list span {
    color: var(--paper);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.service-principle-list p {
    margin: 0;
    color: rgba(247, 246, 242, 0.66);
}

.metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.metric {
    min-height: 190px;
    padding: 26px;
    background: var(--paper);
}

.metric strong {
    display: block;
    margin-bottom: 18px;
    font-size: 44px;
    font-weight: 500;
    line-height: 1;
}

.metric span {
    color: var(--muted);
}

.about-proof {
    display: grid;
    gap: 0;
    margin-top: 42px;
    border-top: 1px solid var(--line);
}

.about-proof div {
    display: grid;
    grid-template-columns: minmax(140px, 0.24fr) minmax(190px, 0.34fr) minmax(0, 1fr);
    grid-template-areas: "label value copy";
    gap: clamp(26px, 4vw, 56px);
    align-items: center;
    min-height: 118px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
}

.about-proof span {
    grid-area: label;
    color: var(--muted);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.2;
}

.about-proof strong {
    grid-area: value;
    font-size: 34px;
    font-weight: 500;
    line-height: 1.05;
}

.about-proof p {
    grid-area: copy;
    max-width: 560px;
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.5;
}

.editorial-split {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
    gap: clamp(32px, 8vw, 130px);
    align-items: start;
}

.editorial-title {
    position: sticky;
    top: 110px;
}

.editorial-title h2 {
    margin: 0;
    font-size: 56px;
    font-weight: 500;
    line-height: 1.02;
}

.editorial-text {
    display: grid;
    gap: 28px;
}

.editorial-text p {
    color: var(--muted);
    font-size: 19px;
}

.editorial-list {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--line);
}

.editorial-list div {
    display: grid;
    grid-template-columns: minmax(120px, 0.3fr) minmax(0, 1fr);
    gap: 28px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

.editorial-list strong {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.editorial-list span {
    color: var(--muted);
}

.section.dark .editorial-list span {
    color: rgba(247, 246, 242, 0.82);
}

.featured-property {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.7fr);
    gap: clamp(24px, 4vw, 54px);
    align-items: stretch;
}

.featured-media {
    min-height: 620px;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--paper-2);
}

.featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}

.featured-property:hover .featured-media img {
    transform: scale(1.035);
}

.featured-copy {
    display: grid;
    align-content: end;
    gap: 22px;
    padding: 38px;
    color: var(--paper);
    background: var(--ink);
    border-radius: var(--radius);
}

.featured-copy h3 {
    margin: 0;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.04;
}

.featured-copy p {
    margin: 0;
    color: rgba(247, 246, 242, 0.68);
}

.filters-panel {
    position: sticky;
    top: 84px;
    z-index: 40;
    padding: 16px 0;
    background: rgba(247, 246, 242, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.filters-bar {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 0.8fr auto;
    gap: 10px;
    align-items: end;
}

.filters-bar .field label,
.filters-bar .field span,
.contact-block .field label,
.contact-block .field span {
    color: var(--muted);
}

.filters-bar .field select,
.filters-bar .field input {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.66);
    border-color: var(--line);
}

.listing-section {
    display: grid;
    gap: 22px;
}

.listing-section + .listing-section {
    margin-top: clamp(58px, 7vw, 104px);
    padding-top: clamp(44px, 5vw, 72px);
    border-top: 1px solid var(--line);
}

.listing-section-head {
    margin-bottom: 4px;
}

.listing-section-head h2 {
    margin-bottom: 8px;
}

.listing-section[hidden] {
    display: none;
}

.listing-status {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 13px;
}

.imoveis-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 28px);
}

.archive-reveal {
    position: relative;
    max-height: none;
    overflow: visible;
    transition: max-height 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.archive-reveal.is-collapsed,
.archive-reveal.is-expanded {
    overflow: hidden;
}

.archive-reveal.is-collapsed {
    max-height: var(--archive-collapsed-height, 640px);
}

.archive-reveal.is-expanded {
    max-height: var(--archive-expanded-height, 3200px);
}

.archive-reveal::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: min(180px, 38%);
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--white) 78%);
    opacity: 0;
    transition: opacity 320ms ease;
}

.archive-reveal.is-collapsed::after {
    opacity: 1;
}

.archive-actions {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

.archive-actions[hidden] {
    display: none;
}

.archive-toggle {
    min-width: 148px;
    background: var(--white);
}

.property-card {
    display: grid;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transform: translateY(16px);
    opacity: 0;
    transition: opacity 520ms ease, transform 520ms ease, box-shadow 220ms ease;
}

.property-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.property-card:hover {
    box-shadow: var(--shadow);
}

.property-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--paper-2);
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 520ms ease;
}

.property-card:hover .property-image img {
    transform: scale(1.04);
}

.property-badge {
    position: absolute;
    left: 14px;
    top: 14px;
    padding: 7px 10px;
    color: var(--ink);
    background: rgba(247, 246, 242, 0.9);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.property-card.is-unavailable .property-image img {
    filter: saturate(0.72) contrast(0.95);
}

.property-card.has-placeholder-image .property-image img {
    object-fit: cover;
    filter: none;
}

.property-badge.is-unavailable {
    color: var(--paper);
    background: rgba(22, 23, 19, 0.86);
}

.property-content {
    display: grid;
    gap: 12px;
    padding: 22px;
}

.property-content h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 550;
    line-height: 1.08;
}

.property-location,
.property-type {
    color: var(--muted);
    font-size: 13px;
}

.property-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.property-specs span {
    padding: 7px 10px;
    color: var(--ink-soft);
    background: var(--paper);
    border-radius: 999px;
    font-size: 12px;
}

.property-price {
    margin: 4px 0 0;
    font-size: 18px;
    font-weight: 700;
}

.empty-state,
.loading-state {
    grid-column: 1 / -1;
    display: grid;
    place-items: center;
    min-height: 260px;
    padding: 48px;
    color: var(--muted);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-align: center;
}

.detail-hero {
    min-height: 100svh;
    padding-top: 92px;
    color: var(--white);
    background: var(--black);
}

.gallery-stage {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.58fr);
    gap: 12px;
    min-height: calc(100svh - 92px);
    padding: 0 12px 12px;
}

.gallery-main,
.gallery-side-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: #23241f;
    cursor: pointer;
}

.gallery-main img,
.gallery-side-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
}

.gallery-overlay {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: end;
    padding: clamp(28px, 5vw, 70px);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0));
}

.detail-title-block h1 {
    max-width: 1000px;
    margin-bottom: 18px;
    font-size: clamp(42px, 4.8vw, 66px);
}

.detail-title-block p {
    color: rgba(255, 255, 255, 0.78);
}

.detail-price {
    margin: 0;
    white-space: nowrap;
    font-size: 34px;
    font-weight: 600;
}

.gallery-all {
    position: absolute;
    right: 28px;
    bottom: 28px;
    z-index: 4;
}

.detail-nav {
    position: sticky;
    top: 68px;
    z-index: 35;
    background: rgba(247, 246, 242, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.detail-nav .container {
    display: flex;
    gap: 24px;
    align-items: center;
    min-height: 54px;
    overflow-x: auto;
    scrollbar-width: none;
}

.detail-nav a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 54px;
    padding: 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
    text-transform: uppercase;
}

.detail-nav .detail-nav-back {
    min-height: 34px;
    padding: 0 14px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid rgba(22, 23, 19, 0.14);
    border-radius: 999px;
}

.detail-nav a:hover {
    color: var(--ink);
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.38fr);
    gap: clamp(34px, 6vw, 92px);
    align-items: start;
}

.detail-main {
    min-width: 0;
}

.detail-kicker {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.pill {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 10px;
    color: var(--ink-soft);
    background: var(--paper-2);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pill.is-unavailable {
    color: #1d1208;
    background: #f2c98c;
}

.mobile-action-bar {
    display: none;
}

.detail-specs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin-bottom: clamp(44px, 7vw, 88px);
    overflow: hidden;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.spec-item {
    min-height: 130px;
    padding: 22px;
    background: var(--paper);
}

.spec-item strong {
    display: block;
    margin-bottom: 10px;
    font-size: 34px;
    font-weight: 500;
}

.spec-item span {
    color: var(--muted);
    font-size: 13px;
}

.detail-section {
    padding: clamp(44px, 7vw, 90px) 0;
    border-top: 1px solid var(--line);
}

.detail-section h2 {
    margin-bottom: 24px;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.06;
}

.description-copy p {
    max-width: 900px;
    color: var(--ink-soft);
    font-size: 19px;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 28px;
    overflow: hidden;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.highlight-item {
    padding: 20px;
    background: var(--white);
}

.highlight-item span {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.highlight-item strong {
    font-size: 18px;
}

.features-groups {
    display: grid;
    gap: 28px;
}

.feature-group {
    display: grid;
    grid-template-columns: minmax(160px, 0.32fr) minmax(0, 1fr);
    gap: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.feature-group h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.feature-item {
    padding: 14px 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink-soft);
}

.contact-block {
    position: sticky;
    top: 132px;
    display: grid;
    gap: 28px;
    padding: clamp(30px, 4vw, 46px);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.36)),
        var(--paper);
    border: 1px solid rgba(22, 23, 19, 0.1);
    border-radius: var(--radius);
    box-shadow: 0 26px 70px rgba(10, 12, 10, 0.07);
}

.contact-block h3 {
    margin: 0;
    font-size: 34px;
    font-weight: 560;
    line-height: 1.04;
}

.contact-block p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
}

.form-grid .field:nth-last-of-type(2),
.form-grid .field:last-of-type,
.form-grid .btn,
.form-grid .form-message {
    grid-column: 1 / -1;
}

.contact-block .field {
    gap: 7px;
}

.contact-block .field label {
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.contact-block input,
.contact-block select,
.contact-block textarea {
    min-height: 54px;
    padding: 12px 0;
    color: var(--ink);
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(22, 23, 19, 0.22);
    border-radius: 0;
    transition: border-color 180ms ease, background 180ms ease;
}

.contact-block textarea {
    min-height: 150px;
    padding-top: 14px;
}

.contact-block input:focus,
.contact-block select:focus,
.contact-block textarea:focus {
    background: rgba(255, 255, 255, 0.28);
    border-color: var(--ink);
    outline: 0;
}

.contact-block input:focus-visible,
.contact-block select:focus-visible,
.contact-block textarea:focus-visible {
    outline: 3px solid rgba(177, 126, 64, 0.9);
    outline-offset: 3px;
}

.contact-block .btn.full {
    margin-top: 6px;
    min-height: 56px;
    color: var(--paper);
    background: var(--ink);
    border-color: var(--ink);
}

.detail-contact-card {
    gap: 22px;
    padding: clamp(28px, 3.2vw, 38px);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.62)),
        var(--paper);
    border-color: rgba(22, 23, 19, 0.14);
    box-shadow: 0 30px 82px rgba(10, 12, 10, 0.08);
}

.detail-contact-card h3 {
    max-width: 320px;
    font-size: clamp(28px, 2.3vw, 36px);
}

.detail-contact-card p {
    font-size: 16px;
}

.detail-contact-form {
    grid-template-columns: 1fr;
    gap: 16px;
}

.detail-contact-form .field,
.detail-contact-form .btn,
.detail-contact-form .form-message {
    grid-column: 1 / -1;
}

.detail-contact-card .field {
    gap: 8px;
}

.detail-contact-card input,
.detail-contact-card textarea {
    min-height: 52px;
    padding: 13px 15px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(22, 23, 19, 0.16);
    border-radius: 6px;
}

.detail-contact-card textarea {
    min-height: 126px;
    resize: vertical;
}

.detail-contact-card input:focus,
.detail-contact-card textarea:focus {
    background: rgba(255, 255, 255, 0.94);
    border-color: var(--ink);
}

.detail-contact-card input:focus-visible,
.detail-contact-card textarea:focus-visible {
    outline: 3px solid rgba(177, 126, 64, 0.9);
    outline-offset: 3px;
}

.detail-contact-card .privacy-note {
    font-size: 12px;
    line-height: 1.55;
}

.detail-contact-card .direct-contact {
    gap: 8px;
    padding: 16px;
    background: rgba(22, 23, 19, 0.04);
    border: 1px solid rgba(22, 23, 19, 0.08);
    border-radius: 6px;
}

.form-message {
    padding: 12px 14px;
    border-radius: var(--radius);
    font-size: 13px;
}

.form-message.success {
    color: #1f5b37;
    background: #e7f3eb;
}

.form-message.error {
    color: #7b1d24;
    background: #f8e8e8;
}

.privacy-note {
    color: var(--muted);
    font-size: 12px;
}

.direct-contact {
    display: grid;
    gap: 6px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    font-size: 14px;
}

.map-frame {
    min-height: 460px;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--paper-2);
}

.map-frame iframe {
    width: 100%;
    height: 460px;
    border: 0;
}

.map-actions {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 18px;
    color: var(--muted);
    font-size: 13px;
    background: var(--paper);
    border-top: 1px solid var(--line);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    grid-template-rows: auto 1fr;
    color: var(--paper);
    background: rgba(5, 6, 5, 0.96);
}

.lightbox[hidden] {
    display: none;
}

.lightbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(247, 246, 242, 0.16);
}

.lightbox-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.lightbox-close {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(247, 246, 242, 0.4);
    border-radius: 999px;
    color: var(--paper);
    background: transparent;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
}

.lightbox-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    overflow: auto;
    padding: 12px;
}

.lightbox-grid[hidden] {
    display: none;
}

.lightbox-thumb {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.lightbox-grid img {
    width: 100%;
    height: auto;
    min-height: 320px;
    object-fit: cover;
    border-radius: var(--radius);
    cursor: pointer;
}

.lightbox-viewer {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 0;
    padding: 18px clamp(58px, 8vw, 104px);
}

.lightbox-viewer[hidden] {
    display: none;
}

.lightbox-viewer img {
    width: auto;
    max-width: 100%;
    max-height: calc(100svh - 126px);
    object-fit: contain;
}

.lb-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(247, 246, 242, 0.36);
    border-radius: 999px;
    color: var(--paper);
    background: rgba(7, 8, 6, 0.42);
    cursor: pointer;
    transform: translateY(-50%);
    font-size: 34px;
}

.lb-prev {
    left: 22px;
}

.lb-next {
    right: 22px;
}

.cta-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
    padding: clamp(34px, 6vw, 70px);
    color: var(--paper);
    background: var(--ink);
    border-radius: var(--radius);
}

.cta-band h2 {
    max-width: 880px;
    margin-bottom: 16px;
    font-size: 44px;
    font-weight: 500;
    line-height: 1.04;
}

.cta-band p {
    max-width: 720px;
    margin-bottom: 0;
    color: rgba(247, 246, 242, 0.66);
}

.site-footer {
    color: var(--paper);
    background: var(--black);
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(360px, 1.22fr) repeat(3, minmax(170px, 0.34fr));
    gap: clamp(34px, 5.5vw, 96px);
    padding: clamp(76px, 8vw, 104px) 0 60px;
    align-items: start;
}

.footer-brand h2 {
    margin: 0 0 16px;
    font-size: clamp(34px, 3.1vw, 48px);
    font-weight: 500;
    line-height: 1.02;
}

.footer-brand {
    max-width: 650px;
    padding-top: 26px;
    border-top: 1px solid rgba(247, 246, 242, 0.18);
}

.footer-logo-text {
    display: flex;
    align-items: baseline;
    gap: 0.24em;
}

.footer-logo-main {
    display: inline-block;
    font-family: var(--font);
    font-weight: 300;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transform: scaleY(0.85);
    transform-origin: left center;
}

.footer-logo-sub {
    font-family: var(--font);
    font-size: 0.72em;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: lowercase;
}

.footer-brand p,
.footer-col p,
.footer-col a,
.footer-bottom {
    color: rgba(247, 246, 242, 0.66);
}

.footer-brand p {
    max-width: 560px;
    margin: 0;
    line-height: 1.55;
}

.footer-col {
    display: grid;
    align-content: start;
    gap: 11px;
    min-height: 246px;
    padding-top: 24px;
    border-top: 1px solid rgba(247, 246, 242, 0.18);
}

.footer-col h3 {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 13px;
    color: var(--paper);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-col h3::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(247, 246, 242, 0.2);
}

.footer-col h3 a {
    color: var(--paper);
}

.footer-col a,
.footer-col p {
    font-size: 15px;
    line-height: 1.45;
}

.footer-col p {
    margin: 4px 0 0;
}

.footer-col a:hover {
    color: var(--paper);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 0 30px;
    border-top: 1px solid rgba(247, 246, 242, 0.16);
    font-size: 12px;
}

.two-col {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
    gap: clamp(36px, 6vw, 86px);
    align-items: start;
}

.prose {
    max-width: 860px;
}

.prose h2 {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.08;
}

.prose h3 {
    margin-top: 34px;
    font-size: 24px;
}

.prose p,
.prose li {
    color: var(--ink-soft);
    font-size: 17px;
}

.prose ul {
    display: grid;
    gap: 10px;
    padding-left: 20px;
}

.process-list {
    display: grid;
    gap: 0;
    grid-auto-rows: minmax(112px, 1fr);
    border-top: 1px solid var(--line);
}

.process-list > div {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.process-list > div > div {
    display: grid;
    grid-template-columns: minmax(230px, 0.42fr) minmax(260px, 1fr);
    gap: 24px;
    align-items: center;
}

.process-list span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.12em;
    padding-top: 7px;
}

.process-list h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 560;
    line-height: 1.12;
}

.process-list p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(340px, 0.55fr);
    gap: clamp(28px, 6vw, 86px);
    align-items: start;
    min-width: 0;
}

.contact-panel {
    position: sticky;
    top: 132px;
    display: grid;
    gap: 30px;
    padding: clamp(30px, 4vw, 48px);
    color: var(--paper);
    background:
        linear-gradient(160deg, rgba(141, 30, 45, 0.22), rgba(141, 30, 45, 0) 34%),
        var(--ink);
    border-radius: var(--radius);
    box-shadow: 0 28px 70px rgba(10, 12, 10, 0.18);
    min-width: 0;
}

.contact-panel .eyebrow {
    margin-bottom: 20px;
}

.contact-panel-head h2 {
    max-width: 520px;
    margin-bottom: 18px;
    font-size: 38px;
    font-weight: 500;
    line-height: 1.04;
}

.contact-panel-head p,
.contact-actions small,
.contact-guidance p {
    color: rgba(247, 246, 242, 0.68);
}

.contact-actions {
    display: grid;
    border-top: 1px solid rgba(247, 246, 242, 0.18);
}

.contact-actions a {
    display: grid;
    gap: 9px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(247, 246, 242, 0.18);
    min-width: 0;
}

.contact-actions span,
.contact-guidance span {
    color: rgba(247, 246, 242, 0.62);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.contact-actions strong {
    color: var(--paper);
    font-size: 28px;
    font-weight: 560;
    line-height: 1.05;
    overflow-wrap: anywhere;
}

.contact-actions small {
    max-width: 460px;
    font-size: 14px;
    line-height: 1.5;
}

.contact-guidance {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: rgba(247, 246, 242, 0.16);
    border: 1px solid rgba(247, 246, 242, 0.16);
}

.contact-guidance div {
    display: grid;
    gap: 10px;
    padding: 18px;
    background: rgba(247, 246, 242, 0.045);
}

.contact-guidance p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
    }
}

@media (max-width: 1180px) {
    .header-nav {
        display: none;
    }

    .site-header {
        grid-template-columns: 1fr auto;
    }

    .header-actions {
        grid-column: 2;
    }

    .menu-panel,
    .intro-band,
    .story-grid,
    .featured-property,
    .services-panel,
    .detail-layout,
    .contact-grid,
    .two-col {
        grid-template-columns: 1fr;
    }

    .menu-aside {
        padding-left: 0;
        border-left: 0;
    }

    .filters-bar,
    .imoveis-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-row {
        grid-template-columns: 58px minmax(180px, 0.42fr) minmax(0, 1fr);
    }

    .service-row .text-link {
        grid-column: 3;
        justify-self: start;
    }

    .filters-bar .btn {
        grid-column: 1 / -1;
    }

    .detail-specs,
    .highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-block {
        position: static;
    }

    .contact-panel {
        position: static;
    }
}

@media (max-width: 780px) {
    :root {
        --container: min(100% - 28px, 1500px);
    }

    .site-header {
        min-height: 70px;
        padding: 14px;
    }

    .menu-overlay,
    .search-overlay {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .menu-panel {
        width: min(100% - 28px, 1520px);
        max-width: calc(100vw - 28px);
        gap: 28px;
        padding: 86px 0 max(34px, env(safe-area-inset-bottom));
        overflow-x: clip;
    }

    .menu-links,
    .menu-aside {
        min-width: 0;
        max-width: 100%;
    }

    .menu-links a {
        max-width: 100%;
        padding-left: 40px;
        overflow-wrap: anywhere;
    }

    .menu-links a:hover {
        padding-left: 40px;
    }

    .menu-links strong,
    .menu-links small,
    .menu-aside h2,
    .menu-aside p,
    .menu-contact a {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .menu-brand-word {
        white-space: normal;
    }

    .brand-logo-text,
    .brand-word {
        display: none;
    }

    .header-phone {
        display: none;
    }

    .hero {
        min-height: 88svh;
    }

    .hero-inner {
        padding-top: 104px;
        padding-bottom: 32px;
    }

    .hero-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 0;
    }

    .hero-meta div {
        padding-top: 16px;
    }

    h1,
    .page-title {
        font-size: 36px;
        line-height: 1;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .hero-copy p {
        font-size: 16px;
    }

    .menu-links strong,
    .search-panel h2,
    .section-head h2,
    .intro-band h2,
    .story-copy h2,
    .editorial-title h2,
    .detail-title-block h1,
    .cta-band h2,
    .footer-brand h2 {
        font-size: 32px;
        line-height: 1.04;
    }

    .menu-links strong {
        font-weight: 500;
    }

    .featured-copy h3,
    .detail-section h2,
    .service-row h3,
    .prose h2 {
        font-size: 30px;
    }

    .hero-meta strong,
    .metric strong,
    .spec-item strong,
    .detail-price {
        font-size: 24px;
    }

    .section {
        padding: 58px 0;
    }

    .section-head,
    .editorial-split,
    .service-row,
    .cta-band,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .editorial-title {
        position: static;
    }

    .service-row {
        gap: 14px;
    }

    .service-row .text-link {
        grid-column: auto;
        justify-self: start;
    }

    .process-list > div {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 22px 0;
    }

    .process-list {
        grid-auto-rows: auto;
    }

    .process-list > div > div {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .process-list span {
        padding-top: 0;
    }

    .metrics,
    .about-proof div,
    .service-principle-list div,
    .contact-guidance,
    .form-grid,
    .filters-bar,
    .imoveis-grid,
    .feature-group,
    .feature-grid,
    .gallery-stage,
    .search-form,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .about-proof div {
        grid-template-areas:
            "label"
            "value"
            "copy";
        min-height: 0;
        gap: 9px;
        padding: 24px 0;
    }

    .about-proof p {
        align-self: start;
    }

    .contact-actions strong {
        font-size: 22px;
    }

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

    .story-media,
    .services-panel-media,
    .featured-media {
        min-height: 360px;
    }

    .featured-copy {
        padding: 24px;
    }

    .filters-panel {
        position: relative;
        top: auto;
    }

    .footer-inner {
        gap: 28px;
        padding: 58px 0 34px;
    }

    .footer-brand,
    .footer-col {
        min-height: 0;
        padding-top: 22px;
    }

    .footer-bottom {
        flex-direction: column;
        padding-bottom: 24px;
    }

    .detail-hero {
        padding-top: 72px;
    }

    .gallery-stage {
        min-height: auto;
        padding: 0 8px 8px;
    }

    .gallery-main {
        min-height: 62svh;
    }

    .gallery-side {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-side-item {
        aspect-ratio: 1 / 1;
    }

    .gallery-overlay {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .detail-price {
        white-space: normal;
    }

    .detail-specs,
    .highlights,
    .lightbox-grid {
        grid-template-columns: 1fr;
    }

    .lightbox-viewer {
        padding-inline: 18px;
    }

    .lb-arrow {
        width: 42px;
        height: 42px;
        top: auto;
        bottom: 24px;
        transform: none;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

/* Camada mobile refinada: não altera desktop. */
@media (max-width: 780px) {
    :root {
        --container: min(100% - 32px, 1500px);
    }

    body {
        background: var(--paper);
        padding-bottom: 86px;
        scroll-padding-top: 122px;
    }

    .site-header {
        min-height: 66px;
        padding: 12px 14px;
    }

    .brand-logo-mark {
        width: 48px;
    }

    .menu-button {
        min-width: 92px;
        height: 44px;
        padding-inline: 16px;
    }

    .hero {
        min-height: 90svh;
        align-items: end;
    }

    .hero.media-hero {
        min-height: 72svh;
    }

    .hero::after {
        background:
            linear-gradient(90deg, rgba(4, 5, 4, 0.88), rgba(4, 5, 4, 0.52) 68%, rgba(4, 5, 4, 0.24)),
            linear-gradient(0deg, rgba(4, 5, 4, 0.92), rgba(4, 5, 4, 0.36) 58%, rgba(4, 5, 4, 0.44));
    }

    .hero-media img {
        transform: none;
        animation: none;
        filter: brightness(0.76) contrast(1.08) saturate(0.94);
    }

    .hero-inner {
        gap: 24px;
        padding-top: 96px;
        padding-bottom: 34px;
    }

    .hero-copy {
        max-width: 36rem;
    }

    .hero-copy,
    .prose,
    .editorial-title,
    .editorial-text,
    .intro-band,
    .process-list,
    .cta-band {
        min-width: 0;
        max-width: 100%;
    }

    .hero-copy p,
    .prose h2,
    .prose p,
    .intro-band h2,
    .intro-band p,
    .editorial-title h2,
    .editorial-text p,
    .cta-band h2,
    .cta-band p {
        overflow-wrap: break-word;
    }

    h1,
    .page-title,
    .detail-title-block h1 {
        font-size: clamp(32px, 9vw, 38px);
        line-height: 1.04;
        overflow-wrap: normal;
        word-break: normal;
        hyphens: none;
    }

    .hero-copy p {
        max-width: 34rem;
        color: rgba(255, 255, 255, 0.92);
        font-size: 16px;
        line-height: 1.55;
    }

    .mobile-break {
        display: block;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .hero-actions .btn {
        min-height: 52px;
        padding-inline: 12px;
        font-size: 11px;
        letter-spacing: 0.07em;
    }

    .hero-meta {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 8px;
        border-top-color: rgba(255, 255, 255, 0.24);
    }

    .hero-meta div {
        grid-template-columns: minmax(96px, 0.42fr) minmax(0, 1fr);
        align-items: baseline;
        gap: 16px;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .hero-meta strong {
        font-size: clamp(20px, 6vw, 24px);
        line-height: 1.22;
    }

    .hero-meta div:nth-child(2) strong {
        white-space: nowrap;
        font-size: clamp(19px, 5.6vw, 22px);
    }

    .section {
        padding: 50px 0;
    }

    .section-head {
        gap: 16px;
    }

    .section-head h2,
    .intro-band h2,
    .story-copy h2,
    .editorial-title h2,
    .cta-band h2,
    .footer-brand h2 {
        font-size: clamp(30px, 8vw, 36px);
        line-height: 1.04;
    }

    .filters-panel {
        padding: 18px 0 20px;
        background: var(--paper);
        border-bottom-color: rgba(22, 23, 19, 0.1);
    }

    .filters-bar {
        gap: 12px;
    }

    .filters-bar .field select,
    .filters-bar .field input {
        min-height: 58px;
        padding: 15px 16px;
        background: rgba(255, 255, 255, 0.98);
        border-color: rgba(22, 23, 19, 0.1);
        box-shadow: 0 12px 32px rgba(12, 14, 12, 0.045);
    }

    .listing-status {
        display: grid;
        gap: 6px;
        margin-bottom: 18px;
        line-height: 1.45;
    }

    .property-card {
        border-radius: 8px;
    }

    .property-content {
        gap: 10px;
        padding: 20px;
    }

    .property-content h3 {
        font-size: 23px;
        line-height: 1.12;
    }

    .property-price {
        font-size: 20px;
    }

    .detail-hero {
        min-height: auto;
        padding-top: 72px;
    }

    .gallery-stage {
        display: block;
        min-height: auto;
        padding: 0 8px 8px;
    }

    .gallery-main {
        min-height: 70svh;
        border-radius: 8px;
    }

    .gallery-main img {
        filter: brightness(0.86) contrast(1.06);
    }

    .gallery-side {
        display: none;
    }

    .gallery-overlay {
        left: 8px;
        right: 8px;
        bottom: 8px;
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 26px 18px 78px;
        border-radius: 0 0 8px 8px;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.42) 62%, rgba(0, 0, 0, 0.04));
    }

    .detail-kicker {
        gap: 6px;
        margin-bottom: 18px;
    }

    .pill {
        min-height: 30px;
        padding-inline: 10px;
        font-size: 10px;
    }

    .detail-title-block p {
        margin-bottom: 0;
        color: rgba(255, 255, 255, 0.84);
    }

    .detail-price {
        font-size: 24px;
        line-height: 1.15;
    }

    .gallery-all {
        right: 20px;
        bottom: 22px;
        min-height: 48px;
    }

    .detail-nav {
        top: 66px;
    }

    .detail-nav .container {
        gap: 16px;
        min-height: 50px;
        padding-inline: 16px;
        scroll-snap-type: x mandatory;
    }

    .detail-nav a {
        min-height: 50px;
        scroll-snap-align: start;
        font-size: 11px;
        letter-spacing: 0.08em;
    }

    .detail-specs,
    .highlights {
        gap: 10px;
    }

    .spec-item,
    .highlight-item,
    .feature-item {
        border-radius: 8px;
    }

    .contact-block,
    .contact-panel,
    .detail-contact-card {
        padding: 22px;
        background: var(--white);
        border-color: rgba(22, 23, 19, 0.1);
        border-radius: 8px;
        box-shadow: 0 18px 42px rgba(10, 12, 10, 0.06);
    }

    .contact-block h3,
    .contact-panel-head h2,
    .detail-contact-card h3 {
        font-size: clamp(28px, 8vw, 34px);
        line-height: 1.05;
        color: var(--ink);
    }

    .contact-block p,
    .detail-contact-card p {
        font-size: 15px;
        line-height: 1.55;
    }

    .contact-block input,
    .contact-block select,
    .contact-block textarea {
        min-height: 56px;
        padding: 13px 0;
        font-size: 16px;
    }

    .contact-block .btn.full {
        min-height: 58px;
    }

    .map-frame {
        min-height: 360px;
        border-radius: 8px;
    }

    .map-frame iframe {
        height: 360px;
    }

    .map-actions {
        display: grid;
        gap: 8px;
        padding: 14px 16px;
    }

    .footer-bottom {
        gap: 10px;
        line-height: 1.5;
    }

    .mobile-action-bar {
        position: fixed;
        right: 12px;
        bottom: calc(12px + env(safe-area-inset-bottom));
        left: 12px;
        z-index: 70;
        display: grid;
        grid-template-columns: 0.78fr 1fr 1.12fr;
        gap: 1px;
        overflow: hidden;
        background: rgba(22, 23, 19, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 999px;
        box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
        backdrop-filter: blur(18px);
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .mobile-action-bar a {
        display: grid;
        place-items: center;
        min-height: 56px;
        padding: 8px 6px;
        color: var(--paper);
        background: rgba(255, 255, 255, 0.04);
        text-align: center;
    }

    .mobile-action-bar span {
        font-size: 9px;
        font-weight: 750;
        letter-spacing: 0.11em;
        line-height: 1;
        text-transform: uppercase;
        opacity: 0.68;
    }

    .mobile-action-bar strong {
        margin-top: 4px;
        font-size: 13px;
        font-weight: 760;
        line-height: 1.1;
    }

    .nav-locked .mobile-action-bar {
        display: none;
    }

    .form-focus .mobile-action-bar {
        opacity: 0;
        pointer-events: none;
        transform: translateY(calc(100% + 28px));
    }
}

@media (max-width: 430px) {
    :root {
        --container: min(100% - 28px, 1500px);
    }

    .hero-actions {
        grid-template-columns: 1fr;
    }

    .hero.media-hero {
        min-height: 70svh;
    }

    .hero-meta div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .hero-meta div:nth-child(2) strong {
        white-space: normal;
    }

    .search-panel {
        width: min(100% - 28px, 1050px);
    }

    .menu-links strong,
    .search-panel h2 {
        font-size: 22px;
        line-height: 1.12;
    }

    .menu-brand-word,
    .menu-brand-main,
    .menu-brand-sub {
        display: inline;
        font-size: inherit;
        font-weight: inherit;
        letter-spacing: 0;
        line-height: inherit;
        text-transform: none;
        transform: none;
        white-space: normal;
    }

    .menu-panel {
        width: min(100% - 24px, 1520px);
        max-width: calc(100vw - 24px);
    }

    .menu-links a {
        padding-left: 34px;
    }

    .menu-links a:hover {
        padding-left: 34px;
    }

    .menu-links a::before {
        top: 16px;
    }

    .story-media,
    .services-panel-media,
    .featured-media {
        min-height: 300px;
    }

    .gallery-main {
        min-height: 64svh;
    }

    .mobile-action-bar {
        right: 10px;
        left: 10px;
        grid-template-columns: 0.78fr 0.95fr 1.1fr;
    }

    .mobile-action-bar strong {
        font-size: 12px;
    }
}
