
/* ──────────────────────────────────────────
   SHRINK SECTION (kept for CSS completeness)
────────────────────────────────────────── */
#shrink-section {
  background: var(--cream);
  padding: 100px 48px 120px;
  overflow: hidden;
}

#shrink-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5.5vw, 80px);
  color: var(--text-dk);
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 48px;
  max-width: 900px;
}

#shrink-media-wrap {
  width: 100%;
  height: 500px;
  background: #0d0d0d;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transform-origin: center top;
}

#shrink-media-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.shrink-media-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}

.shrink-below {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 64px;
}

.shrink-col-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 2.8vw, 40px);
  color: var(--text-dk);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.shrink-col-body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: var(--text-md);
  line-height: 1.72;
  margin-bottom: 28px;
}

.arrow-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dk);
  text-decoration: none;
  cursor: none;
}

.arrow-cta .arrow-circle {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--text-dk);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
}

.arrow-cta:hover .arrow-circle {
  background: var(--text-dk);
  color: #fff;
  transform: translateX(4px);
}

.shrink-list { list-style: none; }

.shrink-list li {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-md);
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.shrink-list li::before { content: '·'; opacity: 0.5; }

/* ──────────────────────────────────────────
   ABOUT
────────────────────────────────────────── */
#about {
  height: 400vh;
  background: #0a0a0a;
  position: relative;
}

.ethos-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #0a0a0a;
}

.ethos-panel {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: #D8D4CC;
  z-index: 1;
}

.ethos-panel-left  { left: 0;  transform: translateX(-100%); }
.ethos-panel-right { right: 0; transform: translateX(100%);  }

.ethos-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  display: block;
}

.ethos-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: 45fr 55fr;
  column-gap: 60px;
  padding: 100px 80px;
  align-items: center;
}

.ethos-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ethos-label {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888888;
  display: block;
}

.ethos-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 56px);
  color: #1a1a1a;
  letter-spacing: -0.025em;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0;
}

.ethos-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.ethos-rule {
  height: 1px;
  background: #cccccc;
  width: 100%;
}

.ethos-body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: #333333;
  line-height: 1.72;
  max-width: 580px;
  margin: 0;
}

.ethos-cta-btn { align-self: flex-start; }

@media (max-width: 768px) {
  .ethos-content {
    grid-template-columns: 1fr;
    padding: 60px 32px;
    gap: 40px;
    align-content: center;
  }
}

/* ──────────────────────────────────────────
   SERVICES LIST
────────────────────────────────────────── */
#services-list {
  background: var(--cream);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}


#sl-bottom-shadow {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 500px;
  background: linear-gradient(to top, #111111 0%, #111111 30%, transparent 100%);
  opacity: 0;
  pointer-events: none;
  z-index: 99;
  display: none;
}

#sl-dots-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

#sl-dots-canvas canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

/* single block — JS sets position:absolute + top, animates as one unit */
.sl-group {
  width: 100%;
  left: 0;
  text-align: center;
  box-sizing: border-box;
  padding: 0 8vw;
  position: relative;
  z-index: 1;
}

.sl-label {
  font-family: 'Courier Prime', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-md);
  display: block;
  text-align: center;
}

.sl-headline {
  font-family: 'Switzer', 'Barlow', sans-serif;
  font-weight: 550;
  font-size: 63px;
  line-height: 1.00;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #373737;
  text-align: center;
  margin: 12px 0 16px;
}

.sl-sub {
  font-family: 'Satoshi', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 15px);
  color: var(--text-md);
  line-height: 1.10;
  max-width: 600px;
  margin: 0 auto 320px;
  text-align: center;
}

.focus-list {
  width: 100%;
}

.focus-item {
  padding: 1px 0;
  border-bottom: 1px solid rgba(0,0,0,0.09);
  text-align: center;
  cursor: none;
}

.focus-item:first-child { border-top: 1px solid rgba(0,0,0,0.09); }

/* Frame wraps only the text so corners hug the content width */
.fi-frame {
  display: inline-block;
  position: relative;
  padding: 6px 24px;
  text-align: center;
}

/* Default color — all items #111111 */
.focus-item .fi-frame span[data-i] { color: #373737; }

.fi-frame span[data-i] {
  font-family: 'Switzer', 'Barlow', sans-serif;
  font-weight: 550;
  font-size: clamp(28px, 4.8vw, 60px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  display: block;
  transition: color 0.5s ease-out;
}

/* Hovered item — full dark */
.focus-item:hover .fi-frame span[data-i] { color: #111111; }

/* Dim all siblings when list has a hover active */
.focus-list.list-hovered .focus-item:not(:hover) .fi-frame span[data-i] { color: #bbb; }

/* Subtext — fades in and rises up from below */
.fi-sub {
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  color: #666;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out, max-height 0.5s ease-out, padding 0.5s ease-out;
  text-align: center;
}

.focus-item:hover .fi-sub {
  opacity: 1;
  transform: translateY(0);
  max-height: 40px;
  padding: 6px 0 2px;
}

/* Rich subtext — service lines + buttons */
.fi-sub--rich {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out, max-height 0.5s ease-out, padding 0.5s ease-out;
  padding: 0;
  text-align: center;
}

.focus-item:hover .fi-sub--rich {
  opacity: 1;
  transform: translateY(0);
  max-height: 160px;
  padding: 8px 0 4px;
}

.fi-sub-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}

.fi-sub-list li {
  font-family: 'Satoshi', sans-serif;
  font-weight: 450;
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--text-md);
  line-height: 1.20;
  text-align: left;
}

.fi-sub-list li::before {
  content: '— ';
  opacity: 0.45;
}

.fi-sub-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.fi-btn {
  font-size: 12px;
  padding: 13px 28px;
  letter-spacing: 0.16em;
}

/* Mid-tone: readable on both cream and dark backgrounds */
#services-list .fi-btn.dark {
  color: #888888;
}
#services-list .fi-btn.dark .br-corner {
  border-color: #888888;
}

/* Bracket corners — 22px arms, 1px #555, no radius */
.fi-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fi-tl { top: 0;    left: 0;  border-top: 1px solid #555; border-left: 1px solid #555;   border-radius: 0; transform: translate(-80px, -80px); }
.fi-tr { top: 0;    right: 0; border-top: 1px solid #555; border-right: 1px solid #555;  border-radius: 0; transform: translate(80px,  -80px); }
.fi-bl { bottom: 0; left: 0;  border-bottom: 1px solid #555; border-left: 1px solid #555;  border-radius: 0; transform: translate(-80px,  80px); }
.fi-br { bottom: 0; right: 0; border-bottom: 1px solid #555; border-right: 1px solid #555; border-radius: 0; transform: translate(80px,   80px); }

.focus-item:hover .fi-corner {
  opacity: 1;
  transform: translate(0, 0);
}

.focus-item:hover .fi-tl { border-top: 2.5px solid #222; border-left: 2.5px solid #222; }
.focus-item:hover .fi-tr { border-top: 2.5px solid #222; border-right: 2.5px solid #222; }
.focus-item:hover .fi-bl { border-bottom: 2.5px solid #222; border-left: 2.5px solid #222; }
.focus-item:hover .fi-br { border-bottom: 2.5px solid #222; border-right: 2.5px solid #222; }

/* ──────────────────────────────────────────
   STATS
────────────────────────────────────────── */
#stats {
  background: var(--black);
  padding: 80px 48px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  text-align: center;
}

.stat-item {
  padding: 40px 20px;
  border-right: 1px solid rgba(255,255,255,0.05);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: clamp(42px, 5vw, 72px);
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-label {
  font-family: 'Courier Prime', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 10px;
  display: block;
}

/* ──────────────────────────────────────────
   PROBLEM → SOLUTION
────────────────────────────────────────── */
#problem-solution {
  background: #111111;
  min-height: 88vh;
  padding: 60px 48px;
  position: relative;
  z-index: 5;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#ps-stars-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

#problem-solution .ps-intro,
#problem-solution .ps-list {
  position: relative;
  z-index: 1;
}

.ps-intro {
  text-align: center;
  margin-bottom: 40px;
}

.ps-section-label {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(216,212,204,0.35);
}

.ps-list {
  width: 100%;
}

.ps-item {
  padding: 1px 0;
  text-align: center;
  cursor: none;
}

.ps-frame {
  display: inline-block;
  position: relative;
  padding: 6px 24px;
  text-align: center;
}

.ps-item .ps-frame .ps-problem {
  font-family: 'Switzer', 'Barlow', sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 3.2vw, 42px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: rgba(216,212,204,0.55);
  display: block;
  transition: color 0.5s ease-out;
}

.ps-item:hover .ps-frame .ps-problem { color: #D8D4CC; }

.ps-list.list-hovered .ps-item:not(:hover) .ps-frame .ps-problem { color: rgba(216,212,204,0.2); }

.ps-sub {
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  color: rgba(216,212,204,0.6);
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out, max-height 0.5s ease-out, padding 0.5s ease-out;
  text-align: center;
}

.ps-item:hover .ps-sub {
  opacity: 1;
  transform: translateY(0);
  max-height: 120px;
  padding: 8px 0 4px;
}

.ps-solution {
  font-family: 'Satoshi', sans-serif;
  font-weight: 450;
  font-size: clamp(15px, 1.4vw, 17px);
  color: rgba(216,212,204,0.7);
  line-height: 1.20;
  max-width: 58ch;
  margin: 0 auto 14px;
}

#problem-solution .btn-br {
  color: #D8D4CC;
}

#problem-solution .br-corner.tl,
#problem-solution .br-corner.tr,
#problem-solution .br-corner.bl,
#problem-solution .br-corner.br {
  border-color: #D8D4CC;
}

/* ──────────────────────────────────────────
   PROCESS
────────────────────────────────────────── */
#process {
  background: var(--black);
  padding: 120px 48px;
  position: relative;
}

.process-label {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  text-align: center;
  display: block;
  margin-bottom: 80px;
}

.process-line-wrap {
  position: relative;
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 64px;
}

.process-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 0;
  background: rgba(255,255,255,0.3);
}

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

.process-step { padding: 0 20px 0 0; }

.process-num {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: 80px;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.3s;
}

.process-step:hover .process-num { color: rgba(255,255,255,0.12); }

.process-step-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}

.process-step-body {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
}

.process-bottom-cta {
  margin-top: 72px;
  text-align: center;
}

/* ──────────────────────────────────────────
   CTA — teal card
────────────────────────────────────────── */
#cta {
  background: #111111;
  display: flex;
  align-items: flex-start;
  padding-top: 80px;
  min-height: 100vh;
  position: relative;
  z-index: 6;
}

.cta-left-panel {
  flex: 1;
  height: calc(100vh - 80px);
  position: relative;
  overflow: hidden;
}

#cta-blob-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* card */
.cta-card {
  width: 50%;
  height: calc(100vh - 80px);
  background: #47787E;
  border-radius: 8px 0 0 8px;
  padding: 36px 48px 32px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  overflow: hidden;
}

/* ── TOP ZONE ── */
.cta-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-shrink: 0;
}

.cta-top-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 32px;
}

.cta-headline {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0d1f20;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  line-height: 1.3;
}

.cta-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #0d1f20;
  letter-spacing: 0.06em;
  line-height: 1.7;
  max-width: 300px;
  margin: 0;
  text-transform: uppercase;
}

.cta-get-btn {
  position: relative;
  display: inline-block;
  padding: 14px 36px;
  margin-top: 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #0d1f20;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
}

.cgb-c {
  position: absolute;
  width: 14px;
  height: 14px;
}
.cgb-c.tl { top: 0; left: 0; border-top: 1px solid #0d1f20; border-left: 1px solid #0d1f20; }
.cgb-c.tr { top: 0; right: 0; border-top: 1px solid #0d1f20; border-right: 1px solid #0d1f20; }
.cgb-c.bl { bottom: 0; left: 0; border-bottom: 1px solid #0d1f20; border-left: 1px solid #0d1f20; }
.cgb-c.br { bottom: 0; right: 0; border-bottom: 1px solid #0d1f20; border-right: 1px solid #0d1f20; }

/* logo mark */
.cta-top-right {
  flex-shrink: 0;
  margin-top: -24px;
  margin-right: -24px;
}

.cta-logomark {
  width: 220px;
  height: 220px;
  object-fit: contain;
  display: block;
}

/* ── CONTACT FORM ── */
.cta-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 10px 0 16px;
}

.cta-form-row {
  display: flex;
  gap: 36px;
}

.cta-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.cta-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: rgba(13, 31, 32, 0.50);
  text-transform: uppercase;
}

.cta-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(13, 31, 32, 0.22);
  color: #0d1f20;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 0;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.25s ease;
}

.cta-input::placeholder {
  color: rgba(13, 31, 32, 0.30);
}

.cta-input:focus {
  border-bottom-color: rgba(13, 31, 32, 0.75);
}

.cta-textarea {
  resize: none;
  height: 60px;
  line-height: 1.7;
}

.cta-send-btn {
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  cursor: none;
  margin-top: 4px;
}

/* ── BOTTOM ZONE ── */
.cta-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-shrink: 0;
}

.cta-nav {
  display: flex;
  flex-direction: column;
}

.cta-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #0d1f20;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  text-decoration: none;
}

.cta-bottom-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.cta-location-block {
  display: flex;
  flex-direction: column;
}

.cta-from-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #0d1f20;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0.5rem;
}

.cta-city {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #0d1f20;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
}

.cta-legal-links {
  display: flex;
  flex-direction: column;
}

.cta-legal-links a,
.cta-legal-links span {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #0d1f20;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
  line-height: 1.8;
  text-decoration: none;
}

/* ── BOTTOM STRIP ── */
.cta-footer-strip {
  flex-shrink: 0;
  padding-top: 32px;
}

.cta-footer-rule {
  border: none;
  border-top: 1px solid rgba(13,31,32,0.2);
  margin: 0 0 16px;
}

.cta-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-footer-row span {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #0d1f20;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.5;
}

/* ──────────────────────────────────────────
   FOOTER
────────────────────────────────────────── */
#footer {
  background: var(--black);
  padding: 32px 48px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #fff;
}

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-social {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-social a {
  color: rgba(255,255,255,0.3);
  transition: color 0.3s;
  cursor: none;
  display: flex;
}

.footer-social a:hover { color: rgba(255,255,255,0.75); }

.footer-copy {
  font-family: 'Courier Prime', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.2);
  text-align: center;
}

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

.footer-links a {
  font-family: 'Courier Prime', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.3s;
  cursor: none;
}

.footer-links a:hover { color: rgba(255,255,255,0.6); }

/* ──────────────────────────────────────────
   BRAND FOOTER — embossed wordmark bar
────────────────────────────────────────── */
.brand-footer {
  position: relative;
  width: 100%;
  height: 300px;
  background: #0a0a0a;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.brand-footer-copy {
  position: relative;
  z-index: 2;
  margin-top: 40px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #555;
  letter-spacing: 0.02em;
}

/* Layer 0 — soft teal-gray bloom behind the letterforms */
.brand-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80vw 55% at 50% 85%, #1a2a28 0%, #0a0a0a 70%);
  z-index: 0;
  pointer-events: none;
}

/* Layer 1 — giant wordmark, almost invisible against background */
.brand-footer-bg {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-family: 'Inter', sans-serif;
  font-size: 20vw;
  font-weight: 900;
  color: rgba(255,255,255,0.12);
  white-space: nowrap;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

/* ──────────────────────────────────────────
   VALUES SCROLL SECTION
────────────────────────────────────────── */
#values-scroll {
  height: 600vh;
  background: #0a0a0a;
  position: relative;
}

.vs-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #0a0a0a;
}

#vs-rect {
  position: absolute;
  width: 480px;
  height: 300px;
  border-radius: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  will-change: width, height, border-radius;
  z-index: 1;
}

#vs-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
  user-select: none;
}

#vs-text {
  position: absolute;
  bottom: -150px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 20;
  opacity: 0;
  pointer-events: none;
}

#vs-text span {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 3vw, 44px);
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-transform: uppercase;
  background: rgba(0,0,0,0.3);
  padding: 14px 28px;
  display: inline-block;
}

.vc-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(640px, 88vw);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  overflow: hidden;
  opacity: 0;
  will-change: transform, opacity;
}

#vc-card-1 { z-index: 30; }
#vc-card-2 { z-index: 31; }
#vc-card-3 { z-index: 32; }
#vc-card-4 { z-index: 33; }

.vc-card-bar {
  height: 5px;
  background: #E8613C;
  width: 100%;
}

.vc-card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
}

.vc-card-left {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.vc-card-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 2.4vw, 34px);
  color: #1a1a1a;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  line-height: 1.0;
  margin: 0;
}

.vc-card-line {
  height: 3px;
  background: #E8613C;
  width: 100%;
  margin: 18px 0;
  flex-shrink: 0;
}

.vc-card-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: #444;
  line-height: 1.65;
  font-weight: 400;
  margin: 0;
}

.vc-card-right {
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}

@media (max-width: 768px) {
  .vc-card-inner { grid-template-columns: 1fr; }
  .vc-card-right  { min-height: 140px; }
  #vs-rect        { width: 300px; height: 200px; }
}

/* ──────────────────────────────────────────
   ABOUT — Scroll text reveal
────────────────────────────────────────── */
#about {
  height: 500vh;
  min-height: 100vh;
  background-color: #111111;
  position: relative;
}

.about-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background-color: #0a0a0a;
  will-change: transform;
}
.about-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  text-align: center;
  will-change: transform;
}
.about-story-label {
  font-family: 'Courier Prime', monospace;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.12em;
  display: block;
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 0 -360px;
  padding-bottom: 4px;
}
.about-word {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: clamp(72px, 9vw, 130px);
  color: #E8E4DC;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.70;
  display: block;
  margin: 0;
}

#about-word-prefix {
  display: inline-block;
}

#about-word-suffix {
  display: inline-block;
  min-width: 1.8em;
  text-align: left;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.about-right {
  position: absolute;
  left: 40%;
  top: 0;
  width: 60%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 60px;
  transform: translateY(100vh);
}

.about-right-inner {
  display: block;
  max-width: 700px;
}
.ab-s {
  display: inline;
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 3vw, 40px);
  -webkit-text-stroke: 0.4px currentColor;
  line-height: 1.15;
  letter-spacing: -0.025em;
  text-transform: none;
  color: rgba(232,228,220,0.18);
  transition: color 0.35s ease;
}

@media (max-width: 900px) {
  .about-word { font-size: clamp(56px, 14vw, 90px); }
  .ab-s { font-size: clamp(22px, 5.5vw, 40px); }
}

@media (max-width: 768px) {
  /* Remove transforms that break position:sticky on mobile */
  #about {
    height: auto !important;
    transform: none !important;
    will-change: auto !important;
  }

  .about-sticky {
    position: sticky !important;
    top: 0 !important;
    height: 100vh !important;
    transform: none !important;
    will-change: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    padding: 0 24px !important;
  }

  .about-left {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 0 !important;
    margin-bottom: 72px !important;
    text-align: center !important;
  }

  .about-story-label { margin: 0 0 4px 0 !important; }
  .about-word { font-size: clamp(38px, 10vw, 54px) !important; }

  .about-right {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    height: auto !important;
    transform: none !important;
    padding: 0 !important;
    display: block !important;
  }

  .ab-s {
    font-size: clamp(13px, 3.8vw, 17px) !important;
  }
}

@media (max-width: 860px) {
  #cta {
    grid-template-columns: 1fr;
  }
  .coc {
    border-radius: 0;
    min-height: auto;
    padding-bottom: 0;
  }
  .coc-nav a { font-size: 22px; }
  .coc-locations span { font-size: 18px; }
}

/* ──────────────────────────────────────────
   SITE FOOTER
────────────────────────────────────────── */
@keyframes drift {
  0%   { transform: translateX(-50%) translateY(0px); }
  50%  { transform: translateX(-50%) translateY(-8px); }
  100% { transform: translateX(-50%) translateY(0px); }
}

#site-footer {
  background: #111111;
  height: 220px;
  position: relative;
  overflow: hidden;
  z-index: 100;
  border-top: 1px solid rgba(255,255,255,0.1);
}

#site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80vw 60% at 50% 85%, #028090 0%, #111111 70%);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.sf-brand {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  font-size: 22vw;
  font-weight: 900;
  color: #222222;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  animation: drift 8s ease-in-out infinite;
}

.sf-copy {
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.03em;
  z-index: 2;
}