:root {
  --bg: #FAFAF8;
  --bg-2: #F4F3EF;
  --surface: #FFFFFF;
  --surface-2: #F0EFE9;
  --border: rgba(15, 30, 70, 0.10);
  --border-hi: rgba(15, 30, 70, 0.30);
  --navy: #0F1E46;
  --navy-mid: #1A2E5A;
  --navy-light: #2A4080;
  --navy-dim: rgba(15, 30, 70, 0.06);
  --navy-glow: rgba(15, 30, 70, 0.12);
  --accent: #C8A96E;
  --accent-dim: rgba(200, 169, 110, 0.12);
  --text: #0F1E46;
  --text-2: #4A5568;
  --text-3: #9BA3B4;
  --display: clamp(3rem, 7vw, 6.5rem);
  --h1: clamp(1.9rem, 3.5vw, 3rem);
  --h2: clamp(1.35rem, 2.2vw, 1.9rem);
  --body: 0.9375rem;
  --small: 0.8125rem;
  --micro: 0.6875rem;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.20s;
  --t-med: 0.40s;
  --shadow-sm: 0 1px 4px rgba(15, 30, 70, 0.07);
  --shadow-md: 0 4px 20px rgba(15, 30, 70, 0.10);
  --shadow-lg: 0 12px 48px rgba(15, 30, 70, 0.14);
}

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

::selection {
  background: var(--navy);
  color: #fff;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: multiply;
}

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

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

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: .07s
}

.d2 {
  transition-delay: .14s
}

.d3 {
  transition-delay: .21s
}

.d4 {
  transition-delay: .28s
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: height var(--t-fast) var(--ease), box-shadow var(--t-fast);
}

nav.compact {
  height: 56px;
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: .04em;
  color: var(--navy);
}

.nav-logo em {
  font-style: normal;
  color: var(--accent);
}

.nav-center {
  display: flex;
  gap: 2px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 4px;
}

.nav-center a {
  font-size: var(--small);
  font-weight: 500;
  color: var(--text-2);
  padding: 5px 15px;
  border-radius: 50px;
  transition: all var(--t-fast);
}

.nav-center a:hover {
  color: var(--navy);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cv {
  font-size: var(--small);
  font-weight: 500;
  color: var(--navy);
  border: 1px solid var(--border-hi);
  border-radius: 50px;
  padding: 6px 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--t-fast);
  background: var(--navy-dim);
}

.nav-cv:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg-2);
  border: 1px solid var(--border-hi);
  border-radius: 50px;
  padding: 3px;
  overflow: hidden;
}

.lang-btn {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--t-fast);
  background: transparent;
  color: var(--text-3);
  font-family: 'DM Sans', sans-serif;
}

.lang-btn.active {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.lang-btn:hover:not(.active) {
  color: var(--navy);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--t-med) var(--ease);
  transform-origin: center;
}

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

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 490;
  background: rgba(250, 250, 248, 0.98);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-med) var(--ease), visibility var(--t-med);
}

.mobile-drawer.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer a {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  font-weight: 600;
  color: var(--text-3);
  transition: color var(--t-fast);
  padding: 8px 0;
}

.mobile-drawer a:hover {
  color: var(--navy);
}

.mobile-drawer-cv {
  margin-top: 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: var(--small);
  color: var(--text-2);
  border: 1px solid var(--border-hi);
  border-radius: 50px;
  padding: 10px 28px;
  background: var(--navy-dim);
}

.mobile-lang {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.mobile-lang .lang-btn {
  font-size: 0.7rem;
  padding: 7px 18px;
  border: 1px solid var(--border-hi);
  border-radius: 50px;
}

.mobile-lang .lang-btn.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* FAB */
.fab {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 400;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: var(--small);
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 50px;
  box-shadow: 0 6px 28px rgba(15, 30, 70, .30);
  transition: all var(--t-fast) var(--ease);
}

.fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(15, 30, 70, .40);
}

.fab-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

/* ── Layout ── */
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.section {
  padding: clamp(80px, 10vw, 130px) 0;
}

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--micro);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero-geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-geo::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 110%;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 60%, #1E3A7A 100%);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-geo::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 42%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 169, 110, .12) 0%, transparent 65%);
}

.hero-lines {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hero-lines svg {
  width: 100%;
  height: 100%;
  opacity: .07;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 60px) 40px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-left {}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-dim);
  border: 1px solid var(--border-hi);
  border-radius: 50px;
  padding: 6px 16px 6px 10px;
  font-size: var(--small);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 32px;
}

.pulse {
  width: 7px;
  height: 7px;
  background: #22C55E;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: #22C55E;
  opacity: .4;
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: .4
  }

  100% {
    transform: scale(2.4);
    opacity: 0
  }
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 24px;
  color: var(--navy);
}

.hero-headline .italic-line {
  font-style: italic;
  font-weight: 400;
  color: var(--navy-light);
  display: block;
}

.hero-sub {
  font-size: clamp(.875rem, 1.3vw, 1rem);
  color: var(--text-2);
  max-width: 460px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.htag {
  font-size: var(--micro);
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid var(--border-hi);
  color: var(--text-2);
  background: var(--surface);
}

.htag.navy {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--navy-dim);
}

.htag.gold {
  border-color: rgba(200, 169, 110, .4);
  color: #8A6E2E;
  background: var(--accent-dim);
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-photo-wrap {
  position: relative;
  width: clamp(240px, 30vw, 380px);
}

.hero-photo-frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, .15);
  aspect-ratio: 3/4;
  background: var(--navy-mid);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .35);
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-float-1 {
  position: absolute;
  top: 20px;
  left: -40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  min-width: 150px;
  animation: float-a 4s ease-in-out infinite;
}

.hero-float-2 {
  position: absolute;
  bottom: 30px;
  right: -36px;
  background: var(--navy);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  min-width: 160px;
  animation: float-b 5s ease-in-out infinite;
}

@keyframes float-a {

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

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

@keyframes float-b {

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

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

.float-label {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.float-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

.hero-float-1 .float-label {
  color: var(--text-3)
}

.hero-float-1 .float-val {
  color: var(--navy)
}

.hero-float-2 .float-label {
  color: rgba(255, 255, 255, .5)
}

.hero-float-2 .float-val {
  color: #fff
}

.hero-float-2 .float-sub {
  font-size: .7rem;
  color: var(--accent);
  margin-top: 3px;
  font-weight: 500
}

.hero-stats {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--surface);
}

.hstat {
  padding: 24px clamp(12px, 2vw, 32px);
  border-right: 1px solid var(--border);
  text-align: center;
  transition: background var(--t-fast);
}

.hstat:last-child {
  border-right: none
}

.hstat:hover {
  background: var(--navy-dim)
}

.hstat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.hstat-label {
  font-size: var(--micro);
  color: var(--text-3);
  letter-spacing: .07em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Buttons */
.btn {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--small);
  font-weight: 600;
  letter-spacing: .02em;
  padding: 12px 28px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--t-fast) var(--ease);
  cursor: pointer;
  border: none;
}

.btn-fill {
  background: var(--navy);
  color: #fff;
}

.btn-fill:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-fill i {
  transition: transform var(--t-fast);
}

.btn-fill:hover i {
  transform: translateX(3px);
}

.btn-outline {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border-hi);
}

.btn-outline:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--navy-dim);
}

/* ── ABOUT ── */
.about-section {
  background: var(--bg-2)
}

.about-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}

.about-photo-col {
  position: relative
}

.photo-frame {
  aspect-ratio: 3/4;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
  position: relative;
  box-shadow: var(--shadow-md);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.photo-badge {
  position: absolute;
  bottom: -14px;
  right: -14px;
  background: var(--navy);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: var(--micro);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 11px 18px;
  border-radius: var(--r-sm);
  line-height: 1.5;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.photo-badge span {
  display: block;
  color: var(--accent)
}

.about-text-col {
  padding-top: 8px
}

.about-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--h1);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -.01em;
  color: var(--navy);
}

.about-headline em {
  font-style: italic;
  color: var(--text-2);
  font-weight: 400
}

.about-body p {
  font-size: var(--body);
  color: var(--text-2);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-body p strong {
  color: var(--navy);
  font-weight: 600
}

.pm-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 32px;
  margin-bottom: 28px;
}

.pm-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 14px;
  text-align: center;
  position: relative;
  transition: all var(--t-fast);
}

.pm-step:hover {
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm)
}

.pm-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  opacity: .15;
  line-height: 1;
  margin-bottom: 8px;
}

.pm-step-icon {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px
}

.pm-step-label {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-2);
  line-height: 1.4
}

.pm-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -9px;
  top: 50%;
  transform: translateY(-50%);
  font-size: .75rem;
  color: var(--text-3);
  z-index: 1
}

.trait-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px
}

.trait {
  font-size: var(--micro);
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text-2);
  background: var(--surface);
  transition: all var(--t-fast);
}

.trait:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--navy-dim)
}

.about-ctas {
  display: flex;
  gap: 10px;
  margin-top: 32px;
  flex-wrap: wrap
}

/* ── PROJECTS BENTO ── */
.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--h1);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.01em;
  margin-bottom: 8px;
  color: var(--navy);
}

.section-sub {
  font-size: var(--small);
  color: var(--text-3);
  margin-bottom: 48px
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}

.bcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(20px, 2.5vw, 28px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: border-color var(--t-med) var(--ease), transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}

.bcard::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(15, 30, 70, 0.4) 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity var(--t-med)
}

.bcard:hover {
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg)
}

.bcard:hover::before {
  opacity: 1
}

.bcard-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.05;
  transition: all var(--t-med) var(--ease);
  filter: grayscale(100%);
}

.bcard:hover .bcard-bg {
  opacity: 0.12;
  transform: scale(1.05);
  filter: grayscale(0%);
}

.bcard-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bcard-top,
.bcard-body,
.bcard-arrow {
  position: relative;
  z-index: 2;
}

.bcard.featured {
  background: var(--navy);
  border-color: var(--navy)
}

.bcard.featured::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, .05) 0%, transparent 50%)
}

.bcard.featured:hover {
  background: var(--navy-mid)
}

.bcard.featured .bcard-cat {
  color: rgba(255, 255, 255, .45)
}

.bcard.featured .bcard-title {
  color: #fff
}

.bcard.featured .bcard-desc {
  color: rgba(255, 255, 255, .55)
}

.bcard.featured .bcard-icon {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .12);
  color: #fff
}

.bcard.featured:hover .bcard-icon {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent)
}

.bcard.featured .bcard-arrow {
  border-color: rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .4)
}

.bcard.featured:hover .bcard-arrow {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent)
}

.bc-1 {
  grid-column: span 7;
  grid-row: span 2
}

.bc-2 {
  grid-column: span 5;
  grid-row: span 2
}

.bc-4 {
  grid-column: span 6
}

.bc-5 {
  grid-column: span 6
}

.bc-6 {
  grid-column: span 7
}

.bc-7 {
  grid-column: span 5
}

.bcard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px
}

.bcard-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--navy);
  background: var(--bg-2);
  transition: all var(--t-med) var(--ease);
  flex-shrink: 0;
}

.bcard:not(.featured):hover .bcard-icon {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: rotate(6deg) scale(1.05)
}

.chip {
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid rgba(15, 30, 70, .18);
  color: var(--navy);
  background: var(--navy-dim);
  white-space: nowrap
}

.chip.gold {
  border-color: rgba(200, 169, 110, .35);
  color: #7A5E28;
  background: var(--accent-dim)
}

.chip.inv {
  border-color: rgba(200, 169, 110, .4);
  color: var(--accent);
  background: rgba(200, 169, 110, .1)
}

.bcard-cat {
  font-size: var(--micro);
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 6px
}

.bcard-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 1.7vw, 1.4rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 8px
}

.bcard-desc {
  font-size: var(--small);
  color: var(--text-3);
  line-height: 1.65
}

.bc-1 .bcard-title {
  font-size: clamp(1.3rem, 2.2vw, 1.9rem)
}

.bcard-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: var(--text-3);
  transition: all var(--t-fast) var(--ease)
}

.bcard:not(.featured):hover .bcard-arrow {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: translate(2px, -2px)
}

/* ── PROCESS ── */
.process-section {
  background: var(--navy)
}

.process-section .eyebrow {
  color: var(--accent)
}

.process-section .eyebrow::before {
  background: var(--accent)
}

.process-section .section-heading {
  color: #fff
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-top: 52px
}

.proc-item {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--r-md);
  padding: clamp(20px, 2.5vw, 32px) clamp(16px, 2vw, 24px);
  position: relative;
  transition: all var(--t-med)
}

.proc-item:hover {
  background: rgba(255, 255, 255, .06);
  transform: translateY(-4px)
}

.proc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .06);
  line-height: 1;
  margin-bottom: 16px
}

.proc-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: rgba(200, 169, 110, .15);
  border: 1px solid rgba(200, 169, 110, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--accent);
  margin-bottom: 16px
}

.proc-title {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--small);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px
}

.proc-desc {
  font-size: var(--small);
  color: rgba(255, 255, 255, .45);
  line-height: 1.75
}

.proc-tools {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px
}

.proc-tool {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 3px 9px;
  border: 1px solid rgba(200, 169, 110, .2);
  border-radius: 50px;
  color: var(--accent)
}

/* ── SKILLS MARQUEE ── */
.marquee-section {
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-2)
}

.marquee-track {
  display: flex;
  gap: 10px;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent)
}

.marquee-track+.marquee-track {
  margin-top: 10px
}

.marquee-inner {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  min-width: 100%;
  animation: run 30s linear infinite
}

.marquee-inner.rev {
  animation: run-rev 36s linear infinite
}

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

@keyframes run {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(calc(-100% - 10px))
  }
}

@keyframes run-rev {
  from {
    transform: translateX(calc(-100% - 10px))
  }

  to {
    transform: translateX(0)
  }
}

.stag {
  font-size: var(--small);
  color: var(--text-2);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 9px 20px;
  white-space: nowrap;
  transition: all var(--t-fast)
}

.stag:hover {
  color: var(--navy);
  border-color: var(--navy)
}

.stag.lit {
  color: var(--navy);
  border-color: rgba(15, 30, 70, .25);
  background: var(--navy-dim);
  font-weight: 600
}

/* ── TESTIMONIALS ── */
.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px
}

.tcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(22px, 2.5vw, 32px);
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-med), transform var(--t-med) var(--ease), box-shadow var(--t-med)
}

.tcard:hover {
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md)
}

.tcard.feat {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--navy-dim) 0%, var(--surface) 60%);
  border-color: rgba(15, 30, 70, .18)
}

.tcard::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem;
  color: rgba(15, 30, 70, .04);
  line-height: 1;
  pointer-events: none
}

.tcard-stars {
  font-size: .6rem;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 16px
}

.tcard-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(.95rem, 1.2vw, 1.05rem);
  font-style: italic;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 24px
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 12px
}

.tcard-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0
}

.tcard-name {
  font-size: var(--small);
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--navy)
}

.tcard-role {
  font-size: var(--micro);
  color: var(--text-3)
}

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  padding: clamp(80px, 12vw, 130px) 0 clamp(40px, 6vw, 56px);
  text-align: center
}

.footer .eyebrow {
  color: var(--accent);
  justify-content: center
}

.footer .eyebrow::before {
  background: var(--accent)
}

.footer-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 16px;
  color: #fff
}

.footer-headline em {
  font-style: italic;
  color: var(--accent)
}

.footer-sub {
  font-size: var(--body);
  color: rgba(255, 255, 255, .45);
  max-width: 440px;
  margin: 0 auto 40px
}

.contact-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 60px
}

.clink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--small);
  font-weight: 500;
  color: rgba(255, 255, 255, .65);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50px;
  padding: 10px 22px;
  transition: all var(--t-fast)
}

.clink:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .10);
  transform: translateY(-2px)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--micro);
  color: rgba(255, 255, 255, .3);
  letter-spacing: .04em;
  flex-wrap: wrap;
  gap: 8px
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(15, 30, 70, .65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
  padding: clamp(16px, 4vw, 48px) clamp(12px, 3vw, 24px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-med) var(--ease), visibility var(--t-med)
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible
}

.modal {
  width: 100%;
  max-width: 1020px;
  margin: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transform: translateY(28px) scale(.99);
  transition: transform var(--t-med) var(--ease);
  box-shadow: 0 40px 80px rgba(15, 30, 70, .25)
}

.modal-overlay.open .modal {
  transform: none
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(15, 30, 70, .06);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-2);
  font-size: .8rem;
  z-index: 10;
  transition: all var(--t-fast) var(--ease)
}

.modal-close:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: rotate(90deg)
}

.modal-img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2)
}

.modal-hdr {
  padding: clamp(24px, 3vw, 40px) clamp(24px, 3vw, 40px) clamp(16px, 2vw, 24px);
  border-bottom: 1px solid var(--border);
  position: relative
}

.modal-tag {
  font-size: var(--micro);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  display: block
}

.modal-hdr h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--h2);
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 4px;
  line-height: 1.2;
  color: var(--navy)
}

.modal-hdr p {
  font-size: var(--small);
  color: var(--text-3)
}

.modal-body {
  padding: clamp(24px, 3vw, 40px)
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: clamp(24px, 3vw, 44px)
}

.impact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 32px
}

.impact-box {
  background: var(--navy-dim);
  border: 1px solid rgba(15, 30, 70, .12);
  border-radius: var(--r-md);
  padding: 16px 12px;
  text-align: center
}

.impact-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px
}

.impact-l {
  font-size: var(--micro);
  color: var(--text-3);
  letter-spacing: .07em;
  text-transform: uppercase
}

.msec {
  margin-bottom: 28px
}

.msec h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--small);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
  margin-bottom: 14px
}

.msec h3 i {
  color: var(--accent);
  font-size: .75rem
}

.msec p,
.msec li {
  font-size: var(--small);
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: 10px
}

.msec ul {
  list-style: none;
  padding: 0
}

.msec li {
  padding-left: 18px;
  position: relative
}

.msec li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--navy);
  font-size: .7rem;
  top: 5px
}

.msec li strong {
  color: var(--navy);
  font-weight: 600
}

.role-callout {
  background: var(--navy-dim);
  border-left: 3px solid var(--navy);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 14px 16px;
  margin-bottom: 20px
}

.role-callout-label {
  font-size: var(--micro);
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px
}

.role-callout-text {
  font-size: var(--small);
  color: var(--text-2);
  line-height: 1.7
}

.info-box {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px;
  margin-bottom: 16px
}

.info-item {
  margin-bottom: 14px
}

.info-item:last-child {
  margin-bottom: 0
}

.info-label {
  font-size: var(--micro);
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .10em;
  font-weight: 600;
  margin-bottom: 3px
}

.info-val {
  font-size: var(--small);
  color: var(--navy);
  font-weight: 600
}

.modal-side-img {
  width: 100%;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  object-fit: cover;
  opacity: .8;
  transition: opacity var(--t-fast);
  margin-bottom: 6px
}

.modal-side-img:hover {
  opacity: 1
}

.side-cap {
  font-size: .65rem;
  color: var(--text-3);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: .04em
}

.modal-media-section {
  padding: clamp(24px, 3vw, 40px);
  border-top: 1px solid var(--border);
  background: var(--bg-2)
}

.modal-media-label {
  font-size: var(--micro);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px
}

.modal-media-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border)
}

.app-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 36px
}

.app-gallery.cols-2 {
  grid-template-columns: repeat(2, 1fr)
}

.app-gallery.cols-4 {
  grid-template-columns: 1fr;
  gap: 20px
}

.gallery-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: zoom-in;
  transition: all var(--t-med) var(--ease)
}

.gallery-item.landscape {
  aspect-ratio: 16/9
}

.gallery-item.square {
  aspect-ratio: 1/1
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-med) var(--ease), opacity var(--t-med);
  opacity: .9
}

.gallery-item:hover img {
  transform: scale(1.04);
  opacity: 1
}

.gallery-item:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-sm)
}

.gallery-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  background: rgba(15, 30, 70, .45);
  opacity: 0;
  transition: opacity var(--t-fast)
}

.gallery-item:hover::after {
  opacity: 1
}

.gallery-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 12px 8px;
  background: linear-gradient(to top, rgba(15, 30, 70, .85) 0%, transparent 100%);
  font-size: .625rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .9);
  text-transform: uppercase;
  transform: translateY(4px);
  opacity: 0;
  transition: all var(--t-fast)
}

.gallery-item:hover .gallery-cap {
  opacity: 1;
  transform: none
}

.gallery-placeholder {
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-3);
  padding: 16px;
  text-align: center
}

.gallery-placeholder i {
  font-size: 1.8rem;
  opacity: .25
}

.gallery-placeholder span {
  font-size: .6rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.5;
  opacity: .5
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(15, 30, 70, .94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-med) var(--ease);
  cursor: zoom-out
}

.lightbox.open {
  opacity: 1;
  visibility: visible
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--r-md);
  transform: scale(.94);
  transition: transform var(--t-med) var(--ease);
  box-shadow: 0 40px 80px rgba(0, 0, 0, .6)
}

.lightbox.open img {
  transform: scale(1)
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255, 255, 255, .7);
  font-size: .85rem;
  transition: all var(--t-fast)
}

.lightbox-close:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent)
}

.video-block {
  margin-bottom: 8px
}

.video-embed-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-2)
}

.video-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--surface-2)
}

.video-placeholder-icon {
  width: 64px;
  height: 64px;
  background: rgba(15, 30, 70, .06);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--navy)
}

.video-placeholder p {
  font-size: var(--small);
  color: var(--text-3);
  text-align: center;
  line-height: 1.6;
  max-width: 280px
}

.video-placeholder code {
  font-size: .7rem;
  background: var(--navy-dim);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--navy);
  font-family: monospace
}

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center
  }

  .hero-geo::before {
    width: 100%;
    clip-path: none;
    top: auto;
    bottom: 0;
    height: 40%;
    opacity: .08
  }

  .hero-photo-wrap {
    width: clamp(200px, 40vw, 320px);
    margin-top: 40px
  }

  .hero-float-1,
  .hero-float-2 {
    display: none
  }

  .bento {
    grid-template-columns: repeat(6, 1fr)
  }

  .bc-1 {
    grid-column: span 6;
    grid-row: span 2
  }

  .bc-2 {
    grid-column: span 6;
    grid-row: span 1
  }

  .bc-4,
  .bc-5 {
    grid-column: span 3
  }

  .bc-6 {
    grid-column: span 4
  }

  .bc-7 {
    grid-column: span 2
  }

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

  .tgrid {
    grid-template-columns: 1fr 1fr
  }

  .tcard.feat {
    grid-column: span 2
  }

  .about-grid {
    grid-template-columns: 260px 1fr
  }

  .pm-process {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:768px) {

  .nav-center,
  .nav-cv {
    display: none
  }

  .hamburger {
    display: flex
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr)
  }

  .hstat:nth-child(2) {
    border-right: none
  }

  .hstat:nth-child(3) {
    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border)
  }

  .hstat:nth-child(4) {
    border-top: 1px solid var(--border)
  }

  .about-grid {
    grid-template-columns: 1fr
  }

  .about-photo-col {
    max-width: 220px;
    margin: 0 auto
  }

  .about-text-col {
    padding-top: 0
  }

  .pm-process {
    grid-template-columns: repeat(2, 1fr)
  }

  .pm-step:not(:last-child)::after {
    display: none
  }

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

  .bc-1,
  .bc-2,
  .bc-3,
  .bc-4,
  .bc-5,
  .bc-6,
  .bc-7 {
    grid-column: span 1;
    grid-row: span 1
  }

  .bcard {
    min-height: 180px
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .tgrid {
    grid-template-columns: 1fr
  }

  .tcard.feat {
    grid-column: span 1
  }

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

  .modal-grid {
    grid-template-columns: 1fr
  }

  .modal-sidebar {
    order: -1
  }

  .fab {
    bottom: 20px;
    right: 16px;
    padding: 10px 18px;
    font-size: .75rem
  }

  .app-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px
  }

  .app-gallery.cols-4 {
    grid-template-columns: repeat(2, 1fr)
  }

  .lang-toggle {
    display: none
  }
}

@media(max-width:480px) {
  .hero-headline {
    font-size: clamp(2.4rem, 10vw, 3.2rem)
  }

  .hstat {
    padding: 18px 8px
  }

  .hstat-num {
    font-size: 1.5rem
  }

  .contact-row {
    flex-direction: column;
    align-items: center
  }

  .impact-row {
    grid-template-columns: 1fr 1fr
  }

  .process-grid {
    grid-template-columns: 1fr
  }

  .pm-process {
    grid-template-columns: 1fr
  }

  .app-gallery {
    grid-template-columns: 1fr
  }
}

/* Helpers (no inline styles in HTML) */
#projects.section {
  padding-top: clamp(60px, 8vw, 100px)
}

.process-section .section-sub.reveal.d1 {
  color: rgba(255, 255, 255, .35)
}

.marquee-section .wrapper.marquee-heading-wrap {
  margin-bottom: 32px
}

.marquee-track.marquee-track--spaced {
  margin-top: 10px
}

.gallery-placeholder.gallery-placeholder--hidden {
  display: none
}
