:root {
    --brand-gold: #ba8d33;
    --header-bg: #29473D;
    --text-dark: white;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Trebuchet MS", Arial, sans-serif;
    color: var(--text-dark);
    background: #fff;
}

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e9e9e9;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header-wrap {
    max-width: 1360px;
    margin: 0 auto;
    padding: 36px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.logo-block {
    text-decoration: none;
    color: inherit;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 210px;
}

.logo-mark {
    width: 44px;
    height: 44px;
    border: 2px solid var(--brand-gold);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-gold);
    font-weight: 700;
    font-size: 11px;
}

.logo-text {
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-weight: 700;
    font-size: 14px;
}

.logo-text .gold {
    color: var(--brand-gold);
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    width: 100%;
}

.main-nav a {
    color: #111111;
    text-decoration: none;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.35px;
    white-space: nowrap;
    flex: 0 0 auto;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--brand-gold);
}

.main-nav a.active {
    color: var(--brand-gold);
}

.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    padding-bottom: 10px;
    margin-bottom: -10px;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dropdown-caret {
    color: var(--brand-gold);
    font-size: 10px;
    line-height: 1;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #ffffff;
    border: 1px solid #ececec;
    border-top: 3px solid var(--brand-gold);
    border-radius: 6px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    z-index: 20;
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 18px;
    font-weight: 600;
    text-transform: none;
    color: #111;
}

.nav-dropdown-menu a:hover {
    background: #f7f7f7;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #c9c9c9;
    margin: 0 8px;
    vertical-align: middle;
    font-size: 0;
    line-height: 0;
    color: transparent;
    flex: 0 0 auto;
}

.brochure-btn {
    margin-left: 8px;
    background: var(--brand-gold);
    color: #fff;
    border: 0;
    text-decoration: none;
    font-weight: 700;
    padding: 13px 20px;
    border-radius: 0;
    display: inline-block;
    box-shadow: 0 14px 20px rgba(161, 183, 87, 0.35);
    text-transform: none;
}

.page-content {
    max-width: 1240px;
    margin: 0 auto;
    padding: 172px 24px 24px;
    min-height: 55vh;
}

.page-content.with-hero {
    padding-top: 24px;
}

.hero-slider {
    position: relative;
    margin-top: 0;
    min-height: 680px;
    overflow: hidden;
}

.hero-video-section {
    position: relative;
    margin-top: 0;
    background: #111;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    display: block;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.05) 35%, rgba(0, 0, 0, 0.15));
    pointer-events: none;
}

.hero-social-links {
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-social-links a {
    width: 46px;
    height: 46px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.94);
    color: #111;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-size: clamp(18px, 1vw, 28px);
    font-weight: 700;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.hero-video-toggle {
    position: absolute;
    right: 34px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 12px solid rgba(255, 255, 255, 0.72);
    background: #ffffff;
    color: #f1b400;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.hero-video-toggle-icon {
    font-size: 38px;
    font-size: clamp(24px, 1.6vw, 38px);
    line-height: 1;
    font-weight: 700;
}

.hero-youtube-play {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    text-decoration: none;
    background: #ff0000;
    color: #fff;
    font-size: 18px;
    font-size: clamp(13px, 1vw, 18px);
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
}

.hero-youtube-play:hover {
    background: #d90000;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.hero-slide.is-active {
    opacity: 1;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
}

.hero-inner {
    position: relative;
    z-index: 3;
    max-width: 1320px;
    margin: 0 auto;
    padding: 90px 60px 80px;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 44px;
}

.hero-copy {
    color: #fff;
    max-width: 470px;
}

.hero-copy h1 {
    margin: 0 0 16px;
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1.06;
}

.hero-copy p {
    margin: 0;
    font-size: clamp(20px, 2vw, 35px);
}

.hero-form-card {
    width: min(100%, 450px);
    background: #f1f1f1;
    padding: 30px;
}

.hero-form-card h2 {
    margin: 0 0 16px;
    font-size: clamp(28px, 2.2vw, 46px);
    font-weight: 500;
    color: #111;
}

.hero-form-card form {
    display: grid;
    gap: 12px;
}

.hero-form-card label {
    color: #2f2f2f;
    font-size: clamp(17px, 1vw, 23px);
}

.hero-form-card input {
    height: 54px;
    border: 0;
    background: #e3e3e3;
    padding: 10px 12px;
    font-size: 18px;
}

.hero-form-card button {
    margin: 16px auto 0;
    background: var(--brand-gold);
    color: #fff;
    border: 0;
    padding: 14px 42px;
    font-size: clamp(19px, 1.2vw, 26px);
    cursor: pointer;
    box-shadow: 0 14px 20px rgba(161, 183, 87, 0.35);
}

.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.hero-dot.is-active {
    background: #fff;
}

.about-highlight {
    background: #efefef;
    padding: 54px 20px 58px;
}

.about-highlight-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 44px;
    align-items: start;
}

.about-image-col {
    position: relative;
}

.about-image-col img {
    width: 100%;
    max-width: 330px;
    display: block;
    position: relative;
    z-index: 2;
}

.about-image-frame {
    position: absolute;
    width: 165px;
    height: 165px;
    border: 1px solid #dcdcdc;
    top: -16px;
    right: 0;
    z-index: 1;
}

.about-content-col h2 {
    margin: 0 0 12px;
    color: #0f2035;
    font-size: clamp(30px, 2.5vw, 44px);
}

.about-content-col p {
    margin: 0 0 22px;
    line-height: 1.7;
    color: #4f5b6a;
    font-size: 14px;
}

.about-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 10px 18px;
    margin-bottom: 20px;
}

.about-feature-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 10px;
    align-items: center;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    color: #11243d;
}

.about-icon {
    border: 1px solid var(--brand-gold);
    color: var(--brand-gold);
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
}

.about-download-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--brand-gold);
    color: #fff;
    text-decoration: none;
    padding: 14px 18px;
    font-weight: 700;
    box-shadow: 0 14px 20px rgba(161, 183, 87, 0.35);
}

.location-advantage {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.location-media {
    position: relative;
    min-height: 420px;
}

.location-media iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: block;
    border: 0;
}

.location-content {
    background: #bc953f;
    color: #fff;
    padding: 56px 56px 52px;
}

.location-content h2 {
    margin: 0 0 20px;
    font-size: clamp(28px, 2vw, 40px);
}

.location-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 30px;
}

.location-block h3,
.location-group-title {
    margin: 0 0 10px;
    font-size: clamp(18px, 1.4vw, 32px);
}

.location-block ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.location-block li {
    margin-bottom: 10px;
    font-size: clamp(14px, 0.95vw, 20px);
    font-weight: 700;
}

.location-group-title {
    margin-top: 20px;
}

.floor-plans-section {
    background: #ececec;
    padding: 44px 20px 70px;
}

.floor-plans-wrap {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.floor-script-title {
    margin: 0;
    font-size: clamp(46px, 6.2vw, 110px);
    line-height: 0.9;
    color: rgba(182, 170, 150, 0.34);
    font-style: italic;
}

.floor-plans-wrap h1 {
    margin: -12px 0 8px;
    color: #0f3f4b;
    letter-spacing: 2.2px;
    font-size: clamp(28px, 2.2vw, 42px);
}

.floor-offering {
    margin: 0 0 12px;
    color: #0f3f4b;
    font-size: clamp(26px, 2.05vw, 50px);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.floor-plans-intro {
    margin: 0;
    color: #0b1e33;
    font-size: clamp(12px, 0.8vw, 14px);
    letter-spacing: 2px;
    font-weight: 700;
}

.floor-divider-icon {
    margin: 8px auto 32px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #000;
    display: block;
    position: relative;
}

.floor-divider-icon::before {
    content: "";
    position: absolute;
    top: 46%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translate(-50%, -50%) rotate(45deg);
}

.floor-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.floor-plan-tile {
    border: 1px solid #285145;
    border-radius: 10px;
    padding: 20px 18px 14px;
}

.floor-plan-tile img {
    width: 100%;
    max-width: 300px;
    display: block;
    margin: 0 auto 14px;
}

.floor-plan-tile p {
    margin: 0 auto;
    width: fit-content;
    background: #285145;
    color: #fff;
    border-radius: 4px;
    padding: 8px 20px;
    font-size: clamp(16px, 0.92vw, 28px);
    font-weight: 700;
}

.master-plan-section {
    background: #ececec;
    padding: 44px 20px 70px;
}

.master-plan-wrap {
    max-width: 1440px;
    margin: 0 auto;
}

.master-script-title {
    margin: 0 0 -10px;
    font-size: clamp(52px, 6.3vw, 110px);
    line-height: 0.9;
    color: rgba(182, 170, 150, 0.34);
    font-style: italic;
}

.master-plan-wrap h1 {
    margin: 0;
    text-align: center;
    color: #0f3f4b;
    letter-spacing: 1.5px;
    font-size: clamp(30px, 2.2vw, 44px);
}

.master-subtitle {
    margin: 10px 0 12px;
    text-align: center;
    color: #0b1e33;
    letter-spacing: 2px;
    font-size: clamp(12px, 0.8vw, 14px);
    font-weight: 700;
}

.master-intro {
    margin: 0;
    text-align: center;
    color: #0b1e33;
    font-size: clamp(12px, 0.9vw, 17px);
    letter-spacing: 2px;
    font-weight: 700;
    line-height: 1.5;
}

.master-divider-icon {
    margin: 8px auto 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #000;
    display: block;
    position: relative;
}

.master-divider-icon::before {
    content: "";
    position: absolute;
    top: 46%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translate(-50%, -50%) rotate(45deg);
}

.master-content-grid {
    max-width: 1060px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: center;
}

.master-copy p {
    margin: 0 0 24px;
    color: #0b1e33;
    line-height: 1.85;
    font-size: clamp(13px, 0.84vw, 16px);
}

.master-copy h2 {
    margin: 0 0 16px;
    color: #0b1e33;
    font-size: clamp(24px, 1.4vw, 32px);
}

.master-copy ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.master-copy li {
    margin-bottom: 9px;
    color: #0b1e33;
    line-height: 1.4;
    font-size: clamp(13px, 0.86vw, 16px);
}

.master-copy li::before {
    content: "· ";
}

.master-image-frame {
    border: 6px solid #000;
    background: #f4f4f4;
    padding: 8px;
}

.master-image-frame img {
    width: 100%;
    display: block;
}

.amenities-spec-section {
    background: #f2f2f2;
    padding: 56px 20px 66px;
}

.amenities-spec-wrap {
    max-width: 1240px;
    margin: 0 auto;
}

.amenities-spec-wrap h1 {
    margin: 0;
    text-align: center;
    font-size: clamp(34px, 2.2vw, 50px);
    color: #16263d;
}

.amenities-spec-wrap > p {
    max-width: 740px;
    margin: 12px auto 34px;
    text-align: center;
    color: #657081;
    line-height: 1.7;
    font-size: 14px;
}

.amenities-spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.amenities-spec-card {
    background: #efefef;
    padding: 26px 24px;
    min-height: 430px;
}

.amenities-spec-card h2,
.amenities-spec-card h3 {
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 16px;
    color: #13253e;
    font-size: clamp(20px, 1.3vw, 26px);
    position: relative;
    padding-bottom: 12px;
}

.amenities-spec-card h2::after,
.amenities-spec-card h3::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 90px;
    height: 2px;
    background: var(--brand-gold);
}

.amenities-spec-card h3 {
    margin-top: 14px;
}

.amenities-spec-card ul {
    margin: 0;
    padding-left: 16px;
    color: #2e3950;
    line-height: 1.55;
    font-size: 14px;
}

.contact-section {
    background: #f5f6f8;
    padding: 60px 20px 70px;
}

.contact-wrap {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 26px;
}

.contact-info {
    background: #fff;
    padding: 30px;
}

.contact-info h1 {
    margin: 0 0 12px;
    color: #13253e;
    font-size: clamp(34px, 2.2vw, 50px);
}

.contact-info p {
    margin: 0 0 18px;
    color: #586476;
    line-height: 1.7;
    font-size: 15px;
}

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

.contact-info li {
    margin: 0 0 10px;
    color: #243248;
    font-size: 16px;
}

.contact-form {
    background: #fff;
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-field {
    display: grid;
    gap: 7px;
}

.contact-field-full {
    grid-column: 1 / -1;
}

.contact-field label {
    color: #2a3548;
    font-size: 14px;
    font-weight: 700;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    border: 1px solid #d4d9e0;
    background: #fbfbfc;
    padding: 11px 12px;
    color: #1d2633;
    font-size: 15px;
    font-family: inherit;
}

.contact-field input:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: var(--brand-gold);
}

.contact-submit {
    grid-column: 1 / -1;
    justify-self: start;
    padding: 13px 26px;
    background: var(--brand-gold);
    border: 0;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 18px rgba(161, 183, 87, 0.35);
}

.photo-gallery-section {
    background: #f2f2f2;
    padding: 54px 20px 70px;
}

.photo-gallery-wrap {
    max-width: 1240px;
    margin: 0 auto;
}

.photo-gallery-head {
    max-width: 780px;
    margin: 0 auto 30px;
    text-align: center;
}

.photo-gallery-head h1 {
    margin: 0 0 10px;
    color: #15263f;
    font-size: clamp(36px, 2.4vw, 52px);
}

.photo-gallery-head p {
    margin: 0;
    color: #5d6775;
    line-height: 1.7;
    font-size: 15px;
}

.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.photo-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(20, 37, 62, 0.08);
    transform: translateY(0);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    cursor: pointer;
}

.photo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(20, 37, 62, 0.16);
}

.photo-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(16, 36, 63, 0.3), transparent 52%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.photo-card:hover::after {
    opacity: 1;
}

.photo-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transform-origin: center center;
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
    animation: galleryZoomPulse 11s ease-in-out infinite alternate;
}

.photo-card-info {
    padding: 14px 14px 16px;
    transition: transform 0.35s ease;
    position: relative;
    z-index: 1;
}

.photo-card:hover .photo-card-info {
    transform: translateY(-4px);
}

.photo-card:hover img {
    transform: scale(1.12);
    filter: contrast(1.05) saturate(1.05);
    animation-play-state: paused;
}

.photo-card-info h3 {
    margin: 0 0 6px;
    font-size: 18px;
    color: #10243f;
}

.photo-card-info p {
    margin: 0;
    color: #5b6678;
    font-size: 14px;
    line-height: 1.5;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.photo-card:nth-child(2n) img {
    animation-duration: 12.5s;
}

.photo-card:nth-child(3n) img {
    animation-duration: 13.5s;
}

@keyframes galleryZoomPulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08);
    }
}

@media (prefers-reduced-motion: reduce) {
    .photo-card img {
        animation: none;
        transition: none;
    }
}

.expression-page {
    max-width: 100%;
    padding: 56px 24px 80px;
    background: #efefef;
}

.bold-expression-section {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.bold-expression-inner {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    padding: 30px 18px 20px;
}

.bold-expression-inner::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -18px;
    width: 270px;
    height: 270px;
    transform: translateX(-50%);
    border-radius: 50%;
    border: 12px solid rgba(186, 141, 51, 0.12);
    box-shadow: 0 0 0 28px rgba(186, 141, 51, 0.08), 0 0 0 52px rgba(186, 141, 51, 0.06);
    pointer-events: none;
    z-index: 0;
}

.bold-expression-inner h2,
.bold-expression-inner p,
.bold-expression-btn {
    position: relative;
    z-index: 1;
}

.bold-expression-inner h2 {
    margin: 0 0 18px;
    color: #17263a;
    font-size: clamp(32px, 2.4vw, 48px);
    letter-spacing: 0.6px;
}

.bold-expression-inner p {
    margin: 0 auto;
    max-width: 840px;
    color: #1f2d40;
    line-height: 1.6;
    font-size: clamp(15px, 1vw, 22px);
}

.bold-expression-btn {
    display: inline-block;
    margin-top: 18px;
    background: #f0a400;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 9px 24px;
}

.brand-spotlight-section {
    max-width: 1060px;
    margin: 78px auto 0;
    text-align: center;
}

.brand-spotlight-section h2 {
    margin: 0 0 30px;
    color: #17263a;
    font-size: clamp(36px, 2.5vw, 56px);
    letter-spacing: 0.6px;
}

.brand-spotlight-section h2 span {
    color: #f0a400;
}

.brand-spotlight-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px 24px;
    max-width: 980px;
    margin: 0 auto;
}

.brand-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    color: #233349;
    font-weight: 700;
    font-size: clamp(13px, 0.95vw, 20px);
    letter-spacing: 0.4px;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
}

.brand-view-btn {
    display: inline-block;
    margin-top: 22px;
    background: #f0a400;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 20px;
}

.our-products-section {
    margin-top: 86px;
    background: #152a3f;
    padding: 70px 24px 86px;
}

.our-products-wrap {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px 34px;
    align-items: start;
}

.products-col {
    display: grid;
    gap: 26px;
}

.products-copy {
    color: #fff;
    margin-bottom: 16px;
}

.products-copy h2 {
    margin: 0 0 14px;
    font-size: clamp(34px, 2.4vw, 54px);
    letter-spacing: 0.4px;
}

.products-copy p {
    margin: 0;
    font-size: clamp(14px, 1vw, 19px);
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.9);
}

.product-card {
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.product-card img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    display: block;
}

.product-card h3 {
    margin: 0;
    text-align: center;
    color: #1b2c41;
    font-size: clamp(18px, 1.1vw, 24px);
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 14px 10px;
}

.our-features-section {
    position: relative;
    background: #efefef;
    padding: 86px 24px 86px;
    overflow: hidden;
}

.our-features-section::after {
    content: "";
    position: absolute;
    right: -90px;
    top: -62px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 12px solid rgba(186, 141, 51, 0.12);
    box-shadow: 0 0 0 28px rgba(186, 141, 51, 0.08), 0 0 0 52px rgba(186, 141, 51, 0.06);
    pointer-events: none;
}

.our-features-wrap {
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.features-copy h2 {
    margin: 0 0 16px;
    color: #17263a;
    font-size: clamp(36px, 2.6vw, 58px);
    letter-spacing: 0.5px;
}

.features-copy p {
    margin: 0;
    max-width: 520px;
    color: #1f2d40;
    font-size: clamp(14px, 1vw, 18px);
    line-height: 1.72;
}

.features-view-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 10px 28px;
    text-decoration: none;
    background: #f0a400;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.features-stats-card {
    background: #f4f4f4;
    border: 1px solid #dedede;
    box-shadow: 0 8px 20px rgba(20, 34, 51, 0.08);
    padding: 14px 18px;
}

.feature-stat-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
}

.feature-stat-row + .feature-stat-row {
    border-top: 1px solid #e8e8e8;
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #111;
    color: #f0a400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex: 0 0 auto;
}

.feature-stat-content h3 {
    margin: 0 0 4px;
    color: #1c2b40;
    font-size: clamp(24px, 1.45vw, 34px);
    font-weight: 500;
}

.feature-stat-content p {
    margin: 0;
    color: #2f3a4c;
    font-size: clamp(13px, 0.85vw, 16px);
    line-height: 1.45;
}

.products-page {
    background: #efefef;
    max-width: 100%;
    padding: 56px 24px 90px;
}

.products-overview-section {
    max-width: 1040px;
    margin: 0 auto;
}

.products-overview-head {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 28px;
}

.products-overview-head h1 {
    margin: 0 0 12px;
    color: #17263a;
    font-size: clamp(28px, 2.1vw, 44px);
    font-weight: 700;
}

.products-overview-head h1 span {
    color: #f0a400;
}

.products-overview-head p {
    margin: 0;
    color: #1f2d40;
    font-size: clamp(13px, 0.9vw, 16px);
    line-height: 1.65;
}

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

.products-overview-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 8px 18px rgba(19, 35, 56, 0.08);
}

.products-overview-card img {
    width: 100%;
    height: 250px;
    display: block;
    object-fit: cover;
}

.products-overview-card h3 {
    margin: 10px 0 8px;
    text-align: center;
    color: #17263a;
    font-size: clamp(18px, 1vw, 22px);
    letter-spacing: 0.4px;
}

.products-overview-card h3 span {
    color: #f0a400;
}

.products-overview-card p {
    margin: 0;
    padding: 0 14px 12px;
    text-align: center;
    color: #2d3b4e;
    font-size: clamp(12px, 0.8vw, 14px);
    line-height: 1.5;
    min-height: 64px;
}

.products-read-btn {
    display: block;
    text-align: center;
    background: #031b37;
    color: #f0a400;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    padding: 11px 12px;
}

.location-page {
    max-width: 100%;
    background: #efefef;
    padding: 56px 24px 86px;
}

.location-overview-section {
    max-width: 900px;
    margin: 0 auto;
}

.location-overview-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 20px;
}

.location-overview-head h1 {
    margin: 0 0 10px;
    color: #17263a;
    font-size: clamp(30px, 2.2vw, 44px);
}

.location-overview-head h1 span {
    color: #f0a400;
}

.location-overview-head p {
    margin: 0;
    color: #1f2d40;
    font-size: clamp(13px, 0.9vw, 15px);
    line-height: 1.62;
}

.location-map-wrap {
    max-width: 760px;
    margin: 20px auto 0;
    background: #fff;
    border: 1px solid #dcdcdc;
}

.location-map-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.features-page {
    max-width: 100%;
    background: #efefef;
    padding: 56px 24px 88px;
}

.features-showcase-section {
    max-width: 1080px;
    margin: 0 auto;
}

.features-showcase-head {
    max-width: 840px;
    margin: 0 auto 26px;
    text-align: center;
}

.features-showcase-head h1 {
    margin: 0 0 10px;
    color: #f0a400;
    font-size: clamp(30px, 2.2vw, 44px);
}

.features-showcase-head p {
    margin: 0;
    color: #1f2d40;
    font-size: clamp(13px, 0.9vw, 15px);
    line-height: 1.7;
}

.features-showcase-image-wrap {
    background: #f6f4ef;
    border: 1px solid #ece8df;
    padding: 18px;
    margin: 0 auto 14px;
}

.features-showcase-image-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.features-tile-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.features-tile {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #12263a;
    border: 1px solid #2f4358;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.14);
    padding: 12px 10px;
    min-height: 78px;
}

.features-tile-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    border: 2px solid #f0a400;
    border-radius: 10px;
    color: #f0a400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
}

.features-tile h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(12px, 0.82vw, 14px);
    font-weight: 700;
    line-height: 1.35;
}

.floor-gallery-page {
    max-width: 100%;
    background: #efefef;
    padding: 56px 20px 72px;
}

.floor-gallery-section {
    max-width: 1060px;
    margin: 0 auto;
}

.floor-gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 20px;
}

.floor-gallery-card {
    width: calc((100% - 40px) / 3);
    min-width: 260px;
    max-width: 336px;
    text-align: center;
}

.floor-gallery-card img {
    width: 100%;
    height: 194px;
    object-fit: cover;
    display: block;
    border: 1px solid #b8b8b8;
}

.floor-gallery-card h3 {
    margin: 10px 0 0;
    color: #f0a400;
    font-size: clamp(16px, 1vw, 30px);
    font-weight: 500;
}

.developers-page {
    max-width: 100%;
    background: #efefef;
    padding: 54px 24px 84px;
}

.developers-overview-section {
    max-width: 1080px;
    margin: 0 auto;
}

.developers-overview-section h1 {
    margin: 0 0 20px;
    text-align: center;
    color: #17263a;
    font-size: clamp(32px, 2.3vw, 46px);
}

.developers-overview-section h1 span {
    color: #f0a400;
}

.developers-top-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 22px;
    align-items: start;
}

.developers-copy p {
    margin: 0 0 10px;
    color: #1f2d40;
    font-size: clamp(13px, 0.9vw, 15px);
    line-height: 1.65;
}

.developers-collage {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
}

.developers-collage img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.developer-cards-grid {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
}

.developer-card {
    background: #f4f4f4;
    border: 1px solid #e3e3e3;
    min-height: 196px;
    padding: 14px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.developer-card h3 {
    margin: 0 0 8px;
    color: #16263a;
    font-size: clamp(18px, 1vw, 22px);
}

.developer-card p {
    margin: 0;
    color: #1f2d40;
    font-size: clamp(12px, 0.8vw, 14px);
    line-height: 1.55;
}

.developer-logo-card {
    background: #f7f7f7;
}

.developer-logo-text {
    color: #8a1731;
    font-size: clamp(22px, 1.55vw, 34px);
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2;
}

.brand-spotlight-page {
    max-width: 100%;
    background: #efefef;
    padding: 54px 24px 84px;
}

.brand-spotlight-full-section {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.brand-spotlight-full-section h1 {
    margin: 0 0 26px;
    color: #f0a400;
    font-size: clamp(20px, 1.3vw, 26px);
    font-weight: 700;
    letter-spacing: 0.8px;
}

.brand-group + .brand-group {
    margin-top: 24px;
}

.brand-group h2 {
    margin: 0;
    color: #17263a;
    font-size: clamp(22px, 1.25vw, 30px);
    font-weight: 600;
    letter-spacing: 0.3px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.brand-group h2::before,
.brand-group h2::after {
    content: "";
    height: 2px;
    background: #f0a400;
    flex: 1;
    max-width: 240px;
}

.brand-board-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px 18px;
}

.brand-anchor-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px 18px;
}

.brand-anchor-grid img:nth-child(5) {
    grid-column: 2 / span 2;
    justify-self: center;
}

.brand-board-grid img,
.brand-anchor-grid img {
    width: 100%;
    max-width: 150px;
    height: 54px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.brand-unveil-text {
    margin: 8px 0 0;
    color: #f0a400;
    font-size: clamp(14px, 0.9vw, 16px);
    letter-spacing: 0.5px;
    font-weight: 600;
}

.site-footer {
    background: #12263a;
    color: #fff;
    font-family: "Trebuchet MS", Arial, sans-serif;
}

.footer-main {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1.95fr 1fr;
    min-height: 360px;
}

.footer-left-panel {
    background: #1b3248;
    padding: 78px 64px 64px;
}

.footer-right-panel {
    background: #162d43;
    border-left: 1px solid rgba(255, 255, 255, 0.04);
    padding: 72px 56px 52px;
    display: flex;
    flex-direction: column;
    gap: 44px;
    justify-content: flex-start;
}

.footer-brand-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-brand-copy {
    font-size: 34px;
    font-size: clamp(18px, 1.05vw, 34px);
    white-space: nowrap;
}

.footer-logo {
    display: inline-block;
    text-decoration: none;
}

.footer-logo img {
    width: 210px;
    max-width: 100%;
    height: auto;
    display: block;
}

.footer-brand-meta p,
.footer-brand-meta a {
    margin: 0;
    font-size: 32px;
    font-size: clamp(17px, 1vw, 32px);
    line-height: 1.5;
    color: #fff;
    text-decoration: none;
}

.footer-brand-meta a:hover {
    color: #d8e9ff;
}

.footer-locate-title,
.footer-contact-block h3,
.footer-follow-block h3 {
    margin: 56px 0 0;
    font-size: 54px;
    font-size: clamp(28px, 2.1vw, 54px);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-contact-block h3,
.footer-follow-block h3 {
    margin: 0 0 20px;
}

.footer-contact-item {
    margin: 0 0 14px;
    font-size: 40px;
    font-size: clamp(20px, 1.35vw, 40px);
    line-height: 1.45;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-item span {
    color: #ffbf00;
}

.footer-contact-item a {
    color: #fff;
    text-decoration: none;
}

.footer-contact-item a:hover {
    color: #d8e9ff;
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-social-links a {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.95);
    color: #1a3046;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-size: clamp(16px, 0.95vw, 28px);
    transition: transform 0.2s ease, background 0.2s ease;
}

.footer-social-links a:hover {
    transform: translateY(-2px);
    background: #fff;
}

.footer-bottom {
    background: #22374c;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 34px;
    font-size: clamp(16px, 1vw, 34px);
    color: rgba(255, 255, 255, 0.95);
    padding: 26px 70px;
}

@media (max-width: 980px) {
    .header-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 10px;
        overflow: visible;
    }

    .dot {
        display: none;
    }

    .nav-dropdown-menu {
        left: 0;
        min-width: 220px;
    }

    .brochure-btn {
        margin-left: 0;
    }

    .page-content {
        padding-top: 178px;
    }

    .page-content.with-hero {
        padding-top: 24px;
    }

    .hero-slider {
        margin-top: 0;
        min-height: 840px;
    }

    .hero-video-section {
        margin-top: 0;
    }

    .hero-video {
        height: clamp(620px, 86vh, 980px);
    }

    .hero-social-links {
        left: 14px;
        gap: 8px;
    }

    .hero-social-links a {
        width: 36px;
        height: 36px;
    }

    .hero-video-toggle {
        right: 14px;
        width: 74px;
        height: 74px;
        border-width: 8px;
    }

    .hero-youtube-play {
        bottom: 14px;
        padding: 10px 14px;
    }

    .hero-inner {
        padding: 48px 20px 76px;
        min-height: 840px;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

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

    .hero-form-card {
        width: 100%;
    }

    .about-highlight {
        padding: 38px 16px;
    }

    .about-highlight-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-image-col img {
        max-width: 100%;
    }

    .about-image-frame {
        width: 110px;
        height: 110px;
        top: -10px;
        right: -6px;
    }

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

    .location-advantage {
        grid-template-columns: 1fr;
    }

    .location-content {
        padding: 32px 20px;
    }

    .location-columns {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .floor-plans-section {
        padding: 40px 14px 48px;
    }

    .floor-plan-grid {
        grid-template-columns: 1fr;
    }

    .floor-script-title {
        font-size: clamp(40px, 15vw, 74px);
    }

    .master-plan-section {
        padding: 40px 14px 48px;
    }

    .master-script-title {
        font-size: clamp(44px, 14vw, 76px);
        margin-bottom: -2px;
    }

    .master-intro {
        letter-spacing: 1.2px;
    }

    .master-content-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .amenities-spec-section {
        padding: 40px 14px 46px;
    }

    .amenities-spec-grid {
        grid-template-columns: 1fr;
    }

    .amenities-spec-card {
        min-height: 0;
    }

    .contact-section {
        padding: 40px 14px 46px;
    }

    .contact-wrap {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .photo-gallery-section {
        padding: 38px 14px 48px;
    }

    .photo-gallery-grid {
        grid-template-columns: 1fr;
    }

    .expression-page {
        padding: 36px 14px 52px;
    }

    .bold-expression-inner {
        padding: 20px 10px 10px;
    }

    .bold-expression-inner::before {
        width: 170px;
        height: 170px;
        top: -2px;
        border-width: 8px;
        box-shadow: 0 0 0 18px rgba(186, 141, 51, 0.08), 0 0 0 34px rgba(186, 141, 51, 0.05);
    }

    .brand-spotlight-section {
        margin-top: 46px;
    }

    .brand-spotlight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .our-products-section {
        margin-top: 44px;
        padding: 38px 14px 52px;
    }

    .our-products-wrap {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .products-col {
        gap: 16px;
    }

    .products-copy {
        margin-bottom: 4px;
    }

    .product-card img {
        height: 240px;
    }

    .our-features-section {
        padding: 44px 14px 52px;
    }

    .our-features-section::after {
        width: 170px;
        height: 170px;
        right: -64px;
        top: -48px;
        border-width: 8px;
        box-shadow: 0 0 0 18px rgba(186, 141, 51, 0.08), 0 0 0 34px rgba(186, 141, 51, 0.05);
    }

    .our-features-wrap {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .features-copy p {
        max-width: 100%;
    }

    .products-page {
        padding: 38px 14px 52px;
    }

    .products-overview-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .products-overview-card img {
        height: 220px;
    }

    .location-page {
        padding: 36px 14px 52px;
    }

    .location-map-wrap img {
        max-height: 420px;
        object-fit: contain;
    }

    .features-page {
        padding: 36px 14px 52px;
    }

    .features-showcase-image-wrap {
        padding: 10px;
    }

    .features-showcase-image-wrap img {
        height: 260px;
    }

    .features-tile-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .features-tile {
        min-height: 68px;
        padding: 10px 8px;
    }

    .features-tile h3 {
        font-size: 12px;
    }

    .floor-gallery-page {
        padding: 36px 14px 52px;
    }

    .floor-gallery-card {
        width: 100%;
        min-width: 0;
        max-width: 360px;
    }

    .floor-gallery-card img {
        height: auto;
    }

    .developers-page {
        padding: 36px 14px 52px;
    }

    .developers-top-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .developers-collage img {
        height: 150px;
    }

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

    .developer-card {
        min-height: 170px;
        padding: 10px 8px;
    }

    .brand-spotlight-page {
        padding: 36px 14px 52px;
    }

    .brand-group h2 {
        gap: 8px;
    }

    .brand-group h2::before,
    .brand-group h2::after {
        max-width: 66px;
    }

    .brand-board-grid,
    .brand-anchor-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px 8px;
    }

    .brand-anchor-grid img:nth-child(5) {
        grid-column: 2 / span 1;
    }

    .footer-main {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .footer-left-panel,
    .footer-right-panel {
        padding: 38px 18px;
    }

    .footer-locate-title,
    .footer-contact-block h3,
    .footer-follow-block h3 {
        margin-top: 28px;
    }

    .footer-contact-block h3,
    .footer-follow-block h3 {
        margin: 0 0 14px;
    }

    .footer-bottom {
        padding: 16px 18px;
    }
}
