/* ═══════════════════════════════════════════
   CRYSTOPA FORGE — LANDING PAGE
   crystallos (clarity) + opus (completed work)
   Light theme. Avant-garde layout.
   ═══════════════════════════════════════════ */

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

:root {
  /* Light palette — derived from hero art */
  --bg: #faf8f5;
  --bg-alt: #f0ece6;
  --text: #1a1520;
  --text-muted: #6b6370;
  --gold: #c4882e;
  --magenta: #c4346e;
  --cyan: #2ea8b8;
  --purple: #6e4a8e;

  /* Dark section (contact) */
  --dark-bg: #0f0a1a;
  --dark-card: #1a1230;
  --dark-accent: #c4882e;
  --dark-text: #e8e4f0;
  --dark-muted: #8a8098;
  --dark-border: rgba(100, 80, 140, 0.3);

  /* Shared */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 10px;
}

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

body {
  font-family: 'Instrument Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}


/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 2.8s var(--ease-out),
              transform 2.8s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.2s; }
.reveal-delay-2 { transition-delay: 0.4s; }
.reveal-delay-3 { transition-delay: 0.6s; }
.reveal-delay-4 { transition-delay: 0.8s; }
.reveal-delay-5 { transition-delay: 1.0s; }
.reveal-delay-6 { transition-delay: 1.2s; }


/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('when-you-were-young.webp') center center / cover no-repeat;
  z-index: 0;
}

/* Bottom gradient fades to warm white (NOT dark) */
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 45%, transparent 20%, rgba(250, 248, 245, 0.35) 70%, rgba(250, 248, 245, 0.8) 100%),
    linear-gradient(to bottom, rgba(250, 248, 245, 0) 0%, rgba(250, 248, 245, 0) 35%, rgba(250, 248, 245, 0.5) 65%, var(--bg) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 900px;
}

.hero__name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 8vw, 7rem);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 1.5rem;
  opacity: 0;
}

.fonts-ready .hero__name {
  animation: hero-in 1.2s var(--ease-out) both;
}

.hero__name span {
  position: relative;
  display: inline-block;
  will-change: transform, filter, opacity;
  text-shadow:
    0 0 11px rgba(250, 248, 245, 1),
    0 0 23px rgba(250, 248, 245, 1),
    0 0 43px rgba(250, 248, 245, 1);
}

.hero__name span:first-child {
  z-index: 10;
}

.hero__name span:last-child {
  z-index: 10;
}

/* Molten forge effect inside the "g" — canvas lava fill from forge-drip.js */
#forge-g {
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-color: #ff4500;
  text-shadow: none;
}

.hero__tagline {
  position: relative;
  z-index: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(0.85rem, 2vw, 1.15rem);
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(250, 248, 245, 0.15);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  padding: 0.4em 0.7em 0.4em 1.2em;
  border-radius: 4px;
  display: inline-block;
  opacity: 0;
}

.fonts-ready .hero__tagline {
  animation: hero-in 1s 0.4s var(--ease-out) both;
}

.hero__tagline span {
  opacity: 0.35;
  margin: 0 0.15em;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* ─── Hero Animated Layers ─── */
.hero__layers {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero__layers[data-ready] {
  opacity: 1;
}

.hero-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}


/* Hide fallback + gradient overlay when layers are active */
.hero__layers[data-ready] ~ .hero__bg {
  background-image: none;
}

.hero__layers[data-ready] ~ .hero__bg::before {
  background:
    linear-gradient(to bottom, transparent 75%, var(--bg) 100%);
}


/* ═══════════════════════════════════════════
   SECTION BASE
   ═══════════════════════════════════════════ */

.section {
  padding: clamp(80px, 12vw, 140px) clamp(1.5rem, 5vw, 4rem);
}

/* Pull first section up to compensate for hero gradient fade */
.hero + .section {
  margin-top: -16vh;
}

.section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 1rem;
  opacity: 0.7;
}

.section__heading {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 3.5rem;
}


/* ═══════════════════════════════════════════
   SERVICE LANES — Avant-garde asymmetric
   ═══════════════════════════════════════════ */

.lanes {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lane {
  position: relative;
  padding: 3rem 2.5rem 3rem 3rem;
  border: 1px solid transparent;
  border-left-width: 3px;
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.4s var(--ease-smooth),
              box-shadow 0.4s var(--ease-smooth);
}

.lane::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  opacity: 0.5;
  transition: width 0.4s var(--ease-smooth), opacity 0.4s var(--ease-smooth);
}

.lane:nth-child(1) { border-left-color: var(--magenta); margin-left: 0; --lane-color: var(--magenta); }
.lane:nth-child(2) { border-left-color: var(--cyan); margin-left: 8%; --lane-color: var(--cyan); }
.lane:nth-child(3) { border-left-color: var(--gold); margin-left: 4%; --lane-color: var(--gold); }

.lane::before {
  background: var(--lane-color);
}

.lane:hover {
  border-color: var(--lane-color);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 0 16px color-mix(in srgb, var(--lane-color) 12%, transparent);
}

.lane:nth-child(1):hover {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Ccircle cx='12' cy='12' r='10' fill='%23c4346e' opacity='0.7'/%3E%3C/svg%3E") 12 12, pointer;
}

.lane:nth-child(2):hover {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Ccircle cx='12' cy='12' r='10' fill='%232ea8b8' opacity='0.7'/%3E%3C/svg%3E") 12 12, pointer;
}

.lane:nth-child(3):hover {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Ccircle cx='12' cy='12' r='10' fill='%23c4882e' opacity='0.7'/%3E%3C/svg%3E") 12 12, pointer;
}

.lane:hover::before {
  width: 100%;
  opacity: 0.06;
}

/* Oversized semi-transparent accent number behind title */
.lane__number {
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 6rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.lane:nth-child(1) .lane__number { color: rgba(196, 52, 110, 0.08); }
.lane:nth-child(2) .lane__number { color: rgba(46, 168, 184, 0.08); }
.lane:nth-child(3) .lane__number { color: rgba(196, 136, 46, 0.08); }

.lane__title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  position: relative;
}

.lane__desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 580px;
  position: relative;
}

.lane__caps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  list-style: none;
  margin-top: 1rem;
  position: relative;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}

.lane__caps li::before {
  content: '·';
  margin-right: 0.4em;
  font-weight: 700;
}

.lane:nth-child(1) .lane__caps li::before { color: var(--magenta); }
.lane:nth-child(2) .lane__caps li::before { color: var(--cyan); }
.lane:nth-child(3) .lane__caps li::before { color: var(--gold); }

/* ─── Scroll-fill heading ─── */
.section__heading--fill {
  background: linear-gradient(
    90deg,
    var(--magenta) 0%,
    var(--cyan) 25%,
    var(--gold) 50%,
    var(--text-muted) 50.1%,
    var(--text-muted) 100%
  );
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (prefers-reduced-motion: reduce) {
  .section__heading--fill {
    background-position: 0% 0;
  }
}


/* ═══════════════════════════════════════════
   PORTFOLIO
   ═══════════════════════════════════════════ */

.portfolio {
  background: var(--bg-alt);
}

.portfolio__intro {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  letter-spacing: 0.01em;
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2.5rem;
  row-gap: 3.5rem;
}

.project {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.project__screenshot {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 16 / 10;
  background: var(--bg);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.project__screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-smooth);
}

.project__screenshot:hover img {
  transform: scale(1.03);
}

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

.project__name {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  text-decoration: none;
}

.project__name:hover {
  text-decoration: underline;
}

.project.reveal {
  transition: opacity 2s var(--ease-out),
              transform 2s var(--ease-out);
}

.project__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.project__meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.7;
  margin-top: 0.15rem;
  width: 100%;
}

.project__meta span::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  margin-right: 0.45rem;
  vertical-align: middle;
  position: relative;
  top: -1px;
}


/* ═══════════════════════════════════════════
   CONTACT — DARK SECTION
   ═══════════════════════════════════════════ */

.contact {
  position: relative;
  background: #e6e0d8;
  overflow: hidden;
  clip-path: inset(0);
  padding-top: clamp(48px, 7.2vw, 84px);
  padding-bottom: clamp(48px, 7.2vw, 84px);
}


/* Colorburst art layers — fixed on scroll, left-center */
@property --swirl-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.contact__burst {
  position: fixed;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.contact__burst-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  mix-blend-mode: overlay;
  transition: opacity 2s ease-in-out;
  -webkit-mask-image: conic-gradient(from var(--swirl-angle), black 0deg, rgba(0,0,0,0.6) 60deg, rgba(0,0,0,0.2) 120deg, transparent 180deg, transparent 300deg, rgba(0,0,0,0.2) 330deg, black 360deg);
  mask-image: conic-gradient(from var(--swirl-angle), black 0deg, rgba(0,0,0,0.6) 60deg, rgba(0,0,0,0.2) 120deg, transparent 180deg, transparent 300deg, rgba(0,0,0,0.2) 330deg, black 360deg);
  -webkit-mask-size: 150% 150%;
  mask-size: 150% 150%;
  -webkit-mask-position: center;
  mask-position: center;
}

.contact__burst-layer:nth-child(1) {
  animation: swirl-mask 12s linear infinite;
}

.contact__burst-layer:nth-child(2) {
  animation: swirl-mask 16s linear infinite reverse;
}

.contact__burst-layer:nth-child(3) {
  animation: swirl-mask 10s linear infinite;
  animation-delay: -4s;
}

@keyframes swirl-mask {
  to { --swirl-angle: 360deg; }
}

@media (max-width: 768px) {
  .contact__burst {
    width: 280px;
    height: 280px;
    left: 2%;
  }
}

.contact .section__inner {
  position: relative;
  z-index: 1;
}

.contact .section__label {
  color: var(--purple);
  margin-bottom: -1.5rem;
}

.contact .section__heading {
  color: var(--text);
  margin-bottom: 0;
}

.contact .reveal {
  transform: none;
  transition: opacity 4.2s var(--ease-out);
}

.contact .contact__right.reveal {
  transition: opacity 4.2s var(--ease-out) 0.5s;
}

.contact .reveal.visible {
  transform: none;
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}

.contact__left,
.contact__right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.founder {
  display: flex;
  flex-direction: column;
  position: relative;
}

.founder__photo-wrap {
  position: relative;
}

.founder__headline {
  position: absolute;
  z-index: 2;
  bottom: 0.75rem;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  font-size: clamp(1.1rem, 2.2vw, 1.25rem);
  line-height: 1.3;
  color: #fff;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
  padding: 0 0.75rem;
}

.founder__headline strong {
  font-weight: 700;
}

.founder__photo {
  width: 100%;
  border-radius: var(--radius) var(--radius) 0 0;
  object-fit: cover;
  display: block;
}

.founder .voice-machine {
  background: #2a2520;
  border: 1px solid rgba(196, 136, 46, 0.2);
  border-radius: var(--radius);
  color: #fff;
}

.founder .vm-placeholder {
  color: var(--bg);
}

.contact__subtitle {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

/* ─── Voice Machine shared styles ─── */

.voice-machine {
  background: #ddd7ce;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.vm-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(196, 136, 46, 0.4);
}

.vm-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Play/Record button */
.vm-btn {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vm-btn svg.vm-ring {
  position: absolute;
  inset: 0;
  width: 48px;
  height: 48px;
  transform: rotate(-90deg);
}

.vm-ring__track {
  fill: none;
  stroke: rgba(196, 136, 46, 0.2);
  stroke-width: 2;
}

.vm-ring__progress {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 131.95;
  stroke-dashoffset: 131.95;
  transition: stroke-dashoffset 0.1s linear;
}

.vm-btn__icon {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  color: var(--gold);
  transition: color 0.3s, transform 0.3s;
}

.vm-btn:hover .vm-btn__icon {
  color: #a87020;
  transform: scale(1.1);
}

.vm-btn:disabled {
  opacity: 0.4;
  cursor: default;
}

.vm-btn:disabled:hover .vm-btn__icon {
  color: var(--gold);
  transform: none;
}

/* Waveform container */
.vm-waveform {
  height: 32px;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1px;
  overflow: hidden;
  min-width: 0;
}

.vm-waveform__bar {
  width: 2px;
  background: var(--gold);
  border-radius: 1px;
  opacity: 0.35;
  flex-shrink: 0;
  transition: opacity 0.15s;
}

.vm-waveform__bar--active {
  opacity: 1;
}

.vm-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-muted);
  flex-shrink: 0;
  min-width: 3em;
  text-align: right;
}

/* Placeholder state (no audio yet) */
.vm-placeholder {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.5;
  flex: 1;
}

/* Recorder states */
.vm-recorder {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vm-recorder__controls {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.vm-recorder__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.vm-action-btn {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s;
}

.vm-action-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.vm-action-btn--submit {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  font-weight: 500;
}

.vm-action-btn--submit:hover {
  background: #a87020;
  color: #fff;
}

.vm-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.vm-status--error {
  color: #e05050;
}

.vm-status--success {
  color: #50c878;
}

/* Recording pulse */
.vm-btn--recording .vm-btn__icon {
  color: #e05050;
  animation: rec-pulse 1.2s ease-in-out infinite;
}

@keyframes rec-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Footer phone */
.footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.1rem;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
  margin-bottom: 1rem;
}

.footer__phone:hover {
  color: #a87020;
}

.footer__phone svg {
  width: 20px;
  height: 20px;
}

/* ─── Contact Form ─── */

.vm-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.vm-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.vm-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.vm-form__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.vm-form__req {
  color: var(--gold);
}

.vm-form__input {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.9rem;
  background: #ddd7ce;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  color: var(--text);
  padding: 0.6rem 0.75rem;
  transition: border-color 0.3s;
}

.vm-form__input::placeholder {
  color: rgba(107, 99, 112, 0.5);
}

.vm-form__input:focus {
  outline: none;
  border-color: var(--gold);
}

.vm-form__input--error {
  border-color: #e05050;
}

/* Main submit button (below recorder) */
.vm-submit-main {
  width: 100%;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.8rem;
}


/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

.footer {
  background: #e6e0d8;
  padding: 2.5rem clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer__tagline {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(0.85rem, 2vw, 1.15rem);
  font-weight: 500;
  letter-spacing: 0.175em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1rem;
}

.footer__tagline span {
  opacity: 0.35;
  margin: 0 0.105em 0 -0.1em;
}

.footer__text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  opacity: 0.5;
}

.footer__text span {
  display: block;
  margin-top: 0.25rem;
}


/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

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

  .contact__layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .lane {
    margin-left: 0 !important;
    padding: 2.5rem 1.5rem 2.5rem 2rem;
  }

  .lane__number {
    font-size: 4rem;
  }

  .hero__content {
    padding: 1.5rem;
  }

  .voice-machine {
    flex-wrap: nowrap;
  }

  .vm-waveform {
    flex: 1;
    min-width: 0;
  }

  .founder__headline {
    font-size: 1.5rem;
  }

  .vm-form__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero__tagline {
    letter-spacing: 0.12em;
  }

  .project__info {
    flex-direction: column;
    gap: 0.25rem;
  }

  .footer__tagline {
    letter-spacing: 0.12em;
  }
}

