/* ============================================
   Golden Gem Properties Ltd — Main Stylesheet
   Brand Colors: Gold (#C5A047), Navy (#1B2A4A), 
   Emerald (#0D6B4F), Dark (#0A0A0A)
   ============================================ */

:root {
    --gold: #C5A047;
    --gold-light: #D4B866;
    --gold-dark: #A88A3A;
    --gold-gradient: linear-gradient(135deg, #D4B866 0%, #C5A047 40%, #A88A3A 100%);
    --navy: #1B2A4A;
    --navy-light: #2A3D66;
    --navy-dark: #111D33;
    --emerald: #0D6B4F;
    --emerald-light: #14855F;
    --emerald-dark: #0A5740;
    --cream: #FAF8F3;
    --cream-dark: #F0ECE3;
    --dark: #0A0A0A;
    --text: #2C2C2C;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
    --border: #E5E0D5;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;

    --container: 1200px;
    --nav-height: 80px;
    --radius: 4px;
    --radius-lg: 8px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   Typography
   ============================================ */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-label--light { color: var(--gold-light); }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 24px;
}

.section-title--light { color: var(--white); }

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    gap: 8px;
}

.btn--primary {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.btn--primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 160, 71, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

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

.btn--large { padding: 18px 44px; font-size: 14px; }
.btn--full { width: 100%; }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    transition: all var(--transition);
}

.link-arrow span { transition: transform var(--transition); }
.link-arrow:hover { color: var(--gold-dark); }
.link-arrow:hover span { transform: translateX(4px); }
.link-arrow--light { color: var(--gold-light); }
.link-arrow--light:hover { color: var(--white); }

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all var(--transition);
}

.nav--scrolled {
    height: 64px;
    box-shadow: var(--shadow);
}

.nav__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo img {
    height: 52px;
    width: auto;
    transition: height var(--transition);
}

.nav--scrolled .nav__logo img { height: 40px; }

.nav__menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text);
    padding: 8px 16px;
    border-radius: var(--radius);
    transition: all var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after { transform: scaleX(1); }
.nav__link:hover { color: var(--navy); }

.nav__link--cta {
    background: var(--navy);
    color: var(--white) !important;
    border-radius: var(--radius);
    margin-left: 8px;
}

.nav__link--cta::after { display: none; }
.nav__link--cta:hover { background: var(--navy-light); }

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: all var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--emerald-dark) 100%);
}

.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(197, 160, 71, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(13, 107, 79, 0.2) 0%, transparent 50%);
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C5A047' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.4) 100%);
}

.hero__content {
    position: relative;
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero__badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-light);
    padding: 10px 24px;
    border: 1px solid rgba(197, 160, 71, 0.3);
    border-radius: 100px;
    margin-bottom: 32px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero__title--accent {
    color: var(--gold-light);
    font-style: italic;
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    max-width: 640px;
    margin: 0 auto 40px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

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

.hero__actions .btn--outline:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 1s both;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, rgba(197,160,71,0.6) 0%, transparent 100%);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================================
   Page Header (internal pages)
   ============================================ */
.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    opacity: 0.2;
}

.page-header--compact { padding: 140px 0 60px; }

.page-header__title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 16px;
}

.page-header__subtitle {
    font-size: 17px;
    font-weight: 300;
    color: var(--text-light);
    max-width: 640px;
    line-height: 1.7;
}

/* ============================================
   Introduction Section
   ============================================ */
.intro {
    padding: 120px 0;
}

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

.intro__description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro__visual { position: relative; }

.intro__image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.intro__image-wrapper::before {
    content: '';
    position: absolute;
    top: -12px;
    right: -12px;
    bottom: 12px;
    left: 12px;
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
}

.intro__image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.intro__stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.stat__number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--gold);
}

.stat__label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
}

/* ============================================
   Services Overview
   ============================================ */
.services-overview {
    padding: 120px 0;
    background: var(--cream);
}

.services-overview__header {
    text-align: center;
    margin-bottom: 64px;
}

.services-overview__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

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

.service-card__icon {
    width: 48px;
    height: 48px;
    color: var(--gold);
    margin-bottom: 24px;
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
}

.service-card__text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.services-overview__cta {
    text-align: center;
    margin-top: 48px;
}

/* ============================================
   Featured Property
   ============================================ */
.featured {
    padding: 120px 0;
}

.featured__header {
    text-align: center;
    margin-bottom: 48px;
}

.featured__desc {
    font-size: 16px;
    color: var(--text-light);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

.featured__gallery {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 16px;
    margin-bottom: 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

.featured__side-images {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.featured__side-image img {
    width: 100%;
    height: calc(250px - 8px);
    object-fit: cover;
}

.featured__highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 32px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 32px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight__icon {
    color: var(--gold);
    font-size: 18px;
}

.highlight__text {
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
}

.featured__cta {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ============================================
   Philosophy Section
   ============================================ */
.philosophy {
    padding: 120px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.philosophy::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(197, 160, 71, 0.08);
    border-radius: 50%;
}

.philosophy::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(13, 107, 79, 0.1);
    border-radius: 50%;
}

.philosophy__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.philosophy__quote {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    border-left: 3px solid var(--gold);
    padding-left: 24px;
    margin-bottom: 16px;
}

.philosophy__attribution {
    color: var(--gold-light);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 48px;
}

.philosophy__values {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.value__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 8px;
}

.value__text {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: var(--cream);
}

.cta-section__content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-section__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 16px;
}

.cta-section__text {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--navy-dark);
    padding: 80px 0 32px;
    color: rgba(255,255,255,0.6);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__logo {
    height: 60px;
    width: auto;
    margin-bottom: 16px;
}

.footer__tagline {
    font-size: 14px;
    line-height: 1.7;
}

.footer__heading {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    font-size: 14px;
    transition: color var(--transition);
}

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

.footer__contact p {
    font-size: 14px;
    margin-bottom: 8px;
}

.footer__contact a {
    transition: color var(--transition);
}

.footer__contact a:hover { color: var(--gold-light); }

.footer__bottom {
    padding-top: 32px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.3);
}

/* ============================================
   About Page — Story
   ============================================ */
.about-story {
    padding: 100px 0;
}

.about-story__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
}

.story-block {
    margin-bottom: 40px;
}

.story-block__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
}

.story-block p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-story__sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: sticky;
    top: 100px;
    align-self: start;
}

.about-story__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-story__image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.about-story__quote-card {
    background: var(--navy);
    padding: 32px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--gold);
}

.about-story__quote-card blockquote {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 12px;
}

.about-story__quote-card cite {
    font-style: normal;
    font-size: 13px;
    color: var(--gold-light);
    font-weight: 500;
}

/* Our Why */
.our-why {
    padding: 120px 0;
    background: var(--emerald-dark);
    position: relative;
}

.our-why::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--emerald-dark) 100%);
}

.our-why__content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.our-why__text {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 56px;
}

.our-why__pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.pillar {
    text-align: center;
}

.pillar__diamond {
    font-size: 24px;
    color: var(--gold-light);
    margin-bottom: 16px;
}

.pillar h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 8px;
}

.pillar p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* Credits */
.credits {
    padding: 40px 0;
    text-align: center;
    background: var(--cream);
}

.credits__text {
    font-size: 13px;
    color: var(--text-light);
}

/* ============================================
   Portfolio Page
   ============================================ */
.portfolio {
    padding: 80px 0;
}

.portfolio__filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.portfolio__filter {
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--border);
    border-radius: 100px;
    background: var(--white);
    color: var(--text-light);
    cursor: pointer;
    transition: all var(--transition);
}

.portfolio__filter.active,
.portfolio__filter:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

/* Property Card Featured */
.property-card--featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 64px;
    box-shadow: var(--shadow);
}

.property-card__gallery { position: relative; }

.property-card__main-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 12px;
    position: relative;
}

.property-card__main-img img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.property-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
}

.property-card__thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.property-card__thumbnails img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius);
    cursor: pointer;
    transition: opacity var(--transition);
}

.property-card__thumbnails img:hover { opacity: 0.8; }

.property-card__location {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.property-card__title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
}

.property-card__description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.property-card__meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 20px;
}

.property-card__meta-item {
    font-size: 13px;
    color: var(--text);
}

.property-card__meta-item strong {
    color: var(--navy);
    font-weight: 600;
}

.property-card__amenities {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.amenity {
    font-size: 11px;
    font-weight: 500;
    padding: 4px 12px;
    background: var(--cream);
    border-radius: 100px;
    color: var(--text-light);
}

.property-card__actions {
    display: flex;
    gap: 12px;
}

/* Upcoming */
.portfolio__upcoming {
    margin-bottom: 64px;
}

.portfolio__upcoming-text {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 600px;
}

.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.upcoming-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    border: 1px dashed var(--border);
}

.upcoming-card__placeholder {
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.upcoming-card__icon {
    width: 48px;
    height: 48px;
    color: var(--gold);
    opacity: 0.5;
}

.upcoming-card__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.upcoming-card__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.upcoming-card__text {
    font-size: 13px;
    color: var(--text-light);
}

/* Notify */
.portfolio__notify {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 56px;
    text-align: center;
}

.portfolio__notify h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 8px;
}

.portfolio__notify p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
}

/* ============================================
   Services Detail Page
   ============================================ */
.services-detail {
    padding: 80px 0;
}

.service-detail {
    display: grid;
    grid-template-columns: auto 1fr 0.5fr;
    gap: 40px;
    padding: 64px 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
}

.service-detail:last-child { border-bottom: none; }

.service-detail__number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 300;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
}

.service-detail__title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 16px;
}

.service-detail__text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-detail__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-detail__list li {
    font-size: 14px;
    color: var(--text);
    padding-left: 24px;
    position: relative;
}

.service-detail__list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 8px;
    top: 5px;
}

.service-detail__stat {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.service-detail__stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--gold);
}

.service-detail__stat-label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.service-detail__image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.service-detail__diamond {
    width: 80px;
    height: 80px;
    border: 2px solid var(--gold);
    transform: rotate(45deg);
    opacity: 0.2;
    margin: 40px auto;
}

/* Process */
.process {
    padding: 100px 0;
    background: var(--cream);
}

.process__header {
    text-align: center;
    margin-bottom: 64px;
}

.process__steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.process__step {
    text-align: center;
    flex: 1;
    max-width: 220px;
    padding: 0 16px;
}

.process__step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.process__step h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.process__step p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

.process__connector {
    width: 60px;
    height: 2px;
    background: var(--gold);
    opacity: 0.3;
    margin-top: 24px;
    flex-shrink: 0;
}

/* ============================================
   Contact Page
   ============================================ */
.contact {
    padding: 80px 0;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
}

.contact__form-wrapper h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.contact__form-success {
    text-align: center;
    padding: 60px 32px;
}

.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--emerald);
    color: var(--white);
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact__form-success h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.contact__form-success p {
    color: var(--text-light);
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__info-card {
    background: var(--cream);
    padding: 32px;
    border-radius: var(--radius-lg);
}

.contact__info-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 16px;
}

.contact__info-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.contact__info-card--accent {
    background: var(--navy);
}

.contact__info-card--accent h3 { color: var(--white); }
.contact__info-card--accent p { color: rgba(255,255,255,0.6); }

.contact__info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.contact__info-icon {
    width: 40px;
    height: 40px;
    color: var(--gold);
    flex-shrink: 0;
}

.contact__info-item div strong {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 2px;
}

.contact__info-item div a {
    font-size: 14px;
    color: var(--text-light);
    transition: color var(--transition);
}

.contact__info-item div a:hover { color: var(--gold); }

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .services-overview__grid { grid-template-columns: repeat(2, 1fr); }
    .intro__grid { gap: 48px; }
    .property-card--featured { grid-template-columns: 1fr; }
    .service-detail { grid-template-columns: auto 1fr; }
    .service-detail__visual { display: none; }
    .service-detail--reverse { grid-template-columns: auto 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .nav__toggle { display: flex; }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 4px;
        box-shadow: -8px 0 40px rgba(0,0,0,0.1);
        transition: right var(--transition);
    }

    .nav__menu.open { right: 0; }

    .nav__link {
        font-size: 16px;
        padding: 12px 16px;
        width: 100%;
    }

    .nav__link--cta {
        margin-left: 0;
        margin-top: 16px;
        text-align: center;
    }

    .nav__link::after { display: none; }

    .hero { min-height: 90vh; padding: 100px 24px 60px; }
    .hero__title { font-size: clamp(2rem, 8vw, 3rem); }
    .hero__scroll { display: none; }

    .intro__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .services-overview__grid { grid-template-columns: 1fr; }

    .philosophy__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .featured__gallery {
        grid-template-columns: 1fr;
    }

    .featured__main-image img { height: 300px; }

    .featured__side-images {
        flex-direction: row;
    }

    .featured__side-image img { height: 160px; }

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

    .about-story__sidebar {
        position: static;
    }

    .our-why__pillars {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .upcoming-grid {
        grid-template-columns: 1fr;
    }

    .contact__grid {
        grid-template-columns: 1fr;
    }

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

    .process__steps {
        flex-direction: column;
        align-items: center;
    }

    .process__connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .portfolio__notify { padding: 40px 24px; }

    .service-detail {
        grid-template-columns: 1fr;
    }

    .service-detail__number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .hero__actions .btn { width: 100%; }

    .featured__highlights { gap: 20px; }

    .featured__cta { flex-direction: column; }
    .featured__cta .btn { width: 100%; }

    .property-card__actions { flex-direction: column; }
    .property-card__actions .btn { width: 100%; }

    .property-card__thumbnails {
        grid-template-columns: repeat(3, 1fr);
    }

    .property-card__thumbnails img { height: 60px; }
}
