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

:root {
  --orange: #BE4500;
  --black: #111111;
  --body: #555555;
  --muted: #666666;
  --bg: #FAFAF8;
  --surface: #F2F0EB;
  --border: #E0DDD8;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }

img { max-width: 100%; height: auto; display: block; }

body {
  background: var(--bg);
  color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  background: rgba(250,250,248,0.95);
  backdrop-filter: blur(8px);
}
.nav-name {
  font-family: 'DM Serif Display', serif; font-size: 24px;
  letter-spacing: 0; text-transform: none;
  color: var(--black); text-decoration: none;
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-family: 'DM Mono', monospace; font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--black); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--black); }

/* ── HERO ── */
.hero {
  padding-top: 64px;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr;
}

.hero-top {
  padding: 64px 48px 48px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 80px;
  align-items: end;
  border-bottom: 1px solid var(--border);
}

.hero-eyebrow {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 28px;
  display: flex; align-items: center; gap: 16px;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 40px; height: 1px; background: var(--orange);
}

.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: 80px; line-height: 0.95; font-weight: 400;
  color: var(--black); margin-bottom: 6px;
  word-break: break-word;
}
.hero-title em { font-style: italic; color: var(--orange); }

.hero-subtitle {
  font-family: 'DM Serif Display', serif;
  font-size: 80px; line-height: 0.95; font-weight: 400;
  color: var(--muted); margin-bottom: 36px;
}

.hero-desc {
  font-size: 16px; line-height: 1.75; color: var(--body);
  max-width: 520px;
}

.hero-meta { display: flex; flex-direction: column; }
.meta-row {
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.meta-row:first-child { border-top: 1px solid var(--border); }
.meta-label {
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 4px;
}
.meta-value { font-size: 13px; color: var(--black); line-height: 1.5; font-weight: 400; }

/* ── HERO VISUAL ── */
.hero-visual {
  background: var(--surface);
  border-top: 1px solid var(--border);
  overflow: hidden;
  width: 100%;
  position: relative;
}

.hero-visual-inner {
  position: relative;
  overflow: hidden;
}
.hero-bg-img {
  width: 100%; height: auto; display: block;
}
.hero-bg-svg {
  width: 100%; height: auto; display: block; border: 0;
}
.hero-overlay-img {
  position: absolute;
  top: 24px;
  right: 20%;
  width: 36%;
  box-shadow: 0 12px 60px rgba(0,0,0,0.22);
  border-radius: 12px 12px 0 0;
  transform: translateX(100%);
}

/* ── STATS ── */
.stats {
  border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--surface);
}
.stat {
  padding: 48px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 52px; color: var(--orange);
  line-height: 1; margin-bottom: 10px;
  display: flex; align-items: center;
}
.stat-arrow {
  font-size: 0.32em;
  height: 0.85em;
  width: auto;
  margin: 0 0.08em;
  flex-shrink: 0;
  color: var(--orange);
  transform: translate(0.03em, 0.12em);
  vertical-align: middle;
}
.stat-label {
  font-family: 'DM Sans', sans-serif; font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em; word-spacing: normal;
  text-transform: uppercase; color: var(--muted);
}

/* ── SECTIONS ── */
.section {
  max-width: 1100px; margin: 0 auto;
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}
.section:last-of-type { border-bottom: none; }

.section-grid { display: grid; grid-template-columns: 220px 1fr; gap: 64px; min-width: 0; }
.section-grid > * { min-width: 0; }

.section-num {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 6px;
}
.section-label-text {
  font-family: 'DM Sans', sans-serif; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--black); font-weight: 500;
}

.section-h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 40px; font-weight: 400;
  color: var(--black); margin-bottom: 24px; line-height: 1.1;
}

.section-body { font-size: 15px; line-height: 1.85; color: var(--body); }
.section-body p + p { margin-top: 16px; }
.section-body strong { color: var(--black); font-weight: 500; }

/* ── INLINE VISUAL ── */
.inline-visual {
  margin-top: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
}
.inline-visual img { width: 100%; height: auto; display: block; }
.inline-visual-caption {
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 0.08em; color: var(--muted);
}

/* ── USER CARDS ── */
.user-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin-top: 32px; background: var(--border); }
.user-card { background: var(--surface); padding: 28px; }
.user-card-label {
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 10px;
}
.user-card-title { font-family: 'DM Serif Display', serif; font-size: 22px; line-height: 1.1; color: var(--black); margin-bottom: 8px; }
.user-card-desc { font-size: 13px; color: var(--body); line-height: 1.65; }

/* ── PROCESS ── */
.process { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin-top: 32px; background: var(--border); }
.process-item { background: var(--surface); padding: 28px; }
.process-n {
  font-family: 'DM Serif Display', serif; font-size: 56px;
  color: var(--orange); opacity: 0.18; line-height: 1; margin-bottom: 14px;
}
.process-title {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange); margin-bottom: 8px;
}
.process-desc { font-size: 13px; color: var(--body); line-height: 1.65; }

/* ── PULLQUOTE ── */
.pullquote {
  margin-top: 40px; padding: 36px 40px;
  border-left: 2px solid var(--orange);
  background: var(--surface);
}
.pullquote p {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: 22px; color: var(--black); line-height: 1.5;
}

/* ── SCREENS SECTION ── */
.screens-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}
.screens-inner { max-width: 1100px; margin: 0 auto; padding: 0 48px; }
.screens-header { margin-bottom: 64px; }

.screen-item { margin-bottom: 72px; }
.screen-item:last-child { margin-bottom: 0; }

.screen-header {
  display: flex; align-items: baseline; gap: 16px; margin-bottom: 16px;
}
.screen-tag {
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange); border: 1px solid var(--orange);
  padding: 4px 12px;
}
.screen-name {
  font-family: 'DM Serif Display', serif; font-size: 26px;
  color: var(--black);
}
.screen-desc {
  font-size: 14px; color: var(--body); line-height: 1.65;
  max-width: 640px; margin-bottom: 28px;
}
.screen-frame {
  background: var(--white); border: 1px solid var(--border); overflow: hidden;
}
.screen-frame img { width: 100%; height: auto; display: block; object-fit: contain; }

/* ── CAROUSEL ── */
.carousel-container {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
}

.carousel-viewport {
  flex: 1;
  overflow: hidden;
  border: 1px solid var(--border);
  box-sizing: border-box;
  height: 840px !important;
  max-height: 840px !important;
}

.carousel-track {
  position: relative;
  height: 840px;
}

.carousel-track .screen-item {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 840px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  box-sizing: border-box;
  background: #111;
}

.carousel-track .screen-item.active {
  opacity: 1;
  pointer-events: auto;
}

.carousel-track .screen-item .screen-frame {
  max-height: 776px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  border-radius: 10px;
  overflow: hidden;
  border: none;
  flex-shrink: 0;
}

.carousel-track .screen-item .screen-frame img {
  display: block;
  max-height: 776px !important;
  max-width: 100% !important;
  width: auto !important;
  height: auto !important;
  border-radius: 10px;
}

.carousel-track .screen-item .screen-desc {
  display: none;
}

.carousel-meta {
  padding: 16px 0 0;
  text-align: center;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d3d3d3;
  cursor: pointer;
  transition: background 0.2s ease;
  border: none;
}

.carousel-dot.active {
  background: #000;
}

.carousel-caption {
  max-width: 680px;
  margin: 0 auto;
}

.carousel-caption-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
}

.carousel-caption-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--body);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: var(--black);
  border: none;
  cursor: pointer;
  font-size: 28px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
  transition: all 0.2s ease;
  z-index: 10;
  border-radius: 50%;
}

.carousel-arrow:hover {
  background: var(--orange);
  color: var(--white);
}

.carousel-arrow-left {
  left: -80px;
}

.carousel-arrow-right {
  right: -80px;
}

.carousel-clickable {
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.carousel-clickable:hover {
  opacity: 0.8;
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.lightbox.active {
  display: flex;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  z-index: 1001;
  width: min(96vw, 1400px);
  max-height: 92vh;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: auto;
  padding: 24px 0;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  z-index: 1002;
  transition: transform 0.2s ease;
}

.lightbox-close:hover {
  transform: scale(1.2);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 1002;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.lightbox-nav:hover {
  background: var(--orange);
}

.lightbox-nav-left {
  left: 20px;
}

.lightbox-nav-right {
  right: 20px;
}

.lightbox-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-height: 100%;
}

.lightbox-image {
  width: 80%;
  height: auto;
  max-width: 80%;
  max-height: none;
  object-fit: contain;
  border: 1px solid var(--border);
  background: var(--white);
}

.lightbox-title {
  order: -2;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.1;
  text-align: left;
  width: 80%;
  max-width: 80%;
}

.lightbox-desc {
  order: -1;
  color: var(--white);
  font-size: 15px;
  line-height: 1.65;
  text-align: left;
  width: 80%;
  max-width: 80%;
  padding: 0;
}

/* ── LEARNINGS ── */
.learnings { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); margin-top: 32px; }
.learning { background: var(--bg); padding: 28px; }
.learning-title {
  font-family: 'DM Sans', sans-serif; font-size: 10px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px;
  font-weight: 500;
}
.learning-desc { font-size: 13px; color: var(--body); line-height: 1.65; }

/* ── NEXT CASE STUDY ── */
.next-case {
  display: block;
  background: var(--black);
  text-decoration: none;
  transition: background 0.3s ease;
}
.next-case:hover { background: #222; }
.next-case-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.next-case-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}
.next-case-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.0;
}
.next-case-title em {
  font-style: italic;
  color: rgba(255,255,255,0.5);
  display: block;
}
.next-case-arrow {
  font-size: 48px;
  color: var(--white);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.next-case:hover .next-case-arrow { transform: translateX(12px); }

@media (max-width: 768px) {
  .next-case-inner { padding: 56px 24px; }
  .next-case-arrow { font-size: 36px; }
}

/* ── FOOTER ── */
footer {
  padding: 36px 48px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
footer p { font-family: 'DM Mono', monospace; font-size: 12px; color: var(--muted); letter-spacing: 0.1em; }
footer p:first-child { color: var(--black); font-weight: 500; }
footer a { color: var(--orange); text-decoration: none; }
footer a:hover { text-decoration: underline; }
.footer-link {
  display: inline-flex; align-items: center; gap: 6px;
}
.footer-link svg { width: 13px; height: 13px; flex-shrink: 0; }
.footer-sep { color: var(--muted); margin: 0 8px; }

/* ═══════════════════════════════════════════
   HOME PAGE
   ═══════════════════════════════════════════ */

/* ── HOME HERO ── */
.h-hero {
  min-height: 100vh;
  padding-top: 64px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--border);
}
.h-hero-body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  padding: 64px 48px 56px;
  align-items: end;
}
.h-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.h-eyebrow::before {
  content: ''; display: block; width: 40px; height: 1px; background: var(--orange);
}
.h-name {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(72px, 9vw, 120px);
  line-height: 0.88;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 40px;
}
.h-name em { color: var(--muted); font-style: italic; display: block; }
.h-tagline { font-size: 16px; line-height: 1.75; color: var(--body); max-width: 480px; }
.h-hero-sidebar { display: flex; flex-direction: column; justify-content: flex-end; }
.h-fact { padding: 12px 0; border-bottom: 1px solid var(--border); }
.h-fact:first-child { border-top: 1px solid var(--border); }
.h-fact-label {
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 3px;
}
.h-fact-val { font-size: 13px; color: var(--black); font-weight: 400; }

/* ── HOME SECTION UTILITIES ── */
.h-section-label {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--orange);
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 40px;
}
.h-section-label::before {
  content: ''; display: block; width: 24px; height: 1px; background: var(--orange);
}
.h-section-title {
  font-family: 'DM Serif Display', serif;
  font-size: 40px; font-weight: 400;
  color: var(--black); line-height: 1.15; margin-bottom: 24px;
}

/* ── ABOUT ── */
.h-about {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px;
}
.h-about-inner { max-width: 1100px; margin: 0 auto; }
.h-about-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 80px;
  align-items: start;
}
.h-about-body { font-size: 15px; line-height: 1.85; color: var(--body); }
.h-about-body p + p { margin-top: 16px; }
.h-about-right { display: flex; flex-direction: column; gap: 32px; }
.h-photo { border: 1px solid var(--border); overflow: hidden; }
.h-photo img { width: 100%; height: auto; display: block; }
.h-expertise { display: flex; flex-direction: column; gap: 24px; }
.h-skill-label {
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 8px;
}
.h-skill-list { display: flex; flex-direction: column; }
.h-skill-list span {
  font-size: 13px; color: var(--black); font-weight: 400;
  padding: 7px 0; border-bottom: 1px solid var(--border);
}
.h-skill-list span:first-child { border-top: 1px solid var(--border); }

/* ── WORK ── */
.h-work { border-bottom: 1px solid var(--border); padding: 80px 48px; }
.h-work-inner { max-width: 1100px; margin: 0 auto; }
.h-work-heading {
  font-family: 'DM Serif Display', serif;
  font-size: 40px; font-weight: 400;
  color: var(--black); line-height: 1.1; margin-bottom: 0;
}

/* ── PROJECT CARD (stacked) ── */
.pj-card {
  display: block; margin-top: 40px;
  border: 1px solid var(--border); overflow: hidden;
  text-decoration: none; color: inherit; transition: border-color 0.2s;
}
.pj-card:hover { border-color: var(--orange); }
.pj-card-top {
  display: grid; grid-template-columns: 1fr 260px;
  gap: 48px; padding: 40px 48px;
  border-bottom: 1px solid var(--border);
}
.pj-eyebrow {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange);
  display: flex; align-items: center; gap: 16px; margin-bottom: 16px;
}
.pj-eyebrow::before {
  content: ''; display: block; width: 24px; height: 1px; background: var(--orange);
}
.pj-title {
  font-family: 'DM Serif Display', serif;
  font-size: 52px; line-height: 0.92; font-weight: 400; color: var(--black);
}
.pj-title-em {
  font-family: 'DM Serif Display', serif;
  font-size: 52px; line-height: 0.92; font-weight: 400;
  color: var(--muted); margin-bottom: 24px;
}
.pj-desc { font-size: 14px; line-height: 1.75; color: var(--body); }
.pj-meta { display: flex; flex-direction: column; justify-content: center; }
.pj-meta-row { padding: 10px 0; border-bottom: 1px solid var(--border); }
.pj-meta-row:first-child { border-top: 1px solid var(--border); }
.pj-meta-label {
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 3px;
}
.pj-meta-val { font-size: 13px; color: var(--black); font-weight: 400; }
.pj-card-screens {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  background: var(--surface); border-bottom: 1px solid var(--border);
}
.pj-screen { border-right: 1px solid var(--border); overflow: hidden; display: flex; flex-direction: column; }
.pj-screen:last-child { border-right: none; }
.pj-screen-label {
  padding: 12px 16px; border-bottom: 1px solid var(--border);
  background: var(--white);
  font-family: 'DM Mono', monospace; font-size: 8px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--orange); flex-shrink: 0;
}
.pj-screen-label span { color: var(--black); margin-left: 6px; }
.pj-screen-img { overflow: hidden; }
.pj-screen-img img { width: 100%; height: auto; display: block; }
.pj-card-footer {
  padding: 16px 48px;
  display: flex; justify-content: space-between; align-items: center;
}
.pj-cta {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange); transition: letter-spacing 0.2s;
}
.pj-card:hover .pj-cta { letter-spacing: 0.2em; }
.pj-arrow {
  font-family: 'DM Mono', monospace; font-size: 14px;
  color: var(--orange); transition: transform 0.2s;
}
.pj-card:hover .pj-arrow { transform: translateX(4px); }

/* ── CONTACT ── */
.h-contact {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 100px 48px;
}
.h-contact-inner { max-width: 1100px; margin: 0 auto; }
.h-contact-title {
  font-family: 'DM Serif Display', serif;
  font-size: 64px; line-height: 1.0; font-weight: 400;
  color: var(--black); margin-bottom: 24px;
}
.h-contact-title em { color: var(--muted); font-style: italic; }
.h-contact-desc {
  font-size: 15px; line-height: 1.75; color: var(--body);
  margin-bottom: 40px; max-width: 480px;
}
.h-contact-links { display: flex; gap: 32px; align-items: center; }
.h-contact-email {
  font-family: 'DM Mono', monospace; font-size: 12px;
  letter-spacing: 0.1em; color: var(--orange);
  text-decoration: none; transition: letter-spacing 0.2s;
}
.h-contact-email:hover { letter-spacing: 0.16em; }
.h-contact-link {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.2s;
}
.h-contact-link:hover { color: var(--black); }

/* ═══════════════════════════════════════════
   HOME LIST LAYOUT
   ═══════════════════════════════════════════ */

/* ── INTRO ── */
.hl-intro {
  padding-top: 64px;
  border-bottom: 1px solid var(--border);
}
.hl-intro-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px;
}
.hl-intro-text {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--black);
}
.hl-intro-photo {
  overflow: hidden;
}
.hl-intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── WORK LIST ── */
.hl-work {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.hl-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
}

.hl-row-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 64px 0;
  justify-content: center;
}
.hl-row-tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
}
.hl-row-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.0;
  color: var(--black);
}
.hl-row-title em {
  font-style: italic;
  color: var(--muted);
  display: block;
}
.hl-row-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--body);
  max-width: 420px;
}
.hl-row-cta {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hl-row-cta-text {
  text-decoration: none;
  transition: text-decoration 0.2s;
}
.hl-row:hover .hl-row-cta-text {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hl-row-cta-arrow {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  transition: transform 0.2s ease;
}
.hl-row:hover .hl-row-cta-arrow {
  transform: translateX(5px);
}

.hl-row-right {
  overflow: hidden;
  background: var(--surface);
}
.hl-row-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  display: block;
  min-height: 400px;
}
.hl-row-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
}
.hl-row-placeholder span {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--border);
}

/* ── ABOUT CLOSING ── */
.hl-about {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px;
}
.hl-about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.hl-about-text {
  font-size: 16px;
  line-height: 1.85;
  color: var(--body);
  max-width: 640px;
}
.hl-about-cta {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  border: 1px solid var(--orange);
  padding: 10px 20px;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
  align-self: flex-start;
}
.hl-about-cta:hover {
  background: var(--orange);
  color: var(--white);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hl-intro-inner { padding: 56px 24px; grid-template-columns: 1fr; }
  .hl-intro-text { font-size: 24px; line-height: 1.55; }
  .hl-intro-photo { max-width: 200px; }
  .hl-work { padding: 0 24px; }
  .hl-row { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
  .hl-about { padding: 64px 24px; }
}
@media (max-width: 480px) {
  .hl-intro-inner { padding: 48px 16px; }
  .hl-intro-text { font-size: 22px; line-height: 1.55; }
  .hl-work { padding: 0 16px; }
  .hl-about { padding: 48px 16px; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: fadeUp 0.5s ease both; }
.hero-title   { animation: fadeUp 0.5s ease 0.08s both; }
.hero-subtitle{ animation: fadeUp 0.5s ease 0.12s both; }
.hero-desc    { animation: fadeUp 0.5s ease 0.16s both; }
.hero-meta    { animation: fadeUp 0.5s ease 0.2s both; }
.hero-visual  { animation: fadeUp 0.6s ease 0.28s both; }
.h-eyebrow      { animation: fadeUp 0.5s ease both; }
.h-name         { animation: fadeUp 0.5s ease 0.08s both; }
.h-tagline      { animation: fadeUp 0.5s ease 0.16s both; }
.h-hero-sidebar { animation: fadeUp 0.5s ease 0.2s both; }

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

@media (max-width: 1024px) {
  nav { padding: 18px 32px; }
  .h-hero-body { padding: 56px 32px 48px; gap: 48px; grid-template-columns: 1fr 240px; }
  .h-about { padding: 64px 32px; }
  .h-about-grid { grid-template-columns: 1fr 240px; gap: 48px; }
  .h-work { padding: 64px 32px; }
  .pj-card-top { padding: 32px; gap: 32px; }
  .pj-title, .pj-title-em { font-size: 40px; }
  .pj-card-footer { padding: 14px 32px; }
  .h-contact { padding: 80px 32px; }
  .h-contact-title { font-size: 52px; }
  .hero-top {
    padding: 56px 32px 40px;
    grid-template-columns: 1fr 260px;
    gap: 48px;
  }
  .hero-title, .hero-subtitle { font-size: 64px; }
  .stat { padding: 40px 32px; }
  .stat-num { font-size: 44px; }
  .section { padding: 64px 32px; }
  .section-grid { grid-template-columns: 160px 1fr; gap: 40px; }
  .section-h2 { font-size: 36px; }
  .screens-inner { padding: 0 32px; }
  .screens-section { padding: 64px 0; }
  footer { padding: 32px; }
}

@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .h-hero-body { grid-template-columns: 1fr; gap: 40px; padding: 40px 24px; align-items: start; }
  .h-about { padding: 56px 24px; }
  .h-about-grid { grid-template-columns: 1fr; gap: 40px; }
  .h-work { padding: 56px 24px; }
  .pj-card-top { grid-template-columns: 1fr; gap: 24px; padding: 28px 24px; }
  .pj-card-screens { grid-template-columns: 1fr; }
  .pj-screen { border-right: none; border-bottom: 1px solid var(--border); }
  .pj-screen:last-child { border-bottom: none; }
  .pj-card-footer { padding: 14px 24px; }
  .h-contact { padding: 64px 24px; }
  .h-contact-title { font-size: 44px; }
  .h-contact-links { flex-direction: column; gap: 16px; align-items: flex-start; }
  .nav-links { gap: 20px; }
  .hero-top {
    padding: 48px 24px 32px;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-title, .hero-subtitle { font-size: 52px; }
  .hero-desc { max-width: 100%; }
  .hero-overlay-img { width: 44%; right: 3%; }
  .stats { grid-template-columns: 1fr; }
  .stat {
    padding: 32px 24px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .stat:last-child { border-bottom: none; }
  .stat-num { font-size: 40px; }
  .section { padding: 56px 24px; }
  .section-grid { grid-template-columns: 1fr; gap: 24px; }
  .section-num { display: inline; margin-right: 8px; }
  .section-label-text { display: inline; }
  .section-h2 { font-size: 32px; margin-bottom: 20px; }
  .user-cards { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .process-item { border-bottom: 1px solid var(--border); }
  .pullquote { padding: 28px 24px; }
  .pullquote p { font-size: 18px; }
  .screens-section { padding: 48px 0; }
  .screens-inner { padding: 0 24px; }
  .screens-header { margin-bottom: 40px; }
  .screen-name { font-size: 22px; }
  .learnings { grid-template-columns: 1fr; }
  .carousel-container { gap: 0; padding: 0 56px; }
  .carousel-viewport,
  .carousel-track,
  .carousel-track .screen-item {
    height: 520px !important;
    max-height: 520px !important;
  }
  .carousel-track .screen-item { padding: 20px; }
  .carousel-track .screen-item .screen-frame,
  .carousel-track .screen-item .screen-frame img {
    max-height: 480px !important;
  }
  .carousel-arrow { width: 48px; height: 48px; font-size: 24px; line-height: 48px; }
  .carousel-arrow-left { left: 0; }
  .carousel-arrow-right { right: 0; }
  footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 28px 24px;
  }
}

@media (max-width: 480px) {
  nav { padding: 14px 16px; }
  .h-about { padding: 48px 16px; }
  .h-work { padding: 48px 16px; }
  .pj-title, .pj-title-em { font-size: 36px; }
  .h-section-title { font-size: 32px; }
  .h-contact { padding: 56px 16px; }
  .h-contact-title { font-size: 36px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 9px; }
  .hero-top { padding: 40px 16px 28px; gap: 32px; }
  .hero-eyebrow { font-size: 9px; margin-bottom: 20px; }
  .hero-eyebrow::before { width: 24px; }
  .hero-title, .hero-subtitle { font-size: 40px; }
  .hero-desc { font-size: 15px; }
  .meta-row { padding: 12px 0; }
  .meta-value { font-size: 12px; }
  .hero-overlay-img { width: 52%; right: 2%; }
  .stat { padding: 28px 16px; }
  .stat-num { font-size: 36px; }
  .stat-label { font-size: 9px; }
  .section { padding: 48px 16px; }
  .section-h2 { font-size: 28px; }
  .section-body { font-size: 14px; }
  .user-card { padding: 20px; }
  .user-card-title { font-size: 20px; }
  .process-item { padding: 20px; }
  .process-n { font-size: 40px; }
  .pullquote { padding: 20px 16px; }
  .pullquote p { font-size: 16px; }
  .screens-section { padding: 40px 0; }
  .screens-inner { padding: 0 16px; }
  .screen-item { margin-bottom: 48px; }
  .screen-name { font-size: 20px; }
  .screen-desc { font-size: 13px; }
  .learning { padding: 20px; }
  .inline-visual-caption { font-size: 9px; }
  .carousel-container { gap: 0; padding: 0 44px; }
  .carousel-viewport,
  .carousel-track,
  .carousel-track .screen-item {
    height: 380px !important;
    max-height: 380px !important;
  }
  .carousel-track .screen-item { padding: 12px; }
  .carousel-track .screen-item .screen-frame,
  .carousel-track .screen-item .screen-frame img {
    max-height: 356px !important;
  }
  .carousel-arrow { width: 38px; height: 38px; font-size: 20px; line-height: 38px; }
  .carousel-arrow-left { left: 0; }
  .carousel-arrow-right { right: 0; }
  footer { padding: 24px 16px; gap: 8px; }
  footer p { font-size: 9px; }
}

@media (hover: none) {
  .nav-links a { color: var(--black); }
}
