/* ===========================
   GLOBAL / RESET
=========================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --gold: #E9AE5A;
    --gold-light: #D4B96A;
    --gold-dark: #A8852E;
    --cream: #FAF7F2;
    --cream-mid: #F3EDE3;
    --dark: #1A1A1A;
    --text-muted: #888;
    --text-body: #555;
    --white: #ffffff;
    --border-light: #e8e0d0;
    --font: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background-color: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.banner-title,
.page-title {
    font-family: 'Libre Caslon Text', serif;
    font-weight: 700;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ===========================
   UTILITY CLASSES
=========================== */
.text-gold {
    color: var(--gold);
}

.bg-gold {
    background-color: var(--gold);
}

/* Hover zoom on images */
.img-hover-zoom {
    overflow: hidden;
    border-radius: 6px;
}

.img-hover-zoom img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-hover-zoom:hover img {
    transform: scale(1.06);
}

/* Card hover lift */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Buttons */
.btn-hero {
    background-color: #363636;
    color: var(--white);
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-hero:hover {
    background-color: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-gold {
    background-color: var(--gold);
    color: var(--white);
    padding: 11px 28px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-gold:hover {
    background-color: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-gold-outline {
    background-color: var(--gold);
    color: var(--white);
    padding: 10px 26px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1.5px solid var(--gold);
    transition: all 0.3s ease;
}

.btn-gold-outline:hover {
    background-color: transparent;
    color: var(--gold);
    transform: translateY(-2px);
}


#mainNav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: box-shadow .3s ease, border-color .3s ease;
}

#mainNav.scrolled {
    border-bottom-color: var(--border-light);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .06);
}

#mainNav .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Desktop nav list — every selector scoped under #mainNav and given
     an extra class-level of specificity so old site-wide CSS can't
     silently override the open/closed states. */
#mainNav .nav-pipe {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 18px 0;
    gap: 0;
}

#mainNav .nav-pipe .nav-item {
    position: relative;
}

#mainNav .nav-separator {
    color: var(--border-light);
    font-size: .8rem;
    margin: 0 2px;
}

#mainNav .nav-pipe .nav-link {
    font-size: .82rem;
    font-weight: 400;
    color: var(--dark);
    text-decoration: none;
    padding: 8px 18px;
    letter-spacing: .2px;
    white-space: nowrap;
    transition: color .2s ease;
    display: inline-block;
}

#mainNav .nav-pipe .nav-link:hover {
    color: var(--gold);
}

#mainNav .nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
    color: var(--dark);
    font-size: .82rem;
    padding: 8px 18px;
}

#mainNav .nav-chevron {
    font-size: .62rem;
    transition: transform .3s ease, color .25s ease;
    display: inline-block;
    color: var(--dark);
}

#mainNav .nav-dropdown-item.open .nav-chevron {
    transform: rotate(180deg);
    color: var(--gold);
}

#mainNav .nav-dropdown-toggle:hover .nav-chevron {
    color: var(--gold);
}

#mainNav .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    min-width: 220px;
    background: var(--white);
    border-top: 2px solid var(--gold);
    border-radius: 0 0 6px 6px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .13);
    list-style: none;
    margin: 0;
    padding: 6px 0;
    z-index: 20;

    /* hidden state — animatable, !important guards against legacy
       site CSS re-hiding this after the .open class is applied */
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateX(-50%) translateY(-8px) scale(.98);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

#mainNav .nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid var(--gold);
}

#mainNav .nav-dropdown-item.open .nav-dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
    transform: translateX(-50%) translateY(0) scale(1);
}

#mainNav .nav-dropdown-link {
    display: block !important;
    padding: 10px 22px;
    font-size: .8rem !important;
    color: var(--dark) !important;
    text-decoration: none;
    border-left: 2px solid transparent;
    white-space: nowrap;
    line-height: 1.4 !important;
    transition: color .2s ease, background .2s ease, border-color .2s ease, padding-left .2s ease;
}

#mainNav .nav-dropdown-link:hover {
    color: var(--gold) !important;
    background: rgba(201, 168, 76, .06);
    border-left-color: var(--gold);
    padding-left: 28px;
}

/* Toggler / hamburger */
#mainNav .navbar-toggler {
    display: none;
    border: 1px solid rgba(0, 0, 0, .15);
    background: none;
    padding: 8px 10px;
    cursor: pointer;
    border-radius: 3px;
    font-size: 1.1rem;
    color: var(--dark);
}

/* ===========================
   HERO SECTION
=========================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 10, 10, 0.7) 0%,
    rgba(10, 10, 10, 0.35) 60%,
    rgba(10, 10, 10, 0.05) 100%
  );
  z-index: 1;
} */

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 500;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--dark);
    line-height: 1.8;
    max-width: 450px;
    font-weight: 400;
}

/* ===========================
   REDEFINES LUXURY SECTION
=========================== */
.luxury-section {
    background: #f8f8f8;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.content-box {
    padding: 20px 40px;
}

.content-box h2 {
    font-size: 42px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.content-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 35px;
    max-width: 480px;
}

.btn-gold {
    background: var(--gold);
    color: var(--dark);
    padding: 15px 35px;
    border-radius: 0;
    font-weight: 600;
    transition: all .3s ease;
}

.btn-gold:hover {
    background: var(--gold-dark);
    color: var(--white);
}

.building-image {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 230px;
}

.building-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ===========================
   EXCLUSIVITY SLIDER SECTION
=========================== */

.exclusivity-section {
    background-color: var(--cream);
    padding: 70px 0;
    overflow: hidden;
}

.exclusivity-wrapper {
    width: 100%;
}

/* Row: left text column (constrained) + right image column (full-bleed) */
.excl-row {
    display: flex;
    align-items: center;
    width: 100%;
}

.excl-text-col {
    flex: 0 0 38%;
    max-width: 38%;
    padding-left: max(40px, calc((100vw - 1320px) / 2 + 12px));
    padding-right: 30px;
}

.excl-img-col {
    flex: 0 0 62%;
    max-width: 62%;
}

.excl-img-row {
    display: flex;
    gap: 14px;
    width: 100%;
}

.excl-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 18px;
}

.excl-text {
    font-size: 0.87rem;
    color: var(--text-body);
    line-height: 1.75;
    font-weight: 400;
}

.excl-text a {
    color: var(--gold);
    font-weight: 500;
}

.excl-text a:hover {
    color: var(--gold-dark);
}

.excl-img {
    height: 320px;
    flex: 1 0 0;
    overflow: hidden;
    border-radius: 4px;
}

.excl-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigation row: line + arrow buttons, left-aligned under text */
.excl-line {
    /* flex: 1; */
    height: 1px;
    background-color: #c9c2b4;
    max-width: 70%;
    width: 100%;
}

.excl-btn {
    width: 42px;
    height: 42px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.25s ease;
}

.swiper-button-prev-excl.excl-btn {
    background-color: #c9c2b4;
    color: var(--white);
}

.swiper-button-prev-excl.excl-btn:hover {
    background-color: var(--dark);
}

.swiper-button-next-excl.excl-btn {
    background-color: var(--dark);
    color: var(--white);
}

.swiper-button-next-excl.excl-btn:hover {
    background-color: var(--gold);
}

/* ===========================
   AMENITIES SECTION
=========================== */
.amenities-section {
    background-color: var(--white);
    padding: 70px 0;
}

/* Column-based masonry — 4 columns, each column stacks its own images at natural heights */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: start;
}

.am-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.am-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    height: 200px;
}

.am-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.am-item:hover img {
    transform: scale(1.08);
}

/* Vary heights per column to mimic the staggered screenshot layout */
.am-col:nth-child(1) .am-item:nth-child(1) {
    height: 230px;
}

.am-col:nth-child(1) .am-item:nth-child(2) {
    height: 270px;
}

.am-col:nth-child(1) .am-item:nth-child(3) {
    height: 200px;
}

.am-col:nth-child(2) .am-item:nth-child(1) {
    height: 180px;
}

.am-col:nth-child(2) .am-item:nth-child(2) {
    height: 240px;
}

.am-col:nth-child(3) .am-item:nth-child(1) {
    height: 170px;
}

.am-col:nth-child(3) .am-item:nth-child(2) {
    height: 180px;
}

.am-col:nth-child(4) .am-item:nth-child(1) {
    height: 230px;
}

.am-col:nth-child(4) .am-item:nth-child(2) {
    height: 150px;
}

.am-col:nth-child(4) .am-item:nth-child(3) {
    height: 230px;
}

/* Zoom/expand icon shown on hover */
.am-zoom-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.am-item:hover .am-zoom-icon {
    opacity: 1;
    transform: scale(1);
}

/* Subtle dark overlay on hover for affordance */
.am-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    pointer-events: none;
}

.am-item:hover::after {
    background: rgba(0, 0, 0, 0.12);
}

/* Caption text block within the grid (column 3) */
.am-text-block {
    padding: 4px 4px 0;
}

.am-text-block p {
    font-size: 18px;
    color: var(--dark);
    font-weight: 400;
    line-height: 1.5;
}


/* ===========================
   AMENITIES LIGHTBOX MODAL
=========================== */
.amenities-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 8, 6, 0.96);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.amenities-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lb-stage {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 100px 120px;
}

.lb-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.lb-image.show {
    opacity: 1;
    transform: scale(1);
}

.lb-close {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 5;
}

.lb-close:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: rotate(90deg);
}

.lb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 5;
}

.lb-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.lb-prev {
    left: 24px;
}

.lb-next {
    right: 24px;
}

.lb-counter {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.lb-thumbs {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 0 24px;
    overflow-x: auto;
}

.lb-thumb {
    width: 60px;
    height: 44px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.45;
    border: 2px solid transparent;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.lb-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lb-thumb:hover {
    opacity: 0.8;
}

.lb-thumb.active {
    opacity: 1;
    border-color: var(--gold);
}

body.lightbox-open {
    overflow: hidden;
}

/* ===========================
   PARTNERS / LOGOS
=========================== */
.partners-section {
    background-color: var(--white);
}

.partner-label {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 20px;
}


/* ===========================
   INSTAGRAM / FOLLOW SECTION
=========================== */
.instagram-section {
    background-color: var(--cream);
    padding: 100px 0;
}

.insta-img {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    height: 200px;
    cursor: pointer;
}

.insta-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.insta-img:hover img {
    transform: scale(1.07);
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insta-img:hover .insta-overlay {
    opacity: 1;
}

.insta-overlay i {
    font-size: 2rem;
    color: var(--white);
}

.follow-link {
    font-size: 18px;
    font-weight: 400;
}

.follow-handle {
    color: var(--gold);
    font-weight: 500;
}

.follow-link:hover .follow-handle {
    color: var(--gold-dark);
}

/* ===========================
   CTA / CONTACT FORM
=========================== */
.cta-section {
    position: relative;
    background: linear-gradient(180deg, #faf7f2 20%, #faf7f2 40%, #ffffff 0%);
    padding: 0 0 90px;
}

.cta-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background-image: url('../images/bg-hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 55px 50px 50px;
}

.cta-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 15, 10, 0.55) 0%, rgba(20, 15, 10, 0.75) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.cta-sub {
    font-size: 0.82rem;
    color: var(--white);
    font-weight: 400;
}

.cta-input {
    background-color: var(--white);
    border: none;
    color: var(--dark);
    border-radius: 4px;
    padding: 13px 16px;
    font-size: 0.82rem;
    font-family: var(--font);
    transition: box-shadow 0.3s ease;
}

.cta-input::placeholder {
    color: #999;
}

.cta-input:focus {
    background-color: var(--white);
    color: var(--dark);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.35);
    outline: none;
}

/* ===========================
   BLOGS SECTION
=========================== */
.blogs-section {
    background-color: var(--cream);
    padding: 80px 0 50px;
}

.blogs-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

/* Clickable card link wrapper */
.blog-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.blog-card-link:hover {
    text-decoration: none;
    color: inherit;
}

/* Card */
.blog-card {
    background: var(--white);
    border-radius: 6px;
    overflow: visible;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
height: 100%;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

/* Image — slightly overhangs the card top */
.blog-img-wrap {
    width: 100%;
    height: 220px;
    border-radius: 6px 6px 0 0;
    overflow: hidden;
}

.blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrap img {
    transform: scale(1.05);
}

/* Card body */
.blog-body {
    padding: 20px 20px 24px;
}

/* Gold category tag */
.blog-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.2px;
    margin-bottom: 10px;
}

/* Title */
.blog-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.45;
    margin-bottom: 14px;
}

/* Date */
.blog-date {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 14px;
}

/* Read More link */
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.3px;
    transition: gap 0.25s ease, color 0.25s ease;
}

.blog-read-more i {
    font-size: 0.68rem;
    transition: transform 0.25s ease;
}

.blog-card-link:hover .blog-read-more {
    color: var(--gold-dark);
    gap: 10px;
}

.blog-card-link:hover .blog-read-more i {
    transform: translateX(3px);
}

/* ===========================
   FOOTER
=========================== */
.site-footer {
    font-family: var(--font);
}

/* ---- Top area (cream) ---- */
.footer-top {
    background-color: var(--cream-mid);
    padding: 60px 0 50px;
}

/* Description */
.footer-desc {
    font-size: 0.82rem;
    color: var(--text-body);
    line-height: 1.8;
    max-width: 370px;
    font-weight: 400;
    margin-bottom: 0;
}

/* Social row */
.footer-social-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-social-label {
    font-size: 0.82rem;
    color: var(--dark);
    font-weight: 500;
    white-space: nowrap;
}

.footer-socials {
    display: flex;
    gap: 8px;
}

.footer-social-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: var(--dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
}

.footer-social-btn:hover {
    background-color: var(--gold);
    transform: translateY(-2px);
    color: var(--white);
}

/* Office heading */
.footer-office-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 28px;
    letter-spacing: 0.2px;
}

/* Contact rows */
.footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
}

.footer-contact-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 2px;
    text-transform: none;
    letter-spacing: 0.2px;
}

.footer-contact-value {
    font-size: 0.9rem;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.4;
}

/* ---- Bottom bar (dark) ---- */
.footer-bottom {
    background-color: #2a2620;
    padding: 16px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--white);
    margin-bottom: 0;
    font-weight: 400;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom-links a {
    font-size: 0.75rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

.footer-dot {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
}


/* ===========================
   ABOUT PAGE — about.css
   Extends style.css / responsive.css
=========================== */

/* ========================
   ABOUT HERO
======================== */
.about-hero {
    position: relative;
    max-height: 100vh;
    height: 80vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.04);
    animation: heroZoomOut 1.6s ease forwards;
}

@keyframes heroZoomOut {
    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1);
    }
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
            rgba(10, 8, 5, 0.62) 0%,
            rgba(10, 8, 5, 0.45) 60%,
            rgba(10, 8, 5, 0.20) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 120px;
}

.about-hero-eyebrow {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
    opacity: 0;
    animation: fadeUpIn 0.7s ease 0.3s forwards;
}

.about-hero-title {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUpIn 0.8s ease 0.5s forwards;
}

.about-hero-sub {
    font-size: 16px;
    color: var(--white);
    line-height: 1.75;
    font-weight: 400;
    max-width: 420px;
    opacity: 0;
    animation: fadeUpIn 0.8s ease 0.75s forwards;
}

.about-hero-sub strong {
    color: var(--gold);
    font-weight: 600;
}

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

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

/* ========================
   SHARED ABOUT TYPOGRAPHY
======================== */
.about-eyebrow {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-section-title {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.about-story-rule {
    width: 36px;
    height: 3px;
    background-color: var(--gold);
    border-radius: 2px;
    margin-bottom: 24px;
}

/* ========================
   OUR STORY SECTION
======================== */
.about-story-section {
    background-color: var(--white);
    padding: 90px 0 80px;
}

.about-story-left {
    padding-right: 50px;
}

.about-story-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 16px;
}

.about-story-text {
    font-size: 16px;
    color: var(--dark);
    line-height: 1.85;
    margin-bottom: 16px;
}

.about-story-text:last-child {
    margin-bottom: 0;
}

/* Image block with corner accents */
.about-story-right {
    padding-left: 60px;
}

.about-story-img-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Gold corner brackets - top-left */
.img-corner-accent {
    position: absolute;
    width: 100px;
    height: 100px;
    z-index: 2;
    pointer-events: none;
}

.img-corner-tl {
    top: -12px;
    left: -12px;
    border-top: 2.5px solid var(--gold);
    border-left: 2.5px solid var(--gold);
}

.img-corner-br {
    bottom: -12px;
    /* account for badge height */
    right: -12px;
    border-bottom: 2.5px solid var(--gold);
    border-right: 2.5px solid var(--gold);
}

.about-story-img {
    border-radius: 4px;
    overflow: hidden;
    line-height: 0;
    box-shadow: 2px 2px 18px #00000040;
}

.about-story-img img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.about-story-img-wrap:hover .about-story-img img {
    transform: scale(1.04);
}

/* Badge: 15+ */
.about-badge {
    position: absolute;
    bottom: -20px;
    left: 0;
    background-color: var(--gold);
    color: var(--white);
    padding: 32px 28px;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
    z-index: 3;
}

.badge-number {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    color: var(--white);
    font-family: 'Libre Caslon Text', serif;
    margin-bottom: 4px;
}

.badge-label {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
}

/* ========================
   LIFESTYLE EXPERIENCE SECTION
======================== */
.lifestyle-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

/* Background image */
.lifestyle-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.lifestyle-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    transition: transform 8s ease;
}

.lifestyle-section:hover .lifestyle-bg img {
    transform: scale(1.04);
}

/* Dark overlay — heavier on left for text legibility, fades right */
.lifestyle-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(8, 6, 4, 0.88) 0%,
            rgba(8, 6, 4, 0.78) 40%,
            rgba(8, 6, 4, 0.40) 70%,
            rgba(8, 6, 4, 0.10) 100%);
    z-index: 1;
}

/* Content sits above overlay */
.lifestyle-content {
    position: relative;
    z-index: 2;
}

/* Eyebrow */
.lifestyle-eyebrow {
    font-family: var(--font);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 14px;
}

/* Heading — "The Lifestyle" in white serif, "Experience" italic gold serif */
.lifestyle-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 22px;
}

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

/* Body text */
.lifestyle-text {
    font-family: var(--font);
    font-size: 0.87rem;
    color: var(--white);
    line-height: 1.85;
    font-weight: 400;
    max-width: 480px;
    margin-bottom: 32px;
}

/* Feature list */
.lifestyle-list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lifestyle-list-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* Square icon badge — gold tinted */
.lifestyle-list-icon {
    width: 30px;
    height: 30px;
    background: rgba(201, 168, 76, 0.18);
    border: 1px solid rgba(201, 168, 76, 0.45);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 0.72rem;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.lifestyle-list-item:hover .lifestyle-list-icon {
    background: rgba(201, 168, 76, 0.35);
    border-color: var(--gold);
}

/* Outlined button — gold border, transparent bg */
.btn-lifestyle-outline {
    display: inline-block;
    font-family: var(--font);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    background: transparent;
    padding: 13px 28px;
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.btn-lifestyle-outline:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

/* ========================
   OUR PHILOSOPHY SECTION
======================== */
.philosophy-section {
    background-color: var(--cream);
    padding: 90px 0 80px;
}

.philosophy-eyebrow {
    font-family: var(--font);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.philosophy-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0;
}

/* Cards */
.philosophy-card {
    background: var(--white);
    border-radius: 6px;
    padding: 44px 34px 40px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
}

.philosophy-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.philosophy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
}

.philosophy-card:hover::before {
    transform: scaleX(1);
}

/* Icon circle */
.philosophy-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    background: rgba(201, 168, 76, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1rem;
    color: var(--gold);
    transition: background 0.3s ease, transform 0.3s ease;
}

.philosophy-card:hover .philosophy-icon-wrap {
    background: rgba(201, 168, 76, 0.18);
    transform: scale(1.1) rotate(5deg);
}

.philosophy-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.philosophy-card-text {
    font-family: var(--font);
    font-size: 0.83rem;
    color: var(--text-body);
    line-height: 1.85;
    font-weight: 400;
    margin-bottom: 0;
}


/* ========================
   STRATEGIC REACH SECTION
======================== */
.strategic-section {
    background-color: #1a1712;
    padding: 90px 0;
    position: relative;
}

.strategic-eyebrow {
    font-family: var(--font);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.strategic-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.strategic-text {
    font-family: var(--font);
    font-size: 1rem;
    color: var(--white);
    line-height: 1.85;
    font-weight: 400;
    margin-bottom: 36px;
}

.strategic-text strong {
    color: var(--white);
    font-weight: 600;
}

/* Locations 2×2 grid */
.strategic-locations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 40px;
}

.strategic-location-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.location-city {
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0;
}

.location-role {
    font-family: var(--font);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0;
}

.location-role.upcoming {
    color: rgba(255, 255, 255, 0.4);
}

/* Map image wrapper */
.strategic-map-wrap {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    border: 1.5px solid rgba(201, 168, 76, 0.35);
    box-shadow:
        0 0 0 6px rgba(201, 168, 76, 0.06),
        0 24px 60px rgba(0, 0, 0, 0.5);
    line-height: 0;
}

.strategic-map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: sepia(60%) saturate(160%) hue-rotate(5deg) brightness(0.75);
    transition: filter 0.5s ease, transform 0.6s ease;
}

.strategic-map-wrap:hover .strategic-map-img {
    filter: sepia(50%) saturate(180%) hue-rotate(5deg) brightness(0.85);
    transform: scale(1.02);
}

/* Subtle warm tint overlay over map */
.strategic-map-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(201, 168, 76, 0.08) 0%,
            rgba(20, 15, 8, 0.30) 100%);
    pointer-events: none;
}

/* Location pins */
.map-pin {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.pin-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.25);
    animation: pinPulse 2s ease infinite;
}

@keyframes pinPulse {

    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.25);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(201, 168, 76, 0.10);
    }
}

.pin-label {
    font-family: var(--font);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--white);
    background: rgba(10, 8, 4, 0.65);
    padding: 2px 6px;
    border-radius: 2px;
    white-space: nowrap;
}

/* Pin positions (matching world map geography) */
.map-pin--panama {
    left: 26%;
    top: 55%;
}

.map-pin--dubai {
    left: 64%;
    top: 44%;
}

.map-pin--monaco {
    left: 50%;
    top: 34%;
}




/* ========================
   STRATEGIC PARTNERS SECTION
======================== */
.sp-section {
    background-color: var(--white);
    padding: 80px 0 70px;
    border-top: 1px solid var(--border-light);
}

.sp-heading {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0;
}

/* Each partner column */
.sp-col {
    padding: 20px 24px 10px;
    border-right: 1px solid var(--border-light);
    transition: background 0.3s ease;
}

.sp-col:last-child {
    border-right: none;
}

.sp-col:hover {
    background: rgba(201, 168, 76, 0.03);
}


/* ========================
   BEGIN YOUR LEGACY CTA
======================== */
.legacy-section {
    position: relative;
    background-color: #111009;
    padding: 100px 0;
    overflow: hidden;
}

/* Background image — fills the section, object-fit cover */
.legacy-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

/* Subtle dark-to-transparent overlay so left side stays dark */
.legacy-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,
            rgba(10, 8, 4, 0.92) 0%,
            rgba(10, 8, 4, 0.70) 50%,
            rgba(10, 8, 4, 0.20) 100%);
    z-index: 1;
}

.legacy-content {
    position: relative;
    z-index: 2;
}

/* "Begin Your Legacy" — white serif + italic gold */
.legacy-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}

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

.legacy-sub {
    font-family: var(--font);
    font-size: 0.85rem;
    color: var(--white);
    font-weight: 400;
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto 36px;
}

.legacy-sub strong {
    color: var(--gold);
    font-weight: 600;
}

/* Buttons row */
.legacy-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Gold filled button */
.btn-legacy-gold {
    font-family: var(--font);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark);
    background: var(--gold);
    border: 1.5px solid var(--gold);
    padding: 13px 28px;
    border-radius: 2px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.btn-legacy-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* Outline button */
.btn-legacy-outline {
    font-family: var(--font);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.40);
    padding: 13px 28px;
    border-radius: 2px;
    text-decoration: none;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.2s ease;
}

.btn-legacy-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    transform: translateY(-2px);
}


@media (prefers-reduced-motion: reduce) {

    .about-hero-bg img,
    .about-hero-title,
    .about-hero-eyebrow,
    .about-hero-sub {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

.faq-header {
    max-width: 620px;
    margin: 0 auto 50px;
}

.faq-eyebrow {
    font-family: var(--font);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.faq-title {
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 14px;
}

.faq-subtitle {
    font-family: var(--font);
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 0;
}

.faq-accordion {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    margin-bottom: 16px;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.35s ease, border-color 0.35s ease, transform 0.25s ease;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold-dark), var(--gold), var(--gold-light));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: rgba(233, 174, 90, 0.35);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.07);
}

.faq-item.active::before {
    transform: scaleY(1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: 22px 28px;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
    transition: color 0.25s ease;
}

.faq-question:hover {
    color: var(--gold-dark);
}

.faq-item.active .faq-question {
    color: var(--gold-dark);
}

.faq-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--gold);
    transition: transform 0.4s ease, background 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(135deg);
    background: var(--gold);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 28px 24px;
}

.faq-answer-inner p {
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-body);
    margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {

    .faq-item,
    .faq-icon,
    .faq-answer {
        transition: none;
    }
}



/* ========================
   PROJECTS HERO / BANNER
======================== */
.projects-eyebrow {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.projects-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 130px 0 60px;
    text-align: center;
}

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

.projects-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: projectsHeroZoom 20s ease-in-out infinite alternate;
}

@keyframes projectsHeroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.projects-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(115deg,
            rgba(8, 6, 5, 0.82) 0%,
            rgba(18, 16, 18, 0.62) 42%,
            rgba(90, 96, 108, 0.38) 100%);
}

.projects-hero .container {
    position: relative;
    z-index: 2;
}

.projects-hero-content {
    max-width: 640px;
    margin: 0 auto;
}

.projects-hero .projects-eyebrow {
    color: var(--gold);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.projects-hero-title {
    font-family: 'Libre Caslon Text', serif;
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0;
    text-shadow: 0 4px 26px rgba(0, 0, 0, 0.45);
}

.projects-hero-divider {
    display: block;
    width: 46px;
    height: 2px;
    background: var(--gold);
    margin: 22px auto 0;
}

@media (prefers-reduced-motion: reduce) {
    .projects-hero-bg img {
        animation: none;
    }
}

/* ========================
   PROJECTS FILTER TABS
======================== */
.projects-section {
    background-color: var(--white);
    padding-top: 20px;
}

.projects-filter {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 56px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 0;
}

.filter-btn {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 14px 22px;
    transition: color 0.3s ease;
    z-index: 1;
}

.filter-btn:hover {
    color: var(--dark);
}

.filter-btn.active {
    color: var(--gold-dark);
}

.filter-indicator {
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1), width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

/* ========================
   PROJECTS GRID
======================== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 30px;
}

.project-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.10);
}

/* filtering states */
.project-card.fc-hide {
    opacity: 0;
    transform: scale(0.96) translateY(10px);
    pointer-events: none;
}

.project-img-wrap {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.project-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-img-wrap img {
    transform: scale(1.08);
}

.project-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(26, 26, 26, 0.75);
    backdrop-filter: blur(4px);
    color: var(--white);
    font-family: var(--font);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 3px;
}

.project-body {
    padding: 24px 26px 26px;
}

.project-title {
    font-family: 'Libre Caslon Text', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.project-location {
    font-family: var(--font);
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--gold-dark);
    margin-bottom: 14px;
}

.project-location i {
    margin-right: 5px;
}

.project-meta {
    font-family: var(--font);
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--text-body);
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    text-decoration: none;
    transition: gap 0.25s ease, color 0.25s ease;
}

.project-link i {
    font-size: 0.68rem;
    transition: transform 0.25s ease;
}

.project-link:hover {
    color: var(--gold);
    gap: 12px;
}

.project-link:hover i {
    transform: translateX(3px);
}

.projects-empty {
    display: none;
    text-align: center;
    font-family: var(--font);
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 40px 0;
}

.projects-empty.show {
    display: block;
}


/* ========================
   VISION / CTA SECTION
======================== */
.vision-section {
    background-color: var(--cream);
    padding: 90px 0 100px;
}

.vision-content {
    max-width: 680px;
    margin: 0 auto;
}

.vision-title {
    font-family: 'Libre Caslon Text', serif;
    font-size: clamp(1.9rem, 3.6vw, 2.6rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 18px;
}

.vision-sub {
    font-family: var(--font);
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--text-body);
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto 34px;
}

.vision-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Gold-dark filled button */
.btn-vision-gold {
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--dark);
    background: var(--gold);
    border: 1.5px solid var(--gold);
    padding: 14px 26px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
}

.btn-vision-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(168, 133, 46, 0.28);
}

/* Outline button */
.btn-vision-outline {
    font-family: var(--font);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--dark);
    background: transparent;
    border: 1.5px solid var(--border-light);
    padding: 14px 26px;
    border-radius: 3px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.25s ease;
}

.btn-vision-outline:hover {
    border-color: var(--dark);
    background: rgba(26, 26, 26, 0.03);
    transform: translateY(-3px);
}


/* ========================
   GALLERY MASONRY GRID
======================== */
.gallery-section {
    padding: 100px 0;
}

.gallery-grid {
    column-count: 3;
    column-gap: 22px;
}

.gallery-item {
    position: relative;
    break-inside: avoid;
    margin-bottom: 22px;
    overflow: hidden;
    cursor: pointer;
    background: var(--dark);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-item.fc-hide {
    opacity: 0;
    transform: scale(0.96) translateY(10px);
    pointer-events: none;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.6s ease, filter 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.07);
    filter: brightness(0.75);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(10, 8, 6, 0) 40%, rgba(10, 8, 6, 0.55) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transform: scale(0.7);
    transition: transform 0.35s ease, background 0.3s ease, border-color 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
    background: rgba(233, 174, 90, 0.9);
    border-color: var(--gold);
    color: var(--dark);
}

.gallery-play-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.75);
    backdrop-filter: blur(4px);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    z-index: 1;
}

/* ========================
   GALLERY LIGHTBOX
======================== */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.gl-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 6, 5, 0.95);
    backdrop-filter: blur(6px);
}

.gl-close,
.gl-arrow {
    position: absolute;
    z-index: 5;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.gl-close:hover,
.gl-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

.gl-close {
    top: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
}

.gl-arrow {
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    font-size: 1.05rem;
}

.gl-arrow:hover {
    transform: translateY(-50%) scale(1.08);
}

.gl-prev {
    left: 24px;
}

.gl-next {
    right: 24px;
}

.gl-stage {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    padding: 0 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gl-media-wrap {
    position: relative;
    width: 100%;
    max-height: 74vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gl-image,
.gl-video {
    max-width: 100%;
    max-height: 74vh;
    border-radius: 6px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    display: none;
    opacity: 0;
    transform: scale(0.97);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.gl-image.show,
.gl-video.show {
    display: block;
    opacity: 1;
    transform: scale(1);
}

.gl-caption {
    margin-top: 18px;
    font-family: var(--font);
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
}

.gl-footer {
    position: relative;
    z-index: 2;
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.gl-counter {
    font-family: var(--font);
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.55);
}

.gl-thumbs {
    display: flex;
    gap: 10px;
    max-width: 90vw;
    overflow-x: auto;
    padding: 4px 2px 8px;
}

.gl-thumbs::-webkit-scrollbar {
    height: 4px;
}

.gl-thumbs::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.gl-thumb {
    position: relative;
    flex-shrink: 0;
    width: 66px;
    height: 48px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.5;
    transition: opacity 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

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

.gl-thumb i {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.65rem;
    background: rgba(0, 0, 0, 0.35);
}

.gl-thumb:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.gl-thumb.active {
    opacity: 1;
    border-color: var(--gold);
}

body.gallery-lightbox-open {
    overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {

    .gallery-item,
    .gallery-overlay,
    .gallery-overlay i,
    .gl-image,
    .gl-video {
        transition: none;
    }
}

/* ========================
   BLOG LISTING PAGE
======================== */

.blog-col {
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.blog-col.fc-hide {
    opacity: 0;
    transform: scale(0.96) translateY(10px);
    pointer-events: none;
}

.blog-col-extra {
    display: none;
}

.blog-load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

#blogLoadMoreBtn {
    cursor: pointer;
}

#blogLoadMoreBtn.is-hidden {
    display: none;
}

/* ========================
   READING PROGRESS BAR
======================== */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    z-index: 4000;
    transition: width 0.1s linear;
}

/* ========================
   SINGLE POST HERO
======================== */
.post-hero {
    min-height: 460px;
    padding-top: 150px;
}

.post-hero-content {
    max-width: 100%;
}

.post-breadcrumb {
    font-family: var(--font);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 18px;
}

.post-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.25s ease;
}

.post-breadcrumb a:hover {
    color: var(--gold);
}

.post-breadcrumb span {
    margin: 0 6px;
    color: rgba(255, 255, 255, 0.4);
}

.post-breadcrumb .current {
    color: var(--gold);
    margin: 0;
}

.post-hero-tag {
    display: inline-block;
    font-family: var(--font);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--dark);
    background: var(--gold);
    padding: 6px 14px;
    border-radius: 3px;
    margin-bottom: 18px;
}

.post-hero-title {
    line-height: 1.3;
}

.post-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 22px;
    font-family: var(--font);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.post-hero-meta i {
    color: var(--gold);
    margin-right: 6px;
}

/* ========================
   SINGLE POST — ARTICLE
======================== */
.post-section {
    background-color: var(--cream);
}

.post-article {
    font-family: var(--font);
    color: var(--text-body);
}

.post-lead {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 26px;
}

.post-article p {
    font-size: 0.92rem;
    line-height: 1.9;
    margin-bottom: 22px;
}

.post-article h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin: 40px 0 18px;
}

.post-article h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.post-article h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
}

.post-figure {
    margin: 30px 0;
}

.post-figure img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.post-list {
    margin: 0 0 26px;
    padding-left: 0;
    list-style: none;
}

.post-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.7;
}

.post-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--gold);
    font-size: 0.72rem;
}

/* ========================
   SINGLE POST — SIDEBAR
======================== */
.post-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 24px;
    margin-bottom: 26px;
}

.sidebar-heading {
    font-family: 'Libre Caslon Text', serif;
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 18px;
}

.sidebar-post {
    display: flex;
    gap: 12px;
    align-items: center;
    text-decoration: none;
    margin-bottom: 16px;
    transition: transform 0.25s ease;
}

.sidebar-post:last-child {
    margin-bottom: 0;
}

.sidebar-post:hover {
    transform: translateX(4px);
}

.sidebar-post img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    flex-shrink: 0;
}

.sidebar-post-title {
    font-family: var(--font);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 4px;
}

.sidebar-post:hover .sidebar-post-title {
    color: var(--gold-dark);
}

.sidebar-post-date {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0;
    border-bottom: 1px solid var(--border-light);
}

.sidebar-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-list a {
    font-family: var(--font);
    font-size: 0.83rem;
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.25s ease;
}

.sidebar-list a:hover {
    color: var(--gold-dark);
}

.sidebar-list span {
    font-family: var(--font);
    font-size: 0.72rem;
    color: var(--text-muted);
    background: var(--cream-mid);
    padding: 2px 9px;
    border-radius: 20px;
}

/* .sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sidebar-tags a {
    font-family: var(--font);
    font-size: 0.7rem;
    color: var(--text-body);
    background: var(--cream-mid);
    border: 1px solid var(--border-light);
    padding: 6px 13px;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.sidebar-tags a:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
} */

.sidebar-cta {
    background: linear-gradient(150deg, var(--dark) 0%, #2a2419 100%);
    border-radius: 10px;
    padding: 30px 26px;
    text-align: center;
}

.sidebar-cta h4 {
    font-family: 'Libre Caslon Text', serif;
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 12px;
}

.sidebar-cta p {
    font-family: var(--font);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.sidebar-cta .btn-vision-gold {
    width: 100%;
    justify-content: center;
}



/* ========================
   PROPERTY DETAILS — BANNER
   (static visual image group, not a clickable gallery)
======================== */
.property-banner-section {
    background: var(--cream);
    padding: 30px 0 0;
}

.property-banner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: repeat(2, 280px);
    gap: 8px;
}

.pb-main {
    grid-row: 1 / 3;
}

.pb-main,
.pb-thumb {
    position: relative;
    overflow: hidden;
}

.pb-main img,
.pb-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.pb-main:hover img,
.pb-thumb:hover img {
    transform: scale(1.06);
}

/* ========================
   PROPERTY HEADER
======================== */
.property-header-section {
    background: #FDF8F8;
    padding: 40px 0 30px;
}

.property-header-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.property-title {
    font-family: 'Libre Caslon Text', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.property-price {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0;
}

.property-contact-btn {
    flex-shrink: 0;
}

.property-meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font);
    font-size: 1rem;
    color: var(--text-body);
    margin-bottom: 40px;
}

.property-meta-row i {
    color: var(--gold-dark);
    margin-right: 6px;
}

.property-meta-row .dot {
    color: var(--border-light);
}

.property-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.property-pills span {
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-body);
    background: #00000017;
    border: 1px solid var(--border-light);
    padding: 8px 16px;
    border-radius: 20px;
}

.property-desc-box {
    background: #00000017;
    padding: 20px 24px;
}

.property-desc-box p {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 0;
}

/* ========================
   ARCHITECTURAL VISION
======================== */
.property-vision-section {
    background: #FDF8F8;
}

.vision-heading {
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 18px;
}

.vision-quote {
    font-family: 'Libre Caslon Text', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--gold-dark);
    border-left: 2px solid var(--gold);
    padding-left: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.vision-desc {
    font-family: var(--font);
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 32px;
}

.vision-stats {
    display: flex;
    gap: 50px;
    padding-top: 26px;
    border-top: 1px solid var(--border-light);
}

.vision-stat-num {
    font-family: 'Libre Caslon Text', serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: 4px;
}

.vision-stat-label {
    font-family: var(--font);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0;
}

.vision-collage {
    position: relative;
}

.vision-collage-main {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.vision-collage-small {
    position: absolute;
    bottom: -36px;
    left: -30px;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 6px solid var(--cream);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    transition: transform 0.5s ease;
}

.vision-collage:hover .vision-collage-main,
.vision-collage:hover .vision-collage-small {
    transform: scale(1.03);
}

/* ========================
   LIFESTYLE COLLECTIONS
======================== */
.lifestyle-collections-section {
    background: #F5F3F3;
    margin-top: 40px;
    padding: 100px 0;
}

.lc-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 46px;
}

.lc-subtext {
    font-family: var(--font);
    font-size: 0.86rem;
    color: var(--text-body);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 0;
}

.lc-groups {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 44px;
}

.lc-group-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.lc-group-header span {
    font-family: 'Libre Caslon Text', serif;
    font-size: 1rem;
    color: var(--gold-dark);
}

.lc-group-line {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--border-light);
    font-style: normal;
}

.lc-group-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.amenity-icon-card {
    background: #FBF9F9;
    border-radius: 6px;
    padding: 34px 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.amenity-icon-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.07);
    background: var(--white);
}

.amenity-icon-card i {
    font-size: 1.15rem;
    color: var(--gold-dark);
    margin-bottom: 16px;
    display: block;
    transition: transform 0.3s ease;
}

.amenity-icon-card:hover i {
    transform: scale(1.15);
}

.amenity-icon-card p {
    font-family: var(--font);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 0;
}

/* ========================
   LIFESTYLE PARALLAX BANNER
======================== */
.lifestyle-parallax {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lifestyle-parallax-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.lifestyle-parallax-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: projectsHeroZoom 22s ease-in-out infinite alternate;
}

.lifestyle-parallax-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(10, 8, 6, 0.55);
}

.lifestyle-parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.lifestyle-parallax-content h2 {
    font-family: 'Libre Caslon Text', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 30px;
}

.lifestyle-parallax-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 34px;
}

.lifestyle-parallax-tags span {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding-bottom: 6px;
}

.lifestyle-parallax-tags span i {
    font-size: 1rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.lifestyle-parallax-tags span:hover i {
    transform: translateY(-3px) scale(1.1);
}

.lifestyle-parallax-tags span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.lifestyle-parallax-tags span:hover::after {
    transform: scaleX(1);
}

/* ========================
   FLOOR PLANS
======================== */
.floor-plans-section {
    background: var(--cream);
}

.floor-plan-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto 46px;
    border-bottom: none;
    padding-bottom: 0;
}

.floor-plan-tabs .filter-btn {
    padding: 0 0 10px;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: var(--text-muted);
}

.floor-plan-tabs .filter-btn.active {
    color: var(--dark);
    font-weight: 600;
}

.floor-plan-tabs .filter-indicator {
    bottom: 0;
    height: 2px;
}

.floor-plan-panels {
    margin: 0 auto;
}

.floor-plan-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.floor-plan-panel.active {
    display: grid;
    animation: floorPlanFadeIn 0.45s ease;
}

@keyframes floorPlanFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.floor-plan-img {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 20px;
}

.floor-plan-img img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
    transition: opacity 0.3s ease;
}

.floor-plan-details h3 {
    font-family: 'Libre Caslon Text', serif;
    font-size: 1.35rem;
    color: var(--dark);
    margin-bottom: 14px;
    transition: opacity 0.3s ease;
}

.floor-plan-details p {
    font-family: var(--font);
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 22px;
    transition: opacity 0.3s ease;
}

.floor-plan-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 28px;
}

.floor-plan-table td {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    font-family: var(--font);
    font-size: 0.82rem;
    color: var(--text-body);
}

.floor-plan-table td:last-child {
    font-weight: 600;
    color: var(--dark);
}

.btn-floor-plan {
    display: inline-flex;
    align-items: center;
    font-family: var(--font);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--dark);
    padding: 14px 26px;
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.25s ease;
}

.btn-floor-plan:hover {
    background: var(--gold-dark);
    color: var(--white);
    transform: translateY(-3px);
}

/* ========================
   LOCATION
======================== */

.location-section {
    background: #F5F3F3;
    padding: 80px 0;
}

.location-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    align-items: center;
}

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

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

.location-pin {
    position: absolute;
    top: 42%;
    left: 48%;
    width: 42px;
    height: 42px;
    border-radius: 50% 50% 50% 0;
    background: var(--gold);
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    animation: pinBounce 2.4s ease-in-out infinite;
}

.location-pin i {
    transform: rotate(45deg);
    color: var(--dark);
    font-size: 1rem;
}

@keyframes pinBounce {

    0%,
    100% {
        transform: rotate(-45deg) translateY(0);
    }

    50% {
        transform: rotate(-45deg) translateY(-8px);
    }
}

.location-tooltip {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--white);
    padding: 16px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 300px;
    border: 1px solid var(--gold);
}

.location-tooltip h5 {
    font-family: 'Libre Caslon Text', serif;
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.location-tooltip p {
    font-family: var(--font);
    font-size: 0.72rem;
    color: var(--text-body);
    margin-bottom: 0;
    line-height: 1.5;
}

.location-info {
    padding: 46px 44px;
}

.location-info-eyebrow {
    font-family: var(--font);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.location-info h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 32px;
    font-weight: 500;
}

.location-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.location-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.location-list li>div:first-child {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--gold-dark);
    display: flex;
    align-items: start;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.location-list h6 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.location-list span {
    font-size: 0.8rem;
    color: var(--text-muted);
    background: #F1EDEC;
    padding: 3px 6px;
}

/* ========================
   INVESTMENT POTENTIAL (dark)
======================== */
.investment-section {
    background: var(--dark);
    padding: 100px 0;
}

.investment-eyebrow {
    color: var(--gold);
}

.investment-heading {
    color: var(--white);
}

.investment-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 48px 32px;
    height: 100%;
    transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.investment-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    background: rgba(233, 174, 90, 0.05);
}

.investment-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 24px;
    display: block;
}

.investment-card h4 {
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 16px;
}

.investment-card p {
    font-family: var(--font);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin-bottom: 0;
}

/* ========================
   TESTIMONIALS
======================== */
.testimonials-section {
    padding: 70px 0 40px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 30px 26px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

/* Swiper wrapper */
.testimonials-swiper-wrap {
    position: relative;
    padding: 0 60px;
}

.testimonials-swiper {
    overflow: hidden;
    padding: 6px 0 20px;
}

.testimonials-swiper .swiper-slide {
    height: auto;
}

.testi-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border-light);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    z-index: 5;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
    display: none;
}

.testi-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.testi-prev {
    left: 0;
}

.testi-next {
    right: 0;
}

.testi-arrow.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}

.testimonials-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    display: none;
}

.testimonials-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--border-light);
    opacity: 1;
    margin: 0 5px;
    transition: background 0.25s ease, transform 0.25s ease;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    background: var(--gold);
    transform: scale(1.3);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.78rem;
    margin-bottom: 16px;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    object-fit: cover;
}

.testimonial-author h6 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}

.testimonial-author span {
    font-family: var(--font);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========================
   CONSULTATION FORM
======================== */

.consultation-card {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
}

.consultation-img {
    min-height: 100%;
}

.consultation-img img {
    width: 100%;
    height: 100%;
    min-height: 710px;
    max-height: 710px;
    object-fit: cover;
    display: block;
}

.consultation-form-wrap {
    padding: 50px 48px;
}

.consultation-form-wrap h3 {
    font-size: 2rem;
    line-height: 1.25;
    color: var(--dark);
    margin-bottom: 32px;
    max-width: 450px;
}

.cf-row {
    margin-bottom: 22px;
}

.cf-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.cf-row-split .cf-row {
    margin-bottom: 0;
}

.cf-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

/* Underline-only fields — no box border */
.consultation-form-wrap input,
.consultation-form-wrap select,
.consultation-form-wrap textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--border-light);
    border-radius: 0;
    padding: 6px 0 10px;
    font-family: var(--font);
    font-size: 0.86rem;
    color: var(--dark);
    background: transparent;
    transition: border-color 0.25s ease;
}

.consultation-form-wrap input::placeholder,
.consultation-form-wrap textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.consultation-form-wrap input:focus,
.consultation-form-wrap select:focus,
.consultation-form-wrap textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.consultation-form-wrap textarea {
    resize: none;
}

.consultation-form-wrap select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 10px 7px;
    padding-right: 20px;
    padding-left: 8px;
}

.btn-consultation-submit {
    width: 100%;
    border: none;
    background: var(--dark);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 16px 0;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.3s ease;
}

.btn-consultation-submit:hover {
    background: var(--gold-dark);
}

.btn-consultation-submit.is-success {
    background: #5a9e6a;
}

/* ========================
   PROPERTY FINAL CTA
======================== */
.property-final-cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.btn-vision-outline-light {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-vision-outline-light:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}


@media (prefers-reduced-motion: reduce) {

    .lifestyle-parallax-bg img,
    .location-pin {
        animation: none;
    }
}


/* ========================
   CONTACT — INFO CARDS
======================== */
.contact-info-section {
    background: var(--cream);
    padding: 60px 0 20px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.contact-info-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.contact-info-card i {
    font-size: 1.3rem;
    color: var(--gold-dark);
    margin-bottom: 16px;
    display: block;
}

.contact-info-card h4 {
    font-family: 'Libre Caslon Text', serif;
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.contact-info-card p {
    font-family: var(--font);
    font-size: 0.85rem;
    color: var(--text-body);
    margin-bottom: 4px;
}

.contact-info-card p a {
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.25s ease;
}

.contact-info-card p a:hover {
    color: var(--gold-dark);
}

.contact-info-note {
    font-size: 0.8rem !important;
    color: var(--text-muted) !important;
}

/* ========================
   CONTACT — MAP + FORM
======================== */
.contact-main-section {
    background: var(--cream);
}

.contact-main-card {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

.contact-map {
    position: relative;
    min-height: 100%;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border: 0;
    display: block;
    filter: grayscale(15%);
}

.contact-map-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: var(--white);
    padding: 20px 22px;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.contact-map-card h5 {
    font-family: 'Libre Caslon Text', serif;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 6px;
}

.contact-map-card p {
    font-family: var(--font);
    font-size: 0.78rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-map-card a {
    font-family: var(--font);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--gold-dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.25s ease, color 0.25s ease;
}

.contact-map-card a:hover {
    color: var(--gold);
    gap: 10px;
}

.contact-form-wrap {
    padding: 50px 48px;
}

.contact-form-wrap h3 {
    font-family: 'Libre Caslon Text', serif;
    font-size: 1.7rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.contact-form-sub {
    font-family: var(--font);
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-form-wrap .cf-row {
    margin-bottom: 22px;
}

.contact-form-wrap .cf-row-split {
    margin-bottom: 22px;
}

/* Underline-only fields for the Contact page form —
   its own dedicated ruleset, deliberately not shared with
   .consultation-form-wrap so the two forms never collide. */
.contact-form-wrap input,
.contact-form-wrap select,
.contact-form-wrap textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--border-light);
    border-radius: 0;
    padding: 6px 6px 10px;
    font-family: var(--font);
    font-size: 0.86rem;
    color: var(--dark);
    background: transparent;
    transition: border-color 0.25s ease;
}

.contact-form-wrap input::placeholder,
.contact-form-wrap textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.contact-form-wrap input:focus,
.contact-form-wrap select:focus,
.contact-form-wrap textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.contact-form-wrap select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 10px 7px;
    padding-right: 20px;
}

.contact-form-wrap textarea {
    min-height: 90px;
    resize: none;
}

.contact-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 26px;
    cursor: pointer;
}

.contact-checkbox input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--gold-dark);
    flex-shrink: 0;
    cursor: pointer;
}

.contact-checkbox span {
    font-family: var(--font);
    font-size: 0.76rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-checkbox span a {
    color: var(--gold-dark);
    text-decoration: underline;
}


/* =====================================================
           TERMS & CONDITIONS
        ===================================================== */

.terms-section {
    background: #f7f2eb;
    padding: 120px 0 80px;
}

.terms-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

/* Intro */

.terms-intro {
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
}

.terms-label {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dark);
}

.terms-title {
    margin-bottom: 25px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.05;
    font-weight: 400;
    color: var(--text-dark);
}

.terms-intro-text {
    max-width: 720px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-muted);
}

.terms-updated {
    margin-top: 20px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
}


/* Main Content */

.terms-content {
    background: var(--white);
    padding: 65px 75px;
    border: 1px solid rgba(70, 50, 35, 0.10);
    box-shadow: 0 20px 60px rgba(50, 35, 20, 0.06);
}

.terms-content h2 {
    margin-top: 45px;
    margin-bottom: 18px;
    font-size: 30px;
    line-height: 1.3;
    font-weight: 400;
    color: var(--text-dark);
}

.terms-content h2:first-child {
    margin-top: 0;
}

.terms-content h3 {
    margin-top: 30px;
    margin-bottom: 12px;
    font-size: 17px;
    font-weight: 600;
    color: var(--gold-dark);
}

.terms-content p {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-dark);
}

.terms-content ul {
    margin: 15px 0 25px;
    padding-left: 22px;
}

.terms-content li {
    margin-bottom: 12px;
    padding-left: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #665b53;
}

.terms-content li::marker {
    color: var(--gold-dark);
}


/* Highlight */

.terms-highlight {
    margin: 35px 0;
    padding: 25px 30px;
    border-left: 3px solid var(--gold-dark);
    background: #f7f2eb;
}

.terms-highlight p {
    margin: 0;
    font-size: 14px;
}


/* Divider */

.terms-divider {
    width: 70px;
    height: 1px;
    margin: 45px 0;
    background: var(--gold-light);
}


/* Contact Box */

.terms-contact {
    margin-top: 50px;
    padding: 35px;
    background: var(--gold-dark);
    color: var(--white);
}

.terms-contact h3 {
    margin: 0 0 12px;
    font-size: 28px;
    font-weight: 400;
    color: var(--white);
}

.terms-contact p {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, .75);
}

.terms-contact a {
    color: var(--cream-mid);
    text-decoration: none;
    transition: .3s ease;
}

.terms-contact a:hover {
    color: var(--white);
}

/* Back Button */

.terms-back {
    margin-top: 50px;
    text-align: center;
}

.terms-back a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 1px solid var(--gold-dark);
    color: var(--gold-dark);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: .3s ease;
}

.terms-back a:hover {
    background: var(--gold-dark);
    color: var(--white);
}