@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Libre+Franklin:wght@600;700;800&display=swap');

:root {
  --ink: #1d211b;
  --forest: #30362c;
  --forest-2: #3d4437;
  --moss: #67715c;
  --cream: #f4ecd9;
  --paper: #fbf8f0;
  --sand: #d8c8a5;
  --amber: #c8783b;
  --amber-dark: #9e562b;
  --line: rgba(48, 54, 44, .18);
  --white: #fffdf8;
  --shadow: 0 24px 70px rgba(25, 29, 23, .14);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -100px;
  z-index: 100;
  background: var(--cream);
  color: var(--ink);
  padding: .8rem 1rem;
  border-radius: 8px;
}
.skip-link:focus { top: 1rem; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.section { padding: 100px 0; }
.section-sm { padding: 66px 0; }
.section-dark { background: var(--forest); color: var(--cream); }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.eyebrow {
  margin: 0 0 1rem;
  color: var(--amber-dark);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-dark .eyebrow { color: #efad75; }
h1, h2, h3, .display {
  font-family: "Libre Franklin", Arial, sans-serif;
  line-height: 1.08;
  letter-spacing: -.035em;
  margin: 0 0 1.2rem;
}
h1 { font-size: clamp(2.6rem, 6.5vw, 5.4rem); }
h2 { font-size: clamp(2.15rem, 4.5vw, 3.75rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1.25rem; }
.lead { font-size: clamp(1.12rem, 2vw, 1.35rem); line-height: 1.55; }
.lede { max-width: 720px; color: #4d5548; font-size: 1.12rem; }
.section-dark .lede { color: #d8d8cb; }
.kicker { color: var(--moss); font-weight: 700; }
.rule { height: 1px; background: var(--line); margin: 2rem 0; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: var(--cream);
  border-bottom: 1px solid rgba(244, 236, 217, .22);
}
.site-header.inner-header {
  position: relative;
  background: var(--forest);
}
.nav-wrap {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  text-decoration: none;
}
.brand-mark {
  position: relative;
  display: block;
  width: 215px;
  height: 62px;
  flex: 0 0 auto;
  overflow: hidden;
  background: url("lsp-logo.svg") center / contain no-repeat;
  color: transparent;
  font-size: 0;
}
.brand-mark::after {
  display: none;
}
.brand-name {
  display: block;
  max-width: 118px;
  font-size: .68rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.main-nav { display: flex; align-items: center; gap: 1.4rem; }
.main-nav a {
  position: relative;
  text-decoration: none;
  font-size: .84rem;
  font-weight: 700;
}
.main-nav a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--amber);
  transition: right .2s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(244,236,217,.4);
  border-radius: 50%;
  background: transparent;
  color: var(--cream);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: .85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 100px;
  background: var(--amber);
  color: #1e211b;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); background: #db8c4e; }
.button-light { background: var(--cream); color: var(--ink); }
.button-outline { background: transparent; border-color: currentColor; color: inherit; }
.button-small { min-height: 42px; padding: .65rem 1rem; font-size: .8rem; }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.text-link {
  display: inline-flex;
  gap: .5rem;
  color: var(--amber-dark);
  font-weight: 800;
  text-decoration: none;
}
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }
.section-dark .text-link { color: #efad75; }

.hero { 
  position: relative;
  min-height: 920px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--forest);
  color: var(--cream);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,24,18,.94) 0%, rgba(20,24,18,.78) 36%, rgba(20,24,18,.25) 67%, rgba(20,24,18,.08) 100%), url("lsp-bobby-rare-vendor.png") center/cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(22,26,20,.82));
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 156px 0 60px;
}
.hero h1 {
  max-width: 800px;
  margin-bottom: .9rem;
  font-size: clamp(3rem, 5vw, 4.65rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.hero .lead {
  max-width: 700px;
  margin-bottom: .9rem;
  color: #e7e1d4;
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  line-height: 1.48;
}
.hero .eyebrow { color: #efad75; }
.hero-story { max-width: 660px; color: #d5d0c5; font-size: .96rem; line-height: 1.5; }
.hero-story p { margin-bottom: .4rem; }
.hero .button-row { margin-top: 1.35rem; }
.hero-note {
  display: inline-flex;
  gap: .7rem;
  align-items: center;
  margin-top: .85rem;
  font-size: .82rem;
  color: #d5d0c5;
}
.hero-note::before { content: ""; width: 28px; height: 1px; background: var(--amber); }
.hero-note a { color: inherit; font-weight: 700; text-decoration: none; }
.hero-note a:hover { color: var(--cream); }
.hero-note strong { color: #efad75; }

.bobby-story {
  display: flex;
  align-items: center;
  min-height: 760px;
  background-image: linear-gradient(90deg, rgba(20,24,18,.96) 0%, rgba(20,24,18,.84) 46%, rgba(20,24,18,.24) 78%, rgba(20,24,18,.06) 100%), url("lsp-working-tablet.png");
  background-position: center, right center;
  background-size: cover, auto 100%;
  background-repeat: no-repeat;
  color: var(--cream);
}
.bobby-intro { margin-bottom: 0; }
.bobby-intro h2 { max-width: 880px; }
.bobby-story .eyebrow { color: #efad75; }
.bobby-details { max-width: 720px; margin-top: 2.5rem; }
.bobby-visual-line { max-width: 620px; margin: 0; font: 700 clamp(1.7rem, 3.4vw, 3.2rem)/1.18 "Libre Franklin", Arial, sans-serif; letter-spacing: -.035em; }
.bobby-promise { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; margin-top: 2rem; padding-top: 1.2rem; border-top: 1px solid rgba(48,54,44,.25); font-size: .9rem; }
.bobby-promise strong { color: #efad75; }
.bobby-promise span { font-weight: 700; }

.stats { background: #242921; color: var(--cream); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-left: 1px solid rgba(244,236,217,.16);
}
.stat { padding: 2rem; border-right: 1px solid rgba(244,236,217,.16); }
.stat strong { display: block; font: 800 clamp(1.8rem,3vw,2.7rem)/1 "Libre Franklin"; letter-spacing: -.04em; }
.stat span { display: block; margin-top: .65rem; color: #c7c8bc; font-size: .8rem; line-height: 1.35; }

.promise-strip { background: #242921; color: var(--cream); }
.promise-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-left: 1px solid rgba(244,236,217,.16);
}
.promise-grid span {
  padding: 1.65rem 1rem;
  border-right: 1px solid rgba(244,236,217,.16);
  color: #d7d4c9;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
}

.apartment-split { align-items: start; }
.b2b-card h3 { max-width: 540px; font-size: clamp(1.6rem, 3vw, 2.5rem); }
.door-statement {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 3rem;
  align-items: start;
  margin-top: 5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.door-statement span {
  color: var(--amber-dark);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.door-statement p { max-width: 760px; margin: 0; font: 700 clamp(1.35rem, 2.5vw, 2rem)/1.35 "Libre Franklin"; }

.capability-intro { margin-bottom: 4rem; }
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}
.capability-grid article { min-height: 210px; padding: 1.8rem; background: rgba(255,255,255,.48); }
.capability-grid span { color: var(--amber-dark); font-size: .72rem; font-weight: 800; }
.capability-grid h3 { margin: 3.25rem 0 0; font-size: 1.15rem; }
.capability-closing {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
  padding: 2rem;
  border-radius: 14px;
  background: var(--forest);
  color: var(--cream);
}
.capability-closing p { max-width: 650px; margin: 0; font-weight: 700; }
.capability-closing .button-row { flex: 0 0 auto; margin: 0; }
.capability-closing .text-link { color: #efad75; }

.message-intro { max-width: 780px; margin-bottom: 4rem; }
.message-list { border-top: 1px solid var(--line); }
.message-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1.3fr) minmax(240px, .7fr);
  gap: 2.5rem;
  align-items: start;
  padding: 3.2rem 0;
  border-bottom: 1px solid var(--line);
}
.message-number { color: var(--amber-dark); font: 800 1rem/1 "Libre Franklin"; letter-spacing: .08em; }
.message-copy h3 { margin-bottom: .8rem; font-size: clamp(1.65rem, 3vw, 2.6rem); }
.message-copy p { max-width: 710px; margin: 0; color: #50584c; font-size: 1.05rem; }
.message-proof {
  margin: .25rem 0 0;
  padding-left: 1.25rem;
  border-left: 3px solid var(--amber);
  color: var(--moss);
  font-size: .86rem;
  font-weight: 800;
}
.message-proof span { color: var(--amber-dark); }

.services-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 3.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}
.services-compact article { min-height: 260px; padding: 2rem; background: rgba(255,255,255,.48); }
.services-compact span { color: var(--amber-dark); font-size: .75rem; font-weight: 800; }
.services-compact h3 { margin-top: 3.5rem; }
.services-compact p { margin-bottom: 0; color: #51594d; font-size: .9rem; }
.cta-buttons { justify-content: flex-end; margin: 0; }

.split { display: grid; grid-template-columns: 1.03fr .97fr; gap: 6rem; align-items: center; }
.split-top { align-items: start; }
.credential-card {
  position: relative;
  padding: 3.2rem;
  border-radius: var(--radius);
  background: var(--forest);
  color: var(--cream);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.credential-card::before {
  content: "LSP";
  position: absolute;
  right: -18px;
  top: -12px;
  color: rgba(244,236,217,.06);
  font: 800 7rem/1 "Libre Franklin";
}
.credential-card > * { position: relative; }
.credential-card blockquote { position: relative; margin: 0; font: 700 1.55rem/1.35 "Libre Franklin"; }
.credential-card cite { display: block; margin-top: 1.8rem; color: #c9cbbc; font-style: normal; font-size: .82rem; }

.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 3rem; }
.card {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.36);
}
.card-num { display: block; margin-bottom: 2.5rem; color: var(--amber-dark); font-size: .75rem; font-weight: 800; }
.card p { color: #51594d; font-size: .93rem; }

.service-panels { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 3rem; }
.service-panel { padding: 2.8rem; border-radius: var(--radius); }
.service-panel:first-child { background: var(--cream); color: var(--ink); }
.service-panel:last-child { background: #454d3e; color: var(--cream); }
.service-panel ul, .check-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.service-panel li, .check-list li { position: relative; padding: .6rem 0 .6rem 1.5rem; border-top: 1px solid currentColor; border-color: rgba(128,128,128,.28); }
.service-panel li::before, .check-list li::before { content: "—"; position: absolute; left: 0; color: var(--amber); }

.services-list { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); margin-top: 3rem; }
.service-item { min-height: 220px; padding: 1.5rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-item span { display: block; color: var(--amber-dark); font-size: .75rem; font-weight: 800; }
.service-item h3 { margin-top: 4rem; font-size: 1.05rem; }

.cta-band {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 650px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(20,24,18,.92) 0%, rgba(20,24,18,.72) 46%, rgba(20,24,18,.18) 78%, rgba(20,24,18,.06) 100%), url("lsp-family-comfort-bobby.png") center/cover;
  color: var(--cream);
}
.cta-band .eyebrow { color: #efad75; }
.cta-band .lede { color: #d8d8cb; }
.cta-inner { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: end; gap: 3rem; }
.cta-inner h2 { max-width: 780px; }

.page-hero { background: var(--forest); color: var(--cream); padding: 120px 0 86px; }
.page-hero .lede { color: #d4d6ca; }
.breadcrumbs { margin-bottom: 2rem; color: #adb2a5; font-size: .78rem; }
.breadcrumbs a { text-decoration: none; }
.page-hero h1 { max-width: 950px; font-size: clamp(2.8rem,6vw,5rem); }

.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
.audience-card { padding: 2rem; border-radius: 14px; background: var(--cream); }
.audience-card h3 { min-height: 3rem; }
.audience-card ul { padding-left: 1.1rem; color: #4d5548; font-size: .92rem; }

.process { counter-reset: step; margin-top: 3rem; }
.process-step { counter-increment: step; display: grid; grid-template-columns: 100px 1fr; gap: 2rem; padding: 2.2rem 0; border-top: 1px solid var(--line); }
.process-step::before { content: "0" counter(step); color: var(--amber-dark); font: 800 2.2rem/1 "Libre Franklin"; }
.process-step h3 { margin-bottom: .65rem; }
.process-step p { max-width: 760px; color: #50584c; }

.form-shell { display: grid; grid-template-columns: .8fr 1.2fr; gap: 4rem; align-items: start; }
.form-card { padding: 2rem; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field-full { grid-column: 1 / -1; }
label, legend { font-size: .82rem; font-weight: 800; }
input, select, textarea {
  width: 100%;
  border: 1px solid #b9bcae;
  border-radius: 9px;
  background: var(--paper);
  color: var(--ink);
  padding: .8rem .9rem;
}
textarea { min-height: 130px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(200,120,59,.25); border-color: var(--amber); }
.radio-group { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; }
.radio { display: flex; align-items: center; gap: .6rem; padding: .7rem; border: 1px solid var(--line); border-radius: 9px; }
.radio input { width: auto; }
.form-note { margin-top: 1rem; color: #62685e; font-size: .76rem; }
.form-success { display: none; margin-top: 1rem; padding: 1rem; border-radius: 9px; background: #dce7d2; color: #25301f; }
.form-success.show { display: block; }
.form-tabs { display: flex; gap: .4rem; margin-bottom: 1.5rem; }
.form-tabs a { padding: .65rem .9rem; border-radius: 100px; background: var(--cream); font-size: .78rem; font-weight: 800; text-decoration: none; }

.site-footer { background: #22271f; color: var(--cream); padding: 70px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 4rem; }
.footer-brand p { max-width: 460px; color: #bfc2b6; }
.footer-brand .brand-mark { width: 250px; height: 74px; }
.footer-nav { display: grid; align-content: start; gap: .55rem; }
.footer-nav h3 { margin-bottom: .8rem; color: #9da492; font: 800 .72rem/1 "DM Sans"; letter-spacing: .14em; text-transform: uppercase; }
.footer-nav a { color: #e6e0d2; text-decoration: none; font-size: .9rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(244,236,217,.15); color: #979c90; font-size: .72rem; }
.prototype-note { margin-top: 1rem; color: #9ba092; font-size: .72rem; }

/* Client portal concept */
.portal-header { background: #242921; }
.portal-account, .portal-user { display: flex; align-items: center; gap: 1rem; }
.portal-user { color: var(--cream); font-size: .82rem; font-weight: 700; line-height: 1.2; }
.portal-user small { display: block; margin-bottom: .2rem; color: #abb0a4; font-size: .65rem; font-weight: 600; }
.portal-avatar, .contact-initials { display: grid; place-items: center; border-radius: 50%; background: var(--amber); color: #20241d; font-weight: 800; }
.portal-avatar { width: 38px; height: 38px; font-size: .72rem; }
.portal-main { background: #f0f1ec; }
.portal-welcome { padding: 54px 0 44px; background: var(--forest); color: var(--cream); }
.portal-welcome .lede { color: #d4d6ca; }
.demo-notice { display: flex; align-items: center; gap: 1rem; margin-bottom: 3rem; padding: .7rem 1rem; border: 1px solid rgba(244,236,217,.2); border-radius: 8px; color: #cfd1c7; font-size: .78rem; }
.demo-notice strong { color: #efad75; text-transform: uppercase; letter-spacing: .08em; }
.portal-title-row { display: flex; justify-content: space-between; align-items: end; gap: 3rem; }
.portal-greeting { margin-bottom: .4rem; color: #c8cbc0; font-size: .95rem; }
.portal-title-row h1 { margin-bottom: .6rem; font-size: clamp(2.3rem, 5vw, 4.3rem); }
.property-switch { min-width: 270px; }
.property-switch label { display: block; margin-bottom: .45rem; color: #bdc1b5; }
.property-switch select { border-color: rgba(244,236,217,.28); background: #454d3e; color: var(--cream); }
.portal-section { padding: 48px 0 90px; }
.portal-layout { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 1.25rem; align-items: start; }
.portal-content { display: grid; gap: 1.25rem; }
.portal-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.portal-outline { border-color: #81877b; color: var(--ink); }
.portal-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: var(--line); }
.portal-metrics article { padding: 1.4rem; background: var(--white); }
.portal-metrics span, .portal-metrics small { display: block; color: #697064; font-size: .72rem; }
.portal-metrics span { margin-bottom: .5rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.portal-metrics strong { display: block; font: 800 1.8rem/1.1 "Libre Franklin"; }
.portal-panel, .sidebar-card { border: 1px solid var(--line); border-radius: 14px; background: var(--white); }
.portal-panel { padding: 1.7rem; }
.panel-heading { display: flex; justify-content: space-between; align-items: center; gap: 2rem; margin-bottom: 1.4rem; }
.panel-heading .eyebrow { margin-bottom: .45rem; }
.panel-heading h2 { margin: 0; font-size: 1.65rem; }
.request-list { border-top: 1px solid var(--line); }
.request-row { display: grid; grid-template-columns: 1.35fr 1fr auto; gap: 1.2rem; align-items: center; padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.request-id span, .request-id small, .request-status small { display: block; color: #6a7166; font-size: .72rem; }
.request-id strong, .request-status strong { display: block; margin: .22rem 0; font-size: .91rem; }
.request-link { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; color: var(--amber-dark); font-size: .76rem; font-weight: 800; text-decoration: none; }
.status { display: inline-flex; width: max-content; padding: .28rem .55rem; border-radius: 100px; font-size: .66rem; font-weight: 800; }
.status-scheduled { background: #dfead7; color: #30492a; }
.status-assigned { background: #e8e2cf; color: #5c512c; }
.status-approval { background: #f4d9c5; color: #7b3d1e; }
.approval-card { display: grid; grid-template-columns: 1fr auto; gap: 1.5rem 3rem; padding: 1.5rem; border-radius: 11px; background: var(--cream); }
.approval-card h3 { margin: .35rem 0 .7rem; }
.approval-card p { margin: 0; color: #51594d; font-size: .9rem; }
.approval-label, .approval-amount span, .approval-amount small { color: #6a665c; font-size: .72rem; font-weight: 700; }
.approval-amount { min-width: 135px; text-align: right; }
.approval-amount strong, .approval-amount small { display: block; }
.approval-amount strong { font: 800 1.65rem/1.3 "Libre Franklin"; }
.approval-card .button-row { grid-column: 1 / -1; margin-top: 0; }
.history-list > div { display: grid; grid-template-columns: 90px 1fr auto; gap: 1rem; padding: 1rem 0; border-top: 1px solid var(--line); font-size: .84rem; }
.history-list span, .history-list small { color: #697064; }
.portal-sidebar { display: grid; gap: 1rem; }
.sidebar-card { padding: 1.4rem; }
.sidebar-card .eyebrow { margin-bottom: .5rem; }
.sidebar-card h3 { font-size: 1.15rem; }
.contact-person { display: flex; align-items: center; gap: .8rem; padding: 1rem 0; border-top: 1px solid var(--line); font-size: .82rem; }
.contact-initials { width: 42px; height: 42px; flex: 0 0 auto; font-size: .72rem; }
.contact-person strong, .contact-person small, .contact-person a { display: block; }
.contact-person small { color: #6a7166; }
.contact-person a { color: var(--amber-dark); text-decoration: none; }
.property-details { margin: 0 0 1rem; }
.property-details div { padding: .7rem 0; border-top: 1px solid var(--line); }
.property-details dt { color: #6a7166; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.property-details dd { margin: .12rem 0 0; font-size: .86rem; font-weight: 700; }
.sidebar-help { background: var(--forest); color: var(--cream); }
.sidebar-help p { color: #cbd0c4; font-size: .84rem; }
.sidebar-help a { color: #efad75; font-weight: 800; }
.portal-footer { padding-top: 5px; }
.portal-footer .footer-bottom { margin-top: 0; }
.portal-preview-band { background: var(--cream); }
.portal-preview-card { display: flex; justify-content: space-between; align-items: center; gap: 3rem; }
.portal-preview-card h2 { margin-bottom: .7rem; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.portal-preview-card p:last-child { max-width: 760px; margin-bottom: 0; }

/* Art-directed story images for laptop and tablet-shaped viewports. */
@media (max-width: 1400px), (max-aspect-ratio: 8/5) {
  .hero::before {
    background-image: linear-gradient(90deg, rgba(20,24,18,.96) 0%, rgba(20,24,18,.82) 43%, rgba(20,24,18,.24) 76%, rgba(20,24,18,.06) 100%), url("lsp-arrival-tablet.png");
    background-position: center, right center;
    background-size: cover, auto 100%;
    background-repeat: no-repeat;
  }
  .bobby-story {
    background-image: linear-gradient(90deg, rgba(20,24,18,.96) 0%, rgba(20,24,18,.84) 46%, rgba(20,24,18,.24) 78%, rgba(20,24,18,.06) 100%), url("lsp-working-tablet.png");
    background-position: center, right center;
    background-size: cover, auto 100%;
    background-repeat: no-repeat;
  }
  .cta-band {
    background-image: linear-gradient(90deg, rgba(20,24,18,.94) 0%, rgba(20,24,18,.78) 47%, rgba(20,24,18,.18) 80%, rgba(20,24,18,.04) 100%), url("lsp-departure-tablet.png");
    background-position: center, right center;
    background-size: cover, auto 100%;
    background-repeat: no-repeat;
  }
}

@media (max-width: 980px) {
  .menu-toggle { display: grid; place-items: center; }
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.3rem;
    padding: 2rem;
    background: var(--forest);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
  }
  .main-nav.open { z-index: 10; opacity: 1; pointer-events: auto; }
  .main-nav a { font-size: 1.5rem; }
  .menu-toggle { position: relative; z-index: 12; }
  .split, .form-shell { grid-template-columns: 1fr; gap: 3rem; }
  .portal-layout { grid-template-columns: 1fr; }
  .portal-sidebar { grid-template-columns: repeat(2, 1fr); }
  .sidebar-help { grid-column: 1 / -1; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .promise-grid { grid-template-columns: repeat(5, minmax(110px, 1fr)); overflow-x: auto; }
  .door-statement { grid-template-columns: 1fr; gap: 1rem; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .capability-closing { display: grid; }
  .cta-inner { display: grid; gap: 2rem; }
  .cta-buttons { justify-content: flex-start; }
  .message-row { grid-template-columns: 60px 1fr; }
  .message-proof { grid-column: 2; }
  .services-compact { grid-template-columns: 1fr; }
  .services-list { grid-template-columns: repeat(3, 1fr); }
  .audience-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 72px 0; }
  .nav-wrap { min-height: 84px; }
  .brand-mark { width: 175px; height: 52px; }
  .brand-name { display: none; }
  .hero {
    display: block;
    min-height: 0;
  }
  .hero::before {
    inset: 0 0 auto;
    height: 470px;
    background: linear-gradient(180deg, rgba(20,24,18,.05) 0%, rgba(20,24,18,.08) 55%, rgba(20,24,18,.48) 78%, var(--forest) 100%), url("lsp-arrival-phone.png") 43% center/cover;
  }
  .hero::after { display: none; }
  .hero-content {
    max-width: none;
    padding: 420px 0 58px;
  }
  .hero h1 {
    max-width: 350px;
    margin-bottom: .95rem;
    font-size: clamp(2.4rem, 11.5vw, 3.15rem);
    line-height: 1.04;
  }
  .hero .lead, .hero-story { max-width: 340px; }
  .hero .lead { margin-bottom: 1rem; font-size: 1rem; line-height: 1.54; }
  .hero-story { font-size: .94rem; line-height: 1.52; }
  .hero-story p { margin-bottom: .65rem; }
  .hero .button-row { flex-direction: column; align-items: flex-start; gap: .7rem; margin-top: 1.4rem; }
  .hero .button { padding: .82rem 1rem; font-size: .78rem; }
  .hero-note { max-width: 340px; gap: .5rem; margin-top: .9rem; font-size: .74rem; }
  .bobby-story {
    display: block;
    min-height: 0;
    padding: 460px 0 70px;
    background-color: var(--forest);
    background-image: linear-gradient(180deg, rgba(20,24,18,0) 0%, rgba(20,24,18,.04) 58%, rgba(20,24,18,.56) 78%, var(--forest) 100%), url("lsp-working-phone.png");
    background-position: center top, center top;
    background-size: 100% 520px, 100% auto;
    background-repeat: no-repeat;
  }
  .bobby-details { max-width: 340px; margin-top: 0; }
  .bobby-visual-line { font-size: clamp(1.75rem, 8.8vw, 2.35rem); line-height: 1.18; }
  .stats-grid, .service-panels, .form-grid, .radio-group { grid-template-columns: 1fr; }
  .stat { padding: 1.4rem; }
  .card-grid { grid-template-columns: 1fr; }
  .promise-grid { grid-template-columns: 1fr; overflow: visible; }
  .promise-grid span { padding: .9rem 1rem; text-align: left; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-grid article { min-height: 150px; }
  .capability-grid h3 { margin-top: 2rem; }
  .capability-closing { padding: 1.5rem; }
  .message-intro { margin-bottom: 2rem; }
  .message-row { grid-template-columns: 1fr; gap: 1rem; padding: 2.2rem 0; }
  .message-proof { grid-column: 1; }
  .services-compact article { min-height: 0; }
  .services-compact h3 { margin-top: 1.6rem; }
  .services-list { grid-template-columns: 1fr 1fr; }
  .service-item { min-height: 160px; }
  .service-item h3 { margin-top: 2rem; }
  .credential-card { padding: 2rem; }
  .cta-band {
    display: block;
    min-height: 0;
    padding: 410px 0 72px;
    background-color: var(--forest);
    background-image: linear-gradient(180deg, rgba(20,24,18,0) 0%, rgba(20,24,18,.03) 52%, rgba(20,24,18,.56) 76%, var(--forest) 100%), url("lsp-departure-tablet.png");
    background-position: center top, right top;
    background-size: 100% 470px, auto 470px;
    background-repeat: no-repeat;
  }
  .cta-inner { display: block; }
  .cta-band h2 {
    max-width: 340px;
    font-size: clamp(2.1rem, 9.4vw, 2.65rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }
  .cta-band .lede { max-width: 340px; line-height: 1.5; }
  .cta-band .cta-buttons { flex-direction: column; align-items: flex-start; gap: .7rem; margin-top: 1.5rem; }
  .process-step { grid-template-columns: 62px 1fr; gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { display: block; }
  .portal-account .portal-user { display: none; }
  .portal-title-row, .portal-preview-card { display: grid; }
  .property-switch { min-width: 0; }
  .portal-metrics { grid-template-columns: 1fr; }
  .request-row { grid-template-columns: 1fr auto; }
  .request-status { grid-column: 1 / -1; grid-row: 2; }
  .request-link { grid-column: 2; grid-row: 1; }
  .approval-card { grid-template-columns: 1fr; }
  .approval-amount { text-align: left; }
  .approval-card .button-row { grid-column: 1; }
  .history-list > div { grid-template-columns: 1fr; gap: .15rem; }
  .portal-sidebar { grid-template-columns: 1fr; }
  .sidebar-help { grid-column: auto; }
  .demo-notice { display: grid; gap: .2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
