:root {
  --void: #06060a;
  --void2: #0c0c14;
  --void3: #12121e;
  --void4: #1a1a28;
  --cobalt: #2a5fff;
  --cobalt2: #4a7aff;
  --cobalt3: #7aa0ff;
  --cobalt4: #19e407;
  --silver: #c8d4e8;
  --silver2: #8898b4;
  --silver3: #4a5878;
  --ivory: #f4f0e8;
  --ivory2: #e8e2d6;
  --white: #fafbff;
  --accent: #2a5fff;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--void);

  color: var(--white);

  font-family: "Outfit", sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* ─── CURSOR ─── */
#c1,
#c2 {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
#c1 {
  width: 8px;
  height: 8px;
  background: var(--cobalt2);
  top: 0;
  left: 0;
  transition: transform 0.08s;
}
#c2 {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(74, 122, 255, 0.35);
  top: 0;
  left: 0;
  transition:
    transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
    width 0.3s,
    height 0.3s;
}

/* ─── GRAIN ─── */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9995;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.028'/%3E%3C/svg%3E");
  opacity: 0.5;
}

/* ─── GRID OVERLAY ─── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(42, 95, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 95, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 30px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s;
}
nav.stuck {
  background: rgba(6, 6, 10, 0.97);
  backdrop-filter: blur(28px);
  padding: 16px 72px;
  border-bottom: 1px solid rgba(42, 95, 255, 0.12);
}
.n-logo {
  text-decoration: none;
  cursor: none;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.n-logo-main {
  font-family: "Libre Baskerville", serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
}
.n-logo-sub {
  font-size: 8.5px;
  font-weight: 300;
  letter-spacing: 0.55em;
  color: var(--cobalt2);
  text-transform: uppercase;
}
.n-links {
  display: flex;
  gap: 44px;
  list-style: none;
  align-items: center;
}
.n-links a {
  color: rgba(200, 212, 232, 0.48);
  text-decoration: none;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 0.3s;
  cursor: none;
  position: relative;
}
.n-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--cobalt2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.n-links a:hover,
.n-links a.on {
  color: var(--white);
}
.n-links a:hover::after,
.n-links a.on::after {
  transform: scaleX(1);
}
.n-btn {
  background: linear-gradient(135deg, var(--cobalt), #1a3fcc) !important;
  color: var(--white) !important;
  padding: 11px 28px !important;
  font-weight: 500 !important;
  box-shadow: 0 4px 24px rgba(42, 95, 255, 0.4);
  border-radius: 1px;
}
.n-btn::after {
  display: none !important;
}
.n-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(42, 95, 255, 0.6) !important;
  color: var(--white) !important;
}
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
}
.ham span {
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all 0.4s;
}

/* ─── PAGE SYSTEM ─── */
.pg {
  display: none;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}
.pg.on {
  display: block;
}

/* ─── ANIMATIONS ─── */
@keyframes up {
  from {
    opacity: 0;
    transform: translateY(44px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideR {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.rv {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 1s cubic-bezier(0.23, 1, 0.32, 1),
    transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}
.rv.v {
  opacity: 1;
  transform: none;
}
.rv.d1 {
  transition-delay: 0.1s;
}
.rv.d2 {
  transition-delay: 0.22s;
}
.rv.d3 {
  transition-delay: 0.34s;
}
.rv.d4 {
  transition-delay: 0.46s;
}
.rv.d5 {
  transition-delay: 0.6s;
}

/* ─── SECTION COMMONS ─── */
.lbl {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--cobalt2);
  margin-bottom: 18px;
}
.lbl::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--cobalt2);
}
.h2 {
  font-family: "Libre Baskerville", serif;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.04;
  margin-bottom: 22px;
}
.h2 em {
  font-style: italic;
  color: var(--cobalt2);
}
.p {
  font-size: 14.5px;
  font-weight: 300;
  color: rgba(200, 212, 232, 0.55);
  line-height: 1.95;
  letter-spacing: 0.02em;
}
.btn-b {
  background: linear-gradient(135deg, var(--cobalt), #1a3fcc);
  color: var(--white);
  padding: 15px 42px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  border: none;
  transition: all 0.35s;
  box-shadow: 0 6px 28px rgba(42, 95, 255, 0.38);
}
.btn-b:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(42, 95, 255, 0.58);
}
.btn-o {
  background: transparent;
  color: var(--white);
  padding: 15px 42px;
  font-size: 11.5px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  border: 1px solid rgba(200, 212, 232, 0.2);
  transition: all 0.35s;
}
.btn-o:hover {
  border-color: var(--cobalt2);
  color: var(--cobalt2);
}

/* ═══════ HOME PAGE ═══════ */

/* HERO */
#hh {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hh-reel {
  position: absolute;
  inset: 0;
}
.hr {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2s ease;
  background-size: cover;
  background-position: center;
}
.hr.on {
  opacity: 1;
}
.hr::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(6, 6, 10, 0.9) 0%,
    rgba(6, 6, 10, 0.5) 55%,
    rgba(6, 6, 10, 0.75) 100%
  );
}
/* Blue tint strips */
.hr::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    to right,
    transparent,
    var(--cobalt),
    transparent
  );
  z-index: 2;
  opacity: 0.6;
}
.hh-left {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--cobalt),
    transparent
  );
  opacity: 0.3;
}
.hh-inner {
  position: relative;
  z-index: 3;
  padding: 0 72px;
  max-width: 900px;
}
.hh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 10.5px;
  letter-spacing: 0.52em;
  text-transform: uppercase;
  color: var(--cobalt2);
  margin-bottom: 26px;
  opacity: 0;
  animation: up 0.9s 0.3s forwards;
}
.hh-eyebrow span {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--cobalt2);
}
.hh-h1 {
  font-family: "Libre Baskerville", serif;
  font-size: clamp(60px, 9.5vw, 130px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
  opacity: 0;
  animation: up 1s 0.5s forwards;
}
.hh-h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--cobalt2), var(--cobalt3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hh-p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(200, 212, 232, 0.6);
  max-width: 480px;
  line-height: 1.85;
  margin-bottom: 48px;
  opacity: 0;
  animation: up 0.9s 0.75s forwards;
}
.hh-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: up 0.9s 0.95s forwards;
}
/* Slide counter */
.hh-counter {
  position: absolute;
  bottom: 48px;
  right: 72px;
  z-index: 3;
  font-family: "Libre Baskerville", serif;
  font-size: 72px;
  font-weight: 400;
  color: rgba(42, 95, 255, 0.08);
  letter-spacing: 0.05em;
  line-height: 1;
  user-select: none;
}
/* Slide progress */
.hh-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(42, 95, 255, 0.12);
  z-index: 3;
}
.hh-bar {
  height: 100%;
  background: linear-gradient(to right, var(--cobalt), var(--cobalt2));
  width: 0%;
  transition: width 5.8s linear;
}
/* Dots */
.hh-dots {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hd {
  width: 2px;
  height: 24px;
  background: rgba(255, 255, 255, 0.18);
  cursor: none;
  transition: all 0.45s;
}
.hd.on {
  background: var(--cobalt2);
  height: 40px;
}
/* Scroll */
.hh-scroll {
  position: absolute;
  bottom: 46px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(200, 212, 232, 0.28);
}
.hh-sl {
  width: 1px;
  height: 56px;
  background: linear-gradient(var(--cobalt2), transparent);
  animation: sl 2s ease-in-out infinite;
}
@keyframes sl {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
/* Stats */
.hh-stats {
  position: absolute;
  right: 72px;
  bottom: 200px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 32px;
  opacity: 0;
  animation: up 0.9s 1.2s forwards;
}
.hs-n {
  font-family: "Libre Baskerville", serif;
  font-size: 38px;
  font-weight: 400;
  color: var(--cobalt2);
  line-height: 1;
}
.hs-l {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(200, 212, 232, 0.35);
  margin-top: 3px;
}

/* TICKER */
.ticker {
  background: linear-gradient(90deg, var(--cobalt), #1a3fcc 50%, var(--cobalt));
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.ticker-t {
  display: flex;
  gap: 64px;
  animation: tick 32s linear infinite;
  white-space: nowrap;
}
.ti {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 18px;
}
.ti-sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 8px;
}
@keyframes tick {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* INTRO */
#hi-intro {
  background: var(--void);
  display: grid;
  grid-template-columns: 55% 45%;
  overflow: hidden;
}
.ii-img {
  position: relative;
  overflow: hidden;
}
.ii-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 680px;
  display: block;
  transition: transform 0.8s ease;
  filter: saturate(0.9) brightness(0.95);
}
.ii-img:hover img {
  transform: scale(1.04);
  filter: saturate(1.05) brightness(1);
}
.ii-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--void) 100%);
}
/* Blue accent top bar */
.ii-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--cobalt), transparent);
  z-index: 2;
}
.ii-text {
  padding: 80px 72px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--void);
}
.ii-text .p {
  max-width: 100%;
  margin-bottom: 14px;
}
.feat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}
.fc {
  padding: 20px;
  border: 1px solid rgba(42, 95, 255, 0.12);
  background: rgba(42, 95, 255, 0.04);
  transition: all 0.4s;
  cursor: none;
}
.fc:hover {
  background: rgba(42, 95, 255, 0.1);
  border-color: rgba(74, 122, 255, 0.4);
  transform: translateY(-3px);
}
.fc-i {
  font-size: 20px;
  margin-bottom: 8px;
}
.fc-t {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--silver);
}
.fc-d {
  font-size: 11.5px;
  color: rgba(200, 212, 232, 0.4);
  line-height: 1.6;
}

/* PROPERTIES */
#hi-props {
  background: var(--void2);
  padding: 120px 72px;
}
.ph {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 20px;
}
.ptabs {
  display: flex;
  gap: 3px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.pt {
  padding: 8px 20px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(200, 212, 232, 0.1);
  color: rgba(200, 212, 232, 0.4);
  cursor: none;
  transition: all 0.3s;
  background: none;
  font-family: "Outfit", sans-serif;
}
.pt.on {
  background: linear-gradient(135deg, var(--cobalt), #1a3fcc);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(42, 95, 255, 0.4);
}
.pc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pc {
  background: var(--void3);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: none;
  position: relative;
}
.pc:hover {
  transform: translateY(-10px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(42, 95, 255, 0.2);
}
.pc-img {
  height: 285px;
  overflow: hidden;
  position: relative;
}
.pc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  filter: saturate(0.88);
}
.pc:hover .pc-img img {
  transform: scale(1.08);
  filter: saturate(1.05);
}
.pc-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(135deg, var(--cobalt), #1a3fcc);
  color: var(--white);
  padding: 5px 14px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(42, 95, 255, 0.5);
}
.pc-body {
  padding: 26px;
}
.pc-name {
  font-family: "Libre Baskerville", serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 6px;
  color: var(--white);
}
.pc-loc {
  font-size: 11px;
  color: rgba(200, 212, 232, 0.4);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pc-specs {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 0;
  margin-bottom: 16px;
}
.ps {
  flex: 1;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.ps:last-child {
  border-right: none;
}
.ps-v {
  font-size: 16px;
  font-weight: 600;
}
.ps-l {
  font-size: 9px;
  color: rgba(200, 212, 232, 0.35);
  letter-spacing: 0.14em;
  margin-top: 2px;
}
.pc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pc-price {
  font-family: "Libre Baskerville", serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--cobalt2);
}
.pc-price span {
  font-family: "Outfit", sans-serif;
  font-size: 10.5px;
  color: rgba(200, 212, 232, 0.35);
  font-weight: 300;
}
.pc-enq {
  background: transparent;
  border: 1px solid rgba(74, 122, 255, 0.3);
  color: var(--cobalt2);
  padding: 8px 18px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: none;
  transition: all 0.3s;
  font-family: "Outfit", sans-serif;
}
.pc-enq:hover {
  background: var(--cobalt);
  color: var(--white);
  border-color: var(--cobalt);
}
.pc.featured {
  grid-column: span 2;
}
.pc.featured .pc-img {
  height: 360px;
}

/* INTERIORS BANNER */
#hi-int {
  position: relative;
  overflow: hidden;
  background: var(--void);
}
.int-hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.int-hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1800&q=90")
    center/cover fixed;
}
.int-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(6, 6, 10, 0.92) 0%,
    rgba(6, 6, 10, 0.55) 55%,
    rgba(6, 6, 10, 0.4) 100%
  );
}
.int-inner {
  position: relative;
  z-index: 2;
  padding: 0 100px;
  max-width: 760px;
}
.int-inner .h2 {
  font-size: clamp(52px, 7vw, 100px);
}
/* Blue scan line */
.int-scan {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--cobalt),
    transparent
  );
  opacity: 0.5;
}
.int-quad {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--void2);
}
.iq {
  height: 320px;
  overflow: hidden;
  position: relative;
  cursor: none;
}
.iq img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.7s ease,
    filter 0.5s;
}
.iq:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}
.iq::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 6, 10, 0.82), transparent 55%);
  opacity: 0.85;
  transition: opacity 0.4s;
}
.iq:hover::after {
  opacity: 1;
}
.iq-lbl {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 20px;
  z-index: 2;
  transform: translateY(6px);
  transition: transform 0.4s;
}
.iq:hover .iq-lbl {
  transform: none;
}
.iq-tag {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cobalt2);
  margin-bottom: 5px;
  display: block;
}
.iq-name {
  font-family: "Libre Baskerville", serif;
  font-size: 19px;
  color: var(--white);
}
/* Blue line accent */
.iq::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cobalt);
  z-index: 3;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}
.iq:hover::before {
  transform: scaleX(1);
}

/* STATS BAND */
#hi-stats {
  background: linear-gradient(135deg, var(--cobalt), #1a3fcc 60%, #0f2a99);
  padding: 70px 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.sb {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.sb:last-child {
  border: none;
}
.sb-n {
  font-family: "Libre Baskerville", serif;
  font-size: 56px;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
}
.sb-l {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 8px;
}

/* TESTIMONIALS */
#hi-testi {
  background: var(--void);
  padding: 120px 72px;
}
.tc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.tcard {
  padding: 44px;
  border: 1px solid rgba(42, 95, 255, 0.1);
  background: var(--void2);
  transition: all 0.4s;
  cursor: none;
  position: relative;
  overflow: hidden;
}
.tcard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--cobalt), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}
.tcard:hover {
  border-color: rgba(42, 95, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.tcard:hover::before {
  transform: scaleX(1);
}
.tc-stars {
  color: var(--cobalt2);
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}
.tc-q {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-style: italic;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 28px;
}
.tc-auth {
  display: flex;
  align-items: center;
  gap: 14px;
}
.tc-av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--cobalt);
}
.tc-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tc-name {
  font-size: 13.5px;
  font-weight: 500;
  margin-bottom: 2px;
}
.tc-role {
  font-size: 10.5px;
  color: var(--silver2);
}

/* AWARDS */
#hi-awards {
  background: var(--void2);
  padding: 56px 72px;
  display: flex;
  align-items: center;
  gap: 72px;
  overflow: auto;
}
.aw {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  opacity: 0.45;
  transition: opacity 0.3s;
  cursor: none;
}
.aw:hover {
  opacity: 1;
}
.aw-ico {
  font-size: 30px;
}
.aw-t strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.aw-t span {
  font-size: 11px;
  color: var(--silver2);
}

/* ═══════ ABOUT ═══════ */
#ab-hero {
  height: 68vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 80px 72px;
}
#ab-hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1800&q=90")
    center/cover;
}
#ab-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 6, 10, 0.97) 0%,
    rgba(6, 6, 10, 0.55) 60%,
    rgba(6, 6, 10, 0.25) 100%
  );
}
.ab-hero-inner {
  position: relative;
  z-index: 2;
}
#ab-main {
  background: var(--void);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.am-imgs {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  background: var(--void2);
}
.am-i1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 80px;
  bottom: 80px;
  background: url("https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1000&q=90")
    center/cover;
}
.am-i1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(42, 95, 255, 0.08),
    transparent
  );
}
.am-i2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 340px;
  background: url("https://images.unsplash.com/photo-1560185007-5f0bb1866cab?w=600&q=90")
    center/cover;
  border: 4px solid var(--void);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.8);
}
.am-badge {
  position: absolute;
  top: 48px;
  right: 50px;
  background: linear-gradient(135deg, var(--cobalt), #1a3fcc);
  color: var(--white);
  padding: 24px 28px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(42, 95, 255, 0.5);
}
.am-badge .bn {
  font-family: "Libre Baskerville", serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
}
.am-badge .bs {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 2px;
}
.am-text {
  padding: 80px 72px;
  background: var(--void);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.am-text .p {
  max-width: 100%;
  margin-bottom: 14px;
}
.tl {
  margin-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tl-r {
  display: flex;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.tl-r:last-child {
  border: none;
}
.tl-y {
  font-family: "Libre Baskerville", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--cobalt2);
  flex-shrink: 0;
  width: 68px;
}
.tl-b h4 {
  font-size: 13.5px;
  font-weight: 500;
  margin-bottom: 3px;
  letter-spacing: 0.02em;
}
.tl-b p {
  font-size: 12px;
  color: rgba(200, 212, 232, 0.4);
  line-height: 1.6;
}
/* Values */
#ab-vals {
  background: var(--void2);
  padding: 110px 72px;
}
.vg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}
.vc {
  padding: 52px 44px;
  background: var(--void3);
  border-bottom: 3px solid transparent;
  transition: all 0.45s;
  cursor: none;
  position: relative;
  overflow: hidden;
}
.vc::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--cobalt), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}
.vc:hover {
  border-bottom-color: var(--cobalt);
  background: var(--void4);
}
.vc:hover::after {
  transform: scaleX(1);
}
.vc-n {
  font-family: "Libre Baskerville", serif;
  font-size: 62px;
  font-weight: 400;
  color: rgba(42, 95, 255, 0.1);
  line-height: 1;
  margin-bottom: 10px;
}
.vc-t {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--silver);
}
.vc-d {
  font-size: 13.5px;
  color: rgba(200, 212, 232, 0.42);
  line-height: 1.85;
}
/* Team */
#ab-team {
  background: var(--void);
  padding: 110px 72px;
}
.tg {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 64px;
}
.tm {
  overflow: hidden;
  cursor: none;
  background: var(--void2);
  position: relative;
}
.tm-img {
  height: 360px;
  overflow: hidden;
}
.tm-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
  transition: all 0.6s;
}
.tm:hover .tm-img img {
  filter: saturate(1.15) brightness(1.05);
  transform: scale(1.05);
}
.tm::before {
  content: "";
  position: absolute;
  bottom: 76px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--cobalt), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
  z-index: 2;
}
.tm:hover::before {
  transform: scaleX(1);
}
.tm-b {
  padding: 20px 18px;
  background: var(--void3);
}
.tm-name {
  font-family: "Libre Baskerville", serif;
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 3px;
  color: var(--white);
}
.tm-role {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cobalt2);
}

/* ═══════ GALLERY ═══════ */
#gl-hero {
  height: 52vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 68px 72px;
}
#gl-hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1600210492493-0946911123ea?w=1800&q=90")
    center/cover;
}
#gl-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 6, 10, 0.97),
    rgba(6, 6, 10, 0.42)
  );
}
.gl-inner {
  position: relative;
  z-index: 2;
}
#gl-main {
  background: var(--void);
  padding: 80px 72px;
}
.gf-bar {
  display: flex;
  gap: 0;
  margin-bottom: 56px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.gf {
  padding: 12px 26px;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(200, 212, 232, 0.35);
  cursor: none;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: "Outfit", sans-serif;
  transition: all 0.35s;
  margin-bottom: -1px;
}
.gf.on,
.gf:hover {
  color: var(--cobalt2);
  border-bottom-color: var(--cobalt2);
}
.masonry {
  columns: 3;
  column-gap: 14px;
}
.mi {
  break-inside: avoid;
  margin-bottom: 14px;
  overflow: hidden;
  position: relative;
  cursor: none;
  display: block;
}
.mi img {
  width: 100%;
  display: block;
  transition:
    transform 0.65s ease,
    filter 0.5s;
  filter: saturate(0.85);
}
.mi:hover img {
  transform: scale(1.05);
  filter: saturate(1.1) brightness(1.03);
}
.mi-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 6, 10, 0.82), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.mi:hover .mi-ov {
  opacity: 1;
}
.mi-lbl {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 400;
}
/* Blue corner accent */
.mi::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 2px;
  background: linear-gradient(to right, var(--cobalt), transparent);
  z-index: 2;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}
.mi:hover::before {
  transform: scaleX(1);
}

/* ═══════ CONTACT ═══════ */
#ct-hero {
  height: 52vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 68px 72px;
}
#ct-hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1800&q=90")
    center/cover;
}
#ct-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 6, 10, 0.97),
    rgba(6, 6, 10, 0.42)
  );
}
.ct-inner {
  position: relative;
  z-index: 2;
}
#ct-body {
  background: var(--void);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}
.ct-info {
  padding: 80px 72px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
}
.ct-info .h2 {
  font-size: clamp(30px, 3.5vw, 52px);
  margin-bottom: 14px;
}
.ct-info .p {
  margin-bottom: 44px;
}
.ci-r {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.ci-ico {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--cobalt), #1a3fcc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(42, 95, 255, 0.4);
}
.ci-lbl {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(200, 212, 232, 0.35);
  margin-bottom: 4px;
}
.ci-val {
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
}
.ci-val a {
  color: var(--cobalt2);
  text-decoration: none;
  cursor: none;
  transition: color 0.3s;
}
.ci-val a:hover {
  color: var(--cobalt3);
}
.ct-form {
  padding: 80px 72px;
}
.form-title {
  font-family: "Libre Baskerville", serif;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 36px;
  color: var(--white);
}
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.fg {
  margin-bottom: 14px;
}
.fg label {
  display: block;
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(200, 212, 232, 0.35);
  margin-bottom: 8px;
}
.fg input,
.fg select,
.fg textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(200, 212, 232, 0.08);
  color: var(--white);
  padding: 14px 18px;
  font-size: 14px;
  font-family: "Outfit", sans-serif;
  outline: none;
  transition: all 0.3s;
  -webkit-appearance: none;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--cobalt2);
  background: rgba(42, 95, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(42, 95, 255, 0.1);
}
.fg textarea {
  height: 110px;
  resize: vertical;
}
.fg select option {
  background: var(--void2);
}
.f-sub {
  background: linear-gradient(135deg, var(--cobalt), #1a3fcc);
  color: var(--white);
  padding: 16px 0;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: none;
  cursor: none;
  width: 100%;
  font-family: "Outfit", sans-serif;
  transition: all 0.35s;
  margin-top: 4px;
  box-shadow: 0 6px 24px rgba(42, 95, 255, 0.4);
}
.f-sub:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(42, 95, 255, 0.6);
}
#ct-map {
  height: 520px;
  position: relative;
  overflow: hidden;
  background: var(--void2);
}
#ct-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(0) brightness(0.7) contrast(1.2);
  opacity: 0.75;
  transition: filter 0.5s;
}
#ct-map:hover iframe {
  filter: saturate(0.4) brightness(0.8) contrast(1.1);
}
.map-card {
  position: absolute;
  top: 40px;
  left: 52px;
  background: rgba(6, 6, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 28px 32px;
  border: 1px solid rgba(42, 95, 255, 0.2);
  max-width: 300px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}
.map-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--cobalt), transparent);
}
.map-card h3 {
  font-family: "Libre Baskerville", serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--cobalt2);
  margin-bottom: 10px;
}
.map-card p {
  font-size: 12.5px;
  color: rgba(200, 212, 232, 0.55);
  line-height: 1.7;
}
.map-card .mp {
  color: var(--cobalt2);
  font-weight: 500;
  font-size: 14.5px;
  margin-top: 12px;
  display: block;
}

/* ─── FOOTER ─── */
footer {
  background: var(--void2);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 80px 72px 32px;
  position: relative;
  z-index: 1;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    var(--cobalt),
    var(--cobalt2),
    transparent
  );
}
.ft {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 60px;
}
.fl {
  font-family: "Libre Baskerville", serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}
.fl span {
  font-family: "Outfit", sans-serif;
  font-size: 9px;
  letter-spacing: 0.55em;
  color: var(--cobalt2);
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}
.fa {
  font-size: 13px;
  color: rgba(200, 212, 232, 0.38);
  line-height: 1.85;
  margin-bottom: 22px;
  max-width: 280px;
}
.fsoc {
  display: flex;
  gap: 10px;
}
.fsc {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(200, 212, 232, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(200, 212, 232, 0.38);
  text-decoration: none;
  cursor: none;
  transition: all 0.3s;
}
.fsc:hover {
  border-color: var(--cobalt2);
  color: var(--cobalt2);
  background: rgba(42, 95, 255, 0.1);
}
.fc-t {
  font-size: 9.5px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cobalt2);
  margin-bottom: 20px;
}
.fc-l {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fc-l li a {
  color: rgba(200, 212, 232, 0.38);
  text-decoration: none;
  font-size: 13.5px;
  transition: color 0.3s;
  cursor: none;
}
.fc-l li a:hover {
  color: var(--cobalt2);
}
.fbot {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.fcp {
  font-size: 11.5px;
  color: rgba(200, 212, 232, 0.25);
}
.ftag {
  font-size: 11.5px;
  color: var(--cobalt2);
  letter-spacing: 0.1em;
}

/* ─── FLOAT ─── */
.fcall {
  position: fixed;
  bottom: 36px;
  right: 36px;
  z-index: 800;
  background: linear-gradient(135deg, var(--cobalt), #1a3fcc);
  color: var(--white);
  padding: 14px 26px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  border-radius: 40px;
  box-shadow: 0 8px 28px rgba(42, 95, 255, 0.5);
  transition: all 0.35s;
  display: flex;
  align-items: center;
  gap: 9px;
}
.fcall:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(42, 95, 255, 0.7);
}
.fcall-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.8s infinite;
}





@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

/* ─── MOB ─── */
#mob {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 6, 10, 0.99);
  z-index: 850;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mlink {
  font-family: "Libre Baskerville", serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  cursor: none;
  transition: color 0.3s;
}
.mlink:hover,
.mlink.hi {
  color: var(--cobalt2);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  nav {
    padding: 20px 32px;
  }
  nav.stuck {
    padding: 14px 32px;
  }
  #hi-intro,
  #ab-main {
    grid-template-columns: 1fr;
  }
  .ii-img img {
    min-height: 400px;
  }
  .pc-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pc.featured {
    grid-column: span 1;
  }
  .int-quad {
    grid-template-columns: 1fr 1fr;
  }
  #hi-stats {
    grid-template-columns: 1fr 1fr;
  }
  .tc-grid {
    grid-template-columns: 1fr;
  }
  .masonry {
    columns: 2;
  }
  #ct-body {
    grid-template-columns: 1fr;
  }
  .ft {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }
  .tg {
    grid-template-columns: 1fr 1fr;
  }
  .vg {
    grid-template-columns: 1fr;
  }
  .hh-stats,
  .hs-n {
    display: none;
  }
  .ii-text,
  .am-text,
  .ct-info,
  .ct-form {
    padding: 60px 32px;
  }
  #hi-props,
  #hi-testi,
  #hi-awards,
  #ab-vals,
  #ab-team {
    padding-left: 32px;
    padding-right: 32px;
  }
  #gl-main {
    padding: 60px 32px;
  }
}
@media (max-width: 640px) {
  nav {
    padding: 16px 20px;
  }
  nav.stuck {
    padding: 12px 20px;
  }
  .n-links {
    display: none;
  }
  .ham {
    display: flex;
  }
  .hh-inner {
    padding: 0 24px;
  }
  .hh-h1 {
    font-size: 52px;
  }
  .pc-grid {
    grid-template-columns: 1fr;
  }
  .int-quad {
    grid-template-columns: 1fr;
  }
  .masonry {
    columns: 1;
  }
  #hi-stats {
    grid-template-columns: 1fr 1fr;
  }
  .frow {
    grid-template-columns: 1fr;
  }
  .ft {
    grid-template-columns: 1fr;
  }
  .fcall {
    right: 16px;
    bottom: 16px;
  }
  #hi-awards {
    gap: 36px;
  }
}
