:root {
  --dark: #0b0d0f;
  --dark2: #111416;
  --dark3: #1a1d20;
  --gray: #515151;
  --gold-d: #6b5222;
  --gold-m: #907a63;
  --gold: #d0a112;
  --gold-l: #e8c060;
  --accent: #7c1010;
  --white: #f0ebe4;
  --off: #7a7a7a;
  --border: rgba(208, 161, 18, 0.09);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--dark);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* ── PREMIUM FILM GRAIN OVERLAY ── */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.05;
  z-index: 9997;
  pointer-events: none;
}

/* ── PREMIUM CURSOR (Mix-Blend-Mode) ── */
#cur {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999; /* Added a 9 */
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s cubic-bezier(0.25, 1, 0.5, 1);
  mix-blend-mode: difference;
}
#cur-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99998; /* Added a 9 */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    height 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    border-color 0.3s;
  mix-blend-mode: difference;
}
.ch #cur {
  transform: translate(-50%, -50%) scale(0);
}
.ch #cur-ring {
  width: 64px;
  height: 64px;
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

/* ── SEAMLESS CANVAS BLENDING ── */
.sc {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.5 !important;
  pointer-events: none !important; /* Forces the canvas to ignore the mouse */
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
  mask-image: linear-gradient(
    to bottom,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 5rem;
  transition:
    padding 0.35s,
    background 0.35s,
    border-color 0.35s;
  border-bottom: 1px solid transparent;
}
nav.stuck {
  padding: 1rem 5rem;
  background: rgba(11, 13, 15, 0.9);
  backdrop-filter: blur(22px);
  border-color: var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}
.nav-logo img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(208, 161, 18, 0.22));
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    filter 0.3s;
}
.nav-logo:hover img {
  transform: scale(1.07);
  filter: drop-shadow(0 0 18px rgba(208, 161, 18, 0.45));
}
.nav-wm {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
}
.nav-ul {
  display: flex;
  align-items: center;
  gap: 3rem;
  list-style: none;
}
.nav-ul a {
  color: rgba(240, 235, 228, 0.48);
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.25s;
}
.nav-ul a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-ul a:hover {
  color: var(--gold);
}
.nav-ul a:hover::after {
  width: 100%;
}
.nav-cta {
  padding: 0.52rem 1.6rem;
  border: 1px solid rgba(208, 161, 18, 0.32) !important;
  color: var(--gold) !important;
  transition:
    background 0.25s,
    border-color 0.25s !important;
}
.nav-cta:hover {
  background: rgba(208, 161, 18, 0.08) !important;
  border-color: var(--gold) !important;
}
.nav-cta::after {
  display: none !important;
}
.ntog {
  display: none;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.ntog span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition:
    transform 0.3s,
    opacity 0.3s;
}

/* HERO */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#hc {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.52;
}
.hv {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      ellipse at 55% 38%,
      rgba(124, 16, 16, 0.16) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 15% 75%,
      rgba(208, 161, 18, 0.05) 0%,
      transparent 50%
    ),
    linear-gradient(
      180deg,
      rgba(11, 13, 15, 0) 30%,
      rgba(11, 13, 15, 0.97) 100%
    );
}
.hcnt {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 1050px;
}
.heb {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.2rem;
  opacity: 0;
  animation: fu 0.9s 0.35s forwards;
}
.el {
  width: 26px;
  height: 1px;
  background: var(--gold);
}
.hh1 {
  font-size: clamp(3.8rem, 9vw, 8rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--white);
  opacity: 0;
  animation: fu 0.9s 0.55s forwards;
}
.hh1 .stk {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(240, 235, 228, 0.2);
}
.hit {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(240, 235, 228, 0.42);
  letter-spacing: 0.06em;
  margin-top: 1.6rem;
  opacity: 0;
  animation: fu 0.9s 0.78s forwards;
}
.htg {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-m);
  margin-top: 0.6rem;
  opacity: 0;
  animation: fu 0.9s 0.96s forwards;
}
.hcta {
  display: flex;
  gap: 1.1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3.8rem;
  opacity: 0;
  animation: fu 0.9s 1.15s forwards;
}
.bf {
  padding: 0.9rem 2.8rem;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: none;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition:
    background 0.25s,
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.bf:hover {
  background: var(--gold-l);
  transform: translateY(-3px) scale(1.01);
}
.bl {
  padding: 0.9rem 2.8rem;
  background: transparent;
  color: rgba(240, 235, 228, 0.72);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(240, 235, 228, 0.14);
  cursor: none;
  transition:
    border-color 0.25s,
    color 0.25s,
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.bl:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}
.scue {
  position: absolute;
  bottom: 2.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  opacity: 0;
  animation: fu 0.9s 1.5s forwards;
}
.scue span {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240, 235, 228, 0.25);
}
.sbar {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: bp 2.2s ease-in-out infinite;
}
@keyframes bp {
  0%,
  100% {
    opacity: 0.22;
    transform: scaleY(0.5) translateY(-12px);
  }
  55% {
    opacity: 1;
    transform: scaleY(1) translateY(0);
  }
}

/* MARQUEE */
.mqw {
  background: rgba(208, 161, 18, 0.038);
  border-top: 1px solid rgba(208, 161, 18, 0.08);
  border-bottom: 1px solid rgba(208, 161, 18, 0.08);
  padding: 1.1rem 0;
  overflow: hidden;
}
.mqt {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: mq 24s linear infinite;
}
.mi {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(144, 122, 99, 0.65);
}
.md {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
}
@keyframes mq {
  to {
    transform: translateX(-50%);
  }
}

/* SECTIONS */
section {
  position: relative;
  overflow: hidden;
  padding: 9rem 5rem;
}
.sl {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.sl::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--gold);
}
.st {
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--white);
}
.st .dim {
  color: rgba(240, 235, 228, 0.2);
}
.sr {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.3rem 0 2.8rem;
}

/* ABOUT */
#about {
  background: var(--dark2);
}
.ab-in {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
  max-width: 1220px;
  margin: 0 auto;
  align-items: center;
}
.ab-bd p {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(240, 235, 228, 0.58);
  margin-bottom: 1.5rem;
}
.ab-bd p strong {
  color: var(--gold);
  font-weight: 500;
}
.ab-bd p em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.08em;
  color: rgba(240, 235, 228, 0.72);
}
.krow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  margin-top: 3rem;
}
.kpi {
  border-left: 1px solid rgba(208, 161, 18, 0.2);
  padding-left: 1.3rem;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.kpi.v {
  opacity: 1;
  transform: none;
}
.kn {
  font-size: 2.9rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.04em;
}
.kl {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--off);
  margin-top: 0.3rem;
}
.ab-fr {
  position: relative;
}
.ab-fri {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 96% 0, 100% 4%, 100% 100%, 4% 100%, 0 96%);
}
.ab-fri img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  filter: grayscale(40%) contrast(1.05) brightness(0.86);
  transition:
    transform 0.9s cubic-bezier(0.25, 0.1, 0.25, 1),
    filter 0.6s;
  display: block;
}
.ab-fr:hover .ab-fri img {
  transform: scale(1.04);
  filter: grayscale(0%) contrast(1.05) brightness(0.9);
}
.ab-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    140deg,
    rgba(124, 16, 16, 0.2) 0%,
    transparent 55%
  );
}
.fbr {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 70px;
  height: 70px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
}
.ftl {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 70px;
  height: 70px;
  border-left: 1.5px solid rgba(208, 161, 18, 0.22);
  border-top: 1.5px solid rgba(208, 161, 18, 0.22);
}

/* SERVICES */
#services {
  background: var(--dark);
}
.svh {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin-bottom: 4.5rem;
}
.svh p {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(240, 235, 228, 0.42);
  line-height: 1.85;
  margin-top: 0.5rem;
}
.svg-g {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.035);
  background: rgba(255, 255, 255, 0.022);
  gap: 1px;
}
.svc {
  background: var(--dark);
  padding: 2.8rem 2.5rem;
  position: relative;
  overflow: hidden;
  cursor: none;
  transition: background 0.35s;
}
.svc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none; /* Allows clicks to pass through */
}
.svc::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(208, 161, 18, 0.045) 0%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none; /* Allows clicks to pass through */
}
.svc:hover {
  background: rgba(20, 22, 25, 0.92);
}
.svc:hover::before,
.svc:hover::after {
  opacity: 1;
}
.sn {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: var(--gold-m);
  font-weight: 500;
  margin-bottom: 1.6rem;
}
.sg {
  width: 32px;
  height: 32px;
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sg svg {
  width: 28px;
  height: 28px;
}
.snm {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 0.7rem;
}
.sdsc {
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  color: rgba(240, 235, 228, 0.38);
  line-height: 1.8;
}
.slnk {
  margin-top: 1.8rem;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 0.3s,
    transform 0.3s;
  display: inline-block;
  cursor: none;
  background: none;
  border: none;
  font-family: "Poppins", sans-serif;
  padding: 0;
  position: relative;
  z-index: 10;
  pointer-events: auto; /* Ensures button is clickable */
}
.svc:hover .slnk {
  opacity: 1;
  transform: translateX(0);
}

/* PORTFOLIO */
#portfolio {
  background: var(--dark2);
  padding-top: 9rem;
  padding-bottom: 9rem;
}
.ph {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* ── 3D INFINITE PORTFOLIO GALLERY ── */
.pf-overlay-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
  mix-blend-mode: exclusion; /* Matches the inspo's inverted text effect */
  padding: 0 2rem;
}
.pf-overlay-text h2 {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
}
.pf-overlay-text .dim {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 300;
  color: var(--gold-l);
}
.pf-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  z-index: 2;
  text-align: center;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--white);
  pointer-events: none;
}

/* Mobile adjustments: Turn off grid animation and stack them */
@media (max-width: 768px) {
  .pf-dynamic-grid {
    height: auto;
    min-height: auto;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    gap: 1.5rem;
  }
  .pf-item {
    height: 280px;
  }
  .pf-item video {
    filter: grayscale(0%) brightness(0.9);
  }
  .pf-overlay {
    opacity: 1;
    transform: none;
    bottom: 1rem;
    left: 1rem;
  }
}

/* PROCESS */
#process {
  background: var(--dark3);
}
.prh {
  text-align: center;
  margin-bottom: 6rem;
  position: relative;
  z-index: 1;
}
.prh .sr {
  margin-left: auto;
  margin-right: auto;
}
.steps {
  display: flex;
  position: relative;
  z-index: 1;
}
.steps::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(208, 161, 18, 0.22) 12%,
    rgba(208, 161, 18, 0.22) 88%,
    transparent
  );
}
.step {
  flex: 1;
  text-align: center;
  padding: 0 1.8rem;
}
.sorb {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(208, 161, 18, 0.25);
  background: var(--dark3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.2rem;
  position: relative;
  z-index: 1;
  transition:
    border-color 0.35s,
    background 0.35s;
}
.sorb::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px dashed rgba(208, 161, 18, 0.1);
  animation: spin 14s linear infinite;
}
.step:hover .sorb {
  border-color: var(--gold);
  background: rgba(208, 161, 18, 0.05);
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.stn {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-weight: 600;
}
.stit {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0.75rem 0 0.6rem;
}
.sbd {
  font-family: "Inter", sans-serif;
  font-size: 0.81rem;
  color: rgba(240, 235, 228, 0.38);
  line-height: 1.75;
}

/* CONTACT */
#contact {
  background: var(--dark2);
}
.cin {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 7rem;
  max-width: 1150px;
  margin: 0 auto;
}
.cip p {
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(240, 235, 228, 0.48);
  line-height: 1.85;
  margin-bottom: 3rem;
}
.cd {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.cico {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(208, 161, 18, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cico svg {
  width: 14px;
  height: 14px;
}
.cd label {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-m);
  margin-bottom: 0.25rem;
}
.cd span {
  font-size: 0.87rem;
  color: var(--white);
}
.sls {
  display: flex;
  gap: 0.65rem;
  margin-top: 2.8rem;
}
.sc-a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(240, 235, 228, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(240, 235, 228, 0.38);
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 600;
  cursor: none;
  transition:
    border-color 0.25s,
    color 0.25s,
    background 0.25s;
}
.sc-a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(208, 161, 18, 0.05);
}
.fg {
  margin-bottom: 1.3rem;
}
.fg label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-m);
  margin-bottom: 0.5rem;
}
.fg input,
.fg textarea,
.fg select {
  width: 100%;
  background: rgba(255, 255, 255, 0.022);
  border: 1px solid rgba(255, 255, 255, 0.065);
  color: var(--white);
  padding: 0.85rem 1.1rem;
  font-family: "Inter", sans-serif;
  font-size: 0.87rem;
  outline: none;
  transition:
    border-color 0.25s,
    background 0.25s;
  appearance: none;
  -webkit-appearance: none;
}
.fg input:focus,
.fg textarea:focus,
.fg select:focus {
  border-color: rgba(208, 161, 18, 0.35);
  background: rgba(208, 161, 18, 0.022);
}
.fg input::placeholder,
.fg textarea::placeholder {
  color: rgba(240, 235, 228, 0.18);
}
.fg textarea {
  resize: vertical;
  min-height: 115px;
}
.fg select option {
  background: var(--dark2);
  color: var(--white);
}
.fgr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.bsnd {
  width: 100%;
  padding: 1.05rem;
  background: var(--gold);
  color: var(--dark);
  font-family: "Poppins", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  cursor: none;
  transition:
    background 0.25s,
    transform 0.25s;
}
.bsnd:hover {
  background: var(--gold-l);
  transform: translateY(-2px);
}
.wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 0.9rem;
  padding: 0.88rem;
  background: rgba(37, 211, 102, 0.055);
  border: 1px solid rgba(37, 211, 102, 0.18);
  color: #25d366;
  text-decoration: none;
  cursor: none;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: background 0.25s;
}
.wa:hover {
  background: rgba(37, 211, 102, 0.13);
}

/* FOOTER */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.045);
  padding: 4rem 5rem 2.2rem;
}
.ftt {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
  gap: 3rem;
  flex-wrap: wrap;
}
.fb img {
  height: 33px;
  margin-bottom: 0.8rem;
  filter: brightness(0.65);
  transition: filter 0.3s;
}
.fb img:hover {
  filter: brightness(1);
}
.fb p {
  font-size: 0.77rem;
  color: rgba(240, 235, 228, 0.26);
  max-width: 210px;
  line-height: 1.75;
  font-family: "Inter", sans-serif;
}
.fcol h4 {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-m);
  margin-bottom: 1.3rem;
}
.fcol ul {
  list-style: none;
}
.fcol li {
  margin-bottom: 0.6rem;
}
.fcol a {
  font-family: "Inter", sans-serif;
  font-size: 0.79rem;
  color: rgba(240, 235, 228, 0.33);
  text-decoration: none;
  transition: color 0.25s;
}
.fcol a:hover {
  color: var(--gold);
}
.ftb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.fcp {
  font-size: 0.67rem;
  color: rgba(240, 235, 228, 0.18);
  font-family: "Inter", sans-serif;
}
.fcp span {
  color: var(--gold-m);
}

/* ── CINEMATIC REVEAL ANIMATION ── */
.r {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition:
    opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.r.v {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}
.d4 {
  transition-delay: 0.4s;
}
.d5 {
  transition-delay: 0.5s;
}
.d6 {
  transition-delay: 0.6s;
}
@keyframes fu {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ── GLASSMORPHIC VERTICAL STACK MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(11, 13, 15, 0.85);
  backdrop-filter: blur(25px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal-close {
  position: absolute;
  top: 2rem;
  right: 3rem;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: none;
  z-index: 10001;
  transition: color 0.3s;
}
.modal-close:hover {
  color: var(--gold);
}
.modal-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(208, 161, 18, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.stack-container {
  position: relative;
  width: 320px;
  height: 500px;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.st-card {
  position: absolute;
  width: 280px;
  height: 420px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.st-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(to top, rgba(11, 13, 15, 0.8), transparent 40%);
}
.stack-nav {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.st-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(240, 235, 228, 0.2);
  transition: all 0.3s;
  cursor: none;
}
.st-dot.active {
  background: var(--gold);
  height: 24px;
}
.stack-counter {
  position: absolute;
  left: 3rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.stack-counter span {
  font-size: 1.5rem;
  font-weight: 300;
}
.stack-counter #st-tot {
  font-size: 0.8rem;
  color: var(--off);
}
.st-line {
  width: 1px;
  height: 30px;
  background: rgba(240, 235, 228, 0.2);
}
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 235, 228, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fu 1s 1s both;
}
.scroll-hint svg {
  width: 16px;
  height: 16px;
  animation: bounceY 2s infinite ease-in-out;
}
@keyframes bounceY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  nav {
    padding: 1.3rem 2.5rem;
  }
  nav.stuck {
    padding: 0.9rem 2.5rem;
  }
  section {
    padding: 7rem 2.5rem;
  }
  .ab-in {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .svg-g {
    grid-template-columns: repeat(2, 1fr);
  }
  .cin {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  footer {
    padding: 3rem 2.5rem 2rem;
  }
  #reel {
    padding: 4.5rem 2.5rem;
  }
}
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }
  nav.stuck {
    padding: 0.8rem 1.5rem;
  }
  section {
    padding: 5.5rem 1.5rem;
  }
  .nav-ul {
    display: none;
  }
  .nav-ul.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(11, 13, 15, 0.97);
    backdrop-filter: blur(22px);
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 899;
  }
  .nav-ul.open a {
    font-size: 1.15rem;
  }
  .ntog {
    display: flex;
    z-index: 901;
  }
  .svg-g {
    grid-template-columns: 1fr;
  }
  .steps {
    flex-direction: column;
    gap: 2.5rem;
  }
  .steps::before {
    display: none;
  }
  .pg {
    display: flex;
    flex-direction: column;
  }
  .pi img,
  .pi:nth-child(1) img {
    min-height: 200px;
    max-height: 300px;
  }
  .ab-fri img {
    height: 340px;
  }
  .fgr {
    grid-template-columns: 1fr;
  }
  .ftt {
    flex-direction: column;
  }
  footer {
    padding: 2.5rem 1.5rem 1.5rem;
  }
  .ftb {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }
  #reel {
    padding: 4rem 1.5rem;
  }
  /* Mobile adjustments for Modal */
  .stack-nav {
    right: 1.5rem;
  }
  .stack-counter {
    left: 1.5rem;
  }
  .st-card {
    width: 220px;
    height: 330px;
  }
}
/* ── CINEMATIC VIDEO EXPANSION MODAL ── */
#video-modal {
  background: var(--dark);
}
.vm-toggle {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10001;
  background: rgba(255, 255, 255, 0.05);
  padding: 5px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.vm-tab {
  background: transparent;
  border: none;
  color: rgba(240, 235, 228, 0.5);
  padding: 0.4rem 1.2rem;
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: none;
  transition: all 0.3s;
  font-weight: 500;
}
.vm-tab:hover {
  color: var(--white);
}
.vm-tab.active {
  background: var(--white);
  color: var(--dark);
}

.vm-title-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: difference;
}
.vm-title {
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 800;
  color: var(--gold-l);
  white-space: nowrap;
  transition:
    transform 0.1s linear,
    opacity 0.1s linear;
}
.vm-video-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 250px;
  border-radius: 24px;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  transition:
    width 0.1s linear,
    height 0.1s linear,
    border-radius 0.1s linear;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
#vm-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  transition: opacity 0.1s linear;
}

@media (max-width: 768px) {
  .vm-video-wrapper {
    width: 280px;
    height: 400px;
  }
  .vm-title-container {
    flex-direction: column;
    gap: 0;
  }
}
