/* ═══════════════════════════════════════════════
   ES DESIGN LAB — Premium Portfolio CSS
   Dark theme · Neon accents · Awwwards-level
   v2.0 — NEW THEME applied (old preserved)
   ═══════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {

  /* ╔═══════════════════════════════════════════════════╗
     ║  OLD THEME v1 — COLORS  (Commented Out)          ║
     ║  Original warm amber/orange palette               ║
     ║  Preserved below for reference / easy rollback   ║
     ╚═══════════════════════════════════════════════════╝
  --clr-bg:           #080808;
  --clr-bg-2:         #0f0f0f;
  --clr-bg-3:         #141414;
  --clr-text:         #f0ede8;
  --clr-text-muted:   rgba(240,237,232,0.5);
  --clr-text-dim:     rgba(240,237,232,0.25);
  --clr-accent:       #e8a43a;
  --clr-accent-2:     #f97316;
  --clr-accent-glow:  rgba(232,164,58,0.15);
  --clr-border:       rgba(240,237,232,0.08);
  --clr-border-hover: rgba(240,237,232,0.2);
  --clr-card:         rgba(255,255,255,0.03);
  --clr-card-hover:   rgba(255,255,255,0.06);
  [END OLD THEME v1] */

/* ╔═══════════════════════════════════════════════════╗
      ║  NEW THEME v2 — COLORS  (Active)                 ║
      ║  Dark premium: #0A0A0A bg · #FEF102 yellow      ║
      ║  Purple accent: #8F65FB                           ║
      ╚═══════════════════════════════════════════════════╝ */

  /* Backgrounds */
  --clr-bg:           #0A0A0A;
  --clr-bg-2:         #111111;
  --clr-bg-3:         #1A1A1A;

  /* Text */
  --clr-text:         #FFFFFF;
  --clr-text-muted:   #B0B0B0;
  --clr-text-dim:     #7A7A7A;

  /* Accent colours - Yellow as primary, Purple as secondary */
  --clr-accent:       #FEF102;           /* Yellow - main highlight */
  --clr-accent-2:    #8F65FB;          /* Purple - secondary accent */
  --clr-accent-glow:  rgba(143,101,251,0.15);

  /* Borders */
  --clr-border:       rgba(255,255,255,0.08);
  --clr-border-hover: rgba(255,255,255,0.2);

  /* Cards */
  --clr-card:         rgba(255,255,255,0.03);
  --clr-card-hover:   rgba(255,255,255,0.06);

  /* Purple accent for subtle elements */
  --clr-purple:       #8F65FB;
  --clr-purple-glow:  rgba(143,101,251,0.12);

  /* ── Non-colour tokens (unchanged from v1) ── */
  /* --ff-heading: 'Syne', sans-serif;
  --ff-serif: 'DM Serif Display', serif;
  --ff-body: 'Inter', sans-serif; */
  
  --ff-heading: 'Poppins', sans-serif;
  --ff-serif: 'Poppins', sans-serif;
  --ff-body: 'Poppins', sans-serif;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-black: 800;

  --fs-xs: clamp(0.65rem, 1vw, 0.75rem);
  --fs-sm: clamp(0.8rem, 1.2vw, 0.9rem);
  --fs-base: clamp(0.9rem, 1.5vw, 1rem);
  --fs-md: clamp(1rem, 1.8vw, 1.15rem);
  --fs-lg: clamp(1.2rem, 2.5vw, 1.5rem);
  --fs-xl: clamp(1.8rem, 4vw, 2.5rem);
  --fs-2xl: clamp(2.5rem, 6vw, 4rem);
  --fs-3xl: clamp(3rem, 8vw, 6rem);
  --fs-4xl: clamp(3.5rem, 10vw, 8rem);

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 10rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --transition-fast: 0.2s var(--ease-out);
  --transition-base: 0.4s var(--ease-out);
  --transition-slow: 0.7s var(--ease-out);

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
  /* OLD v1: --shadow-accent: 0 0 40px rgba(232,164,58,0.2); */
  --shadow-accent: 0 0 40px rgba(254,241,2,0.18);   /* Yellow glow */
  --shadow-purple: 0 0 30px rgba(143,101,251,0.2);    /* Purple glow */
}

/* ── RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  /* old font-family */
  /* font-family: var(--ff-body); */
  font-size: var(--fs-base);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.is-loading {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  /* old font-family */
  /* font-family: inherit; */
}

/* ── NOISE OVERLAY ── */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── CUSTOM CURSOR ── */
#cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  mix-blend-mode: difference;
}

.cursor-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s var(--ease-out), height 0.3s var(--ease-out);
}

.cursor-ring {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.6);
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease-out), width 0.4s var(--ease-out), height 0.4s var(--ease-out), opacity 0.3s;
}

body.cursor-hover .cursor-ring {
  width: 60px;
  height: 60px;
  opacity: 0.7;
}

body.cursor-hidden .cursor-dot,
body.cursor-hidden .cursor-ring {
  opacity: 0;
}

@media (hover: none) {
  #cursor { display: none; }
}

/* ── PRELOADER ── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--clr-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.preloader-logo {
  /* old font-family */
  /* font-family: var(--ff-heading); */
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.preloader-logo .logo-e,
.preloader-logo .logo-s {
  display: inline-block;
}

.preloader-logo .logo-e { color: var(--clr-text); }
.preloader-logo .logo-s { color: var(--clr-accent); }

.preloader-bar-wrap {
  width: 200px;
  height: 2px;
  background: var(--clr-border);
  border-radius: 100px;
  overflow: hidden;
}

.preloader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent-2));
  border-radius: 100px;
  transition: width 0.1s linear;
}

.preloader-label {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── LAYOUT ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (max-width: 768px) {
  .container { padding: 0 var(--space-sm); }
}

/* ── NAVIGATION ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 1.5rem;
  transition: padding var(--transition-base), background var(--transition-base), border-color var(--transition-base);
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  padding: 1rem 1.5rem;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--clr-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-2));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  /* old font-family */
  /* font-family: var(--ff-heading); */
  font-weight: 800;
  font-size: 0.85rem;
  color: #000;
  letter-spacing: -0.05em;
}

.logo-text {
  /* old font-family */
  /* font-family: var(--ff-heading); */
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  color: var(--clr-text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 1rem;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text-muted);
  border-radius: var(--radius-full);
  transition: color var(--transition-fast), background var(--transition-fast);
  letter-spacing: 0.01em;
}

.nav-link:hover {
  color: var(--clr-accent-2);
  background: rgba(255,255,255,0.05);
}

.nav-cta {
  background: var(--clr-accent);
  color: #000;
  font-weight: var(--fw-semibold);
  padding: 0.5rem 1.25rem;
  margin-left: 0.5rem;
}

.nav-cta:hover {
  background: var(--clr-accent-2);
  color: #fff;
  box-shadow: 0 4px 20px rgba(143,101,251,0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--clr-text);
  transition: transform var(--transition-base), opacity var(--transition-base);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--clr-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.6s var(--ease-in-out);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.mobile-nav-link {
  /* old font-family */
  /* font-family: var(--ff-heading); */
  font-size: var(--fs-2xl);
  font-weight: var(--fw-black);
  color: var(--clr-text-muted);
  transition: color var(--transition-fast);
  padding: 0.25rem 0;
}

.mobile-nav-link:hover {
  color: var(--clr-accent-2);
}

.mobile-menu-footer {
  position: absolute;
  bottom: 2rem;
  font-size: var(--fs-xs);
  color: var(--clr-text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-full);
  /* old font-family */
  /* font-family: var(--ff-body); */
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.02em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--transition-fast);
  border-radius: inherit;
}

.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--clr-accent);
  color: #000;
  box-shadow: 0 4px 20px rgba(254,241,2,0.25);
}

.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(143,101,251,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--clr-text);
  border: 1.5px solid var(--clr-border-hover);
}

.btn-ghost:hover {
  border-color: var(--clr-accent-2);
  color: var(--clr-accent-2);
}

.btn-outline {
  background: transparent;
  color: var(--clr-text);
  border: 1.5px solid var(--clr-border-hover);
}

.btn-outline:hover {
  background: var(--clr-text);
  color: #000;
  border-color: var(--clr-text);
}

.btn-purple-hover:hover {
  border-color: var(--clr-accent-2);
  color: var(--clr-accent-2);
  background: rgba(143,101,251,0.1);
}

.btn-sm {
  padding: 0.65rem 1.4rem;
  font-size: var(--fs-xs);
}

.btn-lg {
  padding: 1.1rem 2.4rem;
  font-size: var(--fs-base);
}

/* ── SECTION HEADERS ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--space-sm);
  position: relative;
}

.section-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--clr-accent);
}

.section-header {
  margin-bottom: var(--space-xl);
}

.section-title {
  /* old font-family */
  /* font-family: var(--ff-heading); */
  font-size: var(--fs-2xl);
  font-weight: var(--fw-black);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--clr-text);
}

.section-title span {
  display: block;
}

/* ── REVEAL TEXT ── */
.reveal-text span {
  display: block;
  /* clip-path: inset(0 0 100% 0);
  transform: translateY(20px);
  transition: clip-path 0.8s var(--ease-out), transform 0.8s var(--ease-out); */
}

.reveal-text.in-view span {
  /* clip-path: inset(0 0 0% 0);
  transform: translateY(0); */
}

/* .reveal-text.in-view span:nth-child(2) { transition-delay: 0.1s; }
.reveal-text.in-view span:nth-child(3) { transition-delay: 0.2s; } */

/* ══════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100svh;
  height: auto;
  display: flex;
  align-items: center;
  padding: 8rem var(--space-lg) 5rem;
  overflow: visible;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.hero-blob {
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  width: min(45vw, 550px);
  opacity: 0.55;
  pointer-events: none;
  /* Slight blur for the dreamy glow look */
  filter: blur(1px);
  animation: blobFloat 6s ease-in-out infinite;
}

@keyframes blobFloat {
  0%, 100% { transform: translateY(-50%) scale(1); }
  50% { transform: translateY(-53%) scale(1.03); }
}

.hero-blob svg {
  width: 100%;
  height: auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

/* Ambient glow behind the big headline */
.hero-content::before {
  content: '';
  position: absolute;
  top: 30%;
  left: -10%;
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(232,164,58,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: var(--space-lg);
  opacity: 0;
  transform: translateY(20px);
}

.eyebrow-line {
  display: block;
  width: 30px;
  height: 1.5px;
  background: var(--clr-accent);
}

.eyebrow-text {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent);
}

.hero-headline {
  /* old font-family */
  /* font-family: var(--ff-heading); */
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 6vw, 90px);
  font-weight: var(--fw-bold);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--clr-text);
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.05em;
  max-width: 900px;
}

.nowrap {
  white-space: nowrap !important;
}

.hero-line {
  display: block;
  line-height: 1.1;
}

.hero-line:nth-child(1) {
  color: var(--clr-accent);
  font-weight: 700;
  text-shadow: 0 0 30px rgba(254,241,2,0.25);
}

.hero-line:nth-child(3) {
  color: var(--clr-accent-2);
  font-weight: 700;
  text-shadow: 0 0 25px rgba(143,101,251,0.25);
}

.hero-line.nowrap {
  white-space: nowrap;
}

.word-wrap {
  display: inline-block;
  /* Slightly more vertical space so descenders/ascenders aren't clipped */
  overflow: hidden;
  vertical-align: top;
  /* pull line-height down so the overflow clip doesn't cut italic letters */
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
  margin-right: 0.15em;
}

.word {
  display: inline-block;
  transform: translateY(110%);
  /* give italic words a tiny right nudge so they're not cut off */
  padding-right: 0.05em;
}

.accent-word {
  color: var(--clr-accent);
  font-style: italic;
}

.text-yellow {
  color: var(--clr-accent) !important;
}

.text-purple {
  color: var(--clr-accent-2) !important;
}

/* Force a full-width break between the two hero phrases */
.desktop-br {
  display: block;
  width: 100%;
  height: 0;
}

.hero-sub {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  opacity: 0;
  transform: translateY(20px);
  max-width: 500px;
}

.hero-subheadline {
  margin-top: 20px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 600px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-cta-group {
  margin-top: 35px;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  opacity: 0;
  transform: translateY(20px);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  opacity: 0;
  transform: translateY(20px);
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat-number {
  /* old font-family */
  /* font-family: var(--ff-heading); */
  font-size: var(--fs-xl);
  font-weight: var(--fw-black);
  color: var(--clr-text);
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-suffix {
  /* old font-family */
  /* font-family: var(--ff-heading); */
  font-size: var(--fs-xl);
  font-weight: var(--fw-black);
  color: var(--clr-accent);
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-label {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  margin-top: 0.2rem;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--clr-border);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  z-index: 2;
}

.scroll-line {
  width: 1.5px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--clr-accent));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

.hero-scroll-hint span {
  /* font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-text-dim);
  writing-mode: vertical-rl; */

  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-text-dim);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* ══════════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════════ */
.marquee-section {
  padding: 1.5rem 0;
  overflow: hidden;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  background: var(--clr-bg-2);
}

.marquee-track {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  animation: marqueeScroll 25s linear infinite;
  white-space: nowrap;
}

.marquee-inner:hover {
  animation-play-state: paused;
}

.marquee-inner span {
  /* old font-family */
  /* font-family: var(--ff-heading); */
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.marquee-inner em.accent {
  font-style: italic;
  color: var(--clr-accent);
  position: relative;
}

.marquee-inner em.accent::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--clr-accent-2);
}

.marquee-dot {
  color: var(--clr-accent) !important;
  font-size: 0.8rem !important;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════
   PORTFOLIO SECTION
══════════════════════════════════════════════ */
.portfolio-section {
  padding: var(--space-3xl) 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  /* opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); */
}

.portfolio-item.in-view {
  /* opacity: 1;
  transform: translateY(0); */
  /* transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); */
}

/* .portfolio-item:nth-child(2).in-view { transition-delay: 0.1s; }
.portfolio-item:nth-child(3).in-view { transition-delay: 0.2s; }
.portfolio-item:nth-child(4).in-view { transition-delay: 0.3s; } */

.portfolio-item--large {
  grid-column: 1;
  grid-row: 1 / 3;
}

.portfolio-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.portfolio-item--large .portfolio-media {
  height: 100%;
  min-height: 500px;
}

.portfolio-item:not(.portfolio-item--large) .portfolio-media {
  height: 260px;
}

.portfolio-img-wrap {
  width: 100%;
  height: 100%;
}

.portfolio-placeholder {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.6s var(--ease-out);
}

.portfolio-item:hover .portfolio-placeholder {
  transform: scale(1.05);
}

.placeholder-logo {
  z-index: 1;
  text-align: center;
}

.grand5-logo svg { width: 200px; height: auto; }
.acrowell-logo svg { width: 220px; height: auto; }

.texture-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 20px 20px;
}

.fashion-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 1;
  padding: 1rem;
}

.fashion-frame {
  width: 150px;
  height: 160px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
}

.fashion-inner {
  width: 100px;
  height: 120px;
  background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
  border-radius: 2px;
}

.fashion-text {
  color: rgba(255,255,255,0.7);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  text-transform: uppercase;
}

.sign-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sign-circle svg { width: 180px; height: auto; }

/* Grand5 Portfolio Card Hero Logo */
.grand5-placeholder {
  flex-direction: column;
  gap: 0;
}

.grand5-hero-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  text-align: center;
}

.g5-emblem {
  width: 48px;
  height: 48px;
  border: 1.5px solid rgba(232,164,58,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.g5-icon {
  color: var(--clr-accent);
  font-size: 1.1rem;
  line-height: 1;
}

.g5-wordmark {
  /* old font-family */
  /* font-family: 'Georgia', 'Times New Roman', serif; */
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #f4e4b8;
  line-height: 1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.g5-tagline {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(232,164,58,0.7);
  margin-top: 0.2rem;
}

.g5-rule {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,164,58,0.6), transparent);
  margin-top: 0.6rem;
}

/* Portfolio Overlay */
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition-base);
  border-radius: var(--radius-lg);
  z-index: 2;
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay-content {
  transform: translateY(12px);
  transition: transform 0.4s var(--ease-out);
}

.portfolio-item:hover .portfolio-overlay-content { transform: translateY(0); }

.overlay-tag {
  display: block;
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 0.4rem;
}

.overlay-title {
  /* old font-family */
  /* font-family: var(--ff-heading); */
  font-size: var(--fs-xl);
  font-weight: var(--fw-black);
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
  line-height: 1.1;
}

.overlay-desc {
  display: block;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
}

.overlay-cta {
  font-size: var(--fs-xs);
  color: var(--clr-accent);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.05em;
}

.portfolio-info {
  padding: 1rem 0 0.5rem;
}

.portfolio-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.portfolio-name {
  /* old font-family */
  /* font-family: var(--ff-heading); */
  font-weight: var(--fw-bold);
  font-size: var(--fs-base);
  letter-spacing: -0.02em;
}

.portfolio-cat {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  background: var(--clr-border);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
}

.portfolio-footer {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ══════════════════════════════════════════════
   FEATURED SCROLL
══════════════════════════════════════════════ */
.featured-section {
  padding: var(--space-3xl) 0 var(--space-xl);
  overflow: hidden;
}

.featured-header {
  margin-bottom: var(--space-xl);
}

.featured-header .container { padding-left: 2.5rem; }

.featured-scroll-container {
  overflow-x: auto;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 1rem;
}

.featured-scroll-container::-webkit-scrollbar { display: none; }
.featured-scroll-container.grabbing { cursor: grabbing; }

.featured-track {
  display: flex;
  gap: 1.5rem;
  padding: 0 2.5rem;
  width: max-content;
}

.featured-card {
  flex: 0 0 380px;
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-border-hover);
}

.featured-card-media {
  height: 260px;
  overflow: hidden;
}

.featured-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s var(--ease-out);
}

.featured-card:hover .featured-placeholder { transform: scale(1.05); }

.featured-abstract {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  height: 100%;
}

.fa-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.featured-abstract { position: relative; }

.fa-c1 { width: 120px; height: 120px; top: 20%; left: 15%; }
.fa-c2 { width: 80px; height: 80px; top: 40%; right: 20%; background: rgba(232,164,58,0.15); }
.fa-c3 { width: 50px; height: 50px; bottom: 20%; left: 40%; }

.fa-label {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}

.fa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.fa-cell {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
}

.fa-cell.fa-accent {
  background: linear-gradient(135deg, rgba(143,101,251,0.3), rgba(254,241,2,0.3));
}

.fa-lines {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 160px;
}

.fa-line {
  height: 2px;
  background: rgba(255,255,255,0.25);
  border-radius: 100px;
  width: 100%;
}

.fa-line--short { width: 60%; }
.fa-line--mid { width: 80%; }

.fa-type {
  position: absolute;
  /* old font-family */
  /* font-family: var(--ff-heading); */
  font-size: 5rem;
  font-weight: 800;
  color: rgba(255,255,255,0.12);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: -0.05em;
}

.featured-card-info {
  padding: 1.5rem;
}

.fc-num {
  font-size: var(--fs-xs);
  color: var(--clr-accent);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.5rem;
}

.fc-title {
  /* old font-family */
  /* font-family: var(--ff-heading); */
  font-size: var(--fs-lg);
  font-weight: var(--fw-black);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.fc-desc {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.fc-tag {
  font-size: var(--fs-xs);
  color: var(--clr-accent);
  letter-spacing: 0.05em;
}

.featured-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: var(--space-lg) 2.5rem 0;
  max-width: 1280px;
  margin: 0 auto;
}

.feat-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--clr-border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text);
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.feat-nav-btn:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
  background: var(--clr-accent-glow);
}

.feat-progress {
  flex: 1;
  height: 2px;
  background: var(--clr-border);
  border-radius: 100px;
  overflow: hidden;
  max-width: 200px;
}

.feat-progress-bar {
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent-2));
  border-radius: 100px;
  transition: width 0.4s var(--ease-out);
}

/* ══════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════ */
.about-section {
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--clr-bg) 0%, var(--clr-bg-2) 50%, var(--clr-bg) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.about-left {
  position: sticky;
  top: 8rem;
}

.about-headline {
  /* old font-family */
  /* font-family: var(--ff-heading); */
  font-size: var(--fs-3xl);
  font-weight: var(--fw-black);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--clr-text);
  margin-bottom: var(--space-md);
}

.accent-block em {
  font-style: italic;
  color: var(--clr-accent);
}

.about-accent-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent-2));
  border-radius: 100px;
}

.about-right {
  padding-top: 2rem;
}

.about-body {
  /* old font-family */
  /* font-family: var(--ff-serif); */
  font-size: var(--fs-xl);
  font-style: italic;
  color: var(--clr-text);
  line-height: 1.35;
  margin-bottom: var(--space-lg);
}

.about-detail {
  font-size: var(--fs-base);
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-lg);
}

.badge {
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--clr-border-hover);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.05em;
  color: var(--clr-text-muted);
  transition: all var(--transition-fast);
}

.badge:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
}

.about-float-1,
.about-float-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.06;
}

.about-float-1 {
  width: 400px;
  height: 400px;
  background: var(--clr-accent);
  top: -100px;
  left: -100px;
}

.about-float-2 {
  width: 300px;
  height: 300px;
  background: var(--clr-accent-2);
  bottom: 0;
  right: -50px;
}

/* ══════════════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════════════ */
.services-section {
  padding: var(--space-3xl) 0;
  background: var(--clr-bg-2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  padding: 2rem;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  /* opacity: 0;
  transform: translateY(30px); */
}

.service-card.in-view {
  /* opacity: 1;
  transform: translateY(0); */
}

/* #svc-visual.in-view { transition-delay: 0.1s; }
#svc-video.in-view { transition-delay: 0.2s; } */

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--clr-accent-2);
  box-shadow: 0 0 40px rgba(143,101,251,0.15), var(--shadow-md);
}

.service-card-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 80%, rgba(232,164,58,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.service-card:hover .service-card-bg { opacity: 1; }

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent);
  transition: background var(--transition-fast);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(143,101,251,0.15), rgba(254,241,2,0.15));
}

.service-num {
  font-size: var(--fs-xs);
  color: var(--clr-text-dim);
  font-weight: var(--fw-semibold);
  /* old font-family */
  /* font-family: var(--ff-heading); */
  letter-spacing: 0.05em;
}

.service-title {
  /* old font-family */
  /* font-family: var(--ff-heading); */
  font-size: var(--fs-xl);
  font-weight: var(--fw-black);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: var(--clr-text);
  transition: color var(--transition-fast);
}

.service-card:hover .service-title { color: var(--clr-accent); }

.service-desc {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.service-tags span {
  font-size: 0.65rem;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  background: var(--clr-border);
  color: var(--clr-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-text-muted);
  transition: color var(--transition-fast), gap var(--transition-fast);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.service-cta:hover {
  color: var(--clr-accent-2);
  gap: 0.8rem;
}

.service-cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--clr-accent-2);
  transition: width var(--transition-base);
}

.service-cta:hover::after {
  width: 100%;
}

/* ══════════════════════════════════════════════
   WHY CHOOSE US SECTION
══════════════════════════════════════════════ */
.why-section {
  position: relative;
  padding: var(--space-3xl) 0;
  background: var(--clr-bg);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.why-card {
  position: relative;
  padding: 2rem;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--clr-accent-2);
  box-shadow: 0 0 40px rgba(143,101,251,0.15), var(--shadow-md);
}

.why-num {
  display: block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: var(--clr-accent);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.why-title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.why-desc {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════
   TESTIMONIAL SECTION
══════════════════════════════════════════════ */
.testimonial-section {
  position: relative;
  padding: var(--space-3xl) 0;
  overflow: hidden;
  background: var(--clr-bg);
}

.testimonial-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.testi-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
}

.testi-glow-1 {
  width: 500px;
  height: 500px;
  background: #7b2d8b;
  top: -100px;
  left: -100px;
}

.testi-glow-2 {
  width: 400px;
  height: 400px;
  background: var(--clr-accent-2);
  bottom: -100px;
  right: -100px;
}

.testi-noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.testimonial-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.quote-mark {
  /* old font-family */
  /* font-family: 'Georgia', 'Times New Roman', serif; */
  font-size: 7rem;
  line-height: 1;
  color: var(--clr-accent);
  opacity: 0.35;
  margin-bottom: -1rem;
  display: block;
  letter-spacing: 0;
  font-style: normal;
  user-select: none;
}

.testimonial-quote {
  /* old font-family */
  /* font-family: var(--ff-serif); */
  font-size: var(--fs-lg);
  font-style: italic;
  color: var(--clr-text);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  /* opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); */
}

.testimonial-quote.in-view {
  /* opacity: 1;
  transform: translateY(0); */
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  color: #000;
  flex-shrink: 0;
}

.author-info {
  text-align: left;
}

.author-info strong {
  display: block;
  font-weight: var(--fw-semibold);
  font-size: var(--fs-base);
}

.author-info span {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}

.author-stars {
  font-size: var(--fs-base);
  color: var(--clr-accent);
  letter-spacing: 2px;
}

.testimonial-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.t-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-border-hover);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.t-dot.active {
  background: var(--clr-accent);
  width: 20px;
  border-radius: 100px;
}

.testimonial-slider {
  position: relative;
}

.testimonial-slides {
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.testimonial-slide.active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.testimonial-slide.prev {
  transform: translateX(-30px);
}

.testi-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
  background: var(--clr-card);
  color: var(--clr-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.testi-arrow:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
  background: rgba(232, 164, 58, 0.1);
}

.testi-arrow-left {
  left: -60px;
}

.testi-arrow-right {
  right: -60px;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .testi-arrow {
    width: 40px;
    height: 40px;
  }
  .testi-arrow-left {
    left: 10px;
  }
  .testi-arrow-right {
    right: 10px;
  }
}

/* ══════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════ */
.cta-section {
  padding: var(--space-3xl) 0;
  background: var(--clr-bg-2);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(232,164,58,0.04) 0%, transparent 70%),
    linear-gradient(180deg, transparent 0%, rgba(232,164,58,0.02) 50%, transparent 100%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-glow {
  position: absolute;
  width: 400px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(232,164,58,0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-headline {
  /* old font-family */
  /* font-family: var(--ff-heading); */
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: var(--fw-black);
  letter-spacing: -0.04em;
  margin-bottom: var(--space-md);
  line-height: 1.05;
}

.cta-sub {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  padding: var(--space-xl) 0 var(--space-lg);
  border-top: 1px solid var(--clr-border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.7;
}

.footer-links-group {
  display: flex;
  gap: var(--space-xl);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col h4 {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text);
  margin-bottom: 0.4rem;
}

.footer-col a {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  transition: color var(--transition-fast);
}

.footer-col a:hover { color: var(--clr-accent-2); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--clr-border);
  font-size: var(--fs-xs);
  color: var(--clr-text-dim);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  transition: all var(--transition-fast);
}

.social-link:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
  background: var(--clr-accent-glow);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════
   MOBILE RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  #navbar { padding: 1.25rem 1.5rem; }
  #navbar.scrolled { padding: 0.8rem 1.5rem; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-section {
    padding: 8rem 1.5rem 5rem;
    min-height: 100svh;
    align-items: flex-start;
    padding-top: 7rem;
  }

  .hero-headline { 
    font-size: clamp(2.2rem, 8vw, 4rem);
    gap: 0.02em;
  }

  .hero-line {
    line-height: 1.15;
  }

  .hero-line.nowrap {
    white-space: nowrap !important;
  }

  .hero-line:nth-child(1) {
    text-shadow: 0 0 20px rgba(254,241,2,0.2);
  }

  .hero-line:nth-child(3) {
    text-shadow: 0 0 20px rgba(143,101,251,0.2);
  }

  .hero-subheadline {
    font-size: 16px;
  }

  .hero-blob {
    top: 10%;
    right: -20%;
    width: 70vw;
    opacity: 0.12;
    transform: none;
  }

  .hero-stats {
    gap: var(--space-md);
  }

  .desktop-br { display: none; }

  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .portfolio-item--large {
    grid-column: 1;
    grid-row: 1;
  }

  .portfolio-item--large .portfolio-media {
    min-height: 300px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about-left {
    position: static;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-links-group {
    gap: var(--space-lg);
    flex-wrap: wrap;
  }

  .featured-card { flex: 0 0 300px; }

  .hero-scroll-hint { bottom: 2rem; }

  .section-title { font-size: clamp(2rem, 8vw, 3rem); }

  .about-headline { font-size: clamp(2.5rem, 10vw, 4rem); }

  .cta-headline { font-size: clamp(2.5rem, 10vw, 4rem); }
}

@media (max-width: 480px) {
  .hero-headline { font-size: clamp(2.2rem, 14vw, 3.5rem); }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .stat-divider { display: none; }
  .cta-buttons { flex-direction: column; }
}

/* ── UTILITY ── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ── SCROLL PROGRESS BAR ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9997;
  height: 2px;
  width: 0%;
  /* OLD v1: background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent-2)); */
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-gradient-end)); /* NEW v2: yellow → purple */
  transition: width 0.1s linear;
}


/* ═══════════════════════════════════════════════════════════════
   NEW THEME v2 — HARDCODED COLOUR OVERRIDES
   ───────────────────────────────────────────────────────────────
   These rules override CSS properties that could NOT be reached
   through the :root variable change alone (hardcoded hex/rgba).
   Each block shows the OLD v1 value in a comment above the new.
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero Ambient Glow (hero-content::before) ──────────────── */
.hero-content::before {
  /* OLD v1: background: radial-gradient(ellipse, rgba(232,164,58,0.07) 0%, transparent 70%); */
  background: radial-gradient(ellipse, rgba(254,241,2,0.05) 0%, transparent 70%); /* NEW v2: #FEF102 */
}

/* ── Featured Card Abstract Circle (accent dot) ────────────── */
.fa-c2 {
  /* OLD v1: background: rgba(232,164,58,0.15); */
  background: rgba(230,255,0,0.12); /* NEW v2 neon yellow glow */
}

/* ── Featured Card Grid Accent Cells ───────────────────────── */
.fa-cell.fa-accent {
  /* OLD v1: background: linear-gradient(135deg, rgba(232,164,58,0.3), rgba(249,115,22,0.3)); */
  background: linear-gradient(135deg, rgba(106,13,173,0.45), rgba(142,45,226,0.45)); /* NEW v2 purple */
}

/* ── Featured Progress Bar ─────────────────────────────────── */
.feat-progress-bar {
  /* OLD v1: background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent-2)); */
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-gradient-end)); /* NEW v2: yellow → purple */
}

/* ── Grand5 Logo — Text & Emblem ───────────────────────────── */
.g5-wordmark {
  /* OLD v1: color: #f4e4b8; */
  color: #FFFFFF; /* NEW v2 — white on dark-purple card BG */
}

.g5-emblem {
  /* OLD v1: border: 1.5px solid rgba(232,164,58,0.6); */
  border: 1.5px solid rgba(230,255,0,0.5); /* NEW v2 neon yellow */
}

.g5-tagline {
  /* OLD v1: color: rgba(232,164,58,0.7); */
  color: rgba(230,255,0,0.65); /* NEW v2 */
}

.g5-rule {
  /* OLD v1: background: linear-gradient(90deg, transparent, rgba(232,164,58,0.6), transparent); */
  background: linear-gradient(90deg, transparent, rgba(230,255,0,0.5), transparent); /* NEW v2 */
}

.g5-icon {
  /* OLD v1: color: var(--clr-accent) — already a var, now resolves to #E6FF00 */
  color: var(--clr-accent); /* auto-updated via :root */
}

/* ── Testimonial Section Glow (hardcoded purple) ───────────── */
.testi-glow-1 {
  /* OLD v1: background: #7b2d8b; */
  background: var(--clr-gradient-start); /* NEW v2: #6A0DAD */
}

/* ── Author Avatar — apply purple gradient ─────────────────── */
.author-avatar {
  /* OLD v1: background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-2)); color: #000; */
  background: var(--clr-gradient); /* NEW v2 purple gradient */
  color: #FFFFFF;
}

/* ── About Section Accent Line ─────────────────────────────── */
.about-accent-line {
  /* OLD v1: background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent-2)); */
  background: var(--clr-gradient); /* NEW v2 purple gradient */
}

/* ── About Float Orbs ──────────────────────────────────────── */
/* .about-float-1 uses var(--clr-accent)       → auto-updated to #E6FF00 */
/* .about-float-2 uses var(--clr-accent-2)     → auto-updated to #F2994A */

/* ── CTA Section Ambient Glow ───────────────────────────────── */
.cta-section::before {
  /* OLD v1: radial-gradient with rgba(232,164,58,...) */
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(106,13,173,0.06) 0%, transparent 70%),
    linear-gradient(180deg, transparent 0%, rgba(230,255,0,0.015) 50%, transparent 100%); /* NEW v2 */
}

.cta-glow {
  /* OLD v1: background: radial-gradient(ellipse, rgba(232,164,58,0.15) 0%, transparent 70%); */
  background: radial-gradient(ellipse, rgba(230,255,0,0.10) 0%, transparent 70%); /* NEW v2 */
}

/* ── Service Card Hover — purple instead of amber glow ─────── */
.service-card:hover {
  /* OLD v1: border-color: var(--clr-accent); box-shadow: 0 0 40px rgba(232,164,58,0.1), ... */
  border-color: var(--clr-gradient-start);
  box-shadow: 0 0 40px rgba(106,13,173,0.18), var(--shadow-md); /* NEW v2 */
}

/* ── btn-primary colour stays neon yellow (auto via :root) ─── */
/* btn text color: #000 on #E6FF00 background = great contrast */

/* ── Mobile menu hover ─────────────────────────────────────── */
.mobile-nav-link:hover {
  /* OLD v1: color: var(--clr-accent) → now resolves to #E6FF00, fine */
  color: var(--clr-accent);
}

/* ── Social links hover ────────────────────────────────────── */
.social-link:hover {
  /* OLD v1: border-color: var(--clr-accent); uses amber */
  /* NEW: accent auto-resolves to #E6FF00 via :root — no override needed */
}

/* ── Preloader logo-s colour (already var) ─────────────────── */
/* .preloader-logo .logo-s → color: var(--clr-accent)  → #E6FF00 auto */

/* ── END NEW THEME v2 OVERRIDES ═══════════════════════════════ */

/* ── NEW TYPOGRAPHY SYSTEM ── */
h1, h2, h3, h4, h5, h6,
.hero-headline,
.section-title,
.overlay-title,
.fc-title,
.about-headline,
.service-title,
.cta-headline,
.preloader-logo,
.logo-mark,
.logo-text,
.grand5-hero-logo,
.g5-wordmark,
.stat-number,
.mobile-nav-link {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}

p, button, .btn, .nav-link, .nav-cta, label, .description, .feature-desc, body, .about-body, .service-desc, .fc-desc, .overlay-desc, .about-detail, .testimonial-quote, .cta-sub, .footer-tagline, .small-label, .section-tag, .eyebrow-text, .stat-label, .service-tags span, .overlay-tag, .portfolio-cat, .portfolio-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

b, strong, .fw-medium, .fw-semibold, .fw-bold {
  font-weight: 500;
}

/* ══════════════════════════════════════════════
   ROJIN PHILIP CASE STUDY
══════════════════════════════════════════════ */
.cs-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--clr-bg);
}
.cs-hero-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.cs-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cs-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(10,10,10,0.9) 100%);
  z-index: 2;
}
.cs-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--clr-text);
  max-width: 800px;
  padding: 0 var(--space-lg);
}
.luxury-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  opacity: 0;
  transform: translateY(30px);
}
.cs-hero-subtitle {
  font-size: var(--fs-lg);
  color: var(--clr-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(20px);
}

.cs-intro {
  padding: var(--space-3xl) var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  max-width: 1400px;
  margin: 0 auto;
}
.cs-intro-left {
  flex: 1;
  min-width: 300px;
}
.cs-intro-right {
  flex: 2;
  min-width: 300px;
  font-size: var(--fs-md);
  line-height: 1.8;
  color: var(--clr-text-muted);
}

.cs-full-image {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--clr-bg-2);
  overflow: hidden;
  position: relative;
}
.cs-full-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1); /* For GSAP parallax or reveal */
}

.cs-gallery-grid {
  padding: var(--space-3xl) var(--space-lg);
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}
@media (max-width: 768px) {
  .cs-gallery-grid { grid-template-columns: 1fr; }
}
.cs-gallery-item {
  overflow: hidden;
  border-radius: var(--radius-sm);
  position: relative;
  aspect-ratio: 4/3;
  background: var(--clr-bg-2);
}
.cs-gallery-item.full-width {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}
.img-zoom {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.cs-gallery-item:hover .img-zoom {
  transform: scale(1.05);
}

.cs-details {
  padding: var(--space-2xl) var(--space-lg);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.cs-details h2 {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  margin-bottom: var(--space-md);
}

.cs-final-showcase {
  padding: 0 var(--space-lg) var(--space-3xl);
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.cs-final-showcase img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

.project-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.project-image img {
  width: 100%;
  display: block;
  height: auto;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.project-card * {
  position: relative;
  z-index: 2;
}

/* ══════════════════════════════════════════════
   BRANDING PAGE STYLES
══════════════════════════════════════════════ */
.branding-hero {
  min-height: 100vh;
  padding-top: 120px;
  text-align: center;
}

.branding-hero .hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.branding-hero .hero-headline {
  align-items: center;
}

.branding-hero .hero-sub {
  max-width: 700px;
  margin: 0 auto;
}

.branding-hero .hero-stats {
  justify-content: center;
}

.brand-intro-section {
  padding: var(--space-3xl) 0;
  background: var(--clr-bg);
  position: relative;
  overflow: hidden;
}

.brand-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.brand-intro-text {
  text-align: center;
}

.brand-intro-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-intro-headline {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.brand-intro-body {
  font-size: var(--fs-base);
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.brand-intro-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: rotate-slow 20s linear infinite;
}

.brand-circle::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px dashed var(--clr-border);
  animation: rotate-slow 30s linear infinite reverse;
}

.brand-circle-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: rotate-slow 20s linear infinite reverse;
}

.brand-circle-inner span {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.brand-process-section {
  padding: var(--space-3xl) 0;
  background: var(--clr-bg-2);
}

.brand-process-section .section-header {
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.process-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  transition: all var(--transition-base);
}

.process-card:hover {
  border-color: var(--clr-accent);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.process-number {
  font-size: 4rem;
  font-weight: var(--fw-black);
  color: var(--clr-accent);
  opacity: 0.15;
  position: absolute;
  top: -10px;
  right: 20px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.process-title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.process-subtitle {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-accent);
  margin-bottom: 1rem;
}

.process-desc {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.process-list {
  margin: 1rem 0;
}

.process-list p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.8;
}

.process-note {
  font-size: var(--fs-sm);
  font-style: italic;
  color: var(--clr-accent-2);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--clr-border);
}

.process-question {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  margin: 1.5rem 0;
  padding: 1rem;
  background: rgba(232, 164, 58, 0.05);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--clr-accent);
}

.process-outcomes {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--clr-border);
}

.outcome-label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.process-outcomes p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .brand-intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .brand-intro-visual {
    order: -1;
  }
  .brand-circle {
    width: 200px;
    height: 200px;
  }
  .brand-circle::before {
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-card {
    padding: 2rem;
  }
  .process-number {
    font-size: 3rem;
  }
}

/* ══════════════════════════════════════════════
   VISUAL DESIGN PAGE STYLES
══════════════════════════════════════════════ */
.brand-intro-quote {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--clr-accent);
  font-style: italic;
  margin: 1.5rem 0;
}

.brand-intro-highlight {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--clr-accent);
  margin-top: 1.5rem;
}

.brand-circle-visual {
  border-color: var(--clr-accent-2);
}

.brand-circle-video {
  border-color: var(--clr-accent);
}

.brand-intro-grid-reverse {
  direction: rtl;
}

.brand-intro-grid-reverse > * {
  direction: ltr;
}

.video-intro-section {
  background: var(--clr-bg-2);
}

.video-best-section {
  padding: var(--space-3xl) 0;
  background: var(--clr-bg);
}

.video-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 700px;
  margin: 3rem auto 0;
}

.video-list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  font-size: var(--fs-base);
  color: var(--clr-text);
  transition: all var(--transition-base);
}

.video-list-item:hover {
  border-color: var(--clr-accent);
  transform: translateY(-2px);
}

.video-list-icon {
  font-size: var(--fs-xl);
  color: var(--clr-accent);
  font-weight: var(--fw-bold);
}

.video-list-note {
  text-align: center;
  font-size: var(--fs-base);
  color: var(--clr-text-muted);
  margin-top: 2rem;
  font-style: italic;
}

@media (max-width: 992px) {
  .brand-intro-grid-reverse {
    direction: ltr;
  }
  .video-list-grid {
    grid-template-columns: 1fr;
  }
}
