/* ═══════════════════════════════════════════
   VIDGTS GNÓSI — Main Stylesheet
   ═══════════════════════════════════════════ */

/* Reset & Variables */
*{margin:0;padding:0;box-sizing:border-box}

:root{
  --black:#000000;
  --off-black:#0A0A0A;
  --dark:#111111;
  --dark2:#1A1A1A;
  --mid:#333333;
  --gray:#888888;
  --light-gray:#CCCCCC;
  --off-white:#F5F5F3;
  --white:#FFFFFF;
  --bd:rgba(255,255,255,0.08);
  --bdl:rgba(0,0,0,0.1);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

/* ═══════════════════════════════════════════
   CURSOR
   ═══════════════════════════════════════════ */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.15s, height 0.15s;
}
.cursor-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.14s ease;
}
.cursor.active    { width: 4px; height: 4px; }
.cursor-ring.active { width: 52px; height: 52px; border-color: rgba(255,255,255,0.12); }

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 0.5px solid var(--bd);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  transition: border-color 0.3s;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}
.nav-mark     { height: 60px; width: auto; filter: invert(1); }
.nav-wordmark { height: 44px; width: auto; filter: invert(1); margin-left: 10px; }

.nav-links { display: flex; gap: 40px; }
.nav-links a {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 0.5px;
  background: var(--white);
  transition: width 0.3s;
}
.nav-links a:hover             { color: var(--white); }
.nav-links a:hover::after      { width: 100%; }

.nav-cta {
  background: transparent;
  color: var(--white);
  border: 0.5px solid rgba(255,255,255,0.3);
  padding: 9px 24px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: none;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--white); color: var(--black); }

.nav-ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  padding: 4px;
}
.nav-ham span { width: 20px; height: 1px; background: var(--white); display: block; }

/* ═══════════════════════════════════════════
   MOBILE MENU
   ═══════════════════════════════════════════ */
.mob-menu {
  display: none;
  position: fixed;
  inset: 68px 0 0;
  background: var(--black);
  z-index: 99;
  flex-direction: column;
  padding: 48px 5vw;
  border-top: 0.5px solid var(--bd);
}
.mob-menu.open { display: flex; }
.mob-menu a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  padding: 18px 0;
  border-bottom: 0.5px solid var(--bd);
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  right: -6vw;
  top: 50%;
  transform: translateY(-50%);
  width: 55vw;
  max-width: 680px;
  opacity: 0.028;
  pointer-events: none;
}
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 5vw;
  max-width: 960px;
  position: relative;
  z-index: 2;
}
.hero-tag {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: up 0.9s 0.2s ease forwards;
}
.hero-tag::before {
  content: "";
  width: 36px;
  height: 0.5px;
  background: rgba(255,255,255,0.2);
}
.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 10.5vw, 138px);
  line-height: 0.9;
  letter-spacing: 0.015em;
  color: var(--white);
  margin-bottom: 44px;
  opacity: 0;
  animation: up 0.9s 0.38s ease forwards;
}
.hero-h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.22);
}
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 1.8vw, 22px);
  color: rgba(255,255,255,0.4);
  line-height: 1.85;
  max-width: 500px;
  margin-bottom: 52px;
  font-weight: 300;
  opacity: 0;
  animation: up 0.9s 0.55s ease forwards;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: up 0.9s 0.7s ease forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: up 0.9s 1.1s ease forwards;
}
.hero-scroll span {
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  writing-mode: vertical-rl;
}
.scroll-line { width: 0.5px; height: 48px; background: rgba(255,255,255,0.15); }

@keyframes up {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn-w {
  background: var(--white);
  color: var(--black);
  border: none;
  padding: 14px 36px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: none;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.btn-w:hover { background: var(--off-white); }

.btn-o {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 0.5px solid rgba(255,255,255,0.18);
  padding: 14px 36px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: none;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-o:hover { color: var(--white); border-color: rgba(255,255,255,0.45); }

/* ═══════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════ */
.mq-wrap {
  border-top: 0.5px solid var(--bd);
  border-bottom: 0.5px solid var(--bd);
  background: var(--off-black);
  padding: 17px 0;
  overflow: hidden;
}
.mq-track {
  display: flex;
  animation: mq 30s linear infinite;
  white-space: nowrap;
}
.mq-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.22);
  padding: 0 34px;
  border-right: 0.5px solid rgba(255,255,255,0.07);
  text-transform: uppercase;
}
.mq-item b { color: rgba(255,255,255,0.07); margin-right: 8px; font-size: 10px; font-weight: 400; }
@keyframes mq { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════
   SECTION SHARED
   ═══════════════════════════════════════════ */
.sec-eye {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.3);
  margin-bottom: 14px;
  font-weight: 500;
}
.sec-eye.w { color: rgba(255,255,255,0.25); }
.sec-h {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 4.5vw, 60px);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 24px;
  color: var(--black);
}
.sec-h.w { color: var(--white); }
.body-txt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: rgba(0,0,0,0.55);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 18px;
}
.sec-sub-w {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(15px, 1.5vw, 19px);
  color: rgba(255,255,255,0.38);
  line-height: 1.8;
  font-weight: 300;
}

/* ═══════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════ */
.about { background: var(--white); padding: 120px 5vw; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual {
  border: 0.5px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  background: var(--white);
}
.about-visual img { width: 100%; max-width: 380px; height: auto; }
.pull {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: var(--black);
  letter-spacing: 0.04em;
  line-height: 1.25;
  border-left: 1.5px solid var(--black);
  padding-left: 18px;
  margin: 28px 0 22px;
}
.about-stats { display: grid; grid-template-columns: 1fr 1fr; border: 0.5px solid rgba(0,0,0,0.1); margin-top: 36px; }
.st { padding: 22px 20px; border-right: 0.5px solid rgba(0,0,0,0.1); border-bottom: 0.5px solid rgba(0,0,0,0.1); }
.st:nth-child(even)      { border-right: none; }
.st:nth-last-child(-n+2) { border-bottom: none; }
.st-n { font-family: 'Bebas Neue', sans-serif; font-size: 38px; color: var(--black); line-height: 1; }
.st-l { font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(0,0,0,0.38); margin-top: 3px; font-weight: 500; }

/* ═══════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════ */
.services { background: var(--black); padding: 120px 5vw; }
.svc-top { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 56px; align-items: end; }
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(195px, 1fr)); border: 0.5px solid var(--bd); }
.svc-card { padding: 38px 28px; border-right: 0.5px solid var(--bd); border-bottom: 0.5px solid var(--bd); transition: background 0.3s; }
.svc-card:hover { background: var(--dark2); }
.svc-n { font-family: 'Bebas Neue', sans-serif; font-size: 52px; color: rgba(255,255,255,0.04); line-height: 1; margin-bottom: 18px; }
.svc-t { font-family: 'Bebas Neue', sans-serif; font-size: 15px; letter-spacing: 0.1em; color: var(--white); text-transform: uppercase; margin-bottom: 10px; }
.svc-d { font-size: 12px; color: rgba(255,255,255,0.32); line-height: 1.7; font-weight: 300; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 14px; }
.tag { font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 8px; border: 0.5px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.28); }

/* ═══════════════════════════════════════════
   WORK
   ═══════════════════════════════════════════ */
.work { background: var(--off-white); padding: 120px 5vw; }
.work-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 24px; }
.work-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); border: 0.5px solid rgba(0,0,0,0.1); }
.case { padding: 38px 30px; border-right: 0.5px solid rgba(0,0,0,0.1); border-bottom: 0.5px solid rgba(0,0,0,0.1); background: var(--white); transition: background 0.3s; }
.case:hover { background: var(--off-white); }
.case-sec { font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(0,0,0,0.3); margin-bottom: 12px; font-weight: 500; }
.case-t { font-family: 'Bebas Neue', sans-serif; font-size: 19px; letter-spacing: 0.04em; color: var(--black); margin-bottom: 10px; line-height: 1.2; text-transform: uppercase; }
.case-b { font-family: 'Cormorant Garamond', serif; font-size: 14px; color: rgba(0,0,0,0.5); line-height: 1.8; font-weight: 300; }
.case-r { margin-top: 18px; padding-top: 14px; border-top: 0.5px solid rgba(0,0,0,0.07); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(0,0,0,0.35); font-weight: 500; }
.case-r::before { content: "— "; }

/* ═══════════════════════════════════════════
   STATEMENT
   ═══════════════════════════════════════════ */
.statement { background: var(--black); padding: 80px 5vw; border-top: 0.5px solid var(--bd); border-bottom: 0.5px solid var(--bd); }
.stmt-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 28px; }
.stmt-t { font-family: 'Bebas Neue', sans-serif; font-size: clamp(30px, 4.5vw, 58px); color: var(--white); letter-spacing: 0.02em; line-height: 1.05; }
.stmt-t span { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.22); }

/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */
.contact { background: var(--white); padding: 120px 5vw; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.c-detail { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.c-dash { width: 14px; height: 0.5px; background: rgba(0,0,0,0.4); margin-top: 11px; flex-shrink: 0; }
.c-lbl { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(0,0,0,0.32); margin-bottom: 2px; font-weight: 500; }
.c-val { font-size: 14px; color: var(--black); font-weight: 300; }
.f-grp { margin-bottom: 16px; }
.f-lbl { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(0,0,0,0.38); display: block; margin-bottom: 7px; font-weight: 500; }
.f-inp { width: 100%; background: transparent; border: none; border-bottom: 0.5px solid rgba(0,0,0,0.18); padding: 10px 0; color: var(--black); font-size: 14px; font-family: 'DM Sans', sans-serif; font-weight: 300; outline: none; transition: border-color 0.2s; }
.f-inp:focus { border-bottom-color: var(--black); }
.f-inp::placeholder { color: rgba(0,0,0,0.18); }
textarea.f-inp { resize: none; height: 88px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.f-submit { background: var(--black); color: var(--white); border: none; padding: 14px 40px; font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; cursor: none; font-family: 'DM Sans', sans-serif; margin-top: 8px; width: 100%; transition: background 0.2s; }
.f-submit:hover { background: var(--dark2); }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
footer { background: var(--off-black); border-top: 0.5px solid var(--bd); padding: 32px 5vw; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.ft-logo { display: flex; align-items: center; gap: 0; }
.ft-mark     { height: 40px; width: auto; filter: invert(1); }
.ft-wordmark { height: 28px; width: auto; filter: invert(1); margin-left: 8px; }
.ft-copy { font-size: 10px; color: rgba(255,255,255,0.18); letter-spacing: 0.04em; }
.ft-links { display: flex; gap: 22px; }
.ft-links a { font-size: 10px; color: rgba(255,255,255,0.22); text-decoration: none; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
.ft-links a:hover { color: rgba(255,255,255,0.65); }

/* ═══════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════ */
.rv { opacity: 0; transform: translateY(22px); transition: opacity 0.75s ease, transform 0.75s ease; }
.rv.on { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-ham { display: flex; }
  .about-grid, .svc-top, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .f-row { grid-template-columns: 1fr; }
  .about, .services, .work, .contact { padding: 80px 5vw; }
  .work-top, .stmt-inner { flex-direction: column; align-items: flex-start; }
  footer { flex-direction: column; align-items: flex-start; }
  .about-visual { padding: 40px 24px; }
}

/* ═══════════════════════════════════════════
   FORM STATUS MESSAGES
   ═══════════════════════════════════════════ */
.form-status {
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 12px 0;
  display: block;
  margin-top: 8px;
  min-height: 20px;
}
.form-status--success {
  color: var(--black);
  border-left: 2px solid var(--black);
  padding-left: 12px;
}
.form-status--error {
  color: #cc0000;
  border-left: 2px solid #cc0000;
  padding-left: 12px;
}
.f-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
