/* ===================================================================
   LMB INVESTMENTS — stylesheet
   Bare-bones, forms-focused site. Sections top to bottom:
   Reset/Variables -> Nav -> Hero -> Forms (the main content) -> Footer
   =================================================================== */

:root{
  /* --- Brand palette --- */
  --ink: #1B2430;          /* deep charcoal-navy, dark sections */
  --ink-2: #222E3C;
  --ink-line: #33414F;
  --paper: #F6F3EE;        /* warm off-white, light sections */
  --paper-2: #ECE6DA;
  --text: #1B2430;
  --muted: #5C6674;        /* secondary/body text */
  --accent: #C2842F;       /* warm copper/amber accent */
  --accent-dark: #A66E24;
  --accent-light: #E7B978;
  --line: rgba(27,36,48,0.12);
  --line-dark: rgba(246,243,238,0.14);
  --shadow: 0 24px 60px rgba(20,24,30,0.28);
}

*{ box-sizing: border-box; margin:0; padding:0; }
html{ scroll-behavior: smooth; }
body{
  background: var(--paper);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1,h2,.display{
  font-family: 'Archivo', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  font-weight: 700;
  line-height: 1.08;
}
.mono{ font-family: 'Space Mono', monospace; }
a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }
ul{ list-style: none; }

.wrap{ max-width: 900px; margin: 0 auto; padding: 0 28px; }

.eyebrow{
  font-family: 'Space Mono', monospace;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.eyebrow.on-dark{ color: var(--accent-light); }

/* --- Buttons --- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Mono', monospace;
  font-size: 13.5px;
  letter-spacing: 0.03em;
  font-weight: 700;
  padding: 15px 26px;
  border-radius: 9px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
  text-transform: uppercase;
}
.btn:hover{ transform: translateY(-1px); }
.btn-primary{ background: var(--accent); color: #fff; }
.btn-primary:hover{ background: var(--accent-dark); }
.btn-ghost{ background: transparent; color: var(--paper); border-color: rgba(246,243,238,0.38); }
.btn-ghost:hover{ border-color: rgba(246,243,238,0.75); }
.btn-outline{ background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover{ border-color: var(--ink); background: var(--paper-2); }
.btn-sm{ padding: 10px 16px; font-size: 12px; }

/* --- Scroll reveal --- */
.reveal{ opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; transition: none; }
  html{ scroll-behavior: auto; }
}

/* ===================================================================
   NAV — single row, wraps on narrow screens, no menu needed since
   there's only one real destination on the page (the forms).
   =================================================================== */
.nav{
  position: sticky; top: 0; z-index: 100;
  background: rgba(27,36,48,0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line-dark);
}
.nav .wrap{
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap: wrap; gap: 12px; padding-top: 16px; padding-bottom: 16px;
}
.nav-logo{ display:flex; align-items:center; gap: 11px; }
.nav-logo-mark{
  width: 30px; height: 30px; background: var(--accent); border-radius: 8px;
  flex-shrink: 0; display:flex; align-items:center; justify-content:center;
}
.nav-logo-mark svg{ width: 17px; height: 17px; display:block; }
.nav-logo-text{
  font-family: 'Archivo', sans-serif; color: #fff; font-size: 16.5px;
  letter-spacing: 0.02em; text-transform: uppercase; font-weight: 700;
}
.nav-logo-text span{ color: var(--accent-light); }
.nav-right{ display:flex; align-items:center; gap: 22px; flex-wrap: wrap; }
.nav-phone{
  font-family:'Space Mono',monospace; font-size: 13px; letter-spacing: 0.03em;
  color: rgba(246,243,238,0.82); transition: color .15s ease;
}
.nav-phone:hover{ color:#fff; }

/* ===================================================================
   HERO — short, text-only, same "blueprint grid" treatment as the
   forms-directory section below it.
   =================================================================== */
.hero{
  background: var(--ink);
  background-image:
    linear-gradient(rgba(194,132,47,0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(194,132,47,0.10) 1px, transparent 1px);
  background-size: 44px 44px;
  background-position: center top;
  position: relative;
  padding: 76px 0 72px;
  overflow: hidden;
  color: var(--paper);
  text-align: center;
}
.hero::after{
  content:'';
  position:absolute; inset:0;
  background: radial-gradient(ellipse 800px 420px at 50% 0%, rgba(194,132,47,0.16), transparent 60%);
  pointer-events:none;
}
.hero .wrap{ position:relative; z-index:2; }
.hero-inner{ max-width: 640px; margin: 0 auto; }
.hero h1{
  font-size: clamp(34px, 6vw, 54px);
  margin: 16px 0 18px;
  color: #fff;
}
.hero p.lede{
  font-size: 16.5px; color: rgba(246,243,238,0.8); max-width: 520px; margin: 0 auto 30px;
}
.hero-jump{
  display:inline-flex; align-items:center; gap:8px;
  font-family:'Space Mono',monospace; font-size: 12.5px; letter-spacing: 0.05em;
  color: var(--accent-light); text-transform: uppercase; font-weight: 700;
}
.hero-jump svg{ width: 13px; height: 13px; }

/* ===================================================================
   FORMS — the page's main content, styled as a document/work-order
   "sheet" (this is the direct carry-over of the reference site's
   signature pricing-slip treatment, applied to forms instead).
   =================================================================== */
.forms{ background: var(--paper-2); padding: 76px 0 88px; }
.section-head{ max-width: 560px; margin: 0 auto 40px; text-align:center; }
.section-head h2{ font-size: clamp(24px,3.6vw,32px); margin-top: 12px; }
.section-head p{ color: var(--muted); font-size: 15.5px; margin-top: 12px; }

.sheet{
  background: var(--paper);
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.sheet::before{
  content:'';
  position:absolute; top:0; left:0; right:0; height:14px;
  background-image: radial-gradient(circle, var(--paper-2) 3.5px, transparent 3.6px);
  background-size: 22px 14px;
  background-position: 11px 0;
}
.sheet-head{
  display:flex; justify-content:space-between; align-items:flex-end;
  padding: 28px 30px 20px;
  border-bottom: 2px dashed var(--line);
  flex-wrap:wrap; gap: 10px;
}
.sheet-head .to{ font-family:'Space Mono',monospace; font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }
.sheet-head .to b{ display:block; color: var(--text); font-size: 14px; margin-top: 2px; }
.sheet-no{ font-family:'Space Mono',monospace; font-size: 12px; color: var(--muted); text-align:right; }

.form-list{ padding: 6px 30px; }
.form-line{
  display:flex; align-items:center; gap: 18px;
  padding: 22px 0; border-bottom: 1px dotted var(--line);
}
.form-line:last-child{ border-bottom:none; }
.form-line-icon{
  width: 42px; height: 42px; border-radius: 9px; background: var(--paper-2);
  display:flex; align-items:center; justify-content:center; color: var(--accent-dark);
  flex-shrink: 0;
}
.form-line-icon svg{ width: 20px; height: 20px; }
.form-line-body{ flex-grow: 1; min-width: 0; }
.form-line-body h3{
  font-family:'Archivo',sans-serif; text-transform: uppercase; font-size: 15.5px;
  letter-spacing: 0.01em; font-weight: 700; margin-bottom: 4px;
}
.form-line-body p{ font-size: 14px; color: var(--muted); }
.form-line .btn{ flex-shrink: 0; }
@media(max-width: 560px){
  .form-line{ flex-wrap: wrap; }
  .form-line .btn{ margin-left: 60px; }
}

.sheet-foot{
  display:flex; justify-content:space-between; align-items:center;
  padding: 22px 30px; background: var(--paper-2); flex-wrap: wrap; gap: 14px;
}
.sheet-foot .note{ font-size: 13.5px; color: var(--muted); font-family:'Space Mono',monospace; }
.sheet-foot .note b{ color: var(--text); }

/* ===================================================================
   FOOTER
   =================================================================== */
footer{ background: var(--ink); color: rgba(246,243,238,0.55); padding: 34px 0; }
footer .wrap{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap: 12px; }
footer .f-left{ display:flex; align-items:center; gap: 10px; font-family:'Space Mono',monospace; font-size: 12px; flex-wrap:wrap; }
footer a:hover{ color: var(--paper); }
footer .f-right{ display:flex; gap: 20px; font-family:'Space Mono',monospace; font-size: 12px; flex-wrap: wrap; }
