/* ============================================
   INCATO Digital Atelier — Stylesheet
   Automotive-inspired luxury. Diamond quilted.
   ============================================ */

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

/* -- Color System (F001) -- */
:root {
  --teal: #1A4D5C;
  --deep: #0A1F28;
  --silver: #B8C5C9;
  --gold: #C9A961;
  --cream: #F5F3EE;

  /* Quilted texture variables (F017) */
  --quilt-size: 40px;
  --quilt-gold: rgba(201, 169, 97, 0.06);
  --quilt-gold-light: rgba(26, 77, 92, 0.04);
  --quilt-gold-subtle: rgba(201, 169, 97, 0.03);
}

/* -- Typography System (F002) -- */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  background: var(--deep);
  color: var(--cream);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
}

/* -- Skip Link (F013) -- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--gold);
  color: var(--deep);
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  z-index: 100000;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
}

.skip-link:focus {
  top: 0;
}

/* -- Custom Cursor (F003) -- */
.cursor,
.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(-100px, -100px, 0);
  transition: opacity 0.3s ease;
}

.cursor {
  width: 8px;
  height: 8px;
  background: var(--gold);
  z-index: 9999;
  mix-blend-mode: difference;
}

.cursor-follower {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  z-index: 9998;
  opacity: 0.5;
}

.cursor.hidden,
.cursor-follower.hidden {
  opacity: 0 !important;
}

/* -- Loading Animation (F004) -- */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--deep);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  letter-spacing: 8px;
  color: var(--gold);
  opacity: 0;
  animation: fadeLetters 2s ease forwards;
}

.loader-bar {
  width: 200px;
  height: 1px;
  background: rgba(201, 169, 97, 0.2);
  margin-top: 32px;
  position: relative;
  overflow: hidden;
}

.loader-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--gold);
  animation: loadProgress 2s ease forwards;
}

@keyframes fadeLetters {
  to { opacity: 1; }
}

@keyframes loadProgress {
  to { width: 100%; }
}

/* -- Diamond Quilting Texture System (F017) -- */
.texture-quilted,
.texture-quilted-light,
.texture-quilted-subtle {
  position: relative;
  overflow: hidden;
}

.texture-quilted::before,
.texture-quilted-light::before,
.texture-quilted-subtle::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 1;
}

/* Dark sections (hero, dark areas) */
.texture-quilted::before {
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent calc(var(--quilt-size) - 1px),
      var(--quilt-gold) calc(var(--quilt-size) - 1px),
      var(--quilt-gold) var(--quilt-size)
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent calc(var(--quilt-size) - 1px),
      var(--quilt-gold) calc(var(--quilt-size) - 1px),
      var(--quilt-gold) var(--quilt-size)
    );
  animation: quiltDrift 30s linear infinite;
}

/* Light sections */
.texture-quilted-light::before {
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent calc(var(--quilt-size) - 1px),
      var(--quilt-gold-light) calc(var(--quilt-size) - 1px),
      var(--quilt-gold-light) var(--quilt-size)
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent calc(var(--quilt-size) - 1px),
      var(--quilt-gold-light) calc(var(--quilt-size) - 1px),
      var(--quilt-gold-light) var(--quilt-size)
    );
}

/* Card/overlay backgrounds */
.texture-quilted-subtle::before {
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent calc(var(--quilt-size) - 1px),
      var(--quilt-gold-subtle) calc(var(--quilt-size) - 1px),
      var(--quilt-gold-subtle) var(--quilt-size)
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent calc(var(--quilt-size) - 1px),
      var(--quilt-gold-subtle) calc(var(--quilt-size) - 1px),
      var(--quilt-gold-subtle) var(--quilt-size)
    );
}

@keyframes quiltDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(var(--quilt-size), var(--quilt-size)); }
}

/* -- Vertical Navigation (F006) -- */
.nav-vertical {
  position: fixed;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(184, 197, 201, 0.3);
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  border: none;
  padding: 0;
}

.nav-dot::before {
  content: attr(data-label);
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--silver);
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}

.nav-dot:hover::before {
  opacity: 1;
}

.nav-dot.active {
  background: var(--gold);
  width: 32px;
  border-radius: 4px;
}

.nav-dot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* -- Sections Base -- */
.section {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -- Hero Section (F005) -- */
.hero {
  background: linear-gradient(165deg, var(--deep) 0%, #0D3540 50%, var(--teal) 100%);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  padding: 0 48px;
}

.hero-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  font-weight: 500;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 10vw, 140px);
  font-weight: 300;
  line-height: 0.95;
  margin-bottom: 48px;
  letter-spacing: -2px;
}

.hero-title span {
  display: block;
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 300;
  color: var(--silver);
  max-width: 600px;
  margin: 0 auto 64px;
  line-height: 1.8;
  letter-spacing: 0.5px;
}

/* -- Scroll Indicator (F007) -- */
.scroll-indicator {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--silver);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(10px); }
}

/* -- Philosophy Section (F008) -- */
.philosophy {
  background: var(--cream);
  color: var(--deep);
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 100vh;
}

.phil-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12vh 10vw;
  max-width: 800px;
}

.phil-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 180px;
  font-weight: 300;
  color: rgba(26, 77, 92, 0.08);
  line-height: 0.8;
  margin-bottom: 32px;
}

.phil-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 400;
  margin-bottom: 32px;
  line-height: 1.1;
}

.phil-text {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(10, 31, 40, 0.7);
  font-weight: 300;
}

.phil-cinematic {
  width: 100%;
  height: 50vh;
  background: url('assets/images/velocity-as-craft.png') center center / cover no-repeat;
  background-attachment: fixed;
}

/* -- Founders Section (F015) -- */
.founders {
  background: var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.founders-container {
  max-width: 1200px;
  width: 100%;
  padding: 0 48px;
  text-align: center;
}

.founders-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.founders-subtitle {
  font-size: 18px;
  font-weight: 300;
  color: var(--silver);
  margin-bottom: 64px;
  line-height: 1.8;
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.founder-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 97, 0.15);
  padding: 64px 48px;
  text-align: left;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.founder-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 97, 0.4);
}

.founder-card:hover::before {
  opacity: 2.5;
}

.founder-number {
  position: absolute;
  top: 24px;
  right: 32px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  font-weight: 300;
  color: rgba(201, 169, 97, 0.08);
  line-height: 1;
  pointer-events: none;
}

.founder-monogram {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 400;
  color: rgba(201, 169, 97, 0.2);
  margin-bottom: 32px;
  letter-spacing: 4px;
}

.founder-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 8px;
}

.founder-role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.founder-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 24px;
}

.founder-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--cream);
  opacity: 0.7;
}

.founders-accent {
  width: 60%;
  max-width: 400px;
  height: 1px;
  background: rgba(201, 169, 97, 0.2);
  margin: 64px auto 0;
}

/* -- Capabilities Section (F009) -- */
.capabilities {
  background: var(--deep);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.cap-header {
  position: absolute;
  top: 10vh;
  left: 10vw;
  z-index: 2;
}

.cap-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.cap-container {
  display: flex;
  gap: 4vw;
  padding: 0 10vw;
  animation: scrollCaps 40s linear infinite;
}

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

.cap-card {
  min-width: 400px;
  height: 500px;
  background: rgba(26, 77, 92, 0.1);
  border: 1px solid rgba(184, 197, 201, 0.1);
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.cap-card:hover {
  background: rgba(26, 77, 92, 0.2);
  border-color: var(--gold);
  transform: scale(1.05);
}

.cap-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  font-weight: 300;
  color: rgba(201, 169, 97, 0.1);
  position: absolute;
  top: -20px;
  right: 20px;
}

.cap-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 16px;
}

.cap-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--silver);
  font-weight: 300;
}

.cap-link {
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.cap-link:hover {
  gap: 16px;
}

/* -- Experiential Capability Card Overlays (F019) -- */
.cap-metric {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: rgba(10, 31, 40, 0.92);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  border-top: 1px solid rgba(201, 169, 97, 0.2);
  z-index: 3;
}

.cap-card:hover .cap-metric,
.cap-card:focus-within .cap-metric {
  transform: translateY(0);
}

.cap-metric-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 8px;
}

.cap-metric-detail {
  font-size: 13px;
  font-weight: 400;
  color: var(--silver);
  letter-spacing: 0.5px;
}

/* -- Manifesto Section (F010) -- */
.manifesto {
  background: var(--cream);
  color: var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10vw;
}

.manifesto-content {
  max-width: 900px;
}

.manifesto-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.3;
  font-style: italic;
  margin-bottom: 48px;
  border: none;
  padding: 0;
}

.manifesto-quote em {
  color: var(--teal);
  font-style: normal;
  border-bottom: 2px solid var(--gold);
}

.manifesto-author {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(10, 31, 40, 0.5);
  font-family: 'Inter', sans-serif;
}

/* -- Contact / Qualifier Section (F016) -- */
.contact {
  background: var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10vw;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  width: 100%;
  max-width: 1200px;
}

.contact-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  margin-bottom: 32px;
  line-height: 1.1;
}

.contact-left p {
  font-size: 16px;
  color: var(--silver);
  line-height: 1.8;
  font-weight: 300;
}

/* -- Qualifier Container -- */
.qualifier {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 400px;
}

/* -- Progress Dots -- */
.qualifier-progress {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
}

.progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 97, 0.3);
  background: transparent;
  transition: all 0.3s ease;
}

.progress-dot.active {
  background: var(--gold);
  border-color: var(--gold);
}

.progress-dot.completed {
  background: var(--gold);
  border-color: var(--gold);
  opacity: 0.5;
}

/* -- Step Transitions -- */
.qualifier-steps {
  position: relative;
  overflow: hidden;
}

.qualifier-step {
  display: none;
  animation: stepSlideIn 0.3s ease forwards;
}

.qualifier-step.active {
  display: block;
}

@keyframes stepSlideIn {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* -- Back Button -- */
.qualifier-back {
  background: none;
  border: none;
  color: var(--silver);
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  padding: 0;
  margin-bottom: 24px;
  transition: color 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.qualifier-back:hover {
  color: var(--gold);
}

.qualifier-back:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* -- Question Text -- */
.qualifier-question {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 32px;
  line-height: 1.2;
}

/* -- Pill Buttons -- */
.qualifier-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.qualifier-pill {
  padding: 14px 24px;
  border: 1px solid rgba(201, 169, 97, 0.4);
  background: transparent;
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
  white-space: nowrap;
}

.qualifier-pill:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 97, 0.1);
}

.qualifier-pill[aria-checked="true"],
.qualifier-pill.selected {
  background: var(--gold);
  color: var(--deep);
  border-color: var(--gold);
  transform: scale(1.02);
  font-weight: 500;
}

.qualifier-pill:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* -- Qualifier Form (Step 4) -- */
.qualifier-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(184, 197, 201, 0.2);
  padding: 16px 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--cream);
  transition: border-color 0.3s ease;
}

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

.form-group label {
  position: absolute;
  left: 0;
  top: 16px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--silver);
  transition: all 0.3s ease;
  pointer-events: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -20px;
  font-size: 11px;
  color: var(--gold);
}

.form-group textarea {
  resize: none;
  height: 120px;
}

.submit-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 20px 48px;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  align-self: flex-start;
}

.submit-btn:hover {
  background: var(--gold);
  color: var(--deep);
}

.submit-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* -- Success Message -- */
.qualifier-success {
  text-align: center;
  padding: 48px 0;
}

.qualifier-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 16px;
}

.qualifier-success p {
  color: var(--silver);
  font-size: 16px;
}

/* -- Meta-Proof Footer (F018) -- */
.meta-proof {
  background: var(--deep);
  text-align: center;
  padding: 48px 24px 64px;
}

.meta-proof-separator {
  width: 200px;
  height: 1px;
  background: rgba(201, 169, 97, 0.1);
  margin: 0 auto 32px;
}

.meta-proof-primary {
  font-size: 13px;
  font-weight: 400;
  color: rgba(184, 197, 201, 0.5);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.meta-proof-secondary {
  font-size: 11px;
  font-weight: 400;
  color: rgba(184, 197, 201, 0.3);
  letter-spacing: 0.5px;
}

.meta-proof-copyright {
  font-size: 10px;
  font-weight: 400;
  color: rgba(184, 197, 201, 0.2);
  letter-spacing: 0.3px;
  margin-top: 24px;
}

/* -- Focus Indicators (F013) -- */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 968px) {
  :root {
    --quilt-size: 30px;
  }

  body {
    cursor: auto;
  }

  .cursor, .cursor-follower {
    display: none;
  }

  .nav-vertical {
    display: none;
  }

  .hero-title {
    font-size: clamp(48px, 8vw, 80px);
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 48px;
  }

  .phil-inner {
    padding: 10vh 8vw;
  }

  .phil-number {
    font-size: 120px;
  }

  .phil-title {
    font-size: 40px;
  }

  .phil-cinematic {
    height: 40vh;
    background-attachment: scroll;
  }

  .founders-container {
    padding: 0 24px;
  }

  .founders-title {
    font-size: 48px;
  }

  .founders-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .founder-card {
    padding: 48px 32px;
  }

  .founder-number {
    font-size: 80px;
  }

  .cap-card {
    min-width: 300px;
  }

  /* Metric overlay: persistent bottom bar on mobile */
  .cap-metric {
    transform: translateY(65%);
    padding: 16px 24px;
  }

  .cap-card:hover .cap-metric {
    transform: translateY(0);
  }

  .cap-metric-number {
    font-size: 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-left h2 {
    font-size: 48px;
  }

  .qualifier-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .qualifier-pill {
    white-space: normal;
    text-align: left;
    font-size: 13px;
    padding: 12px 16px;
  }

  .qualifier-question {
    font-size: 28px;
  }

  .manifesto-content {
    padding: 0 8vw;
  }
}

@media (max-width: 480px) {
  .qualifier-options {
    grid-template-columns: 1fr;
  }

  .contact-left h2 {
    font-size: 40px;
  }

  .founders-title {
    font-size: 36px;
  }
}

/* -- Reduced Motion (F013) -- */
@media (prefers-reduced-motion: reduce) {
  .texture-quilted::before,
  .texture-quilted-light::before,
  .texture-quilted-subtle::before {
    animation: none;
  }

  .scroll-line {
    animation: none;
    opacity: 0.6;
  }

  .cap-container {
    animation: none;
  }

  .qualifier-step {
    animation: none;
  }

  .loader-text {
    animation: none;
    opacity: 1;
  }

  .loader-progress {
    animation: none;
    width: 100%;
  }

  .phil-cinematic {
    background-attachment: scroll;
  }

  .cursor,
  .cursor-follower {
    display: none;
  }

  * {
    transition-duration: 0.01s !important;
  }
}

/* iOS/touch: background-attachment:fixed is broken */
@supports (-webkit-touch-callout: none) {
  .phil-cinematic {
    background-attachment: scroll;
  }
}
