:root {
    --tn-black: #32453a;
    --tn-black-soft: #465d4f;
    --tn-black-alt: #627867;
    --tn-gold: #c69b63;
    --tn-gold-strong: #d8b67e;
    --tn-cream: #faf5ea;
    --tn-sand: #efe4cf;
    --tn-sand-soft: #f8f2e6;
    --tn-muted: #627263;
    --tn-muted-soft: #869281;
    --tn-border: rgba(98, 120, 103, 0.18);
    --tn-border-strong: rgba(98, 120, 103, 0.34);
    --tn-shadow: 0 30px 80px rgba(70, 92, 78, 0.14);
}

.property-listing {
    padding: 80px 0;
}

.property-filters {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--tn-border);
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(70, 92, 78, 0.1);
    margin-top: 32px;
    padding: 18px;
}

.property-filters__grid {
    display: grid;
    gap: 14px;
    grid-template-columns: 1.15fr 1.8fr repeat(2, 1fr) auto;
}

.property-filters label {
    color: var(--tn-muted);
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.property-filters input,
.property-filters select {
    background: #fff;
    border: 1px solid var(--tn-border-strong);
    border-radius: 6px;
    color: var(--tn-black);
    min-height: 44px;
    padding: 9px 11px;
    width: 100%;
}

.property-filters__checks {
    align-items: center;
    background: #fff;
    border: 1px solid var(--tn-border-strong);
    border-radius: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    min-height: 44px;
    padding: 8px 10px;
}

.property-filters__checks label {
    align-items: center;
    color: var(--tn-black);
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    gap: 5px;
    letter-spacing: 0;
    margin: 0;
    text-transform: none;
}

.property-filters__checks input {
    min-height: auto;
    padding: 0;
    width: auto;
}

.property-filters .tn-btn {
    min-height: 44px;
    padding-bottom: 10px;
    padding-top: 10px;
    width: 100%;
}

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

.property-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--tn-border);
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(70, 92, 78, 0.11);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
}

.property-card__media {
    aspect-ratio: 4 / 3;
    background: var(--tn-sand);
    display: block;
    overflow: hidden;
    position: relative;
}

.property-card__media img {
    height: 100%;
    object-fit: var(--property-image-fit, cover);
    object-position: var(--property-image-position, center);
    transform: rotate(var(--property-image-rotation, 0deg));
    transition: transform 0.4s ease;
    width: 100%;
}

.property-card:hover .property-card__media img {
    transform: rotate(var(--property-image-rotation, 0deg)) scale(1.04);
}

.property-card__media span {
    background: rgba(50, 69, 58, 0.92);
    border-radius: 999px;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 7px 10px;
    position: absolute;
    right: 12px;
    text-transform: uppercase;
    top: 12px;
}

.property-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 14px;
    padding: 22px;
}

.property-card__meta,
.property-card__facts,
.property-detail__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.property-card__meta span,
.property-card__facts span,
.property-detail__facts span {
    background: rgba(98, 120, 103, 0.1);
    border: 1px solid var(--tn-border);
    border-radius: 999px;
    color: var(--tn-black-soft);
    font-size: 12px;
    font-weight: 800;
    padding: 5px 9px;
}

.property-card h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 29px;
    line-height: 1.05;
    margin: 0;
}

.property-card p {
    color: var(--tn-muted);
    margin: 0;
}

.property-card__bottom {
    align-items: center;
    border-top: 1px solid var(--tn-border);
    display: flex;
    gap: 14px;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 14px;
}

.property-card__bottom strong {
    color: var(--tn-black);
    font-size: 18px;
}

.property-card__bottom a {
    color: var(--tn-gold);
    font-weight: 800;
}

.property-empty {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--tn-border);
    border-radius: 8px;
    padding: 34px;
    text-align: center;
}

.property-detail {
    padding: 72px 0;
}

.property-detail__grid {
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
}

.property-gallery {
    display: grid;
    gap: 12px;
}

.property-gallery__main {
    aspect-ratio: 16 / 10;
    border-radius: 8px;
    overflow: hidden;
}

.property-gallery__main img,
.property-gallery__thumbs img {
    height: 100%;
    object-fit: var(--property-image-fit, cover);
    object-position: var(--property-image-position, center);
    transform: rotate(var(--property-image-rotation, 0deg));
    width: 100%;
}

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

.property-gallery__thumbs img {
    aspect-ratio: 4 / 3;
    border-radius: 6px;
}

.property-detail__panel,
.property-lead-panel {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--tn-border);
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(70, 92, 78, 0.11);
    padding: 26px;
}

.property-detail__panel h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 0.98;
    margin: 10px 0 18px;
}

.property-detail__price {
    color: var(--tn-gold);
    display: block;
    font-size: 24px;
    font-weight: 800;
    margin: 16px 0;
}

.property-detail__copy {
    color: var(--tn-muted);
    font-size: 18px;
}

.property-lead-panel {
    position: sticky;
    top: 24px;
}

.property-lead-panel h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 34px;
    line-height: 1;
    margin: 0 0 10px;
}

.property-lead-panel form {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.property-lead-panel input,
.property-lead-panel textarea {
    background: #fff;
    border: 1px solid var(--tn-border-strong);
    border-radius: 6px;
    min-height: 44px;
    padding: 10px 12px;
    width: 100%;
}

.property-lead-panel textarea {
    min-height: 112px;
    resize: vertical;
}

.property-alert {
    border-radius: 8px;
    margin-bottom: 18px;
    padding: 13px 15px;
}

.property-alert--success {
    background: #edf4ee;
    border: 1px solid #c5d8c9;
    color: #2d5a38;
}

.property-alert--error {
    background: #fff0f0;
    border: 1px solid #efc2c2;
    color: #9c3030;
}

@media (max-width: 1100px) {
    .property-grid,
    .property-detail__grid,
    .home-video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 767px) {
    .property-listing,
    .property-detail {
        padding: 48px 0;
    }

    .property-grid,
    .property-detail__grid,
    .property-filters__grid,
    .home-video-grid {
        grid-template-columns: 1fr;
    }

    .property-lead-panel {
        position: static;
    }

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

body.thabata-site,
.thabata-site *,
.thabata-site *::before,
.thabata-site *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.thabata-site {
    background:
        radial-gradient(circle at top left, rgba(126, 150, 129, 0.22), transparent 30%),
        radial-gradient(circle at 86% 18%, rgba(214, 182, 126, 0.16), transparent 22%),
        radial-gradient(circle at bottom right, rgba(109, 135, 112, 0.18), transparent 28%),
        linear-gradient(180deg, #fcf8ef 0%, #f4edde 42%, #e5eddd 100%);
    color: var(--tn-black);
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    overflow-x: hidden;
}

.thabata-site img,
.thabata-site svg,
.thabata-site video {
    max-width: 100%;
}

.thabata-site img {
    height: auto;
}

.thabata-site button,
.thabata-site input,
.thabata-site select,
.thabata-site textarea {
    font: inherit;
}

.thabata-site .container {
    max-width: 1520px;
    width: calc(100% - 72px);
}

.thabata-topbar {
    background:
        radial-gradient(circle at top center, rgba(214, 182, 126, 0.12), transparent 32%),
        linear-gradient(180deg, #5d7465 0%, #3d5246 100%);
    border-bottom: 1px solid rgba(224, 191, 144, 0.12);
    color: var(--tn-cream);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.thabata-topbar__wrap {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    justify-content: space-between;
    min-height: 56px;
}

.thabata-topbar__left,
.thabata-topbar__right {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
}

.thabata-topbar__lang {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    position: relative;
    z-index: 20;
}

.thabata-topbar__left {
    justify-content: flex-start;
}

.thabata-topbar__right {
    justify-content: flex-end;
    margin-left: auto;
}

.thabata-topbar a,
.thabata-topbar span {
    color: rgba(250, 245, 234, 0.94);
}

.inline-icon-link,
.footer-inline-text {
    align-items: center;
    display: inline-flex;
    gap: 9px;
}

.inline-icon-link__icon {
    border-radius: 50%;
    box-shadow: 0 8px 18px rgba(69, 92, 78, 0.14);
    display: block;
    flex: 0 0 18px;
    height: 18px;
    object-fit: cover;
    width: 18px;
}

.inline-icon-link i {
    min-width: 14px;
    text-align: center;
}

.thabata-topbar a.inline-icon-link {
    opacity: 0.94;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.thabata-topbar a.inline-icon-link:hover,
.thabata-topbar a.inline-icon-link:focus {
    opacity: 1;
    transform: translateY(-1px);
}

.thabata-topbar__domain {
    font-weight: 800;
}

.thabata-topbar__email {
    align-items: center;
    display: inline-flex;
    gap: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: none;
    word-break: break-word;
}

.thabata-topbar__email .inline-icon-link__icon {
    box-shadow: 0 16px 30px rgba(18, 30, 22, 0.24);
    flex: 0 0 44px;
    height: 44px;
    width: 44px;
}

.thabata-topbar__socials {
    align-items: center;
    display: inline-flex;
    gap: 14px;
    justify-content: flex-end;
}

.topbar-lang-toggle {
    align-items: center;
    background: rgba(26, 38, 31, 0.28);
    border: 1px solid rgba(250, 245, 234, 0.18);
    border-radius: 999px;
    color: rgba(250, 245, 234, 0.94);
    cursor: pointer;
    display: inline-flex;
    gap: 7px;
    min-height: 34px;
    justify-content: center;
    letter-spacing: 0.08em;
    line-height: 1;
    padding: 7px 11px;
    text-transform: uppercase;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.topbar-lang-toggle:hover,
.topbar-lang-toggle:focus,
.thabata-topbar__lang.is-open .topbar-lang-toggle {
    background: rgba(26, 38, 31, 0.42);
    border-color: rgba(214, 182, 126, 0.46);
    transform: translateY(-1px);
}

.topbar-lang-toggle__icon {
    align-items: center;
    display: inline-flex;
    font-size: 13px;
}

.topbar-lang-toggle__label {
    color: rgba(250, 245, 234, 0.96);
    font-size: 11px;
    font-weight: 800;
}

.topbar-lang-toggle__chevron {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid rgba(250, 245, 234, 0.74);
    display: inline-block;
    height: 0;
    width: 0;
}

.topbar-lang-menu {
    background: rgba(250, 245, 234, 0.98);
    border: 1px solid rgba(98, 120, 103, 0.22);
    border-radius: 12px;
    box-shadow: 0 18px 42px rgba(18, 30, 22, 0.18);
    display: grid;
    gap: 3px;
    min-width: 190px;
    opacity: 0;
    padding: 7px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    transform: translateY(-4px);
    transition: opacity 0.18s ease, transform 0.18s ease;
    visibility: hidden;
    z-index: 40;
}

.thabata-topbar__lang.is-open .topbar-lang-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
}

.topbar-lang-btn {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 8px;
    color: var(--tn-black);
    cursor: pointer;
    display: grid;
    font-size: 12px;
    font-weight: 700;
    gap: 9px;
    grid-template-columns: 30px minmax(0, 1fr) auto;
    min-height: 38px;
    padding: 7px 8px;
    text-align: left;
    text-transform: none;
    transition: background 0.2s ease, color 0.2s ease;
    width: 100%;
}

.topbar-lang-btn::before {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgba(98, 120, 103, 0.12);
    content: "";
    display: block;
    height: 20px;
    width: 30px;
}

.topbar-lang-btn[data-lang="en"]::before {
    background-image: url("../images/brand/lang/flag-en.png");
}

.topbar-lang-btn[data-lang="pt"]::before {
    background-image: url("../images/brand/lang/flag-pt.png");
}

.topbar-lang-btn[data-lang="es"]::before {
    background-image: url("../images/brand/lang/flag-es.png");
}

.topbar-lang-btn:hover,
.topbar-lang-btn:focus,
.topbar-lang-btn.is-active {
    background: rgba(98, 120, 103, 0.1);
    color: var(--tn-black);
}

.topbar-lang-btn strong,
.topbar-lang-btn em {
    display: block;
}

.topbar-lang-btn strong {
    font-size: 12px;
    line-height: 1.1;
}

.topbar-lang-btn em {
    color: var(--tn-muted);
    font-size: 10px;
    font-style: normal;
    letter-spacing: 0.1em;
}

.topbar-lang-btn.is-active::before {
    box-shadow: 0 0 0 1px rgba(98, 120, 103, 0.2), 0 0 0 2px rgba(214, 182, 126, 0.65);
}

.topbar-social-link {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    overflow: visible;
    padding: 0;
    transition: filter 0.28s ease, transform 0.28s ease;
}

.topbar-social-link:hover,
.topbar-social-link:focus {
    filter: saturate(1.08) brightness(1.03);
    transform: translateY(-3px) scale(1.05);
}

.topbar-social-link:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.72);
    outline-offset: 4px;
}

.topbar-social-link img {
    border-radius: 50%;
    box-shadow: 0 16px 30px rgba(18, 30, 22, 0.24);
    display: block;
    height: 44px;
    object-fit: cover;
    width: 44px;
}

.thabata-site h1,
.thabata-site h2,
.thabata-site h3,
.thabata-site h4 {
    color: var(--tn-black);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 0.01em;
    margin-top: 0;
}

.thabata-site p {
    color: var(--tn-muted);
    margin-bottom: 0;
}

.thabata-site a,
.thabata-site a:hover,
.thabata-site a:focus {
    color: inherit;
    text-decoration: none;
}

.thabata-header {
    backdrop-filter: blur(18px);
    background: rgba(248, 242, 230, 0.92);
    border-bottom: 1px solid var(--tn-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.thabata-navbar {
    background: transparent;
    border: 0;
    margin-bottom: 0;
    min-height: 96px;
    padding: 0;
}

.thabata-site nav.thabata-navbar {
    padding: 0;
}

.thabata-brand {
    align-items: center;
    background: transparent;
    border: 0;
    box-shadow: none;
    display: flex;
    gap: 14px;
    height: auto;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    width: auto;
}

.brand-logo {
    display: block;
    max-width: 100%;
}

.thabata-brand > .brand-logo {
    height: auto;
}

.brand-logo--wordmark {
    height: 80px;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    width: auto;
}

.brand-logo--monogram {
    height: 96px;
    max-width: none;
    object-fit: contain;
    object-position: center;
    width: auto;
}

.brand-logo--signature {
    height: 34px;
    object-fit: cover;
    object-position: center bottom;
    width: 242px;
}

.thabata-brand > .brand-logo--wordmark {
    height: 80px;
    max-width: 100%;
    width: auto;
}

.thabata-brand > .brand-logo--monogram {
    height: 96px;
    max-width: none;
    width: auto;
}

.thabata-brand > .brand-logo--signature {
    height: 34px;
    max-width: none;
    width: 242px;
}

.thabata-nav > li > a {
    color: rgba(50, 69, 58, 0.78) !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    padding-bottom: 26px;
    padding-top: 26px;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.thabata-nav > li > a:hover,
.thabata-nav > li > a:focus {
    color: var(--tn-gold-strong) !important;
}

.thabata-nav > li {
    position: relative;
}

.thabata-nav [data-menu-toggle="true"] {
    align-items: center;
    display: inline-flex !important;
    gap: 8px;
}

.thabata-nav [data-menu-toggle="true"]::after {
    color: currentColor;
    content: "\f107";
    font-family: FontAwesome;
    font-size: 12px;
    line-height: 1;
}

.thabata-nav .dropdown-menu {
    background: rgba(248, 242, 230, 0.98);
    border: 1px solid rgba(98, 120, 103, 0.18);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(34, 49, 41, 0.14);
    display: none;
    left: 0;
    margin-top: 0;
    min-width: 240px;
    overflow: visible;
    padding: 14px 0;
}

.thabata-nav .dropdown.open > .dropdown-menu,
.thabata-nav .dropdown-submenu.open > .dropdown-menu {
    display: block;
}

.thabata-nav .dropdown-menu > li {
    position: relative;
}

.thabata-nav .dropdown-menu > li + li {
    border-top: 1px solid rgba(98, 120, 103, 0.12);
}

.thabata-nav .dropdown-menu > li > a {
    color: var(--tn-gold-strong);
    display: block;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.18em;
    padding: 12px 22px;
    text-transform: uppercase;
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.thabata-nav .dropdown-menu > li > a:hover,
.thabata-nav .dropdown-menu > li > a:focus {
    background: rgba(198, 155, 99, 0.08);
    color: #b9894f;
}

.thabata-nav .dropdown-submenu {
    position: relative;
}

.thabata-nav .dropdown-submenu > a {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.thabata-nav .dropdown-submenu > a::after {
    color: currentColor;
    content: "\f105";
    font-family: FontAwesome;
    font-size: 12px;
    line-height: 1;
    margin-left: 10px;
}

.thabata-nav .dropdown-submenu > .dropdown-menu {
    left: 100%;
    top: 0;
}

.thabata-nav .dropdown-submenu > .dropdown-menu.left {
    left: auto;
    right: 100%;
}

/* Override legacy submenu offsets from style.css for the Thabata menu. */
.thabata-site #main-nav .thabata-nav > .dropdown > .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
}

.thabata-site #main-nav .thabata-nav > .dropdown.open > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

.thabata-site #main-nav .thabata-nav .dropdown-menu > .dropdown-submenu > .dropdown-menu {
    display: none;
    left: 100%;
    opacity: 0;
    top: 0;
    visibility: hidden;
}

.thabata-site #main-nav .thabata-nav .dropdown-menu > .dropdown-submenu.open > .dropdown-menu {
    display: block;
    left: 100%;
    opacity: 1;
    visibility: visible;
}

.thabata-site #main-nav .thabata-nav .dropdown-menu > .dropdown-submenu > .dropdown-menu.left,
.thabata-site #main-nav .thabata-nav .dropdown-menu > .dropdown-submenu.open > .dropdown-menu.left {
    left: auto;
    right: 100%;
}

.thabata-site .navbar-default .navbar-toggle {
    border-color: var(--tn-border);
    margin-top: 25px;
}

.thabata-site .navbar-default .navbar-toggle:hover,
.thabata-site .navbar-default .navbar-toggle:focus {
    background: rgba(200, 160, 106, 0.08);
}

.thabata-site .navbar-default .navbar-toggle .icon-bar {
    background-color: var(--tn-gold);
}

.section-anchor,
.tn-section[id],
.page-hero[id],
.tn-card[id],
.collection-card[id],
#formulario {
    scroll-margin-top: 120px;
}

.section-anchor {
    display: block;
    height: 0;
    pointer-events: none;
    position: relative;
    visibility: hidden;
}

.tn-hero {
    overflow: hidden;
    padding: 92px 0 64px;
    position: relative;
}

.tn-hero::before,
.tn-hero::after {
    border-radius: 999px;
    content: "";
    filter: blur(18px);
    position: absolute;
}

.tn-hero::before {
    background: radial-gradient(circle, rgba(214, 182, 126, 0.28), transparent 70%);
    height: 320px;
    right: -60px;
    top: 60px;
    width: 320px;
}

.tn-hero::after {
    background: radial-gradient(circle, rgba(109, 135, 112, 0.12), transparent 68%);
    bottom: 0;
    height: 240px;
    left: -20px;
    width: 240px;
}

.tn-hero--cinematic {
    min-height: calc(100vh - 134px);
    padding: 112px 0 88px;
}

.tn-hero--cinematic > .container {
    position: relative;
    z-index: 2;
}

.hero-cinematic-backdrop {
    inset: 0;
    overflow: hidden;
    position: absolute;
}

.hero-cinematic-backdrop::after {
    background:
        linear-gradient(90deg, rgba(18, 28, 23, 0.8) 0%, rgba(25, 39, 32, 0.58) 42%, rgba(28, 41, 35, 0.26) 100%),
        linear-gradient(180deg, rgba(16, 24, 20, 0.34) 0%, rgba(16, 24, 20, 0.14) 32%, rgba(16, 24, 20, 0.48) 100%);
    content: "";
    inset: 0;
    position: absolute;
}

.hero-cinematic-backdrop__media {
    animation: tnHeroDrift 18s ease-in-out infinite alternate;
    background:
        radial-gradient(circle at 18% 26%, rgba(214, 182, 126, 0.28), transparent 20%),
        radial-gradient(circle at 78% 22%, rgba(250, 245, 234, 0.16), transparent 18%),
        radial-gradient(circle at 58% 74%, rgba(109, 135, 112, 0.36), transparent 26%),
        linear-gradient(140deg, #8ea07f 0%, #576d5d 34%, #34483b 64%, #24352c 100%);
    inset: -6%;
    position: absolute;
    transform: scale(1.04);
}

.hero-cinematic-backdrop__media::before,
.hero-cinematic-backdrop__media::after {
    content: "";
    inset: 0;
    position: absolute;
}

.hero-cinematic-backdrop__media::before {
    background:
        radial-gradient(circle at 22% 64%, rgba(250, 245, 234, 0.12), transparent 14%),
        radial-gradient(circle at 70% 42%, rgba(214, 182, 126, 0.18), transparent 16%),
        repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 24px);
    mix-blend-mode: screen;
    opacity: 0.56;
}

.hero-cinematic-backdrop__media::after {
    background:
        radial-gradient(circle at 50% 50%, rgba(22, 34, 28, 0) 0%, rgba(22, 34, 28, 0.22) 58%, rgba(22, 34, 28, 0.58) 100%);
}

@keyframes tnHeroDrift {
    0% {
        transform: scale(1.04) translate3d(0, 0, 0);
    }

    100% {
        transform: scale(1.1) translate3d(-1.5%, 1.5%, 0);
    }
}

.hero-row {
    align-items: center;
}

.hero-copy-shell {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    padding-right: 34px;
}

.hero-video-shell {
    align-items: flex-end;
    background:
        linear-gradient(180deg, rgba(25, 38, 31, 0.08), rgba(25, 38, 31, 0.68)),
        radial-gradient(circle at top right, rgba(214, 182, 126, 0.24), transparent 34%),
        linear-gradient(135deg, rgba(78, 101, 86, 0.96), rgba(49, 69, 58, 0.96));
    border: 1px solid rgba(250, 245, 234, 0.12);
    border-radius: 28px;
    display: flex;
    margin-bottom: 28px;
    min-height: 250px;
    overflow: hidden;
    padding: 26px;
    position: relative;
}

.hero-video-shell::before {
    background:
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 3px, transparent 3px 18px);
    content: "";
    inset: 0;
    opacity: 0.35;
    position: absolute;
}

.hero-video-shell__play,
.hero-video-shell__content {
    position: relative;
    z-index: 1;
}

.hero-video-shell__play {
    align-items: center;
    background: rgba(250, 245, 234, 0.16);
    border: 1px solid rgba(250, 245, 234, 0.22);
    border-radius: 50%;
    color: var(--tn-cream);
    display: inline-flex;
    flex: 0 0 68px;
    font-size: 22px;
    height: 68px;
    justify-content: center;
    margin-right: 18px;
}

.hero-video-shell__content {
    color: var(--tn-cream);
    max-width: 320px;
}

.hero-video-shell__content strong {
    color: var(--tn-cream);
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    line-height: 0.98;
    margin-bottom: 10px;
}

.hero-video-shell__content p {
    color: rgba(250, 245, 234, 0.76);
    font-size: 15px;
}

.tn-hero--cinematic .hero-eyebrow {
    color: rgba(250, 245, 234, 0.78);
}

.tn-hero--cinematic h1 {
    color: var(--tn-cream);
    max-width: 720px;
    text-shadow: 0 24px 42px rgba(10, 17, 14, 0.34);
}

.tn-hero--cinematic .hero-copy {
    color: rgba(250, 245, 234, 0.82);
    max-width: 680px;
}

.tn-hero--cinematic .hero-row {
    align-items: stretch;
}

.tn-hero--cinematic .contact-inline a {
    color: rgba(250, 245, 234, 0.92);
}

.tn-hero--cinematic .contact-inline .inline-icon-link__icon {
    box-shadow: none;
}

.tn-hero--cinematic .hero-spotlight {
    background: rgba(248, 242, 230, 0.1);
    border-color: rgba(250, 245, 234, 0.14);
    box-shadow: 0 26px 70px rgba(13, 20, 17, 0.22);
    backdrop-filter: blur(18px);
}

.tn-hero--cinematic .hero-spotlight strong {
    color: var(--tn-cream);
}

.tn-hero--cinematic .hero-spotlight p {
    color: rgba(250, 245, 234, 0.78);
}

.tn-hero--cinematic .hero-spotlight__dots button {
    background: rgba(250, 245, 234, 0.24);
}

.tn-hero--cinematic .hero-spotlight__dots button.is-active {
    background: var(--tn-gold-strong);
}

.tn-hero--cinematic .hero-spotlight--visual {
    background: none;
    border: 0;
    box-shadow: 0 30px 80px rgba(10, 17, 14, 0.32);
    backdrop-filter: none;
}

.tn-hero--cinematic .hero-spotlight--visual p,
.tn-hero--cinematic .hero-spotlight--visual strong {
    color: var(--tn-cream);
}

.tn-hero--cinematic .brand-frame {
    background: linear-gradient(145deg, rgba(250, 245, 234, 0.22), rgba(214, 182, 126, 0.2));
}

.tn-hero--cinematic .brand-panel {
    background:
        linear-gradient(180deg, rgba(39, 57, 47, 0.82), rgba(69, 92, 78, 0.74)),
        linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(250, 245, 234, 0.08);
}

.curated-strip {
    padding: 0 0 26px;
}

.tn-instagram-feed {
    padding: 8px 0 54px;
}

.tn-instagram-intro {
    margin: 0 auto 34px;
    max-width: 980px;
    text-align: center;
}

.tn-instagram-intro__logo {
    display: block;
    margin: 0 auto 20px;
    max-width: 100%;
    width: 220px;
}

.tn-instagram-intro h2 {
    font-size: 52px;
    margin-bottom: 18px;
}

.tn-instagram-intro p {
    font-size: 18px;
    margin: 0 auto;
    max-width: 840px;
}

.tn-instagram-strip {
    align-items: center;
    background: linear-gradient(135deg, rgba(63, 84, 71, 0.96), rgba(90, 113, 96, 0.94));
    border: 1px solid rgba(216, 182, 126, 0.18);
    border-radius: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px 24px;
    justify-content: space-between;
    margin-bottom: 26px;
    padding: 20px 26px;
}

.tn-instagram-strip__copy span,
.tn-instagram-strip__copy strong,
.tn-instagram-strip__copy small {
    display: block;
}

.tn-instagram-strip__copy span {
    color: var(--tn-gold-strong);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.tn-instagram-strip__copy strong {
    color: var(--tn-cream);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.1;
}

.tn-instagram-strip__copy small {
    color: rgba(250, 245, 234, 0.74);
    font-size: 14px;
    margin-top: 6px;
}

.tn-instagram-strip__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tn-instagram-strip__stats:empty {
    display: none;
}

.tn-instagram-strip__stats span {
    align-items: center;
    background: rgba(250, 245, 234, 0.08);
    border: 1px solid rgba(250, 245, 234, 0.14);
    border-radius: 999px;
    color: var(--tn-cream);
    display: inline-flex;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    min-height: 40px;
    padding: 0 16px;
    text-transform: uppercase;
}

.tn-instagram-strip__cta.tn-btn {
    background: rgba(250, 245, 234, 0.08);
    border-color: rgba(250, 245, 234, 0.18);
    color: var(--tn-cream) !important;
    min-width: 168px;
}

.tn-instagram-carousel .owl-stage {
    display: flex;
}

.tn-instagram-carousel .owl-item {
    display: flex;
    height: auto;
}

.tn-ig-card {
    background: linear-gradient(180deg, rgba(253, 250, 243, 0.98), rgba(241, 233, 217, 0.98));
    border: 1px solid rgba(98, 120, 103, 0.12);
    border-radius: 26px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    width: 100%;
}

.tn-ig-card__top,
.tn-ig-card__body {
    padding: 18px 18px 0;
}

.tn-ig-card__top {
    align-items: center;
    display: flex;
    gap: 14px;
    justify-content: space-between;
}

.tn-ig-card__profile {
    align-items: center;
    display: flex;
    gap: 12px;
    min-width: 0;
}

.tn-ig-card__profile img {
    border: 1px solid rgba(98, 120, 103, 0.16);
    border-radius: 50%;
    display: block;
    flex: 0 0 48px;
    height: 48px;
    object-fit: cover;
    width: 48px;
}

.tn-ig-card__profile strong,
.tn-ig-card__profile span {
    display: block;
}

.tn-ig-card__profile strong {
    color: var(--tn-black);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.tn-ig-card__profile span {
    color: var(--tn-muted);
    font-size: 12px;
    margin-top: 3px;
}

.tn-ig-card__button,
.tn-ig-card__cta {
    color: var(--tn-gold-strong) !important;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.tn-ig-card__button {
    flex: 0 0 auto;
}

.tn-ig-card__media {
    display: block;
    margin-top: 16px;
    position: relative;
}

.tn-ig-card__media::after {
    background: linear-gradient(180deg, transparent 52%, rgba(50, 69, 58, 0.26) 100%);
    content: "";
    inset: 0;
    position: absolute;
}

.tn-ig-card__media img,
.tn-ig-card__placeholder {
    aspect-ratio: 4 / 5.7;
    display: block;
    object-fit: cover;
    width: 100%;
}

.tn-ig-card__placeholder {
    background:
        radial-gradient(circle at top, rgba(198, 155, 99, 0.28), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(245, 238, 224, 0.5));
}

.tn-ig-card__badge,
.tn-ig-card__play {
    position: absolute;
    z-index: 3;
}

.tn-ig-card__badge {
    background: rgba(50, 69, 58, 0.88);
    border: 1px solid rgba(250, 245, 234, 0.14);
    border-radius: 999px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    left: 14px;
    letter-spacing: 0.12em;
    min-height: 34px;
    padding: 0 12px;
    text-transform: uppercase;
    top: 14px;
    display: inline-flex;
    align-items: center;
}

.tn-ig-card__play {
    align-items: center;
    background: rgba(250, 245, 234, 0.9);
    border-radius: 50%;
    color: var(--tn-black);
    display: inline-flex;
    font-size: 22px;
    height: 72px;
    justify-content: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
}

.tn-ig-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 14px;
    padding-bottom: 20px;
}

.tn-ig-card__body p {
    color: var(--tn-black-soft);
    font-size: 15px;
    line-height: 1.7;
}

.tn-ig-card__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.tn-ig-card__stats span {
    align-items: center;
    color: var(--tn-black-alt);
    display: inline-flex;
    font-size: 13px;
    gap: 7px;
}

.tn-ig-card__cta {
    margin-top: auto;
}

.tn-instagram-carousel .owl-nav {
    display: flex;
    justify-content: space-between;
    left: -12px;
    pointer-events: none;
    position: absolute;
    right: -12px;
    top: 38%;
}

.tn-instagram-carousel .owl-nav button {
    align-items: center;
    background: rgba(63, 84, 71, 0.92) !important;
    border: 1px solid rgba(250, 245, 234, 0.14) !important;
    border-radius: 50% !important;
    color: #ffffff !important;
    display: inline-flex !important;
    font-size: 34px !important;
    height: 52px;
    justify-content: center;
    pointer-events: auto;
    width: 52px;
}

.tn-instagram-carousel .owl-nav button:hover {
    background: rgba(200, 160, 106, 0.18) !important;
    border-color: rgba(224, 191, 144, 0.4) !important;
}

.tn-instagram-carousel .owl-nav button span {
    line-height: 1;
    margin-top: -3px;
}

.tn-ig-card--loading .tn-ig-card__body {
    padding-top: 18px;
}

.curated-strip--page {
    padding-top: 0;
}

.curated-strip__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.curated-strip__inner span {
    background: rgba(255, 255, 255, 0.46);
    border: 1px solid var(--tn-border);
    border-radius: 999px;
    color: var(--tn-black);
    display: inline-flex;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    min-height: 42px;
    padding: 0 18px;
    text-transform: uppercase;
    align-items: center;
}

.hero-eyebrow,
.section-kicker {
    color: var(--tn-gold-strong);
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.22em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.tn-hero h1,
.page-hero h1 {
    font-size: clamp(58px, 4.8vw, 92px);
    line-height: 0.95;
    margin-bottom: 24px;
}

.hero-copy,
.page-hero p {
    font-size: 18px;
    max-width: 760px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
}

.hero-cta-note {
    color: rgba(250, 245, 234, 0.72) !important;
    font-size: 15px !important;
    margin-top: 20px;
    max-width: 620px;
}

.page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
}

.contact-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 18px;
}

.hero-spotlight-rotator {
    margin-top: 28px;
    position: relative;
}

.hero-spotlight-rotator--visual {
    margin-top: 0;
    min-height: 690px;
}

.hero-spotlight {
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(98, 120, 103, 0.16);
    border-radius: 24px;
    box-shadow: var(--tn-shadow);
    display: none;
    padding: 24px 24px 22px;
}

.hero-spotlight.is-active {
    display: block;
}

.hero-spotlight__index {
    color: var(--tn-gold-strong);
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.hero-spotlight strong {
    color: var(--tn-black);
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    line-height: 1;
    margin-bottom: 12px;
}

.hero-spotlight p {
    color: var(--tn-black-soft);
    font-size: 16px;
    max-width: 600px;
}

.hero-spotlight__dots {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.hero-spotlight__dots button {
    background: rgba(98, 120, 103, 0.16);
    border: 0;
    border-radius: 999px;
    height: 10px;
    padding: 0;
    transition: width 0.2s ease, background 0.2s ease;
    width: 10px;
}

.hero-spotlight__dots button.is-active {
    background: var(--tn-gold);
    width: 34px;
}

.hero-spotlight--visual {
    background: none;
    border: 0;
    border-radius: 34px;
    box-shadow: 0 30px 80px rgba(10, 17, 14, 0.28);
    display: none;
    inset: 0;
    min-height: 690px;
    overflow: hidden;
    padding: 0;
    position: absolute;
}

.hero-spotlight--visual.is-active {
    display: block;
}

.hero-spotlight-rotator--visual .hero-spotlight--visual {
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.9s ease, visibility 0.9s ease;
    visibility: hidden;
}

.hero-spotlight-rotator--visual .hero-spotlight--visual.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-spotlight--visual .hero-spotlight__media,
.hero-spotlight--visual .hero-spotlight__overlay {
    position: absolute;
}

.hero-spotlight--visual .hero-spotlight__media {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    inset: 0;
    transform: scale(1.02);
}

.hero-spotlight--visual .hero-spotlight__overlay {
    background:
        linear-gradient(180deg, rgba(13, 20, 17, 0.08) 0%, rgba(13, 20, 17, 0.22) 38%, rgba(13, 20, 17, 0.78) 100%);
    display: flex;
    flex-direction: column;
    inset: 0;
    justify-content: flex-end;
    padding: 36px 34px 108px;
    z-index: 1;
}

.hero-spotlight__meta {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.hero-spotlight__meta .hero-spotlight__index {
    margin-bottom: 0;
}

.hero-spotlight__tag {
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: rgba(250, 245, 234, 0.94);
    display: inline-flex;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    min-height: 34px;
    padding: 0 14px;
    text-transform: uppercase;
}

.hero-spotlight--visual strong {
    font-size: clamp(40px, 3.3vw, 60px);
    line-height: 0.96;
    margin-bottom: 14px;
    max-width: 540px;
}

.hero-spotlight--visual p {
    font-size: 17px;
    line-height: 1.65;
    margin-bottom: 0;
    max-width: 540px;
}

.hero-spotlight__cta {
    align-items: center;
    align-self: flex-start;
    backdrop-filter: blur(8px);
    background: rgba(250, 245, 234, 0.12);
    border: 1px solid rgba(250, 245, 234, 0.18);
    border-radius: 999px;
    color: var(--tn-cream);
    display: inline-flex;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    margin-top: 22px;
    min-height: 44px;
    padding: 0 22px;
    text-transform: uppercase;
}

.hero-spotlight__cta:hover,
.hero-spotlight__cta:focus {
    color: var(--tn-cream);
}

.hero-spotlight-rotator--visual .hero-spotlight__dots {
    bottom: 34px;
    left: 34px;
    margin-top: 0;
    position: absolute;
    z-index: 3;
}

.hero-spotlight--quadrado .hero-spotlight__media {
    background-image: url("../images/hero/trancoso-hero-01.svg");
}

.hero-spotlight--praia .hero-spotlight__media {
    background-image: url("../images/hero/trancoso-hero-02.webp");
    background-position: center center;
}

.hero-spotlight--natureza .hero-spotlight__media {
    background-image: url("../images/hero/trancoso-hero-03.jpg");
    background-position: center center;
}

.tn-hero--cinematic::before,
.tn-hero--cinematic::after {
    display: none;
}

.tn-hero--cinematic {
    background: #0d1a15;
    min-height: calc(100vh - 134px);
    padding: 0;
}

.hero-stage {
    align-items: flex-end;
    display: flex;
    min-height: calc(100vh - 134px);
    padding: clamp(150px, 18vh, 220px) 0 56px;
    position: relative;
    z-index: 4;
}

.hero-stage__content {
    display: flex;
    flex-direction: column;
    max-width: min(900px, 100%);
    position: relative;
}

.tn-hero--cinematic .hero-copy-shell {
    max-width: 760px;
    padding-right: 0;
}

.tn-hero--cinematic h1 {
    margin-bottom: 20px;
    max-width: 760px;
}

.tn-hero--cinematic .hero-copy {
    max-width: 680px;
}

@media (min-width: 1200px) {
    .hero-stage__content {
        max-width: min(1020px, 100%);
    }

    .tn-hero--cinematic .hero-copy-shell {
        max-width: 980px;
    }

    .tn-hero--cinematic h1 {
        font-size: clamp(54px, 4vw, 78px);
        max-width: 980px;
        white-space: nowrap;
    }
}

.hero-trust-line {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero-trust-line span {
    align-items: center;
    backdrop-filter: blur(16px);
    background: rgba(250, 245, 234, 0.1);
    border: 1px solid rgba(250, 245, 234, 0.16);
    border-radius: 999px;
    color: rgba(250, 245, 234, 0.92);
    display: inline-flex;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    min-height: 42px;
    padding: 0 18px;
    text-transform: uppercase;
}

.hero-support-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 18px;
    max-width: min(760px, 100%);
}

.hero-support-card {
    backdrop-filter: blur(18px);
    background:
        linear-gradient(180deg, rgba(14, 23, 18, 0.34), rgba(14, 23, 18, 0.5)),
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
    border: 1px solid rgba(250, 245, 234, 0.14);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(5, 11, 8, 0.16);
    padding: 18px 18px 16px;
}

.hero-support-card__kicker {
    color: var(--tn-gold-strong);
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.hero-support-card h3 {
    color: var(--tn-cream);
    font-size: 25px;
    line-height: 0.96;
    margin-bottom: 10px;
}

.hero-support-card p {
    color: rgba(250, 245, 234, 0.76);
    font-size: 14px;
    line-height: 1.65;
}

.hero-spotlight-rotator--visual {
    inset: 0;
    margin-top: 0;
    min-height: auto;
    position: absolute;
}

.hero-spotlight--visual {
    border-radius: 0;
    box-shadow: none;
    inset: 0;
    min-height: auto;
}

.hero-spotlight--visual .hero-spotlight__media {
    animation: tnHeroZoom 18s ease-in-out infinite alternate;
    background-position: center center;
    transform: none;
}

.hero-spotlight__image,
.hero-spotlight__video {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
}

.hero-actions[hidden],
.hero-eyebrow[hidden],
.hero-copy[hidden],
[data-home-banner-link][hidden],
[data-home-banner-label][hidden] {
    display: none !important;
}

.hero-spotlight--visual .hero-spotlight__media::before,
.hero-spotlight--visual .hero-spotlight__media::after {
    content: "";
    inset: 0;
    position: absolute;
    z-index: 1;
}

.hero-spotlight--visual .hero-spotlight__media::before {
    background:
        linear-gradient(90deg, rgba(6, 12, 9, 0.88) 0%, rgba(6, 12, 9, 0.64) 26%, rgba(6, 12, 9, 0.18) 58%, rgba(6, 12, 9, 0.5) 100%),
        linear-gradient(180deg, rgba(6, 12, 9, 0.12) 0%, rgba(6, 12, 9, 0.04) 24%, rgba(6, 12, 9, 0.72) 100%);
}

.hero-spotlight--visual .hero-spotlight__media::after {
    background:
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.14), transparent 16%),
        radial-gradient(circle at 72% 72%, rgba(198, 155, 99, 0.1), transparent 20%);
    mix-blend-mode: screen;
    opacity: 0.72;
}

@keyframes tnHeroZoom {
    0% {
        transform: scale(1.04);
    }

    100% {
        transform: scale(1.11);
    }
}

.hero-spotlight--visual .hero-spotlight__overlay {
    align-items: flex-end;
    background: none;
    justify-content: flex-end;
    padding: clamp(154px, 18vh, 220px) 36px 56px;
}

.hero-spotlight__card {
    backdrop-filter: blur(18px);
    background:
        linear-gradient(180deg, rgba(14, 22, 18, 0.18), rgba(14, 22, 18, 0.62)),
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
    border: 1px solid rgba(250, 245, 234, 0.18);
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(6, 12, 9, 0.34);
    max-width: min(34vw, 520px);
    padding: 30px 32px 28px;
    width: 100%;
}

@media (min-width: 768px) {
    .thabata-navbar .container {
        align-items: center;
        display: flex;
        gap: 28px;
        justify-content: space-between;
    }

    .thabata-navbar .navbar-header {
        flex: 0 0 auto;
        float: none;
    }

    .thabata-brand {
        flex: 0 0 auto;
    }

    .thabata-navbar .navbar-collapse {
        flex: 1 1 auto;
        padding-left: 0;
        padding-right: 0;
    }

    .thabata-navbar .navbar-right {
        margin-right: 0;
    }
}

.hero-spotlight__meta {
    margin-bottom: 16px;
}

.hero-spotlight--visual strong {
    font-size: clamp(44px, 3.5vw, 62px);
    line-height: 0.96;
    margin-bottom: 14px;
    max-width: none;
}

.hero-spotlight--visual p {
    color: rgba(250, 245, 234, 0.8);
    font-size: 16px;
    line-height: 1.7;
    max-width: none;
}

.hero-spotlight__cta {
    background: rgba(250, 245, 234, 0.14);
    border-color: rgba(250, 245, 234, 0.2);
}

.hero-spotlight-rotator--visual .hero-spotlight__dots {
    bottom: 30px;
    left: auto;
    margin-top: 0;
    position: absolute;
    right: 42px;
    z-index: 5;
}

.contact-inline a {
    align-items: center;
    color: var(--tn-gold-strong);
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    gap: 9px;
    letter-spacing: 0.04em;
}

.contact-inline .inline-icon-link__icon {
    flex-basis: 20px;
    height: 20px;
    width: 20px;
}

.contact-inline i {
    margin-right: 0;
}

.tn-btn {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 999px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 800;
    gap: 8px;
    justify-content: center;
    letter-spacing: 0.18em;
    min-height: 52px;
    min-width: 180px;
    padding: 0 28px;
    text-transform: uppercase;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

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

.tn-btn--primary {
    background: linear-gradient(135deg, #deb780 0%, #be8d4c 100%);
    box-shadow: 0 18px 50px rgba(198, 155, 99, 0.18);
    color: var(--tn-black) !important;
}

.tn-btn--ghost {
    background: rgba(255, 255, 255, 0.42);
    border-color: var(--tn-border-strong);
    color: var(--tn-black) !important;
}

.search-luxury-panel {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(250, 245, 234, 0.12);
    border-radius: 24px;
    margin-top: 26px;
    padding: 22px;
}

.search-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.search-tabs span,
.search-chip-group span {
    border: 1px solid var(--tn-border);
    border-radius: 999px;
    display: inline-flex;
}

.search-tabs span {
    align-items: center;
    color: var(--tn-cream);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    min-height: 38px;
    padding: 0 16px;
    text-transform: uppercase;
}

.search-tabs .is-active {
    background: rgba(200, 160, 106, 0.12);
    border-color: rgba(224, 191, 144, 0.3);
    color: var(--tn-gold-strong);
}

.search-chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.search-chip-group span {
    color: rgba(250, 245, 234, 0.8);
    font-size: 12px;
    padding: 9px 14px;
}

.search-note {
    color: rgba(250, 245, 234, 0.74) !important;
    font-size: 14px !important;
    margin-top: 16px;
}

.metric-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
}

.metric-pill {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(246, 238, 223, 0.88));
    border: 1px solid var(--tn-border);
    border-radius: 22px;
    flex: 1 1 190px;
    min-height: 128px;
    padding: 22px 24px;
}

.metric-pill strong {
    color: var(--tn-black);
    display: block;
    font-size: 20px;
    margin-bottom: 8px;
}

.metric-pill span {
    color: var(--tn-black-soft);
    display: block;
    font-size: 14px;
}

.brand-frame {
    background: linear-gradient(145deg, rgba(224, 191, 144, 0.5), rgba(200, 160, 106, 0.08));
    border-radius: 36px;
    padding: 1px;
}

.brand-panel {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 25%),
        linear-gradient(180deg, #32453a 0%, #4a6152 100%);
    border-radius: 35px;
    box-shadow: var(--tn-shadow);
    padding: 36px;
    position: relative;
}

.hero-logo {
    display: block;
    margin: 0 auto 28px;
    max-width: 100%;
    width: 330px;
}

.signature-note {
    border-top: 1px solid var(--tn-border);
    margin-top: 12px;
    padding-top: 22px;
}

.classic-manifesto {
    border-top: 1px solid var(--tn-border);
    margin-top: 12px;
    padding-top: 22px;
}

.brand-panel .signature-note,
.brand-panel .classic-manifesto,
.brand-panel .search-tabs span,
.brand-panel .search-chip-group span {
    border-color: rgba(250, 245, 234, 0.14);
}

.signature-note__label {
    color: var(--tn-gold-strong);
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.classic-manifesto p {
    color: var(--tn-cream);
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    line-height: 1.08;
    margin-bottom: 6px;
}

.classic-manifesto p:last-child {
    color: var(--tn-gold-strong);
    margin-bottom: 0;
    margin-top: 10px;
}

.brand-points {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
}

.brand-points li {
    color: var(--tn-cream);
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.brand-points li i {
    color: var(--tn-gold-strong);
    left: 0;
    position: absolute;
    top: 7px;
}

.brand-creci {
    color: rgba(250, 245, 234, 0.76) !important;
    font-size: 12px !important;
    font-weight: 800;
    letter-spacing: 0.18em;
    margin-top: 18px;
    text-transform: uppercase;
}

.tn-section {
    padding: 96px 0;
    position: relative;
}

.tn-section--surface {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(242, 234, 218, 0.6));
    border-top: 1px solid rgba(98, 120, 103, 0.08);
    border-bottom: 1px solid rgba(98, 120, 103, 0.08);
}

.tn-section--cta {
    padding-top: 0;
}

.section-heading {
    margin-bottom: 42px;
    max-width: 820px;
}

.section-heading h2 {
    font-size: 54px;
    line-height: 1;
    margin-bottom: 18px;
}

.section-heading p {
    font-size: 17px;
}

@media (min-width: 992px) {
    .thabata-site[data-lang="pt"] #sobre-pilares .section-heading,
    .thabata-site[data-lang="pt"] #sobre-importancia .section-heading,
    #contato-briefing .section-heading {
        max-width: none;
    }

    #contato-briefing .section-heading h2 {
        white-space: nowrap;
    }

    .thabata-site[data-lang="pt"] #sobre-pilares .section-heading h2,
    .thabata-site[data-lang="pt"] #sobre-importancia .section-heading h2 {
        white-space: nowrap;
    }
}

.tn-card,
.content-slab,
.quote-card,
.form-panel,
.cta-panel,
.tn-step {
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid var(--tn-border);
    border-radius: 28px;
    box-shadow: var(--tn-shadow);
}

.tn-card {
    height: 100%;
    margin-bottom: 30px;
    padding: 30px;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.tn-card:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(198, 155, 99, 0.3);
    transform: translateY(-6px);
}

.tn-card h3 {
    font-size: 31px;
    margin-bottom: 14px;
}

.tn-card--compact h3,
.tn-card--region h3,
.tn-card--profile h3 {
    font-size: 27px;
}

.tn-card-icon {
    align-items: center;
    background: rgba(198, 155, 99, 0.1);
    border: 1px solid rgba(198, 155, 99, 0.16);
    border-radius: 18px;
    color: var(--tn-gold-strong);
    display: inline-flex;
    font-size: 18px;
    height: 54px;
    justify-content: center;
    margin-bottom: 24px;
    width: 54px;
}

.profile-number {
    color: var(--tn-gold-strong);
    display: block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.tn-step {
    height: 100%;
    margin-bottom: 30px;
    padding: 28px;
}

.tn-step span {
    align-items: center;
    background: rgba(198, 155, 99, 0.12);
    border-radius: 999px;
    color: var(--tn-gold-strong);
    display: inline-flex;
    font-size: 14px;
    font-weight: 800;
    height: 42px;
    justify-content: center;
    margin-bottom: 18px;
    width: 42px;
}

.tn-step h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.collection-card {
    background:
        linear-gradient(180deg, rgba(50, 69, 58, 0.08), rgba(50, 69, 58, 0.34)),
        linear-gradient(135deg, rgba(198, 155, 99, 0.16), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(224, 191, 144, 0.15);
    border-radius: 30px;
    box-shadow: var(--tn-shadow);
    margin-bottom: 30px;
    min-height: 360px;
    overflow: hidden;
    padding: 32px;
    position: relative;
}

.collection-card::before {
    content: "";
    inset: 0;
    opacity: 0.78;
    position: absolute;
}

.collection-card > * {
    position: relative;
    z-index: 1;
}

.collection-card--ocean::before {
    background:
        linear-gradient(180deg, rgba(36, 58, 67, 0.22), rgba(36, 58, 67, 0.68)),
        radial-gradient(circle at top right, rgba(97, 147, 167, 0.42), transparent 35%);
}

.collection-card--sand::before {
    background:
        linear-gradient(180deg, rgba(93, 71, 45, 0.18), rgba(93, 71, 45, 0.64)),
        radial-gradient(circle at top right, rgba(198, 155, 99, 0.48), transparent 38%);
}

.collection-card--forest::before {
    background:
        linear-gradient(180deg, rgba(39, 62, 45, 0.24), rgba(39, 62, 45, 0.74)),
        radial-gradient(circle at top right, rgba(75, 119, 86, 0.4), transparent 38%);
}

.collection-badge {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: var(--tn-cream);
    display: inline-flex;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    margin-bottom: 22px;
    min-height: 38px;
    padding: 0 16px;
    text-transform: uppercase;
    align-items: center;
}

.collection-card h3 {
    color: var(--tn-cream);
    font-size: 40px;
    line-height: 0.98;
    margin-bottom: 16px;
    max-width: 320px;
}

.collection-card p {
    color: rgba(245, 238, 229, 0.82);
    max-width: 320px;
}

.collection-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.collection-meta span {
    background: rgba(50, 69, 58, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: var(--tn-cream);
    display: inline-flex;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    min-height: 36px;
    padding: 0 14px;
    text-transform: uppercase;
    align-items: center;
}

.home-highlight-card::before {
    background:
        linear-gradient(180deg, rgba(36, 58, 48, 0.2), rgba(36, 58, 48, 0.72)),
        var(--collection-image, radial-gradient(circle at top right, rgba(198, 155, 99, 0.42), transparent 40%));
    background-position: center;
    background-size: cover;
}

.collection-card__button {
    align-items: center;
    background: rgba(250, 245, 234, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 999px;
    color: var(--tn-black);
    display: inline-flex;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-top: 22px;
    min-height: 42px;
    padding: 0 18px;
    text-transform: uppercase;
}

.collection-card__button:hover,
.collection-card__button:focus {
    color: var(--tn-black);
    transform: translateY(-1px);
}

.home-video-section {
    overflow: hidden;
}

.home-video-grid {
    align-items: center;
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
}

.home-video-copy {
    margin: 0;
    max-width: none;
    text-align: left;
}

.home-video-frame {
    background:
        linear-gradient(180deg, rgba(50, 69, 58, 0.1), rgba(50, 69, 58, 0.42)),
        var(--tn-sand);
    border: 1px solid var(--tn-border);
    border-radius: 8px;
    box-shadow: var(--tn-shadow);
    overflow: hidden;
}

.home-video-frame iframe,
.home-video-frame video {
    aspect-ratio: 16 / 9;
    background: #000;
    border: 0;
    display: block;
    height: auto;
    width: 100%;
}

.page-hero {
    padding: 110px 0 72px;
    position: relative;
}

.page-hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.page-hero-highlights span {
    align-items: center;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid var(--tn-border);
    border-radius: 999px;
    color: var(--tn-black);
    display: inline-flex;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    min-height: 42px;
    padding: 0 18px;
    text-transform: uppercase;
}

.page-hero--about-premium {
    background:
        radial-gradient(circle at 82% 20%, rgba(198, 155, 99, 0.16), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(244, 237, 223, 0.78));
    overflow: hidden;
    padding: clamp(82px, 7vw, 122px) 0 clamp(74px, 7vw, 116px);
}

.about-hero-grid {
    align-items: center;
    display: grid;
    gap: clamp(44px, 6vw, 96px);
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.7fr);
}

.about-hero-copy h1 {
    font-size: clamp(54px, 5vw, 88px);
    letter-spacing: 0;
    line-height: 0.95;
    margin-bottom: 0;
    max-width: 980px;
}

.about-hero-copy .page-hero-highlights {
    margin-top: 36px;
    max-width: 860px;
}

.about-hero-media {
    min-height: 690px;
    position: relative;
}

.about-photo {
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(98, 120, 103, 0.16);
    border-radius: 34px;
    box-shadow: 0 34px 80px rgba(43, 61, 51, 0.16);
    margin: 0;
    overflow: hidden;
    position: absolute;
}

.about-photo::after {
    background: linear-gradient(180deg, transparent 52%, rgba(28, 42, 34, 0.24));
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.about-photo img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.about-photo--main {
    height: 430px;
    left: 0;
    top: 62px;
    width: 58%;
    z-index: 1;
}

.about-photo--secondary {
    height: 330px;
    right: 0;
    top: 0;
    width: 50%;
    z-index: 2;
}

.about-photo--tertiary {
    bottom: 0;
    height: 320px;
    left: 8%;
    width: 46%;
    z-index: 3;
}

.about-photo--quaternary {
    bottom: 42px;
    height: 360px;
    right: 0;
    width: 48%;
    z-index: 4;
}

.about-hero-signature {
    align-items: center;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(198, 155, 99, 0.2);
    border-radius: 999px;
    box-shadow: 0 24px 60px rgba(43, 61, 51, 0.14);
    display: inline-flex;
    min-height: 78px;
    padding: 16px 28px;
    position: absolute;
    right: 34px;
    top: 300px;
    z-index: 5;
}

.about-hero-signature img {
    display: block;
    height: 28px;
    object-fit: cover;
    object-position: center bottom;
    width: 210px;
}

.content-slab,
.form-panel,
.quote-card {
    padding: 34px;
}

#sobre-narrativa .sobre-narrativa__row,
.tn-contact-story .sobre-narrativa__row {
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
}

#sobre-narrativa .sobre-narrativa__row > [class*="col-"],
.tn-contact-story .sobre-narrativa__row > [class*="col-"] {
    display: flex;
}

#sobre-narrativa .content-slab,
#sobre-narrativa .quote-card,
.tn-contact-story .content-slab,
.tn-contact-story .quote-card {
    width: 100%;
}

#sobre-narrativa .content-slab h2,
.tn-contact-story .content-slab h2 {
    margin-bottom: 24px !important;
}

#sobre-narrativa .content-slab p,
.tn-contact-story .content-slab p {
    font-size: 16px;
    line-height: 1.82;
    margin: 0;
    text-align: justify;
    text-align-last: left;
    text-justify: inter-word;
}

#sobre-narrativa .content-slab p + p,
.tn-contact-story .content-slab p + p {
    margin-top: 18px;
}

@media (max-width: 767px) {
    #sobre-narrativa .sobre-narrativa__row,
    .tn-contact-story .sobre-narrativa__row {
        display: block;
    }

    #sobre-narrativa .sobre-narrativa__row > [class*="col-"],
    .tn-contact-story .sobre-narrativa__row > [class*="col-"] {
        display: block;
    }

    #sobre-narrativa .quote-card,
    .tn-contact-story .quote-card {
        margin-top: 24px;
    }

    #sobre-narrativa .content-slab p,
    .tn-contact-story .content-slab p {
        line-height: 1.72;
        text-align: left;
    }
}

.announce-copy p {
    color: var(--tn-muted);
    line-height: 1.85;
    margin: 0;
}

.announce-copy p + p {
    margin-top: 18px;
}

.announce-service-stack {
    display: grid;
    gap: 18px;
}

.announce-form-divider {
    align-items: center;
    color: var(--tn-black);
    display: flex;
    font-size: 12px;
    font-weight: 800;
    gap: 14px;
    letter-spacing: 0.18em;
    margin: 10px 0 22px;
    text-transform: uppercase;
}

.announce-form-divider::after {
    background: rgba(98, 120, 103, 0.16);
    content: "";
    flex: 1 1 auto;
    height: 1px;
}

.announce-form-note {
    color: var(--tn-muted);
    margin: 0;
}

.highlight-copy {
    color: var(--tn-gold-strong) !important;
    font-size: 20px !important;
    font-weight: 700;
    margin-top: 20px;
}

.quote-card {
    min-height: 100%;
    text-align: center;
}

.quote-card__logo {
    display: block;
    margin: 0 auto 24px;
    max-width: 100%;
    width: 260px;
}

.quote-card blockquote {
    border: 0;
    color: var(--tn-black);
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    line-height: 1.15;
    margin: 0;
    padding: 0;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.contact-card {
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid var(--tn-border);
    border-radius: 22px;
    box-shadow: 0 18px 34px rgba(73, 93, 81, 0.08);
    display: flex;
    gap: 16px;
    padding: 18px 20px;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(198, 155, 99, 0.3);
    box-shadow: 0 22px 42px rgba(73, 93, 81, 0.12);
    transform: translateY(-3px);
}

.contact-card__icon,
.contact-card i {
    border-radius: 50%;
    display: block;
    flex: 0 0 28px;
    height: 28px;
    margin-top: 2px;
    width: 28px;
}

.contact-card__icon {
    box-shadow: 0 10px 22px rgba(69, 92, 78, 0.18);
    object-fit: cover;
}

.contact-card i {
    align-items: center;
    background: rgba(198, 155, 99, 0.12);
    border: 1px solid rgba(198, 155, 99, 0.18);
    color: var(--tn-gold-strong);
    display: inline-flex;
    font-size: 15px;
    justify-content: center;
}

.contact-card .fa-map-marker,
.contact-card .fa-clock-o {
    background: transparent;
    border: 0;
    color: var(--tn-black);
    font-size: 24px;
    margin-top: 1px;
}

.contact-card__content {
    flex: 1 1 auto;
    min-width: 0;
}

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

.contact-card strong {
    color: var(--tn-black);
    margin-bottom: 4px;
}

.contact-card span {
    color: rgba(33, 52, 44, 0.82);
}

.contact-card a {
    color: var(--tn-gold-strong);
    font-weight: 500;
}

.contact-card--direct {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(255, 252, 246, 0.98) 0%, rgba(246, 237, 220, 0.88) 100%);
    border-color: rgba(198, 155, 99, 0.24);
    flex-wrap: wrap;
    gap: 14px 20px;
    padding: 20px 22px;
}

.contact-card--direct .contact-card__content {
    padding-right: 10px;
}

.contact-card--direct .contact-card__content strong {
    margin-bottom: 6px;
}

.contact-card--direct .contact-card__content span {
    color: var(--tn-gold-strong);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.1;
}

.contact-card__eyebrow {
    color: var(--tn-gold-strong);
    display: block;
    flex: 0 0 100%;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.contact-card__wa-link {
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(98, 120, 103, 0.12);
    border-radius: 50%;
    box-shadow: 0 14px 28px rgba(60, 81, 67, 0.12);
    display: inline-flex;
    flex: 0 0 54px;
    height: 54px;
    justify-content: center;
    margin-left: auto;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    width: 54px;
}

.contact-card__wa-link:hover,
.contact-card__wa-link:focus {
    border-color: rgba(37, 211, 102, 0.26);
    box-shadow: 0 16px 32px rgba(37, 211, 102, 0.18);
    transform: translateY(-2px);
}

.contact-card__wa-link .contact-card__icon {
    box-shadow: none;
    height: 26px;
    margin-top: 0;
    width: 26px;
}

.contact-form {
    margin-top: 28px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    color: var(--tn-black);
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(98, 120, 103, 0.14);
    border-radius: 18px;
    box-shadow: none;
    color: var(--tn-black);
    font-size: 15px;
    height: 54px;
    padding: 12px 18px;
}

.contact-form select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, rgba(36, 52, 44, 0.58) 50%), linear-gradient(135deg, rgba(36, 52, 44, 0.58) 50%, transparent 50%);
    background-position: calc(100% - 24px) calc(50% - 3px), calc(100% - 18px) calc(50% - 3px);
    background-repeat: no-repeat;
    background-size: 6px 6px, 6px 6px;
    cursor: pointer;
    padding-right: 46px;
}

.contact-form textarea.form-control {
    height: auto;
    min-height: 180px;
    resize: vertical;
}

.contact-form .form-control::placeholder {
    color: var(--tn-muted-soft);
}

.contact-form .form-control:focus {
    border-color: var(--tn-border-strong);
    box-shadow: 0 0 0 4px rgba(200, 160, 106, 0.08);
}

.contact-form .tn-btn[disabled] {
    cursor: wait;
    opacity: 0.72;
}

.contact-result {
    margin-top: 18px;
    min-height: 26px;
    font-weight: 600;
}

.cta-panel {
    padding: 38px 36px;
}

.cta-panel h2 {
    font-size: 46px;
    margin-bottom: 12px;
}

.cta-phone {
    color: var(--tn-gold-strong) !important;
    font-size: 18px !important;
    margin-top: 14px;
}

.cta-phone i {
    margin-right: 8px;
}

.cta-panel__actions {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
    margin-top: 18px;
}

.thabata-footer {
    background:
        radial-gradient(circle at top center, rgba(214, 182, 126, 0.12), transparent 32%),
        linear-gradient(180deg, #5d7465 0%, #3d5246 100%);
    border-top: 1px solid rgba(224, 191, 144, 0.12);
    overflow: hidden;
    padding: 44px 0 18px;
    position: relative;
}

.thabata-footer::before {
    background:
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 4px, transparent 4px 24px);
    border-radius: 62% 38% 65% 35% / 58% 42% 58% 42%;
    content: "";
    height: 240px;
    left: 50%;
    opacity: 0.32;
    pointer-events: none;
    position: absolute;
    top: 46%;
    transform: translate(-50%, -50%) rotate(-9deg);
    width: min(1240px, 88%);
}

.thabata-footer .container {
    position: relative;
    z-index: 2;
}

.footer-menu {
    display: grid;
    gap: 24px 28px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-bottom: 36px;
}

.footer-menu__group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-menu__title {
    color: rgba(245, 238, 229, 0.64);
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.footer-menu a {
    color: rgba(245, 238, 229, 0.96);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.footer-menu a:hover,
.footer-menu a:focus {
    color: var(--tn-gold-strong);
}

.footer-shell {
    align-items: start;
    display: grid;
    gap: 24px 40px;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 280px) minmax(0, 1fr);
    margin-bottom: 24px;
}

.footer-column h4,
.footer-center h4 {
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.65;
}

.footer-column--contact {
    text-align: right;
}

.footer-logo {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    width: 236px;
}

.footer-center {
    align-items: center;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.footer-mark {
    color: #ffffff !important;
    font-size: 11px !important;
    font-weight: 800;
    letter-spacing: 0.22em;
    margin-bottom: 14px !important;
    text-transform: uppercase;
}

.footer-note {
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 15px !important;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 320px;
}

.footer-socials {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 22px;
}

.footer-mini-badge {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 24px auto 0;
    max-width: 260px;
    padding-top: 18px;
}

.footer-mini-badge span,
.footer-mini-badge strong {
    display: block;
}

.footer-mini-badge span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.footer-mini-badge strong {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

.footer-social-link {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    overflow: visible;
    padding: 0;
    transition: filter 0.28s ease, transform 0.28s ease;
}

.footer-social-link:hover,
.footer-social-link:focus {
    filter: saturate(1.08) brightness(1.03);
    transform: translateY(-3px) scale(1.05);
}

.footer-social-link:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.72);
    outline-offset: 4px;
}

.footer-social-link img {
    border-radius: 50%;
    display: block;
    box-shadow: 0 16px 30px rgba(18, 30, 22, 0.24);
    height: 56px;
    object-fit: cover;
    width: 56px;
}

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

.footer-contact-list li {
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.footer-contact-list .inline-icon-link,
.footer-contact-list .footer-inline-text {
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    gap: 10px;
}

.footer-inline-text--creci {
    color: rgba(255, 255, 255, 0.68) !important;
    font-size: 11px !important;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-bottom {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    padding-top: 16px;
    text-align: center;
}

.footer-bottom span {
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
}

.floating-whatsapp {
    align-items: center;
    background: radial-gradient(circle at 35% 30%, #2bf070 0%, #17bb53 48%, #0d7e3a 100%);
    border-radius: 50%;
    bottom: 22px;
    box-shadow: 0 18px 40px rgba(38, 102, 58, 0.34);
    color: #ffffff !important;
    display: inline-flex;
    font-size: 12px;
    font-weight: 800;
    height: 82px;
    position: fixed;
    justify-content: center;
    left: 22px;
    overflow: visible;
    padding: 0;
    right: auto;
    text-transform: uppercase;
    width: 82px;
    z-index: 1200;
    animation: whatsappBounce 1.9s ease-in-out infinite;
}

.floating-whatsapp__glyph {
    align-items: center;
    color: #ffffff;
    display: inline-flex;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.floating-whatsapp__glyph i {
    font-size: 58px;
    line-height: 0.8;
    text-shadow: 0 8px 18px rgba(38, 102, 58, 0.16);
    transform: translate(1px, 2px) scale(1.18);
}

.floating-whatsapp__badge {
    align-items: center;
    background: linear-gradient(180deg, #ff4c5f 0%, #e11424 100%);
    border: 3px solid #ffffff;
    border-radius: 999px;
    box-shadow: 0 10px 18px rgba(170, 18, 36, 0.34);
    color: #ffffff;
    display: inline-flex;
    font-size: 14px;
    font-weight: 800;
    height: 26px;
    justify-content: center;
    line-height: 1;
    min-width: 26px;
    padding: 0 4px;
    position: absolute;
    right: 6px;
    top: 2px;
    z-index: 4;
}

.floating-whatsapp::before,
.floating-whatsapp::after {
    border-radius: 50%;
    content: "";
    inset: 0;
    position: absolute;
}

.floating-whatsapp::before {
    background: rgba(23, 187, 83, 0.22);
    transform: scale(1.15);
    z-index: 1;
    animation: whatsappPulse 2.2s ease-out infinite;
}

.floating-whatsapp::after {
    background: rgba(23, 187, 83, 0.14);
    transform: scale(1.34);
    z-index: 0;
    animation: whatsappPulse 2.2s ease-out 0.8s infinite;
}

.floating-whatsapp__label {
    display: none;
}

@keyframes whatsappBounce {
    0%, 100% {
        transform: translateY(0);
    }
    15% {
        transform: translateY(-10px) scale(1.02);
    }
    28% {
        transform: translateY(0);
    }
    42% {
        transform: translateY(-5px);
    }
    54% {
        transform: translateY(0);
    }
}

@keyframes whatsappPulse {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }
    70% {
        opacity: 0;
        transform: scale(1.7);
    }
    100% {
        opacity: 0;
        transform: scale(1.85);
    }
}

#contact-result.valid {
    color: #376a45;
}

#contact-result.error {
    color: #b15757;
}

@media (max-width: 1199px) {
    .thabata-site .container {
        width: calc(100% - 56px);
    }

    .tn-hero h1,
    .page-hero h1 {
        font-size: 62px;
    }

    .section-heading h2,
    .cta-panel h2 {
        font-size: 44px;
    }

    .tn-instagram-intro h2 {
        font-size: 44px;
    }
}

@media (max-width: 991px) {
    .thabata-site .container {
        width: calc(100% - 40px);
    }

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

    .about-hero-media {
        min-height: 520px;
    }

    .about-photo--main {
        height: 410px;
        width: 64%;
    }

    .about-photo--secondary {
        height: 320px;
        width: 58%;
    }

    .thabata-topbar__wrap {
        gap: 8px 18px;
        justify-content: center;
        padding: 8px 0;
    }

    .thabata-topbar__left,
    .thabata-topbar__lang,
    .thabata-topbar__right {
        justify-content: center;
        margin-left: 0;
        width: 100%;
    }

    .thabata-header {
        position: relative;
        z-index: 1300;
    }

    .thabata-navbar {
        min-height: 82px;
    }

    .thabata-navbar .container {
        padding-left: 0;
        padding-right: 0;
        position: relative;
    }

    .thabata-navbar .navbar-header {
        align-items: center;
        display: flex;
        float: none !important;
        justify-content: space-between;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .thabata-site .navbar-default .navbar-toggle {
        align-items: center;
        border-radius: 16px;
        display: flex !important;
        flex-direction: column;
        float: none !important;
        gap: 5px;
        justify-content: center;
        margin: 14px 0 0;
        min-height: 52px;
        min-width: 52px;
        padding: 12px 11px;
    }

    .thabata-site .navbar-default .navbar-toggle .icon-bar {
        border-radius: 999px;
        height: 2px;
        margin-top: 0;
        width: 24px;
    }

    .thabata-site .navbar-default .navbar-toggle .icon-bar + .icon-bar {
        margin-top: 0;
    }

    .thabata-site .navbar-collapse {
        background: rgba(248, 242, 230, 0.97);
        border: 1px solid var(--tn-border);
        border-radius: 26px;
        box-shadow: 0 28px 60px rgba(18, 30, 22, 0.18);
        left: 0;
        margin-top: 14px;
        max-height: min(70vh, 560px) !important;
        overflow-y: auto !important;
        padding: 6px 24px 18px;
        position: absolute;
        right: 0;
        top: 100%;
        z-index: 1400;
    }

    .thabata-site .navbar-collapse.collapse {
        display: none !important;
    }

    .thabata-site .navbar-collapse.collapse.in,
    .thabata-site .navbar-collapse.collapsing {
        display: block !important;
    }

    .thabata-site #main-nav {
        height: auto !important;
        overflow-y: auto !important;
    }

    .thabata-site #main-nav ul.nav.navbar-nav {
        height: auto;
    }

    .thabata-nav > li > a {
        align-items: center;
        display: flex !important;
        font-size: 14px;
        justify-content: space-between;
        letter-spacing: 0.14em;
        padding: 18px 4px;
    }

    .thabata-nav .dropdown-menu {
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        float: none;
        min-width: 100%;
        padding: 0 0 8px 18px;
        position: static;
        width: 100%;
    }

    .thabata-nav > li + li {
        border-top: 1px solid rgba(98, 120, 103, 0.12);
    }

    .thabata-nav .dropdown-menu > li > a {
        font-size: 11px;
        letter-spacing: 0.12em;
        padding: 12px 0;
    }

    .thabata-nav .dropdown-submenu > .dropdown-menu {
        left: auto;
        opacity: 1;
        position: static;
        right: auto;
        top: auto;
        visibility: visible;
    }

    .thabata-site #main-nav .thabata-nav .dropdown-menu > .dropdown-submenu > .dropdown-menu,
    .thabata-site #main-nav .thabata-nav .dropdown-menu > .dropdown-submenu > .dropdown-menu.left {
        display: none;
        left: auto;
        opacity: 1;
        right: auto;
        top: auto;
        visibility: visible;
    }

    .thabata-site #main-nav .thabata-nav .dropdown-menu > .dropdown-submenu.open > .dropdown-menu,
    .thabata-site #main-nav .thabata-nav .dropdown-menu > .dropdown-submenu.open > .dropdown-menu.left {
        display: block;
        left: auto;
        opacity: 1;
        right: auto;
        top: auto;
        visibility: visible;
    }

    .thabata-nav .dropdown-submenu > a::after {
        content: "\f107";
    }

    .footer-menu {
        gap: 18px 24px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .tn-hero,
    .page-hero,
    .tn-section {
        padding: 68px 0;
    }

    .curated-strip {
        padding-bottom: 18px;
    }

    .tn-hero h1,
    .page-hero h1 {
        font-size: 52px;
    }

    .section-heading h2,
    .cta-panel h2,
    .quote-card blockquote {
        font-size: 40px;
    }

    .brand-frame {
        margin-top: 36px;
    }

    .hero-copy-shell {
        padding-right: 0;
    }

    .hero-actions {
        gap: 14px;
    }

    .page-hero__actions {
        gap: 14px;
    }

    .contact-inline {
        gap: 12px 18px;
    }

    .hero-video-shell {
        min-height: 220px;
    }

    .tn-hero--cinematic {
        min-height: auto;
        padding-bottom: 72px;
        padding-top: 78px;
    }

    .hero-spotlight-rotator--visual,
    .hero-spotlight--visual {
        min-height: 580px;
    }

    .hero-spotlight--visual .hero-spotlight__overlay {
        padding: 28px 26px 90px;
    }

    .hero-spotlight--visual strong {
        font-size: 44px;
        max-width: 460px;
    }

    .hero-video-shell__content strong {
        font-size: 34px;
    }

    .collection-card {
        min-height: 320px;
    }

    .tn-instagram-strip {
        align-items: flex-start;
        flex-direction: column;
    }

    .tn-instagram-carousel .owl-nav {
        left: 0;
        right: 0;
    }

    .footer-shell {
        gap: 30px;
        grid-template-columns: 1fr;
    }

    .footer-column,
    .footer-center,
    .footer-column--contact {
        text-align: center;
    }

    .footer-contact-list li {
        justify-content: center;
    }

    .footer-socials {
        margin-top: 18px;
    }

    .footer-social-link img {
        height: 52px;
        width: 52px;
    }
}

@media (max-width: 767px) {
    .thabata-site .container {
        width: calc(100% - 24px);
    }

    .page-hero--about-premium {
        padding: 56px 0 64px;
    }

    .about-hero-copy h1 {
        font-size: 46px;
        line-height: 0.98;
    }

    .about-hero-media {
        display: grid;
        gap: 16px;
        min-height: 0;
    }

    .about-photo,
    .about-photo--main,
    .about-photo--secondary,
    .about-photo--tertiary,
    .about-photo--quaternary {
        bottom: auto;
        height: 300px;
        left: auto;
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
    }

    .about-photo--secondary,
    .about-photo--tertiary,
    .about-photo--quaternary {
        height: 240px;
    }

    .about-hero-signature {
        justify-content: center;
        min-height: 64px;
        padding: 14px 22px;
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
    }

    .about-hero-signature img {
        height: 24px;
        width: 184px;
    }

    .thabata-topbar {
        font-size: 10px;
        letter-spacing: 0.05em;
    }

    .thabata-topbar__wrap {
        align-items: center;
        display: grid;
        gap: 8px 12px;
        grid-template-columns: auto minmax(0, 1fr);
        grid-template-areas:
            "left email"
            "lang lang";
        min-height: auto;
        padding: 8px 0 10px;
    }

    .thabata-topbar__left,
    .thabata-topbar__right {
        gap: 8px 10px;
        margin-left: 0;
        min-width: 0;
    }

    .thabata-topbar__left {
        grid-area: left;
        justify-content: flex-start;
    }

    .thabata-topbar__lang {
        grid-area: lang;
        justify-self: end;
        width: max-content;
    }

    .thabata-topbar__right {
        display: contents;
    }

    .thabata-topbar__email {
        align-items: center;
        display: inline-flex;
        font-size: 9px;
        gap: 6px;
        grid-area: email;
        justify-content: flex-end;
        letter-spacing: 0.01em;
        line-height: 1.1;
        min-width: 0;
        white-space: nowrap;
        width: 100%;
    }

    .thabata-topbar__email {
        min-width: 0;
    }

    .thabata-topbar__email .inline-icon-link__icon,
    .thabata-topbar__left .inline-icon-link__icon {
        box-shadow: none;
    }

    .thabata-topbar__email .inline-icon-link__icon {
        flex-basis: 20px;
        height: 20px;
        width: 20px;
    }

    .thabata-topbar__email,
    .thabata-topbar__left .inline-icon-link {
        font-weight: 700;
    }

    .thabata-topbar__email span {
        display: block;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .thabata-topbar__left .inline-icon-link {
        font-size: 9.25px;
        gap: 6px;
        letter-spacing: 0.01em;
        white-space: nowrap;
    }

    .thabata-topbar__left .inline-icon-link__icon {
        flex-basis: 14px;
        height: 14px;
        width: 14px;
    }

    .topbar-lang-toggle {
        min-height: 30px;
        padding: 6px 10px;
    }

    .topbar-lang-btn::before {
        height: 18px;
        width: 27px;
    }

    .thabata-navbar {
        min-height: 72px;
    }

    .thabata-navbar .navbar-header {
        flex-direction: row;
        min-height: 72px;
        padding: 6px 0;
    }

    .thabata-navbar .navbar-header::before,
    .thabata-navbar .navbar-header::after {
        content: none;
        display: none;
    }

    .thabata-brand > .brand-logo--wordmark,
    .brand-logo--wordmark {
        height: 54px;
        width: auto;
    }

    .thabata-brand > .brand-logo--monogram,
    .brand-logo--monogram {
        height: 58px;
        width: auto;
    }

    .thabata-brand > .brand-logo--signature,
    .brand-logo--signature {
        height: 22px;
        max-width: none;
        width: 150px;
    }

    .thabata-brand {
        gap: 10px;
        margin: 0;
        padding: 0;
        width: auto;
    }

    .thabata-site .navbar-default .navbar-toggle {
        border-radius: 14px;
        margin-top: 0;
        min-height: 44px;
        min-width: 44px;
        padding: 9px;
    }

    .thabata-site .navbar-default .navbar-toggle .icon-bar {
        width: 22px;
    }

    .thabata-site .navbar-collapse {
        border-radius: 20px;
        height: auto !important;
        left: auto;
        margin-left: 0;
        margin-right: 0;
        margin-top: 8px;
        max-height: 62vh !important;
        padding: 2px 16px 12px;
        right: 0;
        width: min(320px, 100%);
    }

    .thabata-site .navbar-collapse.collapse.in,
    .thabata-site .navbar-collapse.collapsing {
        height: auto !important;
        max-height: 62vh !important;
        overflow-y: auto !important;
    }

    .thabata-site div#main-nav {
        height: auto !important;
        max-height: 62vh !important;
        overflow-y: auto !important;
    }

    .thabata-site div#main-nav ul.nav.navbar-nav {
        height: auto !important;
    }

    .thabata-site #main-nav .thabata-nav > .dropdown > .dropdown-menu {
        display: none;
    }

    .thabata-site #main-nav .thabata-nav > .dropdown.open > .dropdown-menu {
        display: block;
    }

    .thabata-nav > li > a {
        font-size: 12px;
        letter-spacing: 0.12em;
        padding: 14px 0;
    }

    .thabata-nav .dropdown-menu {
        padding: 0 0 6px 12px;
    }

    .thabata-nav .dropdown-menu > li > a {
        font-size: 10px;
        letter-spacing: 0.1em;
        padding: 10px 0;
    }

    .thabata-nav .dropdown-submenu > a::after {
        font-size: 11px;
    }

    .tn-hero h1,
    .page-hero h1 {
        font-size: clamp(38px, 11vw, 52px);
    }

    .contact-card {
        padding: 16px 18px;
    }

    .contact-card--direct {
        gap: 12px 14px;
        padding: 18px;
    }

    .contact-card--direct .contact-card__content span {
        font-size: 20px;
    }

    .contact-card__wa-link {
        flex-basis: 50px;
        height: 50px;
        width: 50px;
    }

    .tn-instagram-intro h2 {
        font-size: 34px;
    }

    .hero-copy,
    .page-hero p,
    .section-heading p {
        font-size: 16px;
    }

    .classic-manifesto p {
        font-size: 24px;
    }

    .section-heading h2,
    .cta-panel h2,
    .quote-card blockquote {
        font-size: 34px;
    }

    .collection-card h3 {
        font-size: 32px;
    }

    .tn-card,
    .content-slab,
    .form-panel,
    .quote-card,
    .cta-panel,
    .tn-step,
    .brand-panel {
        padding: 26px;
    }

    .tn-btn {
        min-width: 100%;
        width: 100%;
    }

    .hero-actions,
    .page-hero__actions,
    .contact-inline {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-copy-shell {
        padding-right: 0;
    }

    .hero-video-shell {
        flex-direction: column;
        gap: 18px;
        justify-content: flex-end;
        min-height: 210px;
        padding: 22px;
    }

    .hero-video-shell__play {
        flex-basis: 58px;
        height: 58px;
        margin-right: 0;
        width: 58px;
    }

    .hero-video-shell__content strong {
        font-size: 30px;
    }

    .hero-spotlight {
        padding: 20px 18px 18px;
    }

    .hero-spotlight strong {
        font-size: 29px;
    }

    .hero-spotlight p {
        font-size: 15px;
    }

    .hero-cta-note {
        font-size: 14px !important;
    }

    .hero-spotlight-rotator--visual,
    .hero-spotlight--visual {
        min-height: 440px;
    }

    .hero-spotlight--visual .hero-spotlight__overlay {
        padding: 24px 22px 82px;
    }

    .hero-spotlight--visual strong {
        font-size: 34px;
        max-width: 100%;
    }

    .hero-spotlight--visual p {
        font-size: 15px;
        max-width: 100%;
    }

    .hero-spotlight__meta {
        gap: 10px;
    }

    .hero-spotlight__tag {
        font-size: 10px;
        min-height: 30px;
        padding: 0 12px;
    }

    .hero-spotlight__cta {
        min-height: 40px;
        padding: 0 18px;
    }

    .brand-frame {
        margin-top: 24px;
    }

    .page-hero-highlights {
        gap: 10px;
    }

    .page-hero-highlights span {
        width: 100%;
    }

    .tn-hero--cinematic {
        padding-bottom: 58px;
        padding-top: 56px;
    }

    .tn-hero--cinematic h1 {
        max-width: none;
    }

    .hero-cinematic-backdrop__media {
        inset: -2%;
    }

    .hero-spotlight-rotator--visual .hero-spotlight__dots {
        bottom: 24px;
        left: 22px;
    }

    .search-tabs,
    .search-chip-group,
    .curated-strip__inner {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .search-tabs::-webkit-scrollbar,
    .search-chip-group::-webkit-scrollbar,
    .curated-strip__inner::-webkit-scrollbar {
        display: none;
    }

    .tn-instagram-strip__stats {
        width: 100%;
    }

    .tn-instagram-strip__stats span {
        flex: 1 1 calc(50% - 10px);
        justify-content: center;
    }

    .thabata-footer {
        padding-top: 36px;
    }

    .footer-menu {
        gap: 14px;
        margin-bottom: 24px;
        grid-template-columns: 1fr;
    }

    .footer-menu a {
        font-size: 13px;
    }

    .footer-menu__group {
        gap: 8px;
        text-align: center;
    }

    .footer-logo {
        width: 204px;
    }

    .footer-column p,
    .footer-contact-list .inline-icon-link,
    .footer-contact-list .footer-inline-text,
    .footer-note {
        font-size: 14px !important;
    }

    .tn-instagram-intro p,
    .tn-ig-card__body p {
        font-size: 15px;
    }

    .tn-instagram-strip {
        border-radius: 22px;
        padding: 18px 18px 20px;
    }

    .tn-instagram-strip__copy strong {
        font-size: 24px;
    }

    .tn-instagram-strip__stats span {
        letter-spacing: 0.12em;
        min-height: 36px;
    }

    .tn-ig-card__play {
        height: 62px;
        width: 62px;
    }

    .tn-instagram-carousel .owl-nav {
        left: auto;
        margin-top: 16px;
        position: static;
        right: auto;
        top: auto;
    }

    .tn-instagram-carousel .owl-nav button {
        height: 46px;
        width: 46px;
    }

    .floating-whatsapp {
        bottom: 16px;
        height: 74px;
        left: 16px;
        right: auto;
        width: 74px;
    }

    .floating-whatsapp__badge {
        font-size: 12px;
        height: 24px;
        min-width: 24px;
        right: 4px;
        top: 1px;
    }

.footer-bottom {
        align-items: center;
        flex-direction: column;
    }
}

@media (max-width: 1199px) {
    .hero-stage {
        padding-bottom: 48px;
        padding-top: 146px;
    }

    .hero-stage__content {
        max-width: min(700px, 100%);
    }

    .hero-support-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 680px;
    }

    .hero-spotlight__card {
        max-width: min(38vw, 420px);
    }
}

@media (max-width: 991px) {
    .tn-hero--cinematic,
    .hero-stage {
        min-height: auto;
    }

    .hero-stage {
        padding-bottom: 44px;
        padding-top: 132px;
    }

    .hero-stage__content {
        max-width: 100%;
    }

    .hero-support-grid {
        max-width: 100%;
    }

    .hero-spotlight--visual .hero-spotlight__overlay {
        padding: 140px 24px 44px;
    }

    .hero-spotlight__card {
        max-width: 380px;
    }

    .hero-spotlight-rotator--visual .hero-spotlight__dots {
        bottom: 22px;
        right: 24px;
    }
}

@media (max-width: 767px) {
    .hero-stage {
        padding-bottom: 30px;
        padding-top: 116px;
    }

    .hero-trust-line {
        gap: 8px;
        margin-top: 20px;
    }

    .hero-trust-line span {
        justify-content: center;
        width: 100%;
    }

    .hero-support-grid {
        gap: 12px;
        grid-template-columns: 1fr;
        margin-top: 20px;
    }

    .hero-support-card {
        padding: 18px 18px 16px;
    }

    .hero-support-card h3 {
        font-size: 24px;
    }

    .hero-spotlight--visual .hero-spotlight__overlay {
        align-items: stretch;
        padding: 118px 12px 82px;
    }

    .hero-spotlight__card {
        border-radius: 22px;
        max-width: 100%;
        padding: 22px 20px 20px;
    }

    .hero-spotlight--visual strong {
        font-size: clamp(34px, 9vw, 44px);
    }

    .hero-spotlight--visual p {
        font-size: 15px;
    }

    .hero-spotlight-rotator--visual .hero-spotlight__dots {
        bottom: 18px;
        left: 12px;
        right: auto;
    }
}

/* Premium property landing and search refinements */
.property-anchor-nav {
    align-items: center;
    backdrop-filter: blur(18px);
    background: rgba(250, 245, 234, 0.92);
    border-bottom: 1px solid var(--tn-border);
    display: flex;
    gap: 8px;
    justify-content: center;
    min-height: 58px;
    overflow-x: auto;
    padding: 8px 18px;
    position: sticky;
    top: 134px;
    z-index: 900;
}

.property-anchor-nav {
    scrollbar-width: none;
}

.property-anchor-nav::-webkit-scrollbar {
    display: none;
}

.property-anchor-nav a {
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--tn-black-soft);
    flex: 0 0 auto;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 8px 12px;
    text-transform: uppercase;
}

.property-anchor-nav a:hover,
.property-anchor-nav a:focus,
.property-anchor-nav__whatsapp {
    background: rgba(198, 155, 99, 0.12);
    border-color: rgba(198, 155, 99, 0.28);
    color: var(--tn-gold);
}

.property-hero-premium {
    min-height: calc(100vh - 134px);
    overflow: hidden;
    position: relative;
}

.property-hero-premium > img {
    height: 100%;
    inset: 0;
    position: absolute;
    width: 100%;
}

.property-photo-media {
    -webkit-touch-callout: none;
    -webkit-user-drag: none;
    object-fit: var(--property-image-fit, cover);
    object-position: var(--property-image-position, center);
    transform: rotate(var(--property-image-rotation, 0deg));
    transform-origin: center;
    user-select: none;
}

.property-hero-premium__overlay {
    background:
        linear-gradient(90deg, rgba(18, 28, 23, 0.82) 0%, rgba(18, 28, 23, 0.5) 48%, rgba(18, 28, 23, 0.16) 100%),
        linear-gradient(180deg, rgba(18, 28, 23, 0.1) 0%, rgba(18, 28, 23, 0.62) 100%);
    inset: 0;
    position: absolute;
}

.property-hero-premium__content {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: calc(100vh - 134px);
    padding-bottom: 74px;
    padding-top: 92px;
    position: relative;
    z-index: 2;
}

.property-hero-premium .section-kicker,
.property-hero-premium p,
.property-hero-premium h1 {
    color: #fffaf0;
}

.property-hero-premium h1 {
    font-size: clamp(56px, 8vw, 116px);
    line-height: 0.9;
    margin: 14px 0 18px;
    max-width: 920px;
    text-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.property-hero-premium p {
    font-size: clamp(18px, 2vw, 26px);
    max-width: 760px;
}

.property-hero-premium__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
    max-width: 920px;
}

.property-hero-premium__facts span {
    background: rgba(255, 250, 240, 0.14);
    border: 1px solid rgba(255, 250, 240, 0.22);
    border-radius: 999px;
    color: #fffaf0;
    font-size: 14px;
    font-weight: 800;
    padding: 9px 13px;
}

.property-hero-premium__facts small {
    color: rgba(255, 250, 240, 0.68);
    font-size: 11px;
    font-weight: 700;
    margin-right: 5px;
    text-transform: uppercase;
}

.property-hero-premium__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.property-section {
    padding: 84px 0;
}

.property-section-heading {
    margin-bottom: 30px;
    max-width: 760px;
}

.property-section-heading h2,
.property-story h2,
.property-location h2,
.property-contact-final h2 {
    font-size: clamp(38px, 5vw, 66px);
    line-height: 0.96;
    margin-bottom: 12px;
}

.property-photo-mosaic {
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr) minmax(0, 0.65fr);
    grid-template-rows: repeat(2, minmax(220px, 1fr));
}

.property-photo-mosaic__item,
.property-gallery-complete button {
    background: var(--tn-sand);
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    min-height: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
}

.property-photo-mosaic__item--large {
    grid-row: span 2;
}

.property-photo-mosaic img,
.property-gallery-complete img {
    display: block;
    height: 100%;
    transition: transform 0.35s ease;
    width: 100%;
}

.property-photo-mosaic button:hover img,
.property-gallery-complete button:hover img {
    transform: rotate(var(--property-image-rotation, 0deg)) scale(1.035);
}

.property-gallery-open {
    background: rgba(50, 69, 58, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-weight: 800;
    margin-top: 16px;
    padding: 11px 16px;
}

.property-quick-facts {
    padding-top: 0;
}

.property-quick-facts__grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.property-quick-facts__grid article,
.property-amenity-groups article,
.property-specs__grid article {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid var(--tn-border);
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(70, 92, 78, 0.09);
    padding: 20px;
}

.property-quick-facts__grid strong {
    color: var(--tn-black);
    display: block;
    font-size: 24px;
    line-height: 1.1;
}

.property-quick-facts__grid span {
    color: var(--tn-muted);
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.property-story__grid,
.property-story__layout,
.property-location__grid,
.property-contact-final__grid {
    display: grid;
    gap: 42px;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
}

.property-story {
    padding: clamp(48px, 5.4vw, 76px) 0;
}

.property-story__layout {
    align-items: center;
    column-gap: clamp(28px, 5vw, 70px);
    grid-template-areas:
        "heading copy";
    grid-template-columns: minmax(340px, 0.82fr) minmax(460px, 1.18fr);
    row-gap: clamp(24px, 3.4vw, 42px);
}

.property-story__layout--has-media {
    grid-template-areas:
        "media heading"
        "copy copy";
    grid-template-columns: minmax(360px, 0.95fr) minmax(420px, 0.9fr);
}

.property-story__layout--single {
    grid-template-columns: minmax(0, 900px);
}

.property-story__media {
    aspect-ratio: 16 / 6;
    background: rgba(255, 255, 255, 0.48);
    border-radius: 8px;
    box-shadow: 0 20px 54px rgba(70, 92, 78, 0.1);
    grid-area: media;
    margin: 0;
    min-height: 220px;
    overflow: hidden;
}

.property-story__media img {
    display: block;
    height: 100%;
    width: 100%;
}

.property-story__heading {
    grid-area: heading;
    max-width: 700px;
}

.property-story__heading .section-kicker {
    margin-bottom: 14px;
}

.property-story__heading h2 {
    font-size: clamp(38px, 4.2vw, 58px);
    line-height: 1;
    margin-bottom: 0;
}

.property-story__copy {
    align-self: start;
    display: grid;
    gap: 20px;
    grid-area: copy;
    max-width: none;
    padding-top: 0;
}

.property-story__copy-text {
    column-gap: clamp(34px, 5vw, 72px);
    column-width: 420px;
}

.property-story__copy p,
.property-location p,
.property-contact-final p {
    font-size: 17px;
}

.property-story__copy p {
    break-inside: avoid;
    line-height: 1.8;
    margin-bottom: 0;
}

.property-story__copy-footer {
    align-items: center;
    border-top: 1px solid var(--tn-border);
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    justify-content: space-between;
    padding-top: 18px;
}

.property-story__copy strong {
    color: var(--tn-gold);
    display: inline-flex;
    font-size: 24px;
    line-height: 1.1;
}

.property-story__button {
    justify-self: start;
    margin-top: 0;
}

.property-video-tour {
    padding-top: 0;
}

.property-video-tour .property-section-heading {
    margin-bottom: 18px;
}

.property-video-tour .property-section-heading h2 {
    font-size: clamp(34px, 4vw, 54px);
}

.property-video-card,
.property-video-player {
    aspect-ratio: 16 / 8.4;
    background: #111;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 22px 60px rgba(50, 69, 58, 0.16);
    display: block;
    max-height: 620px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.property-video-card {
    cursor: pointer;
    padding: 0;
}

.property-video-card::after {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.18), transparent);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.property-video-card img,
.property-video-card iframe {
    display: block;
    height: 100%;
    width: 100%;
}

.property-video-card iframe {
    border: 0;
    position: relative;
    z-index: 3;
}

.property-video-card.is-playing::after,
.property-video-card.is-playing .property-video-card__play,
.property-video-card.is-playing em {
    display: none;
}

.property-video-card__play {
    align-items: center;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 50%;
    display: flex;
    height: 78px;
    justify-content: center;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.22s ease, background 0.22s ease;
    width: 78px;
    z-index: 2;
}

.property-video-card__play::before {
    border-bottom: 13px solid transparent;
    border-left: 18px solid var(--tn-black);
    border-top: 13px solid transparent;
    content: "";
    margin-left: 5px;
}

.property-video-card:hover .property-video-card__play,
.property-video-card:focus-visible .property-video-card__play {
    background: #fff;
    transform: translate(-50%, -50%) scale(1.05);
}

.property-video-card em {
    bottom: 28px;
    color: #fff;
    font-family: "DM Serif Display", serif;
    font-size: 22px;
    font-style: italic;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.36);
    z-index: 2;
}

.property-amenity-groups {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.property-specs__grid {
    align-items: start;
    display: grid;
    gap: 14px;
    grid-auto-rows: auto;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.property-specs__grid article {
    align-self: start;
    min-height: 0;
    padding: 18px 16px;
}

.property-amenity-groups h3,
.property-specs__grid h3 {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 14px;
}

.property-amenity-groups ul {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.property-amenity-groups li,
.property-spec-row {
    border-top: 1px solid var(--tn-border);
    display: grid;
    gap: 4px;
    padding-top: 10px;
}

.property-amenity-groups li span,
.property-spec-row span {
    color: var(--tn-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.property-amenity-groups li strong,
.property-spec-row strong {
    color: var(--tn-black);
    font-size: 15px;
}

.property-gallery-complete__grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.property-gallery-complete button {
    aspect-ratio: 4 / 3;
}

.property-contact-final__grid {
    align-items: start;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--tn-border);
    border-radius: 8px;
    box-shadow: var(--tn-shadow);
    padding: 34px;
}

.property-contact-final form {
    display: grid;
    gap: 12px;
}

.property-contact-final label {
    color: var(--tn-muted);
    display: grid;
    font-size: 11px;
    font-weight: 800;
    gap: 6px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.property-contact-final input,
.property-contact-final textarea {
    background: #fff;
    border: 1px solid var(--tn-border-strong);
    border-radius: 6px;
    color: var(--tn-black);
    min-height: 46px;
    padding: 11px 12px;
    text-transform: none;
    width: 100%;
}

.property-contact-final textarea {
    min-height: 118px;
    resize: vertical;
}

.property-mobile-whatsapp {
    display: none;
}

.property-landing ~ .floating-whatsapp {
    left: auto;
    right: 28px;
}

.property-lightbox {
    align-items: center;
    background: rgba(12, 18, 15, 0.94);
    display: grid;
    inset: 0;
    justify-items: center;
    padding: 72px 84px;
    position: fixed;
    z-index: 2400;
}

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

.property-lightbox img {
    max-height: calc(100vh - 150px);
    object-fit: var(--property-image-fit, contain);
    object-position: var(--property-image-position, center);
    transform: rotate(var(--property-image-rotation, 0deg));
    width: min(1180px, 100%);
}

.property-lightbox button,
.property-lightbox span {
    background: rgba(255, 250, 240, 0.12);
    border: 1px solid rgba(255, 250, 240, 0.2);
    border-radius: 999px;
    color: #fffaf0;
    font-weight: 800;
    padding: 10px 14px;
    position: absolute;
}

.property-lightbox__close {
    right: 24px;
    top: 24px;
}

.property-lightbox__nav--prev {
    left: 24px;
}

.property-lightbox__nav--next {
    right: 24px;
}

.property-lightbox span {
    bottom: 24px;
}

.is-lightbox-open,
.is-filter-open {
    overflow: hidden;
}

.property-search-hero .page-hero {
    padding-bottom: 50px;
}

.property-search {
    margin-top: 28px;
}

.property-search__bar {
    align-items: end;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--tn-border);
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(70, 92, 78, 0.1);
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(210px, 1.3fr) repeat(3, minmax(150px, 0.8fr)) auto auto;
    padding: 14px;
}

.property-search label,
.property-filter-drawer label {
    color: var(--tn-muted);
    display: grid;
    font-size: 11px;
    font-weight: 800;
    gap: 6px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.property-search input,
.property-search select,
.property-filter-drawer input,
.property-filter-drawer select {
    background: #fff;
    border: 1px solid var(--tn-border-strong);
    border-radius: 6px;
    color: var(--tn-black);
    min-height: 46px;
    padding: 10px 11px;
    width: 100%;
}

.property-search__more {
    background: transparent;
    border: 1px solid var(--tn-border-strong);
    border-radius: 6px;
    color: var(--tn-black-soft);
    font-weight: 800;
    min-height: 46px;
    padding: 10px 14px;
}

.property-active-filters {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.property-active-filters strong,
.property-active-filters span,
.property-active-filters a {
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    padding: 7px 10px;
}

.property-active-filters strong {
    color: var(--tn-muted);
    padding-left: 0;
}

.property-active-filters span {
    background: rgba(98, 120, 103, 0.1);
    border: 1px solid var(--tn-border);
    color: var(--tn-black-soft);
}

.property-active-filters a {
    color: var(--tn-gold);
}

.property-filter-drawer {
    inset: 0;
    position: fixed;
    z-index: 2300;
}

.property-filter-drawer[hidden] {
    display: none;
}

.property-filter-drawer__backdrop {
    background: rgba(20, 30, 25, 0.48);
    inset: 0;
    position: absolute;
}

.property-filter-drawer__panel {
    background: #fbf7ee;
    border-left: 1px solid var(--tn-border);
    box-shadow: -28px 0 70px rgba(18, 30, 22, 0.22);
    display: grid;
    grid-template-rows: auto 1fr auto;
    height: 100%;
    margin-left: auto;
    max-width: 720px;
    overflow: hidden;
    position: relative;
    width: min(92vw, 720px);
}

.property-filter-drawer__panel header,
.property-filter-drawer__panel footer {
    align-items: center;
    border-bottom: 1px solid var(--tn-border);
    display: flex;
    gap: 14px;
    justify-content: space-between;
    padding: 22px;
}

.property-filter-drawer__panel footer {
    border-bottom: 0;
    border-top: 1px solid var(--tn-border);
}

.property-filter-drawer__panel h2 {
    font-size: 40px;
    line-height: 1;
    margin: 0;
}

.property-filter-drawer__panel header button {
    background: transparent;
    border: 1px solid var(--tn-border-strong);
    border-radius: 999px;
    color: var(--tn-black-soft);
    font-weight: 800;
    padding: 9px 12px;
}

.property-filter-groups {
    display: grid;
    gap: 20px;
    overflow-y: auto;
    padding: 22px;
}

.property-filter-groups section {
    border-bottom: 1px solid var(--tn-border);
    padding-bottom: 20px;
}

.property-filter-groups h3 {
    font-size: 28px;
    line-height: 1;
    margin-bottom: 14px;
}

.property-filter-groups .form-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.property-chip-options label {
    display: inline-flex;
}

.property-chip-options input {
    height: 1px;
    opacity: 0;
    position: absolute;
    width: 1px;
}

.property-chip-options span {
    background: #fff;
    border: 1px solid var(--tn-border-strong);
    border-radius: 999px;
    color: var(--tn-black-soft);
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    padding: 9px 12px;
    text-transform: none;
}

.property-chip-options input:checked + span {
    background: var(--tn-black);
    border-color: var(--tn-black);
    color: #fffaf0;
}

.property-chip-options input:focus-visible + span {
    outline: 2px solid var(--tn-gold);
    outline-offset: 2px;
}

.property-listing__head {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.property-listing__head span {
    color: var(--tn-muted);
    font-weight: 800;
}

.property-listing__head a {
    color: var(--tn-gold);
    font-weight: 800;
}

@media (max-width: 1399px) {
    .property-specs__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1199px) {
    .property-search__bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

@media (max-width: 991px) {
    .property-anchor-nav {
        top: 0;
    }

    .property-story__grid,
    .property-story__layout,
    .property-location__grid,
    .property-contact-final__grid {
        grid-template-areas:
            "heading"
            "copy";
        grid-template-columns: 1fr;
    }

    .property-story__layout--has-media {
        grid-template-areas:
            "heading"
            "media"
            "copy";
    }

    .property-story__media {
        aspect-ratio: 16 / 9;
        min-height: 0;
    }

    .property-story__copy {
        max-width: none;
        padding-top: 0;
    }

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

    .property-story__copy-text {
        column-width: auto;
        columns: 1;
    }

    .property-photo-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .property-photo-mosaic__item {
        aspect-ratio: 4 / 3;
    }

    .property-photo-mosaic__item--large {
        aspect-ratio: 16 / 10;
        grid-column: 1 / -1;
        grid-row: auto;
    }

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

@media (max-width: 767px) {
    .property-anchor-nav {
        justify-content: flex-start;
        min-height: 48px;
        padding: 7px 12px;
    }

    .property-anchor-nav a {
        font-size: 10px;
        padding: 7px 10px;
    }

    .property-hero-premium,
    .property-hero-premium__content {
        min-height: 76vh;
    }

    .property-hero-premium__content {
        padding-bottom: 42px;
        padding-top: 52px;
    }

    .property-hero-premium h1 {
        font-size: clamp(44px, 16vw, 68px);
    }

    .property-hero-premium__facts span {
        width: 100%;
    }

    .property-section {
        padding: 54px 0;
    }

    .property-story {
        padding: 42px 0 52px;
    }

    .property-story__layout {
        row-gap: 18px;
    }

    .property-story__heading h2 {
        font-size: clamp(34px, 11vw, 48px);
    }

    .property-story__copy {
        gap: 14px;
    }

    .property-story__copy p {
        font-size: 16px;
        line-height: 1.75;
    }

    .property-story__copy-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .property-video-card,
    .property-video-player {
        aspect-ratio: 16 / 10.5;
        max-height: none;
    }

    .property-video-card__play {
        height: 62px;
        width: 62px;
    }

    .property-video-card__play::before {
        border-bottom-width: 10px;
        border-left-width: 15px;
        border-top-width: 10px;
    }

    .property-video-card em {
        bottom: 18px;
        font-size: 18px;
    }

    .property-photo-mosaic,
    .property-gallery-complete__grid,
    .property-amenity-groups,
    .property-specs__grid,
    .property-search__bar,
    .property-filter-groups .form-grid {
        grid-template-columns: 1fr;
    }

    .property-contact-final__grid {
        padding: 22px;
    }

    .property-mobile-whatsapp {
        align-items: center;
        background: var(--tn-black);
        border-radius: 999px;
        bottom: 14px;
        box-shadow: 0 18px 42px rgba(18, 30, 22, 0.26);
        color: #fffaf0 !important;
        display: inline-flex;
        font-weight: 800;
        justify-content: center;
        left: 14px;
        min-height: 54px;
        padding: 14px 18px;
        position: fixed;
        right: 14px;
        text-align: center;
        z-index: 1500;
    }

    .property-landing ~ .floating-whatsapp {
        display: none;
    }

    .property-lightbox {
        padding: 70px 16px;
    }

    .property-lightbox__nav--prev {
        bottom: 24px;
        left: 16px;
        top: auto;
    }

    .property-lightbox__nav--next {
        bottom: 24px;
        right: 16px;
        top: auto;
    }

    .property-lightbox span {
        bottom: 84px;
    }

    .property-filter-drawer__panel {
        width: 100%;
    }

    .property-filter-drawer__panel header,
    .property-filter-drawer__panel footer {
        align-items: stretch;
        flex-direction: column;
    }
}

/* Professional layout refinement */
body.thabata-site .tn-section {
    padding: clamp(68px, 6vw, 92px) 0;
}

body.thabata-site .tn-section--cta {
    padding-top: 0;
}

body.thabata-site .page-hero {
    padding: clamp(84px, 7vw, 110px) 0 clamp(56px, 5vw, 72px);
}

body.thabata-site .section-heading h2,
body.thabata-site .page-hero h1,
body.thabata-site .property-section-heading h2,
body.thabata-site .property-story h2,
body.thabata-site .property-location h2,
body.thabata-site .property-contact-final h2 {
    overflow-wrap: break-word;
    text-wrap: balance;
}

body.thabata-site .section-heading p,
body.thabata-site .page-hero p,
body.thabata-site .property-section-heading p {
    text-wrap: pretty;
}

body.thabata-site .tn-card,
body.thabata-site .tn-step,
body.thabata-site .content-slab,
body.thabata-site .form-panel,
body.thabata-site .quote-card,
body.thabata-site .collection-card,
body.thabata-site .brand-panel,
body.thabata-site .property-card,
body.thabata-site .property-quick-facts__grid article,
body.thabata-site .property-amenity-groups article,
body.thabata-site .property-specs__grid article {
    display: flex;
    flex-direction: column;
}

body.thabata-site .tn-card > :last-child,
body.thabata-site .tn-step > :last-child,
body.thabata-site .content-slab > :last-child,
body.thabata-site .form-panel > :last-child,
body.thabata-site .quote-card > :last-child,
body.thabata-site .collection-card > :last-child {
    margin-bottom: 0;
}

body.thabata-site .tn-card,
body.thabata-site .tn-step {
    gap: 0;
}

body.thabata-site .tn-card h3,
body.thabata-site .tn-step h3 {
    text-wrap: balance;
}

body.thabata-site .tn-card p,
body.thabata-site .tn-step p,
body.thabata-site .collection-card p {
    margin-bottom: 0;
}

body.thabata-site .announce-service-stack {
    height: 100%;
}

body.thabata-site .announce-service-stack .tn-card {
    margin-bottom: 0;
}

body.thabata-site .property-quick-facts__grid,
body.thabata-site .property-amenity-groups,
body.thabata-site .property-gallery-complete__grid,
body.thabata-site .property-grid {
    align-items: stretch;
    grid-auto-rows: 1fr;
}

body.thabata-site .property-quick-facts__grid article,
body.thabata-site .property-amenity-groups article {
    min-height: 100%;
}

body.thabata-site .property-specs__grid {
    align-items: start;
    grid-auto-rows: auto;
}

body.thabata-site .property-specs__grid article {
    align-self: start;
    min-height: 0;
}

body.thabata-site .property-listing__head {
    gap: 18px;
}

@supports selector(.section-heading:has(> p)) {
    @media (min-width: 992px) {
        body.thabata-site .tn-section > .container > .section-heading:has(> p),
        body.thabata-site .property-section-heading:has(> p) {
            align-items: end;
            column-gap: clamp(36px, 6vw, 96px);
            display: grid;
            grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
            max-width: none;
        }

        body.thabata-site .tn-section > .container > .section-heading:not(:has(> p)) {
            max-width: 1080px;
        }

        body.thabata-site .tn-section > .container > .section-heading:has(> p) .section-kicker,
        body.thabata-site .property-section-heading:has(> p) .section-kicker {
            grid-column: 1 / -1;
        }

        body.thabata-site .tn-section > .container > .section-heading:has(> p) h2,
        body.thabata-site .property-section-heading:has(> p) h2 {
            margin-bottom: 0;
            max-width: 880px;
        }

        body.thabata-site .tn-section > .container > .section-heading:has(> p) p,
        body.thabata-site .property-section-heading:has(> p) p {
            align-self: end;
            margin: 0;
            max-width: 560px;
        }
    }
}

@media (min-width: 992px) {
    body.thabata-site .page-hero:not(.page-hero--about-premium) > .container {
        align-items: end;
        column-gap: clamp(36px, 6vw, 96px);
        display: grid;
        grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.44fr);
    }

    body.thabata-site .page-hero:not(.page-hero--about-premium) .section-kicker,
    body.thabata-site .page-hero:not(.page-hero--about-premium) h1,
    body.thabata-site .page-hero:not(.page-hero--about-premium) p,
    body.thabata-site .page-hero:not(.page-hero--about-premium) .page-hero__actions {
        grid-column: 1;
    }

    body.thabata-site .page-hero:not(.page-hero--about-premium) h1,
    body.thabata-site .page-hero:not(.page-hero--about-premium) p {
        max-width: 920px;
    }

    body.thabata-site .page-hero:not(.page-hero--about-premium) .page-hero-highlights {
        align-self: end;
        display: grid;
        gap: 12px;
        grid-column: 2;
        grid-row: 2 / span 3;
        justify-self: stretch;
        margin-top: 0;
    }

    body.thabata-site .page-hero:not(.page-hero--about-premium) .page-hero-highlights span {
        border-radius: 8px;
        justify-content: flex-start;
        min-height: 48px;
        width: 100%;
    }

    body.thabata-site .tn-section > .container > .row,
    body.thabata-site .cta-panel > .row,
    body.thabata-site .home-highlight-row {
        align-items: stretch;
        display: flex;
        flex-wrap: wrap;
        row-gap: 30px;
    }

    body.thabata-site .tn-section > .container > .row > [class*="col-"],
    body.thabata-site .cta-panel > .row > [class*="col-"],
    body.thabata-site .home-highlight-row > [class*="col-"] {
        display: flex;
        flex-direction: column;
    }

    body.thabata-site .tn-section > .container > .row > [class*="col-"] > .tn-card,
    body.thabata-site .tn-section > .container > .row > [class*="col-"] > .tn-step,
    body.thabata-site .tn-section > .container > .row > [class*="col-"] > .content-slab,
    body.thabata-site .tn-section > .container > .row > [class*="col-"] > .form-panel,
    body.thabata-site .tn-section > .container > .row > [class*="col-"] > .quote-card,
    body.thabata-site .home-highlight-row > [class*="col-"] > .collection-card {
        flex: 1 1 auto;
        margin-bottom: 0;
        width: 100%;
    }

    body.thabata-site .cta-panel {
        padding: clamp(38px, 4vw, 50px);
    }

    body.thabata-site .cta-panel > .row {
        align-items: center;
    }

    body.thabata-site .cta-panel__actions {
        align-items: flex-start;
        margin-top: 0;
    }

    body.thabata-site .property-section-heading {
        margin-bottom: clamp(30px, 4vw, 48px);
        max-width: none;
    }

    body.thabata-site .page-hero.property-search-hero > .container {
        display: block;
    }

    body.thabata-site .property-search-hero .property-search {
        max-width: none;
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    body.thabata-site #colecoes .home-highlight-row,
    body.thabata-site #curadoria > .container > .row,
    body.thabata-site #portfolio > .container > .row,
    body.thabata-site #perfis > .container > .row,
    body.thabata-site #regiao > .container > .row,
    body.thabata-site #como-funciona > .container > .row,
    body.thabata-site #sobre-pilares > .container > .row,
    body.thabata-site #sobre-importancia > .container > .row,
    body.thabata-site #contato-briefing > .container > .row {
        display: grid;
        gap: 30px;
        grid-auto-rows: 1fr;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-left: 0;
        margin-right: 0;
    }

    body.thabata-site #colecoes .home-highlight-row::before,
    body.thabata-site #colecoes .home-highlight-row::after,
    body.thabata-site #curadoria > .container > .row::before,
    body.thabata-site #curadoria > .container > .row::after,
    body.thabata-site #portfolio > .container > .row::before,
    body.thabata-site #portfolio > .container > .row::after,
    body.thabata-site #perfis > .container > .row::before,
    body.thabata-site #perfis > .container > .row::after,
    body.thabata-site #regiao > .container > .row::before,
    body.thabata-site #regiao > .container > .row::after,
    body.thabata-site #como-funciona > .container > .row::before,
    body.thabata-site #como-funciona > .container > .row::after,
    body.thabata-site #sobre-pilares > .container > .row::before,
    body.thabata-site #sobre-pilares > .container > .row::after,
    body.thabata-site #sobre-importancia > .container > .row::before,
    body.thabata-site #sobre-importancia > .container > .row::after,
    body.thabata-site #contato-briefing > .container > .row::before,
    body.thabata-site #contato-briefing > .container > .row::after {
        content: none;
        display: none;
    }

    body.thabata-site #colecoes .home-highlight-row > [class*="col-"],
    body.thabata-site #curadoria > .container > .row > [class*="col-"],
    body.thabata-site #portfolio > .container > .row > [class*="col-"],
    body.thabata-site #perfis > .container > .row > [class*="col-"],
    body.thabata-site #regiao > .container > .row > [class*="col-"],
    body.thabata-site #como-funciona > .container > .row > [class*="col-"],
    body.thabata-site #sobre-pilares > .container > .row > [class*="col-"],
    body.thabata-site #sobre-importancia > .container > .row > [class*="col-"],
    body.thabata-site #contato-briefing > .container > .row > [class*="col-"] {
        display: flex;
        float: none;
        padding-left: 0;
        padding-right: 0;
        width: auto;
    }

    body.thabata-site #colecoes .home-highlight-row > [class*="col-"] > .collection-card,
    body.thabata-site #curadoria > .container > .row > [class*="col-"] > .tn-card,
    body.thabata-site #portfolio > .container > .row > [class*="col-"] > .tn-card,
    body.thabata-site #perfis > .container > .row > [class*="col-"] > .tn-card,
    body.thabata-site #regiao > .container > .row > [class*="col-"] > .tn-card,
    body.thabata-site #como-funciona > .container > .row > [class*="col-"] > .tn-step,
    body.thabata-site #sobre-pilares > .container > .row > [class*="col-"] > .tn-card,
    body.thabata-site #sobre-importancia > .container > .row > [class*="col-"] > .tn-card,
    body.thabata-site #contato-briefing > .container > .row > [class*="col-"] > .tn-card {
        flex: 1 1 auto;
        margin-bottom: 0;
        width: 100%;
    }
}

@media (max-width: 991px) {
    body.thabata-site .thabata-navbar .container {
        display: block;
    }

    body.thabata-site .home-video-grid,
    body.thabata-site .page-hero:not(.page-hero--about-premium) > .container {
        grid-template-columns: 1fr;
    }

    body.thabata-site .page-hero:not(.page-hero--about-premium) .page-hero-highlights {
        margin-top: 24px;
    }

    body.thabata-site .property-listing__head {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    body.thabata-site .tn-section {
        padding: 56px 0;
    }

    body.thabata-site .page-hero {
        padding: 62px 0 54px;
    }

    body.thabata-site .section-heading {
        margin-bottom: 28px;
    }

    body.thabata-site .tn-card,
    body.thabata-site .content-slab,
    body.thabata-site .form-panel,
    body.thabata-site .quote-card,
    body.thabata-site .cta-panel,
    body.thabata-site .tn-step,
    body.thabata-site .brand-panel {
        border-radius: 20px;
        padding: 24px;
    }

    body.thabata-site .property-listing__head {
        margin-bottom: 16px;
    }
}

/* TrustMarketing public property template */
body.trust-property-page,
body.trust-property-page *,
body.trust-property-page *::before,
body.trust-property-page *::after {
    box-sizing: border-box;
}

body.trust-property-page {
    --trust-white: #ffffff;
    --trust-bg: #f8f8f6;
    --trust-bg2: #f0efe9;
    --trust-ink: #1a1a1a;
    --trust-ink2: #3d3d3d;
    --trust-muted: #757575;
    --trust-border: #e4e4e0;
    --trust-border-strong: #d0cfc8;
    --trust-green: #243b2f;
    --trust-green2: #2f4d3e;
    --trust-gold: #b8893a;
    --trust-gold-fill: #cfa054;
    --trust-gold-light: #f0e4c4;
    background: var(--trust-white);
    color: var(--trust-ink);
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    overflow-x: hidden;
    padding-top: 60px;
    -webkit-font-smoothing: antialiased;
}

body.thabata-site .trust-property,
body.thabata-site .trust-lightbox {
    --trust-white: #ffffff;
    --trust-bg: #f8f8f6;
    --trust-bg2: #f0efe9;
    --trust-ink: #1a1a1a;
    --trust-ink2: #3d3d3d;
    --trust-muted: #757575;
    --trust-border: #e4e4e0;
    --trust-border-strong: #d0cfc8;
    --trust-green: #243b2f;
    --trust-green2: #2f4d3e;
    --trust-gold: #b8893a;
    --trust-gold-fill: #cfa054;
    --trust-gold-light: #f0e4c4;
    color: var(--trust-ink);
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

body.thabata-site .trust-property *,
body.thabata-site .trust-property *::before,
body.thabata-site .trust-property *::after,
body.thabata-site .trust-lightbox *,
body.thabata-site .trust-lightbox *::before,
body.thabata-site .trust-lightbox *::after {
    box-sizing: border-box;
}

body.trust-property-page img,
body.trust-property-page video,
body.trust-property-page iframe,
body.trust-property-page svg {
    max-width: 100%;
}

body.trust-property-page button,
body.trust-property-page input,
body.trust-property-page textarea {
    font: inherit;
}

body.trust-property-page button {
    color: inherit;
}

.trust-nav {
    align-items: center;
    background: #fff;
    border-bottom: 1px solid var(--trust-border);
    display: flex;
    height: 60px;
    justify-content: space-between;
    left: 0;
    padding: 0 40px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 100;
}

.trust-nav__logo {
    align-items: center;
    display: flex;
    gap: 10px;
    text-decoration: none;
}

.trust-nav__hex {
    align-items: center;
    background: var(--trust-green);
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    display: flex;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.trust-nav__hex span {
    color: var(--trust-gold-fill);
    font-family: "DM Serif Display", serif;
    font-size: 12px;
}

.trust-nav__brand {
    color: var(--trust-ink);
    font-family: "DM Serif Display", serif;
    font-size: 16px;
    font-style: italic;
}

.trust-nav__right {
    align-items: center;
    display: flex;
    gap: 20px;
}

.trust-nav__link {
    color: var(--trust-muted);
    font-size: 13px;
    text-decoration: none;
}

.trust-nav__link:hover {
    color: var(--trust-green);
}

.trust-nav__cta,
.trust-wa-float,
.trust-wa-big,
.trust-contact-form button,
.trust-split a,
.trust-external-link {
    background: var(--trust-green);
    border: 0;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-weight: 600;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.trust-nav__cta {
    font-size: 13px;
    padding: 8px 20px;
}

.trust-nav__cta:hover,
.trust-contact-form button:hover,
.trust-split a:hover,
.trust-external-link:hover {
    background: var(--trust-green2);
    color: #fff;
}

.trust-property {
    background: #fff;
}

.trust-photo-grid {
    background: var(--trust-border);
    border-radius: 8px;
    display: grid;
    gap: 4px;
    grid-template-columns: 1.55fr 1fr 1fr;
    grid-template-rows: 195px 195px;
    margin: 0 auto;
    max-width: 1200px;
    overflow: hidden;
    position: relative;
    width: calc(100% - 80px);
}

.trust-photo-grid button {
    background: var(--trust-bg2);
    border: 0;
    cursor: pointer;
    min-height: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
}

.trust-photo-grid img,
.trust-gallery-item img,
.trust-highlight img,
.trust-split img,
.trust-similar img {
    display: block;
    height: 100%;
    transition: transform 0.35s ease, filter 0.35s ease;
    width: 100%;
}

.trust-photo-grid button:hover img,
.trust-gallery-item:hover img,
.trust-highlight:hover img,
.trust-split button:hover img,
.trust-similar a:hover img {
    transform: rotate(var(--property-image-rotation, 0deg)) scale(1.035);
}

.trust-photo-grid__main {
    grid-row: 1 / 3;
}

.trust-photo-grid__thumb--more::after {
    align-items: center;
    background: rgba(0, 0, 0, 0.56);
    color: #fff;
    content: attr(data-label);
    display: flex;
    font-size: 14px;
    font-weight: 600;
    inset: 0;
    justify-content: center;
    position: absolute;
}

.trust-photo-grid__wm {
    bottom: 16px;
    color: rgba(255, 255, 255, 0.82);
    font-family: "DM Serif Display", serif;
    font-size: 14px;
    font-style: italic;
    left: 16px;
    pointer-events: none;
    position: absolute;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
}

.trust-photo-grid__count,
.trust-photo-grid__open {
    align-items: center;
    border-radius: 4px;
    display: inline-flex;
    gap: 6px;
    position: absolute;
    z-index: 4;
}

.trust-photo-grid__count {
    background: rgba(0, 0, 0, 0.5);
    bottom: 14px;
    color: #fff;
    font-size: 12px;
    left: 14px;
    padding: 5px 10px;
}

.trust-photo-grid__open {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--trust-border-strong);
    bottom: 14px;
    color: var(--trust-ink);
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 14px;
    right: 14px;
}

.trust-photo-grid svg,
.trust-spec svg,
.trust-features svg,
.trust-map-card svg,
.trust-location svg {
    fill: none;
    height: 16px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
    width: 16px;
}

.trust-layout {
    align-items: start;
    display: grid;
    gap: 36px;
    grid-template-columns: minmax(0, 1fr) 320px;
    margin: 0 auto;
    max-width: 1200px;
    padding: 28px 0 80px;
    width: calc(100% - 80px);
}

.trust-main-col {
    min-width: 0;
}

.trust-side-col {
    display: grid;
    gap: 16px;
    position: sticky;
    top: 76px;
}

.trust-meta {
    color: var(--trust-muted);
    font-size: 13px;
    margin: 0 0 8px;
}

.trust-meta span {
    color: var(--trust-border-strong);
}

.trust-headline h1,
.trust-section h2,
.trust-contact-card h2,
.trust-facts-card h2,
.trust-map-card h2,
.trust-invest-box h2,
.trust-split h2 {
    color: var(--trust-ink);
    font-family: "DM Serif Display", serif;
    font-weight: 400;
    line-height: 1.08;
    margin: 0;
}

.trust-headline h1 {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 8px;
}

.trust-location {
    align-items: flex-start;
    color: var(--trust-muted);
    display: flex;
    font-size: 13px;
    gap: 6px;
    margin: 0 0 16px;
}

.trust-location svg {
    color: var(--trust-gold);
    flex: 0 0 auto;
    margin-top: 3px;
}

.trust-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.trust-tags span {
    background: #f0ede6;
    border: 1px solid var(--trust-border-strong);
    border-radius: 3px;
    color: var(--trust-gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 4px 11px;
    text-transform: uppercase;
}

.trust-tags span:first-child {
    background: var(--trust-green);
    border-color: var(--trust-green);
    color: #fff;
}

.trust-price {
    background: var(--trust-gold-light);
    border: 1px solid var(--trust-gold);
    border-radius: 6px;
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 22px;
    padding: 16px 18px;
}

.trust-price span,
.trust-invest-box span,
.trust-split span,
.trust-contact-card__head span {
    color: var(--trust-green);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trust-price strong {
    color: var(--trust-ink);
    font-family: "DM Serif Display", serif;
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 400;
    line-height: 1;
}

.trust-specs {
    background: #fafaf8;
    border: 1.5px solid var(--trust-border-strong);
    border-radius: 8px;
    display: flex;
    margin-bottom: 22px;
    overflow: hidden;
}

.trust-spec {
    align-items: center;
    border-right: 1px solid var(--trust-border-strong);
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    padding: 16px 10px;
    text-align: center;
}

.trust-spec:last-child {
    border-right: 0;
}

.trust-spec svg {
    color: var(--trust-green);
    height: 20px;
    width: 20px;
}

.trust-spec strong {
    color: var(--trust-ink);
    font-size: 15px;
    line-height: 1;
}

.trust-spec span {
    color: var(--trust-ink2);
    font-size: 11px;
    line-height: 1.25;
}

.trust-highlight {
    background: #111;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    height: 220px;
    margin-bottom: 28px;
    overflow: hidden;
    padding: 0;
    position: relative;
    text-align: left;
    width: 100%;
}

.trust-highlight::after,
.trust-video-wrap::after {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.14), transparent);
    content: "";
    inset: 0;
    position: absolute;
}

.trust-highlight > span {
    bottom: 22px;
    color: #fff;
    display: grid;
    gap: 4px;
    left: 20px;
    max-width: 82%;
    position: absolute;
    z-index: 2;
}

.trust-highlight small {
    color: var(--trust-gold-fill);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.trust-highlight strong {
    font-family: "DM Serif Display", serif;
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 400;
    line-height: 1.16;
}

.trust-highlight em {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-style: italic;
}

.trust-section {
    margin-bottom: 32px;
}

.trust-section h2 {
    border-bottom: 1px solid var(--trust-border);
    font-size: 22px;
    margin-bottom: 16px;
    padding-bottom: 10px;
}

.trust-section-kicker {
    color: var(--trust-gold);
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.trust-video-wrap,
.trust-video-player {
    aspect-ratio: 16 / 9;
    background: #101010;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    display: block;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 100%;
}

.trust-video-wrap > span {
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    height: 72px;
    justify-content: center;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    z-index: 2;
}

.trust-video-wrap > span svg {
    color: var(--trust-green);
    fill: var(--trust-green);
    height: 28px;
    margin-left: 4px;
    stroke: none;
    width: 28px;
}

.trust-video-wrap em {
    bottom: 22px;
    color: #fff;
    font-family: "DM Serif Display", serif;
    font-size: 18px;
    font-style: italic;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
    z-index: 2;
}

.trust-video-wrap iframe {
    border: 0;
    display: block;
    height: 100%;
    position: relative;
    width: 100%;
    z-index: 3;
}

.trust-gallery-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.trust-gallery-chip {
    align-items: center;
    background: #fff;
    border: 1.5px solid var(--trust-border);
    border-radius: 20px;
    color: var(--trust-muted);
    cursor: pointer;
    display: inline-flex;
    font-size: 12px;
    gap: 6px;
    padding: 7px 14px;
    transition: all 0.18s ease;
}

.trust-gallery-chip span {
    background: rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    padding: 1px 7px;
}

.trust-gallery-chip:hover,
.trust-gallery-chip.is-active {
    border-color: var(--trust-green);
    color: var(--trust-green);
}

.trust-gallery-chip.is-active {
    background: var(--trust-green);
    color: #fff;
}

.trust-gallery-chip.is-active span {
    background: rgba(255, 255, 255, 0.2);
}

.trust-gallery-panel {
    display: none;
    gap: 4px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-gallery-panel.is-active {
    display: grid;
}

.trust-gallery-item {
    aspect-ratio: 1 / 1;
    background: var(--trust-bg2);
    border: 0;
    cursor: pointer;
    overflow: hidden;
    padding: 0;
    position: relative;
}

.trust-gallery-item span {
    align-items: flex-end;
    background: rgba(0, 0, 0, 0.42);
    color: #fff;
    display: flex;
    font-size: 11px;
    inset: 0;
    line-height: 1.35;
    opacity: 0;
    padding: 10px;
    position: absolute;
    transition: opacity 0.2s ease;
}

.trust-gallery-item:hover span {
    opacity: 1;
}

.trust-description {
    color: var(--trust-ink2);
    font-size: 14px;
    line-height: 1.85;
}

.trust-description p {
    margin: 0 0 12px;
}

.trust-description__button {
    margin-top: 8px;
}

.trust-features {
    background: var(--trust-border);
    border: 1px solid var(--trust-border);
    border-radius: 8px;
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
}

.trust-features article {
    background: #fff;
    display: grid;
    gap: 4px;
    min-height: 92px;
    padding: 16px 14px;
}

.trust-features svg {
    color: var(--trust-gold);
}

.trust-features strong {
    color: var(--trust-ink);
    font-size: 13px;
}

.trust-features span {
    color: var(--trust-muted);
    font-size: 11.5px;
    line-height: 1.45;
}

.trust-invest-box {
    background: var(--trust-gold-light);
    border: 1.5px solid var(--trust-gold);
    border-radius: 8px;
    margin-bottom: 28px;
    padding: 26px 28px;
}

.trust-invest-box h2 {
    font-size: clamp(28px, 3.5vw, 38px);
    margin: 4px 0 12px;
}

.trust-invest-box p {
    color: var(--trust-ink2);
    margin: 0 0 8px;
}

.trust-split {
    background: var(--trust-green);
    border-radius: 8px;
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
    margin-bottom: 32px;
    overflow: hidden;
}

.trust-split button {
    background: #111;
    border: 0;
    cursor: pointer;
    min-height: 300px;
    padding: 0;
}

.trust-split > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px;
}

.trust-split span {
    color: var(--trust-gold-fill);
}

.trust-split h2 {
    color: #fff;
    font-size: clamp(26px, 3.2vw, 38px);
    margin: 8px 0 12px;
}

.trust-split p {
    color: rgba(255, 255, 255, 0.74);
    margin: 0 0 20px;
}

.trust-split a {
    align-self: flex-start;
    background: #fff;
    color: var(--trust-green);
    padding: 11px 16px;
}

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

.trust-similar a {
    border: 1px solid var(--trust-border);
    border-radius: 8px;
    color: var(--trust-ink);
    display: grid;
    overflow: hidden;
    text-decoration: none;
}

.trust-similar img {
    aspect-ratio: 4 / 3;
}

.trust-similar strong,
.trust-similar span {
    padding-left: 14px;
    padding-right: 14px;
}

.trust-similar strong {
    font-family: "DM Serif Display", serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.1;
    padding-top: 14px;
}

.trust-similar span {
    color: var(--trust-gold);
    font-size: 13px;
    font-weight: 700;
    padding-bottom: 14px;
    padding-top: 5px;
}

.trust-alert {
    border-radius: 8px;
    font-size: 13px;
    padding: 12px 14px;
}

.trust-alert--success {
    background: #edf4ee;
    border: 1px solid #c5d8c9;
    color: #2d5a38;
}

.trust-alert--error {
    background: #fff0f0;
    border: 1px solid #efc2c2;
    color: #9c3030;
}

.trust-contact-card,
.trust-facts-card,
.trust-map-card {
    background: #fff;
    border: 1px solid var(--trust-border);
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(36, 59, 47, 0.08);
    padding: 22px;
}

.trust-contact-card__head {
    text-align: center;
}

.trust-contact-card h2,
.trust-facts-card h2,
.trust-map-card h2 {
    font-size: 26px;
    margin: 6px 0 8px;
}

.trust-contact-card p {
    color: var(--trust-muted);
    font-size: 13px;
    margin: 0 0 16px;
}

.trust-wa-big {
    background: #25d366;
    font-size: 15px;
    margin-bottom: 10px;
    padding: 14px;
    width: 100%;
}

.trust-wa-big:hover {
    background: #20ba5a;
    color: #fff;
}

.trust-contact-form {
    display: grid;
    gap: 10px;
}

.trust-contact-form label {
    color: var(--trust-muted);
    display: grid;
    font-size: 11px;
    font-weight: 700;
    gap: 5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.trust-contact-form input,
.trust-contact-form textarea {
    background: #fff;
    border: 1px solid var(--trust-border-strong);
    border-radius: 5px;
    color: var(--trust-ink);
    min-height: 42px;
    padding: 10px 11px;
    text-transform: none;
    width: 100%;
}

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

.trust-contact-form button {
    padding: 12px;
    width: 100%;
}

.trust-facts-card {
    display: grid;
    gap: 0;
}

.trust-facts-card div {
    border-top: 1px solid var(--trust-border);
    display: grid;
    gap: 3px;
    padding: 11px 0;
}

.trust-facts-card div:last-child {
    padding-bottom: 0;
}

.trust-facts-card span {
    color: var(--trust-muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.trust-facts-card strong {
    color: var(--trust-ink);
    font-size: 14px;
}

.trust-map-card div {
    align-items: center;
    background:
        repeating-linear-gradient(90deg, var(--trust-border) 0, var(--trust-border) 1px, transparent 1px, transparent 48px),
        repeating-linear-gradient(0deg, var(--trust-border) 0, var(--trust-border) 1px, transparent 1px, transparent 48px),
        var(--trust-bg);
    border: 1px solid var(--trust-border);
    border-radius: 6px;
    color: var(--trust-muted);
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    min-height: 160px;
    padding: 20px;
    text-align: center;
}

.trust-map-card svg {
    color: var(--trust-green);
    height: 28px;
    width: 28px;
}

.trust-lightbox {
    align-items: center;
    background: rgba(9, 14, 12, 0.94);
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 36px;
    position: fixed;
    z-index: 500;
}

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

.trust-lightbox figure {
    display: grid;
    gap: 12px;
    margin: 0;
    max-height: 88vh;
    max-width: min(1120px, 82vw);
}

.trust-lightbox img {
    background: #111;
    border-radius: 6px;
    display: block;
    max-height: 80vh;
    object-fit: var(--property-image-fit, contain);
    object-position: var(--property-image-position, center);
    transform: rotate(var(--property-image-rotation, 0deg));
    width: 100%;
}

.trust-lightbox figcaption,
.trust-lightbox span,
.trust-lightbox button {
    color: #fff;
}

.trust-lightbox figcaption {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    text-align: center;
}

.trust-lightbox button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    cursor: pointer;
    padding: 10px 14px;
    position: absolute;
}

.trust-lightbox__close {
    right: 24px;
    top: 24px;
}

.trust-lightbox__nav--prev {
    left: 24px;
    top: 50%;
}

.trust-lightbox__nav--next {
    right: 24px;
    top: 50%;
}

.trust-lightbox span {
    bottom: 24px;
    font-size: 13px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
}

.is-trust-lightbox-open {
    overflow: hidden;
}

.trust-footer {
    background: var(--trust-green);
    color: rgba(255, 255, 255, 0.78);
}

.trust-footer__inner {
    align-items: center;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1200px;
    padding: 30px 0;
    width: calc(100% - 80px);
}

.trust-footer strong {
    color: #fff;
    font-family: "DM Serif Display", serif;
    font-size: 22px;
    font-weight: 400;
}

.trust-footer p {
    margin: 6px 0 0;
}

.trust-footer__links {
    display: flex;
    gap: 16px;
}

.trust-footer__links a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.trust-wa-float {
    align-items: center;
    background: #25d366;
    border-radius: 999px;
    bottom: 22px;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.28);
    height: 54px;
    padding: 0 20px;
    position: fixed;
    right: 22px;
    z-index: 80;
}

@media (max-width: 980px) {
    .trust-nav {
        padding: 0 18px;
    }

    .trust-nav__right {
        gap: 12px;
    }

    .trust-nav__link {
        display: none;
    }

    .trust-photo-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 260px 150px 150px;
        width: calc(100% - 28px);
    }

    .trust-photo-grid__main {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .trust-layout {
        grid-template-columns: 1fr;
        padding-top: 22px;
        width: calc(100% - 28px);
    }

    .trust-side-col {
        position: static;
    }

    .trust-features,
    .trust-gallery-panel,
    .trust-similar-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-split {
        grid-template-columns: 1fr;
    }

    .trust-split button {
        min-height: 240px;
    }

    .trust-footer__inner {
        align-items: flex-start;
        flex-direction: column;
        width: calc(100% - 28px);
    }
}

@media (max-width: 640px) {
    body.trust-property-page {
        padding-top: 56px;
    }

    .trust-nav {
        height: 56px;
    }

    .trust-nav__brand {
        font-size: 15px;
    }

    .trust-nav__cta {
        padding: 8px 12px;
    }

    .trust-photo-grid {
        grid-template-rows: 250px 118px 118px;
    }

    .trust-photo-grid__thumb--3,
    .trust-photo-grid__thumb--4 {
        display: none;
    }

    .trust-headline h1 {
        font-size: 32px;
    }

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

    .trust-spec {
        border-bottom: 1px solid var(--trust-border-strong);
    }

    .trust-spec:nth-child(2n) {
        border-right: 0;
    }

    .trust-highlight {
        height: 190px;
    }

    .trust-highlight > span {
        left: 16px;
        max-width: calc(100% - 32px);
    }

    .trust-gallery-panel,
    .trust-features,
    .trust-similar-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trust-invest-box,
    .trust-split > div,
    .trust-contact-card,
    .trust-facts-card,
    .trust-map-card {
        padding: 20px;
    }

    .trust-lightbox {
        padding: 18px;
    }

    .trust-lightbox figure {
        max-width: 100%;
    }

    .trust-lightbox__nav--prev,
    .trust-lightbox__nav--next {
        top: auto;
        bottom: 70px;
    }

    .trust-wa-float {
        bottom: 16px;
        height: 48px;
        padding: 0 16px;
        right: 16px;
    }
}
