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

html {
  scroll-behavior: smooth
}

body {
  font-family: "Manrope", sans-serif;
  background: #131313;
  color: #E5E2E1;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}

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

a {
  text-decoration: none;
  color: inherit
}

::-webkit-scrollbar {
  width: 3px
}

::-webkit-scrollbar-track {
  background: #131313
}

::-webkit-scrollbar-thumb {
  background: #E9C176
}

.serif {
  font-family: "Newsreader", serif
}

.serif-i {
  font-family: "Newsreader", serif;
  font-style: italic
}

/* PROGRESS */
#pb {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, #E9C176, #C5A059);
  width: 0%;
  z-index: 9999
}

/* CURSOR */
#cdot,
#cring {
  display: none;
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  top: 0;
  left: 0;
  border-radius: 50% !important
}

@media(pointer:fine) {
  #cdot {
    display: block;
    width: 6px;
    height: 6px;
    background: #E9C176;
    mix-blend-mode: difference
  }

  #cring {
    display: block;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(233, 193, 118, .35);
    transition: width .3s, height .3s, border-color .3s
  }
}

/* ── NAV — NON-STICKY (absolute, overlays hero only) ── */
#nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 600;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  background: linear-gradient(to bottom, rgba(13, 13, 13, .85), transparent);
  border-bottom: none;
}

#nav.scrolled {
  background: transparent;
}

#nav.at-top {
  background: linear-gradient(to bottom, rgba(13, 13, 13, .7), transparent)
}

.nav-logo-wrap {
  width: 160px;
  height: 44px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
}

.nav-logo-wrap .nav-logo {
  height: 100% !important;
  width: auto !important;
  max-width: 180px !important;
  transform: none !important;
  object-fit: contain !important;
  object-position: left center !important;
}

/* Hamburger */
.ham {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 700
}

.ham span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #E5E2E1;
  transition: all .35s;
  transform-origin: center
}

.ham.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg)
}

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

.ham.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg)
}

/* ── SIDEBAR — slides over page, NO push ── */
#sb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .7);
  z-index: 700;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
  backdrop-filter: blur(6px)
}

#sb-overlay.open {
  opacity: 1;
  pointer-events: all
}

#sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(380px, 90vw);
  background: linear-gradient(160deg, #0a0a0a 0%, #111010 60%, #0e0d0b 100%);
  z-index: 800;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.16, 1, .3, 1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(233, 193, 118, .1);
  overflow-y: auto;
  box-shadow: -20px 0 60px rgba(0,0,0,.6);
}

#sidebar.open {
  transform: translateX(0)
}

.sb-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(233, 193, 118, .08);
  position: sticky;
  top: 0;
  background: linear-gradient(160deg, #0a0a0a 0%, #111010 100%);
  z-index: 2;
  flex-shrink: 0;
}

.sb-logo {
  height: 38px;
  width: auto
}

.sb-close {
  width: 36px;
  height: 36px;
  border-radius: 50% !important;
  background: rgba(233, 193, 118, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid rgba(233, 193, 118, .15);
  transition: all .3s;
  flex-shrink: 0
}

.sb-close:hover {
  background: rgba(233, 193, 118, .12);
  border-color: rgba(233, 193, 118, .4);
  transform: rotate(90deg);
}

.sb-close svg {
  width: 14px;
  height: 14px;
  stroke: #E9C176
}

.sb-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  gap: 0;
}

.sb-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  font-family: "Newsreader", serif;
  font-size: 1.55rem;
  font-weight: 400;
  color: rgba(229, 226, 225, .4);
  border-bottom: 1px solid rgba(233, 193, 118, .05);
  cursor: pointer;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
  text-decoration: none;
  letter-spacing: -.01em;
  position: relative;
}

.sb-link::after {
  content: "→";
  font-size: .85rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: all .3s;
  color: #E9C176;
  font-family: "Manrope", sans-serif;
}

.sb-link:hover {
  color: #E5E2E1;
  padding-left: 40px;
  background: rgba(233, 193, 118, .03);
}

.sb-link:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.sb-link.active {
  color: #E9C176;
  font-style: italic;
}

.sb-link.active::after {
  opacity: 1;
  transform: translateX(0);
}

.sb-footer {
  padding: 28px 32px;
  flex-shrink: 0;
  border-top: 1px solid rgba(233, 193, 118, .08);
  background: rgba(233, 193, 118, .02);
}

.sb-phone {
  font-family: "Newsreader", serif;
  font-size: 1.25rem;
  font-style: italic;
  color: #E9C176;
  margin-bottom: 8px;
  display: block;
  letter-spacing: .01em;
}

.sb-addr {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(229, 226, 225, .18);
  line-height: 1.6
}

/* REVEAL */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.16, 1, .3, 1), transform .9s cubic-bezier(.16, 1, .3, 1)
}

.rv.on {
  opacity: 1;
  transform: none
}

.rvl {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity .9s cubic-bezier(.16, 1, .3, 1), transform .9s cubic-bezier(.16, 1, .3, 1)
}

.rvl.on {
  opacity: 1;
  transform: none
}

.rvr {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .9s cubic-bezier(.16, 1, .3, 1), transform .9s cubic-bezier(.16, 1, .3, 1)
}

.rvr.on {
  opacity: 1;
  transform: none
}

.d1 {
  transition-delay: .08s
}

.d2 {
  transition-delay: .16s
}

.d3 {
  transition-delay: .24s
}

.d4 {
  transition-delay: .32s
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: #0a0a0a;
}

#hbg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1600585154526-990dced4db0d?w=1920&q=95&fit=crop") center/cover no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}

#hbg.loaded {
  transform: scale(1)
}

.ho {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 13, .97) 0%, rgba(13, 13, 13, .6) 40%, rgba(13, 13, 13, .2) 75%, transparent 100%)
}

.ho2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13, 13, 13, .65) 0%, rgba(13, 13, 13, .25) 50%, transparent 100%)
}

.h-inner {
  position: relative;
  z-index: 2;
  padding: 0 64px 72px;
  width: 100%;
  max-width: 100%
}

.h-eye {
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #E9C176;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: all .8s .3s
}

.h-eye::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #E9C176;
  opacity: .7
}

.h-h1 {
  font-family: "Newsreader", serif;
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -.02em;
  color: #fff;
  opacity: 0;
  transform: translateY(16px);
  transition: all .9s .44s
}

.h-h1 em {
  font-style: italic;
  color: #E9C176;
  font-weight: 300
}

.h-sub {
  font-size: .97rem;
  color: rgba(209, 197, 180, .62);
  line-height: 1.82;
  max-width: 500px;
  margin: 24px 0 36px;
  opacity: 0;
  transform: translateY(10px);
  transition: all .8s .72s
}

.h-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(10px);
  transition: all .8s .86s
}

.btn-gold {
  background: linear-gradient(135deg, #E9C176, #C5A059);
  color: #412D00;
  padding: 14px 36px;
  font-size: .7rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: opacity .3s
}

.btn-gold:hover {
  opacity: .88
}

.btn-ghost {
  border: 1px solid rgba(229, 226, 225, .18);
  color: rgba(229, 226, 225, .6);
  padding: 14px 36px;
  font-size: .7rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  font-weight: 500;
  background: transparent;
  display: inline-block;
  transition: all .3s
}

.btn-ghost:hover {
  border-color: #E9C176;
  color: #E9C176
}



/* TICKER */
.twrap {
  background: #0E0E0E;
  padding: 13px 0;
  overflow: hidden;
  border-top: 1px solid rgba(78, 70, 57, .18);
  border-bottom: 1px solid rgba(78, 70, 57, .18)
}

.ttrack {
  display: flex;
  width: max-content;
  animation: tick 38s linear infinite
}

.twrap:hover .ttrack {
  animation-play-state: paused
}

@keyframes tick {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.titem {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(229, 226, 225, .22);
  font-weight: 500;
  white-space: nowrap
}

.tdot {
  width: 3px;
  height: 3px;
  background: #E9C176;
  flex-shrink: 0
}

/* ── ABOUT — FULL WIDTH ── */
#about {
  background: #0E0E0E;
  padding: 72px 0
}

.ab-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%
}

.ab-left {
  padding: 60px 64px 60px 64px;
  position: relative;
  overflow: hidden;
}

.ab-bg-num {
  font-family: "Newsreader", serif;
  font-weight: 700;
  line-height: 1;
  color: rgba(233, 193, 118, .05);
  position: absolute;
  bottom: -40px;
  left: -20px;
  user-select: none;
  pointer-events: none;
  font-size: clamp(180px, 22vw, 300px);
  letter-spacing: -.04em;
}

.ab-right {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.ab-right-content {
  padding: 60px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(78, 70, 57, .08)
}


.ab-right-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: brightness(.68) saturate(.82);
  transition: transform 9s ease;
}

.ab-right:hover .ab-right-img {
  transform: scale(1.04)
}

.ab-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 52px;
  height: 52px;
  border-left: 2px solid #E9C176;
  border-top: 2px solid #E9C176;
  z-index: 2;
  pointer-events: none
}

.ab-right::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52px;
  height: 52px;
  border-right: 2px solid #E9C176;
  border-bottom: 2px solid #E9C176;
  z-index: 2;
  pointer-events: none
}

/* STATS — below the 2-column grid, full width strip */
.ab-stats {
  display: none;
  /* hidden */
}

.stat-n {
  font-family: "Newsreader", serif;
  font-size: 2rem;
  font-weight: 600;
  color: #E9C176;
  line-height: 1;
  display: block
}

.stat-n em {
  font-style: normal;
  font-size: 1.1rem;
  font-weight: 400
}

.stat-l {
  font-size: .56rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(229, 226, 225, .28);
  margin-top: 3px
}


.stat-item:nth-child(3) {
  border-right: 1px solid rgba(78, 70, 57, .15);
  border-top: 1px solid rgba(78, 70, 57, .15)
}

.stat-item:nth-child(4) {
  border-right: none;
  border-top: 1px solid rgba(78, 70, 57, .15)
}
}

/* PROPERTY PANELS */
.panels {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0;
  padding: 0;
}

.panel {
  position: relative;
  overflow: hidden;
  height: 65vh;
  min-height: 400px;
  width: 100%;
  border-radius: 0;
  cursor: default;
}

.panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 2s ease;
  filter: brightness(.7)
}

.panel:hover img {
  transform: scale(1.08)
}

.panel-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 13, .88) 0%, rgba(13, 13, 13, .2) 50%, transparent 100%);
  transition: background .5s
}

.panel:hover .panel-ov {
  background: linear-gradient(to top, rgba(13, 13, 13, .68) 0%, rgba(13, 13, 13, .1) 50%, transparent 100%)
}

.panel-c {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px
}

.panel-t {
  font-family: "Newsreader", serif;
  font-size: 1.75rem;
  color: #E5E2E1;
  margin-bottom: 6px
}

.panel-s {
  font-size: .63rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #E9C176;
  font-weight: 500
}

/* PROJECTS */
#projects {
  background: #131313;
  padding: 80px 0 0
}

.proj-head {
  padding: 0 64px 52px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end
}

.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(78, 70, 57, .2)
}

.proj-card {
  position: relative;
  overflow: hidden;
  background: #131313
}

.proj-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  filter: brightness(.75) saturate(.85);
  transition: transform .7s, filter .7s
}

.proj-card:hover .proj-img {
  transform: scale(1.06);
  filter: brightness(.9) saturate(.95)
}

.proj-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(19, 19, 19, .85);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  font-size: .56rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #E9C176;
  font-weight: 600
}

.proj-info {
  padding: 20px 22px 24px;
  background: #131313
}

.proj-dev {
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #E9C176;
  font-weight: 700;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 8px
}

.proj-dev::before {
  content: "";
  width: 10px;
  height: 1.5px;
  background: #E9C176
}

.proj-name {
  font-family: "Newsreader", serif;
  font-size: 1.3rem;
  color: #E5E2E1;
  margin-bottom: 4px;
  line-height: 1.25
}

.proj-detail {
  font-size: .76rem;
  color: rgba(229, 226, 225, .35)
}

/* ── DEVELOPER NETWORK ── */
#devnet {
  background: #0E0E0E;
  padding: 52px 0 48px;
  overflow: hidden
}

.devnet-head {
  text-align: center;
  padding: 0 32px;
  margin-bottom: 48px
}

.devnet-row {
  overflow: hidden;
  margin-bottom: 2px;
  padding: 6px 0
}

.devnet-track {
  display: flex;
  gap: 2px;
  width: max-content
}

.devnet-row.r1 .devnet-track {
  animation: marqL 15s linear infinite
}

.devnet-row.r2 .devnet-track {
  animation: marqR 15s linear infinite
}

.devnet-row:hover .devnet-track {
  animation-play-state: paused
}

/* Separator between logos in track */
.dlc {
  position: relative
}

.dlc::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(78, 70, 57, .15);
  display: none;
}

@keyframes marqL {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes marqR {
  0% {
    transform: translate3d(-50%, 0, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

/* ── Marquee track wrapper ─────────────────────── */
.marq-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  /* natural width of all duplicated cards */
  will-change: transform;
}

.marq-track-l {
  animation: marqL 38s linear infinite;
}

.marq-track-r {
  animation: marqR 32s linear infinite;
}

/* ── Logo card ─────────────────────────────────── */
.dlc {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  /* fixed width keeps cards from collapsing / overlapping */
  width: 140px;
  height: 110px;
  flex: 0 0 140px;
  /* no shrink, no grow */
  cursor: default;
  transition: opacity .35s;
}

/* mobile: smaller cards so more fit, less overlap risk */
@media (max-width: 767px) {
  .dlc {
    width: 110px;
    flex: 0 0 110px;
    height: 90px;
  }
}

.dlc:hover {
  opacity: 1;
}

.dlc-img-wrap {
  height: 52px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.dlc-img {
  max-height: 46px;
  max-width: 90%;
  object-fit: contain;
  opacity: .95;
  transition: opacity .4s;
  display: block;
}

/* Bank-specific aggressive zoom logic */
.bnk-marq .dlc {
  height: 125px;
  gap: 10px;
  padding: 0 42px;
  overflow: visible;
}

.bnk-marq .dlc-img-wrap {
  height: 58px;
  width: 120px;
  overflow: hidden;
  border-radius: 4px;
}

.bnk-marq .dlc-img {
  max-height: 100% !important;
  max-width: none !important;
  width: 155% !important;
  transform: scale(2.6) !important;
}

@media (min-width: 992px) {
  .bnk-marq .dlc-img-wrap {
    width: 140px;
  }

  .bnk-marq .dlc-img {
    width: 125% !important;
    transform: scale(1.9) !important;
  }
}

img.dlc-img[src$=".png"] {
  filter: brightness(0) invert(1);
}

img.dlc-img[src$=".jpeg"],
img.dlc-img[src$=".jpg"] {
  filter: none;
  opacity: 1;
}

.dlc:hover .dlc-img {
  opacity: .7
}

.dlc:hover img.dlc-img[src$=".jpeg"],
.dlc:hover img.dlc-img[src$=".jpg"] {
  opacity: 1;
}

/* Fallback when no image */
.dlc-fb {
  display: none;
  align-items: center;
  justify-content: center;
  height: 36px;
  font-family: "Newsreader", serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: rgba(233, 193, 118, .22);
  transition: color .35s;
}

.dlc:hover .dlc-fb {
  color: rgba(233, 193, 118, .55)
}

.dlc-n {
  font-size: .88rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #FFFFFF;
  font-weight: 800;
  text-align: center;
  transition: color .35s;
  margin-top: 6px;
}

.dlc:hover .dlc-n {
  color: rgba(229, 226, 225, .5)
}

.dlc-s {
  display: none
}

/* Separator between logos */
.dlc+.dlc::before {
  display: none
}

/* SERVICES */
#services {
  background: #131313;
  padding: 80px 0
}

.svc-head {
  padding: 0;
  margin-bottom: 0
}

.svc-head-inner {
  padding: 0 64px 48px
}

.svc-items {
  display: flex;
  flex-direction: column
}

.svc-row {
  display: grid;
  grid-template-columns: 72px 1fr 1fr;
  gap: 0;
  padding: 36px 64px;
  border-top: 1px solid rgba(78, 70, 57, .15);
  transition: background .35s;
}

.svc-row:last-child {
  border-bottom: 1px solid rgba(78, 70, 57, .15)
}

.svc-row:hover {
  background: rgba(28, 27, 27, .7)
}

.svc-n {
  font-family: "Newsreader", serif;
  font-size: .95rem;
  color: rgba(233, 193, 118, .45);
  font-weight: 600;
  letter-spacing: .06em;
  padding-top: 4px
}

.svc-title {
  font-family: "Newsreader", serif;
  font-size: 1.6rem;
  color: #E5E2E1;
  font-weight: 400;
  line-height: 1.2;
  transition: color .3s
}

.svc-row:hover .svc-title {
  color: #E9C176
}

.svc-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  font-size: .58rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(233, 193, 118, .55);
  font-weight: 700
}

.svc-pill::before {
  content: "";
  width: 10px;
  height: 1.5px;
  background: rgba(233, 193, 118, .55)
}

.svc-desc {
  font-size: .87rem;
  line-height: 1.84;
  color: rgba(209, 197, 180, .42);
  padding-top: 4px
}

.svc-shift {
  background: #0E0E0E;
  padding: 44px 64px;
  display: grid;
  grid-template-columns: 72px 1fr 1fr;
  gap: 0;
  border-top: 2px solid;
  border-image: linear-gradient(90deg, #E9C176, #C5A059, transparent) 1;
}

.shift-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(78, 70, 57, .1);
  align-self: start
}

.sm-item {
  background: #0E0E0E;
  padding: 18px 16px;
  transition: background .3s
}

.sm-item:hover {
  background: #1C1B1B
}

.sm-n {
  font-family: "Newsreader", serif;
  font-size: 1.4rem;
  color: #E9C176;
  display: block;
  line-height: 1
}

.sm-l {
  font-size: .55rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(229, 226, 225, .18);
  margin-top: 3px
}

/* FEE */
#fee {
  background: #0E0E0E;
  padding: 88px 0;
  position: relative;
  overflow: hidden
}

.fee-bg {
  font-family: "Newsreader", serif;
  font-weight: 700;
  line-height: 1;
  color: rgba(233, 193, 118, .022);
  position: absolute;
  right: -5%;
  bottom: -15%;
  pointer-events: none;
  user-select: none;
  font-size: clamp(200px, 30vw, 400px);
  letter-spacing: -.04em
}

.fee-inner {
  display: none; /* deprecated */
}

/* Full-width 2-column fee grid */
.fee-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
  border-top: 1px solid rgba(78, 70, 57, .15);
  border-bottom: 1px solid rgba(78, 70, 57, .15);
}

.fee-lhs {
  padding: 56px 64px 56px 64px;
  border-right: 1px solid rgba(78, 70, 57, .15);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fee-rhs {
  padding: 56px 64px 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media(max-width: 768px) {
  .fee-full-grid {
    grid-template-columns: 1fr;
  }
  .fee-lhs {
    padding: 40px 24px;
    border-right: none;
    border-bottom: 1px solid rgba(78, 70, 57, .15);
  }
  .fee-rhs {
    padding: 40px 24px;
  }
}

.fee-big {
  font-family: "Newsreader", serif;
  font-size: clamp(9rem, 14vw, 13rem);
  font-weight: 600;
  line-height: .85;
  color: #E9C176;
  letter-spacing: -.04em;
  display: block
}

.fee-label {
  font-size: .63rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(229, 226, 225, .2);
  margin-top: 10px;
  margin-bottom: 44px
}

.fee-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(78, 70, 57, .15)
}

.fee-blk {
  background: #131313;
  padding: 26px 22px;
  transition: background .3s;
  position: relative;
  overflow: hidden
}

.fee-blk::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #E9C176;
  transition: width .5s
}

.fee-blk:hover {
  background: #1C1B1B
}

.fee-blk:hover::after {
  width: 100%
}

.fee-pct {
  font-family: "Newsreader", serif;
  font-size: 2.7rem;
  font-weight: 500;
  color: #E9C176;
  display: block;
  line-height: 1
}

.fee-when {
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(229, 226, 225, .28);
  margin-top: 5px;
  font-weight: 500
}

.fee-det {
  font-size: .79rem;
  color: rgba(229, 226, 225, .25);
  margin-top: 6px;
  line-height: 1.65
}

.fee-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  filter: brightness(.4) saturate(.6);
  margin-bottom: 24px;
  transition: filter .5s
}

.fee-img:hover {
  filter: brightness(.55) saturate(.75)
}

.fee-cks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px
}

.fee-ck {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 15px;
  background: #131313;
  border-left: 2px solid #E9C176;
  transition: background .3s
}

.fee-ck:hover {
  background: #1C1B1B
}

.fee-ck svg {
  flex-shrink: 0;
  margin-top: 1px;
  width: 15px;
  height: 15px;
  stroke: #E9C176
}

.fee-ck-t {
  font-size: .82rem;
  color: rgba(229, 226, 225, .38);
  line-height: 1.58
}

.fee-ck-t strong {
  color: rgba(229, 226, 225, .72);
  font-weight: 600
}

/* LOAN */
#loan {
  background: #131313;
  padding: 0
}

.loan-hero {
  position: relative;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: flex-end
}

.loan-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.32) saturate(.6)
}

.loan-ho {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13, 13, 13, .93) 0%, rgba(13, 13, 13, .55) 55%, rgba(13, 13, 13, .1) 100%)
}

.loan-hc {
  position: relative;
  z-index: 2;
  padding: 0 64px 48px;
  max-width: 680px
}

.loan-big {
  font-family: "Newsreader", serif;
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 700;
  color: #E5E2E1;
  line-height: .88;
  display: block
}

.loan-big em {
  color: #E9C176;
  font-style: normal;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 500
}

.loan-lbl {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(229, 226, 225, .32);
  font-weight: 500;
  margin-bottom: 20px;
  margin-top: 6px
}

.loan-sub {
  font-size: .88rem;
  color: rgba(209, 197, 180, .5);
  line-height: 1.7;
  max-width: 420px
}

.loan-feats {
  background: #0E0E0E;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0
}

.lf {
  display: flex;
  gap: 18px;
  padding: 26px 48px;
  border-bottom: 1px solid rgba(78, 70, 57, .12);
  transition: padding-left .3s
}

.lf:nth-child(odd) {
  border-right: 1px solid rgba(78, 70, 57, .12)
}

.lf:hover {
  padding-left: 58px
}

.lf:nth-child(even):hover {
  padding-left: 24px
}

.lf-bar {
  width: 2px;
  background: #E9C176;
  flex-shrink: 0;
  opacity: .75
}

.lf-t {
  font-family: "Newsreader", serif;
  font-size: 1.05rem;
  color: #E5E2E1;
  margin-bottom: 4px
}

.lf-d {
  font-size: .8rem;
  line-height: 1.7;
  color: rgba(209, 197, 180, .38)
}

/* Bank logos strip */
.banks-strip {
  background: #0E0E0E;
  padding: 36px 72px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 0;
  border-top: 1px solid rgba(78, 70, 57, .12);
}

/* Each bank — just the logo, no background, no border */
.bankc {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  cursor: default;
  transition: opacity .35s;
  padding: 0 24px;
}

.bankc:hover {
  opacity: 1
}

.bankc img {
  max-height: 26px;
  max-width: 110px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .22;
  transition: opacity .4s;
  display: block;
}

.bankc:hover img {
  opacity: .6
}

.bank-txt {
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(229, 226, 225, .22);
  font-weight: 600;
}

@media(max-width:640px) {
  .banks-strip {
    grid-template-columns: repeat(3, 1fr);
    padding: 28px 20px 32px;
    gap: 20px 0
  }

  .bankc {
    padding: 0 12px;
    height: 38px
  }

  .bankc img {
    max-height: 22px;
    max-width: 80px
  }
}

/* PROCESS */
#process {
  background: #0E0E0E;
  padding: 72px 0
}

.proc-wrap {
  max-width: 100%;
  padding: 0 64px;
  margin: 0 auto
}

.proc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-top: 64px
}

.proc-line {
  position: absolute;
  top: 40px;
  left: 16.5%;
  right: 16.5%;
  height: 1px;
  background: rgba(78, 70, 57, .15)
}

.plf {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #E9C176, #C5A059);
  transition: width 2.2s cubic-bezier(.16, 1, .3, 1)
}

.p-step {
  padding: 0 28px;
  text-align: center
}

.p-c {
  width: 80px;
  height: 80px;
  border: 1px solid rgba(78, 70, 57, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: "Newsreader", serif;
  font-size: 2rem;
  font-weight: 400;
  color: rgba(229, 226, 225, .3);
  background: #0E0E0E;
  position: relative;
  z-index: 1;
  transition: all .5s
}

.p-step:hover .p-c {
  background: #1C1B1B;
  border-color: #E9C176;
  color: #E9C176;
  box-shadow: 0 0 0 6px #0E0E0E
}

.p-t {
  font-family: "Newsreader", serif;
  font-size: 1.22rem;
  color: #E5E2E1;
  margin-bottom: 10px;
  transition: color .3s
}

.p-step:hover .p-t {
  color: #E9C176
}

.p-d {
  font-size: .82rem;
  line-height: 1.8;
  color: rgba(209, 197, 180, .38)
}

/* QUOTE */
#quote {
  background: #0a0a0a;
  padding: 120px 64px;
  position: relative;
  overflow: hidden
}

.q-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1600&q=40") center/cover;
  opacity: .04
}

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

.q-mark {
  width: 40px;
  height: 40px;
  margin: 0 auto 28px;
  opacity: .28
}

.q-mark svg {
  width: 100%;
  height: 100%
}

.q-text {
  font-family: "Newsreader", serif;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-style: italic;
  color: rgba(229, 226, 225, .7);
  line-height: 1.48;
  margin-bottom: 32px
}

.q-cite {
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(229, 226, 225, .18);
  font-weight: 600
}

/* CONTACT (Section ID maintained for nav, styles handled via class) */
#contact {
  text-align: center;
}

.ct-inner {
  max-width: 660px;
  margin: 0 auto
}

.ct-h {
  font-family: "Newsreader", serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 500;
  line-height: 1.06;
  color: #E5E2E1;
  margin-bottom: 16px
}

.ct-h em {
  font-style: italic;
  color: #E9C176;
  font-weight: 400
}

.ct-sub {
  font-size: .92rem;
  color: rgba(209, 197, 180, .42);
  line-height: 1.84;
  margin-bottom: 40px
}

.ct-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap
}

/* Real WhatsApp button */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 13px 28px;
  font-size: .7rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background .3s;
}

.btn-wa:hover {
  background: #20b958
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: rgba(229, 226, 225, .4);
  padding: 13px 28px;
  font-size: .7rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid rgba(78, 70, 57, .3);
  transition: all .3s
}

.btn-call:hover {
  border-color: #E9C176;
  color: #E9C176
}

/* WA FLOAT — real logo */
.wafl {
  position: fixed;
  bottom: 24px;
  right: 32px;
  z-index: 500;
  width: 48px;
  height: 48px;
  border-radius: 50% !important;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, .4);
  transition: all .35s;
  text-decoration: none;
  animation: wapop .8s cubic-bezier(.16, 1, .3, 1) 2s both, waring 2.5s ease-out 3s infinite;
}

@keyframes wapop {
  from {
    transform: scale(0);
    opacity: 0
  }

  to {
    transform: scale(1);
    opacity: 1
  }
}

@keyframes waring {
  0% {
    box-shadow: 0 4px 24px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, .4)
  }

  70% {
    box-shadow: 0 4px 24px rgba(37, 211, 102, .45), 0 0 0 14px rgba(37, 211, 102, 0)
  }

  100% {
    box-shadow: 0 4px 24px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, 0)
  }
}

.wafl:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, .55)
}

/* Instagram floating button */
.igfl {
  position: fixed;
  bottom: 82px;
  right: 32px;
  z-index: 500;
  width: 42px;
  height: 42px;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(220, 39, 67, .4);
  transition: all .35s;
  text-decoration: none;
  animation: wapop .8s cubic-bezier(.16, 1, .3, 1) 2.2s both;
}

.igfl:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(220, 39, 67, .55)
}

.wa-pulse {
  display: none
}

/* PRIVACY */
/* ══════════════════════════════════
   PRIVACY — Full Premium Page
══════════════════════════════════ */
#privacy {
  display: none;
  background: #0e0e0e;
  min-height: 100vh;
}

/* Privacy Nav */
.prv-nav {
  position: sticky;
  top: 0;
  z-index: 600;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(10,10,10,.92);
  border-bottom: 1px solid rgba(233,193,118,.08);
  backdrop-filter: blur(12px);
}

.prv-nav-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(233,193,118,.7);
  font-weight: 600;
  transition: color .25s, gap .25s;
}

.prv-nav-back:hover {
  color: #E9C176;
  gap: 12px;
}

/* Hero strip */
.prv-hero {
  border-bottom: 1px solid rgba(78,70,57,.12);
  background: #0a0a0a;
}

.prv-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 72px 64px 60px;
}

/* Content wrap */
.prv-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 64px 100px;
}

.prv-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.prv-block {
  padding: 36px 0;
  border-bottom: 1px solid rgba(78,70,57,.1);
}

.prv-block:first-child {
  padding-top: 0;
}

.prv-h3 {
  font-family: "Newsreader", serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: #E9C176;
  margin-bottom: 16px;
  letter-spacing: -.01em;
}

.prv-block p {
  font-size: .92rem;
  line-height: 1.9;
  color: rgba(209,197,180,.48);
  margin-bottom: 12px;
}

.prv-block p:last-child {
  margin-bottom: 0;
}

.prv-block strong {
  color: rgba(229,226,225,.72);
  font-weight: 600;
}

.prv-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prv-list li {
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(209,197,180,.45);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.prv-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #E9C176;
  flex-shrink: 0;
  margin-top: 8px;
}

.prv-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  font-size: .68rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #E9C176;
  font-weight: 600;
  border-bottom: 1px solid rgba(233,193,118,.3);
  padding-bottom: 3px;
  transition: gap .25s, border-color .25s;
}

.prv-back:hover {
  gap: 12px;
  border-color: rgba(233,193,118,.6);
}

/* Responsive */
@media(max-width:768px) {
  .prv-nav {
    padding: 0 24px;
  }
  .prv-hero-inner {
    padding: 48px 24px 40px;
  }
  .prv-wrap {
    padding: 40px 24px 72px;
  }
}


/* FOOTER */
footer {
  background: #0E0E0E;
  border-top: 1px solid rgba(233, 193, 118, .12)
}

.ft-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding: 60px 64px 48px;
  max-width: 100%;
  border-bottom: 1px solid rgba(78, 70, 57, .18)
}

.ft-n {
  font-family: "Newsreader", serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: #E9C176;
  margin-bottom: 8px
}

.ft-tag {
  font-family: "Newsreader", serif;
  font-size: .88rem;
  font-style: italic;
  color: rgba(229, 226, 225, .45);
  margin-bottom: 12px
}

.ft-desc {
  font-size: .82rem;
  line-height: 1.82;
  color: rgba(229, 226, 225, .38)
}

.ft-ch {
  font-size: .56rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #E9C176;
  margin-bottom: 14px;
  display: block;
  font-weight: 700
}

.ft-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px
}

.ft-links a {
  font-size: .83rem;
  color: rgba(229, 226, 225, .48);
  transition: color .3s, padding-left .3s
}

.ft-links a:hover {
  color: #E9C176;
  padding-left: 6px
}

.ft-cl {
  font-size: .56rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(233, 193, 118, .75);
  font-weight: 600;
  margin-bottom: 3px;
  display: block
}

.ft-cv {
  font-size: .82rem;
  color: rgba(229, 226, 225, .42);
  margin-bottom: 12px
}

.ft-bot {
  padding: 18px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.ft-copy {
  font-size: .67rem;
  letter-spacing: .06em;
  color: rgba(229, 226, 225, .35)
}

.ft-cred {
  font-family: "Newsreader", serif;
  font-size: .88rem;
  font-style: italic;
  color: rgba(233, 193, 118, .85)
}

/* ═══ RESPONSIVE ═══ */
@media(max-width:1024px) {
  .ab-wrap {
    grid-template-columns: 1fr
  }

  .ab-left {
    padding: 60px 32px
  }

  .ab-right {
    height: auto;
    min-height: auto;
    overflow: visible;
    border-left: none;
    border-top: 1px solid rgba(78, 70, 57, .08);
    padding: 40px 32px !important;
    display: block !important
  }

  .ab-right-content {
    padding: 40px 32px;
    border-left: none;
    border-top: 1px solid rgba(78, 70, 57, .08)
  }

  .ab-stats {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    background: #1C1B1B;
    backdrop-filter: none
  }

  .panels {
    height: auto
  }

  .panel {
    height: 340px
  }

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

  .svc-row,
  .svc-shift {
    padding-left: 24px;
    padding-right: 24px;
    grid-template-columns: 48px 1fr
  }

  .svc-shift {
    grid-template-columns: 1fr
  }

  .shift-mini {
    margin-top: 20px
  }

  .svc-desc {
    display: block;
    font-size: .82rem
  }

  .fee-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 28px
  }

  .loan-feats {
    grid-template-columns: 1fr;
    padding: 0
  }

  .lf {
    border-right: none !important;
    padding: 20px 28px !important
  }

  .lf:hover {
    padding-left: 36px !important
  }

  .banks-strip {
    padding: 20px 20px;
    gap: 0;
    overflow-x: auto
  }

  .bankc {
    padding: 0 18px;
    border-right: 1px solid rgba(78, 70, 57, .1);
    flex-shrink: 0
  }

  .proc-wrap {
    padding: 0 28px
  }

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

  .proc-line {
    display: none
  }

  .ft-top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 28px 36px
  }

  .ft-bot {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 16px 28px
  }

  #quote {
    padding: 80px 28px
  }

/* #contact padding removed to ensure full width segment */

  .svc-head-inner {
    padding: 0 32px 40px
  }

  .svc-head {
    padding: 0
  }

  .loan-hc {
    padding: 0 28px 44px
  }

  .proj-head {
    padding: 0 28px 44px
  }
}

@media(max-width:640px) {
  .h-inner {
    padding: 0 18px 56px
  }

  .h-btns {
    flex-direction: column
  }

  .h-btns .btn-gold,
  .h-btns .btn-ghost {
    width: 100%;
    text-align: center;
    padding: 14px
  }

  .ab-left {
    padding: 48px 20px
  }

  .ab-stats {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin: 0;
    background: #1C1B1B;
    backdrop-filter: none
  }

  .ab-right {
    height: auto;
    min-height: auto
  }

  .ab-right-content {
    padding: 28px 20px;
    border-left: none;
    border-top: 1px solid rgba(78, 70, 57, .08)
  }

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

  .fee-big {
    font-size: clamp(6rem, 18vw, 9rem)
  }

  .fee-split {
    grid-template-columns: 1fr 1fr
  }

  .svc-row {
    grid-template-columns: 1fr;
    padding: 24px 20px
  }

  .svc-row .svc-desc {
    display: block;
    margin-top: 10px;
    font-size: .82rem
  }

  .svc-n {
    display: none
  }

  .dlc {
    width: 130px;
    height: 80px
  }

  .ct-btns {
    flex-direction: column
  }

  .btn-wa,
  .btn-call {
    justify-content: center;
    width: 100%
  }

  .proc-wrap {
    padding: 0 18px
  }

  .svc-head-inner {
    padding: 0 20px 36px
  }

  #quote {
    padding: 64px 18px
  }

/* #contact padding removed for full width */

  .ft-top {
    padding: 40px 18px 32px
  }

  .loan-hc {
    padding: 0 18px 36px
  }

  .loan-big {
    font-size: clamp(4rem, 15vw, 7rem)
  }
}

/* ── REVIEWS ── */
#reviews {
  background: #0E0E0E;
  padding: 80px 0
}

.rev-head {
  text-align: center;
  padding: 0 64px;
  margin-bottom: 52px
}

.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(78, 70, 57, .12);
  padding: 0 0
}

.rev-card {
  background: #131313;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background .35s;
}

.rev-card:hover {
  background: #1C1B1B
}

.rev-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px
}

.rev-star {
  width: 14px;
  height: 14px;
  fill: #E9C176
}

.rev-star.empty {
  fill: rgba(233, 193, 118, .2)
}

.rev-text {
  font-family: "Newsreader", serif;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(229, 226, 225, .58);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px
}

.rev-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(78, 70, 57, .2);
  padding-top: 18px
}

.rev-avatar {
  width: 40px;
  height: 40px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(233, 193, 118, .1);
  display: flex;
  align-items: center;
  justify-content: center
}

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

.rev-avatar-init {
  font-family: "Newsreader", serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #E9C176
}

.rev-name {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(229, 226, 225, .7)
}

.rev-detail {
  font-size: .64rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(229, 226, 225, .25);
  margin-top: 2px
}

.rev-type-badge {
  font-size: .56rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #E9C176;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px
}

.rev-type-badge::before {
  content: "";
  width: 10px;
  height: 1.5px;
  background: #E9C176;
  display: block
}

.rev-submit-strip {
  background: #131313;
  border-top: 1px solid rgba(78, 70, 57, .15);
  padding: 36px 64px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.rev-submit-text h3 {
  font-family: "Newsreader", serif;
  font-size: 1.5rem;
  color: #E5E2E1;
  margin-bottom: 6px
}

.rev-submit-text p {
  font-size: .84rem;
  color: rgba(229, 226, 225, .35);
  line-height: 1.6
}

.rev-submit-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.rev-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid rgba(78, 70, 57, .3);
  background: transparent;
  cursor: pointer;
  color: rgba(229, 226, 225, .45);
  transition: all .3s;
}

.rev-btn:hover {
  border-color: #E9C176;
  color: #E9C176
}

.rev-btn.primary {
  background: linear-gradient(135deg, #E9C176, #C5A059);
  color: #412D00;
  border-color: transparent
}

.rev-btn.primary:hover {
  opacity: .9
}

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

  .rev-submit-strip {
    padding: 24px 32px 0
  }

  .rev-head {
    padding: 0 32px
  }
}

@media(max-width:640px) {
  #reviews {
    padding: 60px 0
  }

  .rev-head {
    padding: 0 20px
  }

  .rev-submit-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 20px 0
  }

  .rev-submit-btns {
    width: 100%
  }

  .rev-btn {
    flex: 1;
    justify-content: center
  }
}



@media(max-width:1024px) {
  .ceo-grid {
    grid-template-columns: 1fr !important;
    gap: 52px !important
  }

  #founder>div {
    padding: 0 32px !important
  }
}

@media(max-width:640px) {
  #founder>div {
    padding: 0 20px !important
  }

  .ceo-grid>div:first-child>div {
    height: 300px !important
  }

  .ceo-grid>div:first-child img {
    height: 300px !important
  }

  .ceo-grid>div:first-child>div:first-child>div:last-child {
    bottom: -12px !important;
    right: -8px !important;
    padding: 16px 18px !important
  }
}

/* ══ CONTACT GRID ══ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 480px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 18px 8px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform .2s cubic-bezier(.4, 0, .2, 1), box-shadow .2s ease;
}

.btn-label {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
}

.btn-call {
  background: #1B5E45;
}

.btn-call:hover {
  box-shadow: 0 8px 24px rgba(27, 94, 69, .6);
}

.btn-wa-contact {
  background: #25D366;
}

.btn-wa-contact:hover {
  box-shadow: 0 8px 24px rgba(37, 211, 102, .5);
}


.btn-email {
  background: #C5221F;
}

.btn-email:hover {
  box-shadow: 0 8px 24px rgba(197, 34, 31, .6);
}

.btn-insta {
  background: linear-gradient(90deg, #f09433, #dc2743 50%, #bc1888);
}

.btn-insta:hover {
  box-shadow: 0 8px 24px rgba(220, 39, 67, .5);
}

.btn-fb {
  background: #1877F2;
}

.btn-fb:hover {
  box-shadow: 0 8px 24px rgba(24, 119, 242, .6);
}

/* ══ FOUNDER STATS ══ */
.founder-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: #1C1B1B;
  border: 1px solid rgba(78, 70, 57, 0.3);
  padding: 24px 28px;
  border-radius: 2px;
  margin-bottom: 36px;
}

@media (max-width: 640px) {
  .founder-stats {
    padding: 24px 20px;
    justify-content: center;
    gap: 28px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .founder-stats {
    gap: 20px;
  }

  .founder-stats>div {
    width: 100%;
    margin-bottom: 10px;
  }

  .founder-stats>div:last-child {
    margin-bottom: 0;
  }

  /* Fix for horizontal line spacers on mobile */
  .founder-stats>div[style*="width:1px"] {
    display: none;
  }
}

/* ══ WHATSAPP FLOAT ══ */
/* WA FLOAT — always circular */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 9990;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
  animation: wa-appear .6s cubic-bezier(.16, 1, .3, 1) 1.5s both;
}

@keyframes wa-appear {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 10px 32px rgba(37, 211, 102, .6);
}

.wa-float::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .4);
  animation: wa-pulse 2.4s ease-out infinite;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: .7
  }

  70% {
    transform: scale(1.18);
    opacity: 0
  }

  100% {
    transform: scale(1.18);
    opacity: 0
  }
}

.wa-float-label {
  display: none;
}

@media(max-width:480px) {
  .wa-float {
    width: 54px;
    height: 54px;
    bottom: 1.25rem;
    right: 1.25rem;
  }
}

/* ══ INSTAGRAM FLOAT ══ */
.ig-float {
  position: fixed;
  bottom: calc(1.75rem + 58px + 14px);
  right: 1.75rem;
  z-index: 9990;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #833AB4 0%, #C13584 30%, #E1306C 55%, #F77737 80%, #FCAF45 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(193, 53, 132, .4);
  transition: transform .25s var(--E), box-shadow .25s ease;
  text-decoration: none;
}

.ig-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(193, 53, 132, .4);
  animation: wa-pulse 2.2s ease-out infinite;
  animation-delay: 1.1s;
}

.ig-float:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 24px rgba(193, 53, 132, .55);
}

@media(max-width:480px) {
  .ig-float {
    bottom: calc(1.25rem + 54px + 14px);
    right: 1.25rem;
    width: 50px;
    height: 50px;
  }
}

/* ══════════════════════════════════════════
   PROJ ENHANCEMENTS — location + hot tag
══════════════════════════════════════════ */
.proj-loc {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .65rem;
  letter-spacing: .06em;
  color: rgba(233, 193, 118, .65);
  text-transform: uppercase;
  margin: 6px 0 4px;
}

.proj-tag-hot {
  background: rgba(233, 193, 118, .18) !important;
  color: #E9C176 !important;
  border: 1px solid rgba(233, 193, 118, .35) !important;
}

/* Make proj-grid 3-col on desktop, 2 on tablet, 1 on mobile */
.proj-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(78, 70, 57, .12);
}

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

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

/* ══════════════════════════════════════════
   HERO — fix left-side padding on mobile
══════════════════════════════════════════ */
@media(max-width:768px) {
  .h-inner {
    padding: 0 24px 56px !important;
  }

  .h-h1 {
    font-size: clamp(2.4rem, 9vw, 3.8rem) !important;
  }

  .h-btns {
    flex-direction: column;
    gap: 10px;
  }

  .btn-gold,
  .btn-ghost {
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }
}

/* ══════════════════════════════════════════
   FLOATING BUTTONS — identical size 54×54
══════════════════════════════════════════ */
.wa-float {
  width: 54px !important;
  height: 54px !important;
  bottom: 1.5rem !important;
  right: 1.5rem !important;
}

.ig-float {
  width: 54px !important;
  height: 54px !important;
  bottom: calc(1.5rem + 54px + 12px) !important;
  right: 1.5rem !important;
}

@media(max-width:480px) {
  .wa-float {
    width: 50px !important;
    height: 50px !important;
    bottom: 1.25rem !important;
    right: 1.25rem !important;
  }

  .ig-float {
    width: 50px !important;
    height: 50px !important;
    bottom: calc(1.25rem + 50px + 10px) !important;
    right: 1.25rem !important;
  }
}

/* ══════════════════════════════════════════
   WEB3FORMS CONTACT FORM STYLES
══════════════════════════════════════════ */
.gs-form-wrap {
  background: #1C1B1B;
  border: 1px solid rgba(78, 70, 57, .3);
  padding: 32px 28px 24px;
  margin-bottom: 0;
}

.gf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

@media(max-width:520px) {
  .gf-row {
    grid-template-columns: 1fr
  }
}

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

.gf-label {
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(229, 226, 225, .35);
  font-weight: 600;
}

.gf-input {
  background: #131313;
  border: 1px solid rgba(78, 70, 57, .35);
  color: #E5E2E1;
  font-family: "Manrope", sans-serif;
  font-size: .88rem;
  padding: 11px 14px;
  outline: none;
  transition: border-color .25s;
  width: 100%;
}

.gf-input::placeholder {
  color: rgba(229, 226, 225, .2);
}

.gf-input:focus {
  border-color: rgba(233, 193, 118, .5);
}

.gf-textarea {
  resize: vertical;
  min-height: 80px;
}

.gf-submit {
  width: 100%;
  background: linear-gradient(135deg, #E9C176, #C5A059);
  color: #412D00;
  border: none;
  padding: 14px 28px;
  font-family: "Manrope", sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
}

.gf-submit:hover {
  opacity: .88;
}

.gf-submit:disabled {
  opacity: .55;
  cursor: not-allowed;
}

@keyframes gf-spin {
  to {
    transform: rotate(360deg);
  }
}

.gf-spinner svg {
  animation: gf-spin .8s linear infinite;
}

.gf-success {
  font-size: .82rem;
  color: #4ade80;
  background: rgba(74, 222, 128, .08);
  border: 1px solid rgba(74, 222, 128, .2);
  padding: 10px 14px;
  text-align: center;
}

.gf-error {
  font-size: .82rem;
  color: #f87171;
  background: rgba(248, 113, 113, .08);
  border: 1px solid rgba(248, 113, 113, .2);
  padding: 10px 14px;
  text-align: center;
}

@media(max-width:520px) {
  .gs-form-wrap {
    padding: 24px 16px 18px;
  }
}

/* ══════════════════════════════════════════════════════
   CONTACT SECTION — SPLIT LAYOUT (Elegant / Professional)
══════════════════════════════════════════════════════ */

/* Remove old form styles that conflict */
.gs-form-wrap {
  display: none !important;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: #0E0E0E;
  border-top: 1px solid rgba(78, 70, 57, .12);
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
}

/* ── LEFT PANEL ── */
.contact-left {
  position: relative;
  padding: 40px 48px 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #0E0E0E;
  overflow: hidden;
}

.contact-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .58rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #E9C176;
  font-weight: 700;
  margin-bottom: 28px;
}

.contact-eyebrow-line {
  display: block;
  width: 22px;
  height: 2px;
  background: #E9C176;
  flex-shrink: 0;
}

.contact-heading {
  font-family: "Newsreader", serif;
  font-size: clamp(2.6rem, 4.2vw, 4.2rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 24px;
}

.contact-heading em {
  font-style: italic;
  color: #E9C176;
  font-weight: 300;
}

.contact-desc {
  font-size: .94rem;
  color: rgba(209, 197, 180, .45);
  line-height: 1.85;
  max-width: 400px;
  margin-bottom: 36px;
}

.contact-desc strong {
  color: rgba(229, 226, 225, .7);
  font-weight: 600;
}

.contact-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #E9C176;
  color: #1a0d00;
  padding: 14px 28px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  transition: background .25s, transform .2s, box-shadow .25s;
  width: fit-content;
  margin-bottom: 32px;
}

.contact-call-btn:hover {
  background: #f0cc88;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(233, 193, 118, .35);
}

/* Social pills */
.contact-socials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-social-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 16px;
  border-radius: 100px;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid;
  transition: transform .2s, box-shadow .2s, background .25s;
}

.contact-social-pill:hover {
  transform: translateY(-2px);
}

.contact-social-wa {
  color: #25D366;
  border-color: rgba(37, 211, 102, .3);
  background: rgba(37, 211, 102, .06);
}

.contact-social-wa:hover {
  box-shadow: 0 4px 16px rgba(37, 211, 102, .2);
}

.contact-social-ig {
  color: #f77737;
  border-color: rgba(247, 119, 55, .3);
  background: rgba(247, 119, 55, .06);
}

.contact-social-ig:hover {
  box-shadow: 0 4px 16px rgba(247, 119, 55, .2);
}

.contact-social-fb {
  color: #1877F2;
  border-color: rgba(24, 119, 242, .3);
  background: rgba(24, 119, 242, .06);
}

.contact-social-fb:hover {
  box-shadow: 0 4px 16px rgba(24, 119, 242, .2);
}

.contact-social-gm {
  color: #ea4335;
  border-color: rgba(234, 67, 53, .3);
  background: rgba(234, 67, 53, .06);
}

.contact-social-gm:hover {
  box-shadow: 0 4px 16px rgba(234, 67, 53, .2);
}

/* Watermark */
.contact-watermark {
  position: absolute;
  bottom: -20px;
  left: -10px;
  font-family: "Newsreader", serif;
  font-size: clamp(6rem, 14vw, 12rem);
  font-weight: 700;
  font-style: italic;
  color: rgba(233, 193, 118, .04);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  letter-spacing: -.04em;
  white-space: nowrap;
}

/* ── RIGHT PANEL ── */
.contact-right {
  background: #131313;
  border-left: 1px solid rgba(78, 70, 57, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 56px;
}

/* ── FORM CARD ── */
.gf-card {
  width: 100%;
  max-width: 580px;
}

.gf-card-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(78, 70, 57, .2);
}

.gf-card-title {
  font-family: "Newsreader", serif;
  font-size: 2rem;
  font-weight: 500;
  color: #E5E2E1;
  margin-bottom: 6px;
}

.gf-card-sub {
  font-size: .72rem;
  color: rgba(229, 226, 225, .28);
  letter-spacing: .06em;
}

/* Form rows */
.gf-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

.gf-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.gf-label {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #c4c4c4;
  font-weight: 700;
}

.gf-req {
  color: #E9C176;
  font-size: .75rem;
}

.gf-input {
  background: #191c1a !important;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px !important;
  color: #E5E2E1;
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  padding: 16px 20px;
  outline: none;
  transition: border-color .25s, background .25s, box-shadow .25s;
  width: 100%;
  box-sizing: border-box;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.4);
  -webkit-appearance: none !important;
  appearance: none !important;
}

/* Fix for Chrome generic white autofill */
.gf-input:-webkit-autofill,
.gf-input:-webkit-autofill:hover, 
.gf-input:-webkit-autofill:focus, 
.gf-input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px #191c1a inset !important;
    -webkit-text-fill-color: #E5E2E1 !important;
    transition: background-color 5000s ease-in-out 0s;
    caret-color: #E5E2E1;
}

.gf-input::placeholder {
  color: rgba(229, 226, 225, .15);
}

.gf-input:focus {
  border-color: #2D6A4F;
  background: #1d211f;
  box-shadow: 0 0 0 3px rgba(45, 106, 79, .15), inset 0 2px 4px rgba(0,0,0,0.4);
}

.gf-textarea {
  resize: vertical;
  min-height: 120px;
  border-radius: 12px;
}

/* Submit button */
.gf-submit {
  width: 100%;
  background: #E9C176;
  color: #1a0d00;
  border: none;
  border-radius: 50px;
  padding: 18px 28px;
  font-family: "Manrope", sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .25s, transform .2s, box-shadow .25s, background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(233, 193, 118, 0.28);
}

.gf-submit:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(233, 193, 118, 0.38);
  background: #f0cc88;
}

.gf-submit:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

@keyframes gf-spin {
  to {
    transform: rotate(360deg);
  }
}

.gf-spinner svg {
  animation: gf-spin .8s linear infinite;
}

.gf-success {
  font-size: .82rem;
  color: #4ade80;
  background: rgba(74, 222, 128, .07);
  border: 1px solid rgba(74, 222, 128, .18);
  border-radius: 8px;
  padding: 11px 16px;
  text-align: center;
}

.gf-error {
  font-size: .82rem;
  color: #f87171;
  background: rgba(248, 113, 113, .07);
  border: 1px solid rgba(248, 113, 113, .18);
  border-radius: 8px;
  padding: 11px 16px;
  text-align: center;
}

/* ── RESPONSIVE ── */
@media(max-width:900px) {
  .contact-section {
    grid-template-columns: 1fr;
    min-height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .contact-left {
    padding: 0 24px 48px;
  }

  .contact-right {
    border-left: none;
    border-top: 1px solid rgba(78, 70, 57, .15);
    padding: 48px 32px 60px;
  }

  .contact-watermark {
    display: none;
  }
}

@media(max-width:580px) {
  .contact-left {
    padding: 0 20px 36px;
  }

  .contact-right {
    padding: 36px 20px 48px;
  }

  .gf-card {
    max-width: 100%;
  }

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

/* ── OVERFLOW / WIDTH FIX (global) ── */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Ticker overflow fix */
.twrap {
  overflow: hidden;
  width: 100%;
}