/* ═══════════════════════════════════════
   CONTACT — Start a Conversation
   wearetilt.com/contact
   Multi-step experiential contact page
═══════════════════════════════════════ */

/* ═══════════════════════════════════════
   HERO — IMMERSIVE VIDEO + GLOW
═══════════════════════════════════════ */
.c-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--deep);
}

.c-hero-video {
  position: absolute;
  inset: 0;
}

.c-hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.c-hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--deep) 0%, rgba(26,26,26,0.4) 40%, rgba(26,26,26,0.2) 70%, rgba(26,26,26,0.6) 100%),
    linear-gradient(to right, rgba(26,26,26,0.8) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.c-hero-glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  transition: background 0.3s ease;
}

.c-hero-content {
  position: relative;
  z-index: 5;
  padding: 0 var(--section-pad);
  max-width: 900px;
}

.c-hero-eyebrow {
  font-family: var(--body);
  font-size: var(--eyebrow-size);
  font-weight: var(--eyebrow-weight);
  letter-spacing: var(--eyebrow-spacing);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.eyebrow-line {
  display: block;
  width: 50px;
  height: 1px;
  background: var(--accent);
}

.c-hero-title {
  font-family: var(--display);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 400;
  line-height: 0.95;
  color: var(--paper);
  margin-bottom: 2rem;
}

.c-hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(70px) rotate(1.5deg);
  animation: heroLine 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.c-hero-title .line:nth-child(1) { animation-delay: 0.5s; }
.c-hero-title .line:nth-child(2) { animation-delay: 0.7s; }
.c-hero-title .line:nth-child(3) { animation-delay: 0.9s; }

.c-hero-title em {
  font-style: italic;
  color: var(--accent);
}

.c-hero-sub {
  font-family: var(--body);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 480px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}

/* Hero CTA button */
.c-hero-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-top: var(--space-lg);
  text-decoration: none;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.3s forwards;
}

.c-hero-cta span:first-child {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--paper);
  transition: color 0.3s ease;
}

.c-hero-cta:hover span:first-child {
  color: var(--accent);
}

.cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(247,245,242,0.2);
  border-radius: 50%;
  animation: ctaBounce 2s ease-in-out infinite;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.cta-arrow svg {
  width: 20px;
  height: 20px;
  color: var(--paper);
}

.c-hero-cta:hover .cta-arrow {
  border-color: var(--accent);
  background: rgba(255,76,116,0.1);
}

@keyframes ctaBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Floating social proof strip */
.c-hero-proof {
  position: absolute;
  bottom: 2.5rem;
  right: var(--section-pad);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.6s forwards;
}

.proof-stat {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(247,245,242,0.4);
}

.proof-stat strong {
  font-weight: 600;
  color: var(--accent);
  font-size: 0.85rem;
}

.proof-divider {
  width: 1px;
  height: 16px;
  background: rgba(247,245,242,0.15);
}

/* ═══════════════════════════════════════
   MULTI-STEP FORM SECTION
═══════════════════════════════════════ */
.c-form-section {
  background: var(--deep);
  position: relative;
  padding-top: 2rem;
  padding-bottom: 4rem;
}

/* ── PROGRESS BAR ── */
.c-progress {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1.5rem var(--section-pad);
  background: rgba(26,26,26,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: opacity 0.5s ease;
}

.c-progress.complete {
  opacity: 0;
  pointer-events: none;
}

.c-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width 0.6s var(--ease-out-expo);
}

.c-progress-steps {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.c-progress-dot {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0;
  transition: opacity 0.3s ease;
}

.dot-num {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(247,245,242,0.55);
  transition: color 0.4s ease;
}

.dot-label {
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,245,242,0.55);
  transition: color 0.4s ease;
}

.c-progress-dot.active .dot-num { color: var(--accent); }
.c-progress-dot.active .dot-label { color: rgba(247,245,242,0.5); }
.c-progress-dot.current .dot-label { color: var(--paper); }

/* ── STEP CONTAINER ── */
.c-form {
  transition: opacity 0.5s ease, transform 0.5s var(--ease-out-expo);
}

.c-form.form-sent {
  opacity: 0;
  transform: translateY(-30px);
  pointer-events: none;
}

.c-step {
  display: none;
  padding: 4rem var(--section-pad);
  align-items: stretch;
}

.c-step.active {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 5rem;
  animation: stepIn 0.6s var(--ease-out-expo) forwards;
}

.c-step.exiting {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 5rem;
  animation: stepOut 0.35s ease forwards;
}

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

@keyframes stepOut {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-40px); }
}

/* ── STEP CONTENT (LEFT) ── */
.c-step-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
}

.c-step-header {
  margin-bottom: var(--space-lg);
}

.c-step-eyebrow {
  font-family: var(--body);
  font-size: var(--eyebrow-size);
  font-weight: var(--eyebrow-weight);
  letter-spacing: var(--eyebrow-spacing);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: block;
}

.c-step-title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--paper);
  margin-bottom: 1rem;
}

.c-step-title em {
  font-style: italic;
  color: var(--accent);
}

.c-step-sub {
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(247,245,242,0.65);
  line-height: 1.7;
}

/* ── STEP VISUAL (RIGHT) ── */
.c-step-visual {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border-radius: 4px;
}

.c-step-visual-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.8s ease, transform 1.2s var(--ease-out-expo);
}

.c-step-visual-img.active {
  opacity: 1;
  transform: scale(1);
}

.c-step-visual-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--deep) 0%, rgba(26,26,26,0.3) 40%, rgba(26,26,26,0.1) 70%, rgba(26,26,26,0.4) 100%);
}

.c-step-visual-quote {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  z-index: 2;
}

.c-step-visual-quote blockquote {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--paper);
  line-height: 1.5;
}

.c-step-visual-quote blockquote em {
  color: var(--accent);
  font-style: italic;
}

.c-step-visual-quote cite {
  display: block;
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  font-style: normal;
  margin-top: 1rem;
}

/* Visual stats */
.c-step-visual-stats {
  display: flex;
  gap: 3rem;
}

.visual-stat-num {
  display: block;
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.visual-stat-label {
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,245,242,0.65);
}

/* ═══════════════════════════════════════
   STEP 1 — TILE SELECTION
═══════════════════════════════════════ */
.c-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.c-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(247,245,242,0.08);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  overflow: hidden;
}

.c-tile-full {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 1.2rem;
}

.c-tile-full .c-tile-icon {
  margin-bottom: 0;
}

.c-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.c-tile:hover {
  border-color: rgba(255,76,116,0.25);
  transform: translateY(-2px);
}

.c-tile.selected {
  border-color: var(--accent);
  background: rgba(255,76,116,0.08);
}

.c-tile-icon {
  position: relative;
  z-index: 1;
  margin-bottom: 0.8rem;
}

.c-tile-icon svg {
  width: 28px;
  height: 28px;
  color: rgba(247,245,242,0.55);
  transition: color 0.3s ease;
}

.c-tile:hover .c-tile-icon svg,
.c-tile.selected .c-tile-icon svg {
  color: var(--accent);
}

.c-tile-label {
  position: relative;
  z-index: 1;
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--paper);
  margin-bottom: 0.3rem;
  transition: color 0.3s ease;
}

.c-tile-desc {
  position: relative;
  z-index: 1;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(247,245,242,0.65);
  line-height: 1.5;
  transition: color 0.3s ease;
}

.c-tile.selected .c-tile-desc {
  color: rgba(247,245,242,0.55);
}

/* Checkmark */
.c-tile-check {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(247,245,242,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: all 0.3s ease;
}

.c-tile-check svg {
  width: 12px;
  height: 12px;
  color: transparent;
  transition: color 0.3s ease;
}

.c-tile.selected .c-tile-check {
  border-color: var(--accent);
  background: var(--accent);
}

.c-tile.selected .c-tile-check svg {
  color: var(--paper);
}

/* ═══════════════════════════════════════
   FORM FIELDS — DARK THEME
═══════════════════════════════════════ */
.c-fields {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.c-field {
  position: relative;
  margin-bottom: 2rem;
}

.c-field label {
  display: block;
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,245,242,0.65);
  margin-bottom: 0.6rem;
  transition: color 0.3s ease;
}

.c-field .optional {
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: none;
  color: rgba(247,245,242,0.2);
}

.c-field input,
.c-field textarea {
  display: block;
  width: 100%;
  font-family: var(--body);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--paper);
  background: transparent;
  border: 1px solid rgba(247,245,242,0.18);
  border-radius: 4px;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.4s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.c-field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.7;
}

.c-field input::placeholder,
.c-field textarea::placeholder {
  color: rgba(247,245,242,0.55);
}

/* Animated underline */
.c-field-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.5s var(--ease-out-expo);
  pointer-events: none;
}

.c-field input:focus ~ .c-field-line,
.c-field textarea:focus ~ .c-field-line {
  width: 100%;
}

.c-field input:focus,
.c-field textarea:focus {
  border-color: var(--accent);
}

.c-field:focus-within label {
  color: var(--accent);
}

/* Field rows */
.c-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* Select */
.c-select-wrap {
  position: relative;
}

.c-select-wrap select {
  display: block;
  width: 100%;
  font-family: var(--body);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--paper);
  background: transparent;
  border: 1px solid rgba(247,245,242,0.18);
  border-radius: 4px;
  padding: 0.8rem 2rem 0.8rem 1rem;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: border-color 0.4s ease;
}

.c-select-wrap select option {
  background: var(--deep);
  color: var(--paper);
}

.c-select-wrap select:focus {
  border-bottom-color: var(--accent);
}

.c-select-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: rgba(247,245,242,0.3);
  pointer-events: none;
  transition: color 0.3s ease;
}

.c-field:focus-within .c-select-icon {
  color: var(--accent);
}

/* Error state */
.c-field-error label {
  color: var(--accent) !important;
}

.c-field-error input,
.c-field-error textarea,
.c-field-error select {
  border-bottom-color: var(--accent) !important;
}

.c-field-error .c-field-line {
  background: var(--accent);
  width: 100%;
}

.c-field-error input::placeholder,
.c-field-error textarea::placeholder {
  color: var(--accent) !important;
  opacity: 1;
}

/* File upload error messages (kept as separate elements since file inputs have no placeholder) */
.c-field-error-msg {
  display: none;
  font-family: var(--body);
  font-size: 0.78rem;
  color: var(--accent);
  margin-top: 0.4rem;
  line-height: 1.3;
}

.c-upload-field .c-field-error-msg.active {
  display: block;
}

/* File upload */
.c-upload-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(247,245,242,0.65);
  cursor: pointer;
  padding: 1rem 1.2rem;
  border: 1px dashed rgba(247,245,242,0.1);
  transition: all 0.3s ease;
  width: 100%;
}

.c-upload-trigger:hover {
  color: var(--accent);
  border-color: rgba(255,76,116,0.3);
  background: rgba(255,76,116,0.03);
}

.c-upload-trigger svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.c-upload-hint {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(247,245,242,0.2);
  margin-left: auto;
}

.c-upload-files {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.c-upload-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--paper);
  background: rgba(255,76,116,0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 2px;
}

.c-upload-pill-x {
  background: none;
  border: none;
  color: rgba(247,245,242,0.4);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  padding: 0 0.2rem;
  transition: color 0.2s ease;
}

.c-upload-pill-x:hover {
  color: var(--accent);
}

/* ── NAVIGATION BUTTONS ── */
.c-step-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.c-next-btn,
.c-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--accent);
  border: none;
  padding: 1.2rem 2.5rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
}

.c-next-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.c-next-btn:not(:disabled):hover,
.c-submit-btn:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.c-next-btn svg,
.c-submit-btn .submit-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease-out-expo);
}

.c-next-btn:not(:disabled):hover svg,
.c-submit-btn:hover .submit-arrow {
  transform: translateX(4px);
}

.c-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247,245,242,0.4);
  background: none;
  border: 1px solid rgba(247,245,242,0.1);
  padding: 1.2rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.c-back-btn:hover {
  color: var(--paper);
  border-color: rgba(247,245,242,0.25);
}

.c-back-btn svg {
  width: 16px;
  height: 16px;
}

/* Submit loading */
.c-submit-btn .submit-loading {
  display: none;
}

.c-submit-btn.loading .submit-text,
.c-submit-btn.loading .submit-arrow {
  display: none;
}

.c-submit-btn.loading .submit-loading {
  display: flex;
}

.c-submit-btn.loading .submit-loading svg {
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Response time */
.c-response-time {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(247,245,242,0.3);
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(247,245,242,0.04);
}

.c-response-time svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.5;
}

/* ═══════════════════════════════════════
   SUCCESS STATE
═══════════════════════════════════════ */
.c-success[hidden] {
  display: none;
}

.c-success {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-success-inner {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 500px;
  opacity: 0;
  transform: translateY(30px);
}

.c-success.active .c-success-inner {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s var(--ease-out-expo) 0.2s;
}

.c-success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2.5rem;
}

.c-success.active .success-circle {
  animation: drawCircle 0.8s ease 0.4s forwards;
}

.c-success.active .success-check {
  animation: drawCheck 0.4s ease 1s forwards;
}

@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

.c-success-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--paper);
  margin-bottom: 1.2rem;
}

.c-success-title em {
  font-style: italic;
  color: var(--accent);
}

.c-success-text {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(247,245,242,0.5);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.c-success-actions {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.c-success-link {
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  padding-bottom: 3px;
  position: relative;
}

.c-success-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.4s var(--ease-out-expo);
}

.c-success-link:hover::after { width: 100%; }

.c-success-link-alt {
  color: rgba(247,245,242,0.4);
}

.c-success-link-alt::after {
  background: rgba(247,245,242,0.4);
}

/* ═══════════════════════════════════════
   DIRECT CONTACT — ALTERNATIVE CHANNELS
═══════════════════════════════════════ */
.c-direct {
  padding: 6rem var(--section-pad);
  background: var(--paper);
}

.c-direct-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.c-direct-header {
  margin-bottom: 4rem;
}

.c-direct-eyebrow {
  font-family: var(--body);
  font-size: var(--eyebrow-size);
  font-weight: var(--eyebrow-weight);
  letter-spacing: var(--eyebrow-spacing);
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.c-direct-title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
}

.c-direct-title em {
  font-style: italic;
  color: var(--accent);
}

.c-direct-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: var(--space-xl);
}

.c-direct-card {
  position: relative;
  padding: 2.5rem;
  border: 1px solid rgba(10,10,10,0.06);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s var(--ease-out-expo);
  display: flex;
  flex-direction: column;
}

.c-direct-card:hover {
  border-color: rgba(255,76,116,0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(10,10,10,0.06);
}

.c-direct-icon {
  margin-bottom: 1.5rem;
}

.c-direct-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.c-direct-label {
  display: block;
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.c-direct-value {
  font-family: var(--body);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.6;
  font-style: normal;
  transition: color 0.3s ease;
}

a.c-direct-card:hover .c-direct-value {
  color: var(--accent);
}

.c-direct-arrow {
  position: absolute;
  top: 2rem;
  right: 2rem;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: all 0.4s var(--ease-out-expo);
}

.c-direct-arrow svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.c-direct-card:hover .c-direct-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

/* Trust strip */
.c-trust {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(10,10,10,0.06);
}

.c-trust-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  flex-shrink: 0;
}

.c-trust-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.c-trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.c-trust-logos span {
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.55);
}

/* ═══════════════════════════════════════
   STUDIO CARD — BUTTON RESET
═══════════════════════════════════════ */
button.c-direct-card-studio {
  cursor: pointer;
  text-align: left;
  background: none;
}

/* ═══════════════════════════════════════
   MAP OVERLAY
═══════════════════════════════════════ */
.c-map-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.c-map-overlay.active {
  opacity: 1;
  visibility: visible;
}

.c-map-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.c-map-overlay-panel {
  position: relative;
  z-index: 1;
  width: 90vw;
  max-width: 900px;
  height: 75vh;
  max-height: 650px;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border-radius: var(--radius-md);
  overflow: hidden;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.5s var(--ease-out-expo);
}

.c-map-overlay.active .c-map-overlay-panel {
  transform: translateY(0) scale(1);
}

.c-map-overlay-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 2rem 2.5rem;
  border-bottom: 1px solid rgba(10, 10, 10, 0.06);
}

.c-map-overlay-title {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.c-map-overlay-title em {
  font-style: italic;
  color: var(--accent);
}

.c-map-overlay-address {
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 400;
  font-style: normal;
  color: var(--muted);
  line-height: 1.5;
}

.c-map-overlay-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.c-map-overlay-close svg {
  width: 18px;
  height: 18px;
  color: var(--muted);
  transition: color 0.3s ease;
}

.c-map-overlay-close:hover {
  border-color: var(--accent);
  background: rgba(255, 76, 116, 0.05);
}

.c-map-overlay-close:hover svg {
  color: var(--accent);
}

.c-map-overlay-embed {
  flex: 1;
  position: relative;
}

.c-map-overlay-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.c-map-overlay-footer {
  padding: 1.2rem 2.5rem;
  border-top: 1px solid rgba(10, 10, 10, 0.06);
  display: flex;
  align-items: center;
}

.c-map-overlay-directions {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.c-map-overlay-directions svg {
  width: 18px;
  height: 18px;
}

.c-map-overlay-directions:hover {
  opacity: 0.7;
}

/* ═══════════════════════════════════════
   RESPONSIVE — 1100px
═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .c-step.active,
  .c-step.exiting {
    grid-template-columns: 1fr 0.7fr;
    gap: 3rem;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — 900px (TABLET)
═══════════════════════════════════════ */
@media (max-width: 900px) {
  .c-hero { min-height: 80vh; }
  .c-hero-content { padding: 0 2rem; }
  .c-hero-proof { display: none; }

  .c-form-section { padding-top: 0; }

  .c-step {
    min-height: auto;
  }

  .c-step.active,
  .c-step.exiting {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: var(--space-lg) 2rem;
  }

  .c-step-visual {
    display: none;
  }

  .c-tiles {
    grid-template-columns: 1fr;
  }

  .c-progress { padding: 1.2rem 2rem; }

  .c-direct { padding: var(--space-xl) 2rem; }
  .c-direct-grid { grid-template-columns: 1fr; gap: 1rem; }

  .c-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .c-field-row { grid-template-columns: 1fr; gap: 0; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — 600px (MOBILE)
═══════════════════════════════════════ */
@media (max-width: 600px) {
  .c-hero { min-height: 70vh; }
  .c-hero-content { padding: 0 1.5rem; }

  .c-step.active,
  .c-step.exiting {
    padding: 2.5rem 1.5rem;
  }

  .c-progress { padding: 1rem 1.5rem; }
  .dot-label { display: none; }

  .c-tile { padding: 1.2rem 1rem; }

  .c-step-nav {
    flex-direction: column;
    gap: 0.8rem;
  }

  .c-step-nav {
    gap: 0.6rem;
  }

  .c-next-btn,
  .c-submit-btn,
  .c-back-btn {
    width: 100%;
    justify-content: center;
  }

  .c-step-header {
    margin-bottom: 2rem;
  }

  .c-direct { padding: 3.5rem 1.5rem; }
  .c-direct-card { padding: 2rem 1.5rem; }

  .c-success-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .c-map-overlay-panel {
    width: 96vw;
    height: 85vh;
    max-height: none;
  }

  .c-map-overlay-header {
    padding: 1.5rem;
  }

  .c-map-overlay-title {
    font-size: 1.3rem;
  }

  .c-map-overlay-footer {
    padding: 1rem 1.5rem;
  }
}
