/* ===== GIK-INSPIRED DESIGN SYSTEM ===== */
:root {
  /* Color Palette — Sacred Minimalism */
  --void: #1a1a1a;
  --canvas: #fafaf8;
  --stone: #5a5a5a;
  --linen: #f3f3f1;
  --earth: #4d3d30;
  --earth-light: #b89d6f;
  --white: #ffffff;

  /* Legacy aliases */
  --primary: #1a1a1a;
  --accent: #b89d6f;
  --accent-light: #c9b08a;
  --accent-dark: #4d3d30;
  --dark: #1a1a1a;
  --gray-900: #1a1a1a;
  --gray-700: #4a4a4a;
  --gray-500: #5a5a5a;
  --gray-300: #c4c4c4;
  --cream: #fafaf8;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Fluid Type Scale */
  --text-display: clamp(2.5rem, 6vw, 4.5rem);
  --text-h1: clamp(1.8rem, 4vw, 3rem);
  --text-h2: clamp(1.4rem, 3vw, 2.4rem);
  --text-h3: clamp(1.1rem, 2vw, 1.5rem);
  --text-body: clamp(0.9rem, 1vw, 1.05rem);
  --text-small: 0.8125rem;
  --text-caption: 0.75rem;

  /* Spacing */
  --space-section: clamp(56px, 10vw, 140px);
  --space-block: clamp(32px, 6vw, 80px);
  --space-page: clamp(16px, 4vw, 80px);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.06);

  /* Radius */
  --radius: 16px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Easing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Duration */
  --duration-fast: 0.3s;
  --duration-base: 0.5s;
  --duration-slow: 0.7s;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--void);
  background: var(--canvas);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.hidden { display: none !important; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-page); }
.section { padding: var(--space-section) 0; }

/* Selection */
::selection {
  background: var(--void);
  color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(26, 26, 26, 0.12);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(26, 26, 26, 0.25); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--duration-slow) var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--void);
  color: var(--canvas);
  border-color: var(--void);
}
.btn-primary:hover {
  background: var(--earth);
  border-color: var(--earth);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--void);
  border-color: rgba(26, 26, 26, 0.2);
}
.btn-outline:hover {
  background: var(--void);
  color: var(--canvas);
  border-color: var(--void);
}
/* Hero primary override — white on dark */
.hero-section .btn-primary {
  background: var(--white);
  color: var(--void);
  border-color: var(--white);
}
.hero-section .btn-primary:hover {
  background: var(--earth-light);
  color: var(--void);
  border-color: var(--earth-light);
}
.btn-outline-light {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.15);
}
.btn-outline-light:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
}
.full-width { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  display: none;
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
}
.navbar.visible {
  display: block;
  transform: translateY(0);
  opacity: 1;
  background: rgba(250, 250, 248, 0.9);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-page);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  color: var(--void);
  letter-spacing: -0.02em;
}
.nav-logo i {
  color: var(--earth);
  font-size: 18px;
}
.nav-logo strong {
  color: var(--earth);
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  color: var(--stone);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color var(--duration-base) var(--ease-out-expo);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--void);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--duration-base) var(--ease-out-expo);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--void);
}
.nav-links a:hover::after, .nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--void);
  border-radius: 2px;
  transition: all var(--duration-slow) var(--ease-out-expo);
}

/* ===== HERO ===== */
.hero-wrapper {
  padding: 16px;
  background: var(--canvas);
  position: relative;
  z-index: 2;
}
.hero-inset {
  position: relative;
  min-height: calc(100vh - 32px);
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600&q=80') center/cover no-repeat;
  border-radius: 24px;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.78);
  border-radius: 24px;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 60px;
  display: flex;
  justify-content: center;
}

/* Hero Left */
.hero-left {
  max-width: 720px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hero logo */
.hero-logo {
  width: 140px;
  height: auto;
  margin-bottom: 28px;
  opacity: 0;
  animation: heroFadeUp 0.8s var(--ease-out-expo) 0.1s both;
}

/* Hero pill */
.hero-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 24px;
  border-radius: var(--radius-full);
  margin-bottom: 32px;
  opacity: 0;
  animation: heroFadeUp 0.8s var(--ease-out-expo) 0.2s both;
}

/* Hero title */
.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  text-align: center;
}
.hero-line {
  display: block;
  overflow: hidden;
}
.hero-line-1 {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 300;
  margin-bottom: 8px;
  opacity: 0;
  animation: heroFadeUp 0.8s var(--ease-out-expo) 0.3s both;
}
.hero-line-2 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: -0.04em;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out-expo) 0.5s both;
}
.hero-line-2 em {
  font-style: normal;
  color: var(--earth-light);
}

.hero-desc {
  font-size: var(--text-body);
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  margin-bottom: 32px;
  max-width: 520px;
  text-align: center;
  opacity: 0;
  animation: heroFadeUp 0.8s var(--ease-out-expo) 0.7s both;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
  opacity: 0;
  animation: heroFadeUp 0.8s var(--ease-out-expo) 0.9s both;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 40px;
  opacity: 0;
  animation: heroFadeUp 0.8s var(--ease-out-expo) 1.1s both;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stat-number {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
}
.hero-stat-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}


/* Hero button overrides */
.hero-left .btn-primary {
  background: var(--white);
  color: var(--void);
  border-color: var(--white);
}
.hero-left .btn-primary:hover {
  background: var(--earth-light);
  color: var(--void);
  border-color: var(--earth-light);
}

/* Hero animations */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.highlight { color: var(--earth-light); }

/* ===== ABOUT ===== */
.about-section {
  background: var(--canvas);
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-image {
  position: relative;
}
.about-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.about-image-accent {
  display: none;
}

/* About Stats */
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}
.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-number {
  font-family: var(--font-body);
  font-size: var(--text-h2);
  font-weight: 500;
  color: var(--void);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: var(--text-caption);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ===== SPINNING ORBIT ===== */
.orbit-container {
  position: relative;
  width: 520px;
  height: 520px;
  margin: 0 auto;
}

/* Orbit rings */
.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.orbit-ring-1 {
  width: 300px;
  height: 300px;
  border: 1px solid rgba(26, 26, 26, 0.06);
}
.orbit-ring-2 {
  width: 460px;
  height: 460px;
  border: 1px dashed rgba(184, 157, 111, 0.12);
  animation: ringPulse 4s ease-in-out infinite;
}
@keyframes ringPulse {
  0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.02); }
}

/* Center logo */
.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(145deg, #d4b07a, #b89060);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 12px 48px rgba(184, 157, 111, 0.35),
              0 0 80px rgba(184, 157, 111, 0.1);
  animation: centerFloat 6s ease-in-out infinite;
}
@keyframes centerFloat {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -52%) scale(1.03); }
}
.orbit-center img {
  width: 105px;
  height: auto;
  filter: brightness(0);
  opacity: 0.75;
}

/* Spinning track */
.orbit-track {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 420px;
  height: 420px;
  transform: translate(-50%, -50%);
  animation: orbitSpin 25s linear infinite;
}
@keyframes orbitSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Satellite items */
.orbit-item {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--void);
  border: 1.5px solid rgba(184, 157, 111, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
  transition: border-color var(--duration-base) var(--ease-out-expo),
              box-shadow var(--duration-base) var(--ease-out-expo),
              transform var(--duration-base) var(--ease-out-expo);
}
.orbit-item:hover {
  border-color: var(--earth-light);
  box-shadow: 0 8px 36px rgba(184, 157, 111, 0.3);
  transform: scale(1.1);
}

/* Counter-rotate content so logos stay upright */
.orbit-item-inner {
  animation: orbitCounterSpin 25s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
@keyframes orbitCounterSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

.orbit-item img {
  width: 75%;
  height: auto;
  object-fit: contain;
}

/* Position 5 items around circle (72deg apart) */
.orbit-item:nth-child(1) {
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
}
.orbit-item:nth-child(2) {
  top: 18%;
  right: -55px;
}
.orbit-item:nth-child(3) {
  bottom: -8%;
  right: 8%;
}
.orbit-item:nth-child(4) {
  bottom: -8%;
  left: 8%;
}
.orbit-item:nth-child(5) {
  top: 18%;
  left: -55px;
}
.section-label {
  font-size: var(--text-caption);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 16px;
  display: inline-block;
}
.about-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: 300;
  line-height: 1.1;
  color: var(--void);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.about-content > p {
  font-size: var(--text-body);
  line-height: 1.75;
  color: var(--stone);
  margin-bottom: 40px;
}
.dqa-block {
  background: var(--linen);
  border: 1px solid rgba(26, 26, 26, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.dqa-block h3 {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: 300;
  color: var(--void);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.01em;
}
.dqa-block h3 i { color: var(--earth); }
.dqa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.dqa-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.dqa-icon {
  width: 44px;
  height: 44px;
  background: rgba(77, 61, 48, 0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--earth);
  font-size: 16px;
  flex-shrink: 0;
}
.dqa-item span {
  font-size: var(--text-small);
  font-weight: 400;
  color: var(--void);
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-block);
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: 300;
  color: var(--void);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-header p {
  font-size: var(--text-body);
  color: var(--stone);
  line-height: 1.7;
}
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.7); }
.section-header.light .section-label { color: var(--earth-light); }

/* ===== SERVICES ===== */
.services-section { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.service-card {
  background: var(--linen);
  border: 1px solid rgba(26, 26, 26, 0.04);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--duration-base) var(--ease-out-expo),
              box-shadow var(--duration-base) var(--ease-out-expo);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s var(--ease-out-expo);
}
.service-card:hover .service-image img {
  transform: scale(1.04);
}
.service-icon-badge {
  position: absolute;
  bottom: -22px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--void);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--canvas);
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.service-body {
  padding: 36px 28px 28px;
}
.service-body h3 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 300;
  color: var(--void);
  margin-bottom: 14px;
  letter-spacing: -0.015em;
}
.service-body p {
  font-size: var(--text-small);
  line-height: 1.75;
  color: var(--stone);
  margin-bottom: 12px;
}
.service-features {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.service-features li {
  font-size: var(--text-small);
  font-weight: 400;
  color: var(--void);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-features li i {
  color: var(--earth);
  font-size: 10px;
}

/* ===== WHY US — BENTO GRID ===== */
.whyus-section-new {
  background: var(--canvas);
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 16px;
}
.bento-card {
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--duration-base) var(--ease-out-expo),
              box-shadow var(--duration-base) var(--ease-out-expo);
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.bento-tall {
  grid-row: span 2;
}
.bento-dark {
  background: var(--void);
}
.bento-light {
  background: var(--linen);
}
.bento-accent {
  background: var(--earth-light);
}
.bento-card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.bento-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.bento-dark .bento-icon {
  background: rgba(184, 157, 111, 0.12);
  color: var(--earth-light);
}
.bento-light .bento-icon {
  background: rgba(77, 61, 48, 0.08);
  color: var(--earth);
}
.bento-accent .bento-icon {
  background: rgba(26, 26, 26, 0.1);
  color: var(--void);
}
.bento-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.bento-dark .bento-quote {
  color: rgba(255,255,255,0.9);
}
.bento-light .bento-quote {
  color: var(--void);
}
.bento-accent .bento-quote {
  color: var(--void);
}
.bento-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.bento-dark .bento-label {
  color: var(--earth-light);
}
.bento-light .bento-label {
  color: var(--earth);
}
.bento-accent .bento-label {
  color: var(--void);
  font-weight: 700;
}

/* ===== PARTICLES CANVAS ===== */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.25;
}
.brochure,
.navbar {
  position: relative;
  z-index: 1;
}
.section { position: relative; z-index: 1; }
.footer { position: relative; z-index: 1; }

/* ===== PORTFOLIO ===== */
.portfolio-section { background: var(--canvas); }

/* Tabs */
.portfolio-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(26, 26, 26, 0.12);
  background: transparent;
  color: var(--stone);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-out-expo);
  display: flex;
  align-items: center;
  gap: 8px;
}
.tab-btn:hover {
  border-color: var(--void);
  color: var(--void);
}
.tab-btn.active {
  background: var(--void);
  border-color: var(--void);
  color: var(--canvas);
}
.tab-btn i { font-size: 12px; }

/* Gallery */
.portfolio-gallery {
  display: none;
}
.portfolio-gallery.active {
  display: block;
  animation: fadeIn 0.5s var(--ease-out-expo);
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.gallery-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(26,26,26,0.12) transparent;
}
.gallery-scroll::-webkit-scrollbar { height: 4px; }
.gallery-scroll::-webkit-scrollbar-track { background: transparent; }
.gallery-scroll::-webkit-scrollbar-thumb {
  background: rgba(26,26,26,0.12);
  border-radius: 4px;
}
.gallery-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(26,26,26,0.25);
}
.project-card {
  min-width: 300px;
  max-width: 300px;
  background: var(--white);
  border: 1px solid rgba(26, 26, 26, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform var(--duration-base) var(--ease-out-expo),
              box-shadow var(--duration-base) var(--ease-out-expo);
  flex-shrink: 0;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.project-img {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--linen);
}
.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s var(--ease-out-expo);
}
.project-card:hover .project-img img {
  transform: scale(1.04);
}
.project-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--void);
  color: var(--canvas);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
}
.project-info {
  padding: 20px;
}
.project-info h4 {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: 300;
  color: var(--void);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.project-location {
  font-size: var(--text-caption);
  color: var(--earth);
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.project-location i { margin-right: 4px; }
.project-info > p:last-child {
  font-size: var(--text-small);
  line-height: 1.65;
  color: var(--stone);
}

/* Video Cards */
.video-card {
  min-width: 360px;
  max-width: 360px;
}
.project-video {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--void);
}
.project-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.project-video .project-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--void);
  color: var(--canvas);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 5px;
}
@media (max-width: 600px) {
  .video-card {
    min-width: 280px;
    max-width: 280px;
  }
  .project-video { height: 180px; }
}

/* ===== CONTACT ===== */
.contact-wrapper {
  padding: 16px;
  background: var(--canvas);
}
.contact-inset {
  border-radius: 24px;
}
.contact-section {
  position: relative;
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600&q=80') center/cover no-repeat;
  padding: var(--space-section) 0;
}
.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.55);
  border-radius: 24px;
}
.contact-section .container { position: relative; z-index: 2; }
.contact-centered {
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
  background: rgba(26, 26, 26, 0.45);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
}
.contact-centered .section-label { color: var(--earth-light); }
.contact-centered h2 {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.contact-centered > p {
  font-size: var(--text-body);
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  margin-bottom: 48px;
}
.contact-details {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}
.contact-item i {
  width: 48px;
  height: 48px;
  background: rgba(184,157,111,0.06);
  border: 1px solid rgba(184,157,111,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--earth-light);
  font-size: 16px;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  color: var(--white);
  font-size: var(--text-small);
  font-weight: 500;
  margin-bottom: 2px;
}
.contact-item span {
  color: rgba(255,255,255,0.7);
  font-size: var(--text-small);
  transition: color var(--duration-fast);
}
.contact-item a { text-decoration: none; }
.contact-item a:hover span { color: var(--earth-light); }
.contact-item a + a {
  display: block;
  margin-top: 4px;
}
.contact-locations {
  margin-top: 56px;
}
.contact-locations h3 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: -0.015em;
}
.contact-locations h3 i {
  color: var(--earth-light);
}
.location-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
}
.location-card {
  flex: 1;
  max-width: 220px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--duration-base) var(--ease-out-expo),
              border-color var(--duration-base) var(--ease-out-expo),
              background var(--duration-base) var(--ease-out-expo);
}
.location-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184,157,111,0.2);
  background: rgba(255,255,255,0.05);
}
.location-card i {
  font-size: 20px;
  color: var(--earth-light);
  margin-bottom: 14px;
}
.location-card h4 {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.location-card p {
  font-size: var(--text-small);
  color: rgba(255,255,255,0.6);
}
.location-tap-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--earth-light);
  margin-top: 14px;
  cursor: pointer;
  transition: opacity var(--duration-fast);
  white-space: nowrap;
}
.location-tap-hint i {
  font-size: 9px;
  transition: transform var(--duration-fast) var(--ease-out-expo);
}
.location-card.expanded .location-tap-hint i {
  transform: rotate(180deg);
}
.location-addresses {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo), margin-top var(--duration-fast) var(--ease-out-expo);
  margin-top: 0;
}
.location-card.expanded .location-addresses {
  max-height: 200px;
  margin-top: 16px;
}
.location-addresses a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-small);
  color: rgba(255,255,255,0.55);
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(184,157,111,0.04);
  border: 1px solid rgba(184,157,111,0.08);
  margin-bottom: 8px;
  transition: background var(--duration-fast), color var(--duration-fast), border-color var(--duration-fast);
  text-decoration: none;
}
.location-addresses a:last-child {
  margin-bottom: 0;
}
.location-addresses a:hover {
  background: rgba(184,157,111,0.1);
  color: var(--white);
  border-color: rgba(184,157,111,0.2);
}
.location-addresses a i {
  color: var(--earth-light);
  font-size: 13px;
}
.cta-know-more {
  margin-top: 48px;
  padding: 16px 44px;
  font-size: 11px;
}

/* ===== FOOTER ===== */
.footer-wrapper {
  padding: 0 16px 16px;
  background: var(--canvas);
}
.footer-inset {
  border-radius: 24px;
}
.footer {
  background: var(--void);
  padding: 56px 0;
  text-align: center;
}
.footer-content { color: var(--white); }
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.footer-logo-img {
  height: 80px;
  width: auto;
  opacity: 0.8;
}
.footer-content > p:first-of-type {
  color: rgba(255,255,255,0.3);
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--text-h3);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  font-size: 15px;
  transition: all var(--duration-base) var(--ease-out-expo);
}
.footer-social a:hover {
  background: var(--earth);
  border-color: var(--earth);
  color: var(--canvas);
}
.footer-divider {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 0 auto 20px;
}
.footer-copy {
  font-size: var(--text-small);
  color: rgba(255,255,255,0.2);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid, .services-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image img { height: 400px; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-tall { grid-row: span 1; }
  .hero-inner { padding: 80px 32px; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(250, 250, 248, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(26,26,26,0.06);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-links a { font-size: 15px; padding: 8px 0; }

  /* Hero */
  .hero-wrapper { padding: 8px; }
  .hero-inset { min-height: 100vh; min-height: 100svh; border-radius: 20px; }
  .hero-overlay { border-radius: 20px; }
  .hero-inner { padding: 48px 20px; }
  .hero-logo { width: 80px; margin-bottom: 16px; }
  .hero-pill { font-size: 9px; padding: 6px 16px; margin-bottom: 20px; }
  .hero-line-1 { font-size: clamp(0.75rem, 3.2vw, 1rem); margin-bottom: 4px; }
  .hero-line-2 { font-size: clamp(2rem, 8.5vw, 3rem); }
  .hero-desc { font-size: 13px; line-height: 1.65; margin-bottom: 24px; max-width: 100%; }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
  }
  .hero-stat { align-items: center; text-align: center; gap: 1px; }
  .hero-stat-number { font-size: clamp(1.1rem, 4.5vw, 1.4rem); }
  .hero-stat-label { font-size: 8px; letter-spacing: 0.04em; }
  .hero-left { max-width: 100%; }
  .hero-cta { gap: 10px; margin-bottom: 28px; }
  .hero-cta .btn { padding: 12px 24px; font-size: 10px; }

  /* Section spacing */
  .section { padding: clamp(40px, 8vw, 80px) 0; }
  .section-header { margin-bottom: clamp(24px, 5vw, 48px); }
  .section-header h2 { font-size: clamp(1.5rem, 6vw, 2rem); }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-content h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .about-content > p { font-size: 14px; line-height: 1.7; margin-bottom: 28px; }
  .about-image img { height: 300px; border-radius: 16px; }
  .about-image-accent { display: none; }
  .about-stats { flex-direction: row; gap: 0; justify-content: space-between; margin-top: 28px; padding-top: 28px; }
  .about-stat { flex: 1; text-align: center; }
  .stat-number { font-size: clamp(1.1rem, 4vw, 1.6rem); }
  .stat-label { font-size: 10px; }

  /* DQA */
  .dqa-block { padding: 24px; }
  .dqa-grid { grid-template-columns: 1fr; gap: 14px; }
  .dqa-item span { font-size: 13px; }

  /* Bento grid */
  .bento-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .bento-tall { grid-row: span 1; }
  .bento-card { padding: 24px 20px; border-radius: 16px; }
  .bento-quote { font-size: clamp(0.95rem, 3.5vw, 1.3rem); margin-bottom: 16px; }
  .bento-label { font-size: 11px; }
  .bento-icon { width: 40px; height: 40px; border-radius: 10px; font-size: 15px; }

  /* Portfolio */
  .portfolio-tabs { gap: 8px; }
  .tab-btn { padding: 10px 16px; font-size: 10px; }
  .project-card { min-width: 260px; max-width: 260px; }
  .project-img { height: 200px; }
  .project-info { padding: 16px; }
  .project-info h4 { font-size: 1.1rem; }

  /* Contact */
  .contact-wrapper { padding: 8px; }
  .contact-inset { border-radius: 20px; }
  .contact-overlay { border-radius: 20px; }
  .contact-centered { padding: 40px 20px; border-radius: 16px; }
  .contact-centered h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .contact-centered > p { font-size: 14px; margin-bottom: 32px; }
  .contact-details { flex-direction: column; gap: 20px; align-items: center; }
  .contact-item { width: 100%; max-width: 320px; }
  .contact-item i { width: 44px; height: 44px; font-size: 15px; }

  /* Locations */
  .contact-locations { margin-top: 40px; }
  .contact-locations h3 { font-size: clamp(1.2rem, 5vw, 1.8rem); margin-bottom: 20px; }
  .location-cards { flex-wrap: wrap; gap: 10px; justify-content: center; }
  .location-card { flex: 0 0 calc(33.33% - 8px); max-width: none; padding: 20px 12px; border-radius: 14px; }
  .location-card h4 { font-size: 14px; }
  .location-card i { font-size: 16px; margin-bottom: 10px; }
  .location-card p { font-size: 10px; }
  .cta-know-more { margin-top: 36px; padding: 14px 36px; }

  /* GMV */
  .gmv-wrapper { padding: 8px; }
  .gmv-section { border-radius: 20px; }
  .gmv-number { font-size: clamp(2.5rem, 12vw, 5rem); }
  .gmv-table-card { padding: 24px 16px; }

  /* Footer */
  .footer-wrapper { padding: 0 8px 8px; }
  .footer-inset { border-radius: 20px; }
  .footer { padding: 40px 0; }
  .footer-logo-img { height: 60px; }
  .footer-content > p:first-of-type { font-size: 1.1rem; margin-bottom: 20px; }
}

@media (max-width: 480px) {
  /* Hero fine-tuning */
  .hero-inner { padding: 40px 16px; }
  .hero-logo { width: 64px; margin-bottom: 14px; }
  .hero-pill { font-size: 8px; padding: 5px 14px; margin-bottom: 16px; }
  .hero-line-1 { font-size: 0.7rem; }
  .hero-line-2 { font-size: clamp(1.8rem, 10vw, 2.8rem); }
  .hero-desc { font-size: 12px; line-height: 1.6; margin-bottom: 20px; }
  .hero-cta { flex-direction: column; margin-bottom: 24px; }
  .hero-cta .btn { width: 100%; justify-content: center; padding: 13px 20px; }
  .hero-stats { gap: 8px; }
  .hero-stat-number { font-size: clamp(1rem, 4vw, 1.2rem); }
  .hero-stat-label { font-size: 7px; }

  /* Sections */
  .section { padding: clamp(32px, 7vw, 60px) 0; }
  .section-header h2 { font-size: 1.4rem; }
  .container { padding: 0 14px; }

  /* About */
  .about-content h2 { font-size: 1.4rem; }
  .about-content > p { font-size: 13px; }
  .about-image img { height: 240px; }
  .stat-number { font-size: 1rem; }
  .stat-label { font-size: 9px; }

  /* Bento single column */
  .bento-grid { grid-template-columns: 1fr; gap: 10px; }
  .bento-card { padding: 22px 18px; }
  .bento-quote { font-size: 1rem; }
  .bento-label { font-size: 10px; }

  /* Service features */
  .service-features { grid-template-columns: 1fr; }

  /* Portfolio cards */
  .project-card { min-width: 220px; max-width: 220px; }
  .project-img { height: 160px; }
  .project-info { padding: 14px; }
  .project-info h4 { font-size: 0.95rem; }
  .project-info > p:last-child { font-size: 12px; }
  .portfolio-tabs { gap: 6px; }
  .tab-btn { padding: 8px 12px; font-size: 9px; gap: 5px; }
  .tab-btn i { font-size: 10px; }

  /* Location cards 2-col on small screens */
  .location-card { flex: 0 0 calc(50% - 6px); padding: 16px 10px; }
  .location-card h4 { font-size: 13px; }
  .location-card p { font-size: 9px; }
  .location-tap-hint { font-size: 9px; }
  .location-addresses a { font-size: 11px; padding: 6px 8px; }

  /* Contact */
  .contact-centered { padding: 28px 14px; }
  .contact-centered h2 { font-size: 1.4rem; }
  .contact-centered > p { font-size: 13px; margin-bottom: 24px; }
  .contact-item { max-width: 100%; }
  .contact-item i { width: 40px; height: 40px; font-size: 14px; border-radius: 12px; }
  .contact-item strong { font-size: 12px; }
  .contact-item span { font-size: 12px; }
  .contact-locations h3 { font-size: 1.1rem; }
  .cta-know-more { margin-top: 28px; padding: 12px 28px; font-size: 10px; }

  /* GMV */
  .gmv-number { font-size: clamp(2rem, 10vw, 3.5rem); }
  .gmv-subtitle { font-size: 12px; }
  .gmv-roadmap-title { font-size: 1.2rem; margin-bottom: 24px; }

  /* Footer */
  .footer { padding: 32px 0; }
  .footer-logo-img { height: 50px; }
  .footer-content > p:first-of-type { font-size: 1rem; }
  .footer-copy { font-size: 11px; }
}

/* ===== SERVICES EXPANDABLE CARDS ===== */
.services-expand-row {
  display: flex;
  gap: 12px;
  height: 520px;
}
.service-expand-card {
  position: relative;
  flex: 1;
  min-width: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: flex var(--duration-slow) var(--ease-out-expo);
}
.service-expand-card.active {
  flex: 3;
}
.service-expand-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s var(--ease-out-expo);
}
.service-expand-card:hover img {
  transform: scale(1.04);
}
.service-expand-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.1) 50%, transparent 100%);
  transition: background var(--duration-base) var(--ease-out-expo);
}
.service-expand-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  z-index: 2;
}
.service-expand-number {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
  transition: opacity var(--duration-base) var(--ease-out-expo);
}
.service-expand-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  transition: font-size var(--duration-slow) var(--ease-out-expo);
}
.service-expand-card.active .service-expand-content h3 {
  font-size: var(--text-h2);
}
.service-expand-content p {
  font-size: var(--text-small);
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height var(--duration-slow) var(--ease-out-expo),
              opacity var(--duration-base) var(--ease-out-expo);
}
.service-expand-card.active .service-expand-content p {
  max-height: 100px;
  opacity: 1;
}
/* Collapsed card: rotate title */
.service-expand-card:not(.active) .service-expand-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
.service-expand-card:not(.active) .service-expand-number {
  opacity: 0.6;
  font-size: 1.5rem;
}

/* ===== GMV SECTION ===== */
.gmv-wrapper {
  padding: 0 16px;
  background: var(--canvas);
}
.gmv-section {
  background: var(--void);
  border-radius: 24px;
  overflow: hidden;
}

/* GMV Hero Number */
.gmv-hero {
  text-align: center;
  margin-bottom: var(--space-block);
}
.gmv-label {
  color: var(--earth-light) !important;
}
.gmv-number {
  font-family: var(--font-body);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
}
.gmv-subtitle {
  font-size: var(--text-body);
  color: rgba(255,255,255,0.5);
  max-width: 400px;
  margin: 0 auto;
}

/* Vertical Bar Cards */
.gmv-verticals {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: flex-end;
  height: 340px;
  margin-bottom: var(--space-block);
  padding: 0 20px;
}
.gmv-vertical-card {
  flex: 1;
  max-width: 150px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
  transition-delay: calc(var(--card-delay, 0) * 0.1s);
}
.gmv-vertical-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.gmv-vertical-bar {
  width: 100%;
  height: 0;
  background: linear-gradient(to top, var(--earth), var(--earth-light));
  border-radius: 12px 12px 4px 4px;
  transition: height 1.2s var(--ease-out-expo);
  transition-delay: calc(var(--card-delay, 0) * 0.12s + 0.3s);
}
.gmv-vertical-card.visible .gmv-vertical-bar {
  height: var(--bar-h);
}
.gmv-vertical-card {
  position: relative;
  cursor: pointer;
}
.gmv-vertical-bar:hover {
  filter: brightness(1.15);
}

/* Tooltip on hover */
.gmv-vertical-card .gmv-vertical-details {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: 12px;
  padding: 14px 18px;
  text-align: center;
  min-width: 130px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-fast) var(--ease-out-expo),
              transform var(--duration-fast) var(--ease-out-expo);
  z-index: 20;
}
.gmv-vertical-card .gmv-vertical-details strong {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--void);
}
.gmv-vertical-card .gmv-vertical-details span {
  font-size: 11px;
  color: var(--stone);
  font-weight: 400;
}
.gmv-vertical-card .gmv-vertical-details::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--white);
}
.gmv-vertical-card:hover .gmv-vertical-details {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.gmv-vertical-amount {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  opacity: 0;
  transition: opacity var(--duration-fast);
}
.gmv-vertical-pct {
  font-size: 11px;
  font-weight: 500;
  color: var(--earth-light);
  background: rgba(184,157,111,0.1);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  opacity: 0;
  transition: opacity var(--duration-fast);
}
.gmv-vertical-name {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  font-weight: 400;
}
/* Show details on hover */
.gmv-vertical-card:hover .gmv-vertical-amount,
.gmv-vertical-card:hover .gmv-vertical-pct {
  opacity: 1;
}

/* Growth Roadmap Timeline */
.gmv-roadmap {
  padding-top: var(--space-block);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.gmv-roadmap-title {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 300;
  color: var(--white);
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.015em;
}
.gmv-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 0 20px;
}
.gmv-timeline-line {
  position: absolute;
  top: 8px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: rgba(255,255,255,0.08);
}
.gmv-timeline-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--earth), var(--earth-light));
  border-radius: 2px;
  transition: width 1.5s var(--ease-out-expo);
}
.gmv-timeline.visible .gmv-timeline-line::after {
  width: 100%;
}
.gmv-timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
  transition-delay: calc(var(--item-delay, 0) * 0.15s + 0.3s);
}
.gmv-timeline.visible .gmv-timeline-item {
  opacity: 1;
  transform: translateY(0);
}
.gmv-timeline-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  margin-bottom: 20px;
  transition: all var(--duration-base) var(--ease-out-expo);
}
.gmv-timeline-dot-active {
  background: var(--earth-light);
  border-color: var(--earth-light);
  box-shadow: 0 0 20px rgba(184,157,111,0.4);
}
.gmv-timeline-item:hover .gmv-timeline-dot {
  background: var(--earth-light);
  border-color: var(--earth-light);
  transform: scale(1.2);
}
.gmv-timeline-stage {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--earth-light);
  margin-bottom: 6px;
}
.gmv-timeline-content h4 {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.gmv-timeline-content p {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
  line-height: 1.4;
}
.gmv-timeline-value {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--earth-light);
  letter-spacing: -0.01em;
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 1024px) {
  .services-expand-row { height: 420px; }
  .gmv-verticals { height: 220px; gap: 8px; }
  .gmv-timeline { flex-wrap: wrap; gap: 20px; justify-content: center; }
  .gmv-timeline-line { display: none; }
  .gmv-timeline-item { flex: 0 0 45%; }
  .orbit-container { width: 400px; height: 400px; }
  .orbit-ring-1 { width: 250px; height: 250px; }
  .orbit-ring-2 { width: 360px; height: 360px; }
  .orbit-track { width: 320px; height: 320px; }
  .orbit-center { width: 110px; height: 110px; }
  .orbit-center img { width: 80px; }
  .orbit-item { width: 95px; height: 95px; }
  .about-stats { gap: 28px; }
}

@media (max-width: 768px) {
  .services-expand-row {
    flex-direction: column;
    height: auto;
    gap: 8px;
  }
  .service-expand-card {
    height: 100px;
    border-radius: 16px;
    flex: none;
    transition: height var(--duration-slow) var(--ease-out-expo);
  }
  .service-expand-card.active {
    height: 320px;
    flex: none;
  }
  .service-expand-content { padding: 20px 18px; }
  .service-expand-number { font-size: 1.2rem; margin-bottom: 4px; }
  .service-expand-content h3 { font-size: 1rem; margin-bottom: 4px; }
  .service-expand-card.active .service-expand-content h3 { font-size: 1.4rem; }
  .service-expand-content p { font-size: 13px; }
  .service-expand-card:not(.active) .service-expand-content h3 br { display: none; }

  .about-grid { grid-template-columns: 1fr; }
  .orbit-container { width: 300px; height: 300px; margin: 0 auto; }
  .orbit-ring-1 { width: 190px; height: 190px; }
  .orbit-ring-2 { width: 270px; height: 270px; }
  .orbit-track { width: 240px; height: 240px; }
  .orbit-center { width: 85px; height: 85px; }
  .orbit-center img { width: 60px; }
  .orbit-item { width: 72px; height: 72px; }
  .orbit-item-text { font-size: 8px; }
  .orbit-item:nth-child(1) { top: -36px; }
  .orbit-item:nth-child(2) { right: -36px; }
  .orbit-item:nth-child(5) { left: -36px; }

  /* GMV mobile */
  .gmv-verticals {
    height: auto;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0 8px;
    align-items: flex-end;
  }
  .gmv-vertical-card { flex: 0 0 calc(33.33% - 10px); max-width: none; height: 180px; }
  .gmv-vertical-bar { max-height: 120px; }
  .gmv-vertical-details { display: none; }
  .gmv-vertical-amount { opacity: 1; font-size: 0.8rem; }
  .gmv-vertical-pct { opacity: 1; font-size: 10px; }
  .gmv-vertical-name { font-size: 10px; }

  .gmv-timeline { gap: 16px; }
  .gmv-timeline-item { flex: 0 0 45%; text-align: center; }
  .gmv-timeline-content h4 { font-size: 1rem; }
  .gmv-timeline-content p { font-size: 10px; }
  .gmv-timeline-value { font-size: 0.95rem; }
  .gmv-roadmap-title { font-size: 1.4rem; margin-bottom: 32px; }
}

@media (max-width: 480px) {
  .orbit-container { width: 240px; height: 240px; }
  .orbit-ring-1 { width: 150px; height: 150px; }
  .orbit-ring-2 { width: 215px; height: 215px; }
  .orbit-track { width: 190px; height: 190px; }
  .orbit-center { width: 65px; height: 65px; }
  .orbit-center img { width: 45px; }
  .orbit-item { width: 52px; height: 52px; }
  .orbit-item-text { font-size: 6px; }
  .orbit-item:nth-child(1) { top: -26px; }
  .orbit-item:nth-child(2) { right: -26px; }
  .orbit-item:nth-child(3) { bottom: -10%; right: 5%; }
  .orbit-item:nth-child(4) { bottom: -10%; left: 5%; }
  .orbit-item:nth-child(5) { left: -26px; }

  .services-expand-row { gap: 6px; }
  .service-expand-card { height: 76px; }
  .service-expand-card.active { height: 260px; }
  .service-expand-content { padding: 16px 14px; }
  .service-expand-number { font-size: 1rem; }
  .service-expand-content h3 { font-size: 0.9rem; }
  .service-expand-card.active .service-expand-content h3 { font-size: 1.2rem; }
  .service-expand-content p { font-size: 12px; }

  .gmv-vertical-card { flex: 0 0 calc(33.33% - 10px); height: 140px; }
  .gmv-vertical-amount { font-size: 0.7rem; }
  .gmv-vertical-pct { font-size: 9px; padding: 2px 8px; }
  .gmv-vertical-name { font-size: 9px; }
  .gmv-timeline-item { flex: 0 0 100%; }
  .gmv-timeline-content h4 { font-size: 0.9rem; }
  .gmv-timeline-value { font-size: 0.85rem; }
}

@media (max-width: 375px) {
  .hero-inner { padding: 36px 14px; }
  .hero-logo { width: 56px; }
  .hero-line-2 { font-size: 1.7rem; }
  .hero-desc { font-size: 11.5px; line-height: 1.55; }
  .hero-stat-number { font-size: 0.95rem; }
  .hero-stat-label { font-size: 7px; }
  .hero-cta .btn { padding: 11px 18px; font-size: 9px; }

  .about-content h2 { font-size: 1.25rem; }
  .section-header h2 { font-size: 1.25rem; }
  .stat-number { font-size: 0.9rem; }

  .bento-card { padding: 18px 14px; }
  .bento-quote { font-size: 0.9rem; }

  .orbit-container { width: 220px; height: 220px; }
  .orbit-ring-1 { width: 135px; height: 135px; }
  .orbit-ring-2 { width: 195px; height: 195px; }
  .orbit-track { width: 175px; height: 175px; }
  .orbit-center { width: 58px; height: 58px; }
  .orbit-center img { width: 40px; }
  .orbit-item { width: 46px; height: 46px; }
  .orbit-item:nth-child(1) { top: -23px; }
  .orbit-item:nth-child(2) { right: -23px; }
  .orbit-item:nth-child(5) { left: -23px; }

  .project-card { min-width: 200px; max-width: 200px; }
  .project-img { height: 140px; }

  .contact-centered { padding: 24px 12px; }
  .location-card { padding: 14px 8px; }
}

/* ===== MOBILE TOUCH & UX ENHANCEMENTS ===== */
@media (max-width: 768px) {
  /* Remove hover effects on touch devices */
  .bento-card:hover,
  .project-card:hover,
  .location-card:hover {
    transform: none;
    box-shadow: none;
  }

  /* Tap targets min 44px */
  .nav-toggle { min-width: 44px; min-height: 44px; justify-content: center; }
  .tab-btn { min-height: 44px; }

  /* Smooth gallery scroll with visible overflow hint */
  .gallery-scroll {
    scroll-padding: 16px;
    padding: 0 0 16px;
    gap: 12px;
    scrollbar-width: none;
  }
  .gallery-scroll::-webkit-scrollbar { display: none; }

  /* Prevent text overflow */
  .contact-centered h2 br { display: none; }

  /* Better container padding */
  .container { padding: 0 16px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
