/* Font faces */
@font-face {
  font-family: 'Bebas Neue';
  src: url('../extracted/font-4dc92ace5095.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Mark Pro';
  src: url('../extracted/font-cf4c10583812.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Base: reset, tokens, document defaults */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --ink:      #111111;
  --paper:    #F9F8F6;
  --orange:   #E85D1A;
  --muted:    #7A7571;
  --border:   #E2DDD8;
  --dark-bg:  #141210;
  --dark-2:   #1E1C1A;
}

body {
  font-family: 'Mark Pro', sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }

/* Utilities */
.wrap { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }
.tag  { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.orange { color: var(--orange); }

/* Layout: navigation */
.nav-outer {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background .3s, border-color .3s;
}
.nav-outer.scrolled {
  background: rgba(249,248,246,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  width: 92px;
  overflow: hidden;
}
.logo-img {
  height: 36px;
  width: 92px;
  display: block;
  object-fit: contain;
}
.logo-img--footer {
  height: 32px;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}
.nav-links {
  display: flex; gap: 32px; list-style: none;
  font-size: 14px; font-weight: 400;
}
.nav-links a {
  color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  font-size: 13px; font-weight: 600;
  padding: 10px 20px;
  background: var(--ink); color: #fff;
  border-radius: 6px;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--orange); }

/* Section: hero */
.hero {
  padding: 160px 0 100px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.hero-layout {
  display: grid;
  grid-template-columns: 540px 1fr;
  gap: 0;
  align-items: center;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 32px;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 32px; height: 1px;
  background: var(--orange);
}
.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 8vw, 104px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: .01em;
  margin-bottom: 32px;
}
.hero-h1 em { font-style: normal; color: var(--orange); }
.hero-desc {
  max-width: 480px;
  font-size: 17px; color: var(--muted);
  line-height: 1.75;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 12px; align-items: center; }
.btn-primary {
  font-size: 14px; font-weight: 600;
  padding: 13px 24px;
  background: var(--orange); color: #fff;
  border-radius: 6px;
  transition: transform .15s, box-shadow .15s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,93,26,.28); }
.btn-ghost {
  font-size: 14px; font-weight: 400;
  padding: 13px 24px;
  border: 1px solid var(--border);
  border-radius: 6px; color: var(--ink);
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--ink); }

/* Hero media */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: -120px;
}
.hero-mockup {
  width: 760px;
  max-width: none;
  flex-shrink: 0;
}
.mockup-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.12));
}

/* Section: ticker */
.ticker {
  background: #111111;
  overflow: hidden;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}
.ticker-row {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 26s linear infinite;
  will-change: transform;
}
.ticker-track.reverse {
  animation-name: ticker-scroll-reverse;
}
.ticker-row:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--orange);
  padding: 14px 32px;
  white-space: nowrap;
}
.ticker-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: #333;
  border-radius: 50%;
  margin-right: 32px;
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes ticker-scroll-reverse {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Section: services */
/* Section: services */
.services { padding: 100px 0; }
.section-row {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 32px;
  align-items: stretch;
}
.section-label { padding-top: 4px; }
.services-head {
  max-width: 720px;
  margin: 0 auto 48px;
  padding-top: 0;
  text-align: center;
}
.section-label h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 400; line-height: 1.0;
  letter-spacing: .02em;
  margin-top: 14px; margin-bottom: 16px;
}
.section-label p { font-size: 15px; color: var(--muted); line-height: 1.7; }
.services-head p {
  max-width: 600px;
  margin: 0 auto;
}

/* Instagram card */
.insta-card {
  margin-top: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.insta-card-header {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  background: var(--orange);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.insta-card-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.insta-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px;
}
.insta-card-name { font-size: 13px; font-weight: 600; color: #fff; }
.insta-profile-link {
  color: inherit;
  transition: color .2s;
}
.insta-profile-link:hover { color: #fff; opacity: .82; }
.insta-profile-cta {
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
}
.insta-card-sub  { font-size: 11px; color: rgba(255,255,255,.72); }
.insta-embed-wrap {
  padding: 0;
  width: 100%;
  aspect-ratio: 3 / 4;
  flex: 1;
  min-height: 0;
  background: var(--paper);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.insta-post-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.insta-embed-wrap blockquote.instagram-media,
.insta-embed-wrap iframe {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  height: 100% !important;
  margin: 0 !important;
}
.insta-placeholder {
  width: 100%;
  height: 100%;
  padding: 32px 20px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.insta-placeholder svg { margin: 0 auto 12px; opacity: .3; }

/* Service grid */
.srv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.srv-card {
  background: var(--paper);
  padding: 32px 28px;
  position: relative;
  cursor: default;
  transition: background .25s;
  overflow: hidden;
}
.srv-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.25,.46,.45,.94);
}
.srv-card:hover { background: #fff; }

.srv-card:hover::before { transform: scaleX(1); }
.srv-card-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 16px;
}
.srv-card-num {
  font-family: 'DM Mono', monospace;
  font-size: 10px; color: var(--muted);
  letter-spacing: .1em;
}
.srv-card-icon {
  width: 36px; height: 36px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: background .25s, border-color .25s;
}
.srv-card:hover .srv-card-icon {
  background: var(--orange);
  border-color: var(--orange);
}
.srv-card-name {
  font-size: 15px; font-weight: 700;
  color: var(--ink); margin-bottom: 8px;
  letter-spacing: .01em;
}
.srv-card-desc {
  font-size: 13px; color: var(--muted);
  line-height: 1.65;
}

/* scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .65s cubic-bezier(.25,.46,.45,.94),
              transform .65s cubic-bezier(.25,.46,.45,.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }
.reveal-delay-5 { transition-delay: .40s; }
.reveal-delay-6 { transition-delay: .48s; }

/* Section: portfolio */
.portfolio { padding: 100px 0; background: var(--dark-bg); color: #fff; position: relative; }
.portfolio .section-label h2 { color: #fff; }
.portfolio .section-label p { color: rgba(255,255,255,.5); }
.portfolio .tag { color: rgba(255,255,255,.3); }

.port-list {
  margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.port-row {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1.4fr 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 30px 4px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  cursor: pointer;
  transition: padding-left .4s cubic-bezier(.16,1,.3,1);
}
.port-row:hover { padding-left: 18px; }

/* Thumbnail */
.port-row-thumb {
  width: 72px;
  height: 48px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  border: 1px solid rgba(255,255,255,.10);
  transition: transform .35s cubic-bezier(.16,1,.3,1), border-color .35s ease;
}
.port-row-thumb-bg {
  position: absolute;
  inset: 0;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.port-image-bg {
  background-size: cover;
  background-position: center;
}
.port-row:hover .port-row-thumb {
  border-color: var(--orange);
  transform: scale(1.04);
}
.port-row:hover .port-row-thumb-bg {
  transform: scale(1.08);
}
/* Image icon overlay */
.port-row-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("../extracted/image-6690ace775ef.svg") center center no-repeat;
  opacity: 0;
  transition: opacity .3s ease;
  background-color: rgba(0,0,0,.35);
}
.port-row:hover .port-row-thumb::after {
  opacity: 1;
}

.port-row-num {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: rgba(255,255,255,.3);
  letter-spacing: .05em;
  transition: color .35s ease;
}
.port-row:hover .port-row-num { color: var(--orange); }

.port-row-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1;
  color: #fff;
  position: relative;
  display: inline-block;
  transition: color .4s ease, transform .4s cubic-bezier(.16,1,.3,1);
}
.port-row:hover .port-row-title { transform: translateX(4px); }

.port-row-tag {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

.port-row-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 15px;
  flex-shrink: 0;
  transition: background .35s ease, border-color .35s ease, transform .35s ease, color .35s ease;
}
.port-row:hover .port-row-arrow {
  background: var(--orange);
  border-color: var(--orange);
  color: #0c0a09;
  transform: rotate(45deg);
}

/* Cursor-following floating preview */
.port-preview {
  position: fixed;
  top: 0; left: 0;
  width: 280px;
  height: 200px;
  border-radius: 4px;
  overflow: hidden;
  pointer-events: none;
  z-index: 50;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.85);
  transition: opacity .35s ease, transform .45s cubic-bezier(.16,1,.3,1);
  will-change: transform, opacity, top, left;
}
.port-preview.is-active { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.port-preview-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.port-preview::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 120% 90% at 30% 110%, rgba(0,0,0,.55), transparent 60%),
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: auto, 24px 24px, 24px 24px;
}

.port-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(5,5,5,.82);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}
.port-lightbox.is-active {
  opacity: 1;
  pointer-events: auto;
}
.port-lightbox-panel {
  position: relative;
  width: min(560px, 92vw);
  max-height: 88vh;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0,0,0,.55);
  transform: scale(.94);
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.port-lightbox.is-active .port-lightbox-panel {
  transform: scale(1);
}
.port-lightbox-bg,
.port-lightbox-panel::after {
  position: absolute;
  inset: 0;
}
.port-lightbox-bg {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.port-lightbox-panel::after {
  content: '';
  background:
    radial-gradient(ellipse 100% 80% at 30% 110%, rgba(0,0,0,.58), transparent 60%),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: auto, 32px 32px, 32px 32px;
  pointer-events: none;
}
.port-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.38);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.port-lightbox-close:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #0c0a09;
  transform: rotate(90deg);
}
body.port-lightbox-open {
  overflow: hidden;
}

/* per-project gradient swatches, reused for preview backgrounds */
.swatch-1 { background: linear-gradient(160deg, #1a0d00 0%, #2e1608 55%, #E85D1A 130%); }
.swatch-2 { background: linear-gradient(160deg, #0a0a14 0%, #15152e 55%, #3d3d80 130%); }
.swatch-3 { background: linear-gradient(160deg, #0d0d0d 0%, #1c1c1c 55%, #4a4a4a 130%); }
.swatch-4 { background: linear-gradient(160deg, #1a0a0a 0%, #2e0f0f 55%, #802020 130%); }

@media (hover: none) {
  .port-preview { display: none; }
}

/* Section: results */
.results { padding: 100px 0; border-bottom: 1px solid var(--border); }
.results-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.results-left h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.results-left p { font-size: 15px; color: var(--muted); line-height: 1.75; }
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
}
.res-cell {
  padding: 36px 28px;
  background: #fff;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.res-cell:nth-child(2n) { border-right: none; }
.res-cell:nth-child(3), .res-cell:nth-child(4) { border-bottom: none; }
.res-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px; font-weight: 400;
  color: var(--orange); line-height: 1;
  margin-bottom: 6px;
}
.res-label { font-size: 13px; color: var(--muted); }

/* ── TESTIMONIAL ────────────────────────────── */
.testimonial-section { padding: 100px 0; }
.test-wrap {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.test-body { padding: 64px; }
.test-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 500; line-height: 1.25;
  color: var(--ink);
  margin-bottom: 40px;
  max-width: 760px;
}
.test-quote::before { content: '"'; color: var(--orange); }
.test-quote::after  { content: '"'; color: var(--orange); }
.test-person { display: flex; align-items: center; gap: 16px; }
.test-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--ink); color: #fff;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.test-name { font-weight: 600; font-size: 15px; }
.test-role { font-size: 13px; color: var(--muted); margin-top: 2px; }
.test-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 64px;
  background: var(--paper);
  border-top: 1px solid var(--border);
}
.test-nav { display: flex; gap: 8px; }
.test-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--ink);
  transition: border-color .2s, background .2s;
}
.test-btn:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.test-counter { font-family: 'DM Mono', monospace; font-size: 12px; color: var(--muted); }

/* Section: process */
.process { padding: 100px 0; background: var(--dark-bg); color: #fff; }
.process .section-label h2 { color: #fff; }
.process .section-label p { color: rgba(255,255,255,.45); }
.process .tag { color: rgba(255,255,255,.25); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.p-step {
  padding: 40px 32px 40px 0;
  border-right: 1px solid rgba(255,255,255,.08);
}
.p-step:last-child { border-right: none; padding-right: 0; }
.p-step:not(:first-child) { padding-left: 32px; }
.p-num {
  font-family: 'DM Mono', monospace;
  font-size: 11px; color: var(--orange);
  letter-spacing: .14em;
  display: block; margin-bottom: 28px;
}
.p-step h3 {
  font-family: 'Mark Pro', sans-serif;
  font-size: 17px; font-weight: 700;
  color: #fff; margin-bottom: 12px;
}
.p-step p { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.7; }

/* Section: FAQ */
.faq { padding: 100px 0; }
.faq-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.fq {
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.fq:last-child { border-bottom: 1px solid var(--border); }
.fq-q {
  width: 100%; text-align: left;
  padding: 22px 0;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 20px;
  font-size: 15px; font-weight: 600; color: var(--ink);
  transition: color .2s;
}
.fq-q:hover { color: var(--orange); }
.fq-icon {
  flex-shrink: 0; width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--muted);
  transition: transform .3s;
}
.fq.open .fq-icon { transform: rotate(45deg); color: var(--orange); }
.fq-a {
  max-height: 0; overflow: hidden;
  font-size: 14px; color: var(--muted); line-height: 1.75;
  transition: max-height .35s ease, padding .3s;
}
.fq.open .fq-a { max-height: 200px; padding-bottom: 22px; }

/* Section: CTA */
.cta {
  padding: 100px 0;
  background: var(--orange);
  color: #fff;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.cta h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 800; line-height: 1.0;
  letter-spacing: -.03em;
  max-width: 600px;
}
.cta h2 span { opacity: .65; }
.btn-white {
  flex-shrink: 0;
  font-size: 14px; font-weight: 600;
  padding: 14px 28px;
  background: #fff; color: var(--orange);
  border-radius: 6px;
  transition: transform .15s, box-shadow .15s;
  white-space: nowrap;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.15); }

/* Layout: footer */
footer {
  padding: 72px 0 32px;
  background: var(--dark-bg); color: rgba(255,255,255,.55);
  font-size: 14px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 32px;
}
.footer-brand .logo { }
.footer-brand p { line-height: 1.7; max-width: 240px; }
footer h4 {
  font-family: 'Mark Pro', sans-serif;
  font-size: 12px; font-weight: 700;
  color: #fff; letter-spacing: .04em;
  margin-bottom: 16px;
}
.flinks { display: flex; flex-direction: column; gap: 10px; }
.flinks a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 20px;
  font-size: 12px; color: rgba(255,255,255,.3);
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 1200px) {
  .hero-layout { grid-template-columns: 480px 1fr; }
  .hero-right { margin-right: -80px; }
  .hero-mockup { width: 620px; }
}

@media (max-width: 980px) {
  /* Layout: navigation */
  .nav-links { display: none; }

  /* Section: hero */
  .hero { padding: 120px 0 80px; }
  .hero-layout { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: flex; justify-content: center; margin-right: 0; }
  .hero-mockup { width: 100%; max-width: 480px; }
  .hero-h1 { font-size: clamp(48px, 10vw, 80px); }
  .hero-desc { max-width: 100%; }

  /* SECTIONS */
  .section-row { grid-template-columns: 1fr; gap: 40px; }
  .section-label { text-align: center; }
  .section-label p { margin: 0 auto; }

  /* Section: portfolio */
  .port-row { grid-template-columns: 44px 1fr auto auto; gap: 16px; padding: 24px 4px; }
  .port-row-tag { display: none; }

  /* Section: results */
  .results-inner { grid-template-columns: 1fr; gap: 48px; }
  .results-left { text-align: center; }

  /* Section: FAQ */
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-layout > div:first-child { text-align: center; }

  /* Section: CTA */
  .cta-inner { flex-direction: column; align-items: flex-start; gap: 32px; }

  /* Section: process */
  .process-steps { grid-template-columns: 1fr 1fr; }
  .p-step { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: 32px 0; }
  .p-step:last-child { border-bottom: none; }

  /* Layout: footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  /* WRAP */
  .wrap { width: calc(100% - 32px); }

  /* Layout: navigation */
  .nav-outer { padding: 16px 0; }
  .nav-inner { gap: 12px; }
  .logo-img { height: 28px; }
  .nav-cta { display: none; }

  /* Section: hero */
  .hero { padding: 100px 0 64px; }
  .hero-h1 { font-size: 42px; }
  .hero-mockup { max-width: 100%; width: 100%; }
  .hero-eyebrow { justify-content: flex-start; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { text-align: center; padding: 14px 20px; }

  /* Section: ticker */
  .ticker-item { font-size: 16px; padding: 0 20px; }

  /* SECTIONS */
  .services, .portfolio, .results, .testimonial-section, .process, .faq, .cta { padding: 64px 0; }
  .section-label h2 { font-size: 32px; }
  .section-label { text-align: left; }
  .section-label p { margin: 0; }
  .services-head { text-align: center; margin-bottom: 32px; }
  .services-head p { margin: 0 auto; }

  /* Section: services */
  .srv-grid { grid-template-columns: 1fr; }
  .srv-card { padding: 24px 20px; }
  .srv-card-name { font-size: 14px; }

  /* Section: portfolio */
  .port-row {
    grid-template-columns: 62px minmax(0, 1fr) 34px;
    gap: 14px;
    padding: 18px 0;
    align-items: center;
  }
  .port-row-num, .port-row-tag { display: none; }
  .port-row-title {
    grid-column: 2;
    font-size: 30px;
    line-height: .95;
    white-space: nowrap;
    min-width: 0;
  }
  .port-row-thumb {
    grid-column: 1;
    grid-row: 1;
    display: block;
    width: 62px;
    height: 78px;
    border-radius: 6px;
  }
  .port-row-arrow {
    grid-column: 3;
    grid-row: 1;
    width: 32px;
    height: 32px;
    font-size: 12px;
    justify-self: end;
  }

  /* Section: results */
  .results-left { text-align: left; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .res-cell { padding: 24px 16px; }
  .res-num { font-size: 40px; }

  /* TESTIMONIAL */
  .test-body { padding: 28px 20px; }
  .test-quote { font-size: 18px; margin-bottom: 28px; }
  .test-footer { padding: 16px 20px; }

  /* Section: process */
  .process-steps { grid-template-columns: 1fr; }
  .p-step { padding: 28px 0; }
  .p-step:last-child { border-bottom: none; }

  /* Section: FAQ */
  .faq-layout > div:first-child { text-align: left; }
  .fq-q { font-size: 14px; padding: 18px 0; }

  /* Section: CTA */
  .cta { padding: 64px 0; }
  .cta h2 { font-size: 32px; }
  .btn-white { text-align: center; padding: 14px 24px; }

  /* Layout: footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-brand p { max-width: 100%; }
}

/* Page load transition */
html { visibility: hidden; opacity: 0; }
html.is-ready {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.8s ease;
}
