/* ========================================
   HIGHFUL MINDS — Light Theme Clone
   ======================================== */

:root {
  --bg: #ffffff;
  --text-primary: #0a0a0a;
  --text-secondary: #555555;
  --text-muted: #999999;
  --text-light: #cccccc;
  --border: #e8e8e8;
  --border-light: #f0f0f0;
  --nav-bg: rgba(204, 204, 204, 0.6);
  --nav-pill: rgba(255, 255, 255, 0.95);
  --badge-bg: rgba(240, 240, 240, 0.85);
  --font-heading: 'DM Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --container-max: 1440px;
  --container-padding: 16px;
  --transition: 250ms ease;
}

/* Top black bar */
body::before {
  content: '';
  display: block;
  width: 100%;
  height: 8px;
  background: var(--text-primary);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  /* scroll-behavior handled by Lenis */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  align-items: center;
}

.nav-logo {
  grid-column: 1 / 4;
  font-family: 'Space Grotesk', var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  z-index: 10;
}

.nav-dot {
  color: var(--text-primary);
}

.nav-links {
  grid-column: 7 / 13;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 1000px;
  padding: 4px;
  z-index: 1001;
  justify-self: start;
  width: fit-content;
}

.nav-pill {
  position: absolute;
  height: calc(100% - 8px);
  background: var(--nav-pill);
  border-radius: 1000px;
  transition: left 300ms cubic-bezier(0.4, 0, 0.2, 1), width 300ms cubic-bezier(0.4, 0, 0.2, 1), opacity 200ms ease;
  pointer-events: none;
  opacity: 0;
  top: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.nav-links:hover .nav-pill {
  opacity: 1;
}

.nav-link {
  padding: 8px 12px;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-primary);
  border-radius: 100px;
  position: relative;
  z-index: 1;
  white-space: nowrap;
  font-family: var(--font-body);
  letter-spacing: -0.031em;
  transition: color var(--transition);
}

.nav-link sup {
  font-size: 10px;
  vertical-align: super;
  margin-left: 1px;
}

.nav-link:hover {
  color: var(--text-secondary);
}

/* Mobile Nav — pill button with logomark + Menu (like original) */
.mobile-menu-toggle {
  display: none;
  align-items: center;
  gap: 6px;
  background: rgba(204, 204, 204, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(204, 204, 204, 0.19);
  border-radius: 1000px;
  cursor: pointer;
  padding: 8px 16px 8px 10px;
  z-index: 9999;
  font-size: 15px;
  font-weight: 400;
  font-family: var(--font-body);
  color: var(--text-primary);
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 300ms ease;
}

.mobile-menu-icon {
  width: 20px;
  height: 20px;
}

/* Mobile Menu Overlay (dim background) */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 9997;
  opacity: 0;
  transition: opacity 400ms ease;
}

.mobile-menu-overlay.open {
  opacity: 1;
}

/* Mobile Menu — Bottom Sheet */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(245, 245, 245, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 28px 24px 24px;
  z-index: 9998;
  border-radius: 20px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1), opacity 400ms ease;
  opacity: 0;
  max-height: 80vh;
}

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

.mobile-menu-header {
  display: none;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
}

.mobile-link {
  padding: 12px 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-primary);
  font-family: var(--font-body);
  letter-spacing: -0.01em;
  transition: opacity var(--transition);
  text-align: center;
}

.mobile-link:hover {
  opacity: 0.5;
}

.mobile-link sup {
  font-size: 10px;
  vertical-align: super;
}

.mobile-menu-close {
  margin-top: 24px;
  padding: 16px 0 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  background: none;
  border: none;
  border-top: 1px solid var(--border);
  cursor: pointer;
  font-family: var(--font-body);
  text-align: center;
  transition: color var(--transition);
}

.mobile-menu-close:hover {
  color: var(--text-primary);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  padding: 256px 0 96px;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  align-items: end;
}

.hero-left {
  grid-column: 1 / 4;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 20px;
  will-change: transform;
}

.hero-right {
  grid-column: 7 / 13;
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-primary);
  font-weight: 400;
  max-width: 380px;
}

.heading-hero {
  font-family: var(--font-heading);
  font-size: clamp(42px, 5vw, 69px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  text-wrap: balance;
  will-change: transform;
}

/* CTA Link (arrow + text) with subtle gradient reveal on hover */
.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-primary);
  position: relative;
  padding: 0;
  width: fit-content;
  transition: color 250ms ease;
}

.cta-link::before {
  content: '';
  position: absolute;
  inset: -4px -12px;
  z-index: -1;
  background: linear-gradient(90deg, rgba(193,255,0,0.5) 0%, rgba(64,240,244,0.4) 50%, rgba(255,0,128,0.25) 100%);
  background-size: 250% 250%;
  animation: gradientOrbit 6s ease-in-out infinite;
  border-radius: 100px;
  opacity: 0;
  transition: opacity 350ms ease;
}

.cta-link:hover::before {
  opacity: 1;
}

.cta-arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.cta-link:hover .cta-arrow {
  transform: translateX(4px);
}

/* Gradient CTA Button */
.cta-gradient {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  border: none;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--text-primary);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: var(--text-primary);
  color: var(--bg);
  transition: transform var(--transition);
}

.cta-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(193,255,0,1) 0%, rgba(64,240,244,1) 33%, rgba(255,0,128,0.5) 66%);
  background-size: 250% 250%;
  animation: gradientOrbit 6s ease-in-out infinite;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 250ms ease;
  border-radius: 100px;
}

.cta-gradient:hover::before {
  clip-path: inset(0 0 0 0);
}

.cta-gradient:hover {
  color: #000;
  transform: translateY(-1px);
}

.cta-gradient span {
  position: relative;
  z-index: 1;
}

@keyframes gradientOrbit {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Desktop-only line breaks for heading */
.desktop-br {
  display: inline;
}

@media (max-width: 1024px) {
  .desktop-br {
    display: none;
  }
}

/* ========================================
   HERO PROJECT IMAGE
   ======================================== */
.hero-project-image {
  width: 100%;
  margin-bottom: 0;
  overflow: hidden;
  will-change: transform;
}

.hero-full-img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  will-change: transform;
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: 80px 0;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid #dfdfdf;
  margin-bottom: 60px;
  position: relative;
}

.section-divider::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, #dfdfdf, #5e48cc 50%, #dfdfdf);
  animation: lineGlow 4s ease-in-out infinite alternate;
}

@keyframes lineGlow {
  0% { left: 0; }
  100% { left: calc(100% - 200px); }
}

.section-label {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  color: var(--text-primary);
  font-family: var(--font-body);
  text-transform: uppercase;
}

.section-label sup {
  font-size: 9px;
  vertical-align: super;
}

.section-number {
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 400;
}

/* ========================================
   WHY WORK WITH US
   ======================================== */
.why-work-content {
  margin-bottom: 80px;
}

.text-display {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5.2vw, 74px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin: 32px 0 96px;
  text-indent: 33.33%;
}

.text-body-secondary {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-primary);
  max-width: 340px;
  margin-left: auto;
  padding-bottom: 80px;
}

/* Clarity Slider */
.clarity-slider {
  width: 100%;
  padding: 80px 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.clarity-labels {
  display: flex;
  justify-content: space-between;
  width: 280px;
  margin-bottom: 12px;
}

.clarity-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

.line-container {
  position: relative;
  width: 280px;
  height: 2px;
}

.line-base {
  position: absolute;
  inset: 0;
  background: #dfdfdf;
}

/* Round dot at Confusion (left) end */
.line-container::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-primary);
}

/* Round dot at Clarity (right) end */
.line-container::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-primary);
}

/* Sliding glow bar — moves from Confusion to Clarity on scroll (like original) */
.line-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 1px;
  background: transparent;
  will-change: transform, opacity;
}

.line-glow::after {
  content: '';
  position: absolute;
  inset: -0.5px 50px;
  filter: blur(8px);
  opacity: 0.25;
  pointer-events: none;
  background: #5e48cc;
}

/* ========================================
   FEATURED PROJECTS
   ======================================== */
.section-divider .view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-right: auto;
  margin-left: 40px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.project-card {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: transform var(--transition);
}

.project-card:hover {
  transform: scale(0.99);
}

.project-image-wrapper {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 16px;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-image {
  transform: scale(1.02);
}

.project-name-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--badge-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  font-family: var(--font-body);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 300ms ease, transform 300ms ease;
  transform: translateX(-50%) translateY(8px);
}

.project-card:hover .project-name-badge {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.project-view-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(12px);
  background: var(--badge-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  font-family: var(--font-body);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 300ms ease, transform 300ms ease;
  pointer-events: none;
}

.project-card:hover .project-view-btn {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
}

/* ========================================
   WHY CHOOSE US — HEADING
   ======================================== */
.choose-heading-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 60px;
}

.choose-heading-xl {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5.5vw, 74px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  max-width: 820px;
}

.choose-heading-cta {
  white-space: nowrap;
  padding-bottom: 8px;
}

/* ========================================
   WHY CHOOSE US — ROWS
   ======================================== */
.choose-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr 0.6fr;
  gap: 40px;
  padding: 60px 0;
  align-items: start;
  opacity: 0.35;
  transition: opacity 0.6s ease;
}

.choose-row.active {
  opacity: 1;
}

.choose-row-left {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.choose-num {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-primary);
  font-family: var(--font-body);
}

.choose-title {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-primary);
  font-family: var(--font-body);
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.choose-text {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.choose-row-right {
  display: flex;
  justify-content: flex-end;
}

.choose-icon {
  width: 160px;
  height: 160px;
  opacity: 0.85;
}

.choose-separator {
  height: 1px;
  background: var(--border);
}

/* ========================================
   PROJECTS GALLERY (Horizontal Scroll)
   ======================================== */
.section-gallery {
  padding: 40px 0 80px;
  position: relative;
}

.gallery-wrapper {
  position: relative;
  overflow: hidden;
}

.gallery-side-label {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.gallery-label-text {
  background: var(--badge-bg);
  backdrop-filter: blur(8px);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.gallery-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery-scroll::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex: 0 0 320px;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  flex: 0 0 200px;
}

.gallery-logomark {
  width: 120px;
  height: 120px;
}

.gallery-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all var(--transition);
  color: var(--text-primary);
}

.gallery-arrow:hover {
  background: var(--text-primary);
  color: var(--bg);
}

/* ========================================
   WHY BRANDING MATTERS
   ======================================== */
.section-branding-matters {
  padding: 60px 0 80px;
}

.branding-matters-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  padding-left: 33%;
}

.branding-matters-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  font-weight: 400;
}

.branding-matters-cta {
  margin-top: 16px;
}

/* ========================================
   FOOTER CTA
   ======================================== */
.footer .footer-headline {
  padding: 100px 0 80px;
}

.footer-headline {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5.2vw, 74px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text-primary);
}

.footer-cta-inline {
  color: var(--text-light);
  transition: color 300ms ease;
}

.footer-cta-inline:hover {
  color: #7c3aed;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.footer-logomark-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
  z-index: 2;
}

.footer-logomark-img {
  width: 1400px;
  max-width: none;
  opacity: 1;
  animation: footerSpin 16s linear infinite, footerColorShift 12s ease-in-out infinite;
  will-change: transform, filter;
  transform-origin: center center;
  margin-bottom: -45%;
}

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

@keyframes footerColorShift {
  0%   { filter: hue-rotate(0deg); }
  25%  { filter: hue-rotate(30deg); }
  50%  { filter: hue-rotate(60deg); }
  75%  { filter: hue-rotate(30deg); }
  100% { filter: hue-rotate(0deg); }
}

.footer-content-wrap {
  position: relative;
  z-index: 5;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid #dfdfdf;
  margin-top: 4rem;
  padding: 2rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding: 0 24px 16rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-col-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.footer-time {
  font-size: 14px;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}

.footer-timezone {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-link {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 400;
  display: inline-block;
  position: relative;
  transition: padding-left 250ms ease;
  padding-left: 0;
}

/* Arrow on hover — absolute positioned, no layout shift */
.footer-col > .footer-link::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 13px;
  opacity: 0;
  transition: opacity 200ms ease;
}

.footer-col > .footer-link:hover {
  padding-left: 20px;
}

.footer-col > .footer-link:hover::before {
  opacity: 1;
}

/* No arrow for links inside .footer-link-with-arrow (Shop already has →) */
.footer-link-with-arrow > .footer-link::before {
  content: none !important;
}

.footer-link-with-arrow > .footer-link:hover {
  padding-left: 0;
}

.footer-link sup {
  font-size: 9px;
}

.footer-link-with-arrow {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cta-arrow-sm {
  font-size: 14px;
  color: var(--text-primary);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto auto auto auto auto;
  align-items: center;
  gap: 0;
  padding: 24px;
  border-top: 1px solid #dfdfdf;
  font-size: 13px;
}

.footer-copy {
  font-weight: 400;
  color: var(--text-primary);
}

.footer-legal {
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 400;
  padding: 0 24px;
  transition: color var(--transition);
}

.footer-legal:hover {
  color: var(--text-secondary);
}

.footer-credit {
  text-align: right;
}

/* Giant Footer Wordmark (SVG) */
.footer-giant-wordmark {
  position: relative;
  z-index: 5;
  padding: 0 16px;
  line-height: 0;
  overflow: hidden;
}

.footer-wordmark-svg {
  width: 100%;
  height: auto;
  /* SVG has white fill — invert to black via CSS filter */
  filter: invert(1);
}

/* ========================================
   CUSTOM CURSOR ARROW
   ======================================== */
/* cursor-arrow removed — using CSS ::before for footer hover arrows */
.cursor-arrow {
  display: none;
  line-height: 1;
}

.cursor-arrow.visible {
  opacity: 1;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.anim-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.anim-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE — TABLET
   ======================================== */
@media (max-width: 1024px) {
  .nav-container {
    display: flex;
    justify-content: space-between;
    gap: 0;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero {
    min-height: auto;
    padding: 160px 0 60px;
    align-items: flex-start;
  }

  .hero-left {
    grid-column: 1 / -1;
    order: 2;
  }

  .hero-right {
    grid-column: 1 / -1;
    order: 1;
  }

  .branding-matters-grid {
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .choose-heading-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }

  .choose-heading-xl {
    font-size: 42px;
  }

  .choose-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .choose-row-right {
    justify-content: flex-start;
  }

  .choose-icon {
    width: 100px;
    height: 100px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-logomark-img {
    width: 1000px;
  }

  .footer-grid {
    padding: 0 16px 12rem;
  }
}

/* ========================================
   RESPONSIVE — MOBILE
   ======================================== */
@media (max-width: 768px) {
  :root {
    --container-padding: 16px;
  }

  .hero {
    padding: 120px 0 40px;
  }

  .heading-hero {
    font-size: 36px;
  }

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

  .choose-row-left {
    flex-direction: column;
    gap: 8px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 0 16px 10rem;
  }

  .footer-bottom {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .footer-credit {
    grid-column: 1 / -1;
    text-align: left;
  }

  .section-divider {
    flex-wrap: wrap;
    gap: 8px;
  }

  .section-divider .view-all-link {
    margin-left: 0;
  }

  .hero-full-img {
    height: 40vh;
  }

  .gallery-item {
    flex: 0 0 240px;
    height: 160px;
  }

  .footer-logomark-img {
    width: 600px;
  }

  .footer-headline {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .heading-hero {
    font-size: 28px;
  }

  .text-display {
    font-size: 24px;
  }

  .footer-headline {
    font-size: 24px;
  }

  .footer-logomark-img {
    width: 450px;
  }
}

/* ========================================
   SCROLLBAR
   ======================================== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

::selection {
  background: rgba(0, 0, 0, 0.08);
}
