/* Reset (longhand only, single-class or element selectors limited to body/html) */
html {
    scroll-behavior: smooth;
}

.htflow-body {
    margin: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
    background-color: rgb(22, 28, 38);
    color: rgb(244, 242, 236);
    font-family: 'Instrument Sans', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

.htflow-wrapper {
    min-height: 100vh;
    width: 100%;
    background-color: rgb(22, 28, 38);
    overflow-x: hidden;
}

/* ===== NAV ===== */
.htflow-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(22, 28, 38, 0);
    transition-property: background-color, border-bottom-color, backdrop-filter;
    transition-duration: 400ms;
    transition-timing-function: ease;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgba(0,0,0,0);
}
.htflow-nav-scrolled {
    background-color: rgba(22, 28, 38, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom-color: rgb(48, 54, 64);
}
.htflow-nav-inner {
    max-width: 1280px;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    padding-top: 0;
    padding-right: 24px;
    padding-bottom: 0;
    padding-left: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.htflow-nav-logo-link {
    display: inline-block;
}
.htflow-nav-logo-img {
    height: 56px;
    width: auto;
    display: block;
}
.htflow-nav-links {
    display: none;
    align-items: center;
    column-gap: 40px;
}
.htflow-nav-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: rgba(244, 242, 236, 0.7);
    text-decoration-line: none;
    transition-property: color;
    transition-duration: 300ms;
}
.htflow-nav-link-hover {
    color: rgba(244, 242, 236, 1);
}
.htflow-nav-cta {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.01em;
    padding-top: 10px;
    padding-right: 24px;
    padding-bottom: 10px;
    padding-left: 24px;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: rgba(244, 242, 236, 0.3);
    border-right-color: rgba(244, 242, 236, 0.3);
    border-bottom-color: rgba(244, 242, 236, 0.3);
    border-left-color: rgba(244, 242, 236, 0.3);
    color: rgb(244, 242, 236);
    text-decoration-line: none;
    background-color: rgba(0,0,0,0);
    transition-property: background-color, color;
    transition-duration: 300ms;
}
.htflow-nav-cta-hover {
    background-color: rgb(244, 242, 236);
    color: rgb(22, 28, 38);
}
.htflow-nav-burger {
    display: flex;
    flex-direction: column;
    row-gap: 6px;
    background-color: transparent;
    border-top-width: 0;
    border-right-width: 0;
    border-bottom-width: 0;
    border-left-width: 0;
    cursor: pointer;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
}
.htflow-burger-bar {
    display: block;
    width: 24px;
    height: 1px;
    background-color: rgb(244, 242, 236);
    transition-property: transform, opacity;
    transition-duration: 300ms;
}
.htflow-nav-mobile {
    display: none;
    flex-direction: column;
    row-gap: 24px;
    background-color: rgba(22, 28, 38, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgb(48, 54, 64);
    padding-top: 32px;
    padding-right: 24px;
    padding-bottom: 32px;
    padding-left: 24px;
}
.htflow-nav-mobile-open {
    display: flex;
}
.htflow-nav-mobile-link {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-weight: 300;
    color: rgb(244, 242, 236);
    text-decoration-line: none;
}
.htflow-nav-mobile-cta {
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: rgba(244, 242, 236, 0.3);
    border-right-color: rgba(244, 242, 236, 0.3);
    border-bottom-color: rgba(244, 242, 236, 0.3);
    border-left-color: rgba(244, 242, 236, 0.3);
    color: rgb(244, 242, 236);
    text-decoration-line: none;
    text-align: center;
    padding-top: 12px;
    padding-right: 0;
    padding-bottom: 12px;
    padding-left: 0;
    font-size: 14px;
    font-weight: 500;
}

/* ===== HERO ===== */
.htflow-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}
.htflow-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.htflow-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.htflow-hero-vignette {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: radial-gradient(ellipse at center, rgba(20,10,0,0.15) 0%, rgba(20,10,0,0.55) 100%);
}
.htflow-hero-tint {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(120, 53, 15, 0.1);
    mix-blend-mode: multiply;
}
.htflow-hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 0;
    padding-right: 24px;
    padding-bottom: 0;
    padding-left: 24px;
    max-width: 768px;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
}
.htflow-hero-tag {
    display: block;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgb(248, 250, 252);
    margin-bottom: 24px;
}
.htflow-hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 56px;
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: -0.03em;
    color: rgb(244, 242, 236);
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
}
.htflow-hero-sub {
    margin-top: 32px;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    max-width: 512px;
    color: rgb(248, 250, 252);
    font-size: 16px;
    line-height: 1.625;
    letter-spacing: -0.01em;
}
.htflow-hero-actions {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 16px;
    row-gap: 16px;
}
.htflow-hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.htflow-hero-scroll-line {
    display: block;
    width: 1px;
    height: 32px;
    background-color: rgba(244, 242, 236, 0.3);
}

/* ===== BUTTONS ===== */
.htflow-btn-primary {
    display: inline-flex;
    align-items: center;
    column-gap: 12px;
    background-color: rgb(244, 242, 236);
    color: rgb(22, 28, 38);
    padding-top: 16px;
    padding-right: 32px;
    padding-bottom: 16px;
    padding-left: 32px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.01em;
    text-decoration-line: none;
    cursor: pointer;
    border-top-width: 0;
    border-right-width: 0;
    border-bottom-width: 0;
    border-left-width: 0;
    transition-property: background-color, color;
    transition-duration: 300ms;
    font-family: 'Instrument Sans', system-ui, sans-serif;
}
.htflow-btn-primary-hover {
    background-color: rgb(220, 215, 205);
}
.htflow-btn-primary-block {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
    background-color: rgb(244, 242, 236);
    color: rgb(22, 28, 38);
    padding-top: 12px;
    padding-right: 24px;
    padding-bottom: 12px;
    padding-left: 24px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.01em;
    text-decoration-line: none;
    transition-property: background-color;
    transition-duration: 300ms;
    margin-top: 16px;
}
.htflow-btn-outline {
    display: inline-flex;
    align-items: center;
    column-gap: 12px;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: rgb(244, 242, 236);
    border-right-color: rgb(244, 242, 236);
    border-bottom-color: rgb(244, 242, 236);
    border-left-color: rgb(244, 242, 236);
    color: rgb(244, 242, 236);
    background-color: transparent;
    padding-top: 16px;
    padding-right: 32px;
    padding-bottom: 16px;
    padding-left: 32px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.01em;
    text-decoration-line: none;
    cursor: pointer;
    font-family: 'Instrument Sans', system-ui, sans-serif;
    transition-property: background-color, color;
    transition-duration: 300ms;
}
.htflow-btn-outline-hover {
    background-color: rgb(244, 242, 236);
    color: rgb(22, 28, 38);
}
.htflow-arrow {
    display: inline-block;
    font-size: 16px;
    line-height: 1;
}

/* ===== TYPOLOGIES ===== */
.htflow-typologies {
    padding-top: 80px;
    padding-right: 24px;
    padding-bottom: 80px;
    padding-left: 24px;
}
.htflow-typologies-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 36px;
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 0.95;
    color: rgb(244, 242, 236);
    text-align: center;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 64px;
    margin-left: 0;
}
.htflow-typologies-grid {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 32px;
    row-gap: 48px;
    max-width: 1280px;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
}
.htflow-typology-card {
    display: flex;
    flex-direction: column;
}
.htflow-typology-imgbox {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
}
.htflow-typology-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition-property: transform;
    transition-duration: 700ms;
    transition-timing-function: ease-out;
}
.htflow-typology-img-hover {
    transform: scale(1.03);
}
.htflow-typology-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding-top: 24px;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
    color: rgb(248, 250, 252);
}
.htflow-typology-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-weight: 300;
    color: rgb(244, 242, 236);
    letter-spacing: -0.03em;
    line-height: 0.95;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
}
.htflow-typology-specs {
    margin-top: 16px;
    display: flex;
    column-gap: 24px;
    font-size: 14px;
}
.htflow-spec-val {
    font-size: 18px;
    font-weight: 300;
    color: rgb(244, 242, 236);
    font-variant-numeric: tabular-nums;
}
.htflow-spec-lbl {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgb(160, 164, 175);
    margin-top: 2px;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
}
.htflow-typology-desc {
    margin-top: 16px;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    color: rgb(248, 250, 252);
    font-size: 14px;
    line-height: 1.625;
    letter-spacing: -0.01em;
}
.htflow-typology-list {
    margin-top: 16px;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
    list-style-type: none;
    flex-grow: 1;
}
.htflow-typology-item {
    display: flex;
    align-items: center;
    column-gap: 10px;
    color: rgba(248, 250, 252, 0.9);
    font-size: 14px;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
}
.htflow-bullet {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
    background-color: rgba(244, 242, 236, 0.4);
    flex-shrink: 0;
}
.htflow-typology-price {
    margin-top: 20px;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    font-weight: 500;
    color: rgb(244, 242, 236);
    font-size: 24px;
    font-variant-numeric: tabular-nums;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

/* ===== DETAIL ===== */
.htflow-detail {
    position: relative;
    overflow: hidden;
}
.htflow-detail-row {
    display: flex;
    flex-direction: column;
    min-height: 70vh;
    align-items: stretch;
}
.htflow-detail-row-reverse {
    display: flex;
    flex-direction: column;
    min-height: 70vh;
}
.htflow-detail-imgbox {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
}
.htflow-detail-imgbox img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.htflow-detail-imgbox::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(22, 28, 38, .375);
}

.htflow-detail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.htflow-detail-textcol {
    display: flex;
    align-items: center;
    width: 100%;
}
.htflow-detail-text {
    padding-top: 64px;
    padding-right: 32px;
    padding-bottom: 64px;
    padding-left: 32px;
    max-width: 576px;
}
.htflow-detail-tag {
    display: block;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgb(160, 164, 175);
    margin-bottom: 16px;
}
.htflow-detail-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 36px;
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 0.95;
    color: rgb(244, 242, 236);
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
}
.htflow-detail-specs {
    margin-top: 24px;
    display: flex;
    column-gap: 32px;
}
.htflow-detail-desc {
    margin-top: 24px;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    color: rgb(248, 250, 252);
    font-size: 14px;
    line-height: 1.625;
    letter-spacing: -0.01em;
}
.htflow-detail-list {
    margin-top: 24px;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
    list-style-type: none;
}
.htflow-detail-item {
    display: flex;
    align-items: center;
    column-gap: 12px;
    color: rgba(248, 250, 252, 0.9);
    font-size: 14px;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}
.htflow-detail-price {
    margin-top: 32px;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
    font-size: 24px;
    color: rgb(244, 242, 236);
    font-variant-numeric: tabular-nums;
}
.htflow-detail-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    column-gap: 12px;
    row-gap: 12px;
}

/* ===== RESORT ===== */
.htflow-resort {
    position: relative;
    overflow: hidden;
    background-color: #FFF;
}
.htflow-resort-inner {
    position: relative;
    z-index: 10;
    padding: 96px 32px;
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
}
.htflow-resort-tag {
    display: block;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgb(160, 164, 175);
    margin-bottom: 20px;
}
.htflow-resort-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 40px;
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 0.95;
    color: rgb(22, 28, 38);
    margin: 0;
}
.htflow-resort-sub {
    margin: 24px auto 0;
    max-width: 576px;
    color: rgb(22, 28, 38);
    font-size: 16px;
    line-height: 1.625;
    letter-spacing: -0.01em;
}
.htflow-resort-facts {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 32px;
    row-gap: 32px;
}
.htflow-fact-val {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 300;
    color: rgb(22, 28, 38);
    font-variant-numeric: tabular-nums;
    display: block;
}
.htflow-fact-lbl {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #161c26c4;
    margin: 4px 0 0;
}
.htflow-resort-actions {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    column-gap: 16px;
    row-gap: 16px;
}

/* ===== LOCATION ===== */
.htflow-location {
    position: relative;
    overflow: hidden;
}
.htflow-location-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.htflow-location-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 85%;
    display: block;
}
.htflow-location-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(22, 28, 38, 0.8);
}
.htflow-location-inner {
    position: relative;
    z-index: 10;
    padding: 96px 32px;
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
}
.htflow-location-tag {
    display: block;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgb(160, 164, 175);
    margin-bottom: 20px;
}
.htflow-location-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 40px;
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 0.95;
    color: rgb(244, 242, 236);
    margin: 0;
}
.htflow-location-sub {
    margin: 24px auto 0;
    max-width: 576px;
    color: rgb(248, 250, 252);
    font-size: 16px;
    line-height: 1.625;
    letter-spacing: -0.01em;
}
.htflow-location-facts {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 32px;
    row-gap: 32px;
}

.htflow-location-inner .htflow-location-facts .htflow-fact .htflow-fact-val,
.htflow-location-inner .htflow-location-facts .htflow-fact .htflow-fact-lbl {
    color: #FFFF;
}

    /* ===== RENTAL ===== */
.htflow-rental {
    padding-top: 96px;
    padding-right: 32px;
    padding-bottom: 96px;
    padding-left: 32px;
    background-color: rgb(22, 28, 38);
}
.htflow-rental-inner {
    max-width: 1024px;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    text-align: center;
}
.htflow-rental-tag {
    display: block;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgb(160, 164, 175);
    margin-bottom: 20px;
}
.htflow-rental-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 40px;
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 0.95;
    color: rgb(244, 242, 236);
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
}
.htflow-rental-sub {
    margin-top: 24px;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    max-width: 576px;
    color: rgb(248, 250, 252);
    font-size: 16px;
    line-height: 1.625;
    letter-spacing: -0.01em;
}
.htflow-rental-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 32px;
    row-gap: 32px;
}

.htflow-rental .htflow-fact-val, .htflow-rental .htflow-fact-lbl {
    color: rgb(244, 242, 236);
}

/* ===== CONTACT ===== */
.htflow-contact {
    background-color: rgb(30, 36, 46);
}
.htflow-contact-inner {
    padding-top: 96px;
    padding-right: 32px;
    padding-bottom: 96px;
    padding-left: 32px;
    max-width: 1152px;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
}
.htflow-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 96px;
    row-gap: 64px;
}
.htflow-contact-tag {
    display: block;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgb(160, 164, 175);
    margin-bottom: 16px;
}
.htflow-contact-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 36px;
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 0.95;
    color: rgb(244, 242, 236);
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
}
.htflow-contact-sub {
    margin-top: 24px;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    color: rgb(248, 250, 252);
    font-size: 16px;
    line-height: 1.625;
    letter-spacing: -0.01em;
    max-width: 448px;
}
.htflow-contact-block {
    margin-top: 40px;
    margin-right: 0;
    margin-bottom: 12px;
    margin-left: 0;
}
.htflow-contact-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgb(160, 164, 175);
    margin-bottom: 6px;
}
.htflow-contact-link {
    color: rgb(244, 242, 236);
    font-size: 14px;
    font-weight: 500;
    text-decoration-line: none;
    transition-property: opacity;
    transition-duration: 200ms;
}
.htflow-contact-link-block {
    display: block;
    color: rgb(244, 242, 236);
    font-size: 14px;
    font-weight: 500;
    text-decoration-line: none;
    transition-property: opacity;
    transition-duration: 200ms;
}
.htflow-link-faint-hover {
    opacity: 0.7;
}

/* ===== FORM ===== */
.htflow-form, .wpcf7-form {
    display: flex;
    flex-direction: column;
    position: relative;
    row-gap: 28px;
}

.wpcf7-form.sending::before {
    content: '';
    position: absolute;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .5);
    z-index: 1;
    transform: translate(-50%, -50%);
    border-radius: 5px;
}

.hidden-fields-container {
    display: none !important;
}

.htflow-form-hidden {
    display: none;
}
.htflow-field {
    display: flex !important;
    flex-direction: column !important;
}

.htflow-field > p {
    display: flex !important;
    flex-direction: column !important;
    margin: 0 !important;
}

.htflow-field br {
    display: none !important;
}

.htflow-field-label {
    display: block;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgb(248, 250, 252);
    margin-bottom: 8px;
}
.htflow-field-input, .wpcf7-form input:not([type="submit"]), .wpcf7-form textarea {
    width: 100% !important;
    background-color: transparent !important;
    border-top-width: 0 !important;
    border-right-width: 0 !important;
    border-left-width: 0 !important;
    border-bottom-width: 1px !important;
    border-bottom-style: solid !important;
    border-bottom-color: rgb(48, 54, 64) !important;
    padding-top: 12px !important;
    padding-right: 0 !important;
    padding-bottom: 12px  !important;
    padding-left: 0  !important;
    color: rgb(244, 242, 236)  !important;
    font-size: 14px  !important;
    letter-spacing: -0.01em !important;
    outline-style: none !important;
    font-family: 'Instrument Sans', system-ui, sans-serif !important;
    transition-property: border-bottom-color !important;
    transition-duration: 300ms !important;
    box-sizing: border-box !important;
}

.htflow-field-input::placeholder, .wpcf7-form input::placeholder, .wpcf7-form textarea::placeholder {
    color: rgba(244, 242, 236, .35)  !important;
}

.wpcf7-list-item {
    margin-left: 0;
}

.htflow-field-input-focus {
    border-bottom-color: rgb(244, 242, 236) !important;
}
.htflow-field-textarea {
    width: 100%;
    background-color: transparent !important;
    border-top-width: 0 !important;
    border-right-width: 0 !important;
    border-left-width: 0 !important;
    border-bottom-width: 1px !important;
    border-bottom-style: solid !important;
    border-bottom-color: rgb(48, 54, 64) !important;
    padding-top: 12px !important;
    padding-right: 0 !important;
    padding-bottom: 12px !important;
    padding-left: 0 !important;
    color: rgb(244, 242, 236) !important;
    font-size: 14px !important;
    letter-spacing: -0.01em !important;
    outline-style: none !important;
    font-family: 'Instrument Sans', system-ui, sans-serif !important;
    resize: none !important;
    box-sizing: border-box !important;
}
.htflow-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.htflow-chip, .wpcf7-radio .wpcf7-list-item {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding-top: 8px;
    padding-right: 16px;
    padding-bottom: 8px;
    padding-left: 16px;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: rgb(48, 54, 64);
    border-right-color: rgb(48, 54, 64);
    border-bottom-color: rgb(48, 54, 64);
    border-left-color: rgb(48, 54, 64);
    background-color: transparent;
    color: rgb(248, 250, 252);
    cursor: pointer;
    font-family: 'Instrument Sans', system-ui, sans-serif;
    transition-property: background-color, color, border-top-color, border-right-color, border-bottom-color, border-left-color;
    transition-duration: 300ms;
}

.wpcf7-radio .wpcf7-list-item input {
    display: none !important;
}

.htflow-chip-active, .wpcf7-radio .wpcf7-list-item:has(input:checked) {
    background-color: rgb(244, 242, 236);
    color: rgb(22, 28, 38);
    border-top-color: rgb(244, 242, 236);
    border-right-color: rgb(244, 242, 236);
    border-bottom-color: rgb(244, 242, 236);
    border-left-color: rgb(244, 242, 236);
}
.htflow-form-submit, .wpcf7-submit, .wpcf7-form input,
.wpcf7-form p .wpcf7-submit:not(:has(.dark)) {
    display: inline-flex!important;
    align-items: center;
    justify-content: center;
    column-gap: 12px;
    background-color: rgb(244, 242, 236)!important;
    color: rgb(22, 28, 38)!important;
    padding: 16px 40px!important;
    font-size: 14px!important;
    font-weight: 500!important;
    letter-spacing: -0.01em;
    line-height: 1!important;
    border: 0!important;
    cursor: pointer;
    font-family: 'Instrument Sans', system-ui, sans-serif!important;
    align-self: flex-start;
    transition-property: background-color;
    transition-duration: 300ms;
    width: fit-content!important;
}

.wpcf7-response-output {
    font-family: 'Instrument Sans', system-ui, sans-serif !important;
    color: rgb(244, 242, 236) !important;
    padding: .75rem 1rem !important;
    font-weight: 200;
    text-transform: uppercase;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.wpcf7-not-valid-tip {
    color: #e69898!important;
    left: 10px!important;
    bottom: 0!important;
    font-family: 'Instrument Sans', system-ui, sans-serif !important;
}

.wpcf7-form.invalid .wpcf7-response-output  {
    background: #9b6363 !important;
}

.wpcf7-form.sent .wpcf7-response-output  {
    background: #477447 !important;
}

.htflow-form-note {
    font-size: 11px;
    color: rgba(160, 164, 175, 0.7);
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
}
.htflow-form-success {
    display: none;
    text-align: center;
    max-width: 512px;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    grid-column-start: 1;
    grid-column-end: -1;
}
.htflow-form-success-visible {
    display: block;
}
.htflow-success-tag {
    display: block;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgb(160, 164, 175);
    margin-bottom: 24px;
}
.htflow-success-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 40px;
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 0.95;
    color: rgb(244, 242, 236);
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
}
.htflow-success-sub {
    margin-top: 24px;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    color: rgb(160, 164, 175);
    font-size: 16px;
    line-height: 1.625;
}
.htflow-success-link {
    margin-top: 24px;
    display: inline-block;
    color: rgb(160, 164, 175);
    font-size: 14px;
    text-decoration-line: none;
    transition-property: color;
    transition-duration: 200ms;
}

/* ===== FOOTER ===== */
.htflow-footer {
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: rgb(48, 54, 64);
    padding-top: 48px;
    padding-right: 24px;
    padding-bottom: 48px;
    padding-left: 24px;
}
.htflow-footer-top {
    max-width: 1280px;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    row-gap: 24px;
    column-gap: 24px;
}
.htflow-footer-logo {
    height: 40px;
    width: auto;
    display: block;
}
.htflow-footer-links {
    display: flex;
    flex-wrap: wrap;
    column-gap: 24px;
    row-gap: 12px;
}
.htflow-footer-link {
    font-size: 11px;
    color: rgb(160, 164, 175);
    text-decoration-line: none;
    transition-property: color;
    transition-duration: 200ms;
}
.htflow-footer-bottom {
    max-width: 1280px;
    margin-top: 32px;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    padding-top: 24px;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: rgb(48, 54, 64);
}
.htflow-footer-legal {
    font-size: 10px;
    color: rgba(160, 164, 175, 0.5);
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
}

/* ===== MODAL ===== */
.htflow-modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    align-items: center;
    justify-content: center;
    padding-top: 16px;
    padding-right: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
}
.htflow-modal-open {
    display: flex;
}
.htflow-modal-backdrop {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.85);
}
.htflow-modal-frame {
    position: relative;
    width: 95vw;
    max-width: 1024px;
    aspect-ratio: 3 / 2;
    background-color: rgb(0, 0, 0);
    overflow: hidden;
}
.htflow-modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.htflow-modal-prev {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    color: rgba(255, 255, 255, 0.9);
    background-color: transparent;
    border-top-width: 0;
    border-right-width: 0;
    border-bottom-width: 0;
    border-left-width: 0;
    font-size: 48px;
    line-height: 1;
    cursor: pointer;
    padding-top: 0;
    padding-right: 12px;
    padding-bottom: 0;
    padding-left: 12px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
}
.htflow-modal-next {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    color: rgba(255, 255, 255, 0.9);
    background-color: transparent;
    border-top-width: 0;
    border-right-width: 0;
    border-bottom-width: 0;
    border-left-width: 0;
    font-size: 48px;
    line-height: 1;
    cursor: pointer;
    padding-top: 0;
    padding-right: 12px;
    padding-bottom: 0;
    padding-left: 12px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
}
.htflow-modal-x {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 10;
    color: rgba(255, 255, 255, 0.9);
    background-color: transparent;
    border-top-width: 0;
    border-right-width: 0;
    border-bottom-width: 0;
    border-left-width: 0;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    padding-top: 0;
    padding-right: 8px;
    padding-bottom: 0;
    padding-left: 8px;
}
.htflow-modal-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    column-gap: 8px;
}
.htflow-modal-dot {
    width: 6px;
    height: 6px;
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.5);
    border-top-width: 0;
    border-right-width: 0;
    border-bottom-width: 0;
    border-left-width: 0;
    cursor: pointer;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
    transition-property: width, background-color;
    transition-duration: 300ms;
}
.htflow-modal-dot-active {
    width: 32px;
    background-color: rgb(255, 255, 255);
}

/* ===== MEDIA QUERIES ===== */
@media (min-width: 768px) {
    .htflow-nav-inner { padding-right: 48px; padding-left: 48px; height: 96px; }
    .htflow-nav-logo-img { height: 80px; }
    .htflow-nav-links { display: flex; }
    .htflow-nav-burger { display: none; }
    .htflow-hero-title { font-size: 88px; }
    .htflow-typologies { padding-right: 48px; padding-left: 48px; }
    .htflow-typologies-title { font-size: 48px; }
    .htflow-typologies-grid { grid-template-columns: repeat(3, 1fr); }
    .htflow-detail-title { font-size: 48px; }
    .htflow-resort-title { font-size: 48px; }
    .htflow-resort-facts { grid-template-columns: repeat(5, 1fr); }
    .htflow-resort-actions { flex-direction: row; }
    .htflow-location-title { font-size: 48px; }
    .htflow-location-facts { grid-template-columns: repeat(5, 1fr); }
    .htflow-rental-title { font-size: 48px; }
    .htflow-rental-grid { grid-template-columns: repeat(3, 1fr); }
    .htflow-contact-title { font-size: 48px; }
    .htflow-success-title { font-size: 48px; }
    .htflow-footer-top { flex-direction: row; align-items: center; }
    .htflow-footer { padding-right: 48px; padding-left: 48px; }
}

@media (min-width: 1024px) {
    .htflow-typologies { padding-top: 128px; padding-right: 64px; padding-bottom: 128px; padding-left: 64px; }
    .htflow-typologies-title { font-size: 60px; }
    .htflow-detail-row { flex-direction: row; }
    .htflow-detail-row-reverse { flex-direction: row-reverse; }
    .htflow-detail-imgbox { width: 50%; aspect-ratio: auto; }
    .htflow-detail-textcol { width: 50%; }
    .htflow-detail-text { padding-top: 80px; padding-right: 80px; padding-bottom: 80px; padding-left: 80px; }
    .htflow-resort-title { font-size: 60px; }
    .htflow-location-title { font-size: 60px; }
    .htflow-rental-title { font-size: 60px; }
    .htflow-contact-grid { grid-template-columns: 1fr 1fr; }
    .htflow-hero-title { font-size: 112px; }
}