@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap'); :root {
    --navy: #071321;
    --navy2: #0d2034;
    --gold: #d9a441;
    --gold2: #f2c766;
    --cream: #f5f1e9;
    --ink: #14202c;
    --muted: #6f7882;
    --line: rgba(20,32,44,.12);
    --white: #fff;
    --shadow: 0 25px 70px rgba(5,17,29,.12)
}

/* Keep project photography bright and free from dark image overlays. */
.hero-grid,
.hero-overlay,
.gallery-item::after,
.service-visual::after,
.video-shade,
.vision-overlay {
    display: none !important;
}

.gallery-item:hover img {
    opacity: 1 !important;
}

/* Dynamic media library: gallery filters and project videos */
.gallery-filters{display:flex;flex-wrap:wrap;gap:10px;margin:-20px 0 34px}.gallery-filter{border:1px solid rgba(7,19,33,.15);background:transparent;color:var(--ink);padding:9px 17px;border-radius:999px;font-size:.82rem;font-weight:700;cursor:pointer;transition:.25s}.gallery-filter:hover,.gallery-filter.active{background:var(--navy);border-color:var(--navy);color:#fff;transform:translateY(-2px)}.gallery-item.filtered-out{display:none}.gallery-item.filter-pop{animation:galleryPop .5s both}.gallery-item span{display:flex!important;flex-direction:column;align-items:flex-start}.gallery-item span small{font-size:.61rem;letter-spacing:.15em;text-transform:uppercase;color:var(--gold2);margin-bottom:3px}.video-section{background:var(--navy);color:#fff;position:relative;overflow:hidden}.video-section:before{content:"";position:absolute;width:500px;height:500px;border:1px solid rgba(217,164,65,.13);border-radius:50%;right:-190px;top:-230px;box-shadow:0 0 0 65px rgba(217,164,65,.035),0 0 0 130px rgba(217,164,65,.025)}.video-section .section-head>p{color:#aab4bf}.video-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:26px}.video-card{background:#0d2034;border:1px solid rgba(255,255,255,.08);border-radius:4px;overflow:hidden;box-shadow:0 25px 60px rgba(0,0,0,.18);transition:.35s}.video-card:hover{transform:translateY(-7px);border-color:rgba(217,164,65,.35)}.video-trigger{display:block;position:relative;border:0;padding:0;background:#071321;width:100%;aspect-ratio:16/9;overflow:hidden;cursor:pointer}.video-trigger video{width:100%;height:100%;object-fit:cover;transition:transform .7s ease}.video-card:hover video{transform:scale(1.04)}.video-shade{position:absolute;inset:0;background:linear-gradient(180deg,transparent 40%,rgba(0,0,0,.5))}.video-play{position:absolute;z-index:2;left:50%;top:50%;transform:translate(-50%,-50%);display:grid;place-items:center;width:64px;height:64px;border-radius:50%;background:var(--gold);color:var(--navy);padding-left:4px;box-shadow:0 10px 35px rgba(0,0,0,.35);transition:.3s}.video-card:hover .video-play{transform:translate(-50%,-50%) scale(1.1)}.video-copy{padding:21px 23px 24px}.video-copy p{font-size:.68rem;letter-spacing:.17em;text-transform:uppercase;color:var(--gold2);font-weight:700;margin:0 0 7px}.video-copy h3{font-size:1.35rem}.video-empty{min-height:180px;border:1px dashed rgba(255,255,255,.2);display:flex;justify-content:center;align-items:center;gap:24px;color:#aab4bf}.video-empty>span{width:55px;height:55px;display:grid;place-items:center;border-radius:50%;background:var(--gold);color:var(--navy)}.video-empty h3{color:#fff;margin-bottom:4px}.video-modal{position:fixed;inset:0;z-index:10000;background:rgba(2,8,14,.94);display:none;place-items:center;padding:5vw;backdrop-filter:blur(10px)}.video-modal.show{display:grid;animation:mediaFade .25s ease}.video-modal-inner{width:min(1050px,92vw)}.video-modal video{display:block;width:100%;max-height:75vh;background:#000;box-shadow:0 35px 100px #000;border:1px solid rgba(255,255,255,.1)}.video-modal h3{color:#fff;margin-top:16px;font-size:1.2rem}.video-modal-close{position:absolute;right:25px;top:18px;border:0;background:transparent;color:#fff;font-size:43px;cursor:pointer}@keyframes galleryPop{from{opacity:0;transform:scale(.94) translateY(12px)}to{opacity:1;transform:none}}@keyframes mediaFade{from{opacity:0}to{opacity:1}}@media(max-width:760px){.gallery-filters{flex-wrap:nowrap;overflow-x:auto;margin-top:-28px;padding-bottom:7px}.gallery-filter{white-space:nowrap}.video-grid{grid-template-columns:1fr}.video-empty{padding:30px 20px;text-align:left}.video-play{width:52px;height:52px}.video-modal{padding:16px}.video-modal-close{right:12px;top:8px}}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: 'DM Sans',sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden
}

body.no-scroll {
    overflow: hidden;
    width: 100%;
}

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

button,input,textarea,select {
    font: inherit
}

.container {
    width: min(1180px,92%);
    margin: auto
}

.section {
    padding: 78px 0
}

.eyebrow {
    font-size: .73rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold2);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px
}

.eyebrow span {
    width: 30px;
    height: 1px;
    background: currentColor
}

.eyebrow.dark {
    color: #9c6e1f
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: end;
    margin-bottom: 55px
}

.section-head>div {
    max-width: 650px
}

.section-head>p {
    max-width: 380px;
    color: var(--muted)
}

h1,h2,h3,h4 {
    font-family: 'Manrope',sans-serif;
    line-height: 1.08
}

h2 {
    font-size: clamp(2.5rem,5vw,4.8rem);
    letter-spacing: -.055em
}

h2 span,h1 em {
    color: var(--gold);
    font-style: normal
}

.lead {
    font-size: 1.18rem;
    line-height: 1.8;
    color: #4d5964
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 15px 23px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .02em;
    transition: .3s;
    border: 1px solid transparent
}

.btn span {
    font-size: 1rem
}

.btn-gold {
    background: var(--gold);
    color: #101820;
    box-shadow: 0 12px 30px rgba(217,164,65,.2)
}

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

.btn-ghost {
    border-color: #fff;
    background: #fff;
    color: var(--navy)
}

.btn-ghost:hover {
    background: transparent;
    color: #fff;
    border-color: #fff
}

.btn-dark {
    background: var(--navy);
    color: #fff
}

.btn-dark:hover {
    background: #19324b;
    transform: translateY(-2px)
}

.btn.big {
    padding: 18px 30px
}

.text-link {
    font-weight: 700;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 7px
}

.preloader {
    position: fixed;
    inset: 0;
    background: var(--navy);
    color: #fff;
    z-index: 9999;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 18px;
    transition: opacity .6s,visibility .6s
}

.loaded .preloader {
    opacity: 0;
    visibility: hidden
}

.loader-logo {
    width: 190px
}

.loader-logo img {
    width: 100%;
    display: block
}

.preloader span {
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #b6c1cb
}

.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 9px 4%;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: .35s;
    color: #532727
}

.site-header.scrolled {
    background: rgba(7,19,33,.94);
    backdrop-filter: blur(16px);
    padding-top: 9px;
    padding-bottom: 9px;
    box-shadow: 0 8px 30px rgba(0,0,0,.12)
}

.brand {
    width: auto;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #fff
}

.brand img {
    width: 72px;
    height: auto;
    display: block
}

.brand-text {
    font-size: .78rem;
    letter-spacing: .12em;
    font-weight: 800;
    line-height: 1
}

.brand-text small {
    display: block;
    font-size: .38rem;
    letter-spacing: .24em;
    color: #dba63b;
    margin-top: 4px
}

.header-tools {
    margin-left: auto;
    display: flex;
    align-items: center
}

.header-wa {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    background: rgba(5,16,27,.2);
    backdrop-filter: blur(8px)
}

.header-wa:hover {
    background: #1fbf67;
    border-color: #1fbf67
}

.wa-icon {
    font-size: 1.05rem;
    line-height: 1
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: .9rem;
    font-weight: 700
}

.nav>a {
    opacity: .9;
    position: relative
}

.nav>a:not(.nav-cta):after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: .25s
}

.nav>a:not(.nav-cta):hover:after {
    width: 100%
}

.nav-cta {
    background: var(--gold);
    color: #111;
    padding: 11px 17px;
    border-radius: 999px
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    width: 40px;
    z-index: 1001;
    position: relative
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: #fd2121;
    margin: 6px 0;
    transition: .25s
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg)
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg)
}

.nav-overlay {
    display: none
}

.hero {
    height: min(100svh,720px);
    min-height: 600px;
    position: relative;
    overflow: hidden;
    background: var(--navy);
    color: #fff
}

.hero-slides,.hero-slide,.hero-overlay,.hero-grid {
    position: absolute;
    inset: 0
}

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

.hero-slide.active {
    opacity: 1
}

.hero-overlay {
    background: linear-gradient(90deg,rgba(3,12,22,.88) 0%,rgba(3,12,22,.62) 48%,rgba(3,12,22,.22) 100%)
}

.hero-grid {
    background-image: linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(90deg,#000,transparent 75%);
    opacity: .35
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    width: min(1180px,92%);
    margin: auto;
    padding-top: clamp(175px,22vh,205px);
    padding-bottom: 70px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start
}

.hero-content h1 {
    font-size: clamp(2.8rem,5.1vw,5.4rem);
    line-height: .98;
    max-width: 820px;
    letter-spacing: -.055em;
    margin: 17px 0
}

.hero-content h1 em {
    color: var(--gold);
    font-style: normal
}

.hero-content h1 span {
    display: inline
}

.hero-copy {
    max-width: 650px;
    font-size: 1rem;
    line-height: 1.65;
    color: #d8e0e6
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 22px
}

.hero-meta {
    display: flex;
    gap: 50px;
    margin-top: 34px
}

.hero-meta div {
    display: flex;
    flex-direction: column
}

.hero-meta strong {
    font-family: 'Manrope';
    font-size: 1.35rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,.35)
}

.hero-meta span {
    font-size: .74rem;
    color: #e7ecf1;
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-top: 2px
}

.hero-controls {
    position: absolute;
    z-index: 4;
    right: 4%;
    bottom: 58px;
    display: flex;
    align-items: center;
    gap: 10px
}

.hero-arrow {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(5,16,27,.28);
    backdrop-filter: blur(8px);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: .25s
}

.hero-arrow:hover {
    background: var(--gold);
    color: #111;
    border-color: var(--gold)
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 7px
}

.hero-dot {
    width: 7px;
    height: 7px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.45);
    padding: 0;
    cursor: pointer;
    transition: .25s
}

.hero-dot.active {
    width: 24px;
    border-radius: 10px;
    background: var(--gold)
}

.hero-bottom {
    position: absolute;
    z-index: 3;
    bottom: 28px;
    left: 4%;
    right: 4%;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: .68rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #c5d0d8
}

.scroll-line {
    height: 1px;
    background: rgba(255,255,255,.35);
    flex: 1;
    max-width: 130px
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    background: var(--navy);
    color: #fff;
    border-top: 1px solid rgba(255,255,255,.08)
}

.trust-item {
    padding: 25px 4vw;
    border-right: 1px solid rgba(255,255,255,.08);
    display: flex;
    gap: 18px;
    align-items: center
}

.trust-item b {
    color: var(--gold);
    font-size: .7rem
}

.trust-item span {
    font-size: .76rem;
    color: #c5d0d8
}

.about-section {
    background: var(--cream)
}

.two-col {
    display: grid;
    grid-template-columns: 120px 1fr 390px;
    gap: 50px;
    align-items: start
}

.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    transform: rotate(-90deg);
    transform-origin: top left;
    margin-top: 80px;
    white-space: nowrap;
    color: #69747f;
    font-size: 16px;
    letter-spacing: .18em
}

.section-label span {
    color: var(--gold);
    font-weight: 800
}

.section-label div {
    width: 35px;
    height: 1px;
    background: #b4bac0
}

.about-copy h2 {
    margin: 14px 0 25px
}

.about-copy>p:not(.eyebrow):not(.lead) {
    color: #5f6871;
    margin-top: 18px
}

.signature-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 32px
}

.signature-mark {
    width: 44px;
    height: 44px;
    border: 1px solid var(--gold);
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-family: serif;
    font-size: 1.4rem;
    color: #9c6e1f
}

.signature-row strong,.signature-row span {
    display: block
}

.signature-row strong {
    font-size: .9rem
}

.signature-row span {
    font-size: 16px;
    color: var(--muted)
}

.about-image {
    position: relative;
    margin-top: 70px
}

.about-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 2px;
    display: block;
    box-shadow: var(--shadow)
}

.image-tag {
    position: absolute;
    bottom: -25px;
    left: -25px;
    background: var(--gold);
    padding: 20px 24px;
    color: #14202c
}

.image-tag strong,.image-tag span {
    display: block
}

.image-tag strong {
    font-size: .68rem;
    letter-spacing: .14em
}

.image-tag span {
    font-size: 16px;
    margin-top: 4px
}

.dark-section {
    background: var(--navy);
    color: #fff
}

.dark-section .section-head>p {
    color: #aab7c1
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1px;
    background: rgba(255,255,255,.12)
}

.service-card {
    background: var(--navy);
    padding: 35px 28px;
    min-height: 390px;
    position: relative;
    transition: .3s
}

.service-card:hover {
    background: #10263c;
    transform: translateY(-5px)
}

.service-no {
    position: absolute;
    right: 25px;
    top: 30px;
    color: #6f8190;
    font-size: .68rem
}

.service-icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,.2);
    display: grid;
    place-items: center;
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 70px
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px
}

.service-card p {
    color: #9eacb6;
    font-size: .88rem;
    line-height: 1.8
}

.service-card a {
    display: inline-flex;
    gap: 8px;
    margin-top: 28px;
    color: var(--gold2);
    font-size: .76rem;
    font-weight: 700
}

.project-section {
    background: #f8f6f0
}

.project-feature {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    background: #fff;
    box-shadow: var(--shadow)
}

.project-image {
    height: 590px;
    position: relative;
    overflow: hidden
}

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

.project-badge {
    position: absolute;
    top: 22px;
    left: 22px;
    background: var(--navy);
    color: #fff;
    padding: 10px 13px;
    font-size: .62rem;
    letter-spacing: .16em
}

.project-info {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center
}

.project-info h3 {
    font-size: 2.3rem;
    margin: 12px 0 20px
}

.project-info>p:not(.eyebrow) {
    color: #65717b
}

.project-facts {
    display: grid;
    gap: 12px;
    margin: 30px 0
}

.project-facts span {
    font-size: 16px;
    color: #4d5964
}

.project-facts b {
    color: var(--gold);
    margin-right: 10px
}

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

.mini-project {
    background: #fff
}

.mini-project img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block
}

.mini-project div {
    padding: 18px 20px 22px
}

.mini-project span {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: #9c6e1f
}

.mini-project h4 {
    font-size: 1rem;
    margin-top: 5px
}

.why-section {
    background: var(--cream)
}

.why-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: center
}

.why-image {
    position: relative
}

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

.floating-number {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope';
    font-size: 3.1rem;
    font-weight: 800
}

.floating-number span {
    font-size: .55rem;
    line-height: 1.35;
    text-align: center;
    letter-spacing: .16em
}

.why-copy .eyebrow {
    font-size: 1.05rem
}

.why-copy h2 {
    margin: 12px 0 22px
}

.why-list {
    margin-top: 38px;
    border-top: 1px solid var(--line)
}

.why-list>div {
    display: grid;
    grid-template-columns: 55px 1fr;
    padding: 19px 0;
    border-bottom: 1px solid var(--line)
}

.why-list b {
    color: var(--gold);
    font-size: .68rem
}

.why-list strong,.why-list small {
    display: block
}

.why-list strong {
    font-size: .9rem
}

.why-list small {
    font-size: 16px;
    color: var(--muted);
    margin-top: 4px
}

.journey-section {
    background: #fff
}

.timeline {
    border-top: 1px solid var(--line)
}

.timeline-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    padding: 38px 0;
    border-bottom: 1px solid var(--line)
}

.timeline-item>span {
    font-family: 'Manrope';
    font-size: 2rem;
    color: var(--gold);
    font-weight: 800
}

.timeline-item h3 {
    font-size: 1.4rem;
    margin-bottom: 8px
}

.timeline-item p {
    max-width: 650px;
    color: var(--muted)
}

.vision-section {
    position: relative;
    min-height: 560px;
    color: #fff;
    display: grid;
    place-items: center;
    overflow: hidden
}

.vision-bg {
    position: absolute;
    inset: 0;
    background: url('../images/night-residence.jpg') center/cover
}

.vision-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(5,16,27,.96),rgba(5,16,27,.78))
}

.vision-content {
    position: relative;
    z-index: 2;
    padding-top: 25px;
    padding-bottom: 25px
}

.vision-heading {
    max-width: 760px
}

.vision-heading h2 {
    margin: 12px 0 15px
}

.vision-heading>p:last-child {
    color: #bfcad2;
    max-width: 650px
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 30px
}

.vision-card {
    padding: 28px 30px 32px;
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.055);
    backdrop-filter: blur(7px);
    min-height: 250px;
    position: relative
}

.vision-card:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 55px;
    height: 3px;
    background: var(--gold)
}

.vision-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px
}

.vision-icon {
    width: 38px;
    height: 38px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gold2);
    font-size: .65rem;
    font-weight: 800
}

.vision-label {
    font-size: .65rem;
    letter-spacing: .2em;
    color: var(--gold2);
    font-weight: 800
}

.vision-card h3 {
    font-size: 1.45rem;
    line-height: 1.25;
    max-width: 470px
}

.vision-card p {
    color: #aebbc5;
    font-size: .86rem;
    line-height: 1.75;
    margin-top: 13px;
    max-width: 500px
}

.gallery-section {
    background: #f8f6f0
}

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

.gallery-item {
    border: 0;
    background: #ddd;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    text-align: left;
    aspect-ratio: 4/3;
    border-radius: 3px;
    box-shadow: 0 10px 30px rgba(5,17,29,.08)
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: opacity .25s
}

.gallery-item:hover img {
    opacity: .9
}

.gallery-item:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 45%,rgba(0,0,0,.72));
    opacity: .75
}

.gallery-item span {
    position: absolute;
    z-index: 2;
    left: 17px;
    bottom: 14px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .03em
}

.g1,.g2,.g3,.g4,.g5,.g6,.g7,.g8,.g9,.g10,.g11,.g12,.g13,.g14,.g15,.g16 {
    grid-column: span 1;
    grid-row: span 1
}

.faq-section {
    background: #fff
}

.faq-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px
}

.faq-grid h2 {
    margin: 12px 0 22px
}

.faq-grid .btn {
    margin-top: 28px
}

.faq-list {
    border-top: 1px solid var(--line)
}

details {
    border-bottom: 1px solid var(--line);
    padding: 22px 0
}

summary {
    list-style: none;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    gap: 20px
}

summary::-webkit-details-marker {
    display: none
}

summary span {
    color: var(--gold);
    font-size: 1.4rem;
    transition: .25s
}

details[open] summary span {
    transform: rotate(45deg)
}

details p {
    color: var(--muted);
    font-size: .88rem;
    max-width: 650px;
    padding-top: 13px
}

.cta-band {
    background: var(--navy);
    color: #fff;
    padding: 75px 0
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px
}

.cta-inner h2 {
    font-size: clamp(2.7rem,5vw,5rem);
    margin-top: 10px
}

.contact-section {
    background: #fff;
    padding: 110px 0
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px
}

.contact-info h2 {
    margin: 12px 0 22px
}

.contact-info>p:not(.eyebrow) {
    color: var(--muted);
    max-width: 450px
}

.contact-list {
    margin-top: 40px;
    border-top: 1px solid var(--line)
}

.contact-list>a,.contact-list>div {
    display: block;
    padding: 18px 0;
    border-bottom: 1px solid var(--line)
}

.contact-list small {
    display: block;
    font-size: 16px;
    letter-spacing: .18em;
    color: #9c6e1f;
    font-weight: 700
}

.contact-list strong {
    display: block;
    margin-top: 4px;
    font-size: .95rem
}

.instagram-link {
    display: inline-block;
    margin-top: 25px;
    font-size: .8rem;
    font-weight: 700;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 6px
}

.contact-form {
    background: var(--cream);
    padding: 40px;
    box-shadow: var(--shadow)
}

.form-title {
    margin-bottom: 25px
}

.form-title span,.form-title strong {
    display: block
}

.form-title span {
    font-size: .63rem;
    color: #9c6e1f;
    letter-spacing: .2em;
    font-weight: 700
}

.form-title strong {
    font-family: 'Manrope';
    font-size: 1.6rem;
    margin-top: 5px
}

label {
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-top: 16px
}

input,textarea,select {
    width: 100%;
    border: 1px solid #d8d4cc;
    background: #fff;
    padding: 14px 15px;
    margin-top: 7px;
    outline: none;
    border-radius: 2px;
    color: var(--ink)
}

input:focus,textarea:focus,select:focus {
    border-color: var(--gold)
}

.contact-form .btn {
    margin-top: 20px;
    border: 0;
    cursor: pointer
}

.form-success {
    font-size: .75rem;
    color: #28733f;
    margin-top: 15px;
    font-weight: 700
}

.footer {
    background: #050e17;
    color: #fff
}

.footer-top {
    padding: 70px 0 55px;
    display: grid;
    grid-template-columns: 1.5fr .7fr .8fr 1fr;
    gap: 50px
}

.footer-logo {
    width: 112px;
    display: block
}

.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px
}

.social-links a {
    display: inline-flex!important;
    align-items: center;
    gap: 6px;
    margin: 0!important;
    border: 1px solid rgba(255,255,255,.12);
    padding: 8px 11px;
    border-radius: 999px
}

.social-links a span {
    color: var(--gold);
    font-size: 1rem
}

.footer-top>div>p {
    color: #84939f;
    font-size: .78rem;
    margin-top: 16px
}

.footer h4 {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--gold);
    margin-bottom: 18px
}

.footer-top a {
    display: block;
    color: #b4c0c8;
    font-size: .78rem;
    margin: 10px 0
}

.footer-top a:hover {
    color: #fff
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    justify-content: space-between;
    color: #687681;
    font-size: .65rem
}

.floating-wa,.floating-booking {
    position: fixed;
    right: 22px;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
    cursor: pointer;
    transition: .25s;
    z-index: 90
}

.floating-wa {
    bottom: 22px;
    background: #1fbf67;
    color: #fff
}

.floating-wa .wa-icon {
    display: grid;
    place-items: center;
    line-height: 1
}

.floating-wa svg {
    width: 27px;
    height: 27px
}

.floating-wa:hover {
    transform: translateY(-3px);
    background: #159c52
}

.floating-booking {
    bottom: 86px;
    background: var(--gold);
    color: #111
}

.floating-booking svg {
    width: 25px;
    height: 25px
}

.floating-booking:hover {
    transform: translateY(-3px);
    background: var(--gold2)
}

.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px
}

.booking-modal.show {
    display: flex
}

.booking-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3,12,22,.72);
    backdrop-filter: blur(5px)
}

.booking-dialog {
    position: relative;
    z-index: 1;
    width: min(720px,96vw);
    max-height: 90vh;
    overflow: auto;
    background: #fff;
    border-radius: 18px;
    padding: 34px;
    box-shadow: 0 30px 80px rgba(0,0,0,.3)
}

.booking-close {
    position: absolute;
    top: 12px;
    right: 16px;
    width: 38px;
    height: 38px;
    border: 0;
    background: transparent;
    font-size: 2rem;
    line-height: 1;
    color: #53606b;
    cursor: pointer
}

.booking-heading h3 {
    font-size: 2rem;
    margin: 10px 35px 10px 0
}

.booking-heading>p:last-child {
    color: var(--muted);
    font-size: .9rem;
    max-width: 600px
}

.booking-form {
    margin-top: 24px;
    display: grid;
    gap: 16px
}

.booking-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px
}

.booking-form label {
    display: grid;
    gap: 7px;
    font-size: .76rem;
    font-weight: 700;
    color: #273542
}

.booking-form label span {
    font-size: .68rem;
    color: var(--muted);
    font-weight: 500
}

.booking-form input,.booking-form select,.booking-form textarea {
    width: 100%;
    border: 1px solid #d7dce0;
    border-radius: 9px;
    padding: 12px 13px;
    background: #fbfaf7;
    color: var(--ink);
    outline: none
}

.booking-form input:focus,.booking-form select:focus,.booking-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(217,164,65,.13)
}

.booking-form textarea {
    resize: vertical;
    min-height: 100px
}

.booking-submit {
    width: 100%;
    border: 0;
    cursor: pointer
}

.booking-form-note {
    font-size: .7rem;
    color: var(--muted);
    text-align: center
}

.back-top {
    position: fixed;
    right: 22px;
    bottom: 82px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.25);
    background: #0a1724;
    color: #fff;
    border-radius: 50%;
    z-index: 79;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .25s;
    box-shadow: 0 10px 25px rgba(0,0,0,.18)
}

.back-top.show {
    opacity: 1;
    visibility: visible;
    transform: none
}

.back-top:hover {
    background: var(--gold);
    color: #111;
    border-color: var(--gold)
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.9);
    z-index: 1000;
    display: none;
    place-items: center;
    padding: 40px
}

.lightbox.show {
    display: grid
}

.lightbox img {
    max-width: min(1100px,92vw);
    max-height: 88vh;
    object-fit: contain
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    border: 0;
    background: none;
    color: #fff;
    font-size: 2.8rem;
    cursor: pointer
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s ease,transform .8s ease
}

.reveal.visible {
    opacity: 1;
    transform: none
}

@media(max-width: 980px) {
    .nav {
        gap:17px
    }

    .two-col {
        grid-template-columns: 70px 1fr
    }

    .about-image {
        grid-column: 2;
        margin-top: 20px
    }

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

    .project-feature {
        grid-template-columns: 1fr
    }

    .project-image {
        height: 500px
    }

    .why-grid {
        gap: 50px
    }

    .vision-grid {
        gap: 24px
    }

    .gallery-grid {
        grid-template-columns: repeat(3,1fr)
    }

    .faq-grid,.contact-grid {
        gap: 55px
    }

    .footer-top {
        grid-template-columns: 1.5fr 1fr 1fr
    }
}

@media(max-width: 760px) {
    .site-header {
        padding:11px 5%
    }

    .brand img {
        width: 58px
    }

    .brand-text {
        font-size: .66rem
    }

    .brand-text small {
        font-size: .32rem
    }

    .header-wa {
        padding: 8px 10px
    }

    .header-wa span:last-child {
        display: none
    }

    .menu-toggle {
        display: block
    }

    .menu-toggle.active {
        position: fixed;
        top: 18px;
        right: 5%;
        z-index: 1002;
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        bottom: 0;
        width: min(78%, 300px);
        height: 100vh;
        background: rgba(7,19,33,.98);
        padding: 90px 26px 32px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        transform: translateX(100%);
        transition: transform .35s ease;
        box-shadow: -12px 0 40px rgba(0,0,0,.35);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 1000
    }

    .nav.open {
        transform: translateX(0)
    }

    .nav, .nav.open {
        align-items: flex-start !important;
    }

    .nav>a {
        width: 100%;
        text-align: left;
    }

    .nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(3,10,18,.55);
        opacity: 0;
        visibility: hidden;
        transition: opacity .3s ease;
        z-index: 999
    }

    .nav-overlay.show {
        opacity: 1;
        visibility: visible
    }

    .hero {
        min-height: 700px
    }

    .hero-content {
        padding-top: 120px
    }

    .hero-content h1 {
        font-size: clamp(2.35rem,10.5vw,4.3rem)
    }

    .hero-copy {
        font-size: .92rem;
        line-height: 1.55
    }

    .hero-actions {
        flex-wrap: wrap
    }

    .hero-meta {
        gap: 22px;
        margin-top: 45px
    }

    .hero-controls {
        right: 5%;
        bottom: 92px
    }

    .hero-arrow {
        width: 38px;
        height: 38px
    }

    .trust-strip {
        grid-template-columns: 1fr 1fr
    }

    .trust-item {
        padding: 18px 5vw
    }

    .section {
        padding: 62px 0
    }

    .section-head {
        display: block;
        margin-bottom: 35px
    }

    .section-head>p {
        margin-top: 18px
    }

    .two-col {
        grid-template-columns: 1fr
    }

    .section-label {
        transform: none;
        margin: 0 0 20px
    }

    .about-image {
        grid-column: auto;
        margin-top: 50px
    }

    .about-image img {
        height: 430px
    }

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

    .service-card {
        min-height: 320px
    }

    .service-icon {
        margin-bottom: 45px
    }

    .mini-projects {
        grid-template-columns: 1fr
    }

    .mini-project img {
        height: 320px
    }

    .why-grid {
        grid-template-columns: 1fr
    }

    .why-image img {
        height: 500px
    }

    .vision-section {
        min-height: 650px
    }

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

    .vision-card {
        min-height: 0;
        padding: 28px 25px 30px
    }

    .gallery-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 12px
    }

    .gallery-item {
        aspect-ratio: 1/1
    }

    .faq-grid,.contact-grid {
        grid-template-columns: 1fr
    }

    .cta-inner {
        display: block
    }

    .cta-inner .btn {
        margin-top: 28px
    }

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

    .footer-bottom {
        display: block
    }

    .footer-bottom span {
        display: block;
        margin: 5px 0
    }

    .floating-wa {
        right: 14px;
        bottom: 14px
    }

    .back-top {
        right: 14px;
        bottom: 76px
    }

    .floating-wa b {
        display: none
    }

    .floating-wa {
        width: 50px;
        height: 50px;
        padding: 0;
        justify-content: center
    }
}

@media(max-width: 450px) {
    .hero-meta {
        display:none
    }

    .hero-bottom {
        bottom: 18px
    }

    .hero-controls {
        bottom: 43px
    }

    .hero-actions .btn {
        width: 100%
    }

    .trust-strip {
        grid-template-columns: 1fr
    }

    .trust-item {
        padding: 14px 5vw
    }

    .contact-form {
        padding: 25px
    }

    .footer-top {
        grid-template-columns: 1fr
    }

    .project-info {
        padding: 40px 25px
    }

    .project-image {
        height: 420px
    }

    .image-tag {
        left: 0
    }

    .floating-number {
        width: 110px;
        height: 110px;
        font-size: 2.4rem
    }
}

.about-copy h2,.why-copy h2,.vision-heading h2,.faq-grid h2,.contact-info h2 {
    font-size: clamp(2.1rem,3.7vw,3.7rem);
    line-height: 1.05;
    letter-spacing: -.045em
}

.about-copy .lead,.why-copy .lead {
    font-size: 1.03rem;
    line-height: 1.72
}

.section-head>p,.about-copy>p:not(.eyebrow):not(.lead),.vision-heading>p:last-child {
    font-size: .92rem;
    line-height: 1.7
}

.header-tools {
    gap: 8px
}

.header-social {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: #fff;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    font-size: 1rem;
    background: rgba(5,16,27,.18);
    backdrop-filter: blur(8px)
}

.header-social:hover {
    background: var(--gold);
    color: #111;
    border-color: var(--gold)
}

.header-social.header-wa {
    width: auto;
    height: 34px;
    padding: 0 11px;
    border-radius: 999px;
    display: flex;
    gap: 6px
}

@media(max-width: 760px) {
    .header-tools {
        order:2;
        margin-left: auto
    }

    .menu-toggle {
        order: 3;
        margin-left: auto;
    }

    .nav {
        order: 4
    }

    .header-social {
        width: 32px;
        height: 32px
    }

    .header-social.header-wa {
        width: 34px;
        padding: 0;
        justify-content: center
    }

    .header-social.header-wa span:last-child {
        display: none
    }

    .about-copy h2,.why-copy h2,.vision-heading h2,.faq-grid h2,.contact-info h2 {
        font-size: clamp(1.95rem,8.5vw,3rem)
    }

    .section-head>p,.about-copy>p:not(.eyebrow):not(.lead),.vision-heading>p:last-child {
        font-size: .9rem
    }
}

.top-contact-bar {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    z-index: 1;
    height: 28px;
    background: rgba(3,12,22,.92);
    color: #c5d0d8;
    border-bottom: 1px solid rgba(255,255,255,.08)
}

.top-contact-inner {
    width: min(1480px,92%);
    height: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12.5px;
    letter-spacing: .02em
}

.top-contact-left,.top-contact-right {
    display: flex;
    align-items: center;
    gap: 20px
}

.top-contact-left a,.top-contact-right a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #c5d0d8
}

.top-contact-left a:hover,.top-contact-right a:hover {
    color: #fff
}

.top-icon {
    color: var(--gold2);
    font-size: .8rem
}

.top-contact-right>span {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #8796a2
}

.top-social {
    width: 25px;
    height: 25px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    display: grid!important;
    place-items: center
}

.top-social svg {
    width: 13px;
    height: 13px
}

.top-social:hover {
    background: var(--gold);
    color: #111;
    border-color: var(--gold)
}

.top-social-wa:hover {
    background: #1fbf67;
    color: #fff;
    border-color: #1fbf67
}

.site-header {
    top: 0
}

.site-header.scrolled {
    top: 0
}

.brand {
    gap: 11px
}

.brand img {
    width: 76px
}

.brand-text {
    display: flex;
    flex-direction: column;
    font-size: .86rem;
    letter-spacing: .14em;
    line-height: 1.05
}

.brand-text strong {
    font-weight: 800
}

.brand-text small {
    font-size: .43rem;
    letter-spacing: .25em;
    margin-top: 5px
}

.hero-content h1 {
    font-size: clamp(2.65rem,4.45vw,4.65rem);
    max-width: 760px;
    margin: 14px 0
}

.hero-copy {
    font-size: 1.02rem;
    max-width: 690px
}

.hero-meta {
    margin-top: 45px
}

.section {
    padding: 58px 0
}

.section-head {
    margin-bottom: 40px
}

.lead {
    font-size: 1.08rem;
    line-height: 1.72
}

.about-copy>p:not(.eyebrow):not(.lead) {
    font-size: .98rem;
    line-height: 1.72
}

.service-card p,.project-info>p:not(.eyebrow),.faq-list details p {
    font-size: .96rem
}

.section-head>p {
    font-size: .98rem
}

.trust-item span {
    font-size: 16px;
}

.footer {
    border-top: 1px solid rgba(255,255,255,.08)
}

.footer-brand-band {
    background: linear-gradient(90deg,#0b1b2c,#102a43);
    border-bottom: 1px solid rgba(255,255,255,.08)
}

.footer-brand-inner {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px
}

.footer-brand-lockup {
    display: flex;
    align-items: center;
    gap: 18px
}

.footer-brand-lockup .footer-logo {
    width: 90px
}

.footer-brand-lockup strong,.footer-brand-lockup span {
    display: block
}

.footer-brand-lockup strong {
    font-family: 'Manrope';
    font-size: 1rem;
    letter-spacing: .09em
}

.footer-brand-lockup span {
    font-size: .58rem;
    letter-spacing: .2em;
    color: #9eacb6;
    margin-top: 5px
}

.footer-quote {
    background: var(--gold);
    color: #101820;
    border-radius: 999px;
    padding: 11px 17px;
    font-size: .76rem;
    font-weight: 800
}

.footer-quote:hover {
    background: var(--gold2)
}

.footer-top {
    padding: 48px 0 38px;
    grid-template-columns: 1.45fr .75fr .95fr 1fr;
    gap: 45px
}

.footer-company h4 {
    font-size: .8rem;
    color: #fff;
    text-transform: none;
    letter-spacing: .02em
}

.footer-company>p {
    max-width: 340px;
    font-size: .88rem!important;
    line-height: 1.7
}

.footer-top a {
    font-size: .84rem
}

.footer-top>div>p {
    font-size: .84rem;
    line-height: 1.7
}

.footer-map-link {
    color: var(--gold2)!important;
    font-weight: 700
}

.footer-bottom {
    font-size: .7rem;
    padding: 17px 0
}

.footer .social-links a {
    font-size: .76rem
}

@media(max-width: 760px) {
    .top-contact-bar {
        height:32px
    }

    .top-contact-inner {
        font-size: .6rem
    }

    .top-contact-left {
        gap: 10px
    }

    .top-contact-left a {
        white-space: nowrap
    }

    .top-contact-left a:first-child {
        font-weight: 700
    }

    .top-contact-left a:last-child {
        display: none
    }

    .top-contact-left a:nth-child(3) {
        display: none
    }

    .top-contact-right>span {
        display: none
    }

    .top-social {
        width: 23px;
        height: 23px
    }

    .site-header,.site-header.scrolled {
        top: 32px
    }

    .brand img {
        width: 58px
    }

    .brand-text {
        font-size: .72rem
    }

    .brand-text small {
        font-size: .36rem
    }

    .hero-content {
        padding-top: 105px
    }

    .hero-content h1 {
        font-size: clamp(2.35rem,9.2vw,3.8rem)
    }

    .hero-copy {
        font-size: .98rem
    }

    .section {
        padding: 48px 0
    }

    .section-head {
        margin-bottom: 30px
    }

    .footer-brand-inner {
        padding: 20px 0
    }

    .footer-brand-lockup .footer-logo {
        width: 72px
    }

    .footer-brand-lockup strong {
        font-size: .82rem
    }

    .footer-brand-lockup span {
        font-size: .47rem
    }

    .footer-top {
        padding: 38px 0 30px
    }
}

@media(max-width: 450px) {
    .top-contact-left {
        gap: 6px
    }

    .top-contact-left a {
        font-size:.56rem
    }

    .top-contact-left a .top-icon {
        display: none
    }

    .brand-text {
        font-size: .66rem
    }

    .brand-text small {
        font-size: .33rem
    }

    .hero-content h1 {
        font-size: clamp(2.15rem,10vw,3.1rem)
    }

    .hero-copy {
        font-size: .94rem
    }

    .section {
        padding: 42px 0
    }
}

.section {
    padding: 50px 0
}

.section-head {
    margin-bottom: 34px
}

.section-head>p,.about-copy>p:not(.eyebrow):not(.lead),.vision-heading>p:last-child {
    font-size: 1rem;
    line-height: 1.72
}

.about-copy .lead,.why-copy .lead {
    font-size: 1.08rem;
    line-height: 1.75
}

.service-card p,.project-info>p:not(.eyebrow),.faq-list details p {
    font-size: 1rem;
    line-height: 1.7
}

.contact-info>p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.7
}

.contact-list strong {
    font-size: 1rem
}

.hero-copy {
    font-size: 1.05rem;
    line-height: 1.7
}

.floating-wa .wa-icon {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center
}

.floating-wa .wa-icon svg {
    width: 100%;
    height: 100%;
    display: block
}

.floating-wa {
    font-size: .8rem;
    padding: 12px 18px
}

.header-tools {
    display: none!important
}

.contact-map {
    background: #fff;
    border: 1px solid var(--line);
    padding: 18px;
    box-shadow: 0 18px 45px rgba(5,17,29,.08);
    grid-column: 1 / -1;
    margin-top: 10px
}

.map-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 14px
}

.map-heading span {
    font-size: .65rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #9c6e1f;
    font-weight: 800
}

.map-heading strong {
    font-family: 'Manrope';
    font-size: 1.05rem
}

.map-frame {
    width: 100%;
    height: 360px;
    overflow: hidden;
    background: #e9e5dc
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block
}

.map-directions {
    display: inline-block;
    margin-top: 12px;
    color: #9c6e1f;
    font-weight: 800;
    font-size: .9rem;
    border-bottom: 1px solid currentColor;
    padding-bottom: 4px
}

@media(max-width: 760px) {
    .section {
        padding:40px 0
    }

    .section-head {
        margin-bottom: 28px
    }

    .section-head>p,.about-copy>p:not(.eyebrow):not(.lead),.vision-heading>p:last-child {
        font-size: .98rem
    }

    .about-copy .lead,.why-copy .lead {
        font-size: 1.02rem
    }

    .service-card p,.project-info>p:not(.eyebrow),.faq-list details p {
        font-size: .98rem
    }

    .hero-copy {
        font-size: 1rem
    }

    .floating-wa {
        right: 14px;
        bottom: 14px;
        width: auto;
        height: 50px;
        padding: 0 16px
    }

    .floating-wa b {
        display: block
    }

    .contact-map {
        grid-column: auto;
        margin-top: 0;
        padding: 12px
    }

    .map-frame {
        height: 300px
    }

    .map-heading {
        display: block
    }

    .map-heading strong {
        display: block;
        margin-top: 5px;
        font-size: 1rem
    }
}

@media(max-width: 450px) {
    .section {
        padding:36px 0
    }

    .floating-wa {
        width: 54px;
        padding: 0;
        justify-content: center
    }

    .floating-wa b {
        display: none
    }

    .map-frame {
        height: 270px
    }
}

.floating-wa {
    width: 56px!important;
    height: 56px!important;
    padding: 0!important;
    display: grid!important;
    place-items: center!important;
    border-radius: 50%!important;
    right: 22px!important;
    bottom: 22px!important
}

.floating-wa .wa-icon {
    width: 27px!important;
    height: 27px!important
}

.floating-wa b {
    display: none!important
}

@media(max-width: 760px) {
    .floating-wa {
        width:52px!important;
        height: 52px!important;
        right: 14px!important;
        bottom: 14px!important
    }

    .floating-wa .wa-icon {
        width: 25px!important;
        height: 25px!important
    }
}

@media(min-width: 761px) {
    .site-header {
        display:flex;
        align-items: center;
    }

    .site-header .brand {
        flex: 0 0 auto;
    }

    .site-header .nav {
        margin-left: auto;
    }
}

body {
    font-size: 16px;
}

.section {
    padding: 44px 0
}

.section-head {
    margin-bottom: 30px
}

.section-head>p,.about-copy>p:not(.eyebrow):not(.lead),.vision-heading>p:last-child {
    font-size: 1.05rem;
    line-height: 1.7
}

.about-copy .lead,.why-copy .lead {
    font-size: 1.12rem;
    line-height: 1.72
}

.service-card p,.project-info>p:not(.eyebrow),.faq-list details p,.contact-info>p:not(.eyebrow) {
    font-size: 1.04rem;
    line-height: 1.72
}

.footer-brand-inner {
    padding: 30px 0
}

.footer-brand-lockup {
    gap: 20px
}

.footer-logo-wrap {
    width: 92px;
    height: 62px;
    display: grid;
    place-items: center;
    overflow: hidden
}

.footer-brand-lockup .footer-logo {
    width: 92px;
    max-height: 62px;
    object-fit: contain
}

.footer-brand-lockup strong {
    font-family: 'Manrope';
    font-size: 1.25rem;
    letter-spacing: .12em;
    line-height: 1;
    display: block;
    color: #fff
}

.footer-brand-lockup b {
    display: block;
    font-family: 'DM Sans',sans-serif;
    font-size: .55rem;
    letter-spacing: .34em;
    color: var(--gold2);
    margin-top: 4px
}

.footer-brand-lockup span {
    font-size: .62rem;
    letter-spacing: .18em;
    color: #aab7c1;
    margin-top: 7px
}

.footer-brand-actions {
    display: flex;
    align-items: center;
    gap: 18px
}

.footer-social-icons {
    display: flex;
    gap: 9px
}

.footer-icon-link {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(255,255,255,.035);
    transition: transform .3s ease,background .3s ease,border-color .3s ease,box-shadow .3s ease
}

.footer-icon-link svg {
    width: 19px;
    height: 19px
}

.footer-icon-link:hover {
    transform: translateY(-4px) rotate(-3deg);
    background: var(--gold);
    color: #111;
    border-color: var(--gold);
    box-shadow: 0 12px 25px rgba(217,164,65,.22)
}

.footer-wa-link:hover {
    background: #1fbf67;
    color: #fff;
    border-color: #1fbf67;
    box-shadow: 0 12px 25px rgba(31,191,103,.2)
}

.footer-quote {
    padding: 13px 19px;
    font-size: .82rem;
    transition: transform .3s ease,background .3s ease,box-shadow .3s ease
}

.footer-quote:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(217,164,65,.18)
}

.footer-top {
    padding: 42px 0 32px;
    gap: 38px
}

.footer-top>div {
    transition: transform .35s ease
}

.footer-top>div:hover {
    transform: translateY(-4px)
}

.footer-company>p,.footer-top>div>p {
    font-size: .98rem!important;
    line-height: 1.75
}

.footer-top a {
    font-size: .94rem;
    margin: 9px 0
}

.footer h4 {
    font-size: .82rem;
    margin-bottom: 15px
}

.social-links a {
    font-size: .88rem!important;
    padding: 9px 13px
}

.footer-bottom {
    font-size: .76rem;
    padding: 16px 0
}

.footer-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .8s ease,transform .8s ease
}

.footer-reveal.visible {
    opacity: 1;
    transform: none
}

.footer-brand-band .footer-brand-lockup {
    animation: footerFloat 5s ease-in-out infinite
}

@keyframes footerFloat {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-3px)
    }
}

.footer-social-icons .footer-icon-link:nth-child(1) {
    animation: footerPulse 4.5s ease-in-out infinite
}

.footer-social-icons .footer-icon-link:nth-child(2) {
    animation: footerPulse 4.5s ease-in-out 1.1s infinite
}

@keyframes footerPulse {
    0%,100% {
        box-shadow: 0 0 0 0 rgba(217,164,65,0)
    }

    50% {
        box-shadow: 0 0 0 7px rgba(217,164,65,.05)
    }
}

.reveal.visible {
    animation: sectionRise .7s ease both
}

@keyframes sectionRise {
    from {
        opacity: .2;
        transform: translateY(18px)
    }

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

.service-card,.vision-card,.mini-project,.gallery-item,.project-feature {
    transition: transform .45s ease,box-shadow .45s ease
}

.service-card:hover,.vision-card:hover,.mini-project:hover,.project-feature:hover {
    transform: translateY(-6px)
}

.gallery-item:hover {
    transform: translateY(-4px)
}

@media(max-width: 760px) {
    .section {
        padding:38px 0
    }

    .section-head {
        margin-bottom: 25px
    }

    .section-head>p,.about-copy>p:not(.eyebrow):not(.lead),.vision-heading>p:last-child {
        font-size: 1rem
    }

    .about-copy .lead,.why-copy .lead {
        font-size: 1.06rem
    }

    .service-card p,.project-info>p:not(.eyebrow),.faq-list details p,.contact-info>p:not(.eyebrow) {
        font-size: 1rem
    }

    .footer-brand-inner {
        padding: 24px 0;
        display: flex;
        align-items: flex-start;
        gap: 20px
    }

    .footer-brand-lockup {
        gap: 12px
    }

    .footer-logo-wrap,.footer-brand-lockup .footer-logo {
        width: 68px;
        height: 50px
    }

    .footer-brand-lockup strong {
        font-size: .95rem
    }

    .footer-brand-lockup b {
        font-size: .42rem;
        letter-spacing: .25em
    }

    .footer-brand-lockup span {
        font-size: .46rem;
        letter-spacing: .11em
    }

    .footer-brand-actions {
        gap: 9px;
        flex-direction: column;
        align-items: flex-end
    }

    .footer-social-icons {
        gap: 7px
    }

    .footer-icon-link {
        width: 36px;
        height: 36px
    }

    .footer-icon-link svg {
        width: 16px;
        height: 16px
    }

    .footer-quote {
        font-size: .7rem;
        padding: 10px 12px
    }

    .footer-top {
        padding: 34px 0 28px;
        gap: 28px
    }

    .footer-company>p,.footer-top>div>p {
        font-size: .94rem!important
    }

    .footer-top a {
        font-size: .92rem
    }

    .footer-bottom {
        font-size: .72rem
    }
}

@media(max-width: 450px) {
    .section {
        padding:34px 0
    }

    .footer-brand-inner {
        align-items: center
    }

    .footer-brand-actions {
        gap: 7px
    }

    .footer-logo-wrap,.footer-brand-lockup .footer-logo {
        width: 58px;
        height: 44px
    }

    .footer-brand-lockup strong {
        font-size: .82rem
    }

    .footer-brand-lockup b {
        font-size: .36rem
    }

    .footer-brand-lockup span {
        font-size: .4rem
    }

    .footer-icon-link {
        width: 32px;
        height: 32px
    }

    .footer-quote {
        display: none
    }
}

.site-header .brand {
    flex: 0 0 auto;
    display: flex;
    align-items: center
}

.site-header .brand img {
    width: 112px;
    height: auto;
    display: block
}

@media(max-width: 760px) {
    .site-header .brand img {
        width:78px
    }
}

.footer {
    background: #050e17;
    color: #fff;
    border-top: 1px solid rgba(255,255,255,.08);
    overflow: hidden
}

.footer-top {
    padding: 58px 0 42px;
    display: grid;
    grid-template-columns: 1.55fr .72fr .95fr 1fr;
    gap: 46px
}

.footer-main-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px
}

.footer-main-brand .footer-logo {
    width: 104px;
    height: 62px;
    object-fit: contain;
    display: block
}

.footer-main-brand-text strong {
    display: block;
    font-family: 'Manrope';
    font-size: 1.35rem;
    letter-spacing: .12em;
    line-height: 1;
    color: #fff
}

.footer-main-brand-text b {
    display: block;
    font-size: .56rem;
    letter-spacing: .34em;
    color: var(--gold2);
    margin-top: 5px
}

.footer-main-brand-text span {
    display: block;
    font-size: .62rem;
    letter-spacing: .16em;
    color: #9eacb6;
    margin-top: 8px
}

.footer-company>p {
    max-width: 360px!important;
    color: #91a0ac!important;
    font-size: 1rem!important;
    line-height: 1.75!important;
    margin: 0!important
}

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

.footer-icon-link {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(255,255,255,.035);
    transition: .3s
}

.footer-icon-link svg {
    width: 20px;
    height: 20px
}

.footer-icon-link:hover {
    transform: translateY(-4px);
    background: var(--gold);
    color: #111;
    border-color: var(--gold)
}

.footer-wa-link:hover {
    background: #1fbf67;
    color: #fff;
    border-color: #1fbf67
}

.footer h4 {
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--gold);
    margin-bottom: 16px
}

.footer-top a {
    display: block;
    color: #b8c3ca;
    font-size: .96rem;
    margin: 10px 0;
    transition: .2s
}

.footer-top a:hover {
    color: #fff;
    transform: translateX(3px)
}

.footer-top>div>p {
    color: #91a0ac;
    font-size: .96rem;
    line-height: 1.75
}

.footer-quote {
    display: inline-flex!important;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: #101820!important;
    border-radius: 999px;
    padding: 12px 18px!important;
    font-weight: 800!important;
    margin-top: 18px!important
}

.footer-quote:hover {
    background: var(--gold2);
    transform: translateY(-2px)!important
}

.footer-bottom {
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    justify-content: space-between;
    color: #687681;
    font-size: .76rem
}

@media(max-width: 980px) {
    .footer-top {
        grid-template-columns:1.3fr 1fr 1fr;
    }

    .footer-top>div:last-child {
        grid-column: auto
    }
}

@media(max-width: 760px) {
    .footer-top {
        grid-template-columns:1fr 1fr;
        gap: 34px;
        padding: 46px 0 34px
    }

    .footer-company {
        grid-column: 1/-1
    }

    .footer-main-brand .footer-logo {
        width: 84px;
        height: 54px
    }

    .footer-main-brand-text strong {
        font-size: 1.12rem
    }

    .footer-main-brand-text b {
        font-size: .48rem
    }

    .footer-main-brand-text span {
        font-size: .5rem
    }

    .footer-company>p {
        font-size: .96rem!important
    }

    .footer-top a,.footer-top>div>p {
        font-size: .94rem
    }

    .footer-bottom {
        display: block;
        font-size: .72rem
    }

    .footer-bottom span {
        display: block;
        margin: 5px 0
    }
}

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

    .footer-company {
        grid-column: auto
    }

    .footer-main-brand .footer-logo {
        width: 72px;
        height: 48px
    }

    .footer-main-brand-text strong {
        font-size: 1rem
    }

    .footer-main-brand-text b {
        font-size: .43rem
    }

    .footer-main-brand-text span {
        font-size: .44rem
    }
}

/* v9 ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â clearer Civilion branding and recognizable footer social icons */
.site-header .brand img {
    width: 150px;
    height: auto;
    max-height: 58px;
    object-fit: contain;
}

.site-header .brand {
    min-width: 150px
}

.footer-main-brand {
    display: flex;
    align-items: center;
    margin: 0 0 18px;
    min-height: 82px;
}

.footer-main-brand .footer-logo {
    width: 190px;
    height: auto;
    max-height: 78px;
    object-fit: contain;
    display: block;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
}

.footer-icon-link {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: #d9a441;
    box-shadow: 0 8px 20px rgba(0,0,0,.2);
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.footer-icon-link svg {
    width: 22px;
    height: 22px;
    display: block
}

.footer-icon-link:hover {
    transform: translateY(-3px);
    filter: brightness(1.08);
    box-shadow: 0 12px 24px rgba(0,0,0,.28)
}

.footer-wa-link {
    background: #25D366!important;
    color: #fff!important
}

.footer-wa-link:hover {
    background: #1ebe5d!important
}

@media(max-width: 760px) {
    .site-header .brand img {
        width:112px;
        max-height: 48px
    }

    .site-header .brand {
        min-width: 112px
    }

    .footer-main-brand {
        min-height: 68px
    }

    .footer-main-brand .footer-logo {
        width: 155px;
        max-height: 64px
    }

    .footer-icon-link {
        width: 44px;
        height: 44px
    }
}

@media(max-width: 450px) {
    .site-header .brand img {
        width:102px
    }

    .site-header .brand {
        min-width: 102px
    }

    .footer-main-brand .footer-logo {
        width: 145px;
        max-height: 60px
    }
}

.site-header .brand {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    min-width: 0;
}

.site-header .brand img {
    width: 150px;
    height: auto;
    max-height: none;
    display: block;
    object-fit: contain;
}

.footer-main-brand {
    display: flex;
    align-items: center;
    margin: 0 0 18px;
    min-height: 0;
}

.footer-main-brand .footer-logo {
    width: 210px;
    height: auto;
    max-height: none;
    display: block;
    object-fit: contain;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    margin-top: 22px;
}

.footer-icon-link {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    place-items: center;
    box-sizing: border-box;
    color: #071321;
    background: #d9a441;
    line-height: 0;
}

.footer-icon-link svg {
    width: 22px;
    height: 22px;
    display: block;
    flex: 0 0 22px;
    margin: 0;
}

.footer-wa-link {
    background: #25D366!important;
    color: #fff!important;
}

@media(max-width: 760px) {
    .site-header .brand img {
        width:122px;
    }

    .footer-main-brand .footer-logo {
        width: 180px;
    }

    .footer-icon-link {
        width: 46px;
        height: 46px;
        min-width: 46px;
        min-height: 46px;
    }
}

@media(max-width: 450px) {
    .site-header .brand img {
        width:112px;
    }

    .footer-main-brand .footer-logo {
        width: 165px;
    }
}

.site-header .brand img {
    width: 190px !important;
    height: auto;
    display: block;
    object-fit: contain;
}

.footer-main-brand .footer-logo {
    width: 260px !important;
    height: auto;
    display: block;
    object-fit: contain;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin-top: 22px;
}

.footer-icon-link {
    position: relative;
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;
    padding: 0 !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box;
    line-height: 0;
    overflow: hidden;
}

.footer-icon-link svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 26px !important;
    height: 26px !important;
    display: block !important;
    margin: 0 !important;
    flex: none !important;
}

.footer-icon-link svg * {
    vector-effect: non-scaling-stroke;
}

.footer-icon-link:first-child {
    background: #d9a441 !important;
    color: #ffffff !important;
}

.footer-wa-link {
    background: #25D366 !important;
    color: #ffffff !important;
}

@media(max-width: 760px) {
    .site-header .brand img {
        width:160px !important;
    }

    .footer-main-brand .footer-logo {
        width: 220px !important;
    }

    .footer-icon-link {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        min-height: 50px !important;
    }

    .footer-icon-link svg {
        width: 24px !important;
        height: 24px !important;
    }
}

@media(max-width: 450px) {
    .site-header .brand img {
        width:145px !important;
    }

    .footer-main-brand .footer-logo {
        width: 195px !important;
    }
}

.service-grid-premium {
    gap: 18px;
    background: transparent;
    grid-template-columns: repeat(4,minmax(0,1fr));
}

.service-card-premium {
    padding: 0;
    min-height: 0;
    background: #0b1a2a;
    border: 1px solid rgba(255,255,255,.10);
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 14px 34px rgba(0,0,0,.16);
}

.service-card-premium:hover {
    background: #10263c;
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(0,0,0,.24);
}

.service-visual {
    height: 205px;
    position: relative;
    overflow: hidden;
    background: #132a40;
}

.service-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,rgba(4,13,23,.05) 20%,rgba(4,13,23,.82) 100%);
    pointer-events: none;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s ease;
}

.service-card-premium:hover .service-visual img {
    transform: scale(1.035);
}

.service-card-premium .service-no {
    top: 16px;
    right: 18px;
    z-index: 2;
    color: #fff;
    font-size: .72rem;
    letter-spacing: .08em;
    background: rgba(5,16,28,.48);
    padding: 5px 8px;
    border-radius: 999px;
}

.service-card-premium .service-icon {
    position: absolute;
    left: 20px;
    bottom: 18px;
    z-index: 2;
    width: 46px;
    height: 46px;
    margin: 0;
    border: 1px solid rgba(255,255,255,.38);
    background: rgba(7,19,33,.72);
    backdrop-filter: blur(8px);
    font-size: 1.25rem;
    color: var(--gold);
}

.service-body {
    padding: 24px 23px 25px;
}

.service-kicker {
    font-size: .66rem!important;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold2)!important;
    font-weight: 800;
    margin-bottom: 9px!important;
    line-height: 1.3!important;
}

.service-card-premium h3 {
    font-size: 1.22rem;
    margin-bottom: 12px;
    line-height: 1.16;
}

.service-card-premium .service-body>p:not(.service-kicker) {
    font-size: .94rem;
    line-height: 1.7;
    color: #aebac4;
    margin: 0;
}

.service-card-premium a {
    margin-top: 19px;
    padding-top: 13px;
    border-top: 1px solid rgba(255,255,255,.10);
    width: 100%;
    justify-content: space-between;
    font-size: 18px;
    color: #e2b04c;
}

.service-card-premium a span {
    transition: transform .3s ease;
}

.service-card-premium:hover a span {
    transform: translateX(4px);
}

@media(max-width: 1050px) {
    .service-grid-premium {
        grid-template-columns:repeat(2,1fr);
    }

    .service-visual {
        height: 190px;
    }
}

@media(max-width: 760px) {
    .service-grid-premium {
        grid-template-columns:1fr;
        gap: 14px;
    }

    .service-visual {
        height: 215px;
    }

    .service-body {
        padding: 22px 21px 23px;
    }

    .service-card-premium h3 {
        font-size: 1.3rem;
    }

    .service-card-premium .service-body>p:not(.service-kicker) {
        font-size: .98rem;
    }
}

.hero-content {
    transform: translateY(-58px);
}

.hero-content h1 {
    margin-top: 10px;
    margin-bottom: 12px;
}

.hero-actions {
    margin-top: 22px;
}

.hero-meta {
    margin-top: 36px;
}

@media(max-width: 760px) {
    .hero-content {
        transform:translateY(-32px);
    }

    .hero-actions {
        margin-top: 20px;
    }

    .hero-meta {
        margin-top: 28px;
    }
}

@media(max-width: 450px) {
    .hero-content {
        transform:translateY(-22px);
    }
}

@media (min-width: 761px) {
    .hero-content {
        transform:translateY(-112px);
    }
}

@media(max-width: 760px) {
    .hero {
        height:680px;
        min-height: 680px
    }

    .hero-content {
        padding-top: 150px;
        padding-bottom: 45px
    }

    .hero-content h1 {
        font-size: clamp(2.35rem,10vw,3.4rem);
        margin: 12px 0
    }

    .hero-actions {
        margin-top: 18px
    }

    .hero-meta {
        margin-top: 28px;
        gap: 28px
    }
}

@media(max-width: 450px) {
    .hero {
        height:650px;
        min-height: 650px
    }

    .hero-content {
        padding-top: 140px
    }
}

/* Compact Hero */
.hero {
    height: 560px;
    min-height: 560px;
}

.hero-content {
    padding-top: 105px;
    padding-bottom: 30px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin: 8px 0;
}

.hero-actions {
    margin-top: 14px;
}

.hero-meta {
    margin-top: 22px;
    gap: 24px;
}

@media(max-width: 760px) {
    .hero {
        height: 570px;
        min-height: 570px;
    }

    .hero-content {
        padding-top: 120px;
        padding-bottom: 25px;
    }

    .hero-content h1 {
        font-size: clamp(2.2rem, 9vw, 3.2rem);
        margin: 8px 0;
    }

    .hero-actions {
        margin-top: 14px;
    }

    .hero-meta {
        margin-top: 20px;
        gap: 22px;
    }
}

@media(max-width: 450px) {
    .hero {
        height: 540px;
        min-height: 540px;
    }

    .hero-content {
        padding-top: 110px;
    }
}

.hero {
    height: 500px;
    min-height: 500px;
}

.hero-content {
    padding-top: 145px;
    padding-bottom: 20px;
}

.hero-content h1 {
    font-size: clamp(2.3rem, 4.5vw, 4rem);
    margin: 6px 0;
    background: rgba(0,0,0,.55);
    display: inline-block;
    padding: 14px 20px;
    border-radius: 8px;
}

.hero-actions {
    margin-top: 10px;
}

.hero-meta {
    margin-top: 20px;
    gap: 0;
    width: fit-content;
    background: rgba(0,0,0,.55);
    border-radius: 10px;
    padding: 22px 26px 16px;
}

.hero-meta div {
    position: relative;
    padding: 0 26px;
}

.hero-meta div:first-child {
    padding-left: 0;
}

.hero-meta div:not(:first-child) {
    border-left: 1px solid rgba(255,255,255,.35);
}

.hero-meta div:before {
    content: "";
    position: absolute;
    left: 26px;
    top: -12px;
    width: 22px;
    height: 2px;
    background: var(--gold2);
}

.hero-meta div:first-child:before {
    left: 0;
}

/* Mobile */
@media(max-width: 760px) {
    .hero {
        height: 510px;
        min-height: 510px;
    }

    .hero-content {
        padding-top: 105px;
        padding-bottom: 15px;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        margin: 6px 0;
    }

    .hero-actions {
        margin-top: 10px;
    }

    .hero-meta {
        margin-top: 16px;
        gap: 18px;
    }
}

@media(max-width: 450px) {
    .hero {
        height: 490px;
        min-height: 490px;
    }

    .hero-content {
        padding-top: 95px;
    }
}

.hero-content {
    padding-left: 52px;
    margin-left: 0;
}

.hero-content h1, .hero-content .hero-eyebrow, .hero-content .hero-actions, .hero-content .hero-meta {
    margin-left: 0;
}

/* Products + testimonials ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â added without changing the existing sections */
.products-section {
    background: #ffffff;
    padding-bottom: 18px
}

.materials-section {
    padding-top: 18px
}

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

.product-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    padding: 30px 28px 27px;
    min-height: 265px;
    box-shadow: 0 10px 28px rgba(5,17,29,.05);
    transition: transform .4s ease,box-shadow .4s ease
}

.product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 38px rgba(5,17,29,.11)
}

.product-number {
    position: absolute;
    right: 22px;
    top: 20px;
    color: #9aa7b0;
    font-size: .7rem;
    letter-spacing: .08em
}

.product-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(217,164,65,.45);
    color: var(--gold);
    font-size: 1.25rem;
    margin-bottom: 42px
}

.product-icon .product-svg {
    width: 24px;
    height: 24px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round
}

.product-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px
}

.product-card p {
    color: var(--muted);
    font-size: .94rem;
    line-height: 1.7;
    margin: 0
}

.product-card a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 13px;
    border-top: 1px solid var(--line);
    font-size: 16px;
    font-weight: 800;
    color: #9c6e1f
}

.product-card a span {
    transition: transform .3s ease
}

.product-card:hover a span {
    transform: translateX(4px)
}

.testimonials-section {
    background: #071321;
    color: #fff
}

.testimonials-section .section-head>p {
    color: #aab7c1;
    font-size: 1.08rem;
    line-height: 1.6
}

.testimonials-section .eyebrow {
    color: var(--gold2)
}

.testimonials-section h2 {
    color: #fff;
    font-size: clamp(2.7rem,5.4vw,5.1rem)
}

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

.testimonial-card {
    position: relative;
    background: #0d2033;
    border: 1px solid rgba(255,255,255,.1);
    padding: 30px 28px;
    min-height: 205px;
    transition: transform .4s ease,background .4s ease,box-shadow .4s ease
}

.testimonial-card:hover {
    transform: translateY(-7px);
    background: #112940;
    box-shadow: 0 18px 40px rgba(0,0,0,.2)
}

.quote-mark {
    font-family: Georgia,serif;
    font-size: 3.3rem;
    line-height: .7;
    color: var(--gold);
    margin-bottom: 18px
}

.testimonial-card p {
    color: #c2ccd3;
    font-size: .96rem;
    line-height: 1.75;
    margin: 0 0 20px
}

.testimonial-card>span {
    color: #e0b34f;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em
}

@media(max-width: 900px) {
    .product-grid,.testimonial-grid {
        grid-template-columns:1fr 1fr
    }
}

@media(max-width: 600px) {
    .product-grid,.testimonial-grid {
        grid-template-columns:1fr
    }

    .product-card,.testimonial-card {
        min-height: 0
    }

    .product-icon {
        margin-bottom: 30px
    }
}

/* Products expansion */
.product-grid {
    grid-template-columns: repeat(3,1fr);
    gap: 18px
}

.product-card {
    min-height: 315px;
    padding: 30px 28px 25px
}

.product-card ul {
    list-style: none;
    margin: 17px 0 0;
    padding: 0;
    display: grid;
    gap: 7px
}

.product-card li {
    font-size: 16px;
    color: #657482;
    position: relative;
    padding-left: 15px
}

.product-card li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: var(--gold2);
    font-weight: 900
}

.product-note {
    margin: 24px 0 0;
    color: #73818d;
    font-size: 16px;
    line-height: 1.6;
    border-top: 1px solid var(--line);
    padding-top: 16px
}

/* Testimonial slider */
.testimonial-slider {
    position: relative;
    overflow: hidden
}

.testimonial-track {
    display: flex;
    width: 100%;
    transition: transform .7s cubic-bezier(.22,.61,.36,1);
    will-change: transform
}

.testimonial-card {
    flex: 0 0 100%;
    width: 100%;
    min-height: 250px;
    padding: 34px 34px 30px;
    box-sizing: border-box;
    opacity: .35;
    transform: scale(.97);
    transition: opacity .45s ease,transform .45s ease
}

.testimonial-card.is-active {
    opacity: 1;
    transform: scale(1)
}

.stars {
    color: var(--gold2);
    letter-spacing: .18em;
    font-size: .8rem;
    margin: 2px 0 15px
}

.testimonial-slider::after {
    content: "";
    display: block;
    height: 2px;
    width: 100%;
    margin-top: 18px;
    background: linear-gradient(90deg,var(--gold2) 0 18%,rgba(255,255,255,.08) 18% 100%);
    opacity: .7
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 22px
}

.testimonial-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.16);
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    transition: all .3s ease
}

.testimonial-arrow:hover {
    background: var(--gold2);
    border-color: var(--gold2);
    color: #071321;
    transform: translateY(-2px)
}

.testimonial-dots {
    display: flex;
    gap: 7px;
    align-items: center
}

.testimonial-dot {
    width: 7px;
    height: 7px;
    border: 0;
    border-radius: 50%;
    padding: 0;
    background: rgba(255,255,255,.3);
    cursor: pointer;
    transition: all .3s ease
}

.testimonial-dot.active {
    width: 24px;
    border-radius: 8px;
    background: var(--gold2)
}

@media(max-width: 900px) {
    .product-grid {
        grid-template-columns:1fr 1fr
    }
}

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

    .product-card {
        min-height: 0
    }

    .testimonial-card {
        padding: 28px 24px
    }
}

/* v10 ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â navigation/scrolling corrections */
html {
    scroll-padding-top: 92px;
}

.top-contact-bar {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 90;
}

.site-header {
    top: 36px;
}

.site-header.scrolled {
    top: 0;
}

section[id] {
    scroll-margin-top: 92px;
}

#home {
    scroll-margin-top: 0;
}

/* Footer social icons: compact size */
.footer-social-icons {
    gap: 9px;
}

.footer-icon-link {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
}

.footer-icon-link svg {
    width: 18px !important;
    height: 18px !important;
}

@media(max-width: 760px) {
    html {
        scroll-padding-top:76px;
    }

    .site-header {
        top: 32px;
    }

    .site-header.scrolled {
        top: 0;
    }

    section[id] {
        scroll-margin-top: 76px;
    }

    #home {
        scroll-margin-top: 0;
    }

    .footer-icon-link {
        width: 34px !important;
        height: 34px !important;
        min-width: 34px !important;
        min-height: 34px !important;
    }

    .footer-icon-link svg {
        width: 16px !important;
        height: 16px !important;
    }
}

/* Final requirement updates */
.nav {
    font-size: .9rem;
    gap: 25px
}

.nav>a {
    font-size: inherit
}

.booking-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.booking-note {
    font-size: 16px;
    color: var(--muted);
    margin-top: 10px;
    line-height: 1.5
}

.floating-wa b {
    display: inline!important;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .02em
}

.floating-wa {
    width: auto!important;
    min-width: 56px;
    padding: 0 16px!important;
    border-radius: 999px!important;
    gap: 8px
}

@media(max-width: 760px) {
    .nav {
        font-size:.95rem;
        gap: 18px
    }

    .booking-fields {
        grid-template-columns: 1fr
    }

    .floating-wa {
        width: 52px!important;
        min-width: 52px;
        padding: 0!important
    }

    .floating-wa b {
        display: none!important
    }
}

section[id] {
    scroll-margin-top: 92px
}

@media(max-width: 600px) {
    .floating-wa,.floating-booking {
        right:16px;
        width: 48px;
        height: 48px
    }

    .floating-wa {
        bottom: 16px
    }

    .floating-booking {
        bottom: 74px
    }

    .booking-modal {
        padding: 12px
    }

    .booking-dialog {
        padding: 27px 20px;
        max-height: 92vh
    }

    .booking-form-grid {
        grid-template-columns: 1fr
    }

    .booking-heading h3 {
        font-size: 1.55rem
    }
}

/* Final navbar visual fix ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â transparent/dark over the landing hero, solid dark on scroll */
.site-header {
    background: rgba(7,19,33,.28) !important;
    color: #fff !important;
    box-shadow: none !important;
    backdrop-filter: blur(8px);
}

.site-header .brand, .site-header .nav, .site-header .nav>a {
    color: #fff !important;
}

.site-header .nav>a {
    opacity: 1;
    font-size: 1rem;
}

.site-header .menu-toggle span {
    background: #fff !important;
}

.site-header.scrolled {
    background: rgba(7,19,33,.96) !important;
    color: #fff !important;
    box-shadow: 0 8px 30px rgba(0,0,0,.18) !important;
}

.site-header.scrolled .brand, .site-header.scrolled .nav, .site-header.scrolled .nav>a {
    color: #000000 !important;
}

.site-header.scrolled .menu-toggle span {
    background: #fff !important;
}

.back-top {
    bottom: 150px;
    z-index: 95;
}

@media(max-width: 760px) {
    .site-header {
        background:rgba(7,19,33,.48) !important;
    }

    .site-header.scrolled {
        background: rgba(7,19,33,.96) !important;
    }

    .site-header .nav {
        background: rgba(7,19,33,.98) !important;
    }

    .site-header .nav>a {
        font-size: .98rem;
    }

    .back-top {
        right: 14px;
        bottom: 136px;
        z-index: 95;
    }
}

/* Landing-page navigation: keep section links on the home page and account for the sticky header. */
section[id] {
    scroll-margin-top: 110px;
}

#home {
    scroll-margin-top: 0;
}

/* Final navbar clarity fix: no blur over the hero image */
.site-header, .site-header.scrolled {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
}

.site-header {
    background: rgba(7,19,33,.34) !important;
}

.site-header.scrolled {
    background: rgba(7,19,33,.96) !important;
}

/* FINAL NAVBAR LOOK: hero overlay first, dark solid while scrolling */
.site-header {
    position: relative !important;
    top: 0px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    background: #fff !important;
    color: #fff !important;
}

.site-header.scrolled {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: rgb(255 255 255 / 97%) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: 0 8px 24px rgba(0,0,0,.22) !important;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
}

.site-header .nav > a {
    color: #000000 !important;
    text-shadow: 0 1px 3px rgba(0,0,0,.35)
}

.site-header .nav > a.nav-cta {
    color: #111 !important;
    text-shadow: none
}

.site-header .brand img {
    filter: none !important
}

.site-header .header-wa, .site-header .header-social {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important
}
@media(max-width: 999px){
	.top-contact-inner {
    width: min(1180px, 92%);
}
}
@media(max-width: 760px) {
    .site-header {
        top:0px !important
    }

    .site-header.scrolled {
        top: 0 !important
    }

    .site-header .nav {
        background: #071321 !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important
    }

    .site-header .nav > a,
    .site-header.scrolled .nav > a {
        color: #fff !important;
        text-shadow: none !important
    }

    .site-header .nav > a.nav-cta,
    .site-header.scrolled .nav > a.nav-cta {
        color: #111 !important
    }
}

/* Final image clarity override */
.hero-grid,
.hero-overlay,
.gallery-item::after,
.service-visual::after,
.video-shade,
.vision-overlay {
    display: none !important;
}
.gallery-item:hover img { opacity: 1 !important; }

/* Homepage slider: show the original image without dark content panels. */
.hero-slide,
.hero-slide.active {
    filter: none !important;
    background-blend-mode: normal !important;
}
.hero-content h1,
.hero-meta {
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}
.hero-content h1 {
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-shadow: 0 3px 12px rgba(0,0,0,.9);
}
.hero-meta {
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-shadow: 0 2px 8px rgba(0,0,0,.9);
}

/* Restore the original homepage slider presentation. */
.hero-grid {
    display: block !important;
}
.hero-content h1 {
    display: inline-block;
    padding: 14px 20px !important;
    border-radius: 8px;
    background: rgba(0,0,0,.55) !important;
}
.hero-meta {
    width: fit-content;
    padding: 22px 26px 16px !important;
    border-radius: 10px;
    background: rgba(0,0,0,.55) !important;
}

/* Exact starting hero layout */
.hero-content {
    height: 100%;
    width: min(1180px,92%);
    margin: auto;
    padding-top: clamp(175px,22vh,205px);
    padding-bottom: 70px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.hero-content h1 {
    max-width: 820px;
    margin: 17px 0;
    padding: 0 !important;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
    font-size: clamp(2.8rem,5.1vw,5.4rem);
    line-height: .98;
    letter-spacing: -.055em;
    text-shadow: 0 2px 12px rgba(0,0,0,.45);
}
.hero-actions { margin-top: 22px; }
.hero-meta {
    width: auto;
    gap: 50px;
    margin-top: 34px;
    padding: 0 !important;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
}
.hero-meta div { padding: 0; }
.hero-meta div:not(:first-child) { border-left: 0; }
.hero-meta div::before { display: none; }
@media(max-width:760px){
    .hero-content{padding-top:135px;padding-bottom:30px}
    .hero-content h1{font-size:clamp(2.35rem,12vw,3.8rem);margin:12px 0}
    .hero-meta{gap:20px;margin-top:24px}
}

/* Slider copied from the user-provided old Civilion project. */
.hero {
    height: 500px;
    min-height: 500px;
}
.hero-content {
    width: min(1180px,92%);
    height: 100%;
    margin-left: 0;
    margin-right: auto;
    padding-top: 145px;
    padding-right: 0;
    padding-bottom: 20px;
    padding-left: 52px;
    transform: none;
}
.hero-content h1 {
    max-width: 820px;
    margin: 6px 0;
    padding: 14px 20px !important;
    border-radius: 8px;
    background: rgba(0,0,0,.55) !important;
    font-size: clamp(2.3rem,4.5vw,4rem);
}
.hero-actions { margin-top: 10px; }
.hero-meta {
    width: fit-content;
    margin-top: 20px;
    gap: 0;
    padding: 22px 26px 16px !important;
    border-radius: 10px;
    background: rgba(0,0,0,.55) !important;
}
.hero-meta div { position:relative;padding:0 26px; }
.hero-meta div:first-child { padding-left:0; }
.hero-meta div:not(:first-child) { border-left:1px solid rgba(255,255,255,.35); }
.hero-meta div::before { display:block;content:"";position:absolute;left:26px;top:-12px;width:22px;height:2px;background:var(--gold2); }
.hero-meta div:first-child::before { left:0; }
@media(max-width:760px){
    .hero{height:510px;min-height:510px}
    .hero-content{padding-top:105px;padding-right:4%;padding-bottom:15px;padding-left:4%}
    .hero-content h1{font-size:clamp(2rem,8vw,3rem);margin:6px 0}
    .hero-actions{margin-top:10px}
    .hero-meta{margin-top:16px;gap:18px}
}
@media(max-width:450px){
    .hero{height:490px;min-height:490px}
    .hero-content{padding-top:95px}
}

/* ===== INNER PAGE FIXES — override homepage-only rules ===== */
.site-header.inner-header {
    position: sticky !important;
    top: 0 !important;
    left: auto !important;
    right: auto !important;
    background: #fff !important;
    color: #172331 !important;
    z-index: 1000 !important;
    box-shadow: 0 3px 18px rgba(7,19,33,.07) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}
.site-header.inner-header .brand,
.site-header.inner-header .nav,
.site-header.inner-header .nav > a {
    color: #172331 !important;
    text-shadow: none !important;
}
.site-header.inner-header .nav > a.nav-cta {
    color: #111 !important;
}
.site-header.inner-header .menu-toggle span {
    background: #fff !important;
}
.site-header.inner-header.scrolled {
    background: #fff !important;
    box-shadow: 0 3px 18px rgba(7,19,33,.12) !important;
    position: fixed !important;
    top: 0 !important;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
}
.site-header.inner-header.scrolled .brand,
.site-header.inner-header.scrolled .nav,
.site-header.inner-header.scrolled .nav > a {
    color: #172331 !important;
}
@media(max-width:760px){
    .site-header.inner-header {
        background: #fff !important;
    }
    .site-header.inner-header .nav {
        background: #071321 !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    .site-header.inner-header .nav > a,
    .site-header.inner-header.scrolled .nav > a {
        color: #fff !important;
        text-shadow: none !important;
    }
}
