:root {
  --void: #05050d;
  --deep: #0a0a16;
  --umber: #0e0b08;
  --cream: #ddd0b4;
  --bone: #f0e8d8;
  --stone: #8a8070;
  --sage: #6a7a5a;
  --ice: #a8c4dc;
  --ink: #f5eee3;
  --dim: rgba(221, 208, 180, 0.18);
  --line: rgba(221, 208, 180, 0.1);
  --line-strong: rgba(221, 208, 180, 0.22);
  --surface: rgba(10, 10, 22, 0.86);
  --surface-soft: rgba(12, 12, 24, 0.62);
  --surface-strong: rgba(16, 16, 30, 0.96);
  --fd: "Cormorant Garamond", Georgia, serif;
  --fb: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  background: var(--void);
  font-family: var(--fb);
}

body.shell-page {
  min-height: 100vh;
  overflow-x: hidden;
  cursor: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(168, 196, 220, 0.08), transparent 28%),
    radial-gradient(circle at 82% 6%, rgba(221, 208, 180, 0.06), transparent 34%),
    linear-gradient(180deg, #06060f 0%, #05050d 36%, #080813 100%);
}

body.shell-page a {
  color: inherit;
  text-decoration: none;
}

body.shell-page img {
  display: block;
  max-width: 100%;
}

body.shell-page button,
body.shell-page input,
body.shell-page select,
body.shell-page textarea {
  font: inherit;
  color: inherit;
  cursor: none;
}

[hidden] {
  display: none !important;
}

body.shell-page #particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}

body.shell-page #cursor,
body.shell-page #cursor-ring {
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

body.shell-page #cursor {
  z-index: 9999;
  width: 5px;
  height: 5px;
  background: var(--cream);
  transition: width 0.2s var(--ease), height 0.2s var(--ease), opacity 0.2s;
}

body.shell-page #cursor-ring {
  z-index: 9998;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(221, 208, 180, 0.24);
  transition: width 0.28s var(--ease), height 0.28s var(--ease), border-color 0.28s;
}

body.shell-page.cursor-hover #cursor {
  width: 10px;
  height: 10px;
}

body.shell-page.cursor-hover #cursor-ring {
  width: 56px;
  height: 56px;
  border-color: rgba(221, 208, 180, 0.4);
}

body.shell-page #navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 56px;
  height: 76px;
  transition: background 0.35s ease, border-color 0.35s ease;
}

body.shell-page #navbar.scrolled {
  background: rgba(5, 5, 13, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(221, 208, 180, 0.08);
}

body.shell-page .shell-nav-inner {
  position: relative;
  width: 100%;
  max-width: 1320px;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

body.shell-page .shell-brand {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--fd);
  font-size: 14px;
  letter-spacing: 5px;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 2;
}

body.shell-page .shell-brand-mark {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(221, 208, 180, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
  font-size: 15px;
  transition: background 0.25s ease, color 0.25s ease;
}

body.shell-page .shell-brand:hover .shell-brand-mark {
  background: var(--cream);
  color: var(--void);
}

body.shell-page .shell-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 42px;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

body.shell-page .shell-nav-actions {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  gap: 16px;
  position: relative;
  z-index: 1;
}

body.shell-page .shell-links a {
  position: relative;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(221, 208, 180, 0.34);
  padding-bottom: 3px;
  transition: color 0.25s ease;
}

body.shell-page .shell-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--cream);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

body.shell-page .shell-links a:hover,
body.shell-page .shell-links a.active {
  color: var(--cream);
}

body.shell-page .shell-links a:hover::after,
body.shell-page .shell-links a.active::after {
  transform: scaleX(1);
}

body.shell-page .shell-cta,
body.shell-page .shell-button,
body.shell-page .shell-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 46px;
  padding: 13px 24px;
  border: 1px solid var(--line-strong);
  text-transform: uppercase;
  letter-spacing: 2.6px;
  font-size: 9px;
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, gap 0.25s ease;
}

body.shell-page .shell-cta,
body.shell-page .shell-button {
  color: var(--cream);
}

body.shell-page .shell-cta:hover,
body.shell-page .shell-button:hover {
  gap: 18px;
  background: var(--cream);
  color: var(--void);
  border-color: var(--cream);
}

body.shell-page .shell-secondary-button {
  color: rgba(221, 208, 180, 0.65);
  border-color: var(--line);
}

body.shell-page .shell-secondary-button:hover {
  color: var(--cream);
  border-color: var(--line-strong);
}

body.shell-page .shell-call-button {
  background: var(--bone);
  color: var(--void);
  border-color: var(--bone);
}

body.shell-page .shell-call-button:hover {
  background: var(--cream);
  color: var(--void);
  border-color: var(--cream);
}

body.shell-page .shell-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 0;
}

body.shell-page .shell-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--cream);
}

body.shell-page .nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(5, 5, 13, 0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  text-align: center;
}

body.shell-page .nav-overlay.open {
  display: flex;
}

body.shell-page .nav-overlay a {
  font-family: var(--fd);
  font-size: clamp(42px, 8vw, 68px);
  font-weight: 300;
}

body.shell-page .overlay-close {
  position: absolute;
  top: 24px;
  right: 24px;
  border: 0;
  background: transparent;
  color: rgba(221, 208, 180, 0.4);
  font-size: 22px;
}

body.shell-page .shell-main {
  position: relative;
  z-index: 2;
}

body.shell-page .shell-section {
  width: min(1320px, calc(100% - 120px));
  margin: 0 auto;
}

body.shell-page .page-hero {
  position: relative;
  width: min(1320px, calc(100% - 120px));
  margin: 0 auto;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: 160px 0 80px;
}

body.shell-page .page-hero::before {
  content: "";
  position: absolute;
  inset: 54px 0 0;
  background-image:
    linear-gradient(to top, rgba(5, 5, 13, 0.96), rgba(5, 5, 13, 0.38) 50%, rgba(5, 5, 13, 0.16)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: saturate(0.62) brightness(0.68);
}

body.shell-page .page-hero::after {
  content: "";
  position: absolute;
  inset: 54px 0 0;
  background:
    radial-gradient(circle at 20% 22%, rgba(168, 196, 220, 0.18), transparent 28%),
    radial-gradient(circle at 76% 8%, rgba(221, 208, 180, 0.14), transparent 30%);
  pointer-events: none;
}

body.shell-page .page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 42px 44px;
}

body.shell-page .shell-kicker {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(221, 208, 180, 0.52);
  margin-bottom: 18px;
}

body.shell-page .page-title {
  font-family: var(--fd);
  font-size: clamp(54px, 8vw, 112px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -2.5px;
  margin: 0;
}

body.shell-page .page-title em,
body.shell-page .shell-title em,
body.shell-page .panel-title em {
  color: var(--bone);
  font-style: italic;
}

body.shell-page .page-subtitle,
body.shell-page .shell-copy {
  font-size: 14px;
  line-height: 2;
  color: rgba(221, 208, 180, 0.66);
}

body.shell-page .page-subtitle {
  margin-top: 22px;
  max-width: 560px;
}

body.shell-page .page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

body.shell-page .shell-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 28px;
}

body.shell-page .shell-panel,
body.shell-page .shell-card,
body.shell-page .project-card,
body.shell-page .quote-panel {
  position: relative;
  background: linear-gradient(180deg, rgba(14, 14, 28, 0.84), rgba(7, 7, 16, 0.96));
  border: 1px solid rgba(221, 208, 180, 0.12);
  overflow: hidden;
}

body.shell-page .shell-panel::before,
body.shell-page .shell-card::before,
body.shell-page .project-card::before,
body.shell-page .quote-panel::before,
.intake-shell::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(221, 208, 180, 0.24), transparent);
}

body.shell-page .shell-panel,
body.shell-page .quote-panel {
  padding: 34px;
}

body.shell-page .shell-title,
body.shell-page .panel-title {
  font-family: var(--fd);
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -1px;
  margin: 0 0 18px;
}

body.shell-page .shell-copy + .shell-copy {
  margin-top: 16px;
}

body.shell-page .shell-stack {
  display: grid;
  gap: 18px;
}

body.shell-page .story-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

body.shell-page .story-item {
  display: grid;
  gap: 5px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

body.shell-page .story-item:first-child {
  border-top: 0;
  padding-top: 0;
}

body.shell-page .story-label {
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(221, 208, 180, 0.42);
}

body.shell-page .story-value {
  font-family: var(--fd);
  font-size: 23px;
  color: var(--ink);
}

body.shell-page .shell-image-wrap {
  min-height: 100%;
  background: rgba(7, 7, 16, 0.9);
}

body.shell-page .shell-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(0.65) brightness(0.82);
}

body.shell-page .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

body.shell-page .stat-card {
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

body.shell-page .stat-value {
  font-family: var(--fd);
  font-size: 34px;
  color: var(--bone);
}

body.shell-page .stat-label {
  margin-top: 4px;
  font-size: 9px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: rgba(221, 208, 180, 0.42);
}

body.shell-page .stat-copy {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(221, 208, 180, 0.6);
}

body.shell-page .principles-grid,
body.shell-page .project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

body.shell-page .shell-card {
  padding: 26px;
}

body.shell-page .card-index {
  font-family: var(--fd);
  font-size: 38px;
  color: rgba(221, 208, 180, 0.12);
}

body.shell-page .card-title {
  margin-top: 6px;
  font-family: var(--fd);
  font-size: 24px;
  color: var(--ink);
}

body.shell-page .card-copy {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(221, 208, 180, 0.62);
}

body.shell-page .project-grid {
  margin-top: 26px;
}

body.shell-page .project-card {
  display: grid;
  grid-template-rows: 260px auto;
}

body.shell-page .project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.74) brightness(0.72);
}

body.shell-page .project-body {
  padding: 24px;
}

body.shell-page .project-meta {
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(221, 208, 180, 0.46);
}

body.shell-page .project-name {
  margin-top: 10px;
  font-family: var(--fd);
  font-size: 30px;
  color: var(--ink);
}

body.shell-page .project-desc {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(221, 208, 180, 0.62);
}

body.shell-page .timeline {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

body.shell-page .timeline-item {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

body.shell-page .timeline-item:first-child {
  border-top: 0;
  padding-top: 0;
}

body.shell-page .timeline-year {
  font-family: var(--fd);
  font-size: 34px;
  color: rgba(221, 208, 180, 0.22);
}

body.shell-page .timeline-location {
  margin-top: 4px;
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(221, 208, 180, 0.42);
}

body.shell-page .timeline-title {
  font-family: var(--fd);
  font-size: 28px;
  color: var(--ink);
}

body.shell-page .timeline-copy {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(221, 208, 180, 0.62);
}

body.shell-page .timeline-tag {
  display: inline-flex;
  margin-top: 14px;
  font-size: 8px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: rgba(168, 196, 220, 0.78);
}

body.shell-page .quote-panel {
  margin-top: 28px;
}

body.shell-page .quote-copy {
  font-family: var(--fd);
  font-size: clamp(26px, 3.5vw, 42px);
  line-height: 1.05;
  color: var(--bone);
}

body.shell-page .quote-source {
  margin-top: 18px;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(221, 208, 180, 0.42);
}

body.shell-page .shell-footer {
  width: min(1320px, calc(100% - 120px));
  margin: 88px auto 0;
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
  z-index: 2;
}

body.shell-page .shell-footer-brand {
  font-family: var(--fd);
  font-size: 13px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(221, 208, 180, 0.56);
}

body.shell-page .shell-footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

body.shell-page .shell-footer-links a {
  font-size: 8px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(221, 208, 180, 0.32);
}

body.shell-page .shell-footer-links a:hover {
  color: var(--cream);
}

body.shell-page .shell-footer-copy {
  font-size: 10px;
  color: rgba(221, 208, 180, 0.26);
}

body.shell-page .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

body.shell-page .reveal.visible {
  opacity: 1;
  transform: none;
}

body.shell-page .d1 {
  transition-delay: 0.08s;
}

body.shell-page .d2 {
  transition-delay: 0.16s;
}

body.shell-page .d3 {
  transition-delay: 0.24s;
}

.intake-shell {
  position: relative;
  margin-top: 42px;
  padding: 34px;
  border: 1px solid rgba(221, 208, 180, 0.16);
  background:
    radial-gradient(circle at top right, rgba(168, 196, 220, 0.14), transparent 24%),
    radial-gradient(circle at bottom left, rgba(221, 208, 180, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(18, 18, 34, 0.94), rgba(7, 7, 16, 0.985));
  text-align: left;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.intake-header {
  display: grid;
  gap: 14px;
}

.intake-kicker {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(221, 208, 180, 0.48);
}

.intake-title {
  margin: 0;
  font-family: var(--fd);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 300;
  line-height: 0.98;
  color: var(--bone);
}

.intake-copy {
  max-width: 720px;
  font-size: 14px;
  line-height: 2;
  color: rgba(221, 208, 180, 0.68);
}

.intake-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.intake-primary-link,
.intake-toggle,
.intake-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 13px 22px;
  border: 1px solid rgba(221, 208, 180, 0.2);
  background: transparent;
  color: var(--cream);
  font-size: 9px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, gap 0.25s ease;
}

.intake-primary-link {
  color: rgba(221, 208, 180, 0.8);
  border-color: rgba(221, 208, 180, 0.16);
}

.intake-primary-link:hover,
.intake-action:hover {
  gap: 16px;
  background: var(--cream);
  color: var(--void);
  border-color: var(--cream);
}

.intake-toggle {
  color: rgba(221, 208, 180, 0.72);
}

.intake-toggle:hover,
.intake-toggle[aria-expanded="true"] {
  color: var(--cream);
  border-color: rgba(221, 208, 180, 0.36);
}

.intake-lead-action {
  background: var(--bone);
  color: var(--void);
  border-color: var(--bone);
}

.intake-lead-action:hover {
  gap: 16px;
  background: var(--cream);
  color: var(--void);
  border-color: var(--cream);
}

.intake-toggle.intake-lead-action[aria-expanded="true"] {
  background: rgba(240, 232, 216, 0.14);
  color: var(--bone);
  border-color: rgba(240, 232, 216, 0.26);
}

.intake-call-panel {
  margin-top: 18px;
  padding: 24px;
  border: 1px solid rgba(221, 208, 180, 0.16);
  background:
    linear-gradient(180deg, rgba(24, 24, 40, 0.92), rgba(10, 10, 18, 0.96));
  box-shadow: inset 0 1px 0 rgba(240, 232, 216, 0.08);
}

.intake-call-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.intake-call-label {
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(221, 208, 180, 0.42);
}

.intake-call-price {
  font-family: var(--fd);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 0.95;
  color: var(--bone);
}

.intake-call-meta {
  margin-top: 6px;
  font-size: 10px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: rgba(168, 196, 220, 0.72);
}

.intake-call-copy {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(221, 208, 180, 0.66);
}

.intake-call-list {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.intake-call-list div {
  font-size: 12px;
  line-height: 1.8;
  color: rgba(221, 208, 180, 0.68);
}

.intake-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
  margin-top: 28px;
}

.intake-form-card,
.intake-meta {
  position: relative;
  border: 1px solid rgba(221, 208, 180, 0.16);
  background: linear-gradient(180deg, rgba(12, 12, 22, 0.96), rgba(8, 8, 16, 0.98));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.intake-form-card {
  overflow: hidden;
}

.intake-form-lead {
  display: grid;
  gap: 10px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid rgba(221, 208, 180, 0.08);
  background: linear-gradient(180deg, rgba(240, 232, 216, 0.035), rgba(255, 255, 255, 0));
}

.intake-form-kicker {
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(168, 196, 220, 0.8);
}

.intake-form-summary {
  max-width: 620px;
  font-size: 13px;
  line-height: 1.85;
  color: rgba(221, 208, 180, 0.72);
}

.intake-form {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.intake-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.intake-group {
  display: grid;
  gap: 7px;
}

.intake-label {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(221, 208, 180, 0.62);
}

.intake-input,
.intake-select,
.intake-textarea {
  width: 100%;
  border: 1px solid rgba(221, 208, 180, 0.26);
  background: linear-gradient(180deg, rgba(10, 10, 18, 0.96), rgba(16, 16, 30, 0.94));
  padding: 14px 16px;
  color: var(--bone);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(240, 232, 216, 0.04);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.intake-input::placeholder,
.intake-textarea::placeholder {
  color: rgba(221, 208, 180, 0.38);
}

.intake-input:focus,
.intake-select:focus,
.intake-textarea:focus {
  border-color: rgba(240, 232, 216, 0.52);
  background: linear-gradient(180deg, rgba(12, 12, 22, 0.98), rgba(18, 18, 32, 0.98));
  box-shadow: 0 0 0 1px rgba(168, 196, 220, 0.18);
}

.intake-select option {
  background: #0b0b15;
}

.intake-textarea {
  min-height: 180px;
  resize: vertical;
}

.intake-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 14px 24px;
  border: 1px solid rgba(221, 208, 180, 0.24);
  background: var(--bone);
  color: var(--void);
  font-size: 9px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
  transition: gap 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.intake-submit:hover {
  gap: 18px;
  background: var(--cream);
}

.intake-note {
  padding-top: 2px;
  font-size: 11px;
  line-height: 1.8;
  color: rgba(221, 208, 180, 0.58);
}

.intake-mail-note {
  color: rgba(168, 196, 220, 0.86);
}

.intake-meta {
  padding: 24px;
  display: grid;
  gap: 14px;
  align-content: start;
}

.intake-meta-item {
  padding: 18px 0;
  border-top: 1px solid rgba(221, 208, 180, 0.1);
}

.intake-meta-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.intake-meta-label {
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(221, 208, 180, 0.4);
}

.intake-meta-value {
  margin-top: 7px;
  font-family: var(--fd);
  font-size: 24px;
  color: var(--bone);
}

.intake-meta-copy {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.8;
  color: rgba(221, 208, 180, 0.6);
}

#hero-call-trigger {
  scroll-margin-top: 120px;
}

body.shell-page .project-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

body.shell-page .project-toolbar-actions,
body.shell-page .project-toolbar-meta,
body.shell-page .dashboard-action-stack,
body.shell-page .dashboard-browser-actions {
  display: grid;
  gap: 14px;
}

body.shell-page .filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

body.shell-page .filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(221, 208, 180, 0.16);
  background: rgba(255, 255, 255, 0.01);
  color: rgba(221, 208, 180, 0.68);
  font-size: 8px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

body.shell-page .filter-chip.active,
body.shell-page .filter-chip:hover {
  background: var(--bone);
  color: var(--void);
  border-color: var(--bone);
}

body.shell-page .project-count {
  font-family: var(--fd);
  font-size: 28px;
  color: var(--bone);
  text-align: right;
}

body.shell-page .project-storage-note,
body.shell-page .dashboard-state,
body.shell-page .dashboard-inline-meta {
  font-size: 12px;
  line-height: 1.8;
  color: rgba(221, 208, 180, 0.62);
}

body.shell-page .project-empty {
  margin-top: 24px;
  padding: 28px 32px;
  text-align: center;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(221, 208, 180, 0.66);
}

body.shell-page .project-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 10px;
  margin-right: 10px;
  border: 1px solid rgba(221, 208, 180, 0.16);
  font-size: 7px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

body.shell-page .project-status-current {
  background: rgba(168, 196, 220, 0.14);
  color: rgba(168, 196, 220, 0.92);
}

body.shell-page .project-status-upcoming {
  background: rgba(106, 122, 90, 0.18);
  color: rgba(205, 219, 185, 0.9);
}

body.shell-page .project-status-past {
  background: rgba(221, 208, 180, 0.1);
  color: rgba(221, 208, 180, 0.82);
}

body.shell-page .project-status-archived {
  background: rgba(138, 128, 112, 0.16);
  color: rgba(221, 208, 180, 0.58);
}

body.shell-page .project-card-placeholder,
body.shell-page .dashboard-card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background:
    radial-gradient(circle at 22% 20%, rgba(168, 196, 220, 0.2), transparent 26%),
    radial-gradient(circle at 78% 18%, rgba(221, 208, 180, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(16, 16, 30, 0.94), rgba(8, 8, 18, 0.98));
}

body.shell-page .project-card-placeholder span,
body.shell-page .dashboard-card-placeholder span {
  font-family: var(--fd);
  font-size: 56px;
  color: rgba(240, 232, 216, 0.32);
}

body.shell-page .timeline-actions,
body.shell-page .timeline-meta-row,
body.shell-page .timeline-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

body.shell-page .timeline-actions {
  margin-top: 18px;
}

body.shell-page .timeline-actions a,
body.shell-page .timeline-tag-pill,
body.shell-page .dashboard-chip {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 12px;
  border: 1px solid rgba(221, 208, 180, 0.12);
  color: rgba(221, 208, 180, 0.68);
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

body.shell-page .timeline-actions a:hover {
  color: var(--void);
  background: var(--cream);
  border-color: var(--cream);
}

body.shell-page .timeline-copy-tight {
  margin-top: 10px;
  color: rgba(168, 196, 220, 0.72);
}

body.shell-page .timeline-meta-row {
  margin-top: 16px;
}

body.shell-page .timeline-tag-list {
  margin-top: 12px;
}

body.shell-page .dashboard-layout {
  align-items: start;
}

body.shell-page .dashboard-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

body.shell-page .dashboard-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

body.shell-page .dashboard-field-wide {
  grid-column: 1 / -1;
}

body.shell-page .dashboard-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(221, 208, 180, 0.68);
}

body.shell-page .dashboard-checkbox input {
  width: 16px;
  height: 16px;
}

body.shell-page .dashboard-textarea-small,
body.shell-page .dashboard-preview {
  min-height: 120px;
}

body.shell-page .dashboard-pre {
  margin: 18px 0 0;
  padding: 18px;
  border: 1px solid rgba(221, 208, 180, 0.12);
  background: rgba(8, 8, 16, 0.98);
  color: rgba(221, 208, 180, 0.72);
  font-size: 12px;
  line-height: 1.8;
  white-space: pre-wrap;
  word-break: break-word;
}

body.shell-page .dashboard-micro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

body.shell-page .dashboard-metric {
  padding: 16px;
  border: 1px solid rgba(221, 208, 180, 0.12);
  background: rgba(255, 255, 255, 0.01);
}

body.shell-page .dashboard-browser-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 26px;
}

body.shell-page .dashboard-search {
  min-width: 320px;
}

body.shell-page .dashboard-list {
  display: grid;
  gap: 18px;
}

body.shell-page .dashboard-card {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  border: 1px solid rgba(221, 208, 180, 0.12);
  background: linear-gradient(180deg, rgba(14, 14, 28, 0.84), rgba(7, 7, 16, 0.96));
  overflow: hidden;
}

body.shell-page .dashboard-card-media {
  min-height: 220px;
  background: rgba(8, 8, 18, 0.98);
}

body.shell-page .dashboard-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) brightness(0.78);
}

body.shell-page .dashboard-card-body {
  padding: 24px;
}

body.shell-page .dashboard-card-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

body.shell-page .dashboard-card-copy {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(221, 208, 180, 0.66);
}

body.shell-page .dashboard-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

body.shell-page .dashboard-inline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(221, 208, 180, 0.14);
  background: transparent;
  color: rgba(221, 208, 180, 0.72);
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

body.shell-page .dashboard-inline-button:hover {
  background: var(--cream);
  color: var(--void);
  border-color: var(--cream);
}

body.shell-page .dashboard-inline-button.danger:hover {
  background: rgba(168, 196, 220, 0.82);
  border-color: rgba(168, 196, 220, 0.82);
}

body.shell-page .dashboard-card-footer {
  margin-top: 18px;
}

body.shell-page .dashboard-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 1100px) {
  body.shell-page #navbar {
    padding: 0 28px;
  }

  body.shell-page .shell-section,
  body.shell-page .page-hero,
  body.shell-page .shell-footer {
    width: min(100% - 56px, 1320px);
  }

  body.shell-page .shell-grid,
  body.shell-page .principles-grid,
  body.shell-page .project-grid,
  body.shell-page .stats-grid,
  .intake-grid {
    grid-template-columns: 1fr;
  }

  body.shell-page .project-toolbar,
  body.shell-page .dashboard-browser-head,
  body.shell-page .dashboard-card {
    grid-template-columns: 1fr;
  }

  body.shell-page .project-count {
    text-align: left;
  }

  body.shell-page .filter-bar {
    justify-content: flex-start;
  }

  body.shell-page .dashboard-search {
    min-width: 0;
  }

  body.shell-page .shell-image-wrap img {
    min-height: 380px;
  }
}

@media (max-width: 980px) {
  body.shell-page #navbar {
    padding: 0 22px;
  }

  body.shell-page .shell-links,
  body.shell-page .shell-cta {
    display: none;
  }

  body.shell-page .shell-hamburger {
    display: flex;
  }
}

@media (max-width: 780px) {
  body.shell-page {
    cursor: auto;
  }

  body.shell-page #cursor,
  body.shell-page #cursor-ring {
    display: none;
  }

  body.shell-page .shell-links,
  body.shell-page .shell-cta {
    display: none;
  }

  body.shell-page .shell-hamburger {
    display: flex;
  }

  body.shell-page #navbar {
    padding: 0 18px;
  }

  body.shell-page .shell-section,
  body.shell-page .page-hero,
  body.shell-page .shell-footer {
    width: calc(100% - 36px);
  }

  body.shell-page .page-hero {
    min-height: auto;
    padding: 124px 0 36px;
  }

  body.shell-page .page-hero::before,
  body.shell-page .page-hero::after {
    inset: 34px 0 0;
  }

  body.shell-page .page-hero-inner {
    padding: 0 18px 20px;
  }

  body.shell-page .timeline-item {
    grid-template-columns: 1fr;
  }

  body.shell-page .dashboard-form-grid,
  body.shell-page .dashboard-micro-grid {
    grid-template-columns: 1fr;
  }

  body.shell-page .dashboard-card-body {
    padding: 18px;
  }

  body.shell-page .dashboard-card-head {
    grid-template-columns: 1fr;
  }

  body.shell-page .dashboard-card-actions {
    justify-content: flex-start;
  }

  body.shell-page .shell-footer {
    flex-direction: column;
    text-align: center;
    padding-bottom: 32px;
  }

  .intake-shell,
  .intake-meta,
  .intake-call-panel {
    padding: 18px;
  }

  .intake-form-card {
    padding: 0;
  }

  .intake-form {
    padding: 18px;
  }

  .intake-form-lead {
    padding: 18px 18px 16px;
  }

  .intake-form-grid,
  .intake-call-grid {
    grid-template-columns: 1fr;
  }
}
