/* ─── Design Tokens ───────────────────────────────────── */
:root {
  --paper: #F2F1ED;
  --ink: #1B1F23;
  --ink-2: #5B5F63;
  --ink-3: #bfb6a9;
  --line: #D7D4CB;
  --line-heavy: #C4C1B8;
  --brass: #9C7A45;
  --burgundy-panel: #3f050b;
  --bp-text: #F2F1ED;
  --bp-sub: #c9a8ac;
  --bp-line: #5c1a22;
  --white: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: default;
}

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

ul {
  list-style: none;
}

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


/* ═══════════════════════════════════════════════════════
CURSOR FOLLOWER
═══════════════════════════════════════════════════════ */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #3f050b;
  mix-blend-mode: normal;
  pointer-events: none;
  z-index: 99999;
  transform: translate3d(0, 0, 0) translate(-50%, -50%);
  will-change: transform;
  transition: width 0.25s, height 0.25s, opacity 0.25s;
  opacity: 0;
}

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

.cursor-dot.hovering {
  width: 64px;
  height: 64px;
  background: var(--white);
  mix-blend-mode: difference;
}

/* Maintain solid burgundy color on the page background when not hovering active targets */
.cursor-dot:not(.hovering) {
  background: #3f050b;
  mix-blend-mode: normal;
}

@media (pointer: coarse) {
  .cursor-dot {
    display: none;
  }
}


/* ═══════════════════════════════════════════════════════
NAVBAR
═══════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px 18px;
  background: var(--burgundy-panel);
  transition: padding 0.35s;
}

.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(156, 122, 69, 0.08) 0%, transparent 50%, rgba(156, 122, 69, 0.05) 100%);
  pointer-events: none;
}

.navbar.scrolled {
  padding: 14px 48px 12px;
}

/* ── Wave ── */
.navbar-wave {
  position: absolute;
  top: calc(100% - 1.5px);
  left: 0;
  width: 100%;
  height: 42px;
  pointer-events: none;
  z-index: -1;
}

.navbar-wave svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(63, 5, 11, 0.25));
}

/* ── Layout ── */
.nav-left {
  display: flex;
  align-items: center;
  flex: 1;
}

.nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
}

/* ── Hamburger (animated bars) ── */
.nav-hamburger-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--bp-text);
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.25s;
}

.nav-hamburger-btn:hover {
  background: rgba(255, 255, 255, 0.07);
}

.hamburger-bars {
  width: 24px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-bars span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--bp-text);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.25s, width 0.3s;
  transform-origin: center;
}

.hamburger-bars span:nth-child(1) {
  width: 100%;
}

.hamburger-bars span:nth-child(2) {
  width: 70%;
}

.hamburger-bars span:nth-child(3) {
  width: 100%;
}

.nav-hamburger-btn:hover .hamburger-bars span:nth-child(2) {
  width: 100%;
}

/* Morph to X when sidebar is open */
.nav-hamburger-btn.active .hamburger-bars span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-hamburger-btn.active .hamburger-bars span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-hamburger-btn.active .hamburger-bars span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hamburger-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ── Logo ── */
.nav-logo-link {
  display: flex;
  align-items: center;
  height: 72px;
  transition: height 0.35s, transform 0.3s;
}

.nav-logo-link:hover {
  transform: scale(1.04);
}

.navbar.scrolled .nav-logo-link {
  height: 54px;
}

.nav-logo-img {
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

/* ── Contact CTA ── */
.nav-contact-btn {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--bp-text);
  border: 1.5px solid rgba(242, 241, 237, 0.4);
  padding: 10px 28px;
  border-radius: 24px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.nav-contact-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--brass), rgba(156, 122, 69, 0.6));
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}

.nav-contact-btn:hover {
  border-color: var(--brass);
  color: var(--paper);
  box-shadow: 0 0 20px rgba(156, 122, 69, 0.35);
}

.nav-contact-btn:hover::before {
  opacity: 1;
}


/* ═══════════════════════════════════════════════════════
SIDEBAR
═══════════════════════════════════════════════════════ */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(20, 23, 27, 0.85);
  background-image:
    radial-gradient(circle at 50% 50%, rgba(20, 23, 27, 0) 0%, rgba(10, 12, 15, 0.6) 100%),
    radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 6px 6px;
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.sidebar-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.sidebar {
  position: fixed;
  top: 0;
  left: -420px;
  width: 380px;
  max-width: 85vw;
  height: 100vh;
  background: var(--burgundy-panel);
  z-index: 1200;
  transition: left 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.sidebar.open {
  left: 0;
}

.sidebar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(156, 122, 69, 0.06) 0%, transparent 40%, rgba(156, 122, 69, 0.03) 100%);
  pointer-events: none;
}

.sidebar-header {
  padding: 28px 32px;
  border-bottom: 1px solid var(--bp-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-logo {
  height: 40px;
}

.sidebar-close {
  background: none;
  border: 1px solid var(--bp-line);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--bp-sub);
  font-size: 18px;
  transition: all 0.25s;
}

.sidebar-close:hover {
  border-color: var(--brass);
  color: var(--brass);
  transform: rotate(90deg);
}

.sidebar-nav {
  padding: 48px 32px;
  flex: 1;
}

.sidebar-nav-item {
  display: block;
  margin-bottom: 0;
  overflow: hidden;
}

.sidebar-nav-link {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--bp-line);
  text-decoration: none;
  color: var(--bp-text);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s, padding-left 0.1s ease, color 0.1s ease, border-bottom-color 0.1s ease;
  transform: translateX(-100%);
  opacity: 0;
}

.sidebar.open .sidebar-nav-link {
  transform: translateX(0);
  opacity: 1;
}

.sidebar.open .sidebar-nav-item:nth-child(1) .sidebar-nav-link {
  transition-delay: 0.04s;
}

.sidebar.open .sidebar-nav-item:nth-child(2) .sidebar-nav-link {
  transition-delay: 0.08s;
}

.sidebar.open .sidebar-nav-item:nth-child(3) .sidebar-nav-link {
  transition-delay: 0.12s;
}

.sidebar.open .sidebar-nav-item:nth-child(4) .sidebar-nav-link {
  transition-delay: 0.16s;
}

.sidebar.open .sidebar-nav-item:nth-child(5) .sidebar-nav-link {
  transition-delay: 0.20s;
}

.sidebar-nav-link:hover {
  padding-left: 12px;
  color: var(--brass);
  border-bottom-color: var(--brass);
}

.sidebar-nav-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--bp-sub);
  min-width: 22px;
}

.sidebar-nav-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
}

.sidebar-footer {
  padding: 24px 32px 32px;
  border-top: 1px solid var(--bp-line);
}

.sidebar-footer-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 14px;
  display: inline-block;
  transition: color 0.25s, text-shadow 0.25s;
}

.sidebar-footer-label:hover {
  color: var(--bp-text);
  text-shadow: 0 0 10px rgba(156, 122, 69, 0.5);
}

.sidebar-footer a {
  display: block;
  font-size: 13px;
  color: var(--bp-sub);
  margin-bottom: 8px;
  transition: color 0.2s;
}

.sidebar-footer a:hover {
  color: var(--bp-text);
}

.sidebar-socials {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}

.sidebar-footer .sidebar-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--bp-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bp-sub);
  transition: all 0.25s;
  margin-bottom: 0;
}

.sidebar-footer .sidebar-social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.sidebar-footer .sidebar-social-link:hover {
  border-color: var(--brass);
  color: var(--brass);
  transform: translateY(-2px);
}


/* ═══════════════════════════════════════════════════════
HERO
═══════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 40px;
}

.hero-inner {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
}

.hero-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}

.hero-text-content {
  flex: 1;
  max-width: 580px;
}

.hero-graphic {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s 0.2s forwards;
}

.hero-eyebrow a {
  color: var(--brass);
  text-decoration: none;
  transition: color 0.25s, text-decoration 0.25s;
  cursor: pointer;
}

.hero-eyebrow a:hover {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero-eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--brass);
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(42px, 7vw, 80px);
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-bottom: 24px;
  min-height: 2em;
  /* Reserve space for typewriter */
}

.hero h1 em {
  font-style: normal;
  color: var(--brass);
}

.hero h1 .hero-line {
  display: block;
}

.typewriter-cursor {
  display: inline-block;
  width: 4px;
  height: 1em;
  background-color: var(--brass);
  margin-left: 4px;
  vertical-align: text-bottom;
  animation: blink 1s step-end infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 480px;
  margin-bottom: 52px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s 0.55s forwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  padding: 14px 24px;
  border: 1px solid var(--brass);
  transition: background 0.25s, color 0.25s;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s 0.7s forwards;
}

.hero-cta:hover {
  background: var(--brass);
  color: var(--paper);
}

.hero-cta svg {
  transition: transform 0.3s;
}

.hero-cta:hover svg {
  transform: translateX(4px);
}

.scroll-hint {
  margin-top: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
  border: none;
  background: none;
  padding: 0;
  opacity: 0;
  animation: fadeUp 0.7s 0.9s forwards;
}

.scroll-hint:hover {
  color: var(--brass);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ─── SECTION SHARED ───────────────────────────────────── */
.section {
  padding: 100px 48px;
}

.section-inner {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}

.section-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.section-eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--brass);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -0.025em;
  line-height: 1.06;
  margin-bottom: 12px;
}

.section-title em {
  font-style: normal;
  color: var(--brass);
}

.section-sub {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 500px;
  margin-bottom: 48px;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s, transform 0.7s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════════════════
CIRCULAR REVEAL COMPONENT
═══════════════════════════════════════════════════════ */
.circular-reveal-container {
  position: relative;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--burgundy-panel);
  box-shadow: 12px 12px 24px #d5d4d1, -12px -12px 24px #ffffff;
  overflow: hidden;
  transition: all 0.5s ease-out;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.circular-reveal-container:hover {
  box-shadow: 16px 16px 32px #c1c0be, -16px -16px 32px #ffffff;
}

.circular-inner-1 {
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: var(--burgundy-panel);
  box-shadow: inset 5px 5px 10px #2a0307, inset -5px -5px 10px #54070f;
}

.circular-inner-2 {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: var(--burgundy-panel);
  box-shadow: inset 3px 3px 6px #2a0307, inset -3px -3px 6px #54070f;
}

.circular-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.circular-center-text {
  position: relative;
  z-index: 10;
  padding: 26px 32px;
  border-radius: 24px;
  background: var(--burgundy-panel);
  box-shadow: inset 3px 3px 6px #2a0307, inset -3px -3px 6px #54070f;
  text-align: center;
  transition: opacity 0.3s;
}

.circular-center-text .circular-logo {
  height: 58px;
  margin: 0 auto;
  display: block;
}

.circular-center-text p {
  font-size: 11px;
  color: var(--bp-sub);
}

.circular-image-overlay {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.circular-image-overlay.active {
  opacity: 1;
}

.circular-image-overlay img {
  width: 88%;
  height: 88%;
  object-fit: cover;
  border-radius: 50%;
  filter: brightness(0.9);
}

.circular-svg-wrapper {
  position: absolute;
  inset: 0;
  animation: spin 30s linear infinite;
  z-index: 30;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.circular-svg-wrapper text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.3em;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  fill: var(--bp-sub);
}

.circular-svg-wrapper text:hover {
  fill: var(--brass);
}


/* ═══════════════════════════════════════════════════════
VIDEO CAROUSEL
═══════════════════════════════════════════════════════ */
.video-section {
  padding: 100px 48px;
  overflow: hidden;
}

.video-section .section-inner {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}

/* Card Stack Stage */
.card-stack-stage {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 420px;
  margin-top: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  perspective: 1100px;
}

.card-stack-wash-top {
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 24px;
  margin: 0 auto;
  height: 192px;
  width: 70%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.03);
  filter: blur(48px);
}

.card-stack-wash-bottom {
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  height: 160px;
  width: 76%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  filter: blur(48px);
}

.card-stack-card {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 520px;
  max-width: 90vw;
  height: 320px;
  border-radius: 16px;
  border: 4px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background: var(--ink);
  transform-style: preserve-3d;
  cursor: pointer;
  user-select: none;
  will-change: transform, opacity;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s;
}

.card-stack-card.active-card {
  cursor: grab;
  border-color: rgba(156, 122, 69, 0.4);
}

.card-stack-card.active-card:hover {
  border-color: var(--brass);
  box-shadow: 0 16px 48px rgba(156, 122, 69, 0.22);
}

.card-stack-card.active-card:active {
  cursor: grabbing;
}

.card-stack-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
}

.card-stack-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.card-stack-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(27, 31, 35, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  pointer-events: none;
  z-index: 10;
}

.card-stack-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(30px);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(242, 241, 237, 0.18);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
  z-index: 20;
  pointer-events: auto;
  cursor: pointer;
}

.card-stack-card.active-card:hover .card-stack-play {
  background: rgba(156, 122, 69, 0.9);
  transform: translate(-50%, -50%) translateZ(40px) scale(1.1);
}

.card-stack-play svg {
  width: 18px;
  height: 18px;
  fill: var(--paper);
  margin-left: 3px;
}

.card-stack-cat {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 6px;
}

.card-stack-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--bp-text);
  letter-spacing: -0.01em;
}

.card-stack-desc {
  font-size: 13px;
  color: var(--bp-sub);
  margin-top: 4px;
  line-height: 1.4;
  opacity: 0.9;
}

/* Dots */
.card-stack-nav {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.card-stack-dots {
  display: flex;
  gap: 8px;
}

.card-stack-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(27, 31, 35, 0.25);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.card-stack-dot:hover {
  background: rgba(27, 31, 35, 0.45);
}

.card-stack-dot.active-dot {
  background: var(--brass);
  transform: scale(1.25);
}

.card-stack-link {
  color: var(--ink-2);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.card-stack-link:hover {
  color: var(--ink);
}

.card-stack-link svg {
  width: 16px;
  height: 16px;
}


/* ═══════════════════════════════════════════════════════
LIGHTBOX (VIDEO)
═══════════════════════════════════════════════════════ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background-color: rgba(15, 17, 20, 0.9);
  background-image:
    radial-gradient(circle at 50% 50%, rgba(15, 17, 20, 0) 0%, rgba(5, 6, 8, 0.8) 100%),
    radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 100% 100%, 6px 6px;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  position: relative;
  width: 90vw;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
}

.lightbox-content video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: var(--paper);
  font-size: 28px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-info {
  position: absolute;
  bottom: -40px;
  left: 0;
}

.lightbox-info-cat {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
}

.lightbox-info-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--paper);
  margin-top: 2px;
}


/* ═══════════════════════════════════════════════════════
WEBSITE PROJECTS
═══════════════════════════════════════════════════════ */
.web-projects-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 40px;
}

.web-card {
  position: sticky;
  top: 100px;
  height: auto;
  min-height: 400px;
  background: var(--burgundy-panel);
  color: var(--bp-text);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15), 0 4px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
}

.web-card:nth-child(1) {
  top: 120px;
}

.web-card:nth-child(2) {
  top: 140px;
}

.web-card:nth-child(3) {
  top: 160px;
}

.web-card:nth-child(4) {
  top: 180px;
}

.web-card:nth-child(even) {
  background: var(--ink);
  color: var(--paper);
}

.web-card-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 40px;
  gap: 40px;
}

.web-card-body {
  flex: 1;
}

.web-card-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--bp-sub);
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  border-radius: 12px;
  display: inline-block;
}

.web-card:nth-child(even) .web-card-num {
  color: var(--ink-3);
}

.web-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.web-card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--bp-sub);
  margin-bottom: 24px;
}

.web-card:nth-child(even) .web-card-desc {
  color: var(--ink-3);
}

.web-card-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.web-card-tech span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(156, 122, 69, 0.15);
  color: var(--brass);
  padding: 6px 12px;
  border-radius: 16px;
  border: 1px solid rgba(156, 122, 69, 0.3);
}

.web-card-preview {
  flex: 1.2;
  width: 100%;
}

.browser-mockup {
  background: #1e1e1e;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.browser-header {
  height: 32px;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.browser-header .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-header .dot.red {
  background: #ff5f56;
}

.browser-header .dot.yellow {
  background: #ffbd2e;
}

.browser-header .dot.green {
  background: #27c93f;
}

.browser-content {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background: #111;
  overflow: hidden;
}

.web-card-preview-inner {
  width: 100%;
  height: 200%;
  background: linear-gradient(180deg, #2a2a2a 0%, #111 100%);
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 2.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.web-card-preview-inner.project-1,
.web-card-preview-inner.project-2,
.web-card-preview-inner.project-3 {
  height: auto;
  display: flex;
  flex-direction: column;
}

.web-card-preview-inner img {
  width: 100%;
  height: auto;
  display: block;
}

.web-card-preview-inner.project-4 {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #2a2a2a 0%, #111 100%);
  position: relative;
}

.web-card-preview-inner.project-4 .mockup-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.project-4-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(18px, 3.5vw, 24px);
  font-weight: 700;
  color: var(--bp-text);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 2;
  animation: pulseConnect 2.5s infinite ease-in-out;
}

@keyframes pulseConnect {
  0%, 100% { opacity: 0.7; transform: scale(0.97); }
  50% { opacity: 1; transform: scale(1.03); }
}

.mockup-pattern {
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 8px 8px;
}

.web-card:hover .web-card-preview-inner:not(.project-4) {
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .web-card-inner {
    flex-direction: column;
    padding: 24px;
    gap: 24px;
  }

  .web-card:nth-child(n) {
    top: 90px;
  }

  .web-card-preview {
    flex: none;
    width: 100%;
  }
}


/* ═══════════════════════════════════════════════════════
BRUTALIST SCATTER CAROUSEL
═══════════════════════════════════════════════════════ */
.brutalist-scatter-section {
  padding: 100px 0;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 0 820px;
}

.brutalist-scatter-section .section-inner {
  padding: 0 48px;
}

.scatter-container {
  position: relative;
  width: 100%;
  height: 650px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--burgundy-panel);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
  contain: layout paint style;
  isolation: isolate;
}

.scatter-trigger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 380px;
  z-index: 10;
  cursor: crosshair;
  pointer-events: none;
}

.scatter-instruction {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 80px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.4s;
}

.scatter-container:hover .scatter-instruction,
.scatter-container.is-scattered .scatter-instruction {
  opacity: 0;
}

.scatter-photo {
  position: absolute;
  width: 240px;
  aspect-ratio: 3/4;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  background: var(--ink);
  transform: translate3d(0, 0, 0);
  will-change: transform;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s, border-color 0.3s;
  cursor: pointer;
  z-index: 5;
  contain: strict;
  overflow: hidden;
  /* Default state: scattered (set by JS on load) */
}

/* Orderly state — applied via .orderly class on hover */
.scatter-photo.orderly {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.scatter-photo.orderly:nth-child(2) {
  transform: translate(-120px, 0) rotate(-2deg) !important;
  z-index: 4;
}

.scatter-photo.orderly:nth-child(3) {
  transform: translate(120px, 0) rotate(2deg) !important;
  z-index: 4;
}

.scatter-photo.orderly:nth-child(4) {
  transform: translate(-240px, 0) rotate(-3deg) !important;
  z-index: 3;
}

.scatter-photo.orderly:nth-child(5) {
  transform: translate(240px, 0) rotate(3deg) !important;
  z-index: 3;
}

.scatter-photo.orderly:nth-child(6) {
  transform: translate(-360px, 0) rotate(-4deg) !important;
  z-index: 2;
}

.scatter-photo.orderly:nth-child(7) {
  transform: translate(360px, 0) rotate(4deg) !important;
  z-index: 2;
}

.scatter-photo.orderly:nth-child(8) {
  transform: translate(-480px, 0) rotate(-5deg) !important;
  z-index: 1;
}

.scatter-photo.orderly:nth-child(9) {
  transform: translate(480px, 0) rotate(5deg) !important;
  z-index: 1;
}

/* Scattered state — the default state on load */
.scatter-photo:hover {
  z-index: 100 !important;
  box-shadow: 0 20px 45px rgba(156, 122, 69, 0.25), 0 10px 30px rgba(0, 0, 0, 0.4);
  border-color: var(--brass);
}

.scatter-photo-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.scatter-photo-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.scatter-photo:hover .scatter-photo-inner {
  transform: scale(1.05);
}

/* Base colors for placeholders */
.scatter-photo:nth-child(even) .scatter-photo-inner {
  background-color: #1a0a0b;
  color: var(--paper);
}

.scatter-photo:nth-child(odd) .scatter-photo-inner {
  background-color: #11060a;
  color: var(--paper);
}



.scatter-photo-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--burgundy-panel);
  color: var(--bp-text);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 500;
  box-shadow: 2px 2px 0 var(--ink);
  border: 1px solid var(--ink);
  pointer-events: none;
  z-index: 10;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.scatter-photo:hover .scatter-photo-label {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .scatter-container {
    height: 400px;
  }

  .scatter-trigger {
    height: 280px;
  }

  .scatter-instruction {
    font-size: 40px;
  }

  .scatter-photo {
    width: 120px;
  }

  .scatter-photo.orderly:nth-child(2) {
    transform: translate(-65px, 0) rotate(-2deg) !important;
  }

  .scatter-photo.orderly:nth-child(3) {
    transform: translate(65px, 0) rotate(2deg) !important;
  }

  .scatter-photo.orderly:nth-child(4) {
    transform: translate(-130px, 0) rotate(-3deg) !important;
  }

  .scatter-photo.orderly:nth-child(5) {
    transform: translate(130px, 0) rotate(3deg) !important;
  }

  .scatter-photo.orderly:nth-child(6) {
    transform: translate(-195px, 0) rotate(-4deg) !important;
  }

  .scatter-photo.orderly:nth-child(7) {
    transform: translate(195px, 0) rotate(4deg) !important;
  }

  .scatter-photo.orderly:nth-child(8) {
    transform: translate(-260px, 0) rotate(-5deg) !important;
  }

  .scatter-photo.orderly:nth-child(9) {
    transform: translate(260px, 0) rotate(5deg) !important;
  }
}


/* ═══════════════════════════════════════════════════════
CTA
═══════════════════════════════════════════════════════ */
.cta-section {
  background-color: var(--paper);
  /* Matches site background */
  color: var(--ink);
  padding: 100px 48px 128px;
  /* 128px bottom + 72px footer top = 200px total spacing */
}

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

.cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--ink);
}

.cta-title em {
  font-style: normal;
  color: var(--brass);
}

.cta-sub {
  font-size: clamp(14px, 2vw, 18px);
  color: var(--ink-2);
  margin-bottom: 36px;
}

.cta-btn {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--paper);
  background: var(--ink);
  padding: 16px 40px;
  border-radius: 30px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(27, 31, 35, 0.15);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(156, 122, 69, 0.35);
  background: var(--brass);
  color: var(--paper);
}


/* ═══════════════════════════════════════════════════════
FOOTER
═══════════════════════════════════════════════════════ */
.footer {
  background: var(--burgundy-panel);
  color: var(--bp-text);
  padding: 72px 48px 40px;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--bp-line);
}

.footer-brand h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--bp-sub);
  max-width: 320px;
}

.footer-links-group {
  display: flex;
  gap: 64px;
}

.footer-col-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--bp-sub);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--bp-text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--bp-sub);
}

.footer-socials {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-socials a {
  color: var(--bp-sub);
  transition: color 0.25s, transform 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--bp-line);
}

.footer-socials a:hover {
  color: var(--brass);
  border-color: var(--brass);
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}


/* ────────────────────────────────────────────────
BOOKING MODAL
──────────────────────────────────────────────────── */
.booking-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 31, 35, 0.9);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.booking-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal-content {
  background: var(--paper);
  color: var(--ink);
  width: 90%;
  max-width: 600px;
  border-radius: 24px;
  padding: 48px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.booking-modal-overlay.open .booking-modal-content {
  transform: translateY(0);
}

.booking-close {
  position: absolute;
  top: 12px;
  right: 24px;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--ink-2);
  cursor: pointer;
  transition: color 0.2s;
  z-index: 10;
}

.booking-close:hover {
  color: var(--ink);
}

.booking-progress {
  width: 100%;
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  margin-bottom: 32px;
  overflow: hidden;
  display: flex;
}

.booking-progress-bar {
  height: 100%;
  width: 33.33%;
  background: var(--brass);
  transition: width 0.3s ease;
}

.booking-step {
  display: none;
  animation: fadeIn 0.4s;
}

.booking-step.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.booking-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--ink);
}

.booking-sub {
  color: var(--ink-2);
  margin-bottom: 24px;
  font-size: 15px;
}

.booking-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.booking-card {
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
  background: var(--white);
}

.booking-card:hover {
  border-color: var(--brass);
}

.booking-card.selected {
  background: var(--brass);
  color: var(--paper);
  border-color: var(--brass);
}

.booking-input {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  margin-bottom: 16px;
  transition: border-color 0.2s;
}

.booking-input:focus {
  outline: none;
  border-color: var(--brass);
}

textarea.booking-input {
  resize: vertical;
}

.booking-checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 32px;
  margin-top: 8px;
}

.booking-checkbox-label input {
  display: none;
}

.booking-checkbox-custom {
  width: 20px;
  height: 20px;
  border: 1px solid var(--line);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.booking-checkbox-label input:checked+.booking-checkbox-custom {
  background: var(--brass);
  border-color: var(--brass);
}

.booking-checkbox-label input:checked+.booking-checkbox-custom::after {
  content: '✓';
  color: var(--paper);
  font-size: 14px;
}

.booking-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
}

.booking-btn-primary {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--paper);
  background: var(--ink);
  padding: 16px 40px;
  border-radius: 30px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(27, 31, 35, 0.15);
  border: none;
  cursor: pointer;
}

.booking-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(156, 122, 69, 0.35);
  background: var(--brass);
}

.booking-back {
  background: none;
  border: none;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  cursor: pointer;
  padding: 8px 0;
  transition: color 0.2s;
}

.booking-back:hover {
  color: var(--ink);
}

@media (max-width: 600px) {
  .booking-modal-content {
    padding: 32px 24px;
  }
}


/* ═══════════════════════════════════════════════════════
RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 48px;
  }

  .hero-text-content {
    max-width: 100%;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-graphic {
    margin-top: 12px;
  }

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

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

@media (max-width: 760px) {
  .navbar {
    padding: 14px 20px 10px;
  }

  .navbar.scrolled {
    padding: 10px 20px 8px;
  }

  .hamburger-text {
    display: none;
  }

  .nav-contact-btn {
    font-size: 10px;
    padding: 7px 16px;
    letter-spacing: 0.12em;
  }

  .nav-logo-link {
    height: 54px;
  }

  .navbar.scrolled .nav-logo-link {
    height: 42px;
  }

  .navbar-wave {
    height: 22px;
  }

  .sidebar {
    width: 320px;
  }

  .sidebar-nav-text {
    font-size: 24px;
  }

  .hero {
    padding: 100px 22px 60px;
  }

  .section {
    padding: 72px 22px;
  }

  .video-section {
    padding: 72px 0;
  }

  .video-section .section-inner {
    padding: 0 22px;
  }

  .photo-carousel-section .section-inner {
    padding: 0 22px;
  }

  .cta-section {
    padding: 60px 22px 88px;
  }

  .video-card {
    width: 260px;
    height: 165px;
  }

  .photo-card {
    width: 220px;
    height: 300px;
  }

  .scatter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .footer {
    padding: 56px 22px 32px;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-links-group {
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .scatter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Mobile: Smaller circle, no hover ── */
@media (max-width: 760px) {
  .circular-reveal-container {
    width: 240px;
    height: 240px;
  }

  .circular-svg-wrapper text {
    font-size: 10px;
    letter-spacing: 0.2em;
  }

  .circular-center-text .circular-logo {
    height: 24px;
  }

  .circular-center-text p {
    font-size: 9px;
  }
}
