/* ── Waleed Sulehri, Editorial Portfolio ── */

:root {
  --cream: #F6F3EE;
  --cream-dark: #EDE8E0;
  --ink: #141210;
  --ink-soft: #3D3A36;
  --muted: #7A756D;
  --copper: #A0622E;
  --copper-light: #C4834A;
  --sage: #4A5D52;
  --white: #FFFFFF;
  --dark: #1A1816;
  --dark-card: #242120;
  --border: rgba(20, 18, 16, 0.1);
  --border-light: rgba(255, 255, 255, 0.1);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Manrope', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1320px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --header: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

::selection {
  background: var(--copper);
  color: var(--white);
}

/* Page transition */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 10000;
  transform: scaleY(1);
  transform-origin: top;
  transition: transform 0.9s var(--ease);
  pointer-events: none;
}

.page-transition.done {
  transform: scaleY(0);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header);
  transition: background 0.5s, backdrop-filter 0.5s;
}

.header.scrolled {
  background: rgba(246, 243, 238, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-initials {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.4rem 0.6rem;
  border: 1px solid var(--ink);
  border-radius: 4px;
}

.logo-name {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-desktop a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.3s;
  position: relative;
}

.nav-desktop a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--copper);
  transition: width 0.4s var(--ease);
}

.nav-desktop a:not(.nav-cta):hover { color: var(--ink); }
.nav-desktop a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  padding: 0.65rem 1.4rem;
  background: var(--ink);
  color: var(--cream) !important;
  border-radius: 100px;
  transition: background 0.3s, transform 0.3s var(--ease) !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--copper);
  transform: translateY(-1px);
}

.nav-more {
  position: relative;
}

.nav-more-btn {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s;
}

.nav-more-btn:hover,
.nav-more.open .nav-more-btn { color: var(--ink); }

.nav-more-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  min-width: 180px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem;
  box-shadow: 0 12px 40px rgba(20, 18, 16, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}

.nav-more.open .nav-more-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-more-menu a {
  display: block;
  padding: 0.6rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.nav-more-menu a:hover {
  background: var(--cream-dark);
  color: var(--ink);
}

.menu-btn {
  display: none;
  align-items: center;
  gap: 0.75rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}

.menu-btn-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.menu-btn-icon span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.4s var(--ease), opacity 0.3s;
}

.menu-btn.active .menu-btn-icon span:first-child {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-btn.active .menu-btn-icon span:last-child {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Fullscreen menu */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 850;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--pad);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}

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

.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.menu-link {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 500;
  line-height: 1.15;
  color: rgba(246, 243, 238, 0.35);
  transition: color 0.4s, transform 0.4s var(--ease);
  transform: translateX(-20px);
  opacity: 0;
}

.menu-overlay.open .menu-link {
  transform: translateX(0);
  opacity: 1;
}

.menu-overlay.open .menu-link:nth-child(1) { transition-delay: 0.05s; }
.menu-overlay.open .menu-link:nth-child(2) { transition-delay: 0.1s; }
.menu-overlay.open .menu-link:nth-child(3) { transition-delay: 0.15s; }
.menu-overlay.open .menu-link:nth-child(4) { transition-delay: 0.2s; }
.menu-overlay.open .menu-link:nth-child(5) { transition-delay: 0.25s; }
.menu-overlay.open .menu-link:nth-child(6) { transition-delay: 0.3s; }
.menu-overlay.open .menu-link:nth-child(7) { transition-delay: 0.35s; }
.menu-overlay.open .menu-link:nth-child(8) { transition-delay: 0.4s; }

.menu-link:hover { color: var(--cream); }

.menu-footer {
  margin-top: auto;
  padding-top: 3rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--muted);
}

.menu-footer a {
  color: var(--copper-light);
  transition: color 0.3s;
}

.menu-footer a:hover { color: var(--cream); }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header) + 2rem) var(--pad) 3rem;
  position: relative;
}

.hero-layout {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--copper);
}

.hero-name {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}

.hero-line {
  display: block;
  overflow: hidden;
}

.hero-line--accent {
  font-style: italic;
  color: var(--copper);
}

.hero-lead {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 500;
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
  max-width: 480px;
}

.hero-body {
  font-size: 1rem;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.75rem;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}

.btn-dark {
  background: var(--ink);
  color: var(--cream);
}

.btn-dark:hover {
  background: var(--copper);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(160, 98, 46, 0.25);
}

.btn-dark .btn-arrow {
  transition: transform 0.3s var(--ease);
}

.btn-dark:hover .btn-arrow { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: rgba(20, 18, 16, 0.04);
}

.hero-creds {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-bottom: 3rem;
}

.hero-creds span:not(:last-child)::after {
  content: '·';
  margin-inline: 0.75rem;
  opacity: 0.4;
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-portrait {
  position: relative;
  width: min(420px, 80vw);
  aspect-ratio: 1;
}

.hero-portrait-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin 36s linear infinite;
  pointer-events: none;
}

.hero-portrait:hover .hero-portrait-ring {
  animation-play-state: paused;
}

.hero-portrait-ring-text {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  fill: var(--muted);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.hero-portrait-frame {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(160, 98, 46, 0.25);
  box-shadow:
    0 24px 64px rgba(20, 18, 16, 0.14),
    0 0 0 1px rgba(20, 18, 16, 0.06);
  background: var(--white);
}

.hero-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  pointer-events: none;
}

.scroll-indicator {
  width: 1px;
  height: 2.5rem;
  background: rgba(20, 18, 16, 0.15);
  position: relative;
  overflow: hidden;
}

.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--copper);
  animation: scrollPulse 2s var(--ease) infinite;
}

@keyframes scrollPulse {
  0% { transform: translateY(-100%); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(250%); opacity: 0; }
}

/* Animations */
.anim {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.anim.show {
  opacity: 1;
  transform: translateY(0);
}

/* Sections */
.section {
  padding: clamp(5rem, 12vw, 9rem) var(--pad);
  position: relative;
}

.section--dark {
  background: var(--dark);
  color: var(--cream);
}

.section--alt {
  background: var(--cream-dark);
}

.section-meta {
  max-width: var(--max);
  margin: 0 auto 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-num {
  font-family: var(--serif);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--copper);
}

.section--dark .section-num { color: var(--copper-light); }

.section-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.section--dark .section-tag { color: rgba(246, 243, 238, 0.4); }

.section-content {
  max-width: var(--max);
  margin: 0 auto;
}

.section-intro {
  margin-bottom: 4rem;
  max-width: 640px;
}

.heading-xl {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.heading-lg {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 2.5rem;
}

.text-lead {
  font-size: 1.0625rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.section--dark .text-lead {
  color: rgba(246, 243, 238, 0.6);
}

.section-note {
  margin-top: 3rem;
  font-size: 0.9375rem;
  color: rgba(246, 243, 238, 0.5);
}

.section-note a {
  color: var(--copper-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Service list */
.service-list {
  border-top: 1px solid var(--border-light);
}

.service-item {
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.service-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.75rem 0;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: padding-left 0.4s var(--ease);
}

.service-item:hover .service-trigger,
.service-item.open .service-trigger {
  padding-left: 1rem;
}

.service-index {
  font-family: var(--serif);
  font-size: 0.875rem;
  color: var(--copper-light);
  opacity: 0.6;
}

.service-title {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 500;
  transition: color 0.3s;
}

.service-item:hover .service-title,
.service-item.open .service-title {
  color: var(--copper-light);
}

.service-summary {
  font-size: 0.875rem;
  color: rgba(246, 243, 238, 0.45);
  margin-top: 0.25rem;
  display: none;
}

@media (min-width: 768px) {
  .service-summary { display: block; }
}

.service-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: transform 0.4s var(--ease), border-color 0.3s, background 0.3s;
  flex-shrink: 0;
}

.service-item.open .service-icon {
  transform: rotate(45deg);
  border-color: var(--copper-light);
  background: rgba(196, 131, 74, 0.1);
}

.service-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease);
}

.service-panel-inner {
  padding: 0 0 2rem calc(60px + 1.5rem);
  max-width: 680px;
}

.service-detail {
  font-size: 0.9375rem;
  color: rgba(246, 243, 238, 0.65);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.service-cta {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--copper-light);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}

.service-cta:hover { gap: 0.85rem; }

/* About */
.about-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

.about-quote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  font-style: italic;
  color: var(--copper);
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--copper);
  line-height: 1.35;
}

.about-prose p {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.info-card h3 {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.info-card li {
  font-size: 0.9375rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.info-card li:last-child { border-bottom: none; }

.info-card li span:last-child {
  color: var(--muted);
  font-size: 0.8125rem;
  text-align: right;
}

.info-card--accent {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.info-card--accent h3 { color: var(--copper-light); }
.info-card--accent p { font-size: 0.9375rem; line-height: 1.6; }

/* Experience */
.exp-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem;
}

.exp-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.exp-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.exp-date {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--copper);
  padding-top: 0.25rem;
}

.exp-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.exp-company {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.exp-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.75rem;
  background: rgba(160, 98, 46, 0.08);
  color: var(--copper);
  border-radius: 100px;
  margin-bottom: 1rem;
}

.exp-bullets li {
  font-size: 0.875rem;
  color: var(--muted);
  padding: 0.3rem 0;
  padding-left: 1rem;
  position: relative;
  line-height: 1.65;
}

.exp-bullets li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--copper);
  font-size: 0.75rem;
}

/* Education */
.edu-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.edu-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.edu-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(20, 18, 16, 0.06);
}

.edu-date {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.75rem;
}

.edu-degree {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.edu-school {
  font-size: 0.875rem;
  color: var(--muted);
}

.edu-note {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 0.75rem;
  opacity: 0.8;
}

/* Ventures */
.ventures-intro {
  max-width: 560px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(246, 243, 238, 0.55);
  margin-top: 1.5rem;
}

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

.venture-card {
  display: flex;
  flex-direction: column;
  padding: 2.25rem;
  border: 1px solid rgba(246, 243, 238, 0.1);
  border-radius: 16px;
  background: rgba(246, 243, 238, 0.03);
  transition: border-color 0.4s, background 0.4s, transform 0.4s var(--ease);
}

.venture-card:hover {
  border-color: rgba(184, 134, 92, 0.35);
  background: rgba(246, 243, 238, 0.05);
  transform: translateY(-4px);
}

.venture-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.venture-index {
  font-family: var(--serif);
  font-size: 0.8125rem;
  color: var(--copper-light);
  opacity: 0.5;
}

.venture-status {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 100px;
}

.venture-status--stealth {
  color: rgba(246, 243, 238, 0.6);
  border: 1px solid rgba(246, 243, 238, 0.2);
}

.venture-status--in-development {
  color: var(--dark);
  background: var(--copper-light);
}

.venture-category {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 0.75rem;
}

.venture-name {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.venture-tagline {
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-style: italic;
  color: rgba(246, 243, 238, 0.7);
  margin-bottom: 1rem;
}

.venture-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(246, 243, 238, 0.55);
  flex: 1;
}

.venture-focus {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.venture-pill {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  border: 1px solid rgba(246, 243, 238, 0.12);
  color: rgba(246, 243, 238, 0.5);
}

.venture-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--copper-light);
  transition: gap 0.3s var(--ease), color 0.3s;
}

.venture-link:hover {
  color: var(--cream);
  gap: 0.75rem;
}

.venture-arrow {
  font-size: 1rem;
  transition: transform 0.3s var(--ease);
}

.venture-link:hover .venture-arrow {
  transform: translate(2px, -2px);
}

/* Work grid */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-light);
  margin-top: 3rem;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
}

.work-card {
  background: var(--dark-card);
  padding: 2.5rem;
  transition: background 0.4s;
  position: relative;
  overflow: hidden;
}

.work-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--copper-light);
  transition: height 0.4s var(--ease);
}

.work-card:hover {
  background: #2a2826;
}

.work-card:hover::before { height: 100%; }

.work-num {
  font-family: var(--serif);
  font-size: 0.8125rem;
  color: var(--copper-light);
  opacity: 0.5;
  margin-bottom: 1.25rem;
}

.work-period {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 0.75rem;
}

.work-title {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.work-subtitle {
  font-size: 0.875rem;
  color: rgba(246, 243, 238, 0.55);
  margin-bottom: 0.75rem;
  font-style: italic;
}

.work-card:hover .work-title { color: var(--copper-light); }

.work-desc {
  font-size: 0.875rem;
  color: rgba(246, 243, 238, 0.5);
  line-height: 1.65;
}

/* Bento achievements */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
  align-items: stretch;
}

.bento-cell {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}

.bento-cell--stat:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
  text-align: center;
}

.bento-cell--stat:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
  text-align: center;
}

.bento-num {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 600;
  color: var(--copper);
  line-height: 1;
  display: block;
}

.bento-pct {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--copper);
}

.bento-cell--stat p,
.bento-cell--check p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 1rem;
  line-height: 1.5;
  max-width: 22ch;
  margin-inline: auto;
}

.bento-cell--wide {
  grid-column: 1 / 3;
  grid-row: 2;
}

.bento-cell--wide h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.bento-list li {
  font-size: 0.875rem;
  color: var(--muted);
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.55;
}

.bento-list li:last-child { border-bottom: none; }
.bento-list strong { color: var(--ink); font-weight: 600; }

.bento-cell--check {
  grid-column: 3;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Skills */
.skills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.skill-pill {
  padding: 0.6rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: all 0.3s var(--ease);
}

.skill-pill:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: translateY(-2px);
}

/* Testimonials */
.testimonial-stage {
  max-width: 800px;
}

.testimonial-track {
  position: relative;
  min-height: 320px;
}

.t-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.t-card.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.t-card blockquote {
  font-family: var(--serif);
  font-size: clamp(1.375rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink-soft);
}

.t-card blockquote::before {
  content: '\201C';
  display: block;
  font-size: 4rem;
  line-height: 0.8;
  color: var(--copper);
  opacity: 0.3;
  margin-bottom: 0.5rem;
}

.t-attribution {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.t-author {
  display: block;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 600;
  font-style: normal;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.t-role {
  display: block;
  font-size: 0.8125rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.t-counter {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
  min-width: 3rem;
  text-align: center;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.t-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.t-btn:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.t-dots {
  display: flex;
  gap: 0.5rem;
}

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.t-dot.active {
  background: var(--copper);
  transform: scale(1.3);
}

/* Contact */
.contact-section {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(6rem, 14vw, 10rem) var(--pad);
}

.contact-wrap {
  max-width: var(--max);
  margin: 0 auto;
}

.contact-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 2rem;
}

.contact-heading {
  margin-bottom: 1.5rem;
}

.contact-link {
  font-family: var(--serif);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 500;
  line-height: 1;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.15em;
  transition: color 0.4s;
}

.contact-link span:not(.contact-arrow) {
  transition: transform 0.4s var(--ease);
  display: inline-block;
}

.contact-link:hover span:not(.contact-arrow):first-child {
  transform: translateX(8px);
}

.contact-link:hover {
  color: var(--copper-light);
}

.contact-arrow {
  font-size: 0.5em;
  vertical-align: super;
  transition: transform 0.4s var(--ease);
}

.contact-link:hover .contact-arrow {
  transform: translate(4px, -4px);
}

.contact-sub {
  font-size: 1.0625rem;
  color: rgba(246, 243, 238, 0.5);
  max-width: 480px;
  line-height: 1.7;
  margin-top: 1.5rem;
}

.info-card li:not(:has(span)) {
  font-size: 0.875rem;
  color: var(--muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}

.info-card--accent li {
  font-size: 0.875rem;
  color: rgba(246, 243, 238, 0.75);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.info-card--accent li:last-child { border-bottom: none; }

/* Articles */
.articles-intro {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.articles-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.articles-filter {
  padding: 0.5rem 1.1rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  color: var(--muted);
  transition: all 0.3s var(--ease);
}

.articles-filter:hover,
.articles-filter.active {
  border-color: var(--copper);
  color: var(--ink);
  background: rgba(160, 98, 46, 0.06);
}

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

.article-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease);
}

.article-card:hover {
  border-color: rgba(160, 98, 46, 0.3);
  box-shadow: 0 12px 32px rgba(20, 18, 16, 0.06);
  transform: translateY(-3px);
}

.article-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.article-card-cat {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
}

.article-card-date {
  font-size: 0.75rem;
  color: var(--muted);
}

.article-card-title {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.article-card-excerpt {
  flex: 1;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}

.article-card-btn {
  align-self: flex-start;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--copper);
  cursor: pointer;
  transition: gap 0.3s, color 0.3s;
}

.article-card-btn:hover {
  color: var(--ink);
}

.article-reader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 18, 16, 0.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem var(--pad);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.article-reader.open {
  opacity: 1;
  visibility: visible;
}

.article-reader-panel {
  position: relative;
  width: min(680px, 100%);
  max-height: min(85vh, 760px);
  overflow-y: auto;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 24px 64px rgba(20, 18, 16, 0.2);
  scrollbar-width: thin;
}

.article-reader-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  font-size: 1.25rem;
  cursor: pointer;
  transition: background 0.2s;
}

.article-reader-close:hover {
  background: var(--cream-dark);
}

.article-reader-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.article-reader-cat {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
}

.article-reader-date {
  font-size: 0.8125rem;
  color: var(--muted);
}

.article-reader-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}

.article-reader-body p {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.article-reader-body p:last-child {
  margin-bottom: 0;
}

/* Gallery */
.gallery-intro {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.gallery-filter {
  padding: 0.5rem 1.1rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  color: var(--muted);
  transition: all 0.3s var(--ease);
}

.gallery-filter:hover,
.gallery-filter.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

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

.gallery-item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
}

.gallery-item:nth-child(6n + 1),
.gallery-item:nth-child(6n + 4) {
  grid-row: span 1;
}

.gallery-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.gallery-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 18, 16, 0.88) 0%, rgba(20, 18, 16, 0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  text-align: left;
}

.gallery-trigger:hover img {
  transform: scale(1.05);
}

.gallery-trigger:hover .gallery-overlay {
  opacity: 1;
}

.gallery-cat {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 0.5rem;
}

.gallery-caption {
  font-size: 0.8125rem;
  color: rgba(246, 243, 238, 0.9);
  line-height: 1.5;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(20, 18, 16, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

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

.lightbox-inner {
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 8px;
  margin: 0 auto;
}

.lightbox-caption {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--cream);
  margin-top: 1.5rem;
  line-height: 1.5;
  max-width: 640px;
  margin-inline: auto;
}

.lightbox-category {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper-light);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(246, 243, 238, 0.08);
  border: 1px solid rgba(246, 243, 238, 0.15);
  color: var(--cream);
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(246, 243, 238, 0.15);
}

.lightbox-close {
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.25rem;
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* Footer */
.footer {
  padding: 2.5rem var(--pad);
  border-top: 1px solid var(--border);
}

.footer-top {
  max-width: var(--max);
  margin: 0 auto 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-name {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 500;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--ink); }

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted);
}

/* Chat widget */
.wms-chat {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.wms-chat-hint {
  max-width: 200px;
  padding: 0.65rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(160, 98, 46, 0.2);
  background: rgba(246, 243, 238, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(20, 18, 16, 0.08);
  text-align: right;
  transition: opacity 0.3s, transform 0.3s var(--ease);
}

.wms-chat-hint[aria-hidden="true"] {
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
}

.wms-chat-hint-name {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
}

.wms-chat-hint-text {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.wms-chat-launcher {
  position: relative;
  width: 4.25rem;
  height: 4.25rem;
  border: 1px solid rgba(160, 98, 46, 0.35);
  border-radius: 18px;
  background: linear-gradient(145deg, var(--ink) 0%, #2a2826 100%);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(20, 18, 16, 0.18);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.wms-chat-launcher:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 40px rgba(20, 18, 16, 0.22);
}

.wms-chat-launcher-ring {
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(160, 98, 46, 0.45) 90deg,
    transparent 180deg,
    rgba(160, 98, 46, 0.2) 270deg,
    transparent 360deg
  );
  animation: spin 4s linear infinite;
  opacity: 0.75;
  pointer-events: none;
}

.wms-chat-launcher-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  object-fit: cover;
  object-position: center 12%;
  position: relative;
  z-index: 1;
  transition: opacity 0.25s, transform 0.25s;
}

.wms-chat-launcher-close {
  position: absolute;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--copper-light);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.25s, transform 0.25s;
  z-index: 2;
}

.wms-chat-launcher.is-open .wms-chat-launcher-avatar {
  opacity: 0;
  transform: scale(0.8);
}

.wms-chat-launcher.is-open .wms-chat-launcher-close {
  opacity: 1;
  transform: scale(1);
}

.wms-chat-launcher.is-open .wms-chat-launcher-ring {
  opacity: 0.35;
}

.wms-chat-panel {
  position: fixed;
  bottom: 6.5rem;
  right: 1.25rem;
  width: min(calc(100vw - 2.5rem), 400px);
  height: min(72vh, 640px);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(160, 98, 46, 0.22);
  border-radius: 20px;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(160, 98, 46, 0.08), transparent 55%),
    linear-gradient(165deg, #1e1c1a 0%, #141210 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 24px 64px rgba(20, 18, 16, 0.35);
  overflow: hidden;
  animation: chatPanelIn 0.35s var(--ease);
}

.wms-chat-panel[hidden] {
  display: none !important;
}

@keyframes chatPanelIn {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.wms-chat-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1rem 1rem 1.25rem;
  border-bottom: 1px solid rgba(246, 243, 238, 0.08);
}

.wms-chat-header-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(160, 98, 46, 0.3);
  flex-shrink: 0;
}

.wms-chat-header-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}

.wms-chat-header-copy {
  min-width: 0;
  flex: 1;
}

.wms-chat-title {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
}

.wms-chat-subtitle {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-top: 0.15rem;
}

.wms-chat-tagline {
  font-size: 0.6875rem;
  color: rgba(246, 243, 238, 0.45);
  margin-top: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wms-chat-header-close {
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: rgba(246, 243, 238, 0.5);
  font-size: 1.25rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.wms-chat-header-close:hover {
  background: rgba(246, 243, 238, 0.08);
  color: var(--cream);
}

.wms-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(160, 98, 46, 0.35) transparent;
}

.wms-chat-msg {
  display: flex;
}

.wms-chat-msg--user { justify-content: flex-end; }
.wms-chat-msg--assistant { justify-content: flex-start; }

.wms-chat-bubble {
  max-width: 92%;
  padding: 0.75rem 1rem;
  border-radius: 16px;
  font-size: 0.875rem;
  line-height: 1.55;
}

.wms-chat-msg--user .wms-chat-bubble {
  background: var(--copper);
  color: var(--cream);
  border-bottom-right-radius: 4px;
}

.wms-chat-msg--assistant .wms-chat-bubble {
  background: rgba(246, 243, 238, 0.06);
  border: 1px solid rgba(246, 243, 238, 0.08);
  color: rgba(246, 243, 238, 0.9);
  border-bottom-left-radius: 4px;
}

.wms-chat-bubble-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 0.35rem;
}

.wms-chat-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.wms-chat-link {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  border: 1px solid rgba(160, 98, 46, 0.35);
  background: rgba(160, 98, 46, 0.12);
  color: var(--copper-light);
  transition: background 0.2s;
}

.wms-chat-link:hover {
  background: rgba(160, 98, 46, 0.22);
  color: var(--cream);
}

.wms-chat-typing {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0;
}

.wms-chat-typing span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--copper-light);
  animation: chatDot 1s ease-in-out infinite;
}

.wms-chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.wms-chat-typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes chatDot {
  0%, 100% { opacity: 0.35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-3px); }
}

.wms-chat-chips {
  border-top: 1px solid rgba(246, 243, 238, 0.08);
  padding: 0.65rem 1rem 0.5rem;
}

.wms-chat-chips-label {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(246, 243, 238, 0.35);
  padding: 0 0.25rem;
}

.wms-chat-chips-row {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.5rem 0.25rem 0.25rem;
  scrollbar-width: none;
}

.wms-chat-chips-row::-webkit-scrollbar { display: none; }

.wms-chat-chip {
  flex-shrink: 0;
  padding: 0.4rem 0.75rem;
  border-radius: 100px;
  border: 1px solid rgba(246, 243, 238, 0.12);
  background: rgba(246, 243, 238, 0.05);
  color: rgba(246, 243, 238, 0.75);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.wms-chat-chip:hover {
  border-color: rgba(160, 98, 46, 0.4);
  background: rgba(160, 98, 46, 0.12);
  color: var(--copper-light);
}

.wms-chat-form {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(246, 243, 238, 0.08);
  background: rgba(20, 18, 16, 0.5);
}

.wms-chat-input {
  flex: 1;
  min-width: 0;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(246, 243, 238, 0.12);
  background: rgba(246, 243, 238, 0.05);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.875rem;
}

.wms-chat-input::placeholder { color: rgba(246, 243, 238, 0.35); }

.wms-chat-input:focus {
  outline: none;
  border-color: rgba(160, 98, 46, 0.45);
  box-shadow: 0 0 0 1px rgba(160, 98, 46, 0.2);
}

.wms-chat-send {
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 12px;
  background: var(--copper);
  color: var(--cream);
  font-size: 1.125rem;
  cursor: pointer;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.wms-chat-send:hover { opacity: 0.9; }

.wms-chat-disclaimer {
  font-size: 0.625rem;
  color: rgba(246, 243, 238, 0.3);
  text-align: center;
  padding: 0 1rem 0.75rem;
}

/* Section progress rail */
.section-progress {
  position: fixed;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.section-progress-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.35;
  transition: opacity 0.3s;
}

.section-progress-item:hover,
.section-progress-item.active { opacity: 1; }

.section-progress-num {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
  width: 1.25rem;
}

.section-progress-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.3s, transform 0.3s;
  white-space: nowrap;
}

.section-progress-item:hover .section-progress-label,
.section-progress-item.active .section-progress-label {
  opacity: 1;
  transform: translateX(0);
}

/* Now strip */
.now-strip {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) 1.5rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.now-strip.show {
  opacity: 1;
  transform: translateY(0);
}

.now-strip-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.85rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.now-strip-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
}

.now-strip-track {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.now-strip-sep { color: var(--muted); }

/* Press row */
.press-row {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--cream-dark);
}

.press-row-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem var(--pad);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.press-row-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  flex-shrink: 0;
}

.press-row-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
}

.press-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.press-item strong {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
}

.press-item span {
  font-size: 0.75rem;
  color: var(--muted);
}

.press-link {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  transition: opacity 0.3s;
}

.press-link:hover { opacity: 0.75; }

.press-link strong { font-size: 0.8125rem; font-weight: 600; color: var(--ink); }
.press-link span { font-size: 0.75rem; color: var(--muted); }

/* Service filters */
.service-filters {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.service-filter {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  border-radius: 100px;
  border: 1px solid var(--border-light);
  background: transparent;
  color: rgba(246, 243, 238, 0.55);
  cursor: pointer;
  transition: all 0.3s;
}

.service-filter.active,
.service-filter:hover {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--cream);
}

.service-core-badge {
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper-light);
  vertical-align: middle;
}

/* Mobile progress */
.mobile-progress {
  display: none;
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 850;
  gap: 0.35rem;
  padding: 0.5rem 0.75rem;
  background: rgba(246, 243, 238, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 100px;
  max-width: calc(100vw - 2rem);
  overflow-x: auto;
}

.mobile-progress-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  transition: background 0.3s, transform 0.3s;
}

.mobile-progress-dot.active {
  background: var(--copper);
  transform: scale(1.35);
}

/* Featured testimonial */
.testimonial-featured {
  margin-bottom: 2.5rem;
}

.testimonial-featured-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1rem;
}

.testimonial-featured-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.testimonial-featured-card blockquote {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 1rem 0 1.5rem;
}

.t-avatar--lg {
  width: 56px;
  height: 56px;
  font-size: 0.875rem;
}

.info-card a {
  color: var(--copper);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}

.info-card a:hover { color: var(--ink); }

/* Research spotlight */
.research-spotlight .section-meta .section-num {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.research-layout {
  display: grid;
  gap: 2.5rem;
}

.research-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.75rem;
}

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

.research-card {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.research-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.research-card p {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* Case studies */
.case-studies {
  margin-bottom: 3rem;
}

.case-studies-header {
  margin-bottom: 1.5rem;
}

.case-studies-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.case-studies-sub {
  font-size: 0.9375rem;
  color: var(--muted);
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.case-study {
  padding: 1.5rem;
  background: var(--dark-card);
  border: 1px solid var(--border-light);
  border-radius: 8px;
}

.case-study-title {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1rem;
}

.case-study-steps {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.case-study-steps dt {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 0.2rem;
}

.case-study-steps dd {
  font-size: 0.8125rem;
  color: rgba(246, 243, 238, 0.75);
  line-height: 1.55;
}

.case-study-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.case-study-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--border-light);
  border-radius: 100px;
  color: rgba(246, 243, 238, 0.6);
}

/* Venture actions */
.venture-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.venture-inquiry {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--copper-light);
  background: none;
  border: 1px solid rgba(196, 131, 74, 0.35);
  border-radius: 100px;
  padding: 0.65rem 1rem;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.venture-inquiry:hover {
  background: var(--copper);
  color: var(--cream);
  border-color: var(--copper);
}

/* Gallery stories */
.gallery-stories {
  margin-bottom: 2.5rem;
}

.gallery-stories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-story {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.gallery-story-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.gallery-story-copy {
  padding: 1rem;
}

.gallery-story-beat {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.35rem;
}

.gallery-story-copy p {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* Testimonial avatars */
.t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

/* Article enhancements */
.article-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
}

.article-card-read {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.article-reader-time {
  font-size: 0.75rem;
  color: var(--muted);
}

.article-reader-time::before {
  content: '·';
  margin: 0 0.5rem;
}

.article-reader-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.article-share-btn {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.6rem 1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--white);
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.article-share-btn:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.article-share-btn--linkedin {
  display: inline-flex;
  align-items: center;
}

/* Deep link highlight */
.highlight-flash {
  animation: highlightFlash 2s var(--ease);
}

@keyframes highlightFlash {
  0%, 100% { box-shadow: none; }
  20%, 60% { box-shadow: 0 0 0 2px var(--copper), 0 0 24px rgba(160, 98, 46, 0.25); }
}

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

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

/* Responsive */
@media (max-width: 1024px) {
  .section-progress { display: none; }
  .case-studies-grid { grid-template-columns: 1fr; }
  .gallery-stories-grid { grid-template-columns: repeat(2, 1fr); }
  .research-grid { grid-template-columns: 1fr; }
  .ventures-grid { grid-template-columns: 1fr; }
  .hero-layout { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; }
  .hero-portrait { width: min(300px, 70vw); }
  .hero-creds { padding-bottom: 0; }
  .hero-scroll-hint { display: none; }
  .about-layout { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-cell--stat:nth-child(1) { grid-column: 1; grid-row: 1; }
  .bento-cell--stat:nth-child(2) { grid-column: 2; grid-row: 1; }
  .bento-cell--wide { grid-column: 1 / 3; grid-row: 2; }
  .bento-cell--check { grid-column: 1 / 3; grid-row: 3; }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .menu-btn { display: flex; }
  .mobile-progress { display: flex; }

  .service-trigger {
    grid-template-columns: 40px 1fr auto;
    gap: 1rem;
  }

  .service-panel-inner {
    padding-left: 0;
  }

  .exp-item {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .work-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento-cell--stat:nth-child(1),
  .bento-cell--stat:nth-child(2),
  .bento-cell--wide,
  .bento-cell--check { grid-column: 1; grid-row: auto; }

  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-stories-grid { grid-template-columns: 1fr; }
  .press-row-inner { flex-direction: column; align-items: flex-start; }
  .now-strip-track { font-size: 0.8125rem; }
  .testimonial-track { min-height: 380px; }
  .t-dots { display: none; }

  .footer-top, .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .wms-chat-hint { display: none; }
  .wms-chat-panel {
    right: 1rem;
    bottom: 6rem;
    width: calc(100vw - 2rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wms-chat-launcher-ring,
  .wms-chat-typing span,
  .scroll-indicator::after {
    animation: none;
  }

  .wms-chat-panel {
    animation: none;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .anim, .reveal, .exp-item { opacity: 1; transform: none; }
}
