/* ============================================================
   ARC — Interim landing page
   A single, calm holding page while the full site is built.
   Builds on tokens.css. Namespaced under .lp.
   ============================================================ */

* { box-sizing: border-box; }
:root { --h-scale: 1; }
html, body { margin: 0; }
body {
  background: var(--arc-vintage-navy);
  color: var(--fg-on-navy);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.lp { min-height: 100vh; display: flex; flex-direction: column; position: relative; }
.lp .container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

/* radius helper honoring the corner-radius default */
.r-lg { border-radius: var(--radius-lg); }

/* ---------------------------------------------------------------
   Top bar — slim, lockup + 24/7 phone
--------------------------------------------------------------- */
.lp-top { background: #fff; border-bottom: 1px solid var(--border-strong); }
.lp-top .inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 16px; padding-bottom: 16px; }
.lp-top .brand img { height: 38px; display: block; }
.lp-top .right { display: flex; align-items: center; gap: 22px; }
.lp-top .badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--arc-vintage-navy);
}
.lp-top .badge .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--arc-fabric-red);
  box-shadow: 0 0 0 0 rgba(193,54,54,.5); animation: lp-pulse 2.6s var(--ease-out) infinite;
}
@keyframes lp-pulse { 0% { box-shadow: 0 0 0 0 rgba(193,54,54,.5);} 70% { box-shadow: 0 0 0 8px rgba(193,54,54,0);} 100% { box-shadow: 0 0 0 0 rgba(193,54,54,0);} }
.lp-top .phone {
  display: inline-flex; align-items: center; gap: 9px; color: var(--arc-vintage-navy); text-decoration: none;
  font-weight: 700; font-size: 16px; letter-spacing: .01em; white-space: nowrap;
}
.lp-top .phone svg { width: 16px; height: 16px; color: var(--arc-fabric-red); }
.lp-top .phone:hover { color: var(--arc-navy-2); }

/* ---------------------------------------------------------------
   Hero band
--------------------------------------------------------------- */
.lp-hero { position: relative; flex: 1; overflow: hidden; }
.lp-hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--arc-fabric-red); z-index: 4; }

/* optional photo bg (Tweaks: layout = photo) */
.lp-hero .bg-slot { position: absolute; inset: 0; z-index: 0; }
.lp-hero .bg-slot image-slot { width: 100%; height: 100%; display: block; --slot-bg: var(--arc-navy-2); }
.lp-hero .bg-wash { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(40,41,58,.97) 0%, rgba(40,41,58,.9) 46%, rgba(40,41,58,.66) 100%); }

/* watermark brandmark (solid-navy mode only) */
.lp-hero .watermark {
  position: absolute; right: -3vw; bottom: -6vw; width: min(46vw, 560px); z-index: 0;
  opacity: .05; pointer-events: none; user-select: none;
}
.lp-hero.has-photo .watermark { display: none; }

.lp-hero .inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(40px, 5vw, 88px);
  align-items: center; padding-top: clamp(48px, 7vw, 96px); padding-bottom: clamp(56px, 8vw, 104px);
}
.lp-hero.no-form .inner { grid-template-columns: 1fr; max-width: 880px; margin: 0 auto; text-align: center; }

/* eyebrow */
.lp-eyebrow {
  display: inline-flex; align-items: center; gap: 12px; margin: 0 0 22px;
  font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--fg-on-navy-muted);
}
.lp-eyebrow .bar { width: 30px; height: 1px; background: var(--arc-fabric-red); }
.lp-hero.no-form .lp-eyebrow { justify-content: center; }

/* headline */
.lp-hero h1 {
  font-weight: 900; font-size: calc(clamp(42px, 5.4vw, 76px) * var(--h-scale));
  line-height: .96; letter-spacing: -.022em; margin: 0 0 24px; text-wrap: balance;
}
.lp-hero h1 .em { color: var(--arc-fabric-red); }

.lp-sub {
  font-size: clamp(16px, 1.35vw, 19px); line-height: 1.55; color: rgba(255,255,255,.82);
  max-width: 56ch; margin: 0 0 30px;
}
.lp-hero.no-form .lp-sub { margin-left: auto; margin-right: auto; }

/* services strip */
.lp-services {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  font-size: clamp(13px, 1.1vw, 15px); font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: #fff; margin: 0 0 30px;
}
.lp-hero.no-form .lp-services { justify-content: center; }
.lp-services .pipe { color: var(--arc-fabric-red); font-weight: 400; }

/* cta row */
.lp-cta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.lp-hero.no-form .lp-cta { justify-content: center; }

/* coming-soon note */
.lp-note {
  display: inline-flex; align-items: center; gap: 11px; margin-top: 28px;
  padding: 12px 16px; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-md);
  background: rgba(255,255,255,.04);
  font-size: 13.5px; line-height: 1.45; color: var(--fg-on-navy-muted); max-width: 60ch;
}
.lp-note svg { width: 17px; height: 17px; color: var(--arc-fabric-red); flex: none; }
.lp-note strong { color: #fff; font-weight: 700; }
.lp-hero.no-form .lp-note { margin-left: auto; margin-right: auto; }

/* ---------------------------------------------------------------
   Request form card
--------------------------------------------------------------- */
.lp-form {
  background: #fff; color: var(--arc-vintage-navy);
  border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-lg); position: relative;
}
.lp-form::before { content: ""; position: absolute; top: 0; left: 30px; right: 30px; height: 3px; background: var(--arc-fabric-red); border-radius: 0 0 2px 2px; }
.lp-form .fh { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 4px; }
.lp-form h2 { margin: 0; font-size: 22px; font-weight: 800; letter-spacing: -.01em; }
.lp-form .fh-badge {
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--arc-fabric-red); background: rgba(193,54,54,.08); padding: 5px 9px; border-radius: var(--radius-pill);
}
.lp-form .fh-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--arc-fabric-red); }
.lp-form .f-sub { font-size: 13px; color: var(--fg-muted); margin: 0 0 18px; line-height: 1.45; }

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 13px; }
.field label { font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--arc-graphite); }
.field .req { color: var(--arc-fabric-red); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 13px; border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong); background: #fff; font-family: inherit;
  font-size: 14px; color: var(--arc-vintage-navy); font-weight: 500;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.field input::placeholder, .field textarea::placeholder { color: var(--fg-faint); font-weight: 400; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--arc-vintage-navy); box-shadow: 0 0 0 3px rgba(40,41,58,.12); }
.field textarea { resize: vertical; min-height: 84px; }
.field.error input, .field.error select, .field.error textarea { border-color: var(--arc-fabric-red); }
.field .err-msg { font-size: 11.5px; color: var(--arc-fabric-red); font-weight: 600; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-foot { display: flex; align-items: center; gap: 14px; margin-top: 6px; }
.form-foot .note { font-size: 11px; color: var(--fg-muted); line-height: 1.4; }
.form-foot .btn { flex: none; }

.form-sent { text-align: center; padding: 22px 8px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.form-sent .check { width: 52px; height: 52px; border-radius: 50%; background: var(--arc-vintage-navy); color: #fff; display: flex; align-items: center; justify-content: center; }
.form-sent .check svg { width: 26px; height: 26px; }
.form-sent h2 { margin: 0; font-size: 22px; font-weight: 800; }
.form-sent p { margin: 0; font-size: 14px; color: var(--fg-muted); max-width: 34ch; line-height: 1.5; }

/* ---------------------------------------------------------------
   Buttons (scoped)
--------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 52px; padding: 0 26px; border-radius: var(--radius-sm); font-family: inherit;
  font-weight: 600; font-size: 15.5px; cursor: pointer; border: 1px solid transparent;
  text-decoration: none; white-space: nowrap;
  transition: background var(--dur-fast) var(--ease-std), color var(--dur-fast), transform var(--dur-fast), border-color var(--dur-fast);
}
.btn svg { width: 17px; height: 17px; }
.btn.sm { height: 46px; padding: 0 20px; font-size: 14.5px; }
.btn.accent { background: var(--arc-fabric-red); color: #fff; }
.btn.accent:hover { background: var(--accent-press); }
.btn.accent:active { transform: scale(.98); }
.btn.on-navy { background: #fff; color: var(--arc-vintage-navy); }
.btn.on-navy:hover { background: var(--arc-concrete); }
.btn.on-navy:active { transform: scale(.98); }
.btn.on-navy-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.34); }
.btn.on-navy-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }
.btn.navy { background: var(--arc-vintage-navy); color: #fff; }
.btn.navy:hover { background: var(--arc-navy-2); }

/* ---------------------------------------------------------------
   Footer band — service area + contact
--------------------------------------------------------------- */
.lp-foot { background: var(--arc-navy-3); border-top: 1px solid rgba(255,255,255,.1); }
.lp-foot .inner { padding-top: clamp(40px, 5vw, 64px); padding-bottom: 28px; }
.lp-foot .grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.1); }
.lp-foot h5 { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.5); margin: 0 0 16px; }
.lp-foot .area-pins { display: flex; flex-wrap: wrap; gap: 8px; }
.lp-foot .area-pin {
  display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600;
  color: rgba(255,255,255,.82); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  padding: 7px 12px; border-radius: var(--radius-pill);
}
.lp-foot .area-pin svg { width: 13px; height: 13px; color: var(--arc-fabric-red); }
.lp-foot .contact-line { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.lp-foot .contact-line svg { width: 16px; height: 16px; color: var(--arc-fabric-red); flex: none; }
.lp-foot .contact-line a, .lp-foot .contact-line span { color: #fff; text-decoration: none; font-weight: 700; font-size: 16px; }
.lp-foot .contact-line .lbl { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 2px; }
.lp-foot .contact-line .stk { display: flex; flex-direction: column; gap: 1px; }
.lp-foot .blurb { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.62); margin: 0; max-width: 38ch; }
.lp-foot .bottom { padding-top: 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 12px; color: rgba(255,255,255,.5); }
.lp-foot .bottom .ss { display: inline-flex; align-items: center; gap: 8px; }
.lp-foot .bottom .ss .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--arc-fabric-red); }

/* ---------------------------------------------------------------
   Accent intensity (Tweaks)
--------------------------------------------------------------- */
[data-accent="calm"] .lp-eyebrow .bar,
[data-accent="calm"] .lp-services .pipe { background: rgba(255,255,255,.4); }
[data-accent="calm"] .lp-services .pipe { color: rgba(255,255,255,.4); }
[data-accent="calm"] .lp-note svg,
[data-accent="calm"] .lp-foot .area-pin svg,
[data-accent="calm"] .lp-top .phone svg,
[data-accent="calm"] .lp-foot .contact-line svg { color: var(--arc-concrete); }
[data-accent="calm"] .lp-hero::after,
[data-accent="calm"] .lp-form::before { background: var(--arc-concrete-2); }
[data-accent="calm"] .lp-top .badge .pulse,
[data-accent="calm"] .lp-foot .bottom .ss .dot { background: var(--arc-concrete-2); }
[data-accent="calm"] .btn.accent { background: var(--arc-vintage-navy); }
[data-accent="calm"] .btn.accent:hover { background: var(--arc-navy-2); }
[data-accent="calm"] .lp-form .fh-badge,
[data-accent="calm"] .lp-form .fh-badge .dot { color: var(--arc-graphite); }
[data-accent="calm"] .lp-form .fh-badge { background: var(--arc-fog); }
[data-accent="calm"] .lp-form .fh-badge .dot { background: var(--arc-graphite); }
[data-accent="calm"] .lp-hero h1 .em { color: #fff; }

/* ---------------------------------------------------------------
   Reveal — CSS load animation (ends visible; no-JS safe)
--------------------------------------------------------------- */
.reveal { animation: lp-rise .6s var(--ease-out) both; }
.lp-hero .copy .reveal:nth-child(1) { animation-delay: .02s; }
.lp-hero .copy .reveal:nth-child(2) { animation-delay: .08s; }
.lp-hero .copy .reveal:nth-child(3) { animation-delay: .14s; }
.lp-hero .copy .reveal:nth-child(4) { animation-delay: .20s; }
.lp-hero .copy .reveal:nth-child(5) { animation-delay: .26s; }
.lp-hero .copy .reveal:nth-child(6) { animation-delay: .32s; }
.lp-hero > .container > .reveal#request { animation-delay: .18s; }
@keyframes lp-rise { from { transform: translateY(12px); } to { transform: none; } }
@media (prefers-reduced-motion: reduce) { .reveal, .lp-top .badge .pulse { animation: none; transform: none; } }

.lucide-i { display: inline-flex; align-items: center; justify-content: center; }
.lucide-i svg { display: block; }

/* ---------------------------------------------------------------
   Responsive
--------------------------------------------------------------- */
@media (max-width: 920px) {
  .lp-hero .inner { grid-template-columns: 1fr; gap: 36px; }
  .lp-hero .bg-wash { background: linear-gradient(180deg, rgba(40,41,58,.95), rgba(40,41,58,.9)); }
  .lp-foot .grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .lp-top .inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .lp-top .right { width: 100%; justify-content: space-between; }
  .two-col { grid-template-columns: 1fr; }
  .lp-cta { width: 100%; }
  .lp-cta .btn { flex: 1; }
  .lp-foot .grid { grid-template-columns: 1fr; gap: 28px; }
  .lp-foot .bottom { flex-direction: column; align-items: flex-start; }
}
