:root {
  --bg: #f4eedf;
  --bg2: #efe6d1;
  --ink: #1d1612;
  --muted: rgba(29, 22, 18, 0.68);
  --brown: #4a2410;
  --gold: #c89b3a;
  --line: rgba(29, 22, 18, 0.12);

  --radius: 999px;
  --shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
  --shadowSoft: 0 20px 40px rgba(0, 0, 0, 0.12);

  --container: 1180px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--ink);
  background: var(--bg);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btnGold {
  background: var(--gold);
  color: #2b1a10;
  border-color: rgba(0,0,0,0.1);
  box-shadow: 0 10px 20px rgba(200, 155, 58, 0.25);
}
.btnGold:hover { background: color-mix(in srgb, var(--gold) 90%, white 10%); }

.btnGhost {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.22);
  backdrop-filter: blur(6px);
}
.btnGhost:hover { background: rgba(255,255,255,0.1); }

.btnGhostLight {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.22);
  backdrop-filter: blur(6px);
}
.btnGhostLight:hover { background: rgba(255,255,255,0.12); }

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: #0e0e0e;
  color: #fff;
  margin: 0;
}
.heroVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(1.05);
  transform: scale(1.02);
}
.heroOverlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 700px at 18% 82%, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0.15) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.55));
}
/* Section container */
.videoSection {
  position: relative;
  overflow: hidden;
}

/* Background video */
.sectionVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
}

/* Dark overlay for readability */
.sectionOverlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

/* Keep content above video */
.sectionContent {
  position: relative;
  z-index: 2;
}


/* Text contrast */
.sectionProject .projectCopy,
.sectionProject .projectCopy p,
.sectionProject .projectCopy li,
.sectionProject .projectTitle {
  color: #fff;
}
.sectionMediaShowcase .mediaTabs{
  display:flex; gap:10px; margin-top:18px; flex-wrap:wrap;
}
.sectionMediaShowcase .mediaTab{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.85);
  padding:10px 14px; border-radius:14px;
  font-weight:700; font-size:13px;
}
.sectionMediaShowcase .mediaTab.isActive{
  border-color: rgba(214,177,94,.35);
  background: rgba(214,177,94,.12);
  color:#fff;
}
.videoGridIframes{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:16px;
}
@media (max-width: 900px){
  .videoGridIframes{ grid-template-columns: 1fr; }
}

.vFrameCard{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius:18px;
  overflow:hidden;
}

.vFrame{
  position:relative;
  width:100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.vFrame iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  display:block;
}
/* ===== Hamburger icon (vi-burger__lines) ===== */
.vi-burger__lines{
  position: relative;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,.92);
  border-radius: 999px;
  display: inline-block;
}

.vi-burger__lines::before,
.vi-burger__lines::after{
  content:"";
  position:absolute;
  left:0;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,.92);
  border-radius: 999px;
}

.vi-burger__lines::before{ top: -7px; }
.vi-burger__lines::after{ top: 7px; }
.vCap{
  padding:12px 14px 14px;
}
.vCap .vTitle{
  font-weight:900;
  color:#fff;
}
.vCap .vSub{
  margin-top:3px;
  font-size:13px;
  color: rgba(255,255,255,.65);
}
.sectionMediaShowcase .mediaPanel{ display:none; margin-top:22px; }
.sectionMediaShowcase .mediaPanel.isActive{ display:block; }

.masonry{
  columns: 3; column-gap: 14px;
}
@media (max-width: 980px){ .masonry{ columns:2; } }
@media (max-width: 560px){ .masonry{ columns:1; } }

.mItem{
  display:block; margin:0 0 14px;
  border-radius:18px; overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  transform: translateZ(0);
}
.mItem img{
  width:100%; height:auto; display:block;
  transition: transform .5s ease;
}
.mItem:hover img{ transform: scale(1.03); }

.mediaMore{ margin-top:18px; display:flex; justify-content:center; }

.videoGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:14px;
}
@media (max-width: 860px){ .videoGrid{ grid-template-columns: 1fr; } }

.vCard{
  text-align:left;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius:18px;
  overflow:hidden;
  display:grid;
  grid-template-columns: 180px 1fr;
  gap:12px;
  padding:12px;
}
@media (max-width:560px){ .vCard{ grid-template-columns: 1fr; } }

.vThumb{
  border-radius:14px;
  background-size:cover; background-position:center;
  min-height:110px;
  position:relative;
}
.vThumb::after{
  content:"▶";
  position:absolute; inset:0;
  display:grid; place-items:center;
  font-size:34px;
  color:#fff;
  text-shadow: 0 10px 30px rgba(0,0,0,.65);
  background: radial-gradient(circle at 50% 50%, rgba(0,0,0,.15), rgba(0,0,0,.45));
}
.vMeta{ display:grid; align-content:center; gap:4px; }
.vTitle{ font-weight:900; color:#fff; }
.vSub{ font-size:13px; color: rgba(255,255,255,.65); }

/* Lightbox + Modal */
.viLightbox,.viVideoModal{
  position:fixed; inset:0; z-index:10000;
  opacity:0; pointer-events:none;
  transition: opacity .2s ease;
}
.viLightbox.isOpen,.viVideoModal.isOpen{
  opacity:1; pointer-events:auto;
}
.lbBackdrop,.vmBackdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(10px);
}
.lbDialog,.vmDialog{
  position:relative;
  width:min(980px, 92vw);
  margin: 6vh auto 0;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(10,10,10,.75);
  box-shadow: 0 30px 90px rgba(0,0,0,.5);
  overflow:hidden;
}
.lbClose,.vmClose{
  position:absolute; top:10px; right:10px;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color:#fff;
  z-index:2;
}
.lbImg{ width:100%; height:auto; display:block; }
.vmFrameWrap{ aspect-ratio: 16/9; }
.vmFrameWrap iframe{ width:100%; height:100%; border:0; display:block; }
/* Pills readable on video */
.sectionProject .pill {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.heroTop {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 24px;
  gap: 12px;
  display: none;
}
.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.logoMark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
}
.logoText { line-height: 1.1; text-align: left; }
.logoName { display:block; font-weight: 700; letter-spacing: 0.08em; font-size: 12px; text-transform: uppercase; }
.logoSub { display:block; font-size: 12px; opacity: 0.85; }

.menuBtn {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  cursor: pointer;
  backdrop-filter: blur(6px);
}
.hamburger { display:inline-flex; flex-direction: column; gap: 4px; }
.hamburger i { width: 22px; height: 2px; background: rgba(255,255,255,0.85); display:block; border-radius: 2px; }

.heroInner { position: relative; z-index: 2; height: calc(100% - 84px); display:flex; flex-direction: column; justify-content: space-between; padding: 100px 10px 42px; }
.heroH1 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: 0.01em;
  margin: 0 0 12px;
}
.heroH2 {
  margin: 0;
  font-size: 16px;
  opacity: 0.9;
  max-width: 48ch;
}
.heroBottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}
.heroPara {
  max-width: 72ch;
  margin: 0;
  opacity: 0.86;
  line-height: 1.55;
}
.explore {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  opacity: 0.95;
  transition: opacity .25s ease, transform .25s ease;
}
.explore:hover { opacity: 1; transform: translateY(-1px); }
.arrow { font-size: 18px; }

.heroLine {
  position: absolute;
  top: 84px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,0.18);
  z-index: 2;
}

/* ===== Sections ===== */
.section { padding: 92px 0; }
.kicker {
  margin: 0 0 12px;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(29,22,18,0.7);
}
.h2 {
  margin: 0 0 14px;
  color: var(--brown);
  letter-spacing: 0.01em;
}
.bigTitle { font-size: clamp(28px, 3vw, 44px); line-height: 1.08; }
.body { margin: 0 0 18px; color: var(--muted); line-height: 1.7; font-size: 16px; }

/* Split */
.sectionSplit { background: var(--bg2); }
.splitGrid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}
.mediaFrame {
  position: relative;
  box-shadow: var(--shadowSoft);
  border: 1px solid rgba(0,0,0,0.06);
}
.mediaFrame img { width: 100%; height: 520px; object-fit: cover; }
.mediaGlow {
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(0,0,0,0.08);
  pointer-events: none;
}

/* Project */
.projectGrid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}
.projectTitle { margin-bottom: 10px; }
.projectName {
  display:block;
  font-size: clamp(40px, 4.6vw, 76px);
  line-height: 1;
  font-weight: 800;
}
.projectMeta { display:flex; flex-wrap: wrap; gap: 10px; margin: 12px 0 16px; }
.pill {
  font-size: 12px;
  padding: 8px 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.55);
}

.list { margin: 0 0 18px; padding-left: 18px; color: rgba(29,22,18,0.78); line-height: 1.8; }
.stack { position: relative; }
.stackMain { width: 100%; height: 520px; object-fit: cover; box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,0.06); }
.stackSub {
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: min(340px, 52%);
  height: 240px;
  object-fit: cover;
  border: 10px solid var(--bg);
  box-shadow: var(--shadowSoft);
}

/* Features */
.centerTitle { text-align: center; font-size: clamp(26px, 2.8vw, 38px); }
.muted { opacity: 0.45; }
.featureGrid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.07);
  overflow: hidden;
}
.cardMedia img { width: 100%; height: 180px; object-fit: cover; }
.card h3 { margin: 14px 14px 8px; color: var(--brown); font-size: 16px; }
.card p { margin: 0 14px 16px; color: var(--muted); line-height: 1.55; font-size: 14px; }

/* Statement */
.sectionStatement { background: var(--bg2); }
.statementGrid {
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}
.megaTitle { font-size: clamp(34px, 4vw, 56px); line-height: 1.02; }
.nowrap { white-space: nowrap; }
.statementMedia { position: relative; }
.statementMedia img { width: 100%; height: 520px; object-fit: cover; box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,0.06); }
.leafArt {
  position: absolute;
  right: -10px;
  top: -10px;
  width: 160px;
  height: 160px;
  opacity: 0.25;
  background:
    radial-gradient(circle at 30% 30%, rgba(74,36,16,0.25), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(74,36,16,0.25), transparent 55%);
  filter: blur(0.2px);
  border: 1px solid rgba(74,36,16,0.15);
}

/* Stats */
.sectionStats { padding: 64px 0 88px; }
.statsGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat {
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 20px 18px;
}
.num {
  font-size: 40px;
  font-weight: 800;
  color: var(--brown);
  letter-spacing: 0.02em;
}
.label { margin-top: 8px; color: var(--muted); line-height: 1.4; }

/* Final CTA */
.finalCTA { position: relative; padding: 120px 0; color: #fff; overflow: hidden; }
.finalBg { position:absolute; inset:0; }
.finalBg img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.02) saturate(1.03); transform: scale(1.02); }
.finalOverlay {
  position:absolute; inset:0;
  background: radial-gradient(900px 520px at 22% 40%, rgba(0,0,0,0.55), rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.55)),
              linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0.65));
}
.finalInner { position: relative; z-index: 2; max-width: 820px; }
.light { color: rgba(255,255,255,0.85); }
.lightTitle { color: #fff; font-size: clamp(34px, 4.4vw, 62px); margin-bottom: 10px; }
.lightBody { color: rgba(255,255,255,0.85); }
.finalActions { display:flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }

/* Footer */
.footer { padding: 46px 0; border-top: 1px solid var(--line); }
.footerGrid {
  display:grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: start;
}
.brandMini { display:flex; align-items:center; gap: 10px; font-weight: 700; color: var(--brown); }
.brandDot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); }
.footText { margin: 10px 0 0; color: var(--muted); max-width: 52ch; line-height: 1.6; }
.footLinks { display:flex; gap: 14px; flex-wrap: wrap; color: rgba(29,22,18,0.7); }
.footLinks a:hover { color: var(--brown); }

/* Menu overlay */
.menuOverlay {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 50;
}
.menuOverlay.open { display: block; }
.menuBackdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0,0,0,0.35);
}
.menuPanel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 88vw);
  background: rgba(244, 238, 223, 0.9);
  backdrop-filter: blur(10px);
  border-left: 1px solid rgba(0,0,0,0.10);
  padding: 18px;
  display:flex;
  flex-direction: column;
  gap: 18px;
}
.menuTop { display:flex; align-items:center; justify-content: space-between; }
.iconBtn {
  width: 40px; height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.55);
  cursor: pointer;
}
.menuNav { display:flex; flex-direction: column; gap: 12px; padding: 10px 0; }
.menuNav a {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.55);
  color: var(--brown);
}
.menuNav a:hover { background: rgba(255,255,255,0.8); }
.menuCTA { margin-top: auto; padding-top: 12px; border-top: 1px solid rgba(0,0,0,0.08); }
.menuCTA p { margin: 0 0 10px; color: rgba(29,22,18,0.7); }

/* Reveal utility (GSAP targets) */
.revealUp { will-change: transform, opacity; }

/* Responsive */
@media (max-width: 980px) {
  .heroBottom { flex-direction: column; align-items: flex-start; }
  .splitGrid, .projectGrid, .statementGrid { grid-template-columns: 1fr; }
  .mediaFrame img, .stackMain, .statementMedia img { height: 420px; }
  .stackSub { right: 10px; bottom: -18px; }
  .featureGrid { grid-template-columns: repeat(2, 1fr); }
  .statsGrid { grid-template-columns: repeat(2, 1fr); }
  .footerGrid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .featureGrid { grid-template-columns: 1fr; }
  .statsGrid { grid-template-columns: 1fr; }
  .heroTop { grid-template-columns: 1fr auto; }
  .logo { display:none; }
  .heroInner { position: relative; z-index: 2; height: calc(100% - 84px); display:flex; flex-direction: column; justify-content: space-between; padding: 100px 15px 0px; }

  .heroH1 {
  font-size: 30px;
  line-height: 1.02;
  letter-spacing: 0.01em;
  margin: 0 0 12px;
}
.heroH2 {
  margin: 0;
  font-size: 16px;
  opacity: 0.9;
  max-width: 48ch;
}
}
.heroMedia{
  position:absolute;
  inset:0;
  z-index:0;
}
.heroFrame{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform: scale(1.06);
  opacity:0;
  filter: contrast(1.03) saturate(1.05);
  will-change: transform, opacity;
}
.heroPara span{
  font-size: 28px;      /* increase size */
  font-weight: 600;     /* optional for emphasis */
  color: #d6b15e;       /* optional highlight color */
  display: inline-block;
  margin-right: 6px;
}
/* Unsplash online images (random but stable-ish using sig) */
.heroFrame1{
  background-image:url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2200&q=80");
}
.heroFrame2{
  background-image:url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=2200&q=80");
}
.heroFrame3{
  background-image:url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=2200&q=80");
}
/* ===========================
   VI MENU (Premium Overlay)
=========================== */
.sectionStatement .statementCopy h2,
.sectionStatement .statementCopy .body,
.sectionStatement .statementCopy a {
  color: #fff;
}
:root{
  --vi-bg: rgba(10, 10, 12, 0.82);
  --vi-panel: rgba(18, 18, 22, 0.92);
  --vi-border: rgba(255,255,255,0.10);
  --vi-text: rgba(255,255,255,0.92);
  --vi-muted: rgba(255,255,255,0.68);
  --vi-gold: #d6b15e;
  --vi-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

/* wrapper */
.vi-menu{
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
}

/* open state */
.vi-menu.is-open{
  opacity: 1;
  pointer-events: auto;
}

/* backdrop */
.vi-menu__backdrop{
  position: absolute;
  inset: 0;
  border: 0;
  background: var(--vi-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}

/* panel */
.vi-menu__panel{
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 92vw);
  background: linear-gradient(180deg, rgba(25,25,30,0.96), rgba(15,15,18,0.92));
  border-left: 1px solid var(--vi-border);
  box-shadow: var(--vi-shadow);
  transform: translateX(16px);
  opacity: 0;
  display: flex;
  flex-direction: column;
  padding: 22px 18px;
}

/* open animation state helper (JS/GSAP will handle too) */
.vi-menu.is-open .vi-menu__panel{
  transform: translateX(0);
  opacity: 1;
  transition: transform .35s ease, opacity .35s ease;
}

/* top row */
.vi-menu__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--vi-border);
}

/* brand */
.vi-menu__brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--vi-text);
  font-weight: 600;
  letter-spacing: 0.2px;
  font-size: 14px;
}

.vi-menu__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff, var(--vi-gold));
  box-shadow: 0 0 0 6px rgba(214,177,94,0.15);
}

/* close */
.vi-menu__close{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--vi-border);
  background: rgba(255,255,255,0.04);
  color: var(--vi-text);
  font-size: 16px;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease;
}
.vi-menu__close:hover{ background: rgba(255,255,255,0.08); transform: translateY(-1px); }

/* nav */
.vi-menu__nav{
  display: grid;
  gap: 10px;
  padding: 16px 0 10px;
}
.vi-menu__link{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
  color: var(--vi-text);
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  transition: background .2s ease, transform .15s ease, border .2s ease;
}
.vi-menu__link:hover{
  background: rgba(214,177,94,0.10);
  border-color: rgba(214,177,94,0.25);
  transform: translateX(-2px);
}

/* section */
.vi-menu__section{
  padding-top: 14px;
  margin-top: 10px;
  border-top: 1px solid var(--vi-border);
}

.vi-menu__title{
  color: var(--vi-muted);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* social */
.vi-menu__social{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.vi-menu__socialBtn{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: var(--vi-text);
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: transform .15s ease, background .2s ease, border .2s ease;
}
.vi-menu__socialBtn:hover{
  background: rgba(214,177,94,0.12);
  border-color: rgba(214,177,94,0.28);
  transform: translateY(-2px);
}

/* contact info */
.vi-menu__info{
  display: grid;
  gap: 12px;
}
.vi-menu__infoRow{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: var(--vi-text);
  align-items: start;
}
.vi-menu__infoRow i{
  margin-top: 4px;
  color: rgba(214,177,94,0.95);
}
.vi-menu__infoLabel{
  color: var(--vi-muted);
  font-size: 12px;
  margin-bottom: 2px;
}
.vi-menu__infoValue{
  color: var(--vi-text);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
}
.vi-menu__infoValue:hover{ text-decoration: underline; }
.vi-menu__address{ color: rgba(255,255,255,0.82); }

/* CTA */
.vi-menu__cta{
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--vi-border);
}
.vi-menu__ctaText{
  color: rgba(255,255,255,0.80);
  margin: 0 0 10px;
  font-size: 14px;
}
.vi-menu__ctaBtn{
  display: inline-flex;
  justify-content: center;
  width: 100%;
  padding: 12px 14px;
  border-radius: 16px;
  text-decoration: none;
  color: #121212;
  background: linear-gradient(90deg, #f0d58a, var(--vi-gold));
  box-shadow: 0 12px 30px rgba(214,177,94,0.25);
  font-weight: 700;
  transition: transform .15s ease, filter .2s ease;
}
.vi-menu__ctaBtn:hover{ transform: translateY(-1px); filter: brightness(1.02); }
.sectionProject {
  position: relative;
 
  margin-bottom: 20px;
}


.sectionOverlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

.sectionContent {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  #gallery {
    display: none;
  }
}
.vCap .vTitle {
  color: #000;
}

.vCap .vSub {
  color: #333;
}
.sectionScrollGallery {
  position: relative;
  z-index: 2;
  background: #f8f6ef;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.sectionScrollGallery .container {
  padding-top: 80px;
  padding-bottom: 28px;
}

.galleryHead {
  max-width: 860px;
}

.scrollGallery {
  position: relative;
  height: 300vh;
  margin: 0;
}

.scrollGallerySticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.sgItem {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100vh;
  margin: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: 1;
}

.sgItem.isActive {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.sgItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sgItem figcaption {
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: 3;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  padding: 12px 18px;
  border-radius: 12px;
  max-width: 420px;
}

.sgProgress {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 180px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  overflow: hidden;
  z-index: 5;
}

.sgBar {
  display: block;
  width: 100%;
  height: 25%;
  background: #d6b15e;
  border-radius: 999px;
  transition: transform 0.35s ease;
}

@media (max-width: 768px) {
  .sectionScrollGallery {
    display: none;
  }
}