:root {
  --black: #080808;
  --black-soft: #11100e;
  --ink: #f5f0e5;
  --gold: #c8a45d;
  --gold-light: #e5c783;
  --red: #c51f2b;
  --cream: #0b0b0a;
  --white: #fff;
  --muted: #aaa397;
  --line: rgba(197, 31, 43, .55);
  --max: 1380px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--black);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.loader-active { overflow: hidden; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(200, 164, 93, .08), transparent 34%),
    #050505;
  transition: opacity .75s cubic-bezier(.4, 0, .2, 1), visibility .75s ease;
}
.page-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 35%, rgba(229, 199, 131, .035) 50%, transparent 65%);
  transform: translateX(-100%);
  animation: loader-sweep 2.4s 1.1s ease-in-out both;
}
.page-loader.loaded { opacity: 0; visibility: hidden; }
.loader-content {
  position: relative;
  display: flex;
  width: min(76vw, 310px);
  flex-direction: column;
  align-items: center;
}
.loader-logo {
  width: clamp(150px, 19vw, 220px);
  height: auto;
  object-fit: contain;
  animation: loader-logo-pulse 1.55s ease-in-out 3;
}
.loader-slogan {
  margin: 12px 0 0;
  color: var(--gold-light);
  font: 400 clamp(32px, 4vw, 48px)/1 "Allura", cursive;
  letter-spacing: .025em;
  text-align: center;
  opacity: 0;
  animation: loader-slogan-in 1s .5s ease forwards, loader-slogan-glow 1.5s 1.4s ease-in-out infinite;
}
.loader-line {
  position: relative;
  width: min(180px, 58vw);
  height: 1px;
  margin-top: 22px;
  overflow: hidden;
  background: rgba(197, 31, 43, .48);
}
.loader-line::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  box-shadow: 0 0 12px rgba(229, 199, 131, .7);
  animation: loading 1.15s infinite ease-in-out;
}
@keyframes loading { from { transform: translateX(-100%); } to { transform: translateX(340%); } }
@keyframes loader-logo-pulse {
  0%, 100% { opacity: .48; transform: scale(.99); }
  50% { opacity: 1; transform: scale(1); }
}
@keyframes loader-slogan-in {
  from { opacity: 0; transform: translateY(7px); }
  to { opacity: .9; transform: translateY(0); }
}
@keyframes loader-slogan-glow {
  0%, 100% { opacity: .58; text-shadow: 0 0 5px rgba(229, 199, 131, .18); }
  50% { opacity: 1; text-shadow: 0 0 15px rgba(229, 199, 131, .5); }
}
@keyframes loader-sweep {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader::before,
  .loader-logo,
  .loader-line::after,
  .loader-slogan {
    animation: none;
  }
  .loader-logo { opacity: 1; }
  .loader-slogan { opacity: .9; }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 94px;
  display: flex;
  align-items: center;
  padding: 0 max(4vw, 32px);
  color: var(--white);
  border-bottom: 1px solid rgba(197, 31, 43, .55);
  transition: height .35s, background .35s, box-shadow .35s;
}
.site-header.scrolled {
  height: 76px;
  background: rgba(8, 8, 8, .96);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .2);
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand-logo {
  width: 64px;
  height: 58px;
  display: grid;
  place-items: center;
  overflow: visible;
  background: transparent;
}
.brand-logo img { width: 64px; height: 58px; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; }
.brand-copy strong {
  font: 800 19px/1 "Manrope", sans-serif;
  letter-spacing: .22em;
}
.brand-copy small {
  margin-top: 6px;
  color: var(--gold-light);
  font-size: 9px;
  letter-spacing: .4em;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.6vw, 48px);
  margin-left: auto;
  margin-right: clamp(28px, 4vw, 72px);
}
.desktop-nav > a, .projects-trigger {
  position: relative;
  padding: 37px 0;
  border: 0;
  background: none;
  color: rgba(255,255,255,.8);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.desktop-nav > a::after, .projects-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 25px;
  height: 1px;
  background: var(--gold);
  transition: right .25s;
}
.desktop-nav > a:hover::after, .desktop-nav > a.active::after, .projects-trigger:hover::after { right: 0; }
.desktop-nav > a:hover, .desktop-nav > a.active, .projects-trigger:hover { color: #fff; }
.projects-trigger span { margin-left: 5px; color: var(--gold); }
.header-cta {
  min-width: 142px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--red);
  font-size: 13px;
  font-weight: 700;
  transition: background .25s, transform .25s;
}
.header-cta:hover { background: #c31c28; transform: translateY(-2px); }
.nav-projects { position: static; }
.mega-menu {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  width: min(1180px, 92vw);
  padding: 36px;
  display: grid;
  grid-template-columns: 1.1fr repeat(3, .85fr);
  gap: 18px;
  color: var(--white);
  background: #0d0d0c;
  border: 1px solid rgba(197, 31, 43, .65);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  transition: .25s ease;
}
.nav-projects:hover .mega-menu, .nav-projects.open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.eyebrow {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .24em;
}
.mega-menu h3 { margin: 12px 0; font: 700 25px/1.2 "Manrope", sans-serif; }
.mega-menu p { color: #a9a399; font-size: 13px; line-height: 1.7; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 5px;
  color: var(--gold-light);
  border-bottom: 1px solid var(--red);
  font-size: 12px;
  font-weight: 700;
}
.text-link span { color: var(--red); }
.mega-card {
  min-height: 170px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background: linear-gradient(155deg, #393630, #111);
}
.mega-card.ongoing { background: linear-gradient(155deg, #78242a, #170c0c); }
.mega-card.planned { background: linear-gradient(155deg, #655330, #15120d); }
.mega-card > span { margin-bottom: auto; color: var(--gold-light); font-size: 11px; }
.mega-card strong { font: 700 17px "Manrope"; }
.mega-card small { margin-top: 7px; color: rgba(255,255,255,.55); }
.menu-toggle { display: none; }
.mobile-menu { display: none; }

.hero {
  position: relative;
  height: max(760px, 100svh);
  min-height: 720px;
  overflow: hidden;
  color: #fff;
  background: #10141a;
}
.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,7,10,.95) 0%, rgba(4,7,10,.72) 37%, rgba(4,7,10,.08) 75%),
    linear-gradient(0deg, rgba(0,0,0,.72), transparent 45%),
    url("assets/projects/ninova-premium/08.jpeg") center/cover no-repeat;
  transform: scale(1.02);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1.08); } }
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .07;
  background-image: linear-gradient(90deg, transparent calc(100% - 1px), var(--red) 1px);
  background-size: 25% 100%;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), 90vw);
  margin: 0 auto;
  padding-top: clamp(200px, 25vh, 265px);
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .25em;
}
.hero-kicker span { width: 38px; height: 1px; background: var(--gold); }
.hero h1, .section h2 {
  margin: 27px 0 26px;
  font: 600 clamp(57px, 6.4vw, 104px)/.95 "Manrope", sans-serif;
  letter-spacing: -.055em;
}
.hero h1 em, .section h2 em { color: var(--gold-light); font-family: Georgia, serif; font-weight: 400; }
.hero-content > p {
  width: min(530px, 100%);
  color: rgba(255,255,255,.68);
  font-size: 16px;
  line-height: 1.8;
}
.hero-actions { display: flex; align-items: center; gap: 42px; margin-top: 40px; }
.button {
  height: 58px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  border: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: .25s;
}
.button-gold { color: #111; background: var(--gold-light); }
.button-gold:hover { background: #f0d38f; transform: translateY(-2px); }
.play-link { display: flex; align-items: center; gap: 14px; font-size: 10px; letter-spacing: .1em; }
.play-link i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  color: var(--gold);
  font-size: 8px;
  font-style: normal;
}
.hero-stat {
  position: absolute;
  z-index: 2;
  right: max(5vw, 38px);
  bottom: 60px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.hero-stat strong { font: 400 68px/1 "Manrope"; }
.hero-stat sup { color: var(--gold); font-size: 23px; }
.hero-stat span { padding-left: 18px; border-left: 1px solid var(--gold); color: rgba(255,255,255,.65); font-size: 9px; line-height: 1.6; letter-spacing: .2em; }
.scroll-hint {
  position: absolute;
  z-index: 3;
  left: max(2vw, 22px);
  bottom: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
}
.scroll-hint span { writing-mode: vertical-rl; color: rgba(255,255,255,.5); font-size: 8px; letter-spacing: .25em; }
.scroll-hint i { width: 1px; height: 42px; background: linear-gradient(var(--gold) 50%, var(--red) 50%); }

.trust-strip {
  min-height: 126px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 max(5vw, 40px);
  color: #fff;
  background: var(--black);
}
.trust-strip > div {
  padding: 34px clamp(20px, 3vw, 52px);
  border-right: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  column-gap: 15px;
}
.trust-strip > div:last-child { border-right: 0; }
.trust-strip small { grid-row: 1 / span 2; color: var(--gold); font-size: 9px; }
.trust-strip strong { font: 600 17px "Manrope"; }
.trust-strip span { margin-top: 4px; color: #a49e93; font-size: 11px; }

.section { padding: 130px max(5vw, 40px); }
.section-label {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .25em;
}
.section-label span { color: var(--red); }
.section-label.light { color: var(--gold-light); }
.about { max-width: 1600px; margin: auto; color: var(--white); }
.about-heading {
  display: grid;
  grid-template-columns: 1.65fr .75fr;
  align-items: end;
  gap: 8vw;
}
.about-heading h2 { font-size: clamp(45px, 5vw, 78px); }
.about-intro { padding-bottom: 35px; }
.about-intro p { margin: 0 0 28px; color: #b0aa9f; font-size: 15px; line-height: 1.8; }
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(55px, 8vw, 120px);
  align-items: center;
  margin-top: 70px;
}
.about-visual { position: relative; min-height: 610px; padding: 28px 0 0 28px; }
.visual-frame {
  height: 100%;
  min-height: 580px;
  background:
    linear-gradient(0deg, rgba(0,0,0,.25), transparent),
    url("assets/projects/ninova-premium/08.jpeg") 80% center/auto 125% no-repeat;
  filter: saturate(.72);
}
.about-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 60%;
  border: 1px solid var(--red);
}
.vertical-text {
  position: absolute;
  top: 52px;
  left: 7px;
  color: var(--gold);
  writing-mode: vertical-rl;
  font-size: 8px;
  letter-spacing: .22em;
}
.quality-seal {
  position: absolute;
  right: -30px;
  bottom: 45px;
  width: 132px;
  height: 132px;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid var(--red);
  border-radius: 50%;
  color: #fff;
  background: var(--black);
}
.quality-seal span { color: var(--gold-light); font: 600 37px "Manrope"; }
.quality-seal small { font-size: 8px; line-height: 1.5; letter-spacing: .15em; }
.about-copy { max-width: 570px; }
.about-copy h3 { margin: 18px 0 26px; font: 600 clamp(30px, 3vw, 46px)/1.15 "Manrope"; letter-spacing: -.035em; }
.about-copy > p { color: #b0aa9f; font-size: 15px; line-height: 1.85; }
.about-copy strong { color: var(--gold-light); }
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 45px;
  padding-top: 35px;
  border-top: 1px solid var(--red);
}
.metrics > div { position: relative; }
.metrics strong { font: 500 39px "Manrope"; }
.metrics sup { color: var(--red); font-size: 17px; }
.metrics span { display: block; margin-top: 7px; color: #aaa397; font-size: 9px; line-height: 1.45; letter-spacing: .12em; }

.projects { color: #fff; background: var(--black-soft); }
.ongoing-spotlight {
  position: relative;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr);
  gap: clamp(45px, 7vw, 110px);
  align-items: center;
  padding: 110px max(5vw, 40px);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 80% 50%, rgba(200,164,93,.12), transparent 38%),
    #080808;
  border-top: 1px solid var(--red);
  border-bottom: 1px solid var(--red);
}
.ongoing-spotlight::before {
  content: "DEVAM EDEN";
  position: absolute;
  left: 4%;
  bottom: -2vw;
  color: rgba(255,255,255,.022);
  font: 800 clamp(70px, 12vw, 190px)/1 "Manrope";
  letter-spacing: -.07em;
  white-space: nowrap;
  pointer-events: none;
}
.spotlight-intro { position: relative; z-index: 2; }
.spotlight-intro h2 {
  margin: 25px 0;
  font: 600 clamp(43px, 4.8vw, 74px)/1 "Manrope";
  letter-spacing: -.055em;
}
.spotlight-intro h2 em { color: var(--gold-light); font-family: Georgia, serif; font-weight: 400; }
.spotlight-intro > p { max-width: 520px; color: #aaa397; font-size: 14px; line-height: 1.8; }
.spotlight-intro .text-link { margin-top: 22px; }
.ongoing-showcase {
  position: relative;
  z-index: 2;
  min-width: 0;
  min-height: 480px;
  display: grid;
  place-items: center;
  border: 1px solid var(--red);
  background:
    linear-gradient(135deg, rgba(0,0,0,.42), rgba(0,0,0,.84)),
    url("assets/projects/ninova-premium/08.jpeg") center/cover;
}
.ongoing-empty { max-width: 430px; padding: 45px; text-align: center; }
.ongoing-pulse {
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-bottom: 25px;
  border: 3px solid rgba(197,31,43,.35);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(197,31,43,.55);
  animation: ongoingPulse 1.8s infinite;
}
.ongoing-empty small { display: block; color: var(--gold); font-size: 8px; letter-spacing: .22em; }
.ongoing-empty strong { display: block; margin: 17px 0; font: 600 clamp(25px, 3vw, 38px)/1.2 "Manrope"; }
.ongoing-empty p { color: #928c82; font-size: 11px; line-height: 1.7; }
@keyframes ongoingPulse {
  70% { box-shadow: 0 0 0 18px rgba(197,31,43,0); }
  100% { box-shadow: 0 0 0 0 rgba(197,31,43,0); }
}
.ongoing-showcase.has-projects {
  min-height: 560px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  border: 0;
  background: transparent;
}
.ongoing-showcase .project-card {
  width: 100%;
  min-height: 560px;
  border: 1px solid var(--red);
}
.ongoing-showcase .project-card:first-child { grid-column: span 2; }
.projects-top {
  max-width: var(--max);
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.projects h2 { margin-bottom: 0; font-size: clamp(47px, 5vw, 78px); }
.project-tabs { display: flex; border-bottom: 1px solid var(--line); }
.project-tabs button {
  padding: 15px 20px;
  border: 0;
  border-bottom: 1px solid transparent;
  color: #aaa397;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
}
.project-tabs button.active { color: var(--gold-light); border-color: var(--red); }
.project-grid {
  max-width: var(--max);
  margin: 65px auto 0;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 18px;
}
.project-card {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  transition: opacity .3s, transform .3s;
}
.project-card.hidden { display: none; }
.project-card::after { content:""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.92), transparent 60%); pointer-events: none; }
.project-image { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .7s ease; }
.project-card:hover .project-image { transform: scale(1.055); }
.image-one { background-image: url("assets/projects/ninova-premium/08.jpeg"); background-position: 72% center; }
.image-two { background-image: linear-gradient(135deg, rgba(34,28,20,.15), rgba(0,0,0,.2)), url("assets/projects/ninova-premium/08.jpeg"); background-position: 50% center; }
.image-three { background-image: linear-gradient(135deg, rgba(75,11,17,.2), rgba(0,0,0,.4)), url("assets/projects/ninova-premium/08.jpeg"); background-position: 96% center; }
.image-yakacik { background-image: url("assets/projects/yakacik-konutlari/01.jpeg"); background-position: 50% center; }
.image-ninova-life { background-image: url("assets/projects/ninova-life/01.jpeg"); background-position: center 38%; }
.image-ninova-carsi { background-image: url("assets/projects/ninova-carsi/01.jpeg"); background-position: center 58%; }
.image-incirli { background-image: url("assets/projects/incirli-konutlari/01.jpeg"); background-position: center 52%; }
.image-yildirim { background-image: url("assets/projects/yildirim-konutlari/01.jpeg"); background-position: center 42%; }
.image-poligon { background-image: url("assets/projects/poligon-apartmani/02.jpeg"); background-position: center 48%; }
.image-kucukkoy { background-image: url("assets/projects/kucukkoy-konutlari/02.jpeg"); background-position: center 45%; }
.image-ninova-premium { background-image: url("assets/projects/ninova-premium/08.jpeg"); background-position: center 52%; }
.image-taskopru-konutlari { background-image: url("assets/projects/taskopru-konutlari/02.jpeg"); background-position: center 44%; }
.image-poligon-planlanan { background-image: url("assets/projects/poligon-caddesi-planlanan/01.jpeg"); background-position: center 48%; }
.project-status {
  position: absolute;
  z-index: 2;
  top: 25px;
  left: 25px;
  padding: 9px 12px;
  color: #fff;
  background: var(--red);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .15em;
}
.project-status.completed { color: #111; background: var(--gold-light); }
.project-status.planned { color: #111; background: #eee9dd; }
.project-gallery-count {
  position: absolute;
  z-index: 2;
  top: 28px;
  right: 25px;
  color: rgba(255,255,255,.8);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .14em;
}
.project-info { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 28px; }
.project-info > span { color: var(--gold-light); font-size: 8px; letter-spacing: .18em; }
.project-info h3 { margin: 10px 0 5px; font: 600 25px "Manrope"; }
.project-facts { display: flex; gap: 28px; margin-top: 14px; }
.project-featured .project-facts { gap: clamp(18px, 2.5vw, 38px); }
.project-facts p { margin: 0; display: flex; flex-direction: column; gap: 4px; }
.project-facts small { color: rgba(255,255,255,.45); font-size: 7px; letter-spacing: .15em; }
.project-facts strong { color: rgba(255,255,255,.8); font-size: 10px; font-weight: 500; }
.project-info a {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--red);
  transition: .25s;
}
.project-open {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--red);
  color: #fff;
  background: transparent;
  cursor: pointer;
  transition: .25s;
}
.project-open:hover { color: #111; background: var(--gold-light); border-color: var(--gold-light); }
.project-info a:hover { color: #111; background: var(--gold-light); border-color: var(--gold-light); }
.project-note { max-width: var(--max); margin: 22px auto 0; color: #555; font-size: 9px; }

.promise {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.project-modal.open { opacity: 1; visibility: visible; }
.project-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.88); backdrop-filter: blur(10px); }
.project-modal-panel {
  position: relative;
  z-index: 2;
  width: min(1280px, 95vw);
  max-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, .75fr);
  overflow: auto;
  color: #fff;
  background: #10100f;
  box-shadow: 0 30px 100px rgba(0,0,0,.55);
}
.project-modal-close {
  position: absolute;
  z-index: 5;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--red);
  color: #fff;
  background: rgba(0,0,0,.55);
  cursor: pointer;
  font-size: 25px;
}
.project-gallery { min-width: 0; padding: 22px; background: #080808; }
.project-gallery-stage {
  position: relative;
  height: min(65vh, 720px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #050505;
  touch-action: pan-y;
}
.project-gallery-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 1px solid var(--red);
  color: #fff;
  background: rgba(0,0,0,.55);
  transform: translateY(-50%);
  cursor: pointer;
  transition: .2s;
}
.gallery-arrow:hover { color: #111; background: var(--gold-light); border-color: var(--gold-light); }
.gallery-prev { left: 18px; }
.gallery-next { right: 18px; }
.gallery-counter {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 11px;
  color: #fff;
  background: rgba(0,0,0,.65);
  font-size: 9px;
  letter-spacing: .12em;
}
.gallery-thumbnails {
  display: flex;
  gap: 9px;
  margin-top: 12px;
  padding-bottom: 4px;
  overflow-x: auto;
  scrollbar-color: var(--gold) #222;
}
.gallery-thumbnail {
  flex: 0 0 88px;
  height: 62px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(197, 31, 43, .35);
  opacity: .55;
  background: #111;
  cursor: pointer;
}
.gallery-thumbnail.active { border-color: var(--red); opacity: 1; }
.gallery-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.project-modal-copy {
  padding: clamp(40px, 5vw, 70px) clamp(28px, 4vw, 55px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.project-modal-copy h2 { margin: 14px 0 8px; font: 600 clamp(35px, 4vw, 56px)/1.05 "Manrope"; letter-spacing: -.05em; }
.project-modal-location { margin: 0; color: var(--gold-light); font-size: 10px; letter-spacing: .16em; }
.project-modal-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin: 35px 0; }
.project-modal-facts div { padding: 20px 0; border-top: 1px solid var(--red); border-bottom: 1px solid var(--red); }
.project-modal-facts small { display: block; margin-bottom: 8px; color: var(--gold); font-size: 8px; letter-spacing: .15em; }
.project-modal-facts strong { font: 600 20px "Manrope"; }
.project-modal-description { margin: 0 0 35px; color: #aaa397; font-size: 13px; line-height: 1.8; }
body.modal-open { overflow: hidden; }
.promise-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(5,5,5,.72), rgba(5,5,5,.82)),
    url("assets/projects/ninova-premium/08.jpeg") center 65%/cover no-repeat;
  filter: grayscale(.7);
}
.promise-content { position: relative; z-index: 2; }
.promise blockquote { margin: 24px 0; font: 500 clamp(55px, 7vw, 100px)/.95 "Manrope"; letter-spacing: -.06em; }
.promise blockquote em { color: var(--gold-light); font-family: Georgia, serif; font-weight: 400; }
.promise p { max-width: 500px; margin: auto; color: rgba(255,255,255,.55); font-size: 13px; line-height: 1.8; }

.contact {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: clamp(50px, 9vw, 140px);
  max-width: 1600px;
  margin: auto;
  color: var(--white);
}
.contact h2 { font-size: clamp(45px, 5vw, 75px); }
.contact-copy > p { max-width: 550px; color: #b0aa9f; line-height: 1.8; }
.contact-list { margin-top: 48px; display: grid; gap: 22px; }
.contact-list > * { display: flex; align-items: flex-start; gap: 20px; }
.contact-list i {
  flex: 0 0 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--red);
  color: var(--gold-light);
  font-style: normal;
}
.contact-list span { display: flex; flex-direction: column; gap: 7px; }
.contact-list small { color: var(--gold); font-size: 8px; font-weight: 700; letter-spacing: .2em; }
.contact-list strong { font-size: 13px; line-height: 1.65; font-weight: 600; }
.quote-form {
  padding: clamp(32px, 4vw, 58px);
  color: #fff;
  background: #0d0d0c;
  border: 1px solid var(--red);
}
.quote-form h3 { margin: 12px 0 35px; font: 600 29px "Manrope"; }
.quote-form label { display: block; margin-bottom: 22px; }
.quote-form label > span { display: block; margin-bottom: 8px; color: var(--gold); font-size: 9px; letter-spacing: .08em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid rgba(197, 31, 43, .7);
  border-radius: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  font-size: 13px;
}
.quote-form select option { color: #fff; background: #111; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--red); }
.quote-form textarea { resize: vertical; }
.button-dark { width: 100%; margin-top: 8px; color: #111; background: var(--gold-light); }
.button-dark:hover { background: #f0d38f; }
.form-disclaimer { display: block; margin-top: 15px; color: #8e887e; font-size: 8px; line-height: 1.6; }
.form-success { display: none; margin-top: 20px; padding: 14px; color: var(--gold-light); border: 1px solid var(--red); font-size: 11px; line-height: 1.5; }
.form-success.show { display: block; }
.form-success.error { color: #ffb7b7; border-color: #7e3030; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.quote-form button[disabled] { opacity: .65; cursor: wait; }

.footer { padding: 70px max(5vw, 40px) 0; color: #fff; background: #050505; }
.footer-main {
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr .8fr .9fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer-brand p { margin: 25px 0; color: #aaa397; font-size: 12px; line-height: 1.8; }
.socials { display: flex; gap: 8px; }
.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--red);
  color: #aaa;
  transition: .25s;
}
.socials svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.socials svg .icon-fill,
.socials a:last-child svg { fill: currentColor; stroke: none; }
.socials a:hover { color: #111; background: var(--gold-light); border-color: var(--gold-light); }
.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-nav strong, .footer-contact strong { margin-bottom: 10px; color: var(--gold-light); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.footer-nav a, .footer-contact a { color: #aaa397; font-size: 11px; transition: color .2s; }
.footer-nav a:hover, .footer-contact a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--max);
  margin: auto;
  min-height: 68px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-top: 1px solid var(--red);
  color: #8e887e;
  font-size: 9px;
}
.markax-credit {
  padding: 8px 16px;
  color: #797979;
  font-size: 9px;
  white-space: nowrap;
  letter-spacing: .03em;
  animation: markaxGlow 2.4s ease-in-out infinite;
}
.footer-motto { justify-self: end; }
.markax-credit strong { color: var(--gold-light); font-weight: 700; }
.markax-credit::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  background: linear-gradient(90deg, transparent, rgba(229,199,131,.35), transparent) border-box;
  opacity: 0;
  animation: markaxShine 2.4s ease-in-out infinite;
}
@keyframes markaxGlow {
  0%, 100% { color: #5d5d5d; text-shadow: none; }
  50% { color: #d7d7d7; text-shadow: 0 0 12px rgba(229,199,131,.6); }
}
@keyframes markaxShine {
  0%, 100% { opacity: 0; transform: scaleX(.75); }
  50% { opacity: 1; transform: scaleX(1); }
}
.whatsapp-float {
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  align-items: center;
  color: #fff;
  border-radius: 50%;
  background: #1e9e59;
  box-shadow: 0 8px 25px rgba(0,0,0,.3);
  transition: transform .25s ease, box-shadow .25s ease;
}
.whatsapp-float svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 13px 30px rgba(30,158,89,.28); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1024px) {
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle {
    margin-left: auto;
    width: 45px;
    height: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid var(--red);
    background: transparent;
  }
  .menu-toggle span { width: 19px; height: 1px; background: #fff; transition: .3s; }
  .menu-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-open .menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: center;
    color: #fff;
    background: #090909;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
  }
  .menu-open .mobile-menu { opacity: 1; visibility: visible; }
  .mobile-menu nav { width: min(500px, 82vw); display: flex; flex-direction: column; }
  .mobile-menu a { padding: 20px 0; border-bottom: 1px solid var(--red); font: 600 29px "Manrope"; }
  .mobile-menu a > span { margin-right: 20px; color: var(--gold); font: 10px "DM Sans"; }
  .mobile-menu .mobile-cta { margin-top: 25px; padding: 18px 25px; color: #111; background: var(--gold-light); border: 0; font-size: 14px; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-strip > div:nth-child(2) { border-right: 0; }
  .trust-strip > div { border-bottom: 1px solid var(--line); }
  .about-heading, .about-grid, .contact { grid-template-columns: 1fr; }
  .about-intro { max-width: 600px; }
  .about-copy { max-width: none; }
  .project-grid { grid-template-columns: 1fr 1fr; }
  .project-featured { grid-column: 1 / -1; }
  .project-card { min-height: 460px; }
  .footer-main { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-contact { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; }
  .footer-contact strong { width: 100%; }
  .project-modal-panel { grid-template-columns: 1fr; }
  .project-gallery-stage { height: min(58vh, 620px); }
  .ongoing-spotlight { grid-template-columns: 1fr; }
  .ongoing-showcase .project-card:first-child { grid-column: auto; }
}

@media (max-width: 680px) {
  .site-header { height: 75px; padding: 0 20px; }
  .brand-logo { width: 55px; height: 49px; }
  .brand-logo img { width: 55px; height: 49px; }
  .brand-copy strong { font-size: 15px; }
  .brand-copy small { font-size: 7px; }
  .hero { min-height: 720px; height: 100svh; }
  .hero-media { background-position: 65% center; }
  .hero-content { width: auto; margin: 0 24px; padding-top: 190px; }
  .hero h1 { font-size: clamp(48px, 15vw, 68px); }
  .hero-content > p { max-width: 360px; font-size: 14px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 24px; margin-top: 30px; }
  .button { width: 100%; }
  .hero-stat { right: 24px; bottom: 30px; }
  .hero-stat strong { font-size: 49px; }
  .scroll-hint { display: none; }
  .trust-strip { grid-template-columns: 1fr 1fr; padding: 0; }
  .trust-strip > div { padding: 25px 18px; }
  .trust-strip strong { font-size: 14px; }
  .trust-strip span { font-size: 9px; }
  .section { padding: 85px 24px; }
  .about-heading h2, .projects h2, .contact h2 { font-size: 43px; }
  .about-grid { margin-top: 35px; gap: 65px; }
  .about-visual { min-height: 420px; padding: 18px 0 0 18px; }
  .visual-frame { min-height: 420px; }
  .quality-seal { right: -5px; width: 105px; height: 105px; }
  .metrics strong { font-size: 30px; }
  .projects-top { align-items: flex-start; flex-direction: column; gap: 35px; }
  .project-tabs { width: 100%; overflow-x: auto; }
  .project-tabs button { padding: 14px 13px; white-space: nowrap; }
  .project-grid { grid-template-columns: 1fr; margin-top: 35px; }
  .project-featured { grid-column: auto; }
  .project-card { min-height: 450px; }
  .ongoing-spotlight { min-height: auto; padding: 80px 24px; }
  .ongoing-showcase { min-height: 430px; }
  .ongoing-empty { padding: 30px 20px; }
  .ongoing-showcase.has-projects { grid-template-columns: 1fr; }
  .ongoing-showcase .project-card { min-height: 480px; }
  .project-featured .project-facts { gap: 16px; }
  .project-featured .project-facts small { font-size: 6px; }
  .project-modal { padding: 0; place-items: stretch; }
  .project-modal-panel { width: 100%; max-height: 100svh; min-height: 100svh; }
  .project-gallery { padding: 0; }
  .project-gallery-stage { height: 55svh; }
  .gallery-arrow { width: 42px; height: 42px; }
  .gallery-prev { left: 10px; }
  .gallery-next { right: 10px; }
  .gallery-thumbnails { padding: 10px 14px 5px; margin-top: 0; }
  .gallery-thumbnail { flex-basis: 72px; height: 52px; }
  .project-modal-copy { padding: 38px 24px 55px; }
  .project-modal-copy .button { width: 100%; }
  .promise { min-height: 540px; padding: 30px; }
  .promise blockquote { font-size: 58px; }
  .contact { gap: 50px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form { margin: 0 -24px -85px; padding: 40px 24px; }
  .footer { padding: 60px 24px 0; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 45px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; flex-direction: column; }
  .footer-bottom { padding: 22px 0; grid-template-columns: 1fr; align-items: flex-start; gap: 10px; }
  .markax-credit { padding: 4px 0; white-space: normal; }
  .footer-motto { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
