/* ═══════════════════════════════════════════════
   JONIEL DA SILVA — BAUHAUS DARK MODERNIST
   Landing Pages — Shared Stylesheet
   Covers: /brand-sprint, /brand-designer-hamburg, /brand-director
   Requires: shared-primitives.css, shared-nav-dark.css
   ═══════════════════════════════════════════════ */

/* ─── LAYOUT UTILITIES ─── */
.lp-section {
  position: relative;
  padding: clamp(64px, 10vw, 128px) var(--grid-gap);
  background: var(--section-bg, var(--surface-1));
  isolation: isolate;
  border-top: 1px solid var(--surface-line);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.02),
    inset 0 -1px 0 rgba(0, 0, 0, 0.28);
}
.lp-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 20%, transparent 80%, rgba(0, 0, 0, 0.16));
  opacity: 1;
}
.lp-section:nth-of-type(odd) {
  --section-bg: var(--surface-0);
}
.lp-section:nth-of-type(even) {
  --section-bg: var(--surface-2);
}
.lp-section > * {
  position: relative;
  z-index: 1;
}
.lp-section--dark {
  --section-bg: var(--surface-3);
}
.lp-section--card {
  --section-bg: #181818;
}
.lp-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.lp-rule {
  border: none;
  border-top: 1px solid var(--surface-line);
}

/* ─── EYEBROW LABELS ─── */
.eyebrow {
  font-family: var(--futura);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gray-mid);
  margin-bottom: calc(var(--unit) * 3);
}
/* ─── TYPOGRAPHY ─── */
.lp-h1 {
  font-family: var(--futura);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--white);
}
.lp-h2 {
  font-family: var(--futura);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--white);
}
.lp-h3 {
  font-family: var(--futura);
  font-weight: 700;
  font-size: clamp(1rem, 1.75vw, 1.25rem);
  letter-spacing: 0.05em;
  color: var(--white);
}
.accent-red { color: var(--accent); }
.lp-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-light);
  text-transform: none;
  letter-spacing: 0.01em;
  max-width: 62ch;
}
.lp-body + .lp-body { margin-top: calc(var(--unit) * 3); }
.lp-body em { font-style: italic; }
.lp-body strong { font-weight: 600; color: var(--white); }

/* ─── UTILITIES ─── */
.lp-self-start { align-self: start; }
.lp-mt-0 { margin-top: 0; }
.lp-mt-3 { margin-top: calc(var(--unit) * 3); }
.lp-mt-6 { margin-top: calc(var(--unit) * 6); }
.lp-mt-9 { margin-top: calc(var(--unit) * 9); }
.lp-mt-10 { margin-top: calc(var(--unit) * 10); }
.lp-mb-2 { margin-bottom: calc(var(--unit) * 2); }
.lp-mb-3 { margin-bottom: calc(var(--unit) * 3); }
.lp-mb-5 { margin-bottom: calc(var(--unit) * 5); }
.lp-mb-6 { margin-bottom: calc(var(--unit) * 6); }
.lp-mb-8 { margin-bottom: calc(var(--unit) * 8); }
.lp-gap-2 { gap: 2px; }
.lp-text-sm { font-size: 0.875rem; }
.lp-text-xs { font-size: 0.75rem; }
.lp-body--intro {
  max-width: 44rem;
  margin-bottom: calc(var(--unit) * 6);
}
.lp-link-micro {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
}
.lp-kicker {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gray-mid);
}
.lp-meta-row--soft {
  border-color: rgba(255, 255, 255, 0.08);
}
.lp-cred-value--muted {
  color: var(--gray-light);
  font-weight: 400;
  font-size: 0.75rem;
}
.lp-placeholder--wide { aspect-ratio: 4 / 3; }
.lp-placeholder--square { aspect-ratio: 1 / 1; }
.lp-placeholder--stack { margin-bottom: 2px; }
.lp-comp-cell--small { font-size: 0.75rem; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  font-family: var(--futura);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--black);
  background: var(--white);
  padding: calc(var(--unit) * 2.5) calc(var(--unit) * 5);
  transition: background 0.2s, color 0.2s;
}
.btn-primary:hover {
  background: var(--accent);
  color: var(--white);
}
.btn-outline {
  display: inline-block;
  font-family: var(--futura);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: calc(var(--unit) * 2) calc(var(--unit) * 4);
  transition: all 0.2s;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* ─── IMAGE PLACEHOLDER ─── */
.img-placeholder {
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.img-placeholder-label {
  font-family: var(--futura);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.2);
  text-align: center;
  line-height: 1.6;
  padding: calc(var(--unit) * 2);
}

/* ─── HERO ─── */
.lp-hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(48px, 8vw, 96px));
  padding-bottom: clamp(48px, 8vw, 96px);
  padding-left: var(--grid-gap);
  padding-right: var(--grid-gap);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(211, 47, 47, 0.05), transparent 32%),
    var(--surface-0);
  border-bottom: 1px solid var(--surface-line);
}
.lp-hero--hamburg::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 900' fill='none'%3E%3Cg stroke='white' stroke-width='2'%3E%3Cpath d='M89 183L270 176L384 228L536 216L701 255L854 232L1018 260L1194 236L1372 271L1520 244'/%3E%3Cpath d='M93 329L241 303L416 340L560 320L711 365L865 343L1038 374L1215 349L1410 389'/%3E%3Cpath d='M118 494L286 458L452 498L628 474L811 521L972 494L1138 529L1312 506L1490 548'/%3E%3Cpath d='M98 646L274 612L436 646L593 629L768 672L938 648L1098 681L1264 659L1471 701'/%3E%3Cpath d='M187 93L167 231L202 387L184 521L217 700L198 822'/%3E%3Cpath d='M432 79L412 217L447 373L427 543L462 726L444 839'/%3E%3Cpath d='M719 72L697 248L734 392L710 561L746 732L729 843'/%3E%3Cpath d='M1004 85L984 216L1020 383L998 530L1036 704L1018 830'/%3E%3Cpath d='M1294 102L1271 234L1307 410L1285 563L1322 731L1307 840'/%3E%3Cpath d='M292 138L381 208L468 202L558 274L632 270L703 336'/%3E%3Cpath d='M862 143L942 201L1042 190L1136 256L1225 244L1327 317'/%3E%3Cpath d='M259 550L333 490L417 502L482 446L574 463L659 413'/%3E%3Cpath d='M872 583L957 517L1042 529L1117 468L1206 482L1297 423'/%3E%3C/g%3E%3Cpath d='M-30 575C129 534 207 476 317 483C432 491 511 603 626 610C735 617 775 550 885 538C1017 523 1100 593 1216 579C1348 563 1446 470 1630 483' stroke='white' stroke-width='12' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M553 513C588 487 611 438 659 426C697 417 735 432 773 416C810 401 828 356 864 343' stroke='white' stroke-width='6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 108% auto;
  background-position: center 52%;
}
.lp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 24%, transparent 82%, rgba(0, 0, 0, 0.28));
}
.lp-hero > * {
  position: relative;
  z-index: 1;
}
.lp-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.lp-hero-tag {
  font-family: var(--futura);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gray-light);
  margin-bottom: calc(var(--unit) * 5);
}
.lp-hero h1 { margin-bottom: calc(var(--unit) * 5); }
.lp-hero-sub {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--gray-light);
  text-transform: none;
  max-width: 560px;
  margin-bottom: calc(var(--unit) * 6);
}
.lp-hero-actions {
  display: flex;
  align-items: center;
  gap: calc(var(--unit) * 3);
  flex-wrap: wrap;
}

/* Hero two-column layout */
.lp-hero-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}

/* ─── META STRIP ─── */
.lp-meta-strip {
  background: var(--surface-2);
  border-top: 1px solid var(--surface-line);
  border-bottom: 1px solid var(--surface-line);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.02),
    inset 0 -1px 0 rgba(0, 0, 0, 0.28);
}
.lp-meta-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--grid-gap);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--surface-line);
}
.lp-meta-item {
  background: var(--surface-0);
  padding: calc(var(--unit) * 4) calc(var(--unit) * 3);
}
.lp-meta-label {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gray-mid);
  margin-bottom: calc(var(--unit) * 1.5);
}
.lp-meta-value {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1.4;
}

/* ─── TWO-COLUMN SECTION ─── */
.lp-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.lp-two-col--3-2 {
  grid-template-columns: 3fr 2fr;
}
.lp-two-col--2-3 {
  grid-template-columns: 2fr 3fr;
}

/* ─── THREE-COLUMN GRID ─── */
.lp-three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: calc(var(--unit) * 6);
}

/* ─── CARD ─── */
.lp-card {
  background: var(--dark-card);
  border: 1px solid var(--surface-line-soft);
  padding: clamp(28px, 4vw, 48px) clamp(24px, 3vw, 40px);
  transition: background 0.2s;
}
.lp-card:hover { background: var(--gray-dark); }
.lp-card-num {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: calc(var(--unit) * 3);
}
.lp-card h3 { margin-bottom: calc(var(--unit) * 2); }
.lp-card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--gray-light);
  text-transform: none;
  letter-spacing: 0.02em;
}

/* ─── PHASES (process steps) ─── */
.lp-phases {
  display: flex;
  flex-direction: column;
}
.lp-phase {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: calc(var(--unit) * 4);
  padding: calc(var(--unit) * 5) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  align-items: start;
}
.lp-phase:first-child { border-top: 1px solid rgba(255, 255, 255, 0.06); }
.lp-phase-week { text-align: left; }
.lp-phase-week-label {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gray-mid);
  display: block;
}
.lp-phase-week-num {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--accent);
  font-weight: 700;
}
.lp-phase-body h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: calc(var(--unit) * 1.5);
}
.lp-phase-body p {
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  color: var(--gray-light);
  line-height: 1.7;
  text-transform: none;
}

/* ─── DELIVERABLE LIST ─── */
.lp-deliverable-list { display: flex; flex-direction: column; }
.lp-deliverable {
  display: flex;
  gap: calc(var(--unit) * 3);
  padding: calc(var(--unit) * 3.5) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  align-items: flex-start;
}
.lp-deliverable:first-child { border-top: 1px solid rgba(255, 255, 255, 0.06); }
.lp-deliverable-mark {
  width: 3px;
  height: 3px;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 7px;
}
.lp-deliverable-name {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: calc(var(--unit) * 1);
}
.lp-deliverable-desc {
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  color: var(--gray-light);
  line-height: 1.65;
  text-transform: none;
}

/* ─── DARK NOTE BOX ─── */
.lp-note {
  background: var(--dark-card);
  border: 1px solid var(--surface-line-soft);
  padding: clamp(28px, 4vw, 48px);
  transition: background 0.2s;
}
.lp-note:hover { background: var(--gray-dark); }
.lp-note p {
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--gray-light);
}
.lp-note strong { color: var(--white); font-weight: 600; }

/* ─── STAT BOX ─── */
.lp-stat-box {
  background: var(--dark-card);
  border: 1px solid var(--surface-line-soft);
  padding: clamp(28px, 4vw, 48px);
  transition: background 0.2s;
}
.lp-stat-box:hover { background: var(--gray-dark); }
.lp-stat-num {
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 1;
  color: var(--accent);
  font-weight: 700;
}
.lp-stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-top: calc(var(--unit) * 1.5);
  margin-bottom: calc(var(--unit) * 3);
}
.lp-stat-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--gray-light);
  text-transform: none;
  letter-spacing: 0.02em;
}

/* ─── LOCATION CARD ─── */
.lp-location-card {
  background: var(--dark-card);
  border: 1px solid var(--surface-line-soft);
  padding: clamp(28px, 4vw, 48px);
  transition: background 0.2s;
}
.lp-location-card:hover { background: var(--gray-dark); }
.lp-location-label {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: calc(var(--unit) * 2);
}
.lp-location-name {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: calc(var(--unit) * 4);
}
.lp-location-fact {
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--gray-light);
  padding: calc(var(--unit) * 2) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  line-height: 1.6;
  text-transform: none;
}
.lp-location-fact:first-of-type { border-top: 1px solid rgba(255, 255, 255, 0.06); }

/* ─── META ROWS ─── */
.lp-meta-rows { display: flex; flex-direction: column; }
.lp-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: calc(var(--unit) * 2.5) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  gap: var(--grid-gap);
}
.lp-meta-row:first-child { border-top: 1px solid rgba(255, 255, 255, 0.06); }
.lp-meta-row-label {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gray-mid);
  flex-shrink: 0;
}
.lp-meta-row-value {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
  text-align: right;
}

/* ─── WORK CARD (mini) ─── */
.lp-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: calc(var(--unit) * 6);
}
.lp-work-card {
  background: var(--dark-card);
  border: 1px solid var(--surface-line-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}
.lp-work-card:hover { background: var(--gray-dark); }
.lp-work-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.lp-work-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lp-work-card-img .img-placeholder { min-height: 200px; height: 100%; }
.lp-work-card-body { padding: calc(var(--unit) * 4); flex: 1; }
.lp-work-card-sector {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: calc(var(--unit) * 1.5);
}
.lp-work-card h3 { font-size: 0.9375rem; margin-bottom: calc(var(--unit) * 2); }
.lp-work-card p {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--gray-light);
  text-transform: none;
  letter-spacing: 0.02em;
}
.lp-work-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-top: calc(var(--unit) * 3);
}

/* ─── TWO-COL WORK GRID ─── */
.lp-work-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: calc(var(--unit) * 6);
}
.lp-work-card-wide .lp-work-card-img { aspect-ratio: 16/9; }

/* ─── QUOTE ─── */
.lp-quote {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  line-height: 1.55;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
  border-left: 2px solid var(--accent);
  padding-left: calc(var(--unit) * 4);
  text-transform: none;
}
.lp-quote-attribution {
  margin-top: calc(var(--unit) * 3);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--gray-light);
  font-style: italic;
  padding-left: calc(var(--unit) * 4);
}

/* ─── FAQ ─── */
.lp-faq {
  max-width: none;
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.lp-faq-item {
  background: var(--dark-card);
  border: 0;
  margin: 0;
  transition: background 0.2s ease;
}
.lp-faq-item:hover,
.lp-faq-item.is-open {
  background: var(--gray-dark);
}
.lp-faq-q {
  appearance: none;
  width: 100%;
  border: 0;
  background: transparent;
  font-family: var(--futura);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(var(--unit) * 4);
  position: relative;
  padding: calc(var(--unit) * 3.5) calc(var(--unit) * 4);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white);
  text-align: left;
  text-transform: uppercase;
  line-height: 1.3;
  transition: color 0.2s, background 0.2s;
}
.lp-faq-label {
  display: block;
  max-width: 44rem;
  padding-right: calc(var(--unit) * 4);
}
.lp-faq-q::before,
.lp-faq-q::after {
  content: "";
  display: block;
  width: 12px;
  height: 1px;
  background: var(--accent);
  position: absolute;
  right: calc(var(--unit) * 4);
  top: 50%;
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.2, 0.6, 0.3, 1), opacity 0.25s ease, background 0.2s ease;
}
.lp-faq-q::before {
  transform: translateY(-50%) rotate(90deg);
}
.lp-faq-q::after {
  transform: translateY(-50%);
}
.lp-faq-q:hover {
  background: transparent;
}
.lp-faq-q:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.18);
  outline-offset: -1px;
  background: transparent;
}
.lp-faq-item.is-open .lp-faq-q {
  color: var(--white);
  background: transparent;
}
.lp-faq-item.is-open .lp-faq-q::before {
  transform: translateY(-50%) rotate(90deg) scaleX(0);
  opacity: 0;
}
.lp-faq-a-wrap {
  overflow: hidden;
  height: 0;
  opacity: 0;
  padding: calc(var(--unit) * 2.5) calc(var(--unit) * 4) calc(var(--unit) * 3.5);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    height 0.35s cubic-bezier(0.2, 0.6, 0.3, 1),
    opacity 0.25s ease;
}
.lp-faq-item.is-open .lp-faq-a-wrap {
  height: auto;
  opacity: 1;
}
.lp-faq-a {
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
  color: var(--gray-light);
  text-transform: none;
}

@media (max-width: 640px) {
  .lp-faq-q {
    gap: calc(var(--unit) * 2);
  }
  .lp-faq-a-wrap {
    padding-left: calc(var(--unit) * 4);
  }
}

/* ─── CREDENTIAL / BRAND ROWS ─── */
.lp-cred-rows { display: flex; flex-direction: column; }
.lp-cred-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: calc(var(--unit) * 2.5) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  gap: var(--grid-gap);
}
.lp-cred-row:first-child { border-top: 1px solid rgba(255, 255, 255, 0.06); }
.lp-cred-label {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gray-mid);
}
.lp-cred-value {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* ─── CONTRAST PAIRS ─── */
.lp-contrast { display: flex; flex-direction: column; gap: 1px; }
.lp-contrast-row {
  background: var(--dark-card);
  border: 1px solid var(--surface-line-soft);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: calc(var(--unit) * 3);
  padding: calc(var(--unit) * 4);
  align-items: start;
  transition: background 0.2s;
}
.lp-contrast-row:hover { background: var(--gray-dark); }
.lp-contrast-col .lp-contrast-col-label {
  font-size: 0.625rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: calc(var(--unit) * 1.5);
}
.lp-contrast-col-label--neg { color: var(--gray-mid); }
.lp-contrast-col-label--pos { color: var(--accent); }
.lp-contrast-col p {
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  color: var(--gray-light);
  line-height: 1.6;
  text-transform: none;
}
.lp-contrast-col--pos p { color: var(--white); }
.lp-contrast-vs {
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  color: var(--gray-dark);
  padding-top: calc(var(--unit) * 2.5);
}

/* ─── PHASE BLOCKS (Brand Director) ─── */
.lp-phase-block {
  background: var(--dark-card);
  border: 1px solid var(--surface-line-soft);
  padding: clamp(28px, 4vw, 48px);
  transition: background 0.2s;
}
.lp-phase-block:hover { background: var(--gray-dark); }
.lp-phase-block-header { margin-bottom: calc(var(--unit) * 5); }
.lp-phase-block-num {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  margin-bottom: calc(var(--unit) * 2);
}
.lp-phase-block-tag {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gray-light);
  margin-bottom: calc(var(--unit));
}
.lp-phase-block .lp-phase-block-title {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.lp-phase-block p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--gray-light);
  text-transform: none;
  letter-spacing: 0.02em;
  margin-bottom: calc(var(--unit) * 4);
}
.lp-phase-block-items { display: flex; flex-direction: column; }
.lp-phase-block-item {
  display: flex;
  gap: calc(var(--unit) * 2);
  padding: calc(var(--unit) * 1.5) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  color: var(--gray-light);
  align-items: flex-start;
}
.lp-phase-block-item::before {
  content: '';
  display: block;
  width: 3px;
  height: 3px;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ─── COMPARISON TABLE ─── */
.lp-comparison { margin-top: calc(var(--unit) * 6); }
.lp-comparison-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2px;
  padding-bottom: calc(var(--unit) * 2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 2px;
}
.lp-comp-h {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gray-mid);
  text-align: center;
}
.lp-comp-h:first-child { text-align: left; }
.lp-comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2px;
  padding: calc(var(--unit) * 2.5) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  align-items: center;
}
.lp-comp-feature {
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  color: var(--gray-light);
}
.lp-comp-cell {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--gray-light);
  letter-spacing: 0.04em;
}
.lp-comp-cell--yes { color: var(--green); font-weight: 700; }

.lp-cta-note {
  margin-top: calc(var(--unit) * 4);
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.65);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--surface-0);
  border-top: 1px solid var(--surface-line);
  padding: calc(var(--unit) * 5) var(--grid-gap);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--grid-gap);
}
.footer-logo {
  font-family: var(--futura);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: var(--white);
  display: flex;
  align-items: center;
}
.footer-logo img {
  display: block;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-right: 8px;
}
.footer-links {
  display: flex;
  gap: calc(var(--unit) * 3);
  align-items: center;
}
.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--gray-mid);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-copy {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--gray-mid);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .lp-meta-grid { grid-template-columns: repeat(3, 1fr); }
  .lp-hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .lp-two-col,
  .lp-two-col--3-2,
  .lp-two-col--2-3 { grid-template-columns: 1fr; gap: 40px; }
  .lp-three-col { grid-template-columns: 1fr; }
  .lp-work-grid { grid-template-columns: 1fr; }
  .lp-work-grid-2 { grid-template-columns: 1fr; }
  .lp-meta-grid { grid-template-columns: 1fr 1fr; }
  .lp-comparison-header,
  .lp-comparison-row { grid-template-columns: 2fr 1fr 1fr; }
  .lp-comparison-header .lp-comp-h:last-child,
  .lp-comparison-row .lp-comp-cell:last-child { display: none; }
  .footer-inner { flex-direction: column; gap: calc(var(--unit) * 2); text-align: center; }
}

@media (max-width: 480px) {
  .lp-meta-grid { grid-template-columns: 1fr; }
  .lp-hero-actions { flex-direction: column; align-items: flex-start; }
  .contact-actions { flex-direction: column; }
}
