/* Printedyou — minimal editorial */
:root {
  --bg: #ffffff;
  --bg-soft: #fafafa;
  --bg-tint: #f4f5f7;
  --ink: #0a0a0a;
  --ink-2: #1f1f1f;
  --muted: #6b6b6b;
  --muted-2: #9b9b9b;
  --line: #e7e7e7;
  --line-strong: #d4d4d4;
  --blue: #1d4ed8;
  --blue-hover: #1739a8;
  --blue-tint: #eef2ff;
  --serif: "Instrument Serif", "Times New Roman", serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", "Geist Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100%;
}
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
}
img, video, iframe { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.mono { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; }
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
}

/* Layout */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 0; }
.section-tight { padding: 80px 0; }
.divider { height: 1px; background: var(--line); width: 100%; }

/* Nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  transition: all 0.3s ease;
}
.nav.scrolled, .nav.solid {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 8px;
}
.nav-logo .dot {
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
  display: inline-block;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-link {
  font-size: 13px;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--blue);
}
.nav.hero-mode { color: #fff; }
.nav.hero-mode .nav-logo,
.nav.hero-mode .nav-link { color: #fff; }
.nav.hero-mode .btn-primary {
  background: #fff; color: var(--ink);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 999px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
  background: none;
  color: inherit;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover { background: var(--blue-hover); }
.btn-ghost {
  border-color: var(--line-strong);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-light {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(8px);
}
.btn-light:hover { background: rgba(255,255,255,0.22); }
.btn-arrow::after {
  content: "→";
  transition: transform 0.2s ease;
}
.btn-arrow:hover::after { transform: translateX(3px); }
.btn-block { width: 100%; justify-content: center; padding: 16px 22px; }

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  width: 100%;
  overflow: hidden;
  color: #fff;
}
.hero-video, .hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-video {
  /* push past any baked-in letterboxing in the source mp4 */
  transform: scale(1.06);
  transform-origin: center;
}
.hero-fallback {
  background: #0a0a0a;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.18) 40%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 48px 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 300;
  margin: 0 0 24px;
  max-width: 14ch;
}
.hero h1 em {
  font-style: italic;
  color: #c7d2ff;
}
.hero-sub {
  font-size: 16px;
  max-width: 38ch;
  margin: 0 0 36px;
  color: rgba(255,255,255,0.86);
  line-height: 1.5;
}
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta {
  position: absolute;
  top: 96px; right: 48px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  text-align: right;
  line-height: 1.8;
}
.hero-meta .dot-live {
  display: inline-block;
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
  display: inline-flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: ""; width: 32px; height: 1px; background: rgba(255,255,255,0.6);
}

/* Marquee strip */
.strip {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 18px 32px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  overflow: hidden;
  white-space: nowrap;
}
.strip-item { display: inline-flex; align-items: center; gap: 8px; }
.strip-item::before { content: "◆"; color: var(--blue); font-size: 8px; }

/* Section heads */
.section-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  margin-bottom: 64px;
  align-items: end;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 18ch;
}
.section-head h2 em { font-style: italic; color: var(--blue); }
.section-head p {
  color: var(--muted);
  font-size: 15px;
  max-width: 42ch;
  margin: 0;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.step {
  padding: 40px 32px 48px;
  position: relative;
}
.step-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--blue);
  letter-spacing: 0.12em;
  margin-bottom: 0;
  min-height: 0;
}
.step h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 12px;
}
.step p { color: var(--muted); font-size: 14px; margin: 0; }
.step-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
}

/* Categories */
.categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.category {
  background: var(--bg);
  padding: 0;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: background 0.2s ease;
}
.category:hover { background: var(--bg-soft); }
.category-img {
  aspect-ratio: 4 / 3;
  background: var(--bg-tint);
  position: relative;
  overflow: hidden;
}
.category-meta { padding: 24px 28px 32px; display: flex; justify-content: space-between; align-items: end; gap: 16px; }
.category h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
}
.category-meta p { color: var(--muted); font-size: 13px; margin: 0; }
.category-meta .price { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: var(--ink); white-space: nowrap; }

/* Placeholder image */
.placeholder {
  width: 100%; height: 100%;
  background-image: repeating-linear-gradient(135deg, #f4f5f7 0px, #f4f5f7 12px, #ebedf0 12px, #ebedf0 24px);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted-2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
}
.placeholder::before {
  content: ""; position: absolute; inset: 16px;
  border: 1px dashed var(--line-strong);
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.review {
  display: grid;
  grid-template-columns: 220px 1fr;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.review-photo {
  background: var(--bg-tint);
  aspect-ratio: 9 / 16;
  width: 100%;
}
.review-photo .placeholder { width: 100%; height: 100%; }
.review-body {
  padding: 28px 32px;
  display: flex; flex-direction: column; gap: 18px;
  justify-content: space-between;
}
.review-stars { color: var(--blue); font-size: 14px; letter-spacing: 2px; }
.review-text {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.review-meta {
  display: flex; justify-content: space-between; align-items: end;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  font-size: 12px;
}
.review-name { font-weight: 500; color: var(--ink); }
.review-loc { color: var(--muted); margin-top: 2px; }
.review-size { font-family: var(--mono); color: var(--muted); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; }
@media (max-width: 960px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .review-body { padding: 20px 22px; }
  .review-text { font-size: 17px; }
}
/* Reviews end */


/* Process / showcase */
.showcase {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 160px;
  gap: 0;
  align-items: stretch;
}
.showcase-text { padding: 80px 0; }
.showcase-img { aspect-ratio: 1 / 1; background: var(--bg-tint); }
.showcase h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 24px 0 24px;
  max-width: 16ch;
}
.showcase p {
  color: var(--muted);
  font-size: 15px;
  max-width: 44ch;
  line-height: 1.65;
  margin: 0 0 32px;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 80px 0 48px;
  background: var(--bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 80px;
}
.footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  margin: 0 0 18px;
}
.footer-link {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  background: none; border: none; text-align: left;
}
.footer-link:hover { color: var(--blue); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 32px;
  display: flex; justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}
.footer-brand-block { max-width: 36ch; }
.footer-brand {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.footer-brand .dot { width: 8px; height: 8px; background: var(--blue); border-radius: 50%; }

/* Page header (non-hero pages) */
.page-header {
  padding: 160px 0 80px;
  border-bottom: 1px solid var(--line);
}
.page-header .eyebrow { margin-bottom: 24px; }
.page-header h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  max-width: 18ch;
}
.page-header p { color: var(--muted); font-size: 16px; max-width: 52ch; margin: 0; }
.page-header h1 em { font-style: italic; color: var(--blue); }

/* Order form */
.order-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  min-height: calc(100vh - 80px);
  border-top: 1px solid var(--line);
}
.order-sidebar {
  border-right: 1px solid var(--line);
  padding: 56px 40px;
  position: sticky; top: 64px;
  align-self: start;
  background: var(--bg-soft);
  height: calc(100vh - 64px);
}
.order-main { padding: 56px 64px 120px; max-width: 720px; }

.steplist { display: flex; flex-direction: column; gap: 4px; }
.steplist-item {
  display: flex; gap: 16px;
  padding: 14px 0;
  align-items: flex-start;
  cursor: pointer;
  background: none; border: none; text-align: left;
  width: 100%;
  border-bottom: 1px solid var(--line);
}
.steplist-item:last-child { border-bottom: none; }
.steplist-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted-2);
  width: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.steplist-title {
  font-size: 14px;
  color: var(--ink-2);
}
.steplist-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.steplist-item.active .steplist-num,
.steplist-item.active .steplist-title { color: var(--blue); }
.steplist-item.done .steplist-num { color: var(--blue); }
.steplist-item.done .steplist-num::after { content: " ✓"; }

.form-section { margin-bottom: 48px; }
.form-step {
  display: none;
  animation: fadeIn 0.4s ease;
}
.form-step.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.form-step h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.form-step h2 em { font-style: italic; color: var(--blue); }
.form-step .lead { color: var(--muted); font-size: 15px; margin: 0 0 40px; max-width: 52ch; }

.field { margin-bottom: 24px; }
.field label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.input, .textarea, .select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: var(--bg);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease;
}
.input:focus, .textarea:focus, .select:focus { border-color: var(--blue); }
.textarea { min-height: 120px; resize: vertical; line-height: 1.5; }

/* Photo upload */
.uploader {
  border: 1.5px dashed var(--line-strong);
  border-radius: 8px;
  padding: 48px 32px;
  text-align: center;
  background: var(--bg-soft);
  cursor: pointer;
  transition: all 0.2s ease;
}
.uploader:hover, .uploader.drag {
  border-color: var(--blue);
  background: var(--blue-tint);
}
.uploader-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  background: var(--bg);
  color: var(--blue);
}
.uploader p { margin: 0; }
.uploader .big { font-size: 16px; color: var(--ink); margin-bottom: 4px; }
.uploader .small { font-size: 12px; color: var(--muted); }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.photo-tile {
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  background: var(--bg-tint);
}
.photo-tile img { width: 100%; height: 100%; object-fit: cover; }
.photo-tile .remove {
  position: absolute; top: 6px; right: 6px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.photo-tile .badge-primary {
  position: absolute; bottom: 6px; left: 6px;
  background: var(--blue); color: #fff;
  font-family: var(--mono);
  font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 6px;
  border-radius: 3px;
}

/* Option cards */
.option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.option-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.option-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.option-card {
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.15s ease;
  background: var(--bg);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.option-card:hover { border-color: var(--ink); }
.option-card.selected {
  border-color: var(--blue);
  background: var(--blue-tint);
  box-shadow: 0 0 0 1px var(--blue);
}
.option-card .label {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.option-card .sub { font-size: 12px; color: var(--muted); }
.option-card .price-tag { font-family: var(--mono); font-size: 11px; color: var(--blue); margin-top: 4px; }

/* Stepper (for number) */
.stepper {
  display: flex; align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  width: fit-content;
  overflow: hidden;
}
.stepper button {
  width: 44px; height: 44px;
  background: var(--bg); border: none;
  font-size: 18px; color: var(--ink);
}
.stepper button:hover { background: var(--bg-soft); }
.stepper .val {
  font-family: var(--serif);
  font-size: 24px;
  width: 60px;
  text-align: center;
}

.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 32px;
  margin-top: 48px;
}

/* Review summary */
.review-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
  background: var(--bg-soft);
  margin-bottom: 24px;
}
.review-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.review-row:last-child { border-bottom: none; }
.review-row .key { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); padding-top: 2px; }

.callout {
  background: var(--blue-tint);
  border-left: 3px solid var(--blue);
  padding: 20px 24px;
  font-size: 13px;
  color: var(--ink-2);
  border-radius: 0 6px 6px 0;
  margin: 24px 0;
}
.callout strong { color: var(--blue); }

/* Confirmation screen */
.confirmation {
  text-align: center;
  padding: 80px 32px;
  max-width: 560px;
  margin: 0 auto;
}
.confirmation-mark {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 32px;
  font-size: 32px;
}
.confirmation h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 48px;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.confirmation p { color: var(--muted); font-size: 15px; margin: 0 0 32px; }
.order-id {
  font-family: var(--mono);
  font-size: 13px;
  background: var(--bg-soft);
  padding: 12px 18px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 32px;
}

/* Dashboard */
.dash-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  min-height: calc(100vh - 64px);
}
.dash-list {
  border-right: 1px solid var(--line);
  padding: 32px 0;
}
.dash-list-header {
  padding: 0 32px 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
}
.dash-list-header .mono { display: block; margin-bottom: 4px; }
.dash-list-header .count {
  font-family: var(--serif);
  font-size: 36px;
  letter-spacing: -0.02em;
  font-weight: 300;
}
.dash-item {
  display: block;
  padding: 20px 32px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  background: none; border-left: none; border-right: none; border-top: none;
  width: 100%;
  text-align: left;
  transition: background 0.15s ease;
}
.dash-item:hover { background: var(--bg-soft); }
.dash-item.active { background: var(--blue-tint); border-left: 2px solid var(--blue); padding-left: 30px; }
.dash-item-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.dash-item-head .id { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.dash-item-head .stage-tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; }
.stage-tag.received { color: var(--muted); }
.stage-tag.modeling { color: #d97706; }
.stage-tag.quote { color: var(--blue); }
.stage-tag.printing { color: #6d28d9; }
.stage-tag.shipped { color: #059669; }
.dash-item-title { font-size: 14px; color: var(--ink); margin-bottom: 4px; }
.dash-item-meta { font-size: 12px; color: var(--muted); }

.dash-detail { padding: 56px 64px; }
.dash-detail-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.dash-detail-head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 40px;
  letter-spacing: -0.02em;
  margin: 8px 0 0;
}

/* Pipeline */
.pipeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-bottom: 56px;
  position: relative;
}
.pipeline-step {
  padding: 24px 16px 24px 0;
  border-top: 2px solid var(--line);
  position: relative;
}
.pipeline-step.done { border-top-color: var(--blue); }
.pipeline-step.current { border-top-color: var(--blue); }
.pipeline-step::before {
  content: "";
  position: absolute;
  top: -7px; left: 0;
  width: 12px; height: 12px;
  background: var(--bg);
  border: 2px solid var(--line-strong);
  border-radius: 50%;
}
.pipeline-step.done::before { background: var(--blue); border-color: var(--blue); }
.pipeline-step.current::before {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-tint);
}
.pipeline-step .stage-num { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.1em; }
.pipeline-step h4 { font-family: var(--serif); font-weight: 400; font-size: 16px; margin: 6px 0 4px; }
.pipeline-step p { font-size: 12px; color: var(--muted); margin: 0; }

.dash-cols {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}
.dash-block { border: 1px solid var(--line); border-radius: 8px; padding: 28px; }
.dash-block h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 16px;
}
.timeline-event {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.timeline-event:last-child { border-bottom: none; }
.timeline-event .when { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.timeline-event .what strong { font-weight: 500; }
.timeline-event .what p { margin: 4px 0 0; color: var(--muted); }

/* Quote ready / payment block */
.quote-block {
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
}
.quote-block .mono { color: rgba(255,255,255,0.6); }
.quote-amount {
  font-family: var(--serif);
  font-size: 56px;
  letter-spacing: -0.02em;
  font-weight: 300;
  margin: 12px 0 4px;
}
.quote-detail { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 24px; }
.quote-block .btn-primary { background: var(--blue); }
.quote-block .btn-primary:hover { background: var(--blue-hover); }

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  padding: 80px 0 120px;
}
.faq-side .mono { display: block; margin-bottom: 24px; }
.faq-side-link {
  display: block;
  padding: 8px 0;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  background: none; border: none; text-align: left; width: 100%;
}
.faq-side-link.active, .faq-side-link:hover { color: var(--blue); }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  cursor: pointer;
  background: none; border: none; width: 100%; text-align: left;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.faq-q .plus { font-size: 20px; color: var(--blue); transition: transform 0.2s ease; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  padding-right: 80px;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 24px;
}

/* About */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}
.about-hero h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 16px 0 24px;
}
.about-hero p { color: var(--muted); font-size: 15px; line-height: 1.7; margin: 0 0 16px; }
.about-img { aspect-ratio: 4/5; background: var(--bg-tint); }
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 80px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat { padding: 0 32px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 64px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-num em { color: var(--blue); font-style: normal; font-size: 28px; vertical-align: top; margin-left: 2px; }
.stat-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 12px; }

/* Page entrance */
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroTextRise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroVideoFade {
  from { opacity: 0; transform: scale(1.1); }
  to { opacity: 1; transform: scale(1.06); }
}
.page-enter {
  animation: pageFadeIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-video {
  animation: heroVideoFade 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-eyebrow { animation: heroTextRise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both; }
.hero h1 { animation: heroTextRise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both; }
.hero-sub { animation: heroTextRise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both; }
.hero-cta-row { animation: heroTextRise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both; }
.hero-meta { animation: heroTextRise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.85s both; }
.strip { animation: pageFadeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.9s both; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  animation: lbFade 0.2s ease;
  cursor: zoom-out;
}
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto;
  max-width: min(900px, 92vw);
  gap: 20px;
  cursor: default;
  margin: auto;
}
.lightbox-inner img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.lightbox-caption {
  color: rgba(255,255,255,0.85);
  text-align: center;
  max-width: 56ch;
  font-size: 14px;
  line-height: 1.6;
}
.lightbox-caption .mono { color: rgba(255,255,255,0.55); }
.lightbox-close {
  position: fixed;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 210;
  transition: background 0.15s ease;
}
/* Responsive */
@media (max-width: 960px) {
  .order-layout, .dash-grid { grid-template-columns: 1fr; }
  .order-sidebar, .dash-list { position: static; height: auto; border-right: none; border-bottom: 1px solid var(--line); }
  .order-main, .dash-detail { padding: 40px 24px; }
  .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
  .steps, .categories { grid-template-columns: 1fr; }
  .step, .category { border-right: none; border-bottom: 1px solid var(--line); }
  .showcase, .about-hero, .faq-layout { grid-template-columns: 1fr; gap: 32px; padding: 40px 0; }
  .showcase-text { padding: 32px 24px !important; width: 100% !important; max-width: 100% !important; }
  .showcase-img img { width: 100% !important; max-width: 100% !important; border-radius: 0 !important; aspect-ratio: 4 / 3; height: auto !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 48px; }
  .stats { grid-template-columns: 1fr 1fr; padding: 48px 0; }
  .stat { padding: 24px 16px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
  .pipeline { grid-template-columns: 1fr; }
  .dash-cols { grid-template-columns: 1fr; gap: 24px; }
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .section-tight { padding: 48px 0; }
  .hero-content { padding: 0 24px 60px; }
  .hero-meta { display: none; }
  .option-grid { grid-template-columns: 1fr 1fr !important; }
  .photo-grid { grid-template-columns: repeat(3, 1fr); }
  .review-row { grid-template-columns: 1fr; gap: 4px; }
  .nav { padding: 14px 20px; }
  .nav-links { gap: 14px; }
  .nav-link { font-size: 12px; }
  .nav-links .btn { padding: 10px 14px; font-size: 12px; }
  .strip { gap: 24px; padding: 14px 20px; font-size: 10px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .strip::-webkit-scrollbar { display: none; }
  .step { padding: 32px 20px; }
  .step h3 { width: 100% !important; max-width: 100% !important; }
  .category-meta { padding: 20px 20px 24px; gap: 12px; }
  .category h3 { font-size: 22px; }
  .footer { padding: 56px 0 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  .page-header { padding: 120px 0 56px; }
  .order-main { padding: 32px 20px 80px; }
  .dash-detail { padding: 32px 20px; }
  .dash-detail-head { flex-direction: column; gap: 16px; }
  .form-step h2 { font-size: 32px; }
  .quote-amount { font-size: 44px; }
  .review { grid-template-columns: 1fr; }
  .review-photo { aspect-ratio: 16 / 11; max-height: 280px; }
  .lightbox { padding: 24px 16px; }
}

/* Small phones */
@media (max-width: 480px) {
  body { font-size: 14px; }
  .container { padding: 0 16px; }
  .nav { padding: 12px 16px; }
  .nav-logo { font-size: 18px; }
  .nav-links { gap: 10px; }
  .nav-link:not(.btn) { display: none; }
  .nav-link.btn { display: inline-flex; padding: 9px 14px; }
  .hero { min-height: 600px; height: 100svh; }
  .hero-content { padding: 0 20px 48px; }
  .hero h1 { font-size: clamp(44px, 13vw, 64px); margin-bottom: 16px; }
  .hero-sub { font-size: 14px; margin-bottom: 24px; }
  .hero-eyebrow { font-size: 10px; margin-bottom: 16px; }
  .hero-eyebrow::before { width: 20px; }
  .hero-cta-row { width: 100%; gap: 8px; }
  .hero-cta-row .btn { flex: 1; justify-content: center; padding: 13px 16px; font-size: 12px; }
  .strip { gap: 18px; padding: 12px 16px; }
  .section { padding: 56px 0; }
  .section-head h2 { font-size: clamp(30px, 8vw, 42px); }
  .section-head p { font-size: 14px; }
  .step { padding: 28px 16px; }
  .step h3 { font-size: 20px; }
  .category-meta { flex-direction: column; align-items: flex-start; padding: 18px 16px 22px; }
  .category h3 { font-size: 20px; }
  .showcase-text { padding: 24px 16px !important; }
  .showcase h2 { font-size: clamp(28px, 7vw, 40px); margin: 16px 0; }
  .review-body { padding: 18px 18px; gap: 14px; }
  .review-text { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
  .footer { padding: 48px 0 28px; }
  .page-header { padding: 100px 0 40px; }
  .page-header h1 { font-size: clamp(40px, 11vw, 56px); }
  .form-step h2 { font-size: 28px; }
  .form-step .lead { font-size: 14px; margin-bottom: 28px; }
  .option-grid, .option-grid.cols-2, .option-grid.cols-4 { grid-template-columns: 1fr !important; }
  .option-card { padding: 16px; }
  .option-card .label { font-size: 17px; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: 1fr; padding: 32px 0; }
  .stat { padding: 24px 16px; border-right: none !important; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: none; }
  .stat-num { font-size: 48px; }
  .quote-block { padding: 24px; }
  .quote-amount { font-size: 36px; }
  .pipeline-step { padding: 20px 12px 20px 0; }
  .review-card { padding: 20px; }
  .form-nav { flex-direction: column-reverse; gap: 12px; align-items: stretch; }
  .form-nav .btn { width: 100%; justify-content: center; }
  .dash-list-header .count { font-size: 30px; }
  .dash-item { padding: 16px 20px; }
  .dash-detail-head h2 { font-size: 30px; }
  .dash-block { padding: 20px; }
  .timeline-event { grid-template-columns: 1fr; gap: 4px; }
  .faq-q { font-size: 18px; padding: 20px 0; }
  .faq-a { padding-right: 32px; font-size: 13px; }
  .lightbox-close { top: 16px; right: 16px; width: 38px; height: 38px; }
  .btn { padding: 12px 18px; font-size: 12px; }
}
