@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,600;1,600&display=swap');

:root {
    --ink: #12231f;
    --ink-soft: #56635f;
    --forest: #163d34;
    --forest-light: #23594b;
    --sage: #dfe9e3;
    --cream: #f6f3ec;
    --paper: #ffffff;
    --gold: #c29a63;
    --line: #dfe4e1;
    --shadow: 0 20px 60px rgba(18, 35, 31, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "DM Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
select {
    font: inherit;
}

button {
    color: inherit;
}

.shell {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    gap: 34px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.brand-mark {
    width: 44px;
    height: 44px;
    overflow: hidden;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--paper);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.14);
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-copy strong {
    color: white;
    font-family: "Playfair Display", serif;
    font-size: 1.15rem;
    letter-spacing: 0.01em;
}

.brand-copy small {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

.main-navigation a {
    position: relative;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.89rem;
    font-weight: 600;
}

.main-navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -10px;
    height: 2px;
    background: white;
    transition: right 0.25s ease;
}

.main-navigation a:hover,
.main-navigation a.active {
    color: white;
}

.main-navigation a:hover::after,
.main-navigation a.active::after {
    right: 0;
}

.header-cta {
    padding: 12px 17px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    color: white;
    font-size: 0.82rem;
    font-weight: 700;
    transition: 0.25s ease;
}

.header-cta:hover {
    background: white;
    color: var(--forest);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    margin-left: auto;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.menu-toggle > span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 4px 0;
    border-radius: 10px;
    background: white;
}

.hero {
    position: relative;
    min-height: 790px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(10, 31, 27, 0.78) 0%, rgba(10, 31, 27, 0.42) 52%, rgba(10, 31, 27, 0.24) 100%),
        url("familia.jpg") center 42% / cover no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(9, 28, 24, 0.55) 0%, transparent 40%);
}

.hero-shade {
    position: absolute;
    width: 460px;
    height: 460px;
    left: -180px;
    bottom: -220px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.hero-shade::after {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    inset: -96px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 112px;
}

.hero-eyebrow {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.hero-eyebrow span {
    width: 34px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    max-width: 820px;
    margin: 0;
    color: white;
    font-family: "Playfair Display", serif;
    font-size: clamp(3.2rem, 6.6vw, 6rem);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.hero h1 em {
    color: #e5c697;
    font-weight: 600;
}

.hero-content > p {
    max-width: 610px;
    margin: 24px 0 34px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.08rem;
    line-height: 1.7;
}

.property-search {
    width: min(920px, 100%);
}

.search-tabs {
    display: inline-flex;
    padding: 5px;
    border-radius: 12px 12px 0 0;
    background: rgba(16, 54, 45, 0.94);
    backdrop-filter: blur(14px);
}

.search-tab {
    min-width: 108px;
    padding: 10px 20px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 700;
}

.search-tab.active {
    background: white;
    color: var(--forest);
}

.search-fields {
    min-height: 96px;
    padding: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    align-items: center;
    gap: 0;
    border-radius: 0 14px 14px 14px;
    background: white;
    box-shadow: var(--shadow);
}

.search-field {
    min-width: 0;
    padding: 0 24px;
}

.search-field span {
    display: block;
    margin-bottom: 6px;
    color: var(--ink-soft);
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.search-field i {
    margin-right: 6px;
    color: var(--gold);
}

.search-field select {
    width: 100%;
    padding: 3px 26px 3px 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    font-size: 0.98rem;
    font-weight: 600;
}

.field-divider {
    width: 1px;
    height: 48px;
    background: var(--line);
}

.search-submit {
    min-height: 66px;
    padding: 0 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 10px;
    background: var(--forest);
    color: white;
    cursor: pointer;
    font-size: 0.87rem;
    font-weight: 700;
    transition: 0.25s ease;
}

.search-submit:hover {
    background: var(--forest-light);
    transform: translateY(-1px);
}

.search-message {
    min-height: 20px;
    margin: 8px 0 0;
    color: #ffd3c8;
    font-size: 0.8rem;
    font-weight: 600;
}

.hero-proof {
    margin-top: 32px;
    display: flex;
    gap: 0;
}

.hero-proof div {
    min-width: 190px;
    padding-right: 28px;
    margin-right: 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-proof div:last-child {
    border-right: 0;
}

.hero-proof strong,
.hero-proof span {
    display: block;
}

.hero-proof strong {
    color: white;
    font-size: 0.83rem;
}

.hero-proof span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.72rem;
}

.hero-scroll {
    position: absolute;
    z-index: 3;
    right: max(24px, calc((100vw - 1180px) / 2));
    bottom: 40px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.hero-scroll i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.section-space {
    padding: 112px 0;
}

.section-heading {
    margin-bottom: 42px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
}

.section-heading h2,
.advisory-intro h2,
.process-copy h2,
.contact-banner h2 {
    margin: 8px 0 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.25rem, 4vw, 3.8rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.section-heading h2 {
    max-width: 660px;
}

.section-heading > p {
    max-width: 350px;
    margin: 0 0 7px;
    color: var(--ink-soft);
    line-height: 1.7;
}

.section-kicker {
    display: inline-block;
    color: var(--forest-light);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-kicker.light {
    color: #d8bd94;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.property-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.property-card form {
    height: 100%;
}

.property-card-action {
    width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.property-image {
    position: relative;
    height: 255px;
    overflow: hidden;
    display: block;
    background: var(--sage);
}

.property-image::after {
    content: "";
    position: absolute;
    inset: 55% 0 0;
    background: linear-gradient(transparent, rgba(4, 20, 16, 0.45));
}

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

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

.property-badge {
    position: absolute;
    z-index: 2;
    top: 16px;
    left: 16px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--forest);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.property-arrow {
    position: absolute;
    z-index: 2;
    right: 16px;
    bottom: 16px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--forest);
    font-size: 0.75rem;
    opacity: 0;
    transform: translateY(8px);
    transition: 0.3s ease;
}

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

.property-info {
    flex: 1;
    padding: 23px 22px 20px;
    display: flex;
    flex-direction: column;
}

.property-price {
    color: var(--forest);
    font-family: "Playfair Display", serif;
    font-size: 1.42rem;
    font-weight: 600;
}

.property-title {
    min-height: 48px;
    margin-top: 8px;
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.45;
}

.property-location {
    min-height: 42px;
    margin-top: 5px;
    color: var(--ink-soft);
    font-size: 0.79rem;
    line-height: 1.5;
}

.property-location i {
    margin-right: 6px;
    color: var(--gold);
}

.property-features {
    margin-top: auto;
    padding-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    border-top: 1px solid var(--line);
    color: #53615d;
    font-size: 0.73rem;
}

.property-features > span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.property-features i {
    color: var(--forest-light);
}

.property-card-new {
    animation: cardReveal 0.55s ease both;
}

@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
}

.listing-actions {
    margin-top: 44px;
    text-align: center;
}

.outline-button,
.light-button,
.primary-button {
    min-height: 52px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.83rem;
    font-weight: 700;
    transition: 0.25s ease;
}

.outline-button {
    border: 1px solid var(--forest);
    background: transparent;
    color: var(--forest);
}

.outline-button:hover {
    background: var(--forest);
    color: white;
}

.outline-button:disabled {
    opacity: 0.65;
}

.advisory-section {
    overflow: hidden;
    background: var(--forest);
    color: white;
}

.advisory-section .shell {
    display: grid;
    grid-template-columns: 0.8fr 1.4fr;
    gap: 90px;
    align-items: center;
}

.advisory-intro h2 {
    max-width: 500px;
    color: white;
}

.advisory-intro p {
    max-width: 460px;
    margin: 24px 0 30px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
}

.light-button {
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: white;
}

.light-button:hover {
    background: white;
    color: var(--forest);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
}

.service-card {
    min-height: 330px;
    padding: 34px 27px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.035);
}

.service-card:first-child {
    border-radius: 16px 0 0 16px;
}

.service-card:last-child {
    border-radius: 0 16px 16px 0;
}

.service-card.featured {
    background: #fff;
    color: var(--ink);
    transform: translateY(-14px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.2);
}

.service-number {
    align-self: flex-end;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.7rem;
    font-weight: 700;
}

.service-card.featured .service-number {
    color: #a7b1ad;
}

.service-card > i {
    width: 52px;
    height: 52px;
    margin-top: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #dfc294;
    font-size: 1.15rem;
}

.service-card.featured > i {
    background: var(--sage);
    color: var(--forest);
}

.service-card h3 {
    margin: 27px 0 10px;
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
}

.service-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.82rem;
    line-height: 1.65;
}

.service-card.featured p {
    color: var(--ink-soft);
}

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

.process-layout {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 110px;
    align-items: center;
}

.process-visual {
    position: relative;
    min-height: 570px;
}

.process-visual > img {
    width: calc(100% - 58px);
    height: 570px;
    object-fit: cover;
    border-radius: 180px 16px 16px 16px;
}

.process-visual::after {
    content: "";
    position: absolute;
    z-index: 0;
    right: 0;
    top: 60px;
    width: 62%;
    height: 82%;
    border: 1px solid #c6d2cb;
    border-radius: 16px;
}

.experience-card {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 50px;
    width: 210px;
    padding: 25px;
    border-radius: 14px;
    background: var(--forest);
    color: white;
    box-shadow: var(--shadow);
}

.experience-card strong,
.experience-card span {
    display: block;
}

.experience-card strong {
    font-family: "Playfair Display", serif;
    font-size: 1.55rem;
}

.experience-card span {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.78rem;
}

.process-copy h2 {
    max-width: 520px;
}

.process-lead {
    margin: 22px 0 34px;
    color: var(--ink-soft);
    line-height: 1.75;
}

.process-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-list li {
    padding: 20px 0;
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 17px;
    border-top: 1px solid #d8ddd9;
}

.process-list li > span {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--sage);
    color: var(--forest);
    font-size: 0.75rem;
    font-weight: 800;
}

.process-list strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.process-list p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.79rem;
    line-height: 1.55;
}

.contact-banner {
    padding: 70px 0;
    background: var(--sage);
}

.contact-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.contact-banner span {
    color: var(--forest-light);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-banner h2 {
    max-width: 700px;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.contact-actions {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.primary-button {
    border: 0;
    background: var(--forest);
    color: white;
}

.primary-button:hover {
    background: var(--forest-light);
    transform: translateY(-2px);
}

.text-link {
    color: var(--forest);
    font-size: 0.78rem;
    font-weight: 700;
}

.text-link i {
    margin-left: 7px;
}

.site-footer {
    padding-top: 76px;
    background: #0c211c;
    color: white;
}

.footer-grid {
    padding-bottom: 60px;
    display: grid;
    grid-template-columns: 1.35fr 0.7fr 0.8fr 1fr;
    gap: 70px;
}

.footer-brand-link .brand-copy strong {
    font-size: 1.06rem;
}

.footer-brand > p {
    max-width: 320px;
    margin: 22px 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    transition: 0.2s ease;
}

.social-links a:hover {
    border-color: white;
    color: white;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
}

.footer-column strong {
    margin-bottom: 8px;
    color: white;
    font-size: 0.76rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.footer-column a:hover {
    color: white;
}

.footer-contact a,
.footer-contact span {
    display: grid;
    grid-template-columns: 16px 1fr;
    gap: 8px;
    align-items: start;
}

.footer-contact i {
    margin-top: 3px;
    color: var(--gold);
}

.footer-bottom {
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.68rem;
}

.whatsapp-float {
    position: fixed;
    z-index: 80;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border: 4px solid white;
    border-radius: 50%;
    background: #25d366;
    color: white;
    box-shadow: 0 12px 28px rgba(9, 34, 27, 0.28);
    font-size: 1.45rem;
    transition: 0.25s ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.03);
}

@media (max-width: 1080px) {
    .main-navigation {
        gap: 19px;
    }

    .header-cta {
        display: none;
    }

    .advisory-section .shell {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .process-layout {
        gap: 60px;
    }

    .footer-grid {
        grid-template-columns: 1.2fr 0.7fr 0.8fr;
        gap: 50px;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 850px) {
    .shell {
        width: min(100% - 32px, 720px);
    }

    .site-header {
        position: absolute;
    }

    .header-inner {
        min-height: 76px;
    }

    .menu-toggle {
        display: block;
    }

    .main-navigation {
        position: fixed;
        inset: 76px 16px auto;
        padding: 28px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border-radius: 16px;
        background: rgba(10, 35, 29, 0.98);
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: 0.25s ease;
    }

    .main-navigation.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-navigation a {
        padding: 14px 2px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-navigation a::after {
        display: none;
    }

    .hero {
        min-height: 840px;
    }

    .hero-content {
        padding-top: 120px;
    }

    .search-fields {
        grid-template-columns: 1fr 1fr;
    }

    .search-submit {
        grid-column: 1 / -1;
        margin-top: 12px;
    }

    .hero-proof div {
        min-width: 0;
        padding-right: 18px;
        margin-right: 18px;
    }

    .hero-scroll {
        display: none;
    }

    .section-space {
        padding: 82px 0;
    }

    .section-heading {
        display: block;
    }

    .section-heading > p {
        margin-top: 18px;
    }

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

    .service-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-card,
    .service-card:first-child,
    .service-card:last-child {
        min-height: auto;
        border-radius: 14px;
    }

    .service-card.featured {
        transform: none;
    }

    .service-card > i {
        margin-top: 12px;
    }

    .process-layout {
        grid-template-columns: 1fr;
    }

    .process-visual {
        min-height: 500px;
    }

    .process-visual > img {
        height: 500px;
    }

    .contact-banner-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-actions {
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .shell {
        width: calc(100% - 28px);
    }

    .brand-copy small {
        display: none;
    }

    .hero {
        min-height: 880px;
        align-items: flex-start;
        background-position: 62% center;
    }

    .hero-content {
        padding-top: 140px;
    }

    .hero h1 {
        font-size: clamp(2.75rem, 14vw, 4.2rem);
    }

    .hero-content > p {
        margin: 19px 0 26px;
        font-size: 0.94rem;
    }

    .search-tabs {
        width: 100%;
        border-radius: 12px 12px 0 0;
    }

    .search-tab {
        flex: 1;
    }

    .search-fields {
        padding: 13px;
        grid-template-columns: 1fr;
        border-radius: 0 0 14px 14px;
    }

    .search-field {
        padding: 13px 10px;
        border-bottom: 1px solid var(--line);
    }

    .field-divider {
        display: none;
    }

    .search-submit {
        grid-column: auto;
        margin-top: 12px;
    }

    .hero-proof {
        margin-top: 22px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .hero-proof div {
        padding: 0;
        margin: 0;
        border-right: 0;
    }

    .hero-proof div:last-child {
        display: none;
    }

    .section-space {
        padding: 68px 0;
    }

    .section-heading h2,
    .advisory-intro h2,
    .process-copy h2 {
        font-size: 2.35rem;
    }

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

    .property-image {
        height: 245px;
    }

    .process-visual {
        min-height: 415px;
    }

    .process-visual > img {
        width: calc(100% - 24px);
        height: 415px;
        border-radius: 110px 14px 14px 14px;
    }

    .process-visual::after {
        display: none;
    }

    .experience-card {
        right: 0;
        bottom: 24px;
        width: 185px;
        padding: 20px;
    }

    .contact-banner {
        padding: 56px 0;
    }

    .primary-button {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 38px 24px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }
}

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