/* LaunchPad — Hyer-inspired design system */
:root {
  --ink: #000d10;
  --ink-soft: #151623;
  --white: #ffffff;
  --gray: #8a8f94;
  --gray-light: #c4c8cc;
  --border: rgba(255, 255, 255, 0.12);
  --border-dark: rgba(0, 13, 16, 0.12);
  --maxw: 1240px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
}

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.u-white { color: var(--white); }
.u-muted { color: var(--gray); }
.muted { color: var(--gray); }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  width: min(520px, calc(100% - 32px));
  padding: 28px 32px;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.cookie-banner.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-20px);
}

.cookie-banner h3 {
  margin: 0 0 12px;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink);
}

.cookie-banner p {
  margin: 0 0 20px;
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
}

.cookie-banner a {
  color: var(--gray);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}

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

.btn-dark:hover {
  background: #1a2a30;
}

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

.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--ink);
}

.btn-pill-dark {
  background: var(--ink-soft);
  color: var(--white);
  padding: 12px 24px;
}

.btn-pill-dark:hover {
  background: var(--ink);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}

.site-header.is-scrolled,
.site-header--dark {
  background: rgba(0, 13, 16, 0.92);
  backdrop-filter: blur(12px);
}

.site-header--light {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.site-header--dark .logo,
.site-header:not(.site-header--light) .logo {
  color: var(--white);
}

.site-header.is-scrolled .logo {
  color: var(--white);
}

.site-header--light .logo {
  color: var(--ink);
}

.primary-nav {
  display: none;
  gap: 36px;
  align-items: center;
}

.primary-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  color: var(--ink);
}

.site-header--dark .primary-nav a,
.site-header:not(.site-header--light) .primary-nav a {
  color: var(--white);
}

.site-header.is-scrolled .primary-nav a {
  color: var(--white);
}

.site-header--light .primary-nav a {
  color: var(--ink);
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.primary-nav a:hover::after,
.primary-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.site-header--light .menu-btn {
  border-color: var(--border-dark);
  color: var(--ink);
}

.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  position: relative;
  transition: transform 0.3s var(--ease);
}

.menu-btn span::before,
.menu-btn span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-btn span::before { top: -6px; }
.menu-btn span::after { top: 6px; }

.menu-btn.is-open span { background: transparent; }
.menu-btn.is-open span::before { top: 0; transform: rotate(45deg); }
.menu-btn.is-open span::after { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  padding: 100px 32px 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu a {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 500;
}

@media (min-width: 900px) {
  .primary-nav { display: flex; }
  .menu-btn { display: none; }
}

/* Hero home */
.hero-home {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 13, 16, 0.2) 0%, rgba(0, 13, 16, 0.85) 70%, var(--ink) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 140px 24px 48px;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
}

.hero-content h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 32px;
}

.hero-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.125rem);
  color: var(--gray-light);
  max-width: 320px;
  margin: 0;
}

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

/* USPs */
.usps {
  background: var(--ink);
  color: var(--white);
  padding: 80px 0 100px;
}

.usps-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 64px;
  max-width: 720px;
}

.usps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px 32px;
}

.usps-item h3 {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 12px;
  text-transform: none;
}

.usps-item p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
}

/* Solutions */
.solutions {
  background: var(--ink);
  color: var(--white);
  padding: 0 0 100px;
}

.solutions-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 0 24px 48px;
  max-width: var(--maxw);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .solutions-header {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }
}

.solutions-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
}

.solutions-header p {
  margin: 0;
  color: var(--gray);
  font-size: 1rem;
}

.solutions-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .solutions-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.solution-card {
  position: relative;
  min-height: 420px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--ink-soft);
  transition: transform 0.4s var(--ease);
}

.solution-card:hover {
  transform: scale(0.995);
}

.solution-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.solution-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: transform 0.6s var(--ease), opacity 0.4s var(--ease);
}

.solution-card:hover .solution-card-bg img {
  transform: scale(1.04);
  opacity: 0.65;
}

.solution-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 13, 16, 0.9) 100%);
  z-index: 1;
}

.solution-card-content {
  position: relative;
  z-index: 2;
}

.solution-card h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  margin: 0 0 8px;
}

.solution-card p {
  margin: 0;
  color: var(--gray-light);
  font-size: 0.9rem;
}

.solutions-intro {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--ink-soft);
}

/* Industries slider */
.industries {
  background: var(--ink);
  color: var(--white);
  padding: 80px 0 100px;
}

.industries h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 48px;
  padding: 0 24px;
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}

.industries-slider {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 900px) {
  .industries-slider {
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
  }
}

.industries-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
}

.industries-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s var(--ease);
}

.industries-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.industry-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: opacity 0.3s var(--ease);
}

.industry-item.is-active {
  opacity: 1;
}

.industry-item:not(.is-active) {
  opacity: 0.45;
}

.industry-item h4 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 500;
}

.industry-item h4 span {
  color: var(--gray);
  font-weight: 400;
}

.industry-item span {
  font-size: 0.8rem;
  color: var(--gray);
}

/* Support split */
.support-split {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--white);
}

@media (min-width: 900px) {
  .support-split {
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
  }
}

.support-image {
  background: #f5f5f5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 40px;
  min-height: 320px;
}

.support-image img {
  max-height: 400px;
  width: auto;
  object-fit: contain;
}

.support-copy {
  background: var(--ink);
  color: var(--white);
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.support-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}

.support-copy p {
  margin: 0 0 16px;
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 480px;
}

/* Approach */
.approach {
  background: var(--white);
  padding: 100px 0;
}

.approach h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  margin: 0 0 48px;
  padding: 0 24px;
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 900px) {
  .approach-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.approach-text p {
  margin: 0 0 20px;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.8;
}

.approach-features {
  display: grid;
  gap: 32px;
}

.approach-feature h3 {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 8px;
}

.approach-feature p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
}

.approach-cta {
  margin-top: 48px;
  padding: 0 24px;
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}

/* Image carousel */
.showcase {
  background: var(--white);
  padding: 0 0 100px;
}

.showcase-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0 24px;
}

.showcase-track::-webkit-scrollbar { display: none; }

.showcase-slide {
  flex: 0 0 min(85vw, 720px);
  scroll-snap-align: start;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 2px;
}

.showcase-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-caption {
  text-align: center;
  padding: 48px 24px 0;
  max-width: 600px;
  margin: 0 auto;
}

.showcase-caption h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 500;
  margin: 0 0 12px;
}

.showcase-caption p {
  margin: 0 0 24px;
  color: var(--gray);
  font-size: 0.9rem;
}

/* Clients marquee */
.clients-bar {
  background: var(--ink);
  color: var(--white);
  padding: 48px 0;
  overflow: hidden;
}

.clients-bar h3 {
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray);
  margin: 0 0 32px;
}

.clients-track {
  display: flex;
  gap: 48px;
  animation: marquee 40s linear infinite;
  width: max-content;
}

.clients-track img {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.5);
  opacity: 0.6;
  transition: opacity 0.3s;
}

.clients-track img:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1);
}

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

/* CTA footer section */
.cta-section {
  background: var(--ink);
  color: var(--white);
  padding: 80px 24px;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  margin: 0 0 24px;
}

/* Page hero (subpages) */
.page-hero {
  background: var(--ink);
  color: var(--white);
  padding: 160px 0 80px;
}

.page-hero .eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray);
  margin: 0 0 16px;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  line-height: 1.1;
}

.page-hero .lede {
  font-size: 1.05rem;
  color: var(--gray-light);
  max-width: 560px;
  margin: 0;
  line-height: 1.6;
}

/* Content sections */
.section-pad {
  padding: 80px 0;
}

.section-pad--dark {
  background: var(--ink);
  color: var(--white);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  padding: 48px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.card {
  padding: 32px;
  background: #f8f8f8;
  transition: background 0.3s var(--ease);
}

.card:hover {
  background: #f0f0f0;
}

.card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 12px;
}

.card p {
  margin: 0 0 16px;
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
}

.card-link {
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-section {
  padding: 64px 0;
  border-bottom: 1px solid #eee;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.service-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  margin: 0 0 8px;
}

.service-section .muted {
  color: var(--gray);
  margin: 0 0 24px;
}

.list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.item {
  padding: 16px 20px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  background: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: left;
  color: var(--ink);
  transition: border-color 0.25s, background 0.25s;
  cursor: pointer;
}

.item:hover {
  border-color: var(--ink);
  background: #fafafa;
}

.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  padding: 48px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.tile {
  padding: 32px;
  background: #f8f8f8;
}

.tile h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 12px;
}

.tile p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
}

/* Prose */
.prose {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 64px 24px;
}

.prose h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 32px 0 12px;
}

.prose p, .prose li {
  color: var(--gray);
  line-height: 1.7;
  font-size: 0.95rem;
}

.prose ul, .prose ol {
  padding-left: 20px;
}

.prose li { margin-bottom: 8px; }

.well {
  padding: 32px;
  background: #f8f8f8;
  margin-top: 32px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  padding: 48px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.article-card {
  padding: 32px;
  background: #f8f8f8;
}

.article-card h2 {
  font-size: 1.125rem;
  margin: 0 0 8px;
}

.article-card p {
  margin: 0 0 16px;
  font-size: 0.875rem;
  color: var(--gray);
}

/* Contact form */
.form-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 64px 24px;
}

@media (min-width: 768px) {
  .form-wrap { grid-template-columns: 1.2fr 0.8fr; }
}

.form {
  display: grid;
  gap: 20px;
}

.form .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form label {
  display: grid;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
}

.form input,
.form textarea {
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font: inherit;
  background: var(--white);
  transition: border-color 0.25s;
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--ink);
}

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 32px;
  padding: 64px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: center;
}

.stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
}

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 13, 16, 0.7);
  backdrop-filter: blur(4px);
  z-index: 150;
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 160;
  padding: 24px;
}

.modal[hidden], .modal-overlay[hidden] { display: none !important; }

.modal-shell {
  width: min(640px, 100%);
  max-height: 80vh;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
}

.modal-close {
  width: 36px;
  height: 36px;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  font-size: 1.25rem;
  display: grid;
  place-items: center;
  color: var(--ink);
}

.modal-body {
  padding: 24px;
  overflow: auto;
}

.modal-body p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

.modal-body ul {
  padding-left: 18px;
  color: var(--gray);
  font-size: 0.9rem;
}

.modal-body li { margin-bottom: 8px; }

.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 40px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px 48px;
}

.footer-brand .logo {
  color: var(--white);
  font-size: 1.125rem;
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--gray);
}

.footer-col h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray);
  margin: 0 0 16px;
  font-weight: 500;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--gray-light);
  margin-bottom: 10px;
  transition: color 0.25s;
}

.footer-col a:hover { color: var(--white); }

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  color: var(--gray-light);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray);
  max-width: var(--maxw);
  margin: 0 auto;
}

.footer-bottom p { margin: 0 0 8px; }

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* Utility */
.cta-inline {
  text-align: center;
  padding: 64px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.cta-inline h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 12px;
}

.cta-inline p {
  color: var(--gray);
  margin: 0 0 24px;
}

.serif { font-weight: 500; }
