@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
  /* ============================================================ */
  /* CLAY DESIGN SYSTEM TOKENS (from design.md)                   */
  /* ============================================================ */
  --color-primary: #0a0a0a;
  --color-primary-active: #1f1f1f;
  --color-primary-disabled: #e5e5e5;
  --color-ink: #0a0a0a;
  --color-body: #3a3a3a;
  --color-body-strong: #1a1a1a;
  --color-muted: #6a6a6a;
  --color-muted-soft: #9a9a9a;
  --color-hairline: #e5e5e5;
  --color-hairline-soft: #f0f0f0;
  
  /* Surfaces & Canvas */
  --color-canvas: #fffaf0;             /* Signature Warm Cream-Tinted Canvas */
  --color-surface-soft: #faf5e8;       /* Footer & CTA Band Background */
  --color-surface-card: #f5f0e0;       /* Neutral Cream Feature Cards */
  --color-surface-strong: #ebe6d6;
  --color-surface-dark: #0a1a1a;
  --color-surface-dark-elevated: #1a2a2a;
  
  --color-on-primary: #ffffff;
  --color-on-dark: #ffffff;
  --color-on-dark-soft: #a0a0a0;
  
  /* Saturated Feature Card Brand Accents */
  --color-brand-pink: #ff4d8b;
  --color-brand-teal: #1a3a3a;
  --color-brand-lavender: #b8a4ed;
  --color-brand-peach: #ffb084;
  --color-brand-ochre: #e8b94a;
  --color-brand-mint: #a4d4c5;
  --color-brand-coral: #ff6b5a;

  /* Aliased Variables */
  --bg-main: var(--color-canvas);
  --bg-card: var(--color-surface-card);
  --bg-card-subtle: var(--color-surface-soft);
  --border-color: var(--color-hairline);
  --border-subtle: var(--color-hairline-soft);
  --border-active: var(--color-primary);
  
  --text-primary: var(--color-ink);
  --text-muted: var(--color-muted);
  --text-dim: var(--color-muted-soft);
  
  --accent-terracotta: var(--color-brand-peach);
  --accent-amber: var(--color-brand-ochre);
  --accent-blue: #2563eb;
  
  /* Typography - Plain Black / Rounded Headline styling with Inter fallback */
  --font-display: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;
  
  --radius-card: var(--radius-xl);
  --radius-inner: var(--radius-lg);
  --container-max: 1200px;

  /* Motion Curves (Docking & Deceleration) */
  --ease-dock: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  background-color: var(--color-canvas);
  color: var(--color-body);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--color-canvas);
  color: var(--color-body);
  overflow-x: hidden;
  position: relative;
}

/* Top Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-brand-pink), var(--color-brand-ochre));
  z-index: 2000;
  width: 0%;
  transition: width 0.1s ease-out;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s var(--ease-spring);
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
}

/* Header & Floating Sticky Nav (Separate Pill Elements) */
.header-wrapper {
  position: fixed;
  top: 22px;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-32px);
  transition: transform 0.85s var(--ease-spring), opacity 0.85s ease;
}

.header-wrapper.is-loaded {
  opacity: 1;
  transform: translateY(0);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  padding: 0 28px;
}

/* Left Floating Element: Brand Logo Pill */
.brand-logo {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 250, 240, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.28s var(--ease-spring);
  text-decoration: none;
}

.brand-logo:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.3);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
}

.brand-logo-img {
  height: 28px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 14px;
}

/* Right Floating Element: Grouped Menu & CTA Pill */
.nav-right-pill {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 250, 240, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 5px 6px 5px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.28s var(--ease-spring);
}

.nav-right-pill:hover {
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-body);
  position: relative;
  padding: 6px 2px;
  transition: color 0.2s ease;
}

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

.nav-link.active-link {
  color: var(--color-ink);
  font-weight: 700;
}

.nav-link.active-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 2px;
  right: 2px;
  height: 2px;
  background-color: var(--color-ink);
  border-radius: var(--radius-pill);
}

.nav-contact-btn {
  pointer-events: auto;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--color-on-primary);
  background-color: var(--color-primary);
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  border: none;
  box-shadow: 0 2px 10px rgba(10, 10, 10, 0.12);
  transition: all 0.25s var(--ease-spring);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  text-decoration: none;
}

.nav-contact-btn:hover {
  background-color: var(--color-primary-active);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(10, 10, 10, 0.22);
}

/* Scrolled Elevation */
.header-wrapper.is-scrolled .brand-logo,
.header-wrapper.is-scrolled .nav-right-pill {
  background: rgba(255, 250, 240, 0.96);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* Mobile Hamburger Toggle Button */
.mobile-menu-toggle {
  display: none;
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  transition: all 0.25s var(--ease-spring);
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  border-color: var(--color-ink);
}

.hamburger-line {
  display: block;
  width: 18px;
  height: 2px;
  background-color: var(--color-ink);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Navigation Drawer System */
.mobile-nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 2100;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0.4s ease;
}

.mobile-nav-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mobile-nav-drawer.is-open .mobile-drawer-backdrop {
  opacity: 1;
}

.mobile-drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 88vw;
  max-width: 380px;
  background: rgba(255, 250, 240, 0.98);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-left: 1px solid var(--color-hairline);
  box-shadow: -12px 0 44px rgba(0, 0, 0, 0.16);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.mobile-nav-drawer.is-open .mobile-drawer-content {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-hairline);
}

.mobile-drawer-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-surface-soft);
  border: 1px solid var(--color-hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ink);
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-drawer-close:hover {
  background: var(--color-ink);
  color: #ffffff;
}

.mobile-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-ink);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  transition: transform 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.mobile-nav-link span:first-child {
  font-size: 0.78rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--color-brand-pink);
  letter-spacing: 0.05em;
}

.mobile-nav-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  background: var(--color-brand-pink);
  color: #fff;
  letter-spacing: 0.05em;
}

.mobile-nav-link:hover,
.mobile-nav-link.active-link {
  transform: translateX(6px);
  color: var(--color-brand-pink);
}

.mobile-drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-drawer-cta {
  background: var(--color-primary);
  color: var(--color-on-primary);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 15px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.mobile-drawer-tagline {
  font-size: 0.74rem;
  color: var(--color-muted);
  text-align: center;
}


/* Page Main Structure */
.page-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ============================================================ */
/* FULL-SCREEN 100VH LANDING HERO SECTION                       */
/* ============================================================ */
.hero-screen-section {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 28px 80px;
  position: relative;
  box-sizing: border-box;
}

.hero-ticker-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 940px;
  margin: auto;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 5.6rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-transform: none;
  color: var(--color-ink);
  word-break: normal;
  max-width: 940px;
  margin-bottom: 24px;
  user-select: none;
}

.hero-subhead {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--color-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s var(--ease-spring) 0.35s, transform 0.85s var(--ease-spring) 0.35s;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 38px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s var(--ease-spring) 0.55s, transform 0.85s var(--ease-spring) 0.55s;
}

.hero-screen-section.is-intro-done .hero-subhead {
  opacity: 1;
  transform: translateY(0);
}

.hero-screen-section.is-intro-done .hero-actions {
  opacity: 1;
  transform: translateY(0);
}

.hero-scroll-prompt {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  pointer-events: none;
  animation: heroScrollPrompt 2.4s ease-in-out infinite;
}

@keyframes heroScrollPrompt {
  0%, 100% {
    transform: translate(-50%, 0);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, 8px);
    opacity: 1;
    color: var(--color-ink);
  }
}

/* ============================================================ */
/* SCROLL SECTIONS                                              */
/* ============================================================ */

/* Showcase Gallery Section */
.showcase-section {
  padding: 80px 0 60px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* Infinite Horizontal Scroller / Marquee */
.marquee-wrapper {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  user-select: none;
  background-color: var(--color-surface-soft);
  border-top: 1px solid var(--color-hairline);
  border-bottom: 1px solid var(--color-hairline);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 36px;
  animation: marqueeScroll 26s linear infinite;
  will-change: transform;
}

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

.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-ink);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 28px;
}

.marquee-item span.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--color-brand-pink);
  border-radius: 50%;
}

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

/* Showcase Grid — Saturated Single-Color Cards (Clay Style) */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease-spring);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Saturated Clay Card Variants */
.project-card:nth-child(1) {
  background-color: var(--color-brand-peach);
  color: var(--color-ink);
}
.project-card:nth-child(2) {
  background-color: var(--color-brand-teal);
  color: var(--color-on-dark);
}
.project-card:nth-child(3) {
  background-color: var(--color-brand-lavender);
  color: var(--color-ink);
}
.project-card:nth-child(4) {
  background-color: var(--color-brand-ochre);
  color: var(--color-ink);
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.project-media-wrapper {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.05);
}

.project-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease-spring);
}

.project-card:hover .project-media-img {
  transform: scale(1.05);
}

.project-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
}

.media-studio-badge {
  position: absolute;
  bottom: 12px;
  left: 14px;
  z-index: 2;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-ink);
  background: rgba(255, 250, 240, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}


.project-card-footer {
  padding: 18px 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.project-title {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.project-card:nth-child(2) .project-title {
  color: #ffffff;
}

.project-tag {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.85);
  color: var(--color-ink);
  white-space: nowrap;
  letter-spacing: -0.01em;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
}

/* Process Section (01-04 Steps on Cream Surface Cards) */
.process-section {
  padding: 80px 0 50px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-card {
  background-color: var(--color-surface-card);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-xl);
  padding: 36px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease, border-color 0.2s ease;
}

.process-card:hover {
  border-color: var(--color-ink);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
}

.process-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-brand-pink);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.process-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.process-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}

.process-desc {
  font-size: 0.94rem;
  color: var(--color-body);
  line-height: 1.6;
}

/* Manifesto Banner */
.manifesto-section {
  padding: 70px 0 50px;
  text-align: center;
}

.manifesto-container {
  background-color: var(--color-brand-teal);
  border-radius: var(--radius-xl);
  padding: clamp(60px, 8vw, 96px) 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: var(--color-on-dark);
}

.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.2vw, 4.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #ffffff;
  max-width: 960px;
}

/* ============================================================ */
/* VELOCITY CAROUSEL (Framer Component Port)                    */
/* ============================================================ */
.velocity-carousel-section {
  padding: 90px 0 70px;
  background-color: var(--color-canvas);
  position: relative;
  overflow: hidden;
}

.velocity-header-wrap {
  position: relative;
  z-index: 10;
}

.velocity-carousel-container {
  position: relative;
  width: 100%;
  max-width: 100vw;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
  margin: 0 auto;
}

.velocity-stage {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  touch-action: pan-y;
  cursor: grab;
}

.velocity-stage.is-dragging {
  cursor: grabbing;
}

.velocity-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 360px;
  height: 360px;
  margin-left: -180px;
  margin-top: -180px;
  transform-origin: center;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-sizing: border-box;
  background: #1a1a1a;
  border: 4px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
              border 0.45s ease;
  will-change: transform, opacity;
  outline: none;
}

.velocity-card.is-active {
  border: 8px solid #ffffff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32), 0 10px 28px rgba(0, 0, 0, 0.18);
  cursor: default;
}

.velocity-card:not(.is-active) {
  cursor: pointer;
}

.velocity-card:not(.is-active):hover {
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.velocity-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  user-select: none;
  pointer-events: none;
  transition: transform 0.6s var(--ease-spring);
}

.velocity-card:hover .velocity-card-img {
  transform: scale(1.04);
}

.velocity-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.88) 100%);
  opacity: 0.7;
  transition: opacity 0.45s ease;
}

.velocity-card.is-active .velocity-card-overlay {
  opacity: 0.55;
}

.velocity-card-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 28px 24px;
  text-align: center;
  box-sizing: border-box;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.velocity-card.is-active .velocity-card-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.velocity-card-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.velocity-card-headline {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.velocity-card-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.45;
  margin: 0 0 16px;
  max-width: 90%;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.velocity-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  background: #ffffff;
  color: var(--color-ink);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: all 0.2s var(--ease-spring);
  pointer-events: auto;
}

.velocity-card-btn:hover {
  background: var(--color-surface-soft);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Nav Arrows */
.velocity-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--color-hairline);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ink);
  cursor: pointer;
  z-index: 100;
  transition: transform 0.25s var(--ease-spring), background 0.2s ease, box-shadow 0.2s ease;
}

.velocity-prev {
  left: clamp(16px, 4vw, 48px);
}

.velocity-next {
  right: clamp(16px, 4vw, 48px);
}

.velocity-nav-btn:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.velocity-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

/* Indicators */
.velocity-indicators {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 100;
}

.velocity-indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-pill);
  background: var(--color-ink);
  opacity: 0.28;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width 0.35s ease, opacity 0.35s ease, background-color 0.35s ease;
}

.velocity-indicator-dot.is-active {
  width: 24px;
  opacity: 1;
  background: var(--color-ink);
}

/* Responsive Velocity Carousel */
@media (max-width: 809.98px) {
  .velocity-carousel-container {
    height: 480px;
  }

  .velocity-card {
    width: 280px;
    height: 280px;
    margin-left: -140px;
    margin-top: -140px;
    border-radius: var(--radius-lg);
  }

  .velocity-card.is-active {
    border-width: 6px;
  }

  .velocity-card-content {
    padding: 18px 16px;
  }

  .velocity-card-headline {
    font-size: 1.22rem;
  }

  .velocity-card-text {
    font-size: 0.78rem;
    line-height: 1.35;
    margin-bottom: 10px;
  }

  .velocity-card-btn {
    padding: 8px 18px;
    font-size: 0.76rem;
  }

  .velocity-nav-btn {
    width: 38px;
    height: 38px;
  }
}

/* Artisan Mission Section */
.bio-section {
  padding: 70px 0 50px;
}

.bio-card {
  background: var(--color-surface-card);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-xl);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: center;
}

.bio-media {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: var(--color-brand-mint);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease-spring);
}

.bio-card:hover .bio-img {
  transform: scale(1.04);
}

.bio-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bio-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-ink);
}

.bio-text {
  font-size: 1.05rem;
  color: var(--color-body);
  line-height: 1.7;
}

/* Call to Action Banner */
.cta-section {
  padding: 60px 0 40px;
}

.cta-banner {
  background-color: var(--color-surface-soft);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-ink);
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s var(--ease-spring);
}

.cta-banner:hover {
  transform: translateY(-2px);
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-ink);
}

.cta-button {
  background-color: var(--color-primary);
  color: var(--color-on-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(10, 10, 10, 0.2);
  transition: all 0.25s var(--ease-spring);
  white-space: nowrap;
}

.cta-button:hover {
  transform: translateY(-2px);
  background-color: var(--color-primary-active);
  box-shadow: 0 8px 24px rgba(10, 10, 10, 0.3);
}

/* Site Footer — Cream-Tinted (Clay Specification) */
.site-footer {
  background-color: var(--color-surface-soft);
  border-top: 1px solid var(--color-hairline);
  padding: 90px 0 44px;
  margin-top: 40px;
}

.footer-top {
  border: 1px solid var(--color-hairline);
  background-color: var(--color-canvas);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  margin-bottom: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-email-btn {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  background-color: var(--color-primary);
  color: var(--color-on-primary);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  transition: all 0.25s var(--ease-spring);
}

.footer-email-btn:hover {
  background-color: var(--color-primary-active);
  transform: translateY(-2px);
}

.footer-columns {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--color-hairline);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-ink);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--color-muted);
  font-size: 0.92rem;
  display: inline-block;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-ink);
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--color-muted);
}

/* ============================================================ */
/* SCROLL REVEAL & DOCKING ENGINE                               */
/* ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(48px) scale(0.96);
  filter: blur(4px);
  transition: 
    opacity 0.9s var(--ease-dock), 
    transform 0.9s var(--ease-dock),
    filter 0.9s var(--ease-dock);
  will-change: opacity, transform, filter;
  perspective: 1200px;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
}

.reveal-stagger {
  perspective: 1200px;
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(54px) scale(0.95);
  filter: blur(5px);
  transition: 
    opacity 0.85s var(--ease-dock), 
    transform 0.85s var(--ease-dock),
    filter 0.85s var(--ease-dock);
  will-change: opacity, transform, filter;
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.16s; opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.27s; opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.38s; opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.49s; opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.60s; opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }

.reveal-scale {
  opacity: 0;
  transform: translateY(36px) scale(0.94);
  filter: blur(4px);
  transition: 
    opacity 0.95s var(--ease-dock), 
    transform 0.95s var(--ease-dock),
    filter 0.95s var(--ease-dock);
  will-change: opacity, transform, filter;
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
}

/* ============================================================ */
/* RESPONSIVE BREAKPOINTS                                       */
/* ============================================================ */

@media (max-width: 1199px) and (min-width: 810px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .footer-columns {
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 28px;
  }

  .bio-card {
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    padding: 44px;
  }
}

@media (max-width: 809.98px) {
  .header-wrapper {
    top: 14px;
    padding: 0;
  }

  .nav-bar {
    padding: 0 16px;
    justify-content: space-between;
  }

  .nav-right-pill {
    display: none;
  }

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

  .brand-logo {
    padding: 6px 14px;
  }

  .brand-logo-img {
    height: 24px;
  }

  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-screen-section {
    padding: 90px 16px 50px;
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-headline {
    font-size: clamp(2.3rem, 10.5vw, 3.6rem);
    line-height: 1.04;
    margin-bottom: 16px;
  }

  .hero-subhead {
    font-size: 0.98rem;
    line-height: 1.55;
    padding: 0 4px;
  }

  .hero-actions {
    margin-top: 24px;
    gap: 10px;
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .hero-actions .nav-contact-btn,
  .hero-actions .badge-pill {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 14px 20px;
    font-size: 0.88rem;
  }

  .showcase-section {
    padding: 50px 0 30px;
    gap: 32px;
  }

  .showcase-grid,
  .services-grid,
  .bio-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .project-media-wrapper {
    height: 200px;
  }

  .project-card-footer {
    padding: 16px 18px;
  }

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

  .process-card {
    min-height: auto;
    padding: 24px 20px;
    border-radius: var(--radius-lg);
  }

  .process-num {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .process-title {
    font-size: 1.2rem;
  }

  .manifesto-container {
    padding: 44px 20px;
    border-radius: var(--radius-lg);
  }

  .manifesto-headline {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
    line-height: 1.1;
  }

  .bio-card {
    padding: 28px 20px;
    gap: 24px;
    border-radius: var(--radius-lg);
  }

  .bio-media {
    aspect-ratio: 16 / 10;
    max-height: 240px;
  }

  .bio-name {
    font-size: 1.7rem;
  }

  .bio-text {
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 36px 22px;
    border-radius: var(--radius-lg);
  }

  .cta-headline {
    font-size: clamp(1.8rem, 7.5vw, 2.6rem);
  }

  .cta-button {
    width: 100%;
    text-align: center;
    padding: 15px 24px;
  }

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

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 20px;
  }

  .footer-email-btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.82rem;
  }
}

