@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* ── YOUR EXACT ORIGINAL TOKENS ─────────────────── */
:root {
  --max-width: 1350px;
  --accent: #9b9bff;          /* ← your exact accent */
  --accent-dim: rgba(155,155,255,0.12);
  --accent-glow: rgba(155,155,255,0.3);
  --bg: #0f0f0f;              /* ← your exact bg */
  --bg2: #1a1a1a;
  --bg-card: #1c1c1c;
  --text: #f5f5f5;            /* ← your exact text */
  --text-muted: #bbb;
  --text-dim: #ccc;
  --border: rgba(255,255,255,0.08);
  --gap: 16px;

  /* Metro tile accent colors — original */
  --metro-cobalt:  #0050ef;
  --metro-crimson: #a20025;
  --metro-emerald: #008a00;
  --metro-mango:   #f0a30a;
  --metro-violet:  #aa00ff;

  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

/* YOUR ORIGINAL BODY — exact gradient */
body {
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: #f5f5f5;
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: none; border: none; background: none; font-family: inherit; }

/* ══════════════════════════════════════════════
   CUSTOM CURSOR
══════════════════════════════════════════════ */
* { cursor: none !important; }

.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(0, 0);
  will-change: transform;
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}
.cursor.hovered {
  width: 22px; height: 22px;
  background: #fff;
}
/* Hide custom cursor and restore default on touch devices */
@media (hover: none) and (pointer: coarse) {
  * { cursor: auto !important; }
  .cursor { display: none !important; }
}

/* Grain overlay */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-move 0.4s steps(2) infinite;
}
@keyframes grain-move {
  0%,100% { transform: translate(0,0); }
  25% { transform: translate(-2%,-3%); }
  50% { transform: translate(3%,1%); }
  75% { transform: translate(-1%,4%); }
}

/* ══════════════════════════════════════════════
   NAVBAR — your original, lightly enhanced
══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  padding: 22px clamp(24px, 6vw, 80px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(15,15,15,0.5);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition: border-color 0.4s, background 0.4s;
}
.navbar.scrolled {
  border-color: var(--border);
  background: rgba(15,15,15,0.9);
}

.logo {
  font-size: 1.6rem;
  font-weight: 600;
  color: #f5f5f5;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: #ccc;
  font-size: 0.9rem;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.hamburger {
  display: none !important; /* Always hidden — no hamburger menu */
}
.hamburger span {
  width: 26px; height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translateY(8px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translateY(-8px); }

/* ══════════════════════════════════════════════
   HERO — YOUR EXACT ORIGINAL LAYOUT
══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 120px;
  padding-inline: clamp(24px, 6vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(60px, 8vw, 120px);
  position: relative;
}

/* subtle glow behind image, non-intrusive */
.hero-glow {
  position: absolute;
  right: clamp(24px, 8vw, 160px);
  top: 50%;
  transform: translateY(-50%);
  width: min(520px, 44%);
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.35;
}

.hero-text {
  flex: 1;
  max-width: 520px;
  position: relative;
  z-index: 1;
}

/* availability tag (new, above h1) */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(155,155,255,0.25);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.05s forwards;
}
.hero-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.35; transform:scale(0.65); }
}

/* YOUR ORIGINAL h1 */
.hero-text h1 {
  font-size: clamp(4.5rem, 4.6vw, 3.7rem);
  line-height: 1.12;
  font-weight: 600;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}
/* YOUR ORIGINAL span color */
.hero-text h1 span { color: var(--accent); }

/* YOUR ORIGINAL p */
.hero-text p {
  margin-top: 18px;
  font-size: 1rem;
  color: #bbb;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.35s forwards;
}

/* Hero buttons row */
.hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

/* YOUR ORIGINAL button style */
.view-work-btn {
  display: inline-block;
  margin-top: 26px;
  padding: 14px 34px;
  border-radius: 999px;
  background: var(--accent);
  color: #000;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.view-work-btn:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: 0 12px 28px var(--accent-glow);
}

/* secondary ghost button (new) */
.btn-outline {
  display: inline-block;
  margin-top: 26px;
  padding: 13px 30px;
  border-radius: 999px;
  border: 1.5px solid rgba(155,155,255,0.35);
  color: var(--accent);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
  transform: translateY(-3px);
}

/* YOUR ORIGINAL hero image */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1s ease 0.3s forwards;
}

/* .image-3d — aspect-ratio box so any image fits perfectly */
.image-3d {
  width: min(490px, 100%);
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;          /* clips image to rounded corners */
  box-shadow: 0 40px 90px rgba(0,0,0,0.6);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  flex-shrink: 0;
}
.image-3d:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 50px 100px rgba(0,0,0,0.7), 0 0 60px var(--accent-glow);
}
.image-3d img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;         /* fills box, crops excess — works with any image */
  object-position: center top;
}

/* scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: clamp(24px, 6vw, 80px);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}
.scroll-line-anim {
  width: 36px; height: 1.5px;
  background: rgba(255,255,255,0.12);
  position: relative; overflow: hidden;
}
.scroll-line-anim::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--accent);
  animation: scan 2.2s ease-in-out infinite;
}
@keyframes scan { 0%{left:-100%} 50%{left:0%} 100%{left:100%} }

/* ══════════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════════ */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  background: rgba(255,255,255,0.01);
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  flex-shrink: 0;
  transition: color 0.3s;
}
.marquee-item:hover { color: var(--accent); }
.marquee-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); opacity: 0.45; flex-shrink: 0; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ══════════════════════════════════════════════
   SHARED SECTION BASE
══════════════════════════════════════════════ */
section:not(.hero) {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(60px, 8vh, 90px) clamp(24px, 6vw, 80px);
}

h2 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 22px; height: 1.5px;
  background: var(--accent);
}

/* ══════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about p {
  color: #bbb;
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 18px;
}

.skills { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.skill-row { display: flex; flex-direction: column; gap: 6px; }
.skill-meta { display: flex; justify-content: space-between; font-size: 0.76rem; color: #ccc; }
.skill-bar { height: 3px; background: rgba(255,255,255,0.07); border-radius: 99px; overflow: hidden; }
.skill-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), rgba(155,155,255,0.45));
  border-radius: 99px;
  width: 0;
  transition: width 1.3s var(--ease);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 40px;
}
.stat-box {
  background: var(--bg2);
  padding: 26px 20px;
  text-align: center;
  transition: background 0.3s;
}
.stat-box:hover { background: rgba(155,155,255,0.06); }
.stat-n { font-size: 2rem; font-weight: 700; color: var(--accent); line-height: 1; }
.stat-l { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-top: 4px; }

.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
}
.about-img img { width:100%; height:100%; object-fit:cover; transition: transform 0.6s ease; }
.about-img:hover img { transform: scale(1.04); }
.about-img::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid rgba(155,155,255,0.14);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

@media (max-width:900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img {
    display: block;
    aspect-ratio: 16/9;
    height: auto;
    border-radius: var(--radius);
    overflow: hidden;
  }
  .about-img img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center top;
  }
}

/* ══════════════════════════════════════════════
   METRO GRID — YOUR EXACT ORIGINAL
══════════════════════════════════════════════ */
.section-title {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.metro-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: var(--gap);
  padding: 20px 0;
}

.tile {
  position: relative;
  background-color: #333;
  cursor: none;
  overflow: hidden;
  border-radius: var(--radius-sm);
  transition: transform 0.2s cubic-bezier(0.1,0.7,0.1,1), outline 0.1s ease, box-shadow 0.3s;
  opacity: 0;
  transform: scale(0.8) translateY(20px);
  animation: tileEntrance 0.6s forwards;
  min-height: 140px;
}
.tile:nth-child(1) { animation-delay: 0.1s; }
.tile:nth-child(2) { animation-delay: 0.15s; }
.tile:nth-child(3) { animation-delay: 0.2s; }
.tile:nth-child(4) { animation-delay: 0.25s; }
.tile:nth-child(5) { animation-delay: 0.3s; }
.tile:nth-child(6) { animation-delay: 0.35s; }
.tile:nth-child(7) { animation-delay: 0.4s; }
@keyframes tileEntrance { to { opacity:1; transform:scale(1) translateY(0); } }

.tile:hover {
  transform: scale(1.02);
  z-index: 10;
  outline: 3px solid rgba(155,155,255,0.45);
  box-shadow: 0 20px 50px rgba(0,0,0,0.55);
}
.tile:active { transform: scale(0.96); }

/* 7-tile layout on 6-column grid:
   Slot 0: large  (col 1-3, row 1-2)
   Slot 1: medium (col 4-5, row 1-2)
   Slot 2: small  (col 6,   row 1)
   Slot 3: small  (col 6,   row 2)
   Slot 4: wide   (col 1-4, row 3-4)
   Slot 5: medium (col 5-6, row 3)
   Slot 6: medium (col 5-6, row 4)
*/
/* 7-slot metro grid — 6 cols, 4 rows, no gaps
   Row 1-2: [slot0: 3col] [slot1: 2col] [slot2: 1col]
                                         [slot3: 1col]
   Row 3-4: [slot4: 4col          ] [slot5: 2col]
                                     [slot6: 2col]    */
.tile-slot-0 { grid-column: 1 / 4; grid-row: 1 / 3; }
.tile-slot-1 { grid-column: 4 / 6; grid-row: 1 / 3; }
.tile-slot-2 { grid-column: 6 / 7; grid-row: 1 / 2; }
.tile-slot-3 { grid-column: 6 / 7; grid-row: 2 / 3; }
.tile-slot-4 { grid-column: 1 / 5; grid-row: 3 / 5; }
.tile-slot-5 { grid-column: 5 / 7; grid-row: 3 / 4; }
.tile-slot-6 { grid-column: 5 / 7; grid-row: 4 / 5; }
/* Force 4 equal rows on desktop only */
@media (min-width: 701px) {
  .metro-grid { grid-template-rows: repeat(4, 180px); }
}

/* Mobile: completely override slot system */
@media (max-width: 700px) {
  .metro-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px;
  }
  .metro-grid .tile {
    width: 100% !important;
    height: 200px !important;
    grid-column: unset !important;
    grid-row: unset !important;
  }
}

.tile-content {
  width:100%; height:100%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
}
.tile-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 2;
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 5px 8px;
  align-self: flex-start;
  border-radius: 4px;
}
.tile-bg-image {
  position: absolute;
  top:0; left:0;
  width:100%; height:100%;
  object-position: center;
  object-fit: contain;
  padding: 5px;
  transition: transform 0.5s ease;
}
.tile:hover .tile-bg-image { transform: scale(1.1); }

/* YOUR ORIGINAL metro accent colors */
.cobalt  { background: var(--metro-cobalt); }
.crimson { background: var(--metro-crimson); }
.emerald { background: var(--metro-emerald); }
.mango   { background: var(--metro-mango); }
.violet  { background: var(--metro-violet); }

/* Tile lightbox trigger overlay */
.tile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,15,15,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 3;
}
.tile:hover .tile-overlay { opacity: 1; }
.tile-overlay-cat {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.tile-overlay-title { font-size: 0.9rem; font-weight: 600; text-align: center; padding: 0 12px; }

.designs-cta { text-align: center; margin-top: 40px; }

/* ══════════════════════════════════════════════
   DESIGNS PAGE (designs.html)
══════════════════════════════════════════════ */
.page-hero-section {
  min-height: 40vh;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 160px clamp(24px,6vw,80px) 60px;
}
.page-hero-section h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
}
.page-hero-section h1 span { color: var(--accent); }

.filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(24px,6vw,80px) 40px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.1);
  background: transparent;
  color: rgba(255,255,255,0.45);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: none;
}
.filter-btn.active, .filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.gallery-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(24px,6vw,80px) 40px;
}
.masonry { columns: 3; column-gap: 18px; }
.masonry-card {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: none;
  background: var(--bg-card);
}
.masonry-card img { width:100%; display:block; transition: transform 0.6s ease; }
.masonry-card:hover img { transform: scale(1.06); }
.masonry-card-overlay {
  position: absolute; inset: 0;
  background: rgba(15,15,15,0.82);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.masonry-card:hover .masonry-card-overlay { opacity: 1; }
.m-cat { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); font-weight: 500; }
.m-title { font-size: 0.95rem; font-weight: 600; text-align: center; padding: 0 14px; }

@media (max-width:900px) { .masonry { columns: 2; } }
@media (max-width:500px) { .masonry { columns: 1; } }

/* ══════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
}
.process-card {
  background: var(--bg2);
  padding: 38px 26px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.process-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 0;
  background: var(--accent);
  transition: height 0.4s var(--ease);
}
.process-card:hover { background: rgba(155,155,255,0.04); }
.process-card:hover::before { height: 100%; }
.process-n { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.process-icon {
  width: 38px; height: 38px;
  border: 1px solid rgba(155,155,255,0.2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  transition: border-color 0.3s, background 0.3s;
}
.process-card:hover .process-icon { border-color: var(--accent); background: var(--accent-dim); }
.process-icon svg { width: 17px; height: 17px; stroke: var(--accent); fill: none; stroke-width: 1.5; stroke-linecap: round; }
.p-name { font-size: 0.95rem; font-weight: 600; margin-bottom: 10px; }
.p-desc { font-size: 0.86rem; color: #bbb; line-height: 1.7; }

@media (max-width:900px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width:560px) { .process-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.t-slider { overflow: hidden; margin-top: 48px; }
.t-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s var(--ease);
}
.t-card {
  flex: 0 0 calc(50% - 10px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px;
  transition: border-color 0.3s, transform 0.3s;
}
.t-card:hover { border-color: rgba(155,155,255,0.28); transform: translateY(-4px); }
.t-quote { font-size: 2.4rem; color: var(--accent); opacity: 0.38; line-height: 1; margin-bottom: 14px; }
.t-text { font-size: 0.94rem; color: rgba(255,255,255,0.72); line-height: 1.85; font-style: italic; margin-bottom: 26px; }
.t-author { display: flex; align-items: center; gap: 13px; }
.t-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--accent-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 600; color: var(--accent);
  flex-shrink: 0;
}
.t-name { font-size: 0.88rem; font-weight: 600; }
.t-role { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-top: 2px; }

.t-dots { display: flex; gap: 8px; margin-top: 28px; justify-content: center; }
.t-dot { width: 7px; height: 7px; border-radius: 99px; background: rgba(255,255,255,0.15); cursor: none; transition: all 0.3s; }
.t-dot.active { width: 22px; background: var(--accent); }

@media (max-width:760px) { .t-card { flex: 0 0 86%; } }

/* ══════════════════════════════════════════════
   CONTACT — YOUR ORIGINAL form styles exactly
══════════════════════════════════════════════ */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: start;
}
.contact-info h2 { margin-bottom: 14px; }
.contact-info > p { color: #bbb; font-size: 1rem; line-height: 1.8; margin-bottom: 30px; }
.contact-socials { display: flex; flex-direction: column; gap: 14px; }
.contact-social-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.3s;
}
.contact-social-row:hover {
  border-color: rgba(155,155,255,0.38);
  background: var(--accent-dim);
  transform: translateX(6px);
}
.contact-social-row svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; stroke-width: 1.5; flex-shrink: 0; }
.csl-label { font-size: 0.63rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.csl-val { font-size: 0.9rem; }

/* YOUR ORIGINAL form */
.metro-form { display: flex; flex-direction: column; gap: 20px; }
.input-group input,
.input-group textarea,
.input-group select {
  width: 100%;
  padding: 15px;
  background: #111;
  border: 1px solid #333;
  color: #fff;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}
.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
  border-color: var(--accent);
  background: rgba(155,155,255,0.03);
  box-shadow: 0 0 0 3px rgba(155,155,255,0.1);
}
.input-group input::placeholder,
.input-group textarea::placeholder { color: rgba(255,255,255,0.22); }
.input-group textarea { resize: vertical; min-height: 130px; }
.input-group select { color: rgba(255,255,255,0.65); cursor: none; }
.input-group select option { background: #1a1a1a; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* YOUR ORIGINAL submit button */
.submit-btn {
  padding: 15px;
  background: var(--accent);
  color: #000;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  border-radius: var(--radius-sm);
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}
.submit-btn:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 10px 26px var(--accent-glow); }
.submit-btn.loading { opacity: 0.6; pointer-events: none; }
#form-status { margin-top: 10px; font-size: 0.88rem; color: var(--accent); }
.form-success { color: #6fcf97 !important; }
.form-error   { color: #eb5757 !important; }

@media (max-width: 768px) {
  .contact-container { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════ */
.lightbox {
  position: fixed; inset: 0;
  z-index: 9800;
  background: rgba(0,0,0,0.94);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
  flex-direction: column;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 88vw; max-height: 75vh;
  border-radius: var(--radius);
  object-fit: contain;
  transform: scale(0.9);
  transition: transform 0.35s var(--ease);
}
.lightbox.open img { transform: scale(1); }
.lb-close {
  position: absolute; top: 24px; right: 28px;
  font-size: 1.5rem; color: rgba(255,255,255,0.5);
  cursor: none;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.lb-close:hover { border-color: var(--accent); color: var(--accent); }
.lb-info {
  text-align: center;
  padding: 16px 24px 8px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  max-width: 88vw;
}
.lb-title { font-size: 0.95rem; font-weight: 600; }
.lb-cat { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }
.lb-desc { font-size: 0.78rem; color: rgba(255,255,255,0.55); max-width: 480px; line-height: 1.6; }
.lb-link {
  display: inline-block;
  font-size: 0.75rem; color: var(--accent);
  border: 1px solid rgba(155,155,255,0.35);
  padding: 5px 16px; border-radius: 999px;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s;
  margin-top: 2px;
}
.lb-link:hover { background: var(--accent-dim); border-color: var(--accent); }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 38px clamp(24px,6vw,80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-logo { font-size: 1.2rem; font-weight: 600; }
.footer-logo span { color: var(--accent); }
.footer-copy { font-size: 0.76rem; color: rgba(255,255,255,0.28); }
.footer-links { display: flex; gap: 22px; }
.footer-links a { font-size: 0.76rem; color: rgba(255,255,255,0.32); transition: color 0.3s; }
.footer-links a:hover { color: var(--accent); }

/* ══════════════════════════════════════════════
   SCROLL REVEAL & KEYFRAMES
══════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: 0.1s; }
.rd2 { transition-delay: 0.2s; }
.rd3 { transition-delay: 0.3s; }
.rd4 { transition-delay: 0.4s; }

@keyframes fadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

/* ══════════════════════════════════════════════
   RESPONSIVE — hero
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 130px;
    gap: 40px;
  }
  .hero-text { max-width: none; }
  .hero-btns { justify-content: center; }
  .hero-glow { display: none; }
  .hero-scroll-hint { display: none; }
  .image-3d { width: min(320px, 80vw); aspect-ratio: 4/5; }
}
@media (max-width: 480px) {
  .hero-text h1 { font-size: 2.4rem; }
  .hero-btns { flex-direction: column; align-items: center; }
}

/* ══════════════════════════════════════════════
   CONTACT PAGE EXTRAS (contact.html)
══════════════════════════════════════════════ */
.services-table { margin-top: 36px; }
.svc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.3s;
}
.svc-row:first-child { border-top: 1px solid var(--border); }
.svc-row:hover { padding-left: 8px; }
.svc-name { font-size: 0.9rem; font-weight: 500; }
.svc-price { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }

.char-counter { font-size: 0.68rem; color: rgba(255,255,255,0.28); text-align: right; margin-top: 4px; }
.response-note { font-size: 0.72rem; color: rgba(255,255,255,0.3); display: flex; align-items: center; gap: 6px; margin-top: 8px; }
.response-note svg { width: 13px; height: 13px; stroke: var(--accent); }

/* FAQ */
.faq-list { margin-top: 48px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
  font-size: 0.96rem; font-weight: 500; color: #f5f5f5;
  text-align: left; cursor: none;
  background: none; border: none; font-family: inherit;
}
.faq-icon { color: var(--accent); font-size: 1.3rem; flex-shrink: 0; transition: transform 0.3s; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { padding-bottom: 22px; color: #bbb; font-size: 0.92rem; line-height: 1.8; }

/* ══════════════════════════════════════════════
   MOBILE — comprehensive fixes
══════════════════════════════════════════════ */
@media (max-width: 700px) {
  /* Sections */
  section, .about, .designs, .contact { padding-top: 40px; padding-bottom: 40px; }

  /* About — full width banner on mobile */
  .about-grid { grid-template-columns: 1fr; }
  .about-img {
    display: block;
    aspect-ratio: 4/3;
    height: auto;
    border-radius: var(--radius);
    overflow: hidden;
    order: -1;
  }
  .about-img img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center top;
  }

  /* Section titles */
  h2.section-title, h2 { font-size: clamp(1.8rem, 7vw, 2.8rem); }

  /* Testimonials */
  .t-track { gap: 12px; }
  .t-card { min-width: 85vw; }

  /* Process grid */
  .process-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Stats — always 3 cols */
  .stats-row { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .stat-n { font-size: 1.5rem; }
  .stat-box { padding: 18px 10px; }

  /* Filter bar */
  .filter-bar { gap: 6px; padding: 0 clamp(16px,4vw,40px) 20px; flex-wrap: wrap; }
  .filter-btn { font-size: 0.72rem; padding: 7px 13px; }

  /* Footer */
  .footer { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Navbar — always visible, no hamburger */
  .navbar { padding: 14px clamp(16px, 4vw, 40px); }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 0.78rem; }
  .logo { font-size: 1.2rem; }

  /* Page hero */
  .page-hero-section { padding-top: 100px; padding-bottom: 32px; }

  /* Gallery */
  .gallery-wrap { padding: 0 clamp(16px,4vw,40px); }
  .masonry { column-count: 1 !important; }

  /* Hero */
  .hero { padding-top: 90px; flex-direction: column; text-align: center; gap: 32px; }
  .hero-text { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-image { display: flex; justify-content: center; }
  .image-3d { width: min(300px, 80vw); aspect-ratio: 4/5; }
  .hero-glow { display: none; }
  .hero-scroll-hint { display: none; }
}

@media (max-width: 480px) {
  .metro-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px;
  }
  .metro-grid .tile {
    width: 100% !important;
    height: 180px !important;
    grid-column: unset !important;
    grid-row: unset !important;
  }
  .stats-row { grid-template-columns: repeat(3, 1fr); }
  h1 { font-size: clamp(2rem, 9vw, 3rem) !important; }
}
