: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
}

/* Legacy .nav block (kept for the scrolled state styling). The position/flex
   layout properties moved to the canonical .nav rule below at line ~1710 +
   .nav-in flex container at ~1732, where the modern wrapper structure
   <nav class="nav"><div class="nav-in">…</div></nav> is properly laid out. */

.nav.scrolled {
    background: rgba(10, 10, 10, .95);
    backdrop-filter: blur(20px);
    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
}

/* Default responsive image behaviour - prevents aspect-ratio mismatch when a
   wider image is constrained by a container max-width. Specific elements that
   need fixed dimensions (.hero-bg-img, .fw img, .am-tile img, etc.) override
   these via their own rules. */
img { max-width: 100%; height: auto }

.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
}

/* Inline site-seo-utilities sets .page-updated color to dark navy - invisible
   on dark hero photos and on body.subpage .sec-dark sections. Override with a
   light gold tone in those contexts. (Lighthouse doesn't flag this because
   axe-core skips contrast checks over background-image hero photos.) */
.hero-content .page-updated,
body.subpage .sec-dark .page-updated {
    color: var(--gold-light) !important
}

.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);
    color: var(--d1)
}

/* On cream sections, gold-tinted text fails WCAG AA contrast - force darker
   variants for buttons, accent text, and headline italics. */
.sec-light a.btn-outline,
.sec-light .btn-outline {
    color: var(--d1)
}
.sec-light em,
.sec-light .stitle em,
.sec-light .stitle-dark em {
    color: var(--gold-ink)
}

.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
}

.sbody-dark {
    color: rgba(26, 26, 26, .72)
}

.sec-light details.faq-item > summary,
.sec-light details.faq-item > p {
    color: #1a1a1a
}

.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
    }
}


/* Subpage inline FAQ (added by tooling/migration/inline-faqs.mjs) */
#faq .faq-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

#faq details.faq-item {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  padding: 1rem 1.25rem;
  transition: border-color 0.2s ease;
}

#faq details.faq-item[open] {
  border-color: var(--gold);
}

#faq details.faq-item > summary {
  display: block;
  cursor: pointer;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.45;
  list-style: none;
  padding-right: 1.5rem;
  position: relative;
}

#faq details.faq-item > summary::-webkit-details-marker { display: none; }

#faq details.faq-item > summary::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 0.6rem;
  height: 0.6rem;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.2s ease;
}

#faq details.faq-item[open] > summary::after {
  transform: translateY(-25%) rotate(-135deg);
}

#faq details.faq-item > p {
  margin: 0.75rem 0 0;
  color: rgba(26, 26, 26, 0.72);
  line-height: 1.65;
}

#faq details.faq-item > summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  #faq details.faq-item,
  #faq details.faq-item > summary::after {
    transition: none;
  }
}

/* ══ SUBPAGE BODY STYLES ══ */
body.subpage{background:var(--cream);color:var(--d1)}
body.subpage main{padding-top:var(--navh,72px)}

/* Subpage section base - scoped to avoid clobbering the homepage palette */
body.subpage .sec{padding:clamp(3.5rem,7vw,6rem) clamp(1.25rem,4vw,2rem);max-width:1280px;margin:0 auto;background:var(--cream);color:var(--d1)}
body.subpage .sec-light{background:#fff;color:var(--d1)}
body.subpage .sec-dark{background:var(--black);color:var(--text);max-width:none;padding-left:0;padding-right:0}
body.subpage .sec-dark > *{max-width:1280px;margin-left:auto;margin-right:auto;padding-left:clamp(1.25rem,4vw,2rem);padding-right:clamp(1.25rem,4vw,2rem)}

body.subpage .eyebrow,body.subpage .eyebrow-dark{display:block;font-family:var(--sans);font-size:.68rem;font-weight:700;letter-spacing:.22em;text-transform:uppercase;color:var(--gold-ink);margin-bottom:10px}
body.subpage .sec-dark .eyebrow,body.subpage .sec-dark .eyebrow-dark{color:var(--gold-light)}

body.subpage .stitle{font-family:var(--serif);font-size:clamp(1.8rem,3.4vw,2.6rem);line-height:1.2;margin:0 0 1.1rem;font-weight:600;color:var(--d1)}
body.subpage .stitle em{font-style:italic;font-weight:500;color:var(--gold-dark)}
body.subpage .stitle-dark{color:var(--d1)}
body.subpage .stitle-dark em{color:var(--gold-dark)}
body.subpage .sec-dark .stitle,body.subpage .sec-dark .stitle-dark{color:#fff}
body.subpage .sec-dark .stitle em,body.subpage .sec-dark .stitle-dark em{color:var(--gold-light)}

body.subpage .sbody{font-size:1rem;line-height:1.8;max-width:75ch;margin:0 0 1rem;color:#3a3a3a}
body.subpage .sec-dark .sbody{color:rgba(255,255,255,.84)}
body.subpage .sbody a{color:var(--gold-ink);text-decoration:underline;text-underline-offset:3px;font-weight:600}
body.subpage .sec-dark .sbody a{color:var(--gold-light)}
body.subpage .sbody-dark{color:#3a3a3a}

body.subpage .stats{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:1rem;margin:1.75rem 0}
body.subpage .stat{background:rgba(201,169,110,.08);border:1px solid rgba(201,169,110,.18);border-radius:10px;padding:1.4rem 1rem;text-align:center}
body.subpage .sec-dark .stat{background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.14)}
body.subpage .stat-n{font-family:var(--serif);font-size:clamp(1.8rem,3vw,2.4rem);font-weight:700;color:var(--gold-dark);margin:0 0 .25rem;line-height:1.1}
body.subpage .sec-dark .stat-n{color:var(--gold-light)}
body.subpage .stat-l{font-size:.78rem;letter-spacing:.08em;text-transform:uppercase;color:#5a5a5a;margin:0;line-height:1.3}
body.subpage .sec-dark .stat-l{color:rgba(255,255,255,.74)}

body.subpage .ptable{width:100%;border-collapse:collapse;margin:1.5rem 0;font-size:.95rem;background:#fff;border-radius:10px;overflow:hidden;box-shadow:0 6px 24px rgba(10,10,10,.08)}
body.subpage .ptable th,body.subpage .ptable td{padding:.85rem 1rem;text-align:left;border-bottom:1px solid rgba(10,10,10,.08);color:var(--d1)}
body.subpage .ptable th{background:rgba(201,169,110,.12);font-weight:700;letter-spacing:.04em;font-size:.85rem;text-transform:uppercase}
body.subpage .ptable tr:last-child td{border-bottom:none}
body.subpage .ptable tr:hover td{background:rgba(201,169,110,.05)}
body.subpage .sec-dark .ptable{box-shadow:none}

/* CTA-row banner support (parity with godrej-aveline pattern) */
.cta-row{background:transparent;padding:0;display:flex;justify-content:center;align-items:center;gap:.75rem;flex-wrap:wrap}
.cta-row:has(.cta-row-in){background:linear-gradient(90deg,#C9A96E 0%,#9A7A45 100%);display:block}
.cta-row-in{display:grid;grid-template-columns:1fr auto;align-items:center;gap:40px;padding:32px 28px}
.cta-row p{color:rgba(10,10,10,.78);font-size:.9rem;margin:0;line-height:1.6}
.cta-row h3{color:var(--black);font-size:1.3rem;margin-bottom:4px}
.cta-row .btn{white-space:nowrap}
.cta-row:has(.cta-row-in) .btn{background:#fff;color:var(--black)}
.cta-row:has(.cta-row-in) .btn:hover{background:var(--black);color:#fff}

/* Standalone gold/outline buttons (when used without .btn base) on subpages */
body.subpage .cta-row > .btn-gold,
body.subpage .cta-row > .btn-outline,
body.subpage a.btn-gold:not(.btn),
body.subpage a.btn-outline:not(.btn),
body.subpage button.btn-gold:not(.btn),
body.subpage button.btn-outline:not(.btn){
  display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:13px 28px;border-radius:2px;font-family:var(--sans);font-size:.85rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;text-decoration:none;cursor:pointer;transition:all .3s ease
}
body.subpage button.btn-gold:not(.btn){background:var(--gold);color:var(--black);border:none}
body.subpage button.btn-outline:not(.btn){background:transparent;color:var(--d1);border:1px solid rgba(201,169,110,.6)}
/* Anchor-styled outline buttons need dark text on the light .sec / .sec-light / .sec-mid backgrounds
   (body.subpage .sec rule overrides .sec-mid to cream, so all three are cream by default). */
body.subpage .sec:not(.sec-dark) a.btn-outline:not(.btn){color:var(--d1)}
/* Unstyled inline anchors inside body copy of cream-bg sections inherit the dark-mode text colour
   (rgba(255,255,255,.88) ≈ near-white) → invisible on cream. Force --gold-ink so they meet WCAG AA. */
body.subpage .sec:not(.sec-dark) a:not(.btn):not(.btn-gold):not(.btn-outline){color:var(--gold-ink);text-decoration:underline;text-underline-offset:2px}
body.subpage .sec:not(.sec-dark) a:not(.btn):not(.btn-gold):not(.btn-outline):hover{color:var(--d1)}
/* .pnote uses var(--muted) (rgba(255,255,255,.5)) which is invisible on cream subpage sections. */
body.subpage .sec:not(.sec-dark) .pnote,
body.subpage .sec:not(.sec-dark) figcaption.pnote{color:rgba(26,26,26,0.7)}
body.subpage a.btn-gold:not(.btn):hover,body.subpage button.btn-gold:not(.btn):hover:not(:disabled){background:var(--gold-light);transform:translateY(-2px)}
body.subpage a.btn-outline:not(.btn):hover,body.subpage button.btn-outline:not(.btn):hover:not(:disabled){background:var(--gold);color:var(--black)}
body.subpage button.btn-gold:not(.btn):disabled,body.subpage button.btn-outline:not(.btn):disabled{opacity:.6;cursor:not-allowed}

/* Inline CTA cluster on subpages - override .cta-row gradient banner */
body.subpage .sec .cta-row{background:transparent;padding:0;display:flex;flex-wrap:wrap;gap:.75rem;align-items:center;justify-content:center}

/* FAQ accordion (subpage variant - uses .faq-list / .faq-item) */
body.subpage .faq-list{display:flex;flex-direction:column;gap:.6rem;margin-top:1.5rem}
body.subpage .faq-item{background:rgba(201,169,110,.05);border:1px solid rgba(201,169,110,.2);border-radius:8px;padding:1rem 1.25rem;transition:background .2s ease}
body.subpage .faq-item summary{font-weight:600;cursor:pointer;list-style:none;color:var(--d1);padding-right:1.5rem;position:relative}
body.subpage .faq-item summary::-webkit-details-marker{display:none}
body.subpage .faq-item summary::after{content:"+";position:absolute;right:0;top:50%;transform:translateY(-50%);font-size:1.2rem;font-weight:700;color:var(--gold-dark);transition:transform .2s ease}
body.subpage .faq-item[open]{background:rgba(201,169,110,.1)}
body.subpage .faq-item[open] summary::after{content:"−"}
body.subpage .faq-item p{margin:.75rem 0 0;line-height:1.7;color:#3a3a3a}

/* Builder / about-builder page bits */
body.subpage .builder-stats{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:1rem;margin:1.5rem 0}
body.subpage .bstat{text-align:center;padding:1rem .75rem;background:rgba(201,169,110,.08);border-radius:10px}
body.subpage .bstat .sv{font-family:var(--serif);font-size:clamp(1.6rem,2.6vw,2.1rem);font-weight:700;color:var(--gold-dark);line-height:1.1}
body.subpage .bstat .sl{font-size:.78rem;letter-spacing:.08em;text-transform:uppercase;color:#5a5a5a;margin-top:.25rem}

/* Subpage hero with side-by-side form */
body.subpage .sec-split{display:grid;grid-template-columns:1fr 400px;gap:clamp(2rem,4vw,3.5rem);align-items:start}
body.subpage .sec-split-content{min-width:0}
body.subpage .sec-split-form{position:sticky;top:calc(var(--navh,72px) + 1.25rem)}
body.subpage .sec-light .sec-split-form .form-card,body.subpage .sec .sec-split-form .form-card{background:#fff;border:1px solid rgba(201,169,110,.25);box-shadow:0 18px 56px rgba(10,10,10,.12);border-radius:10px;padding:1.5rem}
body.subpage .sec-split-form .form-card h2{font-family:var(--serif);color:var(--d1);font-size:1.35rem;margin-bottom:6px}
body.subpage .sec-split-form .form-card > p{color:#3a3a3a;font-size:.85rem;margin-bottom:18px;line-height:1.6}
body.subpage .sec-split-form .form-card .form-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
body.subpage .sec-split-form .form-card .form-btns{margin-top:14px}
body.subpage .sec-split-form .form-card .form-btns .btn-gold{width:100%;justify-content:center}
body.subpage .sec-split-form .form-card .privacy{font-size:.72rem;color:#5a5a5a;margin-top:12px;text-align:center;display:flex;align-items:center;justify-content:center;gap:6px}
body.subpage .sec-split-form .form-card .field-error{display:block;color:#b3263f;font-size:.72rem;margin-top:4px}
body.subpage .sec-split-form .form-card .form-status{padding:10px 12px;font-size:.82rem;margin-top:10px;border:1px solid rgba(201,169,110,.25);background:rgba(201,169,110,.05)}
@media (max-width:980px){
  body.subpage .sec-split{grid-template-columns:1fr}
  body.subpage .sec-split-form{position:static;max-width:560px}
  body.subpage .sec-split-form .form-card .form-row{grid-template-columns:1fr}
}

/* ══ RESPONSIVE OVERFLOW GUARDS ══ */
html,body{overflow-x:hidden}
body.subpage .ptable,body.subpage .ptable th,body.subpage .ptable td,
body.subpage .sbody,body.subpage .sbody li,body.subpage .sbody p,
body.subpage .ovv,body.subpage .disc,body.subpage .faq-ai,
body.subpage .faq-item p,body.subpage .faq-item summary,
.foot p,.foot .disc{
  overflow-wrap:anywhere;word-break:break-word
}
body.subpage .sec,body.subpage .sec-light,body.subpage .sec-dark,body.subpage .sec-split-content,body.subpage .sec-split-form,
body.subpage main,body.subpage main *:not(table){min-width:0}

@media (max-width:768px){
  body.subpage .ptable{display:block;overflow-x:auto;-webkit-overflow-scrolling:touch;max-width:100%}
  body.subpage .ptable thead,body.subpage .ptable tbody,body.subpage .ptable tr{width:100%}
  body.subpage .stats{grid-template-columns:repeat(auto-fit,minmax(140px,1fr))}
  body.subpage .sec{padding-left:1.25rem;padding-right:1.25rem}
  body.subpage .sec-dark > *{padding-left:1.25rem;padding-right:1.25rem}
}

/* ══ CANONICAL NAVBAR (gold/black palette) ══ */
:root{--navh:72px}
.wrap{max-width:1280px;margin:0 auto;padding:0 28px}
.nav{position:fixed;top:0;left:0;right:0;height:var(--navh);z-index:1000;transition:all .3s ease}
.nav.top{background:rgba(10,10,10,.82);backdrop-filter:blur(6px);border-bottom:1px solid rgba(201,169,110,.18)}
.nav.scrolled{background:rgba(10,10,10,.96);backdrop-filter:blur(16px);box-shadow:0 6px 22px rgba(0,0,0,.28)}
.nav-in{max-width:1280px;margin:0 auto;padding:0 28px;height:100%;display:flex;align-items:center;justify-content:space-between;gap:20px}
.nav-logo{display:flex;align-items:center;gap:10px}
.nav-logo .lt-badge{background:var(--gold);color:var(--black);font-family:var(--sans);font-size:.78rem;font-weight:800;padding:5px 11px;letter-spacing:.06em}
.navlinks{display:flex;align-items:center;gap:2px;list-style:none;margin:0;padding:0}
.navlinks a{font-size:.75rem;font-weight:500;color:rgba(255,255,255,.88);padding:6px 10px;letter-spacing:.05em;text-transform:uppercase;transition:color .2s;text-decoration:none}
.navlinks a:hover{color:var(--gold)}
.nav-cta{font-size:.75rem;font-weight:700;padding:9px 20px;background:var(--gold);color:var(--black);letter-spacing:.06em;text-transform:uppercase;transition:all .3s;text-decoration:none;display:inline-block}
.nav-cta:hover{background:var(--gold-light)}
.burger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:4px;background:none;border:0}
.burger span{display:block;width:22px;height:1.5px;background:var(--gold);transition:all .3s}
.mob-nav{display:none;position:fixed;top:var(--navh);left:0;right:0;background:rgba(10,10,10,.98);padding:24px 28px 32px;z-index:999;border-top:1px solid rgba(201,169,110,.2)}
.mob-nav.on{display:block}
.mob-nav a{display:block;padding:12px 0;border-bottom:1px solid rgba(255,255,255,.07);font-size:.85rem;font-weight:500;color:rgba(255,255,255,.88);text-transform:uppercase;letter-spacing:.06em;text-decoration:none}
.mob-nav a:hover{color:var(--gold)}
.mob-nav .btn-red,.mob-nav .btn{margin-top:20px;width:100%;justify-content:center;display:flex;background:var(--gold);color:var(--black);padding:13px 28px;text-align:center}

/* ══ CANONICAL FOOTER (gold/black palette) ══ */
.foot{background:#0a0a0a;padding:56px 0 32px;color:rgba(255,255,255,.78)}
.foot .wrap{max-width:1280px;margin:0 auto;padding:0 28px}
.foot-grid{display:grid;grid-template-columns:2fr 1fr;gap:48px;padding-bottom:40px;border-bottom:1px solid rgba(201,169,110,.18);margin-bottom:28px}
.foot-brand .fl{display:flex;align-items:center;gap:10px;margin-bottom:16px;text-decoration:none}
.foot-brand .lt-b{background:var(--gold);color:var(--black);font-size:.75rem;font-weight:800;padding:5px 11px;letter-spacing:.06em}
.foot-brand .pn{font-family:var(--serif);font-size:1.05rem;font-weight:600;color:var(--gold-light)}
.foot-brand p{font-size:.78rem;color:rgba(255,255,255,.72);line-height:1.7;margin:0 0 16px}
.foot-brand .disc{font-size:.7rem;color:rgba(255,255,255,.55);line-height:1.6}
.foot-brand p a,.foot-brand .disc a{color:var(--gold-light);text-decoration:underline}
.foot-col h3,.foot-col h4{font-size:.62rem;font-weight:700;letter-spacing:.18em;text-transform:uppercase;color:var(--gold);margin-bottom:16px}
.foot-col ul{list-style:none;padding:0;margin:0}
.foot-col a{display:block;font-size:.78rem;color:rgba(255,255,255,.78);padding:4px 0;transition:color .2s;text-decoration:none}
.foot-col a:hover{color:var(--gold)}
.foot-bot{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px}
.foot-bot p{font-size:.7rem;color:rgba(255,255,255,.55);margin:0}
.foot-bot-links{display:flex;gap:20px}
.foot-bot-links a{font-size:.7rem;color:rgba(255,255,255,.78);transition:color .2s;text-decoration:none}
.foot-bot-links a:hover{color:var(--gold)}

@media(max-width:1024px){
  .foot-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:1130px){
  .navlinks{display:none}
  .nav-cta{display:none}
  .burger{display:flex}
}
@media(max-width:768px){
  .foot-grid{grid-template-columns:1fr;gap:32px}
  .foot-bot{flex-direction:column;align-items:flex-start}
}

/* Ensure subpage body has top padding so fixed nav doesn't overlap content */
body.subpage main{padding-top:calc(var(--navh) + 16px)}


/* phase-b brand-text */
.brand-logo-img { display: block; width: 48px; height: 48px; object-fit: contain; flex: 0 0 48px; filter: none !important; }
.brand-text { display: inline-flex; flex-direction: column; line-height: 1.15; gap: 0; margin-left: 0.625rem; color: inherit; text-decoration: none; }
.brand-developer { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; opacity: 0.7; }
.brand-project { font-size: 1rem; font-weight: 700; }
a:has(> .brand-text), a.nav-logo, a.footer-logo, a.footer-brand, a.navbar_logo-link, a.footer_logo-link, a.navbar__brand, a.brand { display: inline-flex; align-items: center; gap: 0.625rem; text-decoration: none; color: inherit; }
