@font-face {
    font-family: 'DB Adman X';
    src: url('fonts/DB-Adman-X.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap
}

.db-adman {
    font-family: 'DB Adman X', 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif !important
}

.hero-j {
    display: inline-block;
    overflow: hidden;
    height: .78em;
    vertical-align: top;
    margin-top: .08em;
    font-family: inherit
}

:root {
    --primary: #091736;
    --primary-light: #142044;
    --accent: #b99a5b;
    --accent-warm: #c8a85e;
    --accent-hover: #a3863e;
    --accent-light: rgba(185, 154, 91, .06);
    --white: #ffffff;
    --off-white: #f5f4f0;
    --gray-light: #e5e3de;
    --gray: #9a9a9a;
    --gray-dark: #555;
    --text: #222;
    --text-light: #666;
    --font-heading: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif;
    --font-body: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif;
    --font-accent: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif;
    --transition: all .45s cubic-bezier(.25, .46, .45, .94);
    --shadow: 0 4px 24px rgba(0, 0, 0, .07), 0 1px 4px rgba(0, 0, 0, .04);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, .13), 0 4px 16px rgba(0, 0, 0, .06);
    --shadow-card: 0 2px 12px rgba(0, 0, 0, .06), 0 8px 32px rgba(0, 0, 0, .05);
    --radius-xs: 6px;
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 999px;
    --gh-amber: rgba(210, 160, 60, .5);
    --gh-warm: rgba(185, 120, 30, .5);
    --gh-deep: rgba(120, 70, 10, 1);
    --gh-glow-hi: rgba(230, 185, 90, .28);
    --gh-glow-lo: rgba(185, 120, 30, .15)
}

@keyframes horizon-pulse {

    0%,
    100% {
        opacity: .75;
        transform: scaleX(1.00)
    }

    50% {
        opacity: 1.00;
        transform: scaleX(1.04)
    }
}

@keyframes horizon-drift {
    0% {
        opacity: .60;
        filter: blur(0)
    }

    50% {
        opacity: .90;
        filter: blur(2px)
    }

    100% {
        opacity: .60;
        filter: blur(0)
    }
}

@keyframes golden-float {

    0%,
    100% {
        transform: translateY(0) scaleX(1.00);
        opacity: .70
    }

    50% {
        transform: translateY(-3px) scaleX(1.06);
        opacity: 1.00
    }
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

.page-loading body {
    opacity: 0
}

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    opacity: 1;
    transition: opacity .55s ease
}

html.page-loading body {
    opacity: 0
}

html.page-loaded body {
    opacity: 1
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition)
}

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

ul {
    list-style: none
}

.container {
    max-width: 1640px;
    margin: 0 auto;
    padding: 0 clamp(16px, 2.5vw, 40px)
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    color: var(--primary)
}

h1 {
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    letter-spacing: -.03em;
    font-weight: 800
}

h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    letter-spacing: -.025em;
    font-weight: 700
}

h3 {
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    letter-spacing: -.01em
}

h4 {
    font-size: 1.15rem;
    font-family: var(--font-body);
    font-weight: 700
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: .95rem;
    letter-spacing: .01em
}

.section-subtitle {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: .32em;
    font-size: .70rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 16px;
    display: block
}

.section-title {
    margin-bottom: 20px
}

.section-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), rgba(185, 154, 91, .1));
    margin-bottom: 30px;
    border-radius: var(--radius-pill)
}

.text-center {
    text-align: center
}

.text-center .section-divider {
    margin-left: auto;
    margin-right: auto
}

.btn {
    display: inline-block;
    padding: 15px 42px;
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    border-radius: var(--radius-pill);
    overflow: hidden
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 240, 180, .22) 50%, transparent 100%);
    transform: skewX(-20deg);
    transition: left .55s ease;
    pointer-events: none
}

.btn:hover::before {
    left: 130%
}

.btn-primary {
    background: linear-gradient(135deg, #8a6318 0%, #b99a5b 30%, #d4b86a 55%, #e8c97a 72%, #c9a25a 87%, #a07830 100%);
    color: #fff8e8;
    box-shadow: 0 4px 22px rgba(185, 154, 91, .2), 0 1px 0 rgba(255, 235, 150, .30) inset, 0 -1px 0 rgba(80, 48, 8, .25) inset;
    border: 1px solid rgba(200, 160, 80, .17)
}

.btn-primary:hover {
    background: linear-gradient(135deg, #a07830 0%, #c9a85e 28%, #e8c97a 52%, #f5d988 68%, #d4b06a 85%, #b08040 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 42px rgba(185, 154, 91, .28), 0 1px 0 rgba(255, 240, 160, .40) inset, 0 -1px 0 rgba(80, 48, 8, .20) inset
}

.btn-outline {
    background: rgba(185, 154, 91, .04);
    color: #dfc07a;
    border: 1px solid rgba(185, 154, 91, .28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px)
}

.btn-outline:hover {
    background: rgba(185, 154, 91, .08);
    color: #f0d490;
    border-color: rgba(220, 185, 110, .4);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(185, 154, 91, .14), 0 1px 0 rgba(255, 235, 150, .18) inset
}

.btn-dark {
    background: linear-gradient(135deg, #0a1840 0%, #142044 60%, #091736 100%);
    color: #d4b86a;
    border: 1px solid rgba(185, 154, 91, .14);
    box-shadow: 0 4px 18px rgba(0, 0, 0, .30), 0 1px 0 rgba(185, 154, 91, .05) inset
}

.btn-dark:hover {
    background: linear-gradient(135deg, #142044 0%, #1a2f60 60%, #0e1e4a 100%);
    color: #e8c97a;
    border-color: rgba(185, 154, 91, .25);
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(0, 0, 0, .38), 0 1px 0 rgba(185, 154, 91, .09) inset
}

.btn-text {
    background: none;
    padding: 0;
    color: #c9a85e;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: visible
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #8a6318, #e8c97a, #a07830);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .4s ease
}

.btn-text:hover {
    color: #e8c97a
}

.btn-text:hover::after {
    transform: scaleX(1);
    transform-origin: left
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    transition: var(--transition);
    background: transparent
}

.navbar.scrolled {
    background: rgba(9, 23, 54, .90);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    border-bottom: 1px solid rgba(185, 154, 91, .18);
    box-shadow: 0 1px 0 rgba(185, 154, 91, .08) inset, 0 4px 24px rgba(0, 0, 0, .22)
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px
}

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

.logo-img {
    height: 64px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    transition: opacity .3s ease
}

.logo-img:hover {
    opacity: .82
}

.logo-img-footer {
    height: 68px;
    width: auto;
    display: block;
    margin-bottom: 18px;
    filter: brightness(0);
    opacity: .85
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 5px;
    text-transform: uppercase
}

.logo-text span {
    color: var(--accent);
    font-weight: 400
}

.rafelya {
    font-family: 'Rafelya Carrotin', cursive !important
}

.logo-tagline {
    font-family: var(--font-body);
    font-size: .60rem;
    text-transform: uppercase;
    letter-spacing: 4.5px;
    color: rgba(255, 255, 255, .72);
    display: block;
    margin-top: 3px
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 38px
}

.nav-menu a {
    color: rgba(255, 255, 255, .75);
    font-size: .70rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .14em;
    position: relative;
    padding: 8px 0
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: var(--transition)
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white)
}

.navbar.scrolled .nav-menu a {
    color: rgba(255, 255, 255, .80)
}

.navbar.scrolled .nav-menu a:hover,
.navbar.scrolled .nav-menu a.active {
    color: var(--white)
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px
}

.lang-switch {
    font-size: .7rem;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase
}

.lang-switch a {
    color: rgba(255, 255, 255, .5);
    padding: 0 5px
}

.lang-switch a.active,
.lang-switch a:hover {
    color: var(--white)
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001
}

.hamburger span {
    width: 26px;
    height: 1.5px;
    background: var(--white);
    transition: var(--transition)
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--primary)
}

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

.hero-video-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 2.4s cubic-bezier(.4, 0, .2, 1);
    z-index: 0;
    will-change: opacity
}

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

.hero-video-slide.leaving {
    opacity: 0;
    z-index: 1;
    transition: opacity 2.4s cubic-bezier(.4, 0, .2, 1)
}

.hero-video-slide.entering {
    opacity: 0;
    z-index: 3
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 100% 18% at 50% 72%, rgba(210, 165, 55, .07) 0%, rgba(185, 130, 30, .03) 50%, transparent 100%), radial-gradient(ellipse 60% 10% at 50% 74%, rgba(230, 185, 80, .05) 0%, transparent 100%), linear-gradient(180deg, rgba(9, 23, 54, .65) 0%, rgba(9, 23, 54, .30) 18%, rgba(9, 23, 54, .06) 36%, rgba(9, 23, 54, .04) 52%, rgba(9, 23, 54, .08) 60%, rgba(9, 18, 45, .30) 67%, rgba(8, 16, 42, .55) 74%, rgba(7, 14, 38, .82) 81%, rgba(6, 12, 34, .92) 88%, rgba(6, 11, 32, .97) 94%, rgba(5, 10, 30, 1.00) 100%);
    z-index: 1
}

.hero-video-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, rgba(185, 154, 91, .06) 15%, rgba(230, 185, 80, .20) 35%, rgba(255, 215, 100, .28) 50%, rgba(230, 185, 80, .20) 65%, rgba(185, 154, 91, .06) 85%, transparent 100%);
    animation: horizon-pulse 5s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(230, 185, 80, .12), 0 0 40px rgba(185, 154, 91, .06);
    z-index: 2
}

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

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

.hero-slide.active {
    opacity: 1
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 100% 16% at 50% 78%, rgba(210, 165, 55, .16) 0%, transparent 100%), linear-gradient(180deg, rgba(9, 23, 54, .55) 0%, rgba(9, 23, 54, .22) 20%, rgba(9, 23, 54, .06) 38%, rgba(9, 23, 54, .06) 58%, rgba(80, 55, 14, .22) 70%, rgba(9, 23, 54, .70) 86%, rgba(7, 13, 34, .97) 100%)
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    padding: 0 20px
}

.hero-content .section-subtitle {
    color: var(--accent);
    font-size: .78rem;
    letter-spacing: 7px;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease .3s both
}

.hero-content h1 {
    color: var(--white);
    font-weight: 400;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease .6s both;
    line-height: 1.1
}

.hero-content p {
    color: rgba(255, 255, 255, .7);
    font-size: 1.05rem;
    margin-bottom: 45px;
    animation: fadeInUp 1s ease .9s both;
    letter-spacing: .03em;
    font-weight: 300
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 1.2s both
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    outline: none
}

.hero-scroll-indicator i {
    display: block;
    font-size: 1.10rem;
    color: rgba(255, 255, 255, .55);
    animation: arrow-cascade 1.8s ease-in-out infinite;
    line-height: 1
}

.hero-scroll-indicator i:first-child {
    animation-delay: 0s;
    color: rgba(255, 255, 255, .35)
}

.hero-scroll-indicator i:last-child {
    animation-delay: .22s;
    color: var(--accent);
    font-size: 1.25rem;
    margin-top: -4px
}

.hero-scroll-indicator:hover i {
    color: #fff !important
}

@keyframes arrow-cascade {

    0%,
    100% {
        opacity: .45;
        transform: translateY(0)
    }

    40% {
        opacity: 1;
        transform: translateY(6px)
    }

    70% {
        opacity: .70;
        transform: translateY(3px)
    }
}

.slider-controls {
    position: absolute;
    bottom: 45px;
    right: 50px;
    z-index: 3;
    display: flex;
    gap: 10px
}

.slider-dot {
    width: 10px;
    height: 10px;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    background: transparent
}

.slider-dot.active {
    background: var(--accent);
    border-color: var(--accent)
}

.stats-bar {
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201, 168, 94, .10) 0%, rgba(185, 154, 91, .05) 55%, transparent 80%), linear-gradient(160deg, #fdf8f0 0%, #fffef9 40%, #fdf6ec 100%);
    padding: 70px 0;
    position: relative;
    border-top: 1.5px solid rgba(185, 154, 91, .22);
    border-bottom: 1.5px solid rgba(185, 154, 91, .15)
}

.stats-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(185, 154, 91, .1) 10%, rgba(230, 185, 80, .42) 30%, rgba(255, 215, 100, .5) 50%, rgba(230, 185, 80, .42) 70%, rgba(185, 154, 91, .1) 90%, transparent 100%);
    animation: horizon-pulse 6s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(230, 185, 80, .25), 0 0 60px rgba(185, 154, 91, .11);
    pointer-events: none;
    z-index: 2
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
    background: linear-gradient(to bottom, rgba(185, 154, 91, .09) 0%, rgba(185, 154, 91, .05) 25%, rgba(185, 154, 91, .02) 55%, transparent 100%);
    pointer-events: none;
    z-index: 0
}

.section+.stats-bar::before {
    height: 200px;
    background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, .95) 10%, rgba(255, 255, 255, .84) 22%, rgba(255, 255, 255, .66) 36%, rgba(255, 255, 255, .46) 50%, rgba(255, 255, 255, .26) 64%, rgba(255, 255, 255, .11) 78%, rgba(255, 255, 255, .03) 90%, transparent 100%)
}

.section-alt+.stats-bar::before {
    height: 200px;
    background: linear-gradient(to bottom, #f5f4f0 0%, rgba(245, 244, 240, .95) 10%, rgba(245, 244, 240, .84) 22%, rgba(245, 244, 240, .66) 36%, rgba(245, 244, 240, .46) 50%, rgba(245, 244, 240, .26) 64%, rgba(245, 244, 240, .11) 78%, rgba(245, 244, 240, .03) 90%, transparent 100%)
}

.stats-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(185, 154, 91, .35) 30%, rgba(201, 168, 94, .65) 50%, rgba(185, 154, 91, .35) 70%, transparent 100%);
    pointer-events: none;
    z-index: 0
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center
}

.stat-item {
    position: relative
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(185, 154, 91, .25)
}

.stat-item:last-child::after {
    display: none
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 400;
    color: var(--accent);
    display: block;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -.02em
}

.stat-label {
    color: rgba(9, 23, 54, .50);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500
}

.section {
    padding: 120px 0;
    position: relative
}

.section-dark {
    background: radial-gradient(ellipse 80% 45% at 50% 50%, rgba(201, 168, 94, .10) 0%, rgba(185, 154, 91, .05) 55%, transparent 80%), linear-gradient(160deg, #fdf8f0 0%, #fffef9 50%, #fdf6ec 100%);
    position: relative
}

.section-dark::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(185, 154, 91, .07) 10%, rgba(230, 185, 80, .35) 35%, rgba(255, 215, 100, .45) 50%, rgba(230, 185, 80, .35) 65%, rgba(185, 154, 91, .07) 90%, transparent 100%);
    box-shadow: 0 0 24px rgba(230, 185, 80, .2), 0 0 50px rgba(185, 154, 91, .09);
    pointer-events: none;
    z-index: 2
}

.section-alt {
    background: var(--off-white);
    position: relative
}

.section>.container,
.section-alt>.container,
.stats-bar>.container,
.footer>.container {
    position: relative;
    z-index: 1
}

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

.about-image-wrapper {
    position: relative
}

.about-image {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #ddd, #bbb);
    object-fit: cover;
    position: relative;
    z-index: 1;
    border-radius: var(--radius-xl);
    box-shadow: 0 12px 50px rgba(0, 0, 0, .14)
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -25px;
    left: -25px;
    width: 180px;
    height: 180px;
    border: 1px solid var(--accent);
    opacity: .4;
    z-index: 0
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 120px;
    height: 120px;
    background: var(--accent);
    opacity: .08;
    z-index: 0
}

.about-text .section-subtitle {
    margin-bottom: 12px
}

.about-text h2 {
    margin-bottom: 18px
}

.about-text .section-divider {
    margin-bottom: 28px
}

.about-text p {
    margin-bottom: 18px;
    line-height: 1.85;
    font-size: .95rem
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 35px 0
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .88rem;
    color: var(--text);
    font-weight: 500
}

.about-feature i {
    color: var(--accent);
    font-size: .85rem
}

.projects-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 55px;
    flex-wrap: wrap
}

.filter-btn {
    padding: 10px 28px;
    background: transparent;
    border: 1px solid var(--gray-light);
    font-family: var(--font-body);
    font-size: .72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-light);
    font-weight: 500;
    border-radius: var(--radius-pill)
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary);
    color: var(--white);
    background: var(--primary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .14)
}

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

.project-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, .04)
}

.project-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px)
}

.project-card-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: #e0e0e0;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(.25, .46, .45, .94)
}

.project-card:hover .project-card-image img {
    transform: scale(1.06)
}

.project-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(9, 23, 54, .85) 0%, transparent 55%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 30px
}

.project-card:hover .project-card-overlay {
    opacity: 1
}

.project-card-overlay .btn {
    font-size: .68rem;
    padding: 10px 25px;
    letter-spacing: 2.5px
}

.project-card-info {
    padding: 22px 22px 20px
}

.project-card-info .project-type {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent);
    margin-bottom: 8px;
    font-weight: 600
}

.project-card-info h3 {
    font-size: 1.35rem;
    margin-bottom: 6px;
    font-weight: 500
}

.project-card-info .project-location {
    color: var(--gray);
    font-size: .85rem
}

.project-card-info .project-location i {
    font-size: .75rem;
    margin-right: 4px
}

.project-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--accent), #c9a85e);
    color: var(--white);
    font-size: .63rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 2;
    font-weight: 600;
    border-radius: var(--radius-pill);
    box-shadow: 0 3px 12px rgba(185, 154, 91, .2);
    backdrop-filter: blur(6px)
}

.project-badge.sold-out {
    background: rgba(9, 23, 54, .75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 3px 12px rgba(0, 0, 0, .3)
}

.cta-banner-navy {
    position: relative;
    padding: 140px 0;
    background: radial-gradient(ellipse 100% 16% at 50% 52%, rgba(210, 165, 55, .13) 0%, rgba(185, 130, 30, .06) 55%, transparent 85%), radial-gradient(ellipse 60% 8% at 50% 52%, rgba(230, 185, 80, .09) 0%, transparent 60%), radial-gradient(ellipse 70% 55% at 50% 50%, rgba(185, 154, 91, .1) 0%, rgba(160, 120, 50, .05) 40%, transparent 68%), radial-gradient(ellipse 45% 30% at 20% 35%, rgba(201, 168, 94, .05) 0%, transparent 60%), radial-gradient(ellipse 45% 30% at 80% 65%, rgba(201, 168, 94, .05) 0%, transparent 60%), linear-gradient(135deg, #060e25 0%, #0a1538 15%, #0d1c4a 28%, #102258 38%, #152b6a 46%, #1a2f6e 52%, #152b6a 58%, #102258 66%, #0d1c4a 76%, #0a1538 88%, #060e25 100%);
    overflow: hidden;
    text-align: center
}

.cta-banner-navy::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 700px;
    height: 700px;
    border: 1px solid rgba(185, 154, 91, .07);
    border-radius: 50%;
    box-shadow: inset 0 0 80px rgba(185, 154, 91, .03)
}

.cta-banner-navy::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -10%;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(185, 154, 91, .05);
    border-radius: 50%;
    box-shadow: inset 0 0 60px rgba(185, 154, 91, .03)
}

.cta-banner-navy h2 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 400;
    text-shadow: 0 2px 28px rgba(185, 154, 91, .12)
}

.cta-banner-navy p {
    color: rgba(185, 154, 91, .39);
    font-size: 1rem;
    max-width: 550px;
    margin: 0 auto 45px
}

.cta-banner-navy .section-subtitle {
    color: rgba(185, 154, 91, .33)
}

.cta-banner-navy .btn-primary,
.cta-banner-navy .btn-outline {
    border-color: rgba(185, 154, 91, .28);
    color: #f5e0a0
}

.cta-banner-navy .btn-primary:hover,
.cta-banner-navy .btn-outline:hover {
    background: rgba(185, 154, 91, .07);
    border-color: var(--accent);
    color: #fff
}

.cta-banner-navy .gold-rule-top,
.cta-banner-navy .gold-rule-bot {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(185, 154, 91, .23) 30%, rgba(201, 168, 94, .42) 50%, rgba(185, 154, 91, .23) 70%, transparent 100%)
}

.cta-banner-navy .gold-rule-top {
    top: 0
}

.cta-banner-navy .gold-rule-bot {
    bottom: 0
}

.cta-banner-light {
    position: relative;
    padding: 100px 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201, 168, 94, .08) 0%, rgba(185, 154, 91, .04) 55%, transparent 80%), linear-gradient(160deg, #fdf8f0 0%, #fffef9 40%, #fdf6ec 100%);
    text-align: center;
    overflow: hidden;
    border-top: 1.5px solid rgba(185, 154, 91, .30);
    border-bottom: 1.5px solid rgba(185, 154, 91, .20);
    box-shadow: 0 -4px 24px rgba(185, 154, 91, .07), 0 4px 24px rgba(185, 154, 91, .05)
}

.cta-banner-light::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(185, 154, 91, .12);
    border-radius: 50%;
    pointer-events: none
}

.cta-banner-light::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -8%;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(185, 154, 91, .09);
    border-radius: 50%;
    pointer-events: none
}

.cta-banner-light .section-subtitle {
    color: rgba(160, 120, 50, .70);
    letter-spacing: .18em
}

.cta-banner-light h2 {
    color: var(--primary);
    margin-bottom: 18px;
    font-weight: 400
}

.cta-banner-light p {
    color: rgba(30, 40, 80, .65);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto 40px
}

.cta-banner-light .btn-outline {
    border: 1.5px solid rgba(160, 120, 50, .55);
    color: rgba(130, 95, 30, .90);
    background: transparent;
    border-radius: 999px;
    padding: 14px 40px;
    font-size: .82rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    transition: background .28s ease, border-color .28s ease, color .28s ease
}

.cta-banner-light .btn-outline:hover {
    background: rgba(185, 154, 91, .12);
    border-color: rgba(160, 120, 50, .85);
    color: rgba(100, 70, 10, 1)
}

.cta-banner {
    position: relative;
    padding: 140px 0;
    background: radial-gradient(ellipse 100% 18% at 50% 50%, rgba(210, 165, 55, .15) 0%, rgba(185, 130, 30, .07) 55%, transparent 85%), radial-gradient(ellipse 60% 10% at 50% 50%, rgba(230, 185, 80, .11) 0%, transparent 60%), radial-gradient(ellipse 80% 65% at 50% 50%, rgba(185, 154, 91, .09) 0%, rgba(160, 120, 50, .05) 45%, transparent 72%), radial-gradient(ellipse 50% 35% at 25% 40%, rgba(201, 168, 94, .06) 0%, transparent 65%), radial-gradient(ellipse 50% 35% at 75% 60%, rgba(201, 168, 94, .06) 0%, transparent 65%), linear-gradient(to bottom, #ffffff 0%, rgba(9, 18, 52, .04) 4%, rgba(9, 18, 52, .16) 8%, rgba(9, 18, 52, .34) 12%, rgba(9, 18, 52, .58) 17%, rgba(8, 16, 48, .80) 22%, rgba(8, 15, 44, .96) 26%, rgba(7, 14, 40, 1.00) 30%, rgba(7, 14, 40, 1.00) 70%, rgba(8, 15, 44, .96) 74%, rgba(8, 16, 48, .80) 78%, rgba(9, 18, 52, .58) 83%, rgba(9, 18, 52, .34) 88%, rgba(9, 18, 52, .16) 92%, rgba(9, 18, 52, .04) 96%, #ffffff 100%);
    overflow: hidden;
    text-align: center
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 700px;
    height: 700px;
    border: 1px solid rgba(185, 154, 91, .09);
    border-radius: 50%;
    box-shadow: inset 0 0 80px rgba(185, 154, 91, .04)
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -10%;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(185, 154, 91, .07);
    border-radius: 50%;
    box-shadow: inset 0 0 60px rgba(185, 154, 91, .04)
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 400;
    text-shadow: 0 2px 32px rgba(185, 154, 91, .17), 0 0 80px rgba(185, 154, 91, .06)
}

.cta-banner p {
    color: rgba(220, 190, 130, .82);
    font-size: 1rem;
    max-width: 550px;
    margin: 0 auto 45px
}

.cta-banner .btn-primary {
    background: linear-gradient(135deg, rgba(185, 154, 91, .12) 0%, rgba(210, 175, 100, .09) 30%, rgba(185, 154, 91, .06) 60%, rgba(160, 120, 50, .11) 100%);
    color: #f5e0a0;
    border: 1px solid rgba(220, 185, 100, .28);
    backdrop-filter: blur(18px) saturate(160%) brightness(1.15);
    -webkit-backdrop-filter: blur(18px) saturate(160%) brightness(1.15);
    box-shadow: 0 0 0 1px rgba(255, 230, 140, .18) inset, 0 2px 0 rgba(255, 240, 160, .22) inset, 0 -1px 0 rgba(100, 68, 12, .30) inset, 0 8px 32px rgba(185, 154, 91, .15), 0 2px 8px rgba(0, 0, 0, .25);
    text-shadow: 0 1px 8px rgba(185, 154, 91, .23)
}

.cta-banner .btn-primary:hover {
    background: linear-gradient(135deg, rgba(210, 175, 100, .17) 0%, rgba(235, 200, 120, .26) 35%, rgba(200, 160, 80, .1) 65%, rgba(175, 135, 55, .16) 100%);
    color: #faefc0;
    border-color: rgba(240, 200, 110, .38);
    box-shadow: 0 0 0 1px rgba(255, 240, 160, .28) inset, 0 2px 0 rgba(255, 248, 180, .30) inset, 0 -1px 0 rgba(100, 68, 12, .22) inset, 0 14px 48px rgba(185, 154, 91, .25), 0 4px 14px rgba(0, 0, 0, .22);
    transform: translateY(-2px)
}

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

.news-card {
    background: var(--white);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, .045);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card)
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: transparent
}

.news-card-image {
    width: 100%;
    aspect-ratio: 16/10;
    background: #e0e0e0;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease
}

.news-card:hover .news-card-image img {
    transform: scale(1.04)
}

.news-card-content {
    padding: 28px 28px 26px
}

.news-card-date {
    font-size: .7rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    font-weight: 600
}

.news-card-content h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    line-height: 1.35;
    font-weight: 500
}

.news-card-content p {
    font-size: .88rem;
    line-height: 1.7;
    margin-bottom: 22px
}

.read-more {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent);
    font-weight: 600
}

.read-more:hover {
    color: var(--accent-hover)
}

.blog-magazine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.bmg-card {
    border-radius: 14px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, .05);
    box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
    transition: transform .35s ease, box-shadow .35s ease
}

.bmg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .12)
}

.bmg-img-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    text-decoration: none
}

.bmg-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .75s ease, filter .4s ease
}

.bmg-card:hover .bmg-img-wrap img {
    transform: scale(1.06);
    filter: brightness(.78)
}

.bmg-cat-pill {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent);
    color: #fff;
    font-size: .60rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 20px;
    pointer-events: none;
    white-space: nowrap;
    z-index: 2
}

.bmg-card--overlay {
    height: 300px
}

.bmg-card--overlay .bmg-img-wrap {
    border-radius: 14px;
    height: 100%
}

.bmg-overlay-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(9, 18, 48, .92) 0%, rgba(9, 18, 48, .55) 50%, transparent 100%);
    padding: 22px 18px 18px;
    z-index: 2
}

.bmg-overlay-body .bmg-cat-pill {
    position: static;
    display: inline-block;
    margin-bottom: 9px
}

.bmg-overlay-title {
    font-size: .98rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.38;
    margin-bottom: 7px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.bmg-overlay-meta {
    font-size: .66rem;
    color: rgba(255, 255, 255, .60);
    display: flex;
    align-items: center;
    gap: 10px
}

.bmg-overlay-meta i {
    font-size: .60rem;
    color: rgba(185, 154, 91, .85)
}

@media(max-width:900px) {
    .blog-magazine-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .bmg-card--overlay {
        height: 260px
    }
}

@media(max-width:600px) {
    .blog-magazine-grid {
        grid-template-columns: 1fr
    }

    .bmg-card--overlay {
        height: 240px
    }
}

.blog-card-rich {
    display: flex;
    flex-direction: column
}

.blog-card-cover-link {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    background: #e0e0e0
}

.blog-card-cover-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .75s ease
}

.news-card.blog-card-rich:hover .blog-card-cover-link img {
    transform: scale(1.05)
}

.blog-card-cat-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent);
    color: #fff;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    pointer-events: none;
    white-space: nowrap
}

.blog-card-body {
    padding: 24px 26px 22px;
    display: flex;
    flex-direction: column;
    flex: 1
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px
}

.blog-card-date,
.blog-card-time {
    font-size: .70rem;
    color: rgba(9, 23, 54, .45);
    display: flex;
    align-items: center;
    gap: 5px
}

.blog-card-date i,
.blog-card-time i {
    color: var(--accent);
    font-size: .65rem
}

.blog-card-title {
    font-size: 1.08rem;
    line-height: 1.38;
    font-weight: 600;
    margin-bottom: 10px
}

.blog-card-title a {
    color: var(--primary);
    transition: color .25s
}

.blog-card-title a:hover {
    color: var(--accent)
}

.blog-card-excerpt {
    font-size: .85rem;
    line-height: 1.72;
    color: rgba(9, 23, 54, .58);
    margin-bottom: 14px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.blog-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px
}

.blog-tag {
    font-size: .66rem;
    color: rgba(140, 100, 35, .75);
    background: rgba(185, 154, 91, .10);
    border: 1px solid rgba(185, 154, 91, .22);
    border-radius: 20px;
    padding: 3px 10px;
    font-weight: 600;
    letter-spacing: .04em;
    transition: background .2s, color .2s
}

.blog-tag:hover {
    background: rgba(185, 154, 91, .18);
    color: var(--accent)
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, .06);
    margin-top: auto
}

.blog-card-author {
    display: flex;
    align-items: center;
    gap: 8px
}

.blog-author-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, #b8963e 100%);
    color: #fff;
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .05em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.blog-author-name {
    font-size: .72rem;
    color: rgba(9, 23, 54, .52);
    font-weight: 500
}

.blog-card-readmore {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap .25s, color .25s;
    text-transform: uppercase
}

.blog-card-readmore:hover {
    gap: 9px;
    color: var(--accent-hover)
}

.blog-card-readmore i {
    font-size: .60rem
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px
}

.contact-info-block {
    margin-bottom: 35px
}

.contact-info-block h4 {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: .72rem;
    color: var(--accent);
    margin-bottom: 10px;
    font-weight: 600
}

.contact-info-block p {
    color: var(--text-light);
    line-height: 1.8
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid var(--gray-light);
    font-family: var(--font-body);
    font-size: .9rem;
    color: var(--text);
    background: var(--off-white);
    transition: var(--transition);
    margin-bottom: 18px;
    outline: none;
    border-radius: var(--radius-sm);
    -webkit-appearance: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .04) inset
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(185, 154, 91, .05), 0 1px 4px rgba(0, 0, 0, .04) inset
}

.contact-form textarea {
    height: 140px;
    resize: vertical
}

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

.map-section {
    height: 420px;
    background: #e0e0e0
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(30%)
}

@keyframes kenburns-1 {
    0% {
        transform: scale(1.00) translate(0%, 0%)
    }

    50% {
        transform: scale(1.10) translate(-2%, -1%)
    }

    100% {
        transform: scale(1.00) translate(0%, 0%)
    }
}

@keyframes kenburns-2 {
    0% {
        transform: scale(1.08) translate(2%, 1%)
    }

    50% {
        transform: scale(1.00) translate(0%, 0%)
    }

    100% {
        transform: scale(1.08) translate(2%, 1%)
    }
}

@keyframes kenburns-3 {
    0% {
        transform: scale(1.00) translate(-1%, 2%)
    }

    50% {
        transform: scale(1.12) translate(1%, -1%)
    }

    100% {
        transform: scale(1.00) translate(-1%, 2%)
    }
}

@keyframes pss-bg-drift {
    0% {
        transform: scale(1.08) translate(0%, 0%)
    }

    50% {
        transform: scale(1.13) translate(-1%, -.5%)
    }

    100% {
        transform: scale(1.08) translate(0%, 0%)
    }
}

@keyframes pss-card-in {
    from {
        opacity: 0;
        transform: translateY(30px) scale(.96)
    }

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

@keyframes gold-shimmer {

    0%,
    100% {
        opacity: .7
    }

    50% {
        opacity: 1.0
    }
}

.pss-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201, 168, 94, .10) 0%, rgba(185, 154, 91, .05) 55%, transparent 80%), linear-gradient(160deg, #fdf8f0 0%, #fffef9 50%, #fdf6ec 100%);
    border-top: 1.5px solid rgba(185, 154, 91, .22);
    border-bottom: 1.5px solid rgba(185, 154, 91, .15)
}

.pss-bg {
    position: absolute;
    inset: -8%;
    width: 116%;
    height: 116%;
    background-size: cover;
    background-position: center;
    opacity: .18;
    filter: grayscale(10%) sepia(25%);
    animation: pss-bg-drift 22s ease-in-out infinite;
    transform-origin: center center;
    transition: opacity .6s ease
}

.pss-bg.fade-out {
    opacity: 0
}

.pss-headline,
.pss-body,
.pss-cta {
    transition: opacity .4s ease, transform .5s ease
}

.pss-left.switching .pss-headline,
.pss-left.switching .pss-body,
.pss-left.switching .pss-cta {
    opacity: 0;
    transform: translateY(12px)
}

.pss-viewport {
    transition: opacity .35s ease
}

.pss-viewport.fade-out {
    opacity: 0
}

.pss-controls {
    transition: opacity .3s ease
}

.pss-controls.fade-out {
    opacity: 0
}

.pss-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 110% 20% at 50% 58%, rgba(210, 165, 55, .10) 0%, rgba(185, 130, 30, .04) 55%, transparent 85%), radial-gradient(ellipse 65% 10% at 50% 58%, rgba(230, 185, 80, .07) 0%, transparent 60%), radial-gradient(ellipse 70% 60% at 60% 50%, rgba(201, 168, 94, .06) 0%, transparent 65%);
    z-index: 0;
    pointer-events: none
}

.pss-section::after {
    content: '';
    position: absolute;
    top: 58%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(185, 154, 91, .05) 5%, rgba(230, 185, 80, .28) 25%, rgba(255, 215, 100, .4) 50%, rgba(230, 185, 80, .28) 75%, rgba(185, 154, 91, .05) 95%, transparent 100%);
    animation: golden-float 8s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(230, 185, 80, .17), 0 0 50px rgba(185, 154, 91, .07);
    pointer-events: none;
    z-index: 0
}

.pss-inner {
    position: relative;
    z-index: 1
}

.pss-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 64px;
    max-width: 1380px;
    margin: 0 auto;
    padding: 100px 60px
}

.pss-left {
    flex: 0 0 340px;
    color: var(--primary)
}

.pss-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 28px;
    background: rgba(185, 154, 91, .10);
    border-radius: 30px;
    padding: 3px;
    width: fit-content;
    border: 1px solid rgba(185, 154, 91, .20)
}

.pss-tab {
    padding: 8px 22px;
    border: none;
    border-radius: 26px;
    background: transparent;
    color: rgba(9, 23, 54, .50);
    font-family: var(--font-body);
    font-size: .82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
    white-space: nowrap
}

.pss-tab:hover {
    color: rgba(9, 23, 54, .80)
}

.pss-tab.active {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(9, 23, 54, .18)
}

.pss-headline {
    font-family: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary);
    margin: 14px 0 22px;
    letter-spacing: -.01em
}

.pss-body {
    font-family: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif;
    font-size: .9rem;
    line-height: 2;
    color: rgba(9, 23, 54, .68);
    margin-bottom: 36px
}

.pss-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(185, 154, 91, .28);
    color: var(--accent);
    font-family: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif;
    font-size: .76rem;
    font-weight: 500;
    letter-spacing: .10em;
    text-transform: uppercase;
    padding: 11px 24px;
    text-decoration: none;
    border-radius: 999px;
    transition: background .25s, color .25s, border-color .25s
}

.pss-cta:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent)
}

.pss-left-progress {
    margin-top: 32px;
    width: 100%;
    max-width: 220px;
    height: 2px;
    background: rgba(9, 23, 54, .12);
    border-radius: 2px;
    overflow: hidden
}

.pss-left-bar {
    height: 100%;
    width: 25%;
    background: linear-gradient(90deg, #c9a84c, #e8b84b);
    border-radius: 2px;
    transition: width .55s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 0 8px rgba(201, 168, 76, .28)
}

.pss-right {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 28px
}

.pss-viewport {
    overflow: hidden
}

.pss-track {
    display: flex;
    gap: 14px;
    transition: transform .65s cubic-bezier(.4, 0, .2, 1);
    will-change: transform
}

.pss-card {
    flex: 0 0 310px;
    height: 460px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    display: block;
    transition: transform .45s cubic-bezier(.25, .46, .45, .94), box-shadow .45s ease;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .35)
}

.pss-card:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .50), 0 0 0 1px rgba(185, 154, 91, .12)
}

.pss-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: kenburns-1 18s ease-in-out infinite;
    transform-origin: center center
}

.pss-card:nth-child(2) img {
    animation-name: kenburns-2;
    animation-duration: 22s
}

.pss-card:nth-child(3) img {
    animation-name: kenburns-3;
    animation-duration: 20s
}

.pss-card:nth-child(4) img {
    animation-name: kenburns-1;
    animation-duration: 24s;
    animation-delay: -4s
}

.pss-card:nth-child(5) img {
    animation-name: kenburns-2;
    animation-duration: 19s;
    animation-delay: -8s
}

.pss-card-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: none
}

.pss-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 12, 32, .95) 0%, rgba(7, 16, 42, .75) 30%, rgba(9, 20, 50, .30) 58%, transparent 100%);
    transition: opacity .4s ease
}

.pss-card:hover .pss-card-overlay {
    background: linear-gradient(to top, rgba(5, 12, 32, .98) 0%, rgba(7, 16, 42, .85) 35%, rgba(9, 20, 50, .45) 62%, transparent 100%)
}

.pss-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 24px 28px;
    color: #fff;
    transform: translateY(6px);
    transition: transform .4s ease
}

.pss-card:hover .pss-card-body {
    transform: translateY(0)
}

.pss-card-type {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .68rem;
    letter-spacing: .10em;
    color: var(--accent);
    margin-bottom: 9px;
    font-family: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    animation: gold-shimmer 4s ease-in-out infinite
}

.pss-card-type::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 14px;
    background: linear-gradient(to bottom, #e8c87a, var(--accent));
    border-radius: 2px;
    flex-shrink: 0
}

.pss-card-name {
    font-family: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: .01em;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .5)
}

.pss-card-desc {
    font-family: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif;
    font-size: .80rem;
    color: rgba(255, 255, 255, .68);
    line-height: 1.55;
    margin-bottom: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, opacity .4s ease;
    opacity: 0
}

.pss-card:hover .pss-card-desc {
    max-height: 48px;
    opacity: 1
}

.pss-card-loc {
    font-family: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif;
    font-size: .74rem;
    color: rgba(255, 255, 255, .55);
    margin-top: 6px
}

.pss-controls {
    display: flex;
    align-items: center;
    gap: 12px
}

.pss-arrow {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(185, 154, 91, .35);
    border-radius: 50%;
    background: rgba(255, 255, 255, .60);
    backdrop-filter: blur(8px);
    color: rgba(9, 23, 54, .65);
    font-size: .78rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color .25s, color .25s, background .25s, transform .2s
}

.pss-arrow:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(185, 154, 91, .10);
    transform: scale(1.08)
}

.pss-progress {
    flex: 1;
    height: 1px;
    background: rgba(9, 23, 54, .12);
    border-radius: 1px;
    overflow: hidden
}

.pss-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #e8c87a);
    border-radius: 1px;
    transition: width .65s cubic-bezier(.4, 0, .2, 1)
}

.pss-counter {
    font-family: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif;
    font-size: .82rem;
    color: rgba(9, 23, 54, .42);
    letter-spacing: .04em;
    flex-shrink: 0;
    min-width: 52px;
    text-align: right
}

.pss-counter em {
    font-style: normal;
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem
}

.pss-card.card-visible {
    animation: pss-card-in .7s cubic-bezier(.25, .46, .45, .94) both
}

.pss-card.card-visible:nth-child(2) {
    animation-delay: .10s
}

.pss-card.card-visible:nth-child(3) {
    animation-delay: .20s
}

.pss-card.card-visible:nth-child(4) {
    animation-delay: .30s
}

.pss-card.card-visible:nth-child(5) {
    animation-delay: .40s
}

@media (max-width:1100px) {
    .pss-inner {
        flex-direction: column;
        padding: 72px 40px;
        gap: 48px
    }

    .pss-left {
        flex: none;
        max-width: 520px
    }
}

@media (max-width:640px) {
    .pss-inner {
        padding: 60px 24px
    }

    .pss-card {
        flex: 0 0 250px;
        height: 380px
    }

    .pss-headline {
        font-size: 1.85rem
    }
}

.footer {
    background: #ffffff;
    color: #091736;
    padding: 90px 0 0;
    position: relative;
    border-top: 1.5px solid rgba(9, 23, 54, .12)
}

.footer-horizon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(185, 154, 91, .1) 8%, rgba(220, 180, 70, .44) 30%, rgba(255, 215, 100, .5) 50%, rgba(220, 180, 70, .44) 70%, rgba(185, 154, 91, .1) 92%, transparent 100%);
    animation: horizon-pulse 7s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(230, 185, 80, .28), 0 0 90px rgba(185, 154, 91, .12);
    z-index: 5;
    pointer-events: none
}

.footer::before {
    display: none
}

.section-alt+.footer::before {
    display: none
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 55px;
    padding-bottom: 65px;
    border-bottom: 1px solid rgba(185, 154, 91, .25)
}

.footer-brand .logo-text {
    font-size: 1.3rem;
    margin-bottom: 18px;
    letter-spacing: 4px
}

.footer-brand p {
    color: rgba(9, 23, 54, .55);
    font-size: .88rem;
    line-height: 1.8;
    margin-bottom: 22px
}

.footer h4 {
    color: #091736;
    font-family: var(--font-body);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    font-weight: 600
}

.footer-links li {
    margin-bottom: 11px
}

.footer-links a {
    color: #091736;
    font-size: .88rem;
    transition: var(--transition)
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(9, 23, 54, .60);
    font-size: .88rem;
    margin-bottom: 11px
}

.footer-contact-list li i {
    color: var(--accent);
    width: 14px;
    flex-shrink: 0
}

.footer-address {
    align-items: flex-start !important
}

.footer-address i {
    margin-top: 3px
}

.footer-seo-kw {
    font-size: .67rem;
    color: rgba(9, 23, 54, .28);
    margin-top: 18px;
    line-height: 1.9
}

.pss-hl-en {
    font-family: 'Plus Jakarta Sans ', serif;
    font-size: 1.05em;
    letter-spacing: .02em;
    display: block
}

.pss-hl-th {
    font-family: 'Noto Sans Thai', sans-serif;
    font-size: .75em;
    font-weight: 700;
    letter-spacing: .01em;
    display: block;
    line-height: 1.4
}

.footer-newsletter p {
    color: rgba(9, 23, 54, .55);
    font-size: .88rem;
    margin-bottom: 20px
}

.newsletter-form {
    display: flex;
    gap: 0
}

.newsletter-form input {
    flex: 1;
    padding: 13px 20px;
    background: rgba(255, 255, 255, .75);
    border: 1px solid rgba(185, 154, 91, .28);
    color: var(--primary);
    font-family: var(--font-body);
    font-size: .85rem;
    outline: none;
    transition: var(--transition);
    border-radius: var(--radius-pill) 0 0 var(--radius-pill)
}

.newsletter-form input::placeholder {
    color: rgba(9, 23, 54, .35)
}

.newsletter-form input:focus {
    border-color: rgba(185, 154, 91, .55);
    background: rgba(255, 255, 255, .95)
}

.newsletter-form button {
    padding: 13px 22px;
    background: linear-gradient(135deg, #8a6318, #c9a85e, #a07830);
    color: #fff8e8;
    border: none;
    cursor: pointer;
    font-size: .85rem;
    transition: var(--transition);
    border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
    box-shadow: 0 2px 12px rgba(185, 154, 91, .17)
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #a07830, #e8c97a, #b99a5b);
    box-shadow: 0 4px 22px rgba(185, 154, 91, .28)
}

.footer-bottom {
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .75rem;
    color: #091736;
    letter-spacing: .5px;
    border-top: 1px solid rgba(9, 23, 54, .10)
}

.footer-bottom a {
    color: #091736;
    margin-left: 22px
}

.footer-bottom a:hover {
    color: var(--accent)
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(9, 23, 54, .15);
    border-radius: 50%;
    color: #091736;
    font-size: .85rem;
    transition: var(--transition);
    text-shadow: 0 0 8px rgba(185, 154, 91, .23), 0 0 18px rgba(185, 154, 91, .11);
    box-shadow: 0 0 10px rgba(185, 154, 91, .04) inset, 0 0 6px rgba(185, 154, 91, .03)
}

.footer-social a:hover {
    background: linear-gradient(135deg, #8a6318, #c9a85e);
    border-color: #d4a840;
    color: #fff8e8;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(185, 154, 91, .25), 0 0 12px rgba(185, 154, 91, .15), 0 1px 0 rgba(255, 235, 150, .25) inset;
    text-shadow: 0 0 8px rgba(255, 230, 140, .70), 0 0 20px rgba(185, 154, 91, .25)
}

.page-header {
    height: 55vh;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #F8F7F2;
    text-align: center;
    overflow: hidden;
    animation: phPan 20s ease-out both
}

@keyframes phPan {
    0% {
        background-position: 54% 52%
    }

    100% {
        background-position: 46% 48%
    }
}

.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 90% 55% at 50% 42%, rgba(248, 247, 242, .18) 0%, rgba(248, 247, 242, .10) 55%, transparent 85%), linear-gradient(to bottom, rgba(248, 247, 242, .72) 0%, rgba(248, 247, 242, .30) 28%, rgba(248, 247, 242, .18) 55%, rgba(248, 247, 242, .58) 78%, rgba(248, 247, 242, .85) 100%);
    pointer-events: none;
    z-index: 1
}

.page-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 88px;
    background: rgba(248, 247, 242, .52);
    backdrop-filter: blur(18px) saturate(120%) brightness(1.06);
    -webkit-backdrop-filter: blur(18px) saturate(120%) brightness(1.06);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, .6) 45%, black 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, .6) 45%, black 100%);
    pointer-events: none;
    z-index: 2
}

.page-header .ph-shimmer {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, .28) 48%, rgba(255, 255, 255, .38) 50%, rgba(255, 255, 255, .28) 52%, transparent 70%);
    animation: phShimmer 1.4s cubic-bezier(.4, 0, .2, 1) .3s both;
    pointer-events: none
}

@keyframes phShimmer {
    0% {
        transform: translateX(-110%);
        opacity: 1
    }

    80% {
        transform: translateX(110%);
        opacity: 1
    }

    100% {
        transform: translateX(110%);
        opacity: 0
    }
}

.ph-horizon {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(185, 154, 91, .12) 8%, rgba(185, 154, 91, .55) 28%, rgba(210, 175, 100, .65) 50%, rgba(185, 154, 91, .55) 72%, rgba(185, 154, 91, .12) 92%, transparent 100%);
    animation: horizon-pulse 6s ease-in-out infinite;
    box-shadow: 0 0 24px rgba(185, 154, 91, .22), 0 0 56px rgba(185, 154, 91, .10);
    pointer-events: none;
    z-index: 5
}

.page-header-content {
    position: relative;
    z-index: 4
}

.page-header .section-subtitle {
    animation: phFadeUp .70s cubic-bezier(.22, 1, .36, 1) .10s both
}

.page-header h1 {
    color: var(--primary);
    margin-bottom: 18px;
    font-weight: 400;
    animation: phFadeUp .75s cubic-bezier(.22, 1, .36, 1) .22s both
}

.page-header .breadcrumb {
    animation: phFadeUp .70s cubic-bezier(.22, 1, .36, 1) .36s both
}

@keyframes phFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

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

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: .78rem;
    color: rgba(9, 23, 54, .42);
    letter-spacing: 1px
}

.breadcrumb a {
    color: var(--accent)
}

.about-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center
}

.timeline {
    position: relative;
    padding-left: 45px
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--gray-light)
}

.timeline-item {
    position: relative;
    margin-bottom: 45px
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -50px;
    top: 6px;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 6px;
    font-weight: 500
}

.timeline-item p {
    font-size: .92rem
}

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

.value-card {
    text-align: center;
    padding: 55px 35px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, .055);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, .7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 16px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .9) inset
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(185, 154, 91, .1);
    box-shadow: var(--shadow-hover), 0 1px 0 rgba(255, 255, 255, .9) inset
}

.value-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    background: var(--accent-light);
    border-radius: 50%;
    font-size: 1.3rem;
    color: var(--accent)
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 500
}

.value-card p {
    font-size: .88rem
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px
}

.team-card {
    text-align: center
}

.team-card-image {
    width: 100%;
    aspect-ratio: 3/4;
    background: #e0e0e0;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card)
}

.team-card h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.15rem;
    margin-bottom: 4px
}

.team-card p {
    font-size: .82rem;
    color: var(--accent)
}

.promo-card {
    position: relative;
    overflow: hidden;
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 35px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, .045);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card)
}

.promo-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: transparent;
    transform: translateY(-4px)
}

.promo-card-image {
    aspect-ratio: 16/10;
    background: #e0e0e0;
    overflow: hidden;
    border-radius: var(--radius-xl) 0 0 var(--radius-xl)
}

.promo-card-content {
    padding: 55px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.promo-tag {
    display: inline-block;
    padding: 5px 16px;
    background: var(--accent-light);
    color: var(--accent);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
    width: fit-content;
    font-weight: 600;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(185, 154, 91, .1)
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(35px)
    }

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

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0)
    }

    40% {
        transform: translateX(-50%) translateY(-8px)
    }

    60% {
        transform: translateX(-50%) translateY(-4px)
    }
}

@keyframes scrollDot {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0)
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px)
    }
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s cubic-bezier(.16, 1, .3, 1), transform .75s cubic-bezier(.16, 1, .3, 1);
    will-change: opacity, transform
}

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

.projects-grid .reveal:nth-child(2),
.news-grid .reveal:nth-child(2),
.values-grid .reveal:nth-child(2) {
    transition-delay: 80ms
}

.projects-grid .reveal:nth-child(3),
.news-grid .reveal:nth-child(3),
.values-grid .reveal:nth-child(3) {
    transition-delay: 160ms
}

.projects-grid .reveal:nth-child(4),
.news-grid .reveal:nth-child(4) {
    transition-delay: 80ms
}

.projects-grid .reveal:nth-child(5) {
    transition-delay: 160ms
}

.projects-grid .reveal:nth-child(6) {
    transition-delay: 240ms
}

.projects-grid .reveal:nth-child(7) {
    transition-delay: 80ms
}

.projects-grid .reveal:nth-child(8) {
    transition-delay: 160ms
}

.projects-grid .reveal:nth-child(9) {
    transition-delay: 240ms
}

.stats-grid .reveal:nth-child(1) {
    transition-delay: 0ms
}

.stats-grid .reveal:nth-child(2) {
    transition-delay: 100ms
}

.stats-grid .reveal:nth-child(3) {
    transition-delay: 200ms
}

.stats-grid .reveal:nth-child(4) {
    transition-delay: 300ms
}

.project-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 300px 300px;
    gap: 10px;
    border-radius: var(--radius-xl);
    overflow: hidden
}

.project-gallery-main {
    grid-row: 1 / 3
}

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

.project-gallery-main:hover img,
.project-gallery-thumb:hover img {
    transform: scale(1.04)
}

.project-gallery-main,
.project-gallery-thumb {
    overflow: hidden
}

.project-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start
}

.project-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: linear-gradient(160deg, #fdf8f0 0%, #fffef9 50%, #fdf6ec 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-top: 60px;
    border: 1.5px solid rgba(185, 154, 91, .25)
}

.project-highlight-item {
    text-align: center;
    padding: 36px 20px;
    position: relative
}

.project-highlight-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(185, 154, 91, .28)
}

.project-highlight-item:last-child::after {
    display: none
}

.project-highlight-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: #d4b86a;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(185, 154, 91, .17)
}

.project-highlight-label {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: rgba(9, 23, 54, .50)
}

.feature-list {
    list-style: none;
    padding: 0
}

.feature-list li {
    padding: 11px 0;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .92rem;
    color: var(--text-light)
}

.feature-list li:last-child {
    border-bottom: none
}

.feature-list li i {
    color: var(--accent);
    width: 16px;
    flex-shrink: 0
}

.house-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.house-type-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, .04);
    transition: var(--transition)
}

.house-type-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover)
}

.house-type-card img {
    width: 100%;
    aspect-ratio: 1/1;
    height: auto;
    object-fit: cover;
    display: block
}

.house-type-info {
    padding: 26px
}

.house-type-info h3 {
    font-size: 1.3rem;
    margin-bottom: 6px
}

.house-type-info .type-area {
    font-size: .78rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px
}

.house-type-info p {
    font-size: .88rem;
    color: var(--text-light)
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start
}

.location-map-placeholder {
    height: 380px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--gray-light)
}

.location-map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(20%)
}

.location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px
}

.location-tag {
    padding: 7px 16px;
    background: var(--off-white);
    border-radius: var(--radius-pill);
    font-size: .78rem;
    color: var(--text-light);
    border: 1px solid var(--gray-light)
}

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, .04);
    text-align: center;
    transition: var(--transition)
}

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

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #8a6318, #c9a85e);
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    color: #fff8e8;
    font-size: 1.4rem;
    box-shadow: 0 4px 18px rgba(185, 154, 91, .15)
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px
}

.service-card p {
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.75
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent)
}

.process-step {
    text-align: center;
    position: relative
}

.process-step-number {
    width: 48px;
    height: 48px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent);
    background: var(--white);
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(185, 154, 91, .05)
}

.process-step h4 {
    font-size: .92rem;
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-weight: 600
}

.process-step p {
    font-size: .82rem;
    color: var(--text-light)
}

.bank-partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 20px;
    align-items: flex-start
}

.bank-partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    box-shadow: none;
    width: 120px;
    cursor: default;
    transition: transform .22s cubic-bezier(.34, 1.3, .64, 1)
}

.bank-partner-card:hover {
    transform: translateY(-4px)
}

.bpc-circle {
    width: 120px;
    height: 120px;
    border-radius: 0;
    overflow: visible;
    flex-shrink: 0;
    position: relative;
    background: transparent;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center
}

.bpc-circle::after {
    display: none
}

.bpc-circle .bank-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block
}

.bpc-name {
    font-size: .72rem;
    font-weight: 500;
    color: var(--text-light);
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0
}

.care-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
}

.care-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, .04);
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: var(--transition)
}

.care-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(185, 154, 91, .1)
}

.care-card-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(185, 154, 91, .06), rgba(185, 154, 91, .03));
    border: 1px solid rgba(185, 154, 91, .11);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem
}

.care-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-weight: 600
}

.care-card p {
    font-size: .88rem;
    color: var(--text-light);
    line-height: 1.7
}

.care-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 55px;
    box-shadow: var(--shadow);
    border-left: 3px solid var(--accent)
}

.form-group {
    margin-bottom: 20px
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light)
}

.emergency-bar {
    background: linear-gradient(135deg, #8a6318, #c9a85e, #a07830);
    border-radius: var(--radius-xl);
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 8px 32px rgba(185, 154, 91, .17)
}

.emergency-bar-text {
    color: #fff8e8
}

.emergency-bar-text h3 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 4px
}

.emergency-bar-text p {
    font-size: .88rem;
    opacity: .82
}

.emergency-bar .btn {
    white-space: nowrap;
    flex-shrink: 0;
    background: rgba(255, 255, 255, .18);
    color: white;
    border: 1px solid rgba(255, 255, 255, .45);
    backdrop-filter: blur(8px)
}

.emergency-bar .btn:hover {
    background: rgba(255, 255, 255, .30)
}

.faq-list {
    max-width: 800px;
    margin: 0 auto
}

.faq-item {
    border-bottom: 1px solid var(--gray-light)
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    text-align: left;
    gap: 16px
}

.faq-question i {
    color: var(--accent);
    font-size: .85rem;
    transition: transform .3s ease;
    flex-shrink: 0
}

.faq-answer {
    padding-bottom: 20px;
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.75;
    display: none
}

.faq-item.open .faq-question i {
    transform: rotate(45deg)
}

.faq-item.open .faq-answer {
    display: block
}

.hsb {
    position: absolute;
    left: 50%;
    bottom: 16%;
    transform: translate(-50%, 120%);
    width: calc(100% - 64px);
    max-width: 1200px;
    z-index: 50;
    padding: 0 32px;
    background: linear-gradient(180deg, rgba(6, 12, 32, .25) 0%, rgba(6, 12, 32, .55) 50%, rgba(6, 12, 32, .35) 100%);
    backdrop-filter: blur(18px) saturate(1.3);
    -webkit-backdrop-filter: blur(18px) saturate(1.3);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    opacity: 0;
    transition: transform .9s cubic-bezier(.22, 1, .36, 1), opacity .7s ease
}

.hsb.hsb--visible {
    transform: translate(-50%, 0);
    opacity: 1
}

.hsb-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    flex-wrap: nowrap
}

.hsb-pills {
    display: flex;
    gap: 8px;
    flex-shrink: 0
}

.hsb-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 18px;
    font-family: var(--font-heading);
    font-size: .78rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    white-space: nowrap;
    transition: background .22s ease, border-color .22s ease, transform .22s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px)
}

.hsb-pill:hover {
    background: rgba(255, 255, 255, .18);
    border-color: rgba(255, 255, 255, .30);
    transform: translateY(-1px)
}

.hsb-pill--hot {
    border-color: rgba(255, 120, 50, .40);
    background: rgba(255, 100, 40, .14)
}

.hsb-pill--hot:hover {
    background: rgba(255, 100, 40, .25);
    border-color: rgba(255, 120, 50, .60)
}

.hsb-pill--promo {
    border-color: rgba(185, 154, 91, .35);
    background: rgba(185, 154, 91, .10)
}

.hsb-pill--promo:hover {
    background: rgba(185, 154, 91, .22);
    border-color: rgba(185, 154, 91, .55)
}

.hsb-pill-icon {
    font-size: .85rem;
    line-height: 1
}

.hsb-search {
    flex: 1 1 0;
    min-width: 200px;
    position: relative;
    display: flex;
    align-items: center
}

.hsb-input {
    width: 100%;
    padding: 10px 44px 10px 18px;
    font-family: var(--font-body);
    font-size: .85rem;
    color: var(--text);
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(200, 200, 200, .40);
    border-radius: 999px;
    outline: none;
    transition: border-color .22s ease, box-shadow .22s ease
}

.hsb-input::placeholder {
    color: rgba(100, 100, 120, .55);
    font-weight: 400
}

.hsb-input:focus {
    border-color: rgba(185, 154, 91, .60);
    box-shadow: 0 0 0 3px rgba(185, 154, 91, .15)
}

.hsb-search-btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(40, 50, 70, .08);
    color: rgba(60, 60, 80, .70);
    font-size: .85rem;
    cursor: pointer;
    transition: background .2s ease, color .2s ease
}

.hsb-search-btn:hover {
    background: rgba(185, 154, 91, .18);
    color: rgba(160, 120, 50, 1)
}

.hsb-ai {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-size: .80rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-warm) 100%);
    border: none;
    border-radius: 999px;
    box-shadow: 0 2px 10px rgba(185, 154, 91, .40);
    transition: transform .22s ease, box-shadow .22s ease;
    flex-shrink: 0;
    cursor: pointer
}

.hsb-ai:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(185, 154, 91, .55)
}

.hsb-ai i {
    font-size: .90rem
}

.hsb-results {
    position: absolute;
    top: calc(100%+10px);
    left: 32px;
    right: 32px;
    background: rgba(12, 20, 40, .92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(185, 154, 91, .25);
    border-radius: 14px;
    padding: 0;
    max-height: 340px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .35)
}

.hsb-results.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.hsb-results::-webkit-scrollbar {
    width: 5px
}

.hsb-results::-webkit-scrollbar-track {
    background: transparent
}

.hsb-results::-webkit-scrollbar-thumb {
    background: rgba(185, 154, 91, .3);
    border-radius: 4px
}

.hsb-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    text-decoration: none;
    color: #fff;
    transition: background .18s ease;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.hsb-result-item:last-child {
    border-bottom: none
}

.hsb-result-item:first-child {
    border-radius: 14px 14px 0 0
}

.hsb-result-item:last-child {
    border-radius: 0 0 14px 14px
}

.hsb-result-item:only-child {
    border-radius: 14px
}

.hsb-result-item:hover {
    background: rgba(185, 154, 91, .15)
}

.hsb-result-thumb {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, .1)
}

.hsb-result-info {
    flex: 1;
    min-width: 0
}

.hsb-result-name {
    font-family: var(--font-heading);
    font-size: .85rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.hsb-result-name .hsb-result-badge {
    display: inline-block;
    font-size: .60rem;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
    background: var(--accent);
    color: #fff
}

.hsb-result-loc {
    font-size: .72rem;
    color: rgba(255, 255, 255, .55);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.hsb-result-loc i {
    margin-right: 3px;
    color: var(--accent);
    font-size: .65rem
}

.hsb-result-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 2px
}

.hsb-result-type {
    font-size: .68rem;
    color: rgba(255, 255, 255, .45)
}

.hsb-result-price {
    font-size: .70rem;
    font-weight: 600;
    color: var(--accent-warm)
}

.hsb-result-empty {
    padding: 18px 14px;
    text-align: center;
    color: rgba(255, 255, 255, .45);
    font-size: .80rem
}

@media (max-width:900px) {
    .hsb {
        padding: 0 16px;
        width: calc(100% - 40px);
        bottom: 14%
    }

    .hsb-inner {
        flex-wrap: wrap;
        gap: 10px
    }

    .hsb-pills {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }

    .hsb-search {
        min-width: 0;
        flex: 1 1 auto
    }

    .hsb-ai {
        font-size: .74rem;
        padding: 9px 14px
    }
}

@media (max-width:560px) {
    .hsb {
        padding: 0 10px;
        width: calc(100% - 24px);
        bottom: 12%
    }

    .hsb-inner {
        gap: 8px;
        padding: 10px 0
    }

    .hsb-pill {
        padding: 6px 12px;
        font-size: .70rem
    }

    .hsb-ai {
        display: none
    }

    .hsb-results {
        max-height: 260px;
        left: 10px;
        right: 10px
    }

    .hsb-result-thumb {
        width: 46px;
        height: 46px
    }

    .hsb-result-item {
        padding: 8px 10px;
        gap: 10px
    }
}

@media (max-width:1024px) {
    .container {
        padding: 0 20px
    }

    .about-preview,
    .about-full,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .promo-card-content {
        padding: 38px
    }
}

@media (max-width:768px) {
    :root {
        --radius-lg: 18px;
        --radius-xl: 22px
    }

    .container {
        padding: 0 14px
    }

    .navbar .container {
        height: 68px
    }

    .hamburger {
        display: flex
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 82%;
        max-width: 320px;
        height: 100dvh;
        background: rgba(8, 7, 5, .96);
        backdrop-filter: blur(24px) saturate(150%);
        -webkit-backdrop-filter: blur(24px) saturate(150%);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 10px;
        padding: 80px 42px;
        transition: right .5s cubic-bezier(.16, 1, .3, 1);
        box-shadow: -12px 0 60px rgba(0, 0, 0, .55);
        border-left: 1px solid rgba(185, 154, 91, .06);
        z-index: 999
    }

    .nav-menu.open {
        right: 0
    }

    .nav-menu a {
        font-size: 1rem;
        letter-spacing: 3px;
        padding: 14px 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, .06)
    }

    .nav-menu a:last-child {
        border-bottom: none
    }

    .nav-right {
        display: none
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg)
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0)
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg)
    }

    .section {
        padding: 70px 0
    }

    .section-alt {
        padding: 70px 0
    }

    .stats-bar {
        padding: 55px 0
    }

    .cta-banner {
        padding: 90px 0
    }

    .mb-70 {
        margin-bottom: 45px
    }

    h1 {
        font-size: clamp(2.2rem, 8vw, 3rem)
    }

    h2 {
        font-size: clamp(1.9rem, 6.5vw, 2.6rem)
    }

    .hero {
        min-height: 100dvh
    }

    .hero-content {
        padding: 0 16px;
        max-width: 100%
    }

    .hero-content .section-subtitle {
        font-size: .7rem;
        letter-spacing: 5px
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 18px
    }

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

    .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .project-card-overlay .btn {
        font-size: .7rem;
        padding: 12px 22px
    }

    .about-image-wrapper::before,
    .about-image-wrapper::after {
        display: none
    }

    .about-image {
        aspect-ratio: 16/9
    }

    .promo-card {
        grid-template-columns: 1fr;
        border-radius: var(--radius-xl)
    }

    .promo-card-image {
        aspect-ratio: 16/9;
        border-radius: var(--radius-xl) var(--radius-xl) 0 0
    }

    .promo-card-content {
        padding: 32px 28px
    }

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

    .newsletter-form input {
        font-size: .82rem
    }

    .footer {
        padding: 65px 0 0
    }

    .footer-grid {
        padding-bottom: 45px
    }

    .cta-banner h2 {
        font-size: clamp(2rem, 7vw, 2.8rem)
    }

    .page-header {
        height: 46vh;
        min-height: 340px
    }
}

@media (max-width:480px) {
    :root {
        --radius-lg: 16px;
        --radius-xl: 20px
    }

    .container {
        padding: 0 14px
    }

    .stat-number {
        font-size: 2.2rem
    }

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

    .stat-item::after {
        display: none
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 260px !important;
        margin: 0 auto
    }

    .project-badge {
        font-size: .58rem;
        padding: 5px 13px
    }

    .footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center
    }

    .footer-bottom a {
        margin-left: 10px
    }

    .newsletter-form input {
        border-radius: var(--radius-md) 0 0 var(--radius-md)
    }

    .newsletter-form button {
        border-radius: 0 var(--radius-md) var(--radius-md) 0
    }
}

@media (max-width:640px) {
    .hero-content img[alt="RUNGKIJ"] {
        height: 140px !important;
        margin-bottom: 18px !important
    }

    .hero-content p {
        font-size: .82rem;
        padding: 0 8px
    }

    .hero-scroll-indicator {
        bottom: 24px
    }
}

@media (max-width:640px) {
    .pss-section {
        padding: 0
    }

    .pss-inner {
        padding: 52px 20px 48px;
        gap: 36px
    }

    .pss-headline {
        font-size: 2rem !important;
        line-height: 1.25
    }

    .pss-body {
        font-size: .82rem;
        margin-bottom: 20px
    }

    .pss-cta {
        font-size: .72rem;
        padding: 10px 18px
    }

    .pss-left-progress {
        max-width: 160px
    }

    .pss-card {
        flex: 0 0 82vw;
        height: 58vw;
        min-height: 220px;
        max-height: 340px
    }

    .pss-card-name {
        font-size: 1rem
    }

    .pss-card-desc {
        display: none
    }

    .pss-card-body {
        padding: 16px 18px
    }

    .pss-viewport {
        overflow: visible
    }

    .pss-right {
        overflow: hidden
    }
}

@media (max-width:480px) {
    .stats-bar {
        padding: 40px 0
    }

    .stat-number {
        font-size: 1.9rem
    }

    .stat-label {
        font-size: .62rem
    }
}

@media (max-width:680px) {
    .bank-partner-card {
        width: 96px
    }

    .bpc-circle {
        width: 96px;
        height: 96px
    }

    .bank-partners-grid {
        gap: 18px 14px
    }
}

@media (max-width:480px) {
    .bank-partner-card {
        width: 80px
    }

    .bpc-circle {
        width: 80px;
        height: 80px
    }

    .bpc-name {
        font-size: .65rem
    }

    .bank-partners-grid {
        gap: 14px 10px
    }
}

@media (max-width:768px) {
    .process-steps {
        grid-template-columns: 1fr 1fr !important;
        gap: 20px
    }
}

@media (max-width:480px) {
    .process-steps {
        grid-template-columns: 1fr !important;
        max-width: 320px;
        margin: 0 auto
    }

    .process-step {
        padding: 22px 20px
    }
}

@media (max-width:640px) {
    .cta-banner {
        padding: 70px 0
    }

    .cta-banner h2 {
        font-size: clamp(1.7rem, 6.5vw, 2.4rem)
    }

    .cta-banner .btn {
        font-size: .78rem;
        padding: 14px 28px
    }
}

@media (max-width:640px) {
    .floor-plan-tabs {
        flex-wrap: wrap;
        gap: 8px
    }

    .floor-plan-tab {
        font-size: .72rem;
        padding: 8px 14px
    }

    .spec-grid {
        grid-template-columns: 1fr 1fr !important
    }

    .project-gallery {
        grid-template-columns: 1fr !important
    }
}

@media (max-width:480px) {
    .page-header {
        height: 42vh;
        min-height: 280px
    }

    .page-header-content h1 {
        font-size: clamp(1.7rem, 7vw, 2.4rem)
    }
}

@media (max-width:480px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 28px
    }

    .footer {
        padding-top: 52px
    }
}

@media (max-width:480px) {
    .join-section {
        padding: 60px 0
    }

    .join-content {
        padding: 0 20px
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important
    }
}

@media (max-width:768px) {

    .pss-card img,
    .pss-card-video {
        animation: none !important
    }

    .footer-horizon,
    .ph-horizon {
        animation: none !important;
        opacity: .6
    }

    .hero::after,
    .section-dark::before,
    .section-dark::after {
        animation: none !important
    }
}

.mb-0 {
    margin-bottom: 0
}

.mt-40 {
    margin-top: 40px
}

.mt-50 {
    margin-top: 50px
}

.mb-60 {
    margin-bottom: 60px
}

.mb-70 {
    margin-bottom: 70px
}

.pt-0 {
    padding-top: 0
}

.sticky-bar {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    z-index: 1200;
    transition: transform .45s cubic-bezier(.34, 1.56, .64, 1), opacity .35s ease;
    opacity: 0;
    pointer-events: none;
    will-change: transform
}

.sticky-bar.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto
}

.sticky-bar-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .28) 0%, rgba(255, 255, 255, .12) 50%, rgba(255, 255, 255, .20) 100%);
    backdrop-filter: blur(28px) saturate(200%) brightness(1.08);
    -webkit-backdrop-filter: blur(28px) saturate(200%) brightness(1.08);
    border-radius: 60px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, .45);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .22), 0 4px 12px rgba(0, 0, 0, .12), 0 1px 0 rgba(255, 255, 255, .70) inset, 0 -1px 0 rgba(0, 0, 0, .08) inset, 0 0 0 1px rgba(201, 168, 76, .09) inset;
    position: relative;
    overflow: hidden
}

.sticky-bar-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, .22) 0%, rgba(255, 255, 255, .00) 100%);
    border-radius: 60px 60px 0 0;
    pointer-events: none
}

.sticky-social {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-right: 6px;
    border-right: 1px solid rgba(255, 255, 255, .30);
    margin-right: 4px
}

.sticky-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
    flex-shrink: 0
}

.sticky-icon:hover {
    transform: scale(1.12)
}

.sticky-icon.fb {
    background: #0A7CFF;
    color: #fff;
    box-shadow: 0 2px 10px rgba(10, 124, 255, .40)
}

.sticky-icon.line {
    background: #06C755;
    color: #fff;
    box-shadow: 0 2px 10px rgba(6, 199, 85, .40)
}

.sticky-icon.phone {
    background: #FF8000;
    color: #fff;
    box-shadow: 0 2px 10px rgba(255, 128, 0, .23)
}

.sticky-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    border-radius: 50px;
    font-family: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .3px;
    text-decoration: none;
    padding: 10px 18px;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    white-space: nowrap;
    flex-shrink: 0
}

.sticky-btn i {
    font-size: .88rem
}

.sticky-btn:hover {
    transform: translateY(-2px)
}

.sticky-btn-calc {
    background: linear-gradient(135deg, rgba(10, 24, 54, .90) 0%, rgba(13, 32, 80, .85) 100%);
    color: #d4ae6a;
    border: 1px solid rgba(201, 168, 76, .15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px rgba(10, 24, 54, .35), 0 1px 0 rgba(255, 255, 255, .12) inset
}

.sticky-btn-calc:hover {
    background: linear-gradient(135deg, rgba(13, 32, 80, .95) 0%, rgba(16, 42, 100, .90) 100%);
    box-shadow: 0 6px 20px rgba(10, 24, 54, .45), 0 1px 0 rgba(255, 255, 255, .15) inset
}

.sticky-btn-ask {
    background: linear-gradient(135deg, rgba(201, 168, 76, .46) 0%, rgba(232, 184, 75, .48) 45%, rgba(215, 175, 70, .45) 100%);
    color: #2a1a00;
    border: 1px solid rgba(255, 220, 100, .25);
    box-shadow: 0 2px 14px rgba(201, 168, 76, .25), 0 1px 0 rgba(255, 240, 160, .50) inset;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px)
}

.sticky-btn-ask:hover {
    background: linear-gradient(135deg, rgba(212, 180, 86, .49) 0%, rgba(245, 200, 80, .5) 45%, rgba(225, 185, 78, .48) 100%);
    box-shadow: 0 6px 22px rgba(201, 168, 76, .33), 0 1px 0 rgba(255, 245, 170, .60) inset
}

.sticky-btn-ask i {
    font-size: .88rem
}

.sticky-btn-ask .icon-sparkle {
    display: inline-flex;
    width: 18px;
    height: 18px;
    background: rgba(0, 0, 0, .12);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: .7rem
}

@media (max-width:640px) {
    .sticky-bar {
        display: none !important
    }
}

.calc-section {
    background: radial-gradient(ellipse 80% 50% at 20% 30%, rgba(201, 168, 76, .07) 0%, transparent 60%), radial-gradient(ellipse 60% 40% at 80% 70%, rgba(185, 154, 91, .04) 0%, transparent 70%), linear-gradient(160deg, #fdf8f0 0%, #fffef9 40%, #fdf6ec 100%);
    padding: 80px 0 100px;
    position: relative
}

.calc-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, .2), transparent)
}

.calc-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 52px
}

.calc-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1
}

.calc-step-item+.calc-step-item::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 20px;
    width: 80px;
    height: 1px;
    background: rgba(9, 23, 54, .12);
    transition: background .4s
}

.calc-step-item.done+.calc-step-item::before,
.calc-step-item.active+.calc-step-item::before {
    background: linear-gradient(90deg, rgba(201, 168, 76, .5), rgba(9, 23, 54, .12))
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(9, 23, 54, .04);
    border: 1px solid rgba(9, 23, 54, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .82rem;
    font-weight: 700;
    color: rgba(9, 23, 54, .35);
    transition: all .35s ease;
    font-family: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif
}

.calc-step-item.active .step-circle {
    background: linear-gradient(135deg, #c9a84c, #e8b84b);
    border-color: #e8b84b;
    color: #1a0f00;
    box-shadow: 0 0 20px rgba(201, 168, 76, .23)
}

.calc-step-item.done .step-circle {
    background: rgba(201, 168, 76, .1);
    border-color: rgba(201, 168, 76, .3);
    color: #c9a84c
}

.step-label {
    font-family: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif;
    font-size: .72rem;
    color: rgba(9, 23, 54, .42);
    letter-spacing: .5px;
    white-space: nowrap;
    transition: color .35s
}

.calc-step-item.active .step-label {
    color: var(--accent)
}

.calc-step-item.done .step-label {
    color: rgba(185, 154, 91, .55)
}

.calc-card {
    background: rgba(255, 255, 255, .80);
    border: 1px solid rgba(185, 154, 91, .22);
    border-radius: 16px;
    padding: 36px 40px;
    margin-bottom: 20px;
    display: none;
    animation: calcCardIn .45s cubic-bezier(.25, .46, .45, .94) both;
    box-shadow: 0 2px 18px rgba(185, 154, 91, .07)
}

.calc-card.active {
    display: block
}

@keyframes calcCardIn {
    from {
        opacity: 0;
        transform: translateY(18px)
    }

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

.calc-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(185, 154, 91, .18)
}

.calc-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(201, 168, 76, .1), rgba(201, 168, 76, .04));
    border: 1px solid rgba(201, 168, 76, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #c9a84c
}

.calc-card-title {
    font-family: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0
}

.calc-card-subtitle {
    font-family: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif;
    font-size: .78rem;
    color: rgba(9, 23, 54, .45);
    margin: 2px 0 0
}

.calc-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.calc-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px
}

.calc-grid-full {
    grid-column: 1 / -1
}

.calc-field {
    display: flex;
    flex-direction: column;
    gap: 7px
}

.calc-label {
    font-family: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif;
    font-size: .78rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: .5px;
    text-transform: uppercase
}

.calc-label span {
    font-weight: 400;
    text-transform: none;
    color: rgba(9, 23, 54, .40);
    margin-left: 4px
}

.calc-input,
.calc-select {
    background: rgba(255, 255, 255, .85);
    border: 1px solid rgba(185, 154, 91, .28);
    border-radius: 10px;
    padding: 13px 16px;
    font-family: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif;
    font-size: .92rem;
    color: var(--primary);
    width: 100%;
    box-sizing: border-box;
    transition: border-color .2s, background .2s, box-shadow .2s;
    outline: none;
    -webkit-appearance: none
}

.calc-input::placeholder {
    color: rgba(9, 23, 54, .30)
}

.calc-input:focus,
.calc-select:focus {
    border-color: rgba(185, 154, 91, .55);
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 0 0 3px rgba(185, 154, 91, .08)
}

.calc-select option {
    background: #fff;
    color: var(--primary)
}

.calc-input-prefix {
    position: relative
}

.calc-input-prefix .calc-input {
    padding-left: 44px
}

.calc-prefix-label {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: .78rem;
    color: rgba(9, 23, 54, .40);
    font-family: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif;
    pointer-events: none
}

.calc-hint {
    font-size: .70rem;
    color: rgba(9, 23, 54, .38);
    margin-top: 2px;
    font-family: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif
}

.calc-radio-group {
    display: flex;
    gap: 12px
}

.calc-radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif;
    font-size: .85rem;
    color: rgba(9, 23, 54, .65);
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid rgba(185, 154, 91, .22);
    background: rgba(255, 255, 255, .60);
    transition: all .2s;
    flex: 1;
    justify-content: center
}

.calc-radio-label input {
    display: none
}

.calc-radio-label.checked,
.calc-radio-label:has(input:checked) {
    border-color: rgba(201, 168, 76, .3);
    background: rgba(201, 168, 76, .05);
    color: #d4ae6a
}

.calc-divider {
    border: none;
    border-top: 1px solid rgba(185, 154, 91, .18);
    margin: 24px 0
}

.calc-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    gap: 12px
}

.calc-btn-back {
    background: transparent;
    border: 1px solid rgba(9, 23, 54, .22);
    color: rgba(9, 23, 54, .60);
    border-radius: 50px;
    padding: 12px 28px;
    font-family: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif;
    font-size: .85rem;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    gap: 8px
}

.calc-btn-back:hover {
    border-color: rgba(9, 23, 54, .45);
    color: var(--primary)
}

.calc-btn-next,
.calc-btn-submit {
    background: linear-gradient(135deg, #c9a84c, #e8b84b);
    color: #1a0f00;
    border: none;
    border-radius: 50px;
    padding: 13px 36px;
    font-family: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif;
    font-size: .88rem;
    font-weight: 800;
    cursor: pointer;
    transition: all .25s;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: .3px;
    box-shadow: 0 4px 16px rgba(201, 168, 76, .17)
}

.calc-btn-next:hover,
.calc-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, .25)
}

.calc-btn-submit {
    padding: 15px 44px;
    font-size: .95rem
}

.calc-results {
    display: none;
    animation: calcCardIn .55s ease both
}

.calc-results.visible {
    display: block
}

.calc-summary-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 36px
}

.calc-summary-card {
    background: rgba(255, 255, 255, .80);
    border: 1px solid rgba(185, 154, 91, .22);
    border-radius: 14px;
    padding: 22px 24px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(185, 154, 91, .07)
}

.calc-summary-label {
    font-family: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(9, 23, 54, .45);
    margin-bottom: 8px
}

.calc-summary-value {
    font-family: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #d4ae6a;
    line-height: 1
}

.calc-summary-unit {
    font-size: .78rem;
    color: rgba(9, 23, 54, .40);
    margin-top: 4px;
    font-family: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif
}

.calc-table-wrapper {
    overflow-x: auto;
    border-radius: 14px;
    border: 1px solid rgba(185, 154, 91, .22)
}

.calc-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif;
    font-size: .85rem
}

.calc-table thead tr {
    background: rgba(201, 168, 76, .05);
    border-bottom: 1px solid rgba(201, 168, 76, .1)
}

.calc-table thead th {
    padding: 14px 18px;
    text-align: left;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: rgba(201, 168, 76, .4);
    font-weight: 700;
    white-space: nowrap
}

.calc-table thead th:first-child {
    border-radius: 14px 0 0 0
}

.calc-table thead th:last-child {
    border-radius: 0 14px 0 0
}

.calc-table tbody tr {
    border-bottom: 1px solid rgba(185, 154, 91, .12);
    transition: background .15s
}

.calc-table tbody tr:hover {
    background: rgba(185, 154, 91, .04)
}

.calc-table tbody tr:last-child {
    border-bottom: none
}

.calc-table td {
    padding: 16px 18px;
    color: rgba(9, 23, 54, .78);
    vertical-align: middle
}

.calc-table td.amount {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    font-family: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif
}

.calc-table td.amount.zero {
    color: rgba(9, 23, 54, .25);
    font-size: .85rem
}

.bank-cell {
    display: flex;
    align-items: center;
    gap: 12px
}

.bank-logo-sm {
    width: 52px;
    height: 28px;
    object-fit: contain;
    border-radius: 4px;
    flex-shrink: 0
}

.bank-name-main {
    font-weight: 700;
    color: var(--primary);
    font-size: .88rem
}

.bank-name-sub {
    font-size: .70rem;
    color: rgba(9, 23, 54, .45);
    margin-top: 1px
}

.calc-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 11px;
    border-radius: 50px;
    font-size: .70rem;
    font-weight: 700;
    letter-spacing: .3px;
    white-space: nowrap
}

.badge-pass {
    background: rgba(52, 199, 89, .15);
    color: #34c759;
    border: 1px solid rgba(52, 199, 89, .25)
}

.badge-low {
    background: rgba(255, 149, 0, .07);
    color: #ff9500;
    border: 1px solid rgba(255, 149, 0, .12)
}

.badge-fail {
    background: rgba(255, 59, 48, .12);
    color: #ff6b6b;
    border: 1px solid rgba(255, 59, 48, .20)
}

.calc-table tbody tr.best-row {
    background: rgba(201, 168, 76, .03)
}

.best-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #c9a84c, #e8b84b);
    color: #1a0f00;
    padding: 3px 9px;
    border-radius: 50px;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .5px;
    margin-left: 6px;
    vertical-align: middle
}

.calc-disclaimer {
    margin-top: 28px;
    padding: 18px 22px;
    background: rgba(185, 154, 91, .05);
    border-left: 3px solid rgba(185, 154, 91, .35);
    border-radius: 0 10px 10px 0;
    font-family: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif;
    font-size: .76rem;
    color: rgba(9, 23, 54, .50);
    line-height: 1.7
}

.calc-reset-btn {
    background: transparent;
    border: 1px solid rgba(201, 168, 76, .17);
    color: #c9a84c;
    padding: 11px 26px;
    border-radius: 50px;
    font-family: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif;
    font-size: .82rem;
    cursor: pointer;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 24px
}

.calc-reset-btn:hover {
    background: rgba(201, 168, 76, .05);
    border-color: rgba(201, 168, 76, .33)
}

.calc-cta-strip {
    margin-top: 40px;
    background: linear-gradient(135deg, rgba(185, 154, 91, .10) 0%, rgba(201, 168, 94, .06) 100%);
    border: 1px solid rgba(185, 154, 91, .28);
    border-radius: 16px;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.calc-cta-text h4 {
    font-family: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif;
    font-size: 1.35rem;
    color: var(--primary);
    margin: 0 0 6px
}

.calc-cta-text p {
    font-family: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif;
    font-size: .82rem;
    color: rgba(9, 23, 54, .50);
    margin: 0
}

@media (max-width:768px) {
    .calc-section {
        padding: 56px 0 72px
    }

    .calc-card {
        padding: 24px 20px
    }

    .calc-grid-2,
    .calc-grid-3 {
        grid-template-columns: 1fr;
        gap: 14px
    }

    .calc-steps {
        gap: 0;
        margin-bottom: 36px
    }

    .calc-step-item+.calc-step-item::before {
        width: 40px
    }

    .step-label {
        font-size: .65rem
    }

    .calc-summary-row {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .calc-table thead th {
        font-size: .65rem;
        padding: 10px 12px
    }

    .calc-table td {
        padding: 12px;
        font-size: .80rem
    }

    .calc-cta-strip {
        flex-direction: column;
        text-align: center
    }
}

@media (max-width:480px) {
    .calc-nav {
        flex-direction: column-reverse
    }

    .calc-btn-next,
    .calc-btn-submit {
        width: 100%;
        justify-content: center
    }

    .calc-btn-back {
        width: 100%;
        justify-content: center
    }
}

.pss-section {
    background: #070f22 !important;
    border-top: none !important;
    border-bottom: none !important
}

.pss-section::before,
.pss-section::after {
    display: none !important
}

.pss-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: .42;
    filter: brightness(.70) saturate(1.15) blur(12px);
    transform: scale(1.08);
    transition: background-image 0s, opacity 1.2s ease;
    animation: none !important
}

.pss-bg-b {
    opacity: 0;
    z-index: 0
}

.pss-section>.pss-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(7, 15, 34, .72) 0%, rgba(7, 15, 34, .30) 50%, transparent 100%)
}

.pss-inner {
    gap: 72px !important;
    padding: 96px 64px 48px !important;
    max-width: 1440px !important;
    align-items: stretch !important
}

.pss-left {
    flex: 0 0 300px !important;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.pss-tabs {
    background: rgba(255, 255, 255, .09) !important;
    border-color: rgba(255, 255, 255, .14) !important
}

.pss-tab {
    color: rgba(255, 255, 255, .48) !important
}

.pss-tab.active {
    background: rgba(255, 255, 255, .90) !important;
    color: var(--primary) !important
}

.pss-tab:hover {
    color: rgba(255, 255, 255, .82) !important
}

.pss-headline {
    color: #fff !important;
    font-size: clamp(2rem, 2.8vw, 3rem) !important;
    margin: 18px 0 20px !important
}

.pss-left.switching .pss-headline,
.pss-left.switching .pss-body,
.pss-left.switching .pss-cta {
    opacity: 0 !important;
    transform: translateY(14px) !important
}

.pss-body {
    color: rgba(255, 255, 255, .62) !important;
    line-height: 1.85 !important;
    font-size: .88rem !important;
    margin-bottom: 32px !important
}

.pss-cta {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    border: 1px solid rgba(255, 255, 255, .28) !important;
    color: #fff !important;
    border-radius: 6px !important;
    font-size: .74rem !important;
    font-weight: 600 !important;
    letter-spacing: .03em !important;
    padding: 11px 22px !important;
    margin-top: 24px;
    background: rgba(255, 255, 255, .06) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    text-decoration: none !important;
    transition: all .28s ease !important
}

.pss-cta i {
    font-size: .66rem;
    transition: transform .28s ease
}

.pss-cta:hover {
    background: rgba(255, 255, 255, .14) !important;
    border-color: rgba(255, 255, 255, .65) !important;
    color: #fff !important
}

.pss-cta:hover i {
    transform: translateX(3px)
}

.pss-right {
    gap: 0 !important
}

.pss-right .pss-controls {
    display: none !important
}

.pss-track {
    gap: 16px !important;
    min-height: 510px;
    align-items: flex-end
}

.pss-location-item {
    flex: 0 0 auto;
    width: 230px;
    height: 462px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    display: block;
    transition: width .72s cubic-bezier(.22, .61, .36, 1), height .72s cubic-bezier(.22, .61, .36, 1), transform .50s cubic-bezier(.22, .61, .36, 1), box-shadow .50s ease, border-color .40s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .45);
    border: 1px solid rgba(255, 255, 255, .08);
    opacity: 0;
    transform: translateY(30px) scale(.97)
}

.pss-location-item.card-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity .60s ease, width .72s cubic-bezier(.22, .61, .36, 1), height .72s cubic-bezier(.22, .61, .36, 1), transform .60s cubic-bezier(.22, .61, .36, 1), box-shadow .50s ease, border-color .40s ease
}

.pss-location-item.big {
    width: 360px;
    height: 510px !important;
    margin-top: 0;
    border-color: rgba(255, 255, 255, .14) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .55), 0 0 0 1px rgba(185, 154, 91, .28) !important;
    z-index: 5
}

.pss-location-item.big.card-visible {
    transform: translateY(-48px) scale(1) !important;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .55), 0 0 0 1px rgba(185, 154, 91, .35) !important
}

.pss-location-item.big:hover {
    transform: translateY(-56px) scale(1.018) !important;
    border-color: rgba(255, 255, 255, .22) !important;
    box-shadow: 0 36px 80px rgba(0, 0, 0, .64), 0 0 0 1px rgba(185, 154, 91, .50) !important
}

.pss-location-item:not(.big):hover {
    transform: translateY(-7px) scale(1.018) !important;
    border-color: rgba(255, 255, 255, .18) !important;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .58) !important
}

.pss-location-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: none !important;
    transition: transform .75s ease
}

.pss-location-item:hover img {
    transform: scale(1.07)
}

.pss-loc-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.pss-location-item::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, .70) 0%, rgba(0, 0, 0, .30) 40%, rgba(0, 0, 0, .05) 65%, transparent 100%);
    transition: background .45s ease
}

.pss-location-item:hover::before {
    background: linear-gradient(to top, rgba(0, 0, 0, .80) 0%, rgba(0, 0, 0, .45) 45%, rgba(0, 0, 0, .12) 68%, transparent 100%)
}

.pss-item-link {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(.75) translate(5px, -5px);
    transition: all .30s ease
}

.pss-item-link::after {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: .68rem;
    color: #fff;
    content: '\f35d'
}

.pss-location-item:hover .pss-item-link {
    opacity: 1;
    transform: scale(1) translate(0, 0)
}

.pss-item-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 14px 16px 18px;
    background: rgba(8, 12, 28, .55);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border-top: 1px solid rgba(255, 255, 255, .10);
    transform: translateY(0);
    transition: background .35s ease
}

.pss-location-item:hover .pss-item-text {
    background: rgba(8, 12, 28, .68)
}

.pss-item-title {
    font-size: .82rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.42;
    margin: 0 0 4px;
    letter-spacing: .01em;
    font-family: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif
}

.pss-location-item.big .pss-item-title {
    font-size: 1.0;
    line-height: 1.36
}

.pss-item-text p {
    font-size: .70rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.50;
    margin: 0;
    font-family: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif;
    max-height: 38px;
    overflow: hidden;
    opacity: .85;
    transition: color .35s ease, opacity .35s ease
}

.pss-location-item:hover .pss-item-text p {
    color: rgba(255, 255, 255, .72);
    opacity: 1
}

.pss-controls {
    position: relative;
    z-index: 2;
    display: flex !important;
    align-items: center;
    gap: 18px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px 64px 60px calc(64px+300px+72px);
    opacity: 1;
    transition: opacity .30s ease
}

.pss-controls.pss-controls--inline {
    padding: 0 !important;
    margin: 28px 0 0 !important;
    max-width: none !important;
    gap: 14px
}

.pss-controls.fade-out {
    opacity: 0 !important
}

.pss-slider-nav {
    display: flex;
    gap: 8px
}

.pss-arrow {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: transparent !important;
    border: 1.5px solid rgba(255, 255, 255, .32) !important;
    cursor: pointer;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    font-size: .80rem !important;
    transition: all .22s ease !important;
    box-shadow: none !important
}

.pss-arrow:hover {
    background: rgba(255, 255, 255, .12) !important;
    border-color: rgba(255, 255, 255, .80) !important;
    transform: none !important
}

.pss-progress {
    flex: 1;
    max-width: 280px;
    height: 2px !important;
    background: rgba(255, 255, 255, .18) !important;
    border-radius: 2px;
    overflow: hidden
}

.pss-bar {
    height: 100% !important;
    background: #fff !important;
    border-radius: 2px !important;
    box-shadow: none !important;
    transition: width .55s ease !important
}

.pss-counter {
    font-size: .76rem !important;
    color: rgba(255, 255, 255, .48) !important;
    letter-spacing: .06em;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px
}

.pss-counter em {
    font-style: normal !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: .90rem !important
}

.pss-divider {
    opacity: .40
}

@media (max-width:1100px) {
    .pss-inner {
        padding: 80px 40px 36px !important;
        gap: 48px !important
    }

    .pss-controls {
        padding: 16px 40px 52px calc(40px+300px+48px)
    }

    .pss-location-item {
        width: 200px !important;
        height: 420px
    }

    .pss-location-item.big {
        width: 310px !important
    }
}

@media (max-width:860px) {
    .pss-inner {
        flex-direction: column !important;
        padding: 60px 28px 24px !important;
        gap: 32px !important;
        align-items: flex-start !important
    }

    .pss-left {
        flex: none !important;
        width: 100% !important
    }

    .pss-track {
        min-height: 410px !important;
        padding-top: 40px !important;
        margin-top: 0 !important;
        align-items: flex-end !important
    }

    .pss-location-item {
        width: 200px !important;
        height: 380px !important
    }

    .pss-location-item.big {
        width: 300px !important
    }
}

@media (max-width:540px) {
    .pss-inner {
        padding: 48px 20px 20px !important
    }

    .pss-controls {
        padding: 10px 20px 36px !important
    }

    .pss-location-item {
        width: 180px !important;
        height: 340px !important
    }

    .pss-location-item.big {
        width: 260px !important
    }

    .pss-headline {
        font-size: 1.75rem !important
    }
}

.promo-preview-section {
    background: #fff
}

.promo-preview-section .pp-eyebrow-big {
    font-family: var(--font-heading), 'Noto Sans Thai', sans-serif;
    font-size: clamp(2.6rem, 5.2vw, 4.2rem) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em !important;
    text-transform: none !important;
    font-weight: 800 !important;
    color: var(--primary) !important;
    margin-bottom: 18px !important
}

.promo-preview-section .pp-eyebrow-big .pp-eyebrow-hl {
    color: var(--accent);
    position: relative;
    font-weight: 900;
    font-size: 1.08em;
    background: linear-gradient(180deg, transparent 62%, rgba(185, 154, 91, .28) 62%, rgba(185, 154, 91, .28) 94%, transparent 94%);
    padding: 0 .06em
}

.promo-preview-section .pp-title-sm {
    font-family: var(--font-body);
    font-size: .78rem !important;
    font-weight: 600 !important;
    letter-spacing: .26em !important;
    text-transform: uppercase !important;
    color: var(--accent) !important;
    margin-bottom: 18px !important
}

@media (max-width:640px) {
    .promo-preview-section .pp-eyebrow-big {
        font-size: clamp(2rem, 8vw, 2.8rem) !important
    }

    .promo-preview-section .pp-title-sm {
        font-size: .7rem !important;
        letter-spacing: .22em !important
    }
}

.pp-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: linear-gradient(135deg, #091736 0%, #122155 100%);
    border: 1.5px solid rgba(185, 154, 91, .45);
    border-radius: 14px;
    padding: 16px 20px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(9, 23, 54, .30);
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 148px
}

.pp-badge-top {
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .60)
}

.pp-badge-num {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.1;
    letter-spacing: -.02em
}

.pp-badge-num span {
    font-size: .80rem;
    font-weight: 600;
    margin-left: 2px
}

.pp-badge-sub {
    font-size: .62rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .50);
    letter-spacing: .05em
}

.pp-perks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
    margin: 24px 0 0
}

.pp-perk {
    display: flex;
    align-items: flex-start;
    gap: 12px
}

.pp-perk i {
    font-size: 1rem;
    color: var(--accent);
    margin-top: 2px;
    flex-shrink: 0
}

.pp-perk div {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.pp-perk strong {
    font-size: .82rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3
}

.pp-perk span {
    font-size: .74rem;
    color: rgba(9, 23, 54, .48);
    line-height: 1.4
}

@media (max-width:600px) {
    .pp-perks {
        grid-template-columns: 1fr
    }

    .pp-badge {
        top: 14px;
        right: 14px;
        min-width: 120px;
        padding: 12px 14px
    }

    .pp-badge-num {
        font-size: 1.25rem
    }
}

.section-alt {
    background: #f8f7f4 !important
}

.promo-preview-section {
    background: #f8f7f4 !important
}

.section {
    background: #ffffff
}

.project-card {
    box-shadow: 0 2px 16px rgba(9, 23, 54, .07), 0 1px 4px rgba(9, 23, 54, .04) !important;
    border: 1px solid rgba(185, 154, 91, .10) !important
}

.project-card:hover {
    box-shadow: 0 12px 40px rgba(9, 23, 54, .12), 0 4px 12px rgba(185, 154, 91, .09) !important
}

@keyframes gold-border-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 1px rgba(185, 154, 91, .22), 0 3px 14px rgba(185, 154, 91, .10)
    }

    50% {
        box-shadow: 0 0 0 1px rgba(210, 178, 108, .50), 0 5px 22px rgba(185, 154, 91, .22)
    }
}

@keyframes gold-shimmer-sweep {
    0% {
        transform: skewX(-20deg) translateX(-120%)
    }

    100% {
        transform: skewX(-20deg) translateX(280%)
    }
}

.btn {
    border: 1px solid rgba(185, 154, 91, .22) !important;
    box-shadow: 0 0 0 1px rgba(185, 154, 91, .12), 0 3px 12px rgba(185, 154, 91, .08), 0 1px 3px rgba(0, 0, 0, .06) !important;
    animation: gold-border-pulse 3.5s ease-in-out infinite;
    overflow: hidden;
    position: relative
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 235, 140, .18) 50%, transparent 100%);
    transform: skewX(-20deg) translateX(-120%);
    pointer-events: none
}

.btn:hover::after {
    animation: gold-shimmer-sweep .65s ease forwards
}

.btn:hover {
    border-color: rgba(185, 154, 91, .55) !important;
    box-shadow: 0 0 0 1px rgba(185, 154, 91, .45), 0 6px 24px rgba(185, 154, 91, .22), 0 2px 8px rgba(0, 0, 0, .08) !important;
    animation: none
}

.pss-cta,
.pgc-btn-secondary {
    box-shadow: 0 0 0 1px rgba(185, 154, 91, .18), 0 3px 12px rgba(185, 154, 91, .08) !important;
    animation: gold-border-pulse 3.5s ease-in-out infinite;
    position: relative;
    overflow: hidden
}

.pss-cta:hover,
.pgc-btn-secondary:hover {
    border-color: rgba(185, 154, 91, .65) !important;
    box-shadow: 0 0 0 1.5px rgba(185, 154, 91, .55), 0 6px 26px rgba(185, 154, 91, .20), 0 2px 8px rgba(0, 0, 0, .07) !important;
    animation: none
}

.pss-location-item {
    box-shadow: 0 4px 20px rgba(9, 23, 54, .18), 0 1px 6px rgba(0, 0, 0, .10) !important
}

.pss-location-item:hover {
    box-shadow: 0 16px 44px rgba(9, 23, 54, .22), 0 4px 14px rgba(0, 0, 0, .12) !important
}

.pss-location-item.big {
    border-radius: 26px !important;
    box-shadow: 0 14px 44px rgba(9, 23, 54, .22), 0 4px 14px rgba(0, 0, 0, .12), 0 0 0 1.5px rgba(185, 154, 91, .28) !important
}

.pss-location-item.big.card-visible {
    box-shadow: 0 20px 56px rgba(9, 23, 54, .22), 0 6px 18px rgba(0, 0, 0, .12), 0 0 0 1.5px rgba(185, 154, 91, .35) !important
}

.pss-location-item.big:hover {
    box-shadow: 0 28px 64px rgba(9, 23, 54, .26), 0 8px 24px rgba(0, 0, 0, .14), 0 0 0 1.5px rgba(185, 154, 91, .55) !important
}

.ph2 {
    background: linear-gradient(150deg, #fefcf3 0%, #fdf3cc 25%, #fbe8a0 52%, #f6d870 78%, #f0ca50 100%) !important
}

.ph2::before {
    background: radial-gradient(ellipse 80% 70% at 50% 30%, rgba(255, 220, 80, .30) 0%, rgba(240, 180, 40, .12) 50%, transparent 75%) !important
}

.ph2-eyebrow {
    background: rgba(120, 80, 0, .10) !important;
    border-color: rgba(160, 110, 0, .28) !important;
    color: #7a5200 !important
}

.ph2-eyebrow i {
    color: #c88000 !important
}

.ph2-title {
    color: var(--primary) !important
}

.ph2-title span {
    color: #8b5e00 !important
}

.ph2-arrow {
    background: rgba(9, 23, 54, .85) !important;
    border-color: transparent !important;
    color: var(--accent) !important
}

.ph2-arrow:hover {
    background: var(--primary) !important
}

.ph2-filter.active {
    background: var(--primary) !important;
    border-color: var(--primary) !important
}

.ph2-counter {
    color: rgba(9, 23, 54, .40) !important
}

.ph2-dot.active {
    background: var(--primary) !important
}

.pgc-btn-primary {
    background: linear-gradient(135deg, #091736 0%, #122155 100%) !important;
    box-shadow: 0 5px 18px rgba(9, 23, 54, .32), 0 0 0 1px rgba(185, 154, 91, .20) !important
}

.pgc-btn-primary:hover {
    background: linear-gradient(135deg, #122155 0%, #0d1c44 100%) !important;
    box-shadow: 0 8px 28px rgba(9, 23, 54, .45), 0 0 0 1px rgba(185, 154, 91, .40) !important
}

.pgc-btn-primary::after {
    background: linear-gradient(90deg, transparent, rgba(185, 154, 91, .20), transparent) !important
}

.pgc-price-save {
    background: rgba(185, 154, 91, .12) !important;
    color: #8b6914 !important;
    border-color: rgba(185, 154, 91, .28) !important
}

.pgc-progress-fill {
    background: linear-gradient(90deg, #091736, var(--accent)) !important
}

.pgc-progress-label .right {
    color: var(--accent) !important
}

.promo-cta-hard {
    background: linear-gradient(135deg, #091736 0%, #0f2257 60%, #091736 100%) !important
}

.promo-cta-hard::before {
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(185, 154, 91, .08) 0%, transparent 70%) !important
}

.btn-cta-white {
    color: var(--primary) !important
}

.btn-cta-white:hover {
    box-shadow: 0 12px 32px rgba(9, 23, 54, .20) !important
}

.pss-viewport {
    overflow-x: clip !important;
    overflow-y: visible !important
}

.pss-track {
    padding-top: 72px !important;
    margin-top: -72px !important;
    min-height: 582px;
    align-items: flex-end !important
}

.pss-location-item.big {
    margin-top: 0 !important
}

.pss-location-item.big.card-visible {
    transform: translateY(-48px) scale(1) !important
}

.pss-location-item.big:hover {
    transform: translateY(-58px) scale(1.022) !important;
    transition: width .72s cubic-bezier(.22, .61, .36, 1), height .72s cubic-bezier(.22, .61, .36, 1), transform .35s cubic-bezier(.25, .46, .45, .94), box-shadow .35s ease, border-color .35s ease !important
}

.pss-location-item:not(.big):hover {
    transform: translateY(-10px) scale(1.022) !important;
    transition: width .72s cubic-bezier(.22, .61, .36, 1), height .72s cubic-bezier(.22, .61, .36, 1), transform .35s cubic-bezier(.25, .46, .45, .94), box-shadow .35s ease, border-color .35s ease !important
}

.pss-location-item {
    transition: width .72s cubic-bezier(.22, .61, .36, 1), height .72s cubic-bezier(.22, .61, .36, 1), transform .40s cubic-bezier(.25, .46, .45, .94), box-shadow .40s ease, border-color .40s ease, opacity .55s ease !important
}

.pss-section .pss-inner {
    display: grid !important;
    grid-template-columns: 1fr 3fr !important;
    align-items: stretch !important
}

.pss-section .pss-left {
    flex: unset !important;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.fp-layout {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 48px;
    align-items: start
}

.fp-sidebar {
    position: sticky;
    top: 100px
}

.fp-sidebar-inner {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 36px 26px;
    border: 1px solid rgba(185, 154, 91, .20)
}

.fp-sidebar-eyebrow {
    font-size: .64rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 8px;
    font-weight: 600
}

.fp-sidebar-title {
    font-size: 1.28rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.38;
    margin-bottom: 26px
}

.fp-sidebar-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 26px
}

.fp-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 16px 10px;
    border: 1px solid rgba(185, 154, 91, .14)
}

.fp-stat-num {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px
}

.fp-stat-label {
    font-size: .60rem;
    color: var(--text-light);
    letter-spacing: .03em;
    line-height: 1.4;
    text-align: center
}

.fp-sidebar-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .73rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: .04em;
    border-bottom: 1px solid rgba(9, 23, 54, .22);
    padding-bottom: 2px;
    transition: color .25s, border-color .25s
}

.fp-sidebar-link:hover {
    color: var(--accent);
    border-color: var(--accent)
}

.blog-layout {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 48px;
    align-items: start
}

.blog-sidebar {
    position: sticky;
    top: 100px
}

.blog-sidebar-inner {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 1px solid rgba(185, 154, 91, .20)
}

.blog-sidebar-heading {
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 14px;
    display: block
}

.blog-sidebar-cats {
    list-style: none;
    padding: 0;
    margin: 0 0 22px
}

.blog-sidebar-cats li {
    border-bottom: 1px solid rgba(185, 154, 91, .12)
}

.blog-sidebar-cats li:last-child {
    border-bottom: none
}

.blog-sidebar-cats a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    font-size: .80rem;
    color: var(--text);
    text-decoration: none;
    transition: color .2s
}

.blog-sidebar-cats a::after {
    content: '→';
    font-size: .68rem;
    color: var(--accent);
    opacity: 0;
    transition: opacity .2s
}

.blog-sidebar-cats a:hover {
    color: var(--accent)
}

.blog-sidebar-cats a:hover::after {
    opacity: 1
}

.blog-sidebar-divider {
    height: 1px;
    background: rgba(185, 154, 91, .18);
    margin: 18px 0
}

.blog-sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px
}

.bst-tag {
    background: rgba(185, 154, 91, .10);
    color: var(--primary);
    border: 1px solid rgba(185, 154, 91, .25);
    border-radius: var(--radius-pill);
    font-size: .60rem;
    font-weight: 600;
    padding: 4px 11px;
    text-decoration: none;
    letter-spacing: .04em;
    transition: background .2s, color .2s
}

.bst-tag:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent)
}

.join-inner-layout {
    display: grid;
    grid-template-columns: 1fr 3fr;
    align-items: center;
    padding: 0;
    gap: 0
}

.join-header-col {
    padding: 52px 48px 52px 0;
    border-right: 1px solid rgba(185, 154, 91, .22);
    text-align: left
}

.join-header-col .join-header-eyebrow {
    font-family: 'Noto Sans Thai', 'Noto Sans', sans-serif;
    font-size: .68rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(160, 120, 50, .75);
    display: block;
    margin-bottom: 12px
}

.join-header-col h3 {
    font-family: 'Noto Sans Thai', 'Noto Sans', sans-serif;
    font-size: 1.65rem;
    font-weight: 400;
    color: #0d1c3e;
    letter-spacing: .04em;
    line-height: 1.45;
    margin: 0
}

.join-inner-layout>.join-grid {
    padding-left: 48px;
    border-top: none
}

@media (max-width:1024px) {

    .fp-layout,
    .blog-layout {
        grid-template-columns: 1fr
    }

    .fp-sidebar,
    .blog-sidebar {
        position: static
    }

    .join-inner-layout {
        grid-template-columns: 1fr
    }

    .join-header-col {
        border-right: none;
        border-bottom: 1px solid rgba(185, 154, 91, .20);
        padding: 28px 0 28px;
        text-align: center
    }

    .join-inner-layout>.join-grid {
        padding-left: 0
    }

    .pss-section .pss-inner {
        grid-template-columns: 1fr !important
    }
}

@media (max-width:768px) {
    .pss-section .pss-inner {
        grid-template-columns: 1fr !important
    }

    .fp-sidebar-inner {
        padding: 22px 20px
    }

    .fp-sidebar-stats {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px
    }

    .fp-stat {
        text-align: center;
        border-bottom: none;
        padding-bottom: 0
    }

    .fp-stat-num {
        font-size: 1.4rem
    }

    .fp-stat-label {
        font-size: .64rem
    }

    .blog-sidebar-inner {
        padding: 18px 16px
    }

    .blog-sidebar-cats {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        list-style: none;
        padding: 0;
        margin: 0
    }

    .blog-sidebar-cats li a {
        display: inline-block;
        padding: 5px 14px;
        background: rgba(185, 154, 91, .08);
        border: 1px solid rgba(185, 154, 91, .20);
        border-radius: 100px;
        font-size: .76rem;
        color: rgba(9, 23, 54, .65);
        text-decoration: none
    }

    .blog-sidebar-tags {
        margin-top: 12px
    }

    .join-header-col {
        padding: 22px 0 20px
    }

    .join-header-col h3 {
        font-size: 1.35rem
    }

    .join-grid {
        grid-template-columns: 1fr !important;
        gap: 14px
    }
}

@media (max-width:480px) {
    .fp-sidebar-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px
    }

    .fp-sidebar-inner {
        padding: 18px 16px
    }

    .bst-tag {
        font-size: .70rem;
        padding: 4px 10px
    }

    .join-card {
        padding: 20px 18px
    }

    .join-card-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem
    }

    .promo-gallery-grid {
        height: 240px
    }

    .blog-layout .blog-sidebar {
        display: grid;
        grid-template-columns: 1fr
    }
}

.promo-preview-section .about-preview {
    grid-template-columns: 3fr 2fr !important;
    gap: 60px;
    align-items: start
}

.promo-gallery {
    width: 100%;
    position: relative
}

.promo-gallery-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 8px;
    border-radius: 20px;
    overflow: hidden;
    height: 520px
}

.pgal-col-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%
}

.pgal-col-right .pgal-item {
    flex: 1;
    border-radius: 0
}

.pgal-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer
}

.pgal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .70s cubic-bezier(.25, .46, .45, .94)
}

.pgal-item:hover img {
    transform: scale(1.07)
}

.pgal-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(9, 23, 54, .78) 0%, transparent 100%);
    padding: 18px 14px 12px;
    opacity: 0;
    transition: opacity .32s ease;
    z-index: 2
}

.pgal-item:hover .pgal-overlay {
    opacity: 1
}

.pgal-label {
    color: rgba(255, 255, 255, .92);
    font-size: .70rem;
    font-weight: 600;
    letter-spacing: .06em;
    display: flex;
    align-items: center;
    gap: 5px
}

.pgal-label i {
    font-size: .62rem;
    color: var(--accent)
}

.pgal-item--main {
    height: 100%;
    position: relative
}

.pgal-item--main .pgal-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(9, 23, 54, .82) 0%, rgba(9, 23, 54, .20) 40%, transparent 65%);
    padding: 22px 18px 160px
}

.pgal-item--main .pgal-label {
    font-size: .76rem
}

.pgal-item--main .pp-badge {
    bottom: 18px;
    right: 18px;
    left: auto;
    top: auto
}

@media (max-width:1024px) {
    .promo-preview-section .about-preview {
        grid-template-columns: 1fr !important
    }

    .promo-gallery-grid {
        height: 380px
    }
}

@media (max-width:600px) {
    .promo-gallery-grid {
        height: 300px
    }
}

@media (max-width:1024px) {
    .project-overview {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .project-highlights {
        grid-template-columns: repeat(4, 1fr)
    }

    .house-types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px
    }

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

    .location-map-placeholder {
        height: 300px
    }

    .service-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px
    }
}

@media (max-width:768px) {
    .page-header {
        height: 48vh;
        min-height: 320px
    }

    .page-header-content h1 {
        font-size: clamp(1.8rem, 6vw, 2.6rem)
    }

    .page-header-content .section-subtitle {
        font-size: .62rem;
        letter-spacing: .18em
    }

    .breadcrumb {
        font-size: .72rem
    }

    .project-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: 260px auto;
        gap: 8px
    }

    .project-gallery-main {
        grid-row: auto
    }

    .project-gallery-side {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px
    }

    .project-gallery-thumb {
        height: 140px
    }

    .project-gallery-thumb img {
        height: 100%;
        object-fit: cover
    }

    .project-overview {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .project-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 0
    }

    .project-highlight-item {
        padding: 20px 14px
    }

    .project-highlight-number {
        font-size: 1.6rem
    }

    .project-highlight-label {
        font-size: .62rem;
        letter-spacing: 1.5px
    }

    .feature-list li {
        font-size: .88rem;
        padding: 8px 0 8px 28px
    }

    .feature-list li::before {
        left: 0
    }

    .house-types-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100% !important
    }

    .house-type-card img {
        aspect-ratio: 1/1;
        height: auto
    }

    .house-type-info {
        padding: 20px
    }

    .house-type-info h4 {
        font-size: 1.05rem
    }

    .type-badge {
        font-size: .64rem;
        padding: 4px 12px
    }

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

    .location-map-placeholder {
        height: 240px;
        border-radius: var(--radius-md)
    }

    .location-tags {
        gap: 8px
    }

    .location-tag {
        font-size: .74rem;
        padding: 6px 14px
    }

    .service-cards-grid {
        grid-template-columns: 1fr;
        gap: 14px
    }

    .service-card {
        padding: 24px 20px
    }

    .cta-banner-light {
        padding: 60px 0
    }

    .cta-banner-light h2 {
        font-size: clamp(1.4rem, 5vw, 2.2rem)
    }

    .cta-banner-light p {
        font-size: .88rem
    }

    .cta-banner-light .btn {
        padding: 13px 28px;
        font-size: .70rem
    }

    .section {
        padding: 50px 0
    }

    .section-alt {
        padding: 50px 0
    }

    .mb-70 {
        margin-bottom: 40px !important
    }

    .section-title {
        font-size: clamp(1.5rem, 5vw, 2.2rem)
    }

    .gv-calc-section {
        padding: 50px 0;
        scroll-margin-top: 100px
    }

    .gv-container {
        padding: 0 16px
    }

    .gv-calc-wrap {
        grid-template-columns: 1fr !important;
        gap: 24px
    }

    .gv-calc-title {
        font-size: 1.5rem
    }

    .gv-calc-tabs {
        flex-direction: row
    }

    .gv-calc-tab {
        font-size: .78rem;
        padding: 10px 16px
    }

    .gv-calc-input {
        font-size: .95rem;
        padding: 12px 14px
    }

    .gv-calc-label {
        font-size: .82rem
    }

    .gv-calc-row {
        grid-template-columns: 1fr;
        gap: 14px
    }

    .gv-bank-select-wrap {
        padding: 10px 12px
    }

    .gv-bank-logo {
        width: 32px;
        height: 32px
    }

    .gv-calc-btns {
        flex-direction: row;
        gap: 10px
    }

    .gv-calc-go,
    .gv-calc-reset {
        padding: 12px 20px;
        font-size: .85rem;
        flex: 1
    }

    .gv-calc-result {
        padding: 24px 18px;
        min-height: auto
    }

    .gv-result-empty {
        font-size: .88rem
    }

    .gv-result-highlight {
        padding: 18px 16px;
        border-radius: 14px
    }

    .gv-result-highlight-val {
        font-size: 1.4rem
    }

    .gv-result-row {
        padding: 10px 0
    }

    .gv-result-row-label {
        font-size: .78rem
    }

    .gv-result-row-val {
        font-size: 1rem
    }

    .gv-bank-card {
        padding: 10px 12px;
        gap: 10px
    }

    .gv-bank-card-logo {
        width: 36px;
        height: 36px;
        border-radius: 6px
    }

    .gv-bank-card-name {
        font-size: .82rem
    }

    .gv-bank-card-rate {
        font-size: .70rem
    }

    .gv-result-note {
        font-size: .68rem
    }

    .footer {
        padding: 50px 0 0
    }

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

    .footer-brand p {
        font-size: .85rem
    }

    .footer-links li a {
        font-size: .85rem;
        padding: 5px 0
    }

    .footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
        padding: 20px 0
    }

    .footer-bottom a {
        font-size: .75rem
    }

    .footer-seo-kw {
        font-size: .65rem
    }
}

@media (max-width:480px) {
    .page-header {
        height: 40vh;
        min-height: 260px
    }

    .page-header-content h1 {
        font-size: clamp(1.5rem, 7vw, 2rem)
    }

    .page-header-content .section-subtitle {
        font-size: .56rem;
        letter-spacing: .14em
    }

    .project-gallery {
        grid-template-rows: 200px auto
    }

    .project-gallery-side {
        grid-template-columns: 1fr 1fr;
        gap: 6px
    }

    .project-gallery-thumb {
        height: 110px
    }

    .project-highlights {
        grid-template-columns: 1fr 1fr
    }

    .project-highlight-item {
        padding: 16px 10px
    }

    .project-highlight-number {
        font-size: 1.35rem
    }

    .house-type-card img {
        aspect-ratio: 1/1;
        height: auto
    }

    .house-type-info {
        padding: 16px
    }

    .location-map-placeholder {
        height: 200px
    }

    .section {
        padding: 36px 0
    }

    .section-alt {
        padding: 36px 0
    }

    .section-title {
        font-size: clamp(1.3rem, 6vw, 1.8rem)
    }

    .mb-70 {
        margin-bottom: 30px !important
    }

    .project-overview .btn,
    .cta-banner-light .btn {
        width: 100%;
        text-align: center;
        justify-content: center
    }

    .gv-calc-section {
        padding: 36px 0;
        scroll-margin-top: 80px
    }

    .gv-calc-title {
        font-size: 1.3rem
    }

    .gv-calc-tab {
        font-size: .72rem;
        padding: 9px 12px
    }

    .gv-result-highlight-val {
        font-size: 1.25rem
    }

    .gv-bank-card {
        flex-direction: column;
        align-items: flex-start
    }

    .footer-grid {
        gap: 24px
    }

    .footer h4 {
        font-size: 1rem;
        margin-bottom: 12px
    }
}

@media (max-width:380px) {
    .page-header {
        height: 36vh;
        min-height: 220px
    }

    .container {
        padding: 0 12px
    }

    .project-gallery-thumb {
        height: 90px
    }

    .project-highlights {
        gap: 0
    }

    .project-highlight-number {
        font-size: 1.2rem
    }

    .project-highlight-label {
        font-size: .56rem
    }

    .gv-calc-input {
        font-size: .88rem;
        padding: 10px 12px
    }

    .gv-calc-tab {
        font-size: .66rem;
        padding: 8px 10px
    }
}

@media (max-width:860px) {
    .pss-section {
        overflow: hidden !important
    }

    .pss-inner {
        flex-direction: column !important;
        padding: 56px 20px 24px !important;
        gap: 28px !important;
        align-items: stretch !important;
        max-width: 100% !important;
        box-sizing: border-box !important
    }

    .pss-left {
        flex: none !important;
        width: 100% !important;
        max-width: 100% !important
    }

    .pss-right {
        width: 100% !important;
        min-width: 0 !important;
        overflow: hidden !important
    }

    .pss-viewport {
        overflow: hidden !important;
        width: 100% !important
    }

    .pss-track {
        gap: 12px !important;
        min-height: 390px !important;
        padding-top: 32px !important;
        margin-top: 0 !important;
        align-items: flex-end !important
    }

    .pss-location-item {
        width: 180px !important;
        height: 320px !important;
        border-radius: 12px !important;
        flex-shrink: 0 !important
    }

    .pss-location-item.big {
        width: 240px !important;
        height: 360px !important
    }

    .pss-location-item.big.card-visible {
        transform: translateY(-24px) scale(1) !important
    }

    .pss-controls.pss-controls--inline {
        margin-top: 18px !important
    }

    .pss-headline {
        font-size: 1.8rem !important;
        line-height: 1.3 !important
    }

    .pss-body {
        font-size: .84rem !important
    }
}

@media (max-width:640px) {
    .pss-inner {
        padding: 44px 16px 20px !important;
        gap: 22px !important
    }

    .pss-track {
        min-height: 344px !important;
        padding-top: 24px !important
    }

    .pss-location-item {
        width: 160px !important;
        height: 280px !important;
        border-radius: 10px !important
    }

    .pss-location-item.big {
        width: 210px !important;
        height: 320px !important
    }

    .pss-location-item.big.card-visible {
        transform: translateY(-16px) scale(1) !important
    }

    .pss-item-title {
        font-size: .75rem !important;
        line-height: 1.3 !important
    }

    .pss-item-text {
        padding: 12px !important
    }

    .pss-item-text p {
        font-size: .65rem !important;
        display: none !important
    }

    .pss-headline {
        font-size: 1.5rem !important
    }

    .pss-body {
        font-size: .78rem !important;
        margin-bottom: 14px !important
    }

    .pss-cta {
        font-size: .70rem !important;
        padding: 9px 16px !important
    }

    .pss-controls {
        padding: 10px 16px 28px !important;
        gap: 10px !important
    }

    .pss-arrow {
        width: 36px !important;
        height: 36px !important;
        font-size: .70rem !important
    }

    .pss-counter {
        font-size: .75rem !important
    }

    .pss-left-progress {
        max-width: 120px !important
    }
}

@media (max-width:480px) {
    .pss-inner {
        padding: 36px 14px 16px !important;
        gap: 18px !important
    }

    .pss-track {
        min-height: 300px !important;
        padding-top: 20px !important
    }

    .pss-location-item {
        width: 140px !important;
        height: 240px !important
    }

    .pss-location-item.big {
        width: 185px !important;
        height: 280px !important
    }

    .pss-headline {
        font-size: 1.3rem !important
    }

    .pss-controls {
        padding: 8px 14px 24px !important
    }

    .pss-arrow {
        width: 32px !important;
        height: 32px !important
    }
}

@media (max-width:380px) {
    .pss-inner {
        padding: 30px 12px 14px !important
    }

    .pss-location-item {
        width: 125px !important;
        height: 210px !important
    }

    .pss-location-item.big {
        width: 165px !important;
        height: 250px !important
    }

    .pss-item-title {
        font-size: .68rem !important
    }

    .pss-headline {
        font-size: 1.15rem !important
    }
}

.floating-social-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(12px);
    z-index: 997;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 13px 9px;
    background: rgba(10, 7, 2, .44);
    backdrop-filter: blur(20px) saturate(155%) brightness(.78);
    -webkit-backdrop-filter: blur(20px) saturate(155%) brightness(.78);
    border: 1px solid rgba(185, 154, 91, .28);
    border-right: none;
    border-radius: 14px 0 0 14px;
    box-shadow: -3px 0 22px rgba(0, 0, 0, .20), inset 1px 0 0 rgba(185, 154, 91, .12);
    transition: opacity .5s ease, transform .5s ease;
    opacity: 0;
    pointer-events: none
}

.floating-social-sidebar.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0)
}

.floating-social-sidebar a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(210, 178, 110, .68);
    font-size: .86rem;
    border-radius: 50%;
    text-decoration: none;
    transition: color .25s ease, background .25s ease, transform .25s ease
}

.floating-social-sidebar a.fss-phone-link {
    color: rgba(240, 208, 120, .88);
    font-size: .80rem
}

.floating-social-sidebar a:hover {
    color: #f5e090;
    background: rgba(185, 154, 91, .20);
    transform: scale(1.18) translateX(-2px)
}

.floating-social-sidebar .fss-divider {
    width: 20px;
    height: 1px;
    background: rgba(185, 154, 91, .25);
    margin: 5px 0
}

.native-checkbox {
    -webkit-appearance: auto !important;
    appearance: auto !important;
    accent-color: #b99a5b;
    width: 18px !important;
    height: 18px;
    min-width: 18px;
    cursor: pointer;
    margin-top: 3px
}