/* ============================================
   CoLab — Swiss Architectural Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Neue+Haas+Grotesk+Display:wght@400;500;700&family=Instrument+Serif:ital@0;1&family=JetBrains+Mono:wght@400;500&display=swap');

/* Fallback to system-available Swiss-style fonts */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@300;400;500;600;700;800;900&family=Newsreader:ital,opsz,wght@0,6..72,300;0,6..72,400;1,6..72,300;1,6..72,400&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Palette — restrained, architectural */
  --paper: #f4f2ed;
  --paper-2: #ebe8e0;
  --ink: #0e0e0c;
  --ink-2: #2a2a26;
  --muted: #8a8680;
  --rule: #0e0e0c;
  --rule-soft: rgba(14, 14, 12, 0.12);
  --accent: #ff3d00;
  --accent-deep: #c62f00;
  --surface: #ffffff;

  /* Type */
  --font-sans: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-serif: 'Newsreader', Georgia, serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Monaco, monospace;

  /* Space scale */
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --max: 1440px;
  --section-y: clamp(5rem, 10vw, 9rem);

  /* Motion */
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.45;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ============================================
   Typography utilities
   ============================================ */

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
}

.eyebrow-muted {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
}

.headline {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.95;
  font-size: clamp(2.5rem, 7vw, 6.5rem);
}

.headline-lg {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.92;
  font-size: clamp(3rem, 10vw, 9rem);
}

.headline-serif {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.02em;
}

.subhead {
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  line-height: 1.4;
  font-weight: 400;
  color: var(--ink-2);
  max-width: 52ch;
}

.title {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.title-serif {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
}

/* ============================================
   Layout primitives
   ============================================ */

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { padding: var(--section-y) 0; }

.rule { border-top: 1px solid var(--rule); height: 1px; }
.rule-soft { border-top: 1px solid var(--rule-soft); }

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

@media (max-width: 768px) {
  .grid-12 { grid-template-columns: repeat(6, 1fr); }
}

/* ============================================
   Navigation
   ============================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(244, 242, 237, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rule-soft);
  transition: background 0.3s var(--ease);
}

.nav-logo {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.nav-logo-mark {
  width: 22px; height: 22px;
  background: var(--ink);
  position: relative;
}

.nav-logo-mark::before {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 8px; height: 8px;
  background: var(--accent);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--accent); }

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: var(--accent);
}

.nav-cta {
  padding: 0.65rem 1.25rem;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s;
  display: inline-block;
}

.nav-cta:hover { background: var(--accent); }

.nav-toggle {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.2s;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem var(--gutter);
    gap: 1.25rem;
    border-bottom: 1px solid var(--rule);
  }
  .nav-links.open a { font-size: 1.5rem; }
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover {
  background: var(--accent);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--ink);
}

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

.btn-arrow::after {
  content: '→';
  transition: transform 0.2s;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ============================================
   Hero
   ============================================ */

.hero {
  padding: 10rem 0 var(--section-y);
  position: relative;
  overflow: hidden;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-title {
  margin-bottom: 2.5rem;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-end;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}

@media (max-width: 768px) {
  .hero-bottom { grid-template-columns: 1fr; gap: 2rem; }
}

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

/* ============================================
   Spec rows (Swiss data tables)
   ============================================ */

.spec-row {
  display: grid;
  grid-template-columns: 60px 1fr 2fr;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule-soft);
  align-items: baseline;
}

.spec-row:first-child { border-top: 1px solid var(--rule); }

.spec-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.spec-label {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.spec-value {
  font-size: 1.05rem;
  color: var(--ink-2);
  line-height: 1.45;
}

@media (max-width: 700px) {
  .spec-row { grid-template-columns: 40px 1fr; }
  .spec-row .spec-value { grid-column: 1 / -1; padding-left: 40px; }
}

/* ============================================
   Section header (shared)
   ============================================ */

.section-head {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: flex-end;
}

.section-head-meta .eyebrow {
  display: block;
  margin-bottom: 1rem;
}

@media (max-width: 900px) {
  .section-head { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ============================================
   Stack grid (the 5 layers)
   ============================================ */

.stack-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.stack-col {
  padding: 2.5rem 1.5rem;
  border-right: 1px solid var(--rule-soft);
  transition: background 0.3s var(--ease);
  position: relative;
}

.stack-col:last-child { border-right: none; }

.stack-col:hover {
  background: var(--surface);
}

.stack-col-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 2rem;
  display: block;
}

.stack-col-title {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.stack-col-desc {
  font-size: 0.88rem;
  color: var(--ink-2);
  line-height: 1.5;
  margin-bottom: 2rem;
}

.stack-col-items {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--rule-soft);
  padding-top: 1rem;
}

.stack-col-items li {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  padding: 0.3rem 0;
  text-transform: uppercase;
}

@media (max-width: 1000px) {
  .stack-grid { grid-template-columns: repeat(2, 1fr); }
  .stack-col {
    border-right: 1px solid var(--rule-soft);
    border-bottom: 1px solid var(--rule-soft);
  }
  .stack-col:nth-child(2n) { border-right: none; }
}

@media (max-width: 600px) {
  .stack-grid { grid-template-columns: 1fr; }
  .stack-col { border-right: none; }
}

/* ============================================
   Pricing cards
   ============================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.price-card {
  padding: 2.5rem 1.75rem;
  border-right: 1px solid var(--rule-soft);
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 580px;
}

.price-card:last-child { border-right: none; }

.price-card.featured {
  background: var(--ink);
  color: var(--paper);
}

.price-card.featured .price-tier-name,
.price-card.featured .price-feature-list li,
.price-card.featured .price-desc {
  color: var(--paper);
}

.price-card.featured .price-amount { color: var(--paper); }
.price-card.featured .price-per { color: var(--muted); }

.price-tag {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  background: var(--accent);
  color: var(--paper);
  padding: 0.3rem 0.55rem;
  text-transform: uppercase;
}

.price-tier-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 1.75rem;
}

.price-tier-name {
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.price-desc {
  font-size: 0.85rem;
  color: var(--ink-2);
  line-height: 1.45;
  margin-bottom: 2rem;
  min-height: 2.5rem;
}

.price-amount-row {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--rule-soft);
}

.price-card.featured .price-amount-row {
  border-bottom-color: rgba(244, 242, 237, 0.15);
}

.price-amount {
  font-size: 2.75rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-per {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.price-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex: 1;
}

.price-feature-list li {
  font-size: 0.85rem;
  padding: 0.55rem 0;
  color: var(--ink-2);
  position: relative;
  padding-left: 1.1rem;
  line-height: 1.4;
}

.price-feature-list li::before {
  content: '+';
  position: absolute;
  left: 0; top: 0.55rem;
  font-family: var(--font-mono);
  color: var(--accent);
  font-weight: 600;
}

.price-cta {
  padding: 0.9rem 1.25rem;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  transition: all 0.2s;
}

.price-card.featured .price-cta {
  background: var(--accent);
  color: var(--paper);
}

.price-cta:hover {
  background: var(--accent);
}

@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card {
    border-right: 1px solid var(--rule-soft);
    border-bottom: 1px solid var(--rule-soft);
    min-height: auto;
  }
  .price-card:nth-child(2n) { border-right: none; }
}

@media (max-width: 650px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { border-right: none; }
}

/* ============================================
   Two-column section (The Space features)
   ============================================ */

.two-col {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 4rem;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
}

.amenity-block {
  padding: 2.5rem 0;
  border-top: 1px solid var(--rule-soft);
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 2rem;
  align-items: flex-start;
}

.amenity-block:first-child { border-top: 1px solid var(--rule); }

.amenity-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  padding-top: 0.5rem;
}

.amenity-content h3 {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.amenity-content p {
  font-size: 0.98rem;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 56ch;
  margin-bottom: 1rem;
}

.amenity-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}

.amenity-spec {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  background: var(--paper-2);
  color: var(--ink-2);
  border-radius: 2px;
}

.amenity-rate {
  text-align: right;
  padding-top: 0.25rem;
}
.amenity-rate .rate-num {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  display: block;
  line-height: 1;
}
.amenity-rate .rate-per {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-top: 0.4rem;
  display: block;
}

@media (max-width: 700px) {
  .amenity-block {
    grid-template-columns: 50px 1fr;
    gap: 1rem;
  }
  .amenity-rate {
    grid-column: 1 / -1;
    padding-left: 50px;
    text-align: left;
  }
}

/* ============================================
   Forms
   ============================================ */

.form-wrap {
  max-width: 640px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-field label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 0.65rem 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.2s;
  border-radius: 0;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
  border-bottom-width: 2px;
}

.form-field textarea {
  resize: vertical;
  min-height: 96px;
}

.form-submit {
  margin-top: 1.5rem;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 5rem 0 2rem;
  margin-top: 6rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.footer-brand {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 2.5rem;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 1rem;
}

.footer-brand em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}

.footer-tag {
  color: var(--muted);
  max-width: 32ch;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: var(--muted);
  font-weight: 500;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-links a {
  font-size: 0.9rem;
  color: var(--paper);
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}
.footer-links a:hover { color: var(--accent); opacity: 1; }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(244, 242, 237, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ============================================
   Marquee / scrolling ticker
   ============================================ */

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 1.25rem 0;
  background: var(--ink);
  color: var(--paper);
}

.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.marquee-item::after {
  content: '●';
  color: var(--accent);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   Stats band
   ============================================ */

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.stat {
  padding: 3rem 1.5rem;
  border-right: 1px solid var(--rule-soft);
}
.stat:last-child { border-right: none; }

.stat-value {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: baseline;
}

.stat-value em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}

.stat-unit {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-left: 0.4rem;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
}

@media (max-width: 800px) {
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--rule-soft); }
}

/* ============================================
   Services cards (Studios, Telosi, HoliX)
   ============================================ */

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

@media (max-width: 1200px) {
  .services-grid[style*="repeat(4"] { grid-template-columns: repeat(2, 1fr) !important; }
  .services-grid[style*="repeat(3"] { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 700px) { .services-grid { grid-template-columns: 1fr !important; } }

.service-card {
  background: var(--surface);
  padding: 2rem 1.75rem;
  border: 1px solid var(--rule-soft);
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.service-card h3 {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.service-card h3 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}

.service-card-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.service-card p {
  color: var(--ink-2);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex: 1;
  font-size: 0.95rem;
}

.service-card-list {
  list-style: none;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--rule-soft);
  margin-top: auto;
}

.service-card-list li {
  font-size: 0.82rem;
  color: var(--ink-2);
  padding: 0.3rem 0;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.service-card-list li::before {
  content: '—';
  color: var(--accent);
}

/* ============================================
   Principles / About values
   ============================================ */

.principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--rule);
}

.principle {
  padding: 3rem 2rem;
  border-right: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}

.principle:nth-child(2n) { border-right: none; }

.principle-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
}

.principle h3 {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.principle p {
  color: var(--ink-2);
  line-height: 1.55;
  font-size: 0.95rem;
}

@media (max-width: 700px) {
  .principles { grid-template-columns: 1fr; }
  .principle { border-right: none; }
}

/* ============================================
   Large pull quote
   ============================================ */

.pull-quote {
  padding: var(--section-y) 0;
  text-align: left;
}

.pull-quote blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.75rem, 4vw, 3.5rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 24ch;
  margin-bottom: 2rem;
}

.pull-quote cite {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  font-style: normal;
}

/* ============================================
   Animations / reveal
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Tables (for pricing comparison)
   ============================================ */

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 3rem;
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--rule-soft);
  font-size: 0.9rem;
}

.compare-table th {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  border-bottom: 1px solid var(--rule);
}

.compare-table th:first-child,
.compare-table td:first-child {
  font-weight: 500;
  color: var(--ink);
}

.compare-table td.yes { color: var(--accent); font-weight: 600; }
.compare-table td.no { color: var(--muted); }

@media (max-width: 700px) {
  .compare-table { font-size: 0.8rem; }
  .compare-table th, .compare-table td { padding: 0.75rem 0.5rem; }
}

/* ============================================
   FAQ
   ============================================ */

.faq {
  border-top: 1px solid var(--rule);
}

.faq-item {
  border-bottom: 1px solid var(--rule-soft);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.75rem 0;
  cursor: pointer;
  gap: 2rem;
  width: 100%;
  text-align: left;
  transition: padding 0.2s;
}

.faq-q:hover { color: var(--accent); }

.faq-q-text {
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.faq-q-icon {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--muted);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-q-icon { transform: rotate(45deg); color: var(--accent); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-item.open .faq-a { max-height: 400px; }

.faq-a-inner {
  padding: 0 0 1.75rem;
  max-width: 64ch;
  color: var(--ink-2);
  line-height: 1.55;
  font-size: 0.95rem;
}

/* ============================================
   Hero splash element (abstract)
   ============================================ */

.hero-mark {
  position: absolute;
  top: 6rem;
  right: var(--gutter);
  width: 200px;
  height: 200px;
  pointer-events: none;
  opacity: 0.9;
}

@media (max-width: 900px) { .hero-mark { display: none; } }

/* ============================================
   CTA section
   ============================================ */

.cta-section {
  background: var(--ink);
  color: var(--paper);
  padding: var(--section-y) 0;
}

.cta-section .eyebrow-muted { color: var(--muted); }

.cta-section h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin-bottom: 2rem;
  max-width: 18ch;
}

.cta-section h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}

.cta-section .btn-primary {
  background: var(--accent);
}
.cta-section .btn-primary:hover {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--accent);
}

/* ============================================
   Split image/content block
   ============================================ */

.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.split-visual {
  background: var(--paper-2);
  min-height: 420px;
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--rule);
}

.split-content {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-content h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.split-content h3 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}

.split-content p {
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

@media (max-width: 900px) {
  .split-block { grid-template-columns: 1fr; }
  .split-visual { min-height: 280px; border-right: none; border-bottom: 1px solid var(--rule); }
  .split-content { padding: 3rem 2rem; }
}

/* ============================================
   Utility
   ============================================ */

.text-accent { color: var(--accent); }
.text-muted { color: var(--muted); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.flex { display: flex; }
.items-center { align-items: center; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.flex-wrap { flex-wrap: wrap; }
