/* ═══════════════════════════════════════════
   BRIQ OPS — Premium Redesign
   ═══════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  background: #faf8f5;
  color: #1a120d;
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

::placeholder { color: #b8a99a; }

/* ── Fade-in ── */

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-in.visible { opacity: 1; transform: none; }
.fade-in.delay-1 { transition-delay: 0.12s; }
.fade-in.delay-2 { transition-delay: 0.22s; }
.fade-in.delay-3 { transition-delay: 0.32s; }
.fade-in.delay-4 { transition-delay: 0.42s; }
.fade-in.delay-5 { transition-delay: 0.52s; }

/* ── Brick Logo ── */

.brick-logo {
  width: 34px; height: 34px;
  border-radius: 7px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px; padding: 4px;
  background: #b5542a;
  flex-shrink: 0;
}
.brick-logo--sm { width: 26px; height: 26px; border-radius: 5px; }
.brick-logo .light   { background: #d4764e; border-radius: 2px; }
.brick-logo .lighter  { background: #e8956b; border-radius: 2px; }

/* ═══════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════ */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(26, 18, 13, 0.92);
  backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(181, 84, 42, 0.25);
}
.nav-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 18px 40px;
  display: flex; justify-content: space-between; align-items: center;
}
.nav-logo {
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-text {
  font-weight: 700; font-size: 18px;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.01em;
}

.btn-cta-sm {
  font-family: 'Work Sans', sans-serif;
  font-size: 13px; font-weight: 600;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 9px 22px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all 0.3s;
}
.btn-cta-sm:hover {
  background: #b5542a;
  border-color: #b5542a;
}

/* ═══════════════════════════════════════════
   HERO — Dark, cinematic
   ═══════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  background: #1a120d;
  position: relative;
  display: flex; align-items: center;
  padding: 140px 40px 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg-word {
  font-family: 'Bitter', Georgia, serif;
  font-size: clamp(120px, 18vw, 280px);
  font-weight: 800;
  color: rgba(181, 84, 42, 0.04);
  letter-spacing: 0.05em;
  white-space: nowrap;
  user-select: none;
}

.hero-inner {
  max-width: 1320px; width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
  position: relative; z-index: 1;
}

.hero-content { max-width: 640px; }

.hero-label {
  font-size: 12px; font-weight: 600;
  color: #b5542a;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Bitter', Georgia, serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
}

.hero-meta {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.02em;
}

.btn-cta {
  display: inline-block;
  font-family: 'Work Sans', sans-serif;
  font-size: 15px; font-weight: 600;
  background: #b5542a; color: #fff;
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  border: none; cursor: pointer;
  letter-spacing: 0.03em;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 0 0 rgba(181, 84, 42, 0);
}
.btn-cta:hover {
  background: #c96038;
  box-shadow: 0 8px 32px rgba(181, 84, 42, 0.35);
  transform: translateY(-2px);
}

/* Hero visual — stacked cards diagram */

.hero-visual { position: relative; }

.hero-stack {
  display: flex; flex-direction: column;
  gap: 10px; position: relative;
}

.hero-stack-card {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.45);
  transition: all 0.4s;
}
.hero-stack-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(181, 84, 42, 0.3);
}

.hsc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.hsc-dot--on {
  background: #b5542a;
  box-shadow: 0 0 12px rgba(181, 84, 42, 0.6);
}
.hsc-dot--pulse {
  animation: dot-status 4s ease-in-out infinite;
}
@keyframes dot-status {
  0%, 30% { background: #e74c3c; box-shadow: 0 0 10px rgba(231, 76, 60, 0.5); }
  35%, 65% { background: #f39c12; box-shadow: 0 0 10px rgba(243, 156, 18, 0.5); }
  70%, 100% { background: #27ae60; box-shadow: 0 0 10px rgba(39, 174, 96, 0.5); }
}

.hero-stack-link {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 20px;
  height: 20px;
}

.hsc-link-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #b5542a, rgba(181, 84, 42, 0.2));
  margin-left: -4px;
}

.hero-stack-status {
  font-size: 12px;
  font-weight: 600;
  color: rgba(181, 84, 42, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  align-self: stretch;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ═══════════════════════════════════════════
   MARQUEE STRIP
   ═══════════════════════════════════════════ */

.marquee {
  background: #b5542a;
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex; gap: 32px;
  animation: marquee-scroll 30s linear infinite;
  font-family: 'Work Sans', sans-serif;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

/* ═══════════════════════════════════════════
   PROBLEM
   ═══════════════════════════════════════════ */

.problem {
  padding: 140px 40px;
  background: #faf8f5;
  position: relative;
}

.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.problem-tag {
  font-size: 12px; font-weight: 600;
  color: #b5542a;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.problem-headline {
  font-family: 'Bitter', Georgia, serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #1a120d;
  margin-bottom: 64px;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: start;
}

.problem-list {
  display: flex; flex-direction: column;
  gap: 0;
}

.problem-item {
  display: flex; gap: 20px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid rgba(26, 18, 13, 0.08);
}
.problem-item:first-child { padding-top: 0; }

.problem-num {
  font-family: 'Bitter', Georgia, serif;
  font-size: 14px; font-weight: 700;
  color: #b5542a;
  flex-shrink: 0;
  width: 28px;
}

.problem-item p {
  font-size: 17px;
  color: #3a2c22;
  line-height: 1.55;
}

.problem-aside {
  position: sticky; top: 120px;
}

.problem-aside blockquote {
  font-family: 'Bitter', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: #1a120d;
  line-height: 1.45;
  padding-left: 24px;
  border-left: 3px solid #b5542a;
}

/* ═══════════════════════════════════════════
   APPROACH — Dark band
   ═══════════════════════════════════════════ */

.approach {
  padding: 100px 40px;
  background: #1a120d;
}

.approach-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.approach-tag {
  font-size: 12px; font-weight: 600;
  color: #b5542a;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.approach-left h2 {
  font-family: 'Bitter', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.approach-list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 0;
}

.approach-list li {
  display: flex; align-items: flex-start; gap: 16px;
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.approach-list li:last-child { border-bottom: none; }

.approach-check {
  width: 20px; height: 20px;
  flex-shrink: 0;
  border: 2px solid #b5542a;
  border-radius: 4px;
  position: relative;
  margin-top: 2px;
}
.approach-check::after {
  content: '';
  position: absolute;
  left: 3px; top: 5px;
  width: 9px; height: 5px;
  border-left: 2px solid #b5542a;
  border-bottom: 2px solid #b5542a;
  transform: rotate(-45deg);
}

/* ═══════════════════════════════════════════
   SERVICES — Horizontal scroll
   ═══════════════════════════════════════════ */

.services {
  padding: 140px 0 100px;
  background: #faf8f5;
}

.services-header {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  margin-bottom: 56px;
}

.services-tag {
  font-size: 12px; font-weight: 600;
  color: #b5542a;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.services-header h2 {
  font-family: 'Bitter', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: #1a120d;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.services-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 40px 8px;
}
.services-scroll::-webkit-scrollbar { display: none; }

.services-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.service-card {
  width: 320px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid rgba(26, 18, 13, 0.07);
  border-radius: 0;
  padding: 36px 32px;
  position: relative;
  transition: all 0.4s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: transparent;
  transition: background 0.4s;
}
.service-card:hover {
  border-color: rgba(181, 84, 42, 0.2);
}
.service-card:hover::before {
  background: #b5542a;
}

.service-num {
  font-family: 'Bitter', Georgia, serif;
  font-size: 48px; font-weight: 800;
  color: rgba(181, 84, 42, 0.08);
  line-height: 1;
  display: block;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: 18px; font-weight: 700;
  color: #1a120d;
  margin-bottom: 8px;
}

.service-tagline {
  font-size: 14px; font-weight: 600;
  color: #5a4535;
  margin-bottom: 8px;
  line-height: 1.45;
}

.service-card p:last-child {
  font-size: 14px;
  color: #7a6355;
  line-height: 1.55;
}

.services-footer {
  max-width: 1100px;
  margin: 56px auto 0;
  padding: 0 40px;
  text-align: center;
}

.services-footer > p {
  font-size: 17px;
  color: #7a6355;
  font-style: italic;
  margin-bottom: 32px;
}

.industries {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.industries span {
  font-size: 12px; font-weight: 600;
  color: #b5542a;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid rgba(181, 84, 42, 0.15);
  border-radius: 4px;
  transition: all 0.3s;
}
.industries span:hover {
  background: rgba(181, 84, 42, 0.06);
}

/* ═══════════════════════════════════════════
   TIERS — Overlapping cards
   ═══════════════════════════════════════════ */

.tiers {
  padding: 140px 40px;
  background: #f3efe9;
}

.tiers-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.tiers-tag {
  font-size: 12px; font-weight: 600;
  color: #b5542a;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 48px;
  text-align: center;
}

.tiers-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.tier {
  background: #fff;
  border: 1px solid rgba(26, 18, 13, 0.07);
  position: relative;
  transition: all 0.4s;
}
.tier:first-child {
  border-right: none;
  z-index: 1;
}

.tier-content {
  padding: 48px 40px;
}

.tier h3 {
  font-family: 'Bitter', Georgia, serif;
  font-size: 24px; font-weight: 700;
  color: #1a120d;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.tier-sub {
  font-size: 15px;
  color: #7a6355;
  line-height: 1.6;
  margin-bottom: 28px;
}

.tier ul {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 14px;
}

.tier ul li {
  font-size: 15px;
  color: #3a2c22;
  line-height: 1.55;
  padding-left: 28px;
  position: relative;
}
.tier ul li::before {
  content: '→';
  position: absolute;
  left: 0; top: 0;
  color: #b5542a;
  font-weight: 600;
}

.tier-foot {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(26, 18, 13, 0.06);
  font-size: 14px; font-weight: 600;
  color: #b5542a;
}

.tier--featured {
  background: #1a120d;
  border-color: #1a120d;
  z-index: 2;
  transform: scale(1.04);
  box-shadow: 0 24px 80px rgba(26, 18, 13, 0.2);
}
.tier--featured h3 { color: #fff; }
.tier--featured .tier-sub { color: rgba(255,255,255,0.45); }
.tier--featured ul li { color: rgba(255,255,255,0.65); }
.tier--featured ul li::before { color: #b5542a; }
.tier--featured .tier-foot {
  border-top-color: rgba(255,255,255,0.08);
  color: #e8956b;
}

.tier-badge {
  position: absolute;
  top: 0; left: 40px;
  background: #b5542a;
  color: #fff;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  transform: translateY(-50%);
}

/* ═══════════════════════════════════════════
   PROCESS — Horizontal numbered
   ═══════════════════════════════════════════ */

.process {
  padding: 140px 40px;
  background: #f3efe9;
}

.process-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}

.process-header {
  position: sticky;
  top: 120px;
}

.process-tag {
  font-size: 12px; font-weight: 600;
  color: #b5542a;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.process-headline {
  font-family: 'Bitter', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: #1a120d;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

/* Timeline */

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  align-items: start;
}

.process-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-num {
  font-family: 'Bitter', Georgia, serif;
  font-size: 28px; font-weight: 800;
  color: #b5542a;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #b5542a;
  border-radius: 50%;
  flex-shrink: 0;
  background: #f3efe9;
  position: relative;
  z-index: 1;
  transition: all 0.4s;
}

.process-step:hover .process-num {
  background: #b5542a;
  color: #fff;
}

.process-line {
  width: 2px;
  height: 56px;
  background: linear-gradient(180deg, #b5542a, rgba(181, 84, 42, 0.12));
  display: block;
}

.process-body {
  padding: 12px 0 48px;
}

.process-body h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: 20px; font-weight: 700;
  color: #1a120d;
  margin-bottom: 8px;
}

.process-body p {
  font-size: 16px;
  color: #7a6355;
  line-height: 1.65;
  max-width: 400px;
}

/* Pricing callout */

.process-callout {
  grid-column: 1 / -1;
  margin-top: 24px;
}

.process-callout-inner {
  background: #1a120d;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.process-callout-label {
  font-size: 11px; font-weight: 600;
  color: #b5542a;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.process-callout-inner strong {
  font-family: 'Bitter', Georgia, serif;
  font-size: 28px; font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.process-callout-sep {
  width: 1px; height: 28px;
  background: rgba(255,255,255,0.1);
}

.process-callout-inner > span:last-child {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
}

/* ═══════════════════════════════════════════
   QUOTE BAND
   ═══════════════════════════════════════════ */

.quote-band {
  padding: 100px 40px;
  background: #1a120d;
  position: relative;
  overflow: hidden;
}

.quote-band-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.quote-glyph {
  font-family: 'Bitter', Georgia, serif;
  font-size: 240px; font-weight: 800;
  color: rgba(181, 84, 42, 0.08);
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.quote-band blockquote {
  font-family: 'Bitter', Georgia, serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  line-height: 1.5;
  margin-bottom: 48px;
  position: relative;
}

.quote-signals {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.quote-signals span {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding-top: 16px;
}
.quote-signals span::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 1px;
  background: rgba(181, 84, 42, 0.5);
}

/* ═══════════════════════════════════════════
   CONTACT — Split layout
   ═══════════════════════════════════════════ */

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 0;
}

.contact-left {
  background: #f3efe9;
  padding: 100px 60px 100px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 660px;
  margin-left: auto;
}

.contact-left h2 {
  font-family: 'Bitter', Georgia, serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: #1a120d;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.contact-left > p {
  font-size: 17px;
  color: #7a6355;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 420px;
}

.contact-trust {
  display: flex; flex-direction: column;
  gap: 16px;
}

.contact-trust-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 500;
  color: #3a2c22;
}

.ct-icon {
  color: #b5542a;
  font-weight: 700;
  font-size: 16px;
}

.contact-right {
  background: #fff;
  padding: 100px 40px 100px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 660px;
}

.contact-form {
  display: flex; flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid rgba(26, 18, 13, 0.1);
  border-radius: 0;
  background: #faf8f5;
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  color: #1a120d;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #b5542a;
  background: #fff;
}
.contact-form textarea { resize: vertical; }

/* ── Toast ── */

.toast {
  font-size: 15px; font-weight: 600;
  color: #1a120d;
  background: #faf8f5;
  border-left: 3px solid #b5542a;
  padding: 16px 20px;
  margin-top: 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}
.toast--visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

.footer {
  background: #1a120d;
  border-top: 3px solid #b5542a;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand {
  display: flex; align-items: center; gap: 10px;
}

.footer-logo-text {
  font-weight: 700; font-size: 16px;
  color: rgba(255,255,255,0.8);
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.3);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.2);
}

.footer-links {
  display: flex; gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: rgba(255,255,255,0.6);
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Tablet
   ═══════════════════════════════════════════ */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual { display: none; }
  .hero { padding: 120px 24px 80px; }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .problem { padding: 80px 24px; }
  .problem-aside { position: static; }

  .approach-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .approach { padding: 80px 24px; }

  .services { padding: 80px 0 60px; }
  .services-header { padding: 0 24px; }
  .services-scroll { padding: 0 24px 8px; }
  .services-footer { padding: 0 24px; }

  .tiers { padding: 80px 24px; }
  .tiers-row { grid-template-columns: 1fr; gap: 0; }
  .tier:first-child { border-right: 1px solid rgba(26,18,13,0.07); border-bottom: none; }
  .tier--featured { transform: none; }

  .process { padding: 80px 24px; }
  .process-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .process-header { position: static; }
  .process-callout-inner { padding: 24px; gap: 12px; }
  .process-callout-sep { display: none; }
  .process-callout-inner strong { font-size: 24px; }

  .quote-band { padding: 72px 24px; }
  .quote-signals { gap: 24px; }
  .quote-glyph { font-size: 140px; top: -60px; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-left {
    padding: 64px 24px 48px;
    max-width: none;
  }
  .contact-right {
    padding: 48px 24px 64px;
    max-width: none;
  }
  .form-row { grid-template-columns: 1fr; }

  .nav-inner { padding: 14px 20px; }

  .footer-inner { padding: 40px 24px; }
  .footer-top { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-links { gap: 16px; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Mobile
   ═══════════════════════════════════════════ */

@media (max-width: 480px) {
  /* Global mobile spacing */
  .hero { padding: 100px 16px 56px; min-height: auto; }
  .problem { padding: 56px 16px; }
  .approach { padding: 56px 16px; }
  .services { padding: 56px 0 40px; }
  .services-header { padding: 0 16px; }
  .services-scroll { padding: 0 16px 8px; }
  .services-footer { padding: 0 16px; }
  .tiers { padding: 56px 16px; }
  .process { padding: 56px 16px; }
  .quote-band { padding: 48px 16px; }
  .contact-left { padding: 48px 16px 32px; }
  .contact-right { padding: 32px 16px 48px; }
  .footer-inner { padding: 32px 16px; }
  .nav-inner { padding: 12px 16px; }

  /* Nav — proper tap targets */
  .nav-logo-text { font-size: 16px; }
  .btn-cta-sm {
    font-size: 13px;
    padding: 10px 18px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* Hero — tighter type */
  .hero h1 {
    font-size: 32px;
    letter-spacing: -0.03em;
    line-height: 1.1;
  }
  .hero-label { font-size: 11px; margin-bottom: 16px; }
  .hero-sub { font-size: 16px; margin-bottom: 28px; }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .btn-cta {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
    font-size: 15px;
    min-height: 52px;
  }
  .hero-meta { font-size: 12px; }

  /* Marquee */
  .marquee { padding: 10px 0; }
  .marquee-track { font-size: 11px; gap: 20px; }

  /* Problem */
  .problem-headline { font-size: 28px; margin-bottom: 40px; }
  .problem-tag { font-size: 11px; }
  .problem-grid { gap: 32px; }
  .problem-item { gap: 14px; padding: 14px 0; }
  .problem-num { font-size: 13px; width: 24px; }
  .problem-item p { font-size: 15px; }
  .problem-aside blockquote {
    font-size: 18px;
    padding-left: 16px;
  }

  /* Approach */
  .approach-tag { font-size: 11px; }
  .approach-left h2 { font-size: 24px; }
  .approach-list li { font-size: 15px; padding: 14px 0; }
  .approach-check { width: 18px; height: 18px; }

  /* Services — scroll cards */
  .services-tag { font-size: 11px; }
  .services-header h2 { font-size: 24px; }
  .service-card { width: 270px; padding: 28px 24px; }
  .service-num { font-size: 36px; margin-bottom: 14px; }
  .service-card h3 { font-size: 16px; }
  .service-tagline { font-size: 13px; }
  .service-card p:last-child { font-size: 13px; }
  .services-footer > p { font-size: 15px; }
  .industries { gap: 8px; }
  .industries span { font-size: 11px; padding: 6px 12px; }

  /* Tiers */
  .tiers-tag { font-size: 11px; margin-bottom: 32px; }
  .tier-content { padding: 32px 24px; }
  .tier h3 { font-size: 20px; }
  .tier-sub { font-size: 14px; }
  .tier ul li { font-size: 14px; padding-left: 22px; }
  .tier-foot { font-size: 13px; }
  .tier-badge { left: 24px; font-size: 10px; padding: 5px 12px; }

  /* Process */
  .process-inner { gap: 32px; }
  .process-headline { font-size: 28px; }
  .process-step { grid-template-columns: 48px 1fr; gap: 16px; }
  .process-num { width: 44px; height: 44px; font-size: 22px; }
  .process-line { height: 40px; }
  .process-body { padding: 8px 0 32px; }
  .process-body h3 { font-size: 17px; }
  .process-body p { font-size: 14px; }
  .process-callout-inner {
    padding: 20px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .process-callout-inner strong { font-size: 22px; }
  .process-callout-inner > span:last-child { font-size: 13px; }

  /* Quote */
  .quote-glyph { font-size: 100px; top: -40px; left: 50%; transform: translateX(-50%); }
  .quote-band blockquote { font-size: 20px; }
  .quote-signals {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .quote-signals span { font-size: 11px; }

  /* Contact form */
  .contact-left h2 { font-size: 32px; }
  .contact-left > p { font-size: 15px; margin-bottom: 28px; }
  .contact-trust-item { font-size: 14px; }
  .contact-form input,
  .contact-form textarea {
    padding: 14px 14px;
    font-size: 16px; /* prevents iOS zoom */
  }
  .contact-form .btn-cta {
    width: 100%;
    text-align: center;
    min-height: 52px;
  }

  /* Footer */
  .footer-top { gap: 8px; }
  .footer-tagline { font-size: 13px; }
  .footer-bottom p { font-size: 12px; }
  .footer-links { flex-direction: column; gap: 8px; }
  .footer-links a { font-size: 13px; }
}
