:root {
    --navy-950: #06131c;
    --navy-900: #071722;
    --navy-850: #0b1f2d;
    --navy-800: #102b3c;
    --gold: #d6b36a;
    --gold-light: #ead39d;
    --ivory: #f8f5ef;
    --white: #ffffff;
    --ink: #152234;
    --muted: #64748b;
    --line: rgba(12, 31, 45, 0.12);
    --shadow: 0 30px 70px rgba(4, 18, 28, 0.18);
    --radius-lg: 28px;
    --radius-md: 18px;
    --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 9999; background: #fff; padding: 12px 16px; border-radius: 8px; }
.skip-link:focus { top: 16px; }

.site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 20;
    border-bottom: 1px solid rgba(255,255,255,.16);
}
.header-inner { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; }
.brand-mark {
    width: 48px; height: 48px; border: 1px solid rgba(214,179,106,.75); border-radius: 50%;
    display: grid; place-items: center; color: var(--gold-light); font-family: Georgia, serif; font-size: 15px; letter-spacing: 1px;
}
.brand-copy { display: grid; line-height: 1.12; }
.brand-copy strong { font-family: Georgia, "Times New Roman", serif; font-size: 19px; font-weight: 500; letter-spacing: .2px; }
.brand-copy small { margin-top: 5px; color: rgba(255,255,255,.66); font-size: 9px; letter-spacing: 1.7px; text-transform: uppercase; }
.header-cta { color: #fff; text-decoration: none; font-weight: 700; font-size: 13px; letter-spacing: .3px; padding: 12px 18px; border: 1px solid rgba(255,255,255,.42); border-radius: 999px; transition: .25s ease; }
.header-cta:hover { background: #fff; color: var(--navy-900); }

.hero { position: relative; min-height: 100vh; overflow: hidden; background: var(--navy-950); }
.hero-media { position: absolute; inset: 0; background: url("images/hero-lagoon.webp") center/cover no-repeat; transform: scale(1.025); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,18,27,.94) 0%, rgba(5,18,27,.78) 41%, rgba(5,18,27,.42) 70%, rgba(5,18,27,.3) 100%), linear-gradient(0deg, rgba(5,18,27,.75) 0%, transparent 42%); }
.hero-grid { position: relative; z-index: 2; min-height: 100vh; display: grid; grid-template-columns: minmax(0, 1fr) minmax(460px, 570px); gap: 68px; align-items: center; padding-top: 126px; padding-bottom: 72px; }
.hero-copy { color: #fff; max-width: 650px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--gold-light); font-size: 12px; font-weight: 800; letter-spacing: 1.65px; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.eyebrow.dark { color: #9a732f; }
.hero h1, .section h2, .final-cta-content h2, .thank-you-card h1 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.035em; line-height: 1.04; }
.hero h1 { margin: 22px 0; font-size: clamp(46px, 5.2vw, 78px); max-width: 720px; }
.hero h1 span { color: var(--gold-light); }
.hero-intro { max-width: 610px; margin: 0; font-size: clamp(17px, 1.4vw, 21px); line-height: 1.65; color: rgba(255,255,255,.78); }
.hero-highlights { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin: 34px 0; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.18); border-radius: 16px; overflow: hidden; max-width: 610px; }
.hero-highlights div { padding: 18px 18px 17px; background: rgba(7,23,34,.54); backdrop-filter: blur(12px); }
.hero-highlights strong { display: block; color: #fff; font-family: Georgia, serif; font-size: 27px; font-weight: 400; line-height: 1; }
.hero-highlights span { display: block; margin-top: 8px; color: rgba(255,255,255,.68); font-size: 11px; letter-spacing: .45px; text-transform: uppercase; }
.primary-button, .submit-button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 25px; border-radius: 999px; border: 0; text-decoration: none; font-weight: 800; font-size: 14px; letter-spacing: .2px; cursor: pointer; background: var(--gold); color: var(--navy-950); box-shadow: 0 14px 35px rgba(214,179,106,.22); transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.primary-button:hover, .submit-button:hover { transform: translateY(-2px); background: #e1c07b; box-shadow: 0 18px 42px rgba(214,179,106,.28); }
.primary-button.light { background: #fff; box-shadow: none; }
.microcopy { margin: 14px 0 0; color: rgba(255,255,255,.54); font-size: 12px; }

.lead-card { background: rgba(255,255,255,.97); border: 1px solid rgba(255,255,255,.52); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 30px; max-height: calc(100vh - 128px); overflow: auto; overscroll-behavior: contain; }
.lead-card::-webkit-scrollbar { width: 7px; }
.lead-card::-webkit-scrollbar-thumb { background: #cfd5db; border-radius: 20px; }
.form-heading > span { color: #9a732f; text-transform: uppercase; font-size: 10px; font-weight: 800; letter-spacing: 1.6px; }
.form-heading h2 { margin: 7px 0 6px; font-family: Georgia, serif; font-size: 31px; font-weight: 400; line-height: 1.15; }
.form-heading p { margin: 0 0 23px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.form-alert { margin: 0 0 20px; padding: 14px 16px; background: #fff1f1; border: 1px solid #fac8c8; border-radius: 12px; color: #8f2525; font-size: 13px; }
.form-alert ul { margin: 7px 0 0; padding-left: 18px; }
.enquiry-form fieldset { border: 0; padding: 0; margin: 0 0 18px; min-width: 0; }
.enquiry-form legend { margin-bottom: 9px; color: var(--ink); font-weight: 800; font-size: 12px; }
.choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.choice-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.choice { position: relative; cursor: pointer; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span { min-height: 43px; display: flex; align-items: center; justify-content: center; padding: 8px 10px; border: 1px solid #dce1e6; border-radius: 11px; background: #fff; color: #475569; font-size: 11px; font-weight: 700; text-align: center; line-height: 1.25; transition: .18s ease; }
.choice input:checked + span { border-color: var(--navy-800); background: var(--navy-850); color: #fff; box-shadow: 0 7px 18px rgba(8,29,42,.16); }
.choice input:focus-visible + span { outline: 3px solid rgba(214,179,106,.38); outline-offset: 2px; }
.two-column-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.choice-grid.compact { grid-template-columns: 1fr; }
.choice-grid.compact span { justify-content: flex-start; padding-left: 13px; }
.contact-block { margin-top: 2px; padding-top: 18px; border-top: 1px solid #e8ebee; }
.contact-block h3 { margin: 0 0 4px; font-size: 15px; }
.contact-block > p { margin: 0 0 13px; color: var(--muted); font-size: 11px; line-height: 1.5; }
.input-label { display: grid; gap: 6px; margin-top: 10px; color: var(--ink); font-size: 11px; font-weight: 800; }
.input-label input { width: 100%; min-height: 47px; border: 1px solid #dce1e6; border-radius: 11px; background: #fff; color: var(--ink); padding: 10px 13px; outline: 0; transition: .18s ease; }
.input-label input:focus { border-color: #9a732f; box-shadow: 0 0 0 3px rgba(214,179,106,.16); }
.input-label input::placeholder { color: #9aa4af; font-weight: 500; }
.consent { display: flex; gap: 9px; align-items: flex-start; margin: 14px 0; color: #64748b; font-size: 10px; line-height: 1.45; }
.consent input { margin-top: 2px; accent-color: var(--navy-850); }
.submit-button { width: 100%; gap: 9px; border-radius: 13px; min-height: 53px; }
.submit-button svg { width: 19px; height: 19px; }
.submit-button[disabled] { opacity: .68; cursor: wait; transform: none; }
.privacy-note { margin: 9px 0 0; color: #94a3b8; font-size: 9px; text-align: center; }
.honey { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.trust-strip { background: var(--navy-900); color: #fff; border-top: 1px solid rgba(255,255,255,.08); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid div { padding: 25px 26px; border-right: 1px solid rgba(255,255,255,.1); }
.trust-grid div:last-child { border-right: 0; }
.trust-grid span { display: block; color: rgba(255,255,255,.5); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; }
.trust-grid strong { display: block; margin-top: 5px; font-family: Georgia, serif; color: var(--gold-light); font-size: 24px; font-weight: 400; }

.section { padding: 110px 0; }
.overview-section { background: #fff; overflow: hidden; }
.split-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.section h2 { margin: 17px 0 22px; font-size: clamp(39px, 4.1vw, 60px); }
.section-copy > p { margin: 0; color: var(--muted); font-size: 17px; max-width: 620px; }
.feature-list { display: grid; gap: 22px; margin: 36px 0; }
.feature-list > div { display: grid; grid-template-columns: 44px 1fr; gap: 17px; align-items: start; }
.feature-number { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(154,115,47,.34); border-radius: 50%; color: #9a732f; font-size: 10px; font-weight: 800; }
.feature-list strong { display: block; margin-bottom: 3px; font-size: 15px; }
.feature-list p { margin: 0; color: var(--muted); font-size: 13px; }
.text-link { display: inline-flex; gap: 9px; align-items: center; color: var(--navy-850); font-weight: 800; text-decoration: none; border-bottom: 1px solid #c9ad70; padding-bottom: 4px; }
.image-stack { min-height: 650px; position: relative; }
.image-main { position: absolute; inset: 0 18% 8% 0; margin: 0; border-radius: 120px 24px 24px 24px; overflow: hidden; box-shadow: var(--shadow); }
.image-main img, .image-float img, .gallery-grid img { width: 100%; height: 100%; object-fit: cover; }
.image-float { position: absolute; right: 0; bottom: 0; width: 46%; height: 46%; margin: 0; border: 10px solid #fff; border-radius: 24px; overflow: hidden; box-shadow: 0 25px 55px rgba(7,23,34,.2); }
.image-badge { position: absolute; top: 8%; right: 2%; width: 138px; height: 138px; border-radius: 50%; display: grid; place-content: center; text-align: center; color: #fff; background: rgba(7,23,34,.9); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.2); }
.image-badge strong { font-family: Georgia, serif; color: var(--gold-light); font-size: 25px; font-weight: 400; }
.image-badge span { font-size: 8px; letter-spacing: 1px; text-transform: uppercase; }

.payment-section { background: var(--ivory); }
.section-heading.centered { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.centered p, .section-heading p { color: var(--muted); }
.payment-timeline { display: grid; grid-template-columns: 1fr 90px 1fr 90px 1fr; align-items: center; }
.payment-timeline article { min-height: 260px; padding: 36px; border-radius: 22px; background: #fff; border: 1px solid rgba(8,29,42,.08); box-shadow: 0 18px 40px rgba(8,29,42,.06); }
.payment-timeline article span { color: #9a732f; font-size: 10px; font-weight: 800; letter-spacing: 1.3px; text-transform: uppercase; }
.payment-timeline article strong { display: block; margin: 12px 0 16px; font-family: Georgia, serif; font-size: 54px; font-weight: 400; color: var(--navy-850); }
.payment-timeline article p { margin: 0; color: var(--muted); font-size: 14px; }
.timeline-line { height: 1px; background: #c8b17e; position: relative; }
.timeline-line span { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: #c8b17e; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.disclaimer { margin-top: 24px; color: #8a929c; font-size: 11px; }
.centered { text-align: center; }

.gallery-section { background: #fff; overflow: hidden; }
.gallery-section .section-heading { max-width: 750px; margin-bottom: 45px; }
.gallery-grid { display: grid; grid-template-columns: 1.08fr .92fr; grid-template-rows: 340px 420px; gap: 20px; }
.gallery-grid figure { margin: 0; overflow: hidden; border-radius: 22px; }
.gallery-large { grid-row: 1 / span 2; }
.gallery-wide { grid-column: 2; }
.gallery-tall { grid-column: 2; }
.gallery-grid img { transition: transform .7s ease; }
.gallery-grid figure:hover img { transform: scale(1.035); }

.final-cta-section { position: relative; min-height: 560px; display: grid; place-items: center; overflow: hidden; background: var(--navy-950); }
.final-cta-media { position: absolute; inset: 0; background: url("images/luxury-community.webp") center 57%/cover no-repeat; }
.final-cta-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,15,23,.92), rgba(4,15,23,.6)); }
.final-cta-content { position: relative; z-index: 2; color: #fff; max-width: 760px; margin-left: 0; }
.final-cta-content h2 { margin: 18px 0; font-size: clamp(42px, 5vw, 66px); }
.final-cta-content p { max-width: 650px; color: rgba(255,255,255,.72); font-size: 17px; margin: 0 0 27px; }

.site-footer { background: #06131c; color: #fff; padding: 60px 0 22px; }
.footer-grid { display: flex; justify-content: space-between; gap: 40px; align-items: start; }
.footer-brand { margin-bottom: 18px; }
.footer-grid > div > p { color: rgba(255,255,255,.5); font-size: 13px; }
.footer-contact { display: grid; gap: 7px; text-align: right; }
.footer-contact span { color: rgba(255,255,255,.42); font-size: 9px; letter-spacing: 1.4px; text-transform: uppercase; }
.footer-contact a { color: var(--gold-light); text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 46px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.09); }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.34); font-size: 10px; }
.mobile-cta { display: none; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

.thank-you-page { min-height: 100vh; background: var(--navy-950); }
.thank-you-shell { min-height: 100vh; position: relative; display: grid; place-items: center; padding: 35px 20px; overflow: hidden; }
.thank-you-bg { position: absolute; inset: 0; background: url("images/hero-lagoon.webp") center/cover no-repeat; }
.thank-you-overlay { position: absolute; inset: 0; background: rgba(5,18,27,.78); backdrop-filter: blur(3px); }
.thank-you-card { position: relative; z-index: 2; width: min(100%, 720px); padding: 46px; border-radius: 28px; background: rgba(255,255,255,.97); box-shadow: var(--shadow); text-align: center; }
.thank-you-brand { justify-content: center; color: var(--navy-850); margin-bottom: 28px; }
.thank-you-brand .brand-copy small { color: #6b7785; }
.success-icon { width: 68px; height: 68px; display: grid; place-items: center; margin: 0 auto 22px; border-radius: 50%; background: #e6f4ee; color: #25785b; }
.success-icon svg { width: 36px; height: 36px; }
.thank-you-card h1 { margin: 15px 0 12px; font-size: clamp(42px, 7vw, 62px); }
.thank-you-card > p { color: var(--muted); margin: 0 auto 28px; max-width: 590px; }
.next-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 0 0 28px; text-align: left; }
.next-steps div { padding: 18px; border-radius: 14px; background: #f5f7f8; }
.next-steps span { color: #9a732f; font-size: 10px; font-weight: 800; }
.next-steps p { margin: 8px 0 0; color: #526172; font-size: 12px; line-height: 1.5; }
.thank-you-contact { margin-top: 18px !important; font-size: 12px; }
.thank-you-contact a { color: #9a732f; font-weight: 700; }

@media (max-width: 1100px) {
    .hero-grid { grid-template-columns: 1fr 500px; gap: 35px; }
    .hero h1 { font-size: 54px; }
    .split-layout { gap: 50px; }
    .payment-timeline { grid-template-columns: 1fr 55px 1fr 55px 1fr; }
    .payment-timeline article { padding: 28px; }
}

@media (max-width: 900px) {
    .site-header { position: absolute; }
    .header-cta { display: none; }
    .hero { min-height: auto; }
    .hero-grid { grid-template-columns: 1fr; min-height: auto; padding-top: 135px; padding-bottom: 70px; }
    .hero-copy { max-width: 720px; }
    .lead-card { max-height: none; overflow: visible; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid div:nth-child(2) { border-right: 0; }
    .trust-grid div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
    .split-layout { grid-template-columns: 1fr; }
    .image-stack { min-height: 610px; }
    .payment-timeline { grid-template-columns: 1fr; gap: 16px; }
    .timeline-line { width: 1px; height: 34px; justify-self: center; }
    .payment-timeline article { min-height: auto; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 530px 330px; }
    .gallery-large { grid-column: 1 / span 2; grid-row: 1; }
    .gallery-wide { grid-column: 1; grid-row: 2; }
    .gallery-tall { grid-column: 2; grid-row: 2; }
    .footer-grid, .footer-bottom { align-items: flex-start; }
}

@media (max-width: 640px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .header-inner { min-height: 76px; }
    .brand-mark { width: 42px; height: 42px; font-size: 13px; }
    .brand-copy strong { font-size: 17px; }
    .brand-copy small { font-size: 7.5px; }
    .hero-media { background-position: 62% center; }
    .hero-overlay { background: linear-gradient(180deg, rgba(5,18,27,.77), rgba(5,18,27,.94) 47%, rgba(5,18,27,.98)); }
    .hero-grid { padding-top: 116px; padding-bottom: 35px; gap: 42px; }
    .hero h1 { font-size: 43px; }
    .hero-intro { font-size: 16px; }
    .hero-highlights { grid-template-columns: 1fr 1fr 1fr; }
    .hero-highlights div { padding: 15px 10px; }
    .hero-highlights strong { font-size: 23px; }
    .hero-highlights span { font-size: 8px; }
    .lead-card { margin-inline: -3px; border-radius: 22px; padding: 22px 18px; }
    .form-heading h2 { font-size: 28px; }
    .choice-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .two-column-fields { grid-template-columns: 1fr; gap: 0; }
    .trust-grid div { padding: 20px 18px; }
    .trust-grid strong { font-size: 21px; }
    .section { padding: 78px 0; }
    .section h2 { font-size: 40px; }
    .section-copy > p { font-size: 15px; }
    .image-stack { min-height: 480px; }
    .image-main { inset: 0 10% 12% 0; border-radius: 70px 18px 18px 18px; }
    .image-float { width: 48%; height: 44%; border-width: 6px; }
    .image-badge { width: 108px; height: 108px; top: 4%; right: 0; }
    .image-badge strong { font-size: 21px; }
    .section-heading.centered { margin-bottom: 35px; }
    .payment-timeline article { padding: 25px; }
    .payment-timeline article strong { font-size: 46px; }
    .gallery-grid { grid-template-columns: 1fr; grid-template-rows: 520px 240px 390px; }
    .gallery-large, .gallery-wide, .gallery-tall { grid-column: 1; }
    .gallery-large { grid-row: 1; }
    .gallery-wide { grid-row: 2; }
    .gallery-tall { grid-row: 3; }
    .final-cta-section { min-height: 520px; }
    .final-cta-content h2 { font-size: 42px; }
    .footer-grid, .footer-bottom { display: grid; }
    .footer-contact { text-align: left; }
    .mobile-cta { position: fixed; z-index: 50; left: 12px; right: 12px; bottom: max(12px, env(safe-area-inset-bottom)); display: block; }
    .mobile-cta a { display: flex; justify-content: center; align-items: center; min-height: 52px; background: var(--gold); color: var(--navy-950); text-decoration: none; font-weight: 800; border-radius: 13px; box-shadow: 0 14px 36px rgba(4,18,28,.34); }
    .site-footer { padding-bottom: 92px; }
    .thank-you-card { padding: 34px 20px; }
    .next-steps { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
