:root {
    --gold: #C9A96E;
    --gold-light: #E8D5B0;
    --gold-dark: #9A7A45;
    --gold-ink: #5F4420;
    --black: #0A0A0A;
    --d1: #111;
    --d2: #1a1a1a;
    --d3: #222;
    --cream: #F7F3EE;
    --text: rgba(255, 255, 255, .88);
    --muted: rgba(255, 255, 255, .5);
    --serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    --sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important
    }
}

body {
    background: var(--black);
    color: var(--text);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.8;
    overflow-x: hidden
}

.ph {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    font-style: normal;
    line-height: 1;
    flex-shrink: 0
}

.ph::before {
    content: '◆';
    font-size: .62em
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 12px;
    z-index: 2000;
    background: var(--gold);
    color: var(--black);
    padding: 8px 12px;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase
}

.skip-link:focus-visible {
    top: 12px
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 2px
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .4s
}

nav.scrolled {
    background: rgba(10, 10, 10, .95);
    backdrop-filter: blur(20px);
    padding: 14px 48px;
    border-bottom: 1px solid rgba(201, 169, 110, .15)
}

.nav-logo {
    font-family: var(--serif);
    font-size: 22px;
    letter-spacing: .15em;
    color: var(--gold);
    text-decoration: none
}

.nav-logo span {
    display: block;
    font-size: 10px;
    letter-spacing: .4em;
    color: var(--muted);
    font-family: var(--sans);
    font-weight: 300;
    text-transform: uppercase
}

.nav-btns {
    display: flex;
    gap: 12px;
    align-items: center
}

.btn-outline {
    border: 1px solid rgba(201, 169, 110, .6);
    color: var(--gold);
    padding: 9px 22px;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-family: var(--sans);
    cursor: pointer;
    background: transparent;
    transition: all .3s;
    text-decoration: none;
    display: inline-block
}

.btn-outline:hover {
    background: rgba(201, 169, 110, .1);
    border-color: var(--gold)
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
    padding: 9px 22px;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-family: var(--sans);
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all .3s;
    text-decoration: none;
    display: inline-block
}

.btn-gold:hover {
    background: var(--gold-light)
}

#hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end
}

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    transform: scale(1.05);
    animation: heroZoom 8s ease-out forwards
}

@keyframes heroZoom {
    to {
        transform: scale(1)
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .4) 50%, rgba(0, 0, 0, .2) 100%)
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 64px 80px;
    max-width: 900px
}

.hero-eyebrow {
    font-size: 11px;
    letter-spacing: .45em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 1s .5s ease forwards
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(52px, 7vw, 90px);
    font-weight: 300;
    line-height: 1.0;
    color: #fff;
    opacity: 0;
    animation: fadeUp 1s .7s ease forwards
}

.hero-title em {
    font-style: italic;
    color: var(--gold)
}

.hero-sub {
    font-size: 14px;
    letter-spacing: .12em;
    color: rgba(255, 255, 255, .65);
    margin-top: 16px;
    opacity: 0;
    animation: fadeUp 1s .9s ease forwards
}

.hero-pills {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s 1.1s ease forwards
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
    letter-spacing: .2em;
    color: var(--gold-light);
    text-transform: uppercase;
    padding: 5px 14px;
    border: 1px solid rgba(201, 169, 110, .3)
}

.hero-pill i {
    font-size: 13px
}

.hero-ctas {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    opacity: 0;
    animation: fadeUp 1s 1.3s ease forwards
}

.scroll-hint {
    position: absolute;
    bottom: 36px;
    right: 60px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px
}

.scroll-hint span {
    font-size: 9px;
    letter-spacing: .35em;
    color: var(--muted);
    text-transform: uppercase;
    writing-mode: vertical-rl
}

.scroll-hint::after {
    content: '';
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: sl 2s ease infinite
}

@keyframes sl {

    0%,
    100% {
        opacity: 0;
        transform: scaleY(0);
        transform-origin: top
    }

    50% {
        opacity: 1;
        transform: scaleY(1)
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s ease, transform .8s ease
}

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

.d1 {
    transition-delay: .1s
}

.d2 {
    transition-delay: .2s
}

.d3 {
    transition-delay: .3s
}

.d4 {
    transition-delay: .4s
}

.d5 {
    transition-delay: .5s
}

.sec {
    padding: 110px 64px
}

.sec-dark {
    background: var(--d1)
}

.sec-mid {
    background: var(--d2)
}

.sec-light {
    background: var(--cream)
}

.eyebrow {
    font-size: 10px;
    letter-spacing: .45em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px
}

.eyebrow-dark {
    color: var(--gold-ink)
}

.stitle {
    font-family: var(--serif);
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 300;
    line-height: 1.1;
    color: #fff
}

.stitle em {
    font-style: italic;
    color: var(--gold)
}

.stitle-dark {
    color: #1a1a1a
}

.sbody {
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
    margin-top: 22px;
    line-height: 1.9;
    max-width: 480px
}

.fw {
    height: 68vh;
    min-height: 480px;
    position: relative;
    overflow: hidden
}

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

.fw-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .82) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 56px 64px
}

.fw-overlay h2 {
    font-family: var(--serif);
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 300;
    color: #fff
}

.fw-overlay h2 strong {
    font-style: italic;
    color: var(--gold);
    font-weight: 400
}

.fw-overlay p {
    font-size: 14px;
    color: rgba(255, 255, 255, .65);
    margin-top: 10px;
    max-width: 480px
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.img-frame {
    position: relative
}

.img-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block
}

.img-frame::after {
    content: '';
    position: absolute;
    inset: -12px -12px 12px 12px;
    border: 1px solid rgba(201, 169, 110, .3);
    z-index: -1;
    pointer-events: none
}

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

.stat {
    border-top: 1px solid rgba(201, 169, 110, .3);
    padding-top: 18px
}

.stat-n {
    font-family: var(--serif);
    font-size: 40px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1
}

.stat-l {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 5px
}

.stat-l i {
    color: var(--gold);
    font-size: 12px
}

.hl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 60px
}

.hl-card {
    background: var(--d3);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: background .3s
}

.hl-card:hover {
    background: #2a2a2a
}

.hl-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width .4s
}

.hl-card:hover::after {
    width: 100%
}

.hl-icon {
    font-size: 26px;
    line-height: 1;
    color: var(--gold-light);
    margin-bottom: 16px
}

.hl-title {
    font-family: var(--serif);
    font-size: 21px;
    font-weight: 400;
    color: var(--gold-light);
    margin-bottom: 8px
}

.hl-text {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7
}

.am-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 3px;
    margin-top: 60px
}

.am-tile {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3
}

.am-tile.tall {
    grid-row: span 2;
    aspect-ratio: auto
}

.am-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s;
    display: block
}

.am-tile:hover img {
    transform: scale(1.05)
}

.tile-lbl {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    transition: all .3s
}

.am-tile:hover .tile-lbl {
    background: linear-gradient(to top, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .2) 100%)
}

.tile-name {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    color: #fff
}

.tile-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
    margin-top: 5px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s
}

.am-tile:hover .tile-desc {
    max-height: 60px
}

.fp-tabs {
    display: flex;
    gap: 0;
    margin-top: 44px;
    border-bottom: 1px solid #ddd
}

.fp-tab {
    padding: 13px 24px;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-family: var(--sans);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    color: #3f3a34;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    transition: all .3s
}

.fp-tab.active {
    color: var(--gold-ink);
    border-bottom-color: var(--gold-ink)
}

.fp-pane {
    display: none;
    padding: 44px 0
}

.fp-pane.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start
}

.fp-pane[hidden] {
    display: none !important
}

.fp-pane img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border: 1px solid #e0d8ce
}

.fp-type-lbl {
    font-size: 11px;
    letter-spacing: .3em;
    color: var(--gold-ink);
    text-transform: uppercase;
    margin-bottom: 14px
}

.fp-h3 {
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 400;
    color: #1a1a1a
}

.fp-specs {
    margin-top: 28px
}

.fp-row {
    display: flex;
    justify-content: space-between;
    padding: 13px 0;
    border-bottom: 1px solid #e8e0d6
}

.fp-row:first-child {
    border-top: 1px solid #e8e0d6
}

.fp-lbl {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #574f43
}

.fp-val {
    font-family: var(--serif);
    font-size: 17px;
    color: #1a1a1a
}

.fp-price-box {
    margin-top: 28px;
    padding: 22px;
    background: #1a1a1a
}

.fp-price-range {
    font-family: var(--serif);
    font-size: 26px;
    color: var(--gold)
}

.fp-price-note {
    font-size: 11px;
    color: rgba(255, 255, 255, .74);
    margin-top: 4px
}

.fp-actions .btn-outline {
    color: var(--gold-ink) !important;
    border-color: var(--gold-ink) !important
}

.fp-actions {
    display: flex;
    gap: 12px;
    margin-top: 22px
}

.specs-wrap {
    margin-top: 44px
}

.specs-card {
    border: 1px solid #e0d8ce;
    background: #f6f3ee;
    padding: 28px 24px
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px
}

.spec-col {
    display: flex;
    flex-direction: column;
    gap: 18px
}

.spec-item {
    display: grid;
    grid-template-columns: 175px 1fr;
    gap: 14px;
    align-items: start
}

.spec-item h3 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.35;
    color: #585858;
    font-weight: 600;
    margin: 0
}

.spec-item h3 i {
    color: var(--gold-dark);
    font-size: 16px;
    flex-shrink: 0
}

.spec-item-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    border-left: 1px solid #ddd5cb;
    padding-left: 16px
}

.spec-item-grid-single {
    grid-template-columns: 1fr
}

.spec-item p {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.45;
    color: #666
}

.spec-item p:last-child {
    margin-bottom: 0
}

.ptable {
    width: 100%;
    border-collapse: collapse;
    margin-top: 56px
}

.ptable thead tr {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold))
}

.ptable th {
    padding: 16px 24px;
    font-size: 11px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--black);
    font-family: var(--sans);
    font-weight: 500;
    text-align: left
}

.ptable td {
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    font-size: 15px
}

.ptable tbody tr:hover {
    background: rgba(201, 169, 110, .05)
}

.unit-t {
    font-family: var(--serif);
    font-size: 17px;
    color: var(--gold-light)
}

.unit-p {
    font-family: var(--serif);
    font-size: 19px;
    color: var(--gold)
}

.pnote {
    font-size: 12px;
    color: var(--muted);
    margin-top: 20px;
    line-height: 1.7
}

.pctas {
    display: flex;
    gap: 14px;
    margin-top: 44px
}

.loc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    margin-top: 56px;
    align-items: start
}

.loc-grid iframe {
    width: 100%;
    height: 440px;
    border: none;
    filter: grayscale(.2);
    display: block
}

.prox-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.prox-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, .08)
}

.prox-n {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text)
}

.prox-n i {
    color: var(--gold);
    font-size: 17px
}

.prox-t {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--gold)
}

.prox-u {
    font-size: 11px;
    color: var(--muted);
    margin-left: 3px
}

.about-img-frame {
    position: relative
}

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

.about-img-frame::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid rgba(201, 169, 110, .3);
    z-index: -1;
    pointer-events: none
}

.quote {
    font-family: var(--serif);
    font-size: 24px;
    font-style: italic;
    color: var(--gold-light);
    line-height: 1.5;
    margin-top: 28px;
    padding-left: 22px;
    border-left: 2px solid var(--gold)
}

.enq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center
}

.enq-grid img {
    width: 100%;
    height: 490px;
    object-fit: cover;
    display: block
}

.enq-form {
    display: flex;
    flex-direction: column;
    gap: 18px
}

.fg {
    display: flex;
    flex-direction: column;
    gap: 7px
}

.fg label {
    font-size: 10px;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--muted)
}

.fg input,
.fg select {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .12);
    color: var(--text);
    padding: 13px 15px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 300;
    outline: none;
    transition: border-color .3s
}

.fg input:focus,
.fg select:focus {
    border-color: var(--gold)
}

.fg input[aria-invalid="true"],
.fg select[aria-invalid="true"] {
    border-color: #d96d6d
}

.fg select option {
    background: var(--d2);
    color: var(--text)
}

.field-error {
    min-height: 16px;
    margin: 3px 0 0;
    font-size: 12px;
    color: #e79a9a
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.form-btns {
    display: flex;
    gap: 12px;
    margin-top: 6px
}

.form-btns button[disabled] {
    opacity: .65;
    cursor: not-allowed
}

.form-status {
    min-height: 19px;
    margin: 2px 0 0;
    font-size: 13px;
    letter-spacing: .01em
}

.form-status.is-info {
    color: var(--muted)
}

.form-status.is-success {
    color: #8cc6a6
}

.form-status.is-error {
    color: #e79a9a
}

.privacy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--muted);
    margin-top: 10px
}

.privacy i {
    color: var(--gold-light);
    font-size: 14px
}

footer {
    background: var(--black);
    border-top: 1px solid rgba(201, 169, 110, .2);
    padding: 60px 64px
}

.related-projects[data-related-projects-section] {
    padding: 110px 64px;
    background:
        radial-gradient(circle at 18% 0%, rgba(201, 169, 110, .12), transparent 30rem),
        var(--d1);
    color: var(--text);
    border-top: 1px solid rgba(201, 169, 110, .16)
}

.related-projects[data-related-projects-section] .related-projects__inner {
    max-width: 1180px
}

.related-projects[data-related-projects-section] .related-projects__header {
    max-width: none !important;
    margin-bottom: 56px
    width: 100%;
}

.related-projects[data-related-projects-section] .related-projects__header::before {
    content: "Related Projects";
    display: block;
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: .45em;
    line-height: 1.4;
    text-transform: uppercase
}

.related-projects[data-related-projects-section] .related-projects__header h2 {
    color: #fff;
    line-height: 1.1
    max-width: none !important;
    display: block;
    width: 100%;
}

.related-projects[data-related-projects-section] .related-projects__header h2::after {
    content: '';
    display: block;
    width: 72px;
    height: 1px;
    margin-top: 24px;
    background: var(--gold)
}

.related-projects[data-related-projects-section] .related-projects__header p {
    max-width: 560px;
    margin-top: 22px;
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
    line-height: 1.9
}

.related-projects[data-related-projects-section] .related-projects__grid {
    gap: 2px
}

.related-projects[data-related-projects-section] .related-projects__card {
    border: 0;
    border-radius: 0;
    background: var(--d3);
    box-shadow: none
}

.related-projects[data-related-projects-section] .related-projects__card:hover {
    background: #2a2a2a;
    box-shadow: none
}

.related-projects[data-related-projects-section] .related-projects__card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width .4s
}

.related-projects[data-related-projects-section] .related-projects__card:hover::after {
    width: 100%
}

.related-projects[data-related-projects-section] .related-projects__image {
    aspect-ratio: 16 / 11;
    opacity: .86;
    border-bottom: 1px solid rgba(201, 169, 110, .12)
}

.related-projects[data-related-projects-section] .related-projects__body {
    padding: 30px 28px 34px
}

.related-projects[data-related-projects-section] .related-projects__meta {
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: .28em
}

.related-projects[data-related-projects-section] .related-projects__body h3 {
    color: var(--gold-light);
    font-family: var(--serif);
    font-size: 23px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.22
}

.related-projects[data-related-projects-section] .related-projects__body h3 a:hover {
    color: #fff
  text-decoration: none;
}

.related-projects[data-related-projects-section] .related-projects__body p:last-child {
    margin-top: 12px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7
}

.ft-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 56px
}

.ft-brand {
    font-family: var(--serif);
    font-size: 26px;
    color: var(--gold)
}

.ft-tag {
    font-size: 11px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 7px
}

.ft-contact {
    margin-top: 22px;
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
    line-height: 2
}

.ft-contact p {
    display: flex;
    align-items: flex-start;
    gap: 8px
}

.ft-contact i {
    color: var(--gold);
    font-size: 16px;
    margin-top: 4px
}

.ft-heading {
    font-size: 10px;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px
}

.ft-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px
}

.ft-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
    transition: color .3s
}

.ft-links a:hover {
    color: var(--gold)
}

.ft-bot {
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    font-size: 11px;
    color: var(--muted)
}

.ft-disc {
    font-size: 11px;
    color: rgba(255, 255, 255, .72);
    margin-top: 10px;
    line-height: 1.7
}

.float-cta {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all .4s
}

.float-cta.vis {
    opacity: 1;
    transform: translateY(0)
}

.float-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

@media(max-width:1024px) {

    .two-col,
    .enq-grid {
        grid-template-columns: 1fr;
        gap: 44px
    }

    .hl-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .am-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .am-tile.tall {
        grid-row: span 1;
        aspect-ratio: 4/3
    }

    .loc-grid {
        grid-template-columns: 1fr
    }

    .fp-pane.active {
        grid-template-columns: 1fr
    }

    .specs-grid {
        grid-template-columns: 1fr
    }

    .ft-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:768px) {
    .hero-bg {
        background-image: url('assets/gallery/hero-sky-villas-mobile.jpg');
        background-position: center center;
        transform: none;
        animation: none
    }

    #hero {
        height: 100svh;
        min-height: 100svh
    }

    @supports (height: 100dvh) {
        #hero {
            height: 100dvh;
            min-height: 100dvh
        }
    }

    nav {
        padding: 14px 22px
    }

    nav.scrolled {
        padding: 11px 22px
    }

    .nav-btns .btn-outline {
        display: none
    }

    .hero-content {
        padding: 0 22px calc(env(safe-area-inset-bottom, 0px) + 20px)
    }

    .hero-eyebrow {
        margin-bottom: 12px;
        letter-spacing: .25em
    }

    .hero-title {
        font-size: clamp(34px, 12vw, 46px);
        line-height: .95
    }

    .hero-sub {
        margin-top: 10px;
        font-size: 12px;
        letter-spacing: .08em
    }

    .sec {
        padding: 72px 22px
    }

    .hl-grid {
        grid-template-columns: 1fr
    }

    .am-grid {
        grid-template-columns: 1fr
    }

    .stats {
        grid-template-columns: repeat(2, 1fr)
    }

    .hero-pills {
        display: none
    }

    .hero-ctas {
        margin-top: 18px;
        flex-wrap: wrap
    }

    .ft-grid {
        grid-template-columns: 1fr;
        gap: 36px
    }

    footer {
        padding: 44px 22px
    }

    .fw-overlay {
        padding: 28px 22px
    }

    .fp-tabs {
        flex-wrap: wrap
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .spec-item {
        grid-template-columns: 1fr
    }

    .spec-item-grid {
        padding-left: 12px
    }
}
